project.assets.json 350 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0-windows7.0": {
  5. "AForge/2.2.5": {
  6. "type": "package",
  7. "compile": {
  8. "lib/AForge.dll": {}
  9. },
  10. "runtime": {
  11. "lib/AForge.dll": {}
  12. }
  13. },
  14. "ControlzEx/4.4.0": {
  15. "type": "package",
  16. "dependencies": {
  17. "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
  18. "System.Text.Json": "4.7.2"
  19. },
  20. "compile": {
  21. "lib/netcoreapp3.1/ControlzEx.dll": {
  22. "related": ".pdb;.xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netcoreapp3.1/ControlzEx.dll": {
  27. "related": ".pdb;.xml"
  28. }
  29. },
  30. "frameworkReferences": [
  31. "Microsoft.WindowsDesktop.App.WPF"
  32. ]
  33. },
  34. "EPPlus/5.6.4": {
  35. "type": "package",
  36. "dependencies": {
  37. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  38. "Microsoft.IO.RecyclableMemoryStream": "1.4.1",
  39. "System.ComponentModel.Annotations": "5.0.0",
  40. "System.ComponentModel.TypeConverter": "4.3.0",
  41. "System.Data.Common": "4.3.0",
  42. "System.Drawing.Common": "5.0.0",
  43. "System.Reflection": "4.3.0",
  44. "System.Security.Claims": "4.3.0",
  45. "System.Security.Cryptography.Pkcs": "5.0.0",
  46. "System.Security.Cryptography.X509Certificates": "4.3.2",
  47. "System.Text.Encoding.CodePages": "5.0.0",
  48. "System.Xml.XPath.XmlDocument": "4.3.0",
  49. "System.Xml.XmlDocument": "4.3.0"
  50. },
  51. "compile": {
  52. "lib/net5.0/EPPlus.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/net5.0/EPPlus.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "LiveCharts/0.9.7": {
  63. "type": "package",
  64. "compile": {
  65. "lib/net45/LiveCharts.dll": {
  66. "related": ".pdb;.xml"
  67. }
  68. },
  69. "runtime": {
  70. "lib/net45/LiveCharts.dll": {
  71. "related": ".pdb;.xml"
  72. }
  73. }
  74. },
  75. "LiveCharts.Wpf/0.9.7": {
  76. "type": "package",
  77. "dependencies": {
  78. "LiveCharts": "0.9.7"
  79. },
  80. "compile": {
  81. "lib/net45/LiveCharts.Wpf.dll": {
  82. "related": ".pdb;.XML"
  83. }
  84. },
  85. "runtime": {
  86. "lib/net45/LiveCharts.Wpf.dll": {
  87. "related": ".pdb;.XML"
  88. }
  89. }
  90. },
  91. "MahApps.Metro/2.4.5": {
  92. "type": "package",
  93. "dependencies": {
  94. "ControlzEx": "4.4.0"
  95. },
  96. "compile": {
  97. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  98. "related": ".pdb;.xml"
  99. }
  100. },
  101. "runtime": {
  102. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  103. "related": ".pdb;.xml"
  104. }
  105. },
  106. "frameworkReferences": [
  107. "Microsoft.WindowsDesktop.App.WPF"
  108. ],
  109. "resource": {
  110. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll": {
  111. "locale": "de"
  112. }
  113. }
  114. },
  115. "Microsoft.CSharp/4.0.1": {
  116. "type": "package",
  117. "dependencies": {
  118. "System.Collections": "4.0.11",
  119. "System.Diagnostics.Debug": "4.0.11",
  120. "System.Dynamic.Runtime": "4.0.11",
  121. "System.Globalization": "4.0.11",
  122. "System.Linq": "4.1.0",
  123. "System.Linq.Expressions": "4.1.0",
  124. "System.ObjectModel": "4.0.12",
  125. "System.Reflection": "4.1.0",
  126. "System.Reflection.Extensions": "4.0.1",
  127. "System.Reflection.Primitives": "4.0.1",
  128. "System.Reflection.TypeExtensions": "4.1.0",
  129. "System.Resources.ResourceManager": "4.0.1",
  130. "System.Runtime": "4.1.0",
  131. "System.Runtime.Extensions": "4.1.0",
  132. "System.Runtime.InteropServices": "4.1.0",
  133. "System.Threading": "4.0.11"
  134. },
  135. "compile": {
  136. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  137. "related": ".xml"
  138. }
  139. },
  140. "runtime": {
  141. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  142. }
  143. },
  144. "Microsoft.Data.Sqlite.Core/5.0.6": {
  145. "type": "package",
  146. "dependencies": {
  147. "SQLitePCLRaw.core": "2.0.4"
  148. },
  149. "compile": {
  150. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  151. "related": ".xml"
  152. }
  153. },
  154. "runtime": {
  155. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  156. "related": ".xml"
  157. }
  158. }
  159. },
  160. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  161. "type": "package",
  162. "dependencies": {
  163. "System.AppContext": "4.1.0",
  164. "System.Collections": "4.0.11",
  165. "System.IO": "4.1.0",
  166. "System.IO.FileSystem": "4.0.1",
  167. "System.Reflection.TypeExtensions": "4.1.0",
  168. "System.Runtime.Extensions": "4.1.0",
  169. "System.Runtime.InteropServices": "4.1.0",
  170. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  171. },
  172. "compile": {
  173. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  174. },
  175. "runtime": {
  176. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  177. }
  178. },
  179. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  180. "type": "package",
  181. "dependencies": {
  182. "Microsoft.Extensions.Primitives": "5.0.0"
  183. },
  184. "compile": {
  185. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  186. "related": ".xml"
  187. }
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  191. "related": ".xml"
  192. }
  193. }
  194. },
  195. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  196. "type": "package",
  197. "dependencies": {
  198. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  199. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  200. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  201. "Microsoft.Extensions.Options": "5.0.0",
  202. "Microsoft.Extensions.Primitives": "5.0.0"
  203. },
  204. "compile": {
  205. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  206. "related": ".xml"
  207. }
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  211. "related": ".xml"
  212. }
  213. }
  214. },
  215. "Microsoft.Extensions.Configuration/5.0.0": {
  216. "type": "package",
  217. "dependencies": {
  218. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  219. "Microsoft.Extensions.Primitives": "5.0.0"
  220. },
  221. "compile": {
  222. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  223. "related": ".xml"
  224. }
  225. },
  226. "runtime": {
  227. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  228. "related": ".xml"
  229. }
  230. }
  231. },
  232. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  233. "type": "package",
  234. "dependencies": {
  235. "Microsoft.Extensions.Primitives": "5.0.0"
  236. },
  237. "compile": {
  238. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  239. "related": ".xml"
  240. }
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  244. "related": ".xml"
  245. }
  246. }
  247. },
  248. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  249. "type": "package",
  250. "dependencies": {
  251. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  252. },
  253. "compile": {
  254. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  255. "related": ".xml"
  256. }
  257. },
  258. "runtime": {
  259. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  260. "related": ".xml"
  261. }
  262. }
  263. },
  264. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Configuration": "5.0.0",
  268. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  269. },
  270. "compile": {
  271. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  277. "related": ".xml"
  278. }
  279. }
  280. },
  281. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  282. "type": "package",
  283. "dependencies": {
  284. "Microsoft.Extensions.Configuration": "5.0.0",
  285. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  286. },
  287. "compile": {
  288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  289. "related": ".xml"
  290. }
  291. },
  292. "runtime": {
  293. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  294. "related": ".xml"
  295. }
  296. }
  297. },
  298. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  299. "type": "package",
  300. "dependencies": {
  301. "Microsoft.Extensions.Configuration": "5.0.0",
  302. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  303. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  304. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  305. "Microsoft.Extensions.Primitives": "5.0.0"
  306. },
  307. "compile": {
  308. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  309. "related": ".xml"
  310. }
  311. },
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  314. "related": ".xml"
  315. }
  316. }
  317. },
  318. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  319. "type": "package",
  320. "dependencies": {
  321. "Microsoft.Extensions.Configuration": "5.0.0",
  322. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  323. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  324. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  325. },
  326. "compile": {
  327. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  328. "related": ".xml"
  329. }
  330. },
  331. "runtime": {
  332. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  333. "related": ".xml"
  334. }
  335. }
  336. },
  337. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  338. "type": "package",
  339. "dependencies": {
  340. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  341. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  342. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  343. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  344. },
  345. "compile": {
  346. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  347. "related": ".xml"
  348. }
  349. },
  350. "runtime": {
  351. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  352. "related": ".xml"
  353. }
  354. },
  355. "build": {
  356. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  357. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  358. }
  359. },
  360. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  361. "type": "package",
  362. "dependencies": {
  363. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  364. },
  365. "compile": {
  366. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  367. "related": ".xml"
  368. }
  369. },
  370. "runtime": {
  371. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "build": {
  376. "buildTransitive/net6.0/_._": {}
  377. }
  378. },
  379. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  380. "type": "package",
  381. "compile": {
  382. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  383. "related": ".xml"
  384. }
  385. },
  386. "runtime": {
  387. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  388. "related": ".xml"
  389. }
  390. },
  391. "build": {
  392. "buildTransitive/net6.0/_._": {}
  393. }
  394. },
  395. "Microsoft.Extensions.DependencyModel/2.0.4": {
  396. "type": "package",
  397. "dependencies": {
  398. "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
  399. "Newtonsoft.Json": "9.0.1",
  400. "System.Diagnostics.Debug": "4.0.11",
  401. "System.Dynamic.Runtime": "4.0.11",
  402. "System.Linq": "4.1.0"
  403. },
  404. "compile": {
  405. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  406. },
  407. "runtime": {
  408. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  409. }
  410. },
  411. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  412. "type": "package",
  413. "dependencies": {
  414. "Microsoft.Extensions.Primitives": "5.0.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  418. "related": ".xml"
  419. }
  420. },
  421. "runtime": {
  422. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  423. "related": ".xml"
  424. }
  425. }
  426. },
  427. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  428. "type": "package",
  429. "dependencies": {
  430. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  431. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  432. "Microsoft.Extensions.Primitives": "5.0.0"
  433. },
  434. "compile": {
  435. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  436. "related": ".xml"
  437. }
  438. },
  439. "runtime": {
  440. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  441. "related": ".xml"
  442. }
  443. }
  444. },
  445. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  446. "type": "package",
  447. "compile": {
  448. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  454. "related": ".xml"
  455. }
  456. }
  457. },
  458. "Microsoft.Extensions.Hosting/5.0.0": {
  459. "type": "package",
  460. "dependencies": {
  461. "Microsoft.Extensions.Configuration": "5.0.0",
  462. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  463. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  464. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  465. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  466. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  467. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  468. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  469. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  470. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  471. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  472. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  473. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  474. "Microsoft.Extensions.Logging": "5.0.0",
  475. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  476. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  477. "Microsoft.Extensions.Logging.Console": "5.0.0",
  478. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  479. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  480. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  481. "Microsoft.Extensions.Options": "5.0.0"
  482. },
  483. "compile": {
  484. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  485. "related": ".xml"
  486. }
  487. },
  488. "runtime": {
  489. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  490. "related": ".xml"
  491. }
  492. }
  493. },
  494. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  498. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  499. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  500. },
  501. "compile": {
  502. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  503. "related": ".xml"
  504. }
  505. },
  506. "runtime": {
  507. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  508. "related": ".xml"
  509. }
  510. }
  511. },
  512. "Microsoft.Extensions.Logging/7.0.0": {
  513. "type": "package",
  514. "dependencies": {
  515. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  516. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  517. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  518. "Microsoft.Extensions.Options": "7.0.0"
  519. },
  520. "compile": {
  521. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  522. "related": ".xml"
  523. }
  524. },
  525. "runtime": {
  526. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  527. "related": ".xml"
  528. }
  529. },
  530. "build": {
  531. "buildTransitive/net6.0/_._": {}
  532. }
  533. },
  534. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  535. "type": "package",
  536. "compile": {
  537. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  538. "related": ".xml"
  539. }
  540. },
  541. "runtime": {
  542. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "build": {
  547. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  548. }
  549. },
  550. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  551. "type": "package",
  552. "dependencies": {
  553. "Microsoft.Extensions.Configuration": "5.0.0",
  554. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  555. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  556. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  557. "Microsoft.Extensions.Logging": "5.0.0",
  558. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  559. "Microsoft.Extensions.Options": "5.0.0",
  560. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  561. },
  562. "compile": {
  563. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  564. "related": ".xml"
  565. }
  566. },
  567. "runtime": {
  568. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  569. "related": ".xml"
  570. }
  571. }
  572. },
  573. "Microsoft.Extensions.Logging.Console/5.0.0": {
  574. "type": "package",
  575. "dependencies": {
  576. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  577. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  578. "Microsoft.Extensions.Logging": "5.0.0",
  579. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  580. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  581. "Microsoft.Extensions.Options": "5.0.0",
  582. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  583. },
  584. "compile": {
  585. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  586. "related": ".xml"
  587. }
  588. },
  589. "runtime": {
  590. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  591. "related": ".xml"
  592. }
  593. }
  594. },
  595. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  596. "type": "package",
  597. "dependencies": {
  598. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  599. "Microsoft.Extensions.Logging": "5.0.0",
  600. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  601. },
  602. "compile": {
  603. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  604. "related": ".xml"
  605. }
  606. },
  607. "runtime": {
  608. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  609. "related": ".xml"
  610. }
  611. }
  612. },
  613. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  614. "type": "package",
  615. "dependencies": {
  616. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  617. "Microsoft.Extensions.Logging": "5.0.0",
  618. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  619. "Microsoft.Extensions.Options": "5.0.0",
  620. "System.Diagnostics.EventLog": "5.0.0"
  621. },
  622. "compile": {
  623. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  624. "related": ".xml"
  625. }
  626. },
  627. "runtime": {
  628. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  629. "related": ".xml"
  630. }
  631. }
  632. },
  633. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  634. "type": "package",
  635. "dependencies": {
  636. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  637. "Microsoft.Extensions.Logging": "5.0.0",
  638. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  639. "Microsoft.Extensions.Options": "5.0.0",
  640. "Microsoft.Extensions.Primitives": "5.0.0"
  641. },
  642. "compile": {
  643. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  644. "related": ".xml"
  645. }
  646. },
  647. "runtime": {
  648. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  649. "related": ".xml"
  650. }
  651. }
  652. },
  653. "Microsoft.Extensions.Options/7.0.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  657. "Microsoft.Extensions.Primitives": "7.0.0"
  658. },
  659. "compile": {
  660. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  661. "related": ".xml"
  662. }
  663. },
  664. "runtime": {
  665. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  666. "related": ".xml"
  667. }
  668. },
  669. "build": {
  670. "buildTransitive/net6.0/_._": {}
  671. }
  672. },
  673. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  677. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  678. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  679. "Microsoft.Extensions.Options": "5.0.0",
  680. "Microsoft.Extensions.Primitives": "5.0.0"
  681. },
  682. "compile": {
  683. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "runtime": {
  688. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  689. "related": ".xml"
  690. }
  691. }
  692. },
  693. "Microsoft.Extensions.Primitives/7.0.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  697. },
  698. "compile": {
  699. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  700. "related": ".xml"
  701. }
  702. },
  703. "runtime": {
  704. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  705. "related": ".xml"
  706. }
  707. },
  708. "build": {
  709. "buildTransitive/net6.0/_._": {}
  710. }
  711. },
  712. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  713. "type": "package",
  714. "compile": {
  715. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  716. "related": ".xml"
  717. }
  718. },
  719. "runtime": {
  720. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  721. "related": ".xml"
  722. }
  723. }
  724. },
  725. "Microsoft.NETCore.Platforms/5.0.0": {
  726. "type": "package",
  727. "compile": {
  728. "lib/netstandard1.0/_._": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard1.0/_._": {}
  732. }
  733. },
  734. "Microsoft.NETCore.Targets/1.1.0": {
  735. "type": "package",
  736. "compile": {
  737. "lib/netstandard1.0/_._": {}
  738. },
  739. "runtime": {
  740. "lib/netstandard1.0/_._": {}
  741. }
  742. },
  743. "Microsoft.Win32.Registry/5.0.0": {
  744. "type": "package",
  745. "dependencies": {
  746. "System.Security.AccessControl": "5.0.0",
  747. "System.Security.Principal.Windows": "5.0.0"
  748. },
  749. "compile": {
  750. "ref/netstandard2.0/_._": {
  751. "related": ".xml"
  752. }
  753. },
  754. "runtime": {
  755. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  756. "related": ".xml"
  757. }
  758. },
  759. "runtimeTargets": {
  760. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  761. "assetType": "runtime",
  762. "rid": "win"
  763. }
  764. }
  765. },
  766. "Microsoft.Win32.SystemEvents/7.0.0": {
  767. "type": "package",
  768. "compile": {
  769. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  770. "related": ".xml"
  771. }
  772. },
  773. "runtime": {
  774. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "build": {
  779. "buildTransitive/net6.0/_._": {}
  780. },
  781. "runtimeTargets": {
  782. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  783. "assetType": "runtime",
  784. "rid": "win"
  785. }
  786. }
  787. },
  788. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  789. "type": "package",
  790. "compile": {
  791. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  792. "related": ".pdb;.xml"
  793. }
  794. },
  795. "runtime": {
  796. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  797. "related": ".pdb;.xml"
  798. }
  799. },
  800. "frameworkReferences": [
  801. "Microsoft.WindowsDesktop.App.WPF"
  802. ]
  803. },
  804. "Newtonsoft.Json/9.0.1": {
  805. "type": "package",
  806. "dependencies": {
  807. "Microsoft.CSharp": "4.0.1",
  808. "System.Collections": "4.0.11",
  809. "System.Diagnostics.Debug": "4.0.11",
  810. "System.Dynamic.Runtime": "4.0.11",
  811. "System.Globalization": "4.0.11",
  812. "System.IO": "4.1.0",
  813. "System.Linq": "4.1.0",
  814. "System.Linq.Expressions": "4.1.0",
  815. "System.ObjectModel": "4.0.12",
  816. "System.Reflection": "4.1.0",
  817. "System.Reflection.Extensions": "4.0.1",
  818. "System.Resources.ResourceManager": "4.0.1",
  819. "System.Runtime": "4.1.0",
  820. "System.Runtime.Extensions": "4.1.0",
  821. "System.Runtime.Serialization.Primitives": "4.1.1",
  822. "System.Text.Encoding": "4.0.11",
  823. "System.Text.Encoding.Extensions": "4.0.11",
  824. "System.Text.RegularExpressions": "4.1.0",
  825. "System.Threading": "4.0.11",
  826. "System.Threading.Tasks": "4.0.11",
  827. "System.Xml.ReaderWriter": "4.0.11",
  828. "System.Xml.XDocument": "4.0.11"
  829. },
  830. "compile": {
  831. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  832. "related": ".xml"
  833. }
  834. },
  835. "runtime": {
  836. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  837. "related": ".xml"
  838. }
  839. }
  840. },
  841. "Panuon.UI.Silver/1.1.3.4": {
  842. "type": "package",
  843. "dependencies": {
  844. "System.Drawing.Common": "5.0.0"
  845. },
  846. "compile": {
  847. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  848. },
  849. "runtime": {
  850. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  851. },
  852. "frameworkReferences": [
  853. "Microsoft.WindowsDesktop.App.WPF"
  854. ]
  855. },
  856. "Prism.Core/8.1.97": {
  857. "type": "package",
  858. "compile": {
  859. "lib/net5.0/Prism.dll": {
  860. "related": ".pdb;.xml"
  861. }
  862. },
  863. "runtime": {
  864. "lib/net5.0/Prism.dll": {
  865. "related": ".pdb;.xml"
  866. }
  867. }
  868. },
  869. "Prism.Unity/8.1.97": {
  870. "type": "package",
  871. "dependencies": {
  872. "Prism.Wpf": "8.1.97",
  873. "Unity.Container": "5.11.11"
  874. },
  875. "compile": {
  876. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  877. "related": ".pdb;.xml"
  878. }
  879. },
  880. "runtime": {
  881. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  882. "related": ".pdb;.xml"
  883. }
  884. },
  885. "frameworkReferences": [
  886. "Microsoft.WindowsDesktop.App.WPF"
  887. ]
  888. },
  889. "Prism.Wpf/8.1.97": {
  890. "type": "package",
  891. "dependencies": {
  892. "Microsoft.Xaml.Behaviors.Wpf": "1.1.31",
  893. "Prism.Core": "8.1.97"
  894. },
  895. "compile": {
  896. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  897. "related": ".pdb;.xml"
  898. }
  899. },
  900. "runtime": {
  901. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  902. "related": ".pdb;.xml"
  903. }
  904. },
  905. "frameworkReferences": [
  906. "Microsoft.WindowsDesktop.App.WPF"
  907. ]
  908. },
  909. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  910. "type": "package",
  911. "runtimeTargets": {
  912. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  913. "assetType": "native",
  914. "rid": "debian.8-x64"
  915. }
  916. }
  917. },
  918. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  919. "type": "package",
  920. "runtimeTargets": {
  921. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  922. "assetType": "native",
  923. "rid": "fedora.23-x64"
  924. }
  925. }
  926. },
  927. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  928. "type": "package",
  929. "runtimeTargets": {
  930. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  931. "assetType": "native",
  932. "rid": "fedora.24-x64"
  933. }
  934. }
  935. },
  936. "runtime.native.System/4.3.0": {
  937. "type": "package",
  938. "dependencies": {
  939. "Microsoft.NETCore.Platforms": "1.1.0",
  940. "Microsoft.NETCore.Targets": "1.1.0"
  941. },
  942. "compile": {
  943. "lib/netstandard1.0/_._": {}
  944. },
  945. "runtime": {
  946. "lib/netstandard1.0/_._": {}
  947. }
  948. },
  949. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  950. "type": "package",
  951. "dependencies": {
  952. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  953. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  954. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  955. }
  956. },
  957. "runtime.native.System.Net.Http/4.3.0": {
  958. "type": "package",
  959. "dependencies": {
  960. "Microsoft.NETCore.Platforms": "1.1.0",
  961. "Microsoft.NETCore.Targets": "1.1.0"
  962. },
  963. "compile": {
  964. "lib/netstandard1.0/_._": {}
  965. },
  966. "runtime": {
  967. "lib/netstandard1.0/_._": {}
  968. }
  969. },
  970. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  971. "type": "package",
  972. "dependencies": {
  973. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  974. },
  975. "compile": {
  976. "lib/netstandard1.0/_._": {}
  977. },
  978. "runtime": {
  979. "lib/netstandard1.0/_._": {}
  980. }
  981. },
  982. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  983. "type": "package",
  984. "dependencies": {
  985. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  986. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  987. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  988. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  989. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  990. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  991. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  992. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  993. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  994. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  995. },
  996. "compile": {
  997. "lib/netstandard1.0/_._": {}
  998. },
  999. "runtime": {
  1000. "lib/netstandard1.0/_._": {}
  1001. }
  1002. },
  1003. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1004. "type": "package",
  1005. "runtimeTargets": {
  1006. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1007. "assetType": "native",
  1008. "rid": "opensuse.13.2-x64"
  1009. }
  1010. }
  1011. },
  1012. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1013. "type": "package",
  1014. "runtimeTargets": {
  1015. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1016. "assetType": "native",
  1017. "rid": "opensuse.42.1-x64"
  1018. }
  1019. }
  1020. },
  1021. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1022. "type": "package",
  1023. "runtimeTargets": {
  1024. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1025. "assetType": "native",
  1026. "rid": "osx.10.10-x64"
  1027. }
  1028. }
  1029. },
  1030. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1031. "type": "package",
  1032. "runtimeTargets": {
  1033. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1034. "assetType": "native",
  1035. "rid": "osx.10.10-x64"
  1036. }
  1037. }
  1038. },
  1039. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1040. "type": "package",
  1041. "runtimeTargets": {
  1042. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1043. "assetType": "native",
  1044. "rid": "rhel.7-x64"
  1045. }
  1046. }
  1047. },
  1048. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1049. "type": "package",
  1050. "runtimeTargets": {
  1051. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1052. "assetType": "native",
  1053. "rid": "ubuntu.14.04-x64"
  1054. }
  1055. }
  1056. },
  1057. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1058. "type": "package",
  1059. "runtimeTargets": {
  1060. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1061. "assetType": "native",
  1062. "rid": "ubuntu.16.04-x64"
  1063. }
  1064. }
  1065. },
  1066. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1067. "type": "package",
  1068. "runtimeTargets": {
  1069. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1070. "assetType": "native",
  1071. "rid": "ubuntu.16.10-x64"
  1072. }
  1073. }
  1074. },
  1075. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1076. "type": "package",
  1077. "runtimeTargets": {
  1078. "runtimes/win-arm64/native/sni.dll": {
  1079. "assetType": "native",
  1080. "rid": "win-arm64"
  1081. }
  1082. }
  1083. },
  1084. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1085. "type": "package",
  1086. "runtimeTargets": {
  1087. "runtimes/win-x64/native/sni.dll": {
  1088. "assetType": "native",
  1089. "rid": "win-x64"
  1090. }
  1091. }
  1092. },
  1093. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1094. "type": "package",
  1095. "runtimeTargets": {
  1096. "runtimes/win-x86/native/sni.dll": {
  1097. "assetType": "native",
  1098. "rid": "win-x86"
  1099. }
  1100. }
  1101. },
  1102. "Serilog/2.10.0": {
  1103. "type": "package",
  1104. "compile": {
  1105. "lib/netstandard2.1/Serilog.dll": {
  1106. "related": ".xml"
  1107. }
  1108. },
  1109. "runtime": {
  1110. "lib/netstandard2.1/Serilog.dll": {
  1111. "related": ".xml"
  1112. }
  1113. }
  1114. },
  1115. "Serilog.Enrichers.Thread/3.1.0": {
  1116. "type": "package",
  1117. "dependencies": {
  1118. "Serilog": "2.3.0"
  1119. },
  1120. "compile": {
  1121. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1122. "related": ".xml"
  1123. }
  1124. },
  1125. "runtime": {
  1126. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1127. "related": ".xml"
  1128. }
  1129. }
  1130. },
  1131. "Serilog.Extensions.Logging/3.0.1": {
  1132. "type": "package",
  1133. "dependencies": {
  1134. "Microsoft.Extensions.Logging": "2.0.0",
  1135. "Serilog": "2.8.0"
  1136. },
  1137. "compile": {
  1138. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1139. "related": ".xml"
  1140. }
  1141. },
  1142. "runtime": {
  1143. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1144. "related": ".xml"
  1145. }
  1146. }
  1147. },
  1148. "Serilog.Formatting.Compact/1.1.0": {
  1149. "type": "package",
  1150. "dependencies": {
  1151. "Serilog": "2.8.0"
  1152. },
  1153. "compile": {
  1154. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1155. "related": ".xml"
  1156. }
  1157. },
  1158. "runtime": {
  1159. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1160. "related": ".xml"
  1161. }
  1162. }
  1163. },
  1164. "Serilog.Settings.Configuration/3.1.0": {
  1165. "type": "package",
  1166. "dependencies": {
  1167. "Microsoft.Extensions.DependencyModel": "2.0.4",
  1168. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1169. "Serilog": "2.6.0"
  1170. },
  1171. "compile": {
  1172. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1173. "related": ".xml"
  1174. }
  1175. },
  1176. "runtime": {
  1177. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1178. "related": ".xml"
  1179. }
  1180. }
  1181. },
  1182. "Serilog.Sinks.Console/3.1.1": {
  1183. "type": "package",
  1184. "dependencies": {
  1185. "Serilog": "2.5.0",
  1186. "System.Console": "4.3.0",
  1187. "System.Runtime.InteropServices": "4.3.0",
  1188. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1189. },
  1190. "compile": {
  1191. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1192. "related": ".xml"
  1193. }
  1194. },
  1195. "runtime": {
  1196. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1197. "related": ".xml"
  1198. }
  1199. }
  1200. },
  1201. "Serilog.Sinks.File/4.1.0": {
  1202. "type": "package",
  1203. "dependencies": {
  1204. "Serilog": "2.5.0",
  1205. "System.IO.FileSystem": "4.0.1",
  1206. "System.Text.Encoding.Extensions": "4.0.11",
  1207. "System.Threading.Timer": "4.0.1"
  1208. },
  1209. "compile": {
  1210. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1211. "related": ".pdb;.xml"
  1212. }
  1213. },
  1214. "runtime": {
  1215. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1216. "related": ".pdb;.xml"
  1217. }
  1218. }
  1219. },
  1220. "SQLitePCLRaw.core/2.0.4": {
  1221. "type": "package",
  1222. "dependencies": {
  1223. "System.Memory": "4.5.3"
  1224. },
  1225. "compile": {
  1226. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1227. },
  1228. "runtime": {
  1229. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1230. }
  1231. },
  1232. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  1233. "type": "package",
  1234. "compile": {
  1235. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1236. "related": ".dll.altconfig;.xml"
  1237. }
  1238. },
  1239. "runtime": {
  1240. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1241. "related": ".dll.altconfig;.xml"
  1242. }
  1243. },
  1244. "runtimeTargets": {
  1245. "runtimes/linux-x64/native/SQLite.Interop.dll": {
  1246. "assetType": "native",
  1247. "rid": "linux-x64"
  1248. },
  1249. "runtimes/osx-x64/native/SQLite.Interop.dll": {
  1250. "assetType": "native",
  1251. "rid": "osx-x64"
  1252. },
  1253. "runtimes/win-x64/native/SQLite.Interop.dll": {
  1254. "assetType": "native",
  1255. "rid": "win-x64"
  1256. },
  1257. "runtimes/win-x86/native/SQLite.Interop.dll": {
  1258. "assetType": "native",
  1259. "rid": "win-x86"
  1260. }
  1261. }
  1262. },
  1263. "System.AppContext/4.1.0": {
  1264. "type": "package",
  1265. "dependencies": {
  1266. "System.Runtime": "4.1.0"
  1267. },
  1268. "compile": {
  1269. "ref/netstandard1.6/System.AppContext.dll": {
  1270. "related": ".xml"
  1271. }
  1272. },
  1273. "runtime": {
  1274. "lib/netstandard1.6/System.AppContext.dll": {}
  1275. }
  1276. },
  1277. "System.Collections/4.3.0": {
  1278. "type": "package",
  1279. "dependencies": {
  1280. "Microsoft.NETCore.Platforms": "1.1.0",
  1281. "Microsoft.NETCore.Targets": "1.1.0",
  1282. "System.Runtime": "4.3.0"
  1283. },
  1284. "compile": {
  1285. "ref/netstandard1.3/System.Collections.dll": {
  1286. "related": ".xml"
  1287. }
  1288. }
  1289. },
  1290. "System.Collections.Concurrent/4.3.0": {
  1291. "type": "package",
  1292. "dependencies": {
  1293. "System.Collections": "4.3.0",
  1294. "System.Diagnostics.Debug": "4.3.0",
  1295. "System.Diagnostics.Tracing": "4.3.0",
  1296. "System.Globalization": "4.3.0",
  1297. "System.Reflection": "4.3.0",
  1298. "System.Resources.ResourceManager": "4.3.0",
  1299. "System.Runtime": "4.3.0",
  1300. "System.Runtime.Extensions": "4.3.0",
  1301. "System.Threading": "4.3.0",
  1302. "System.Threading.Tasks": "4.3.0"
  1303. },
  1304. "compile": {
  1305. "ref/netstandard1.3/_._": {
  1306. "related": ".xml"
  1307. }
  1308. },
  1309. "runtime": {
  1310. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1311. }
  1312. },
  1313. "System.Collections.NonGeneric/4.3.0": {
  1314. "type": "package",
  1315. "dependencies": {
  1316. "System.Diagnostics.Debug": "4.3.0",
  1317. "System.Globalization": "4.3.0",
  1318. "System.Resources.ResourceManager": "4.3.0",
  1319. "System.Runtime": "4.3.0",
  1320. "System.Runtime.Extensions": "4.3.0",
  1321. "System.Threading": "4.3.0"
  1322. },
  1323. "compile": {
  1324. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1325. "related": ".xml"
  1326. }
  1327. },
  1328. "runtime": {
  1329. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1330. }
  1331. },
  1332. "System.Collections.Specialized/4.3.0": {
  1333. "type": "package",
  1334. "dependencies": {
  1335. "System.Collections.NonGeneric": "4.3.0",
  1336. "System.Globalization": "4.3.0",
  1337. "System.Globalization.Extensions": "4.3.0",
  1338. "System.Resources.ResourceManager": "4.3.0",
  1339. "System.Runtime": "4.3.0",
  1340. "System.Runtime.Extensions": "4.3.0",
  1341. "System.Threading": "4.3.0"
  1342. },
  1343. "compile": {
  1344. "ref/netstandard1.3/_._": {
  1345. "related": ".xml"
  1346. }
  1347. },
  1348. "runtime": {
  1349. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1350. }
  1351. },
  1352. "System.ComponentModel/4.3.0": {
  1353. "type": "package",
  1354. "dependencies": {
  1355. "System.Runtime": "4.3.0"
  1356. },
  1357. "compile": {
  1358. "ref/netstandard1.0/System.ComponentModel.dll": {
  1359. "related": ".xml"
  1360. }
  1361. },
  1362. "runtime": {
  1363. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1364. }
  1365. },
  1366. "System.ComponentModel.Annotations/5.0.0": {
  1367. "type": "package",
  1368. "compile": {
  1369. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1370. "related": ".xml"
  1371. }
  1372. },
  1373. "runtime": {
  1374. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1375. "related": ".xml"
  1376. }
  1377. }
  1378. },
  1379. "System.ComponentModel.Primitives/4.3.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "System.ComponentModel": "4.3.0",
  1383. "System.Resources.ResourceManager": "4.3.0",
  1384. "System.Runtime": "4.3.0"
  1385. },
  1386. "compile": {
  1387. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1388. "related": ".xml"
  1389. }
  1390. },
  1391. "runtime": {
  1392. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1393. }
  1394. },
  1395. "System.ComponentModel.TypeConverter/4.3.0": {
  1396. "type": "package",
  1397. "dependencies": {
  1398. "System.Collections": "4.3.0",
  1399. "System.Collections.NonGeneric": "4.3.0",
  1400. "System.Collections.Specialized": "4.3.0",
  1401. "System.ComponentModel": "4.3.0",
  1402. "System.ComponentModel.Primitives": "4.3.0",
  1403. "System.Globalization": "4.3.0",
  1404. "System.Linq": "4.3.0",
  1405. "System.Reflection": "4.3.0",
  1406. "System.Reflection.Extensions": "4.3.0",
  1407. "System.Reflection.Primitives": "4.3.0",
  1408. "System.Reflection.TypeExtensions": "4.3.0",
  1409. "System.Resources.ResourceManager": "4.3.0",
  1410. "System.Runtime": "4.3.0",
  1411. "System.Runtime.Extensions": "4.3.0",
  1412. "System.Threading": "4.3.0"
  1413. },
  1414. "compile": {
  1415. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1416. "related": ".xml"
  1417. }
  1418. },
  1419. "runtime": {
  1420. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1421. }
  1422. },
  1423. "System.Console/4.3.0": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "Microsoft.NETCore.Platforms": "1.1.0",
  1427. "Microsoft.NETCore.Targets": "1.1.0",
  1428. "System.IO": "4.3.0",
  1429. "System.Runtime": "4.3.0",
  1430. "System.Text.Encoding": "4.3.0"
  1431. },
  1432. "compile": {
  1433. "ref/netstandard1.3/System.Console.dll": {
  1434. "related": ".xml"
  1435. }
  1436. }
  1437. },
  1438. "System.Data.Common/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "System.Collections": "4.3.0",
  1442. "System.Globalization": "4.3.0",
  1443. "System.IO": "4.3.0",
  1444. "System.Resources.ResourceManager": "4.3.0",
  1445. "System.Runtime": "4.3.0",
  1446. "System.Runtime.Extensions": "4.3.0",
  1447. "System.Text.RegularExpressions": "4.3.0",
  1448. "System.Threading.Tasks": "4.3.0"
  1449. },
  1450. "compile": {
  1451. "ref/netstandard1.2/System.Data.Common.dll": {
  1452. "related": ".xml"
  1453. }
  1454. },
  1455. "runtime": {
  1456. "lib/netstandard1.2/System.Data.Common.dll": {}
  1457. }
  1458. },
  1459. "System.Data.SqlClient/4.8.2": {
  1460. "type": "package",
  1461. "dependencies": {
  1462. "Microsoft.Win32.Registry": "4.7.0",
  1463. "System.Security.Principal.Windows": "4.7.0",
  1464. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1465. },
  1466. "compile": {
  1467. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  1468. "related": ".xml"
  1469. }
  1470. },
  1471. "runtime": {
  1472. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1473. "related": ".xml"
  1474. }
  1475. },
  1476. "runtimeTargets": {
  1477. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1478. "assetType": "runtime",
  1479. "rid": "unix"
  1480. },
  1481. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1482. "assetType": "runtime",
  1483. "rid": "win"
  1484. }
  1485. }
  1486. },
  1487. "System.Data.SQLite.Core/1.0.114": {
  1488. "type": "package",
  1489. "dependencies": {
  1490. "Stub.System.Data.SQLite.Core.NetStandard": "1.0.114"
  1491. }
  1492. },
  1493. "System.Diagnostics.Debug/4.3.0": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "Microsoft.NETCore.Platforms": "1.1.0",
  1497. "Microsoft.NETCore.Targets": "1.1.0",
  1498. "System.Runtime": "4.3.0"
  1499. },
  1500. "compile": {
  1501. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1502. "related": ".xml"
  1503. }
  1504. }
  1505. },
  1506. "System.Diagnostics.DiagnosticSource/7.0.2": {
  1507. "type": "package",
  1508. "dependencies": {
  1509. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1510. },
  1511. "compile": {
  1512. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1513. "related": ".xml"
  1514. }
  1515. },
  1516. "runtime": {
  1517. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1518. "related": ".xml"
  1519. }
  1520. },
  1521. "build": {
  1522. "buildTransitive/net6.0/_._": {}
  1523. }
  1524. },
  1525. "System.Diagnostics.EventLog/5.0.0": {
  1526. "type": "package",
  1527. "dependencies": {
  1528. "Microsoft.NETCore.Platforms": "5.0.0",
  1529. "Microsoft.Win32.Registry": "5.0.0",
  1530. "System.Security.Principal.Windows": "5.0.0"
  1531. },
  1532. "compile": {
  1533. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1534. "related": ".xml"
  1535. }
  1536. },
  1537. "runtime": {
  1538. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1539. "related": ".xml"
  1540. }
  1541. },
  1542. "runtimeTargets": {
  1543. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  1544. "assetType": "runtime",
  1545. "rid": "win"
  1546. }
  1547. }
  1548. },
  1549. "System.Diagnostics.Tools/4.0.1": {
  1550. "type": "package",
  1551. "dependencies": {
  1552. "Microsoft.NETCore.Platforms": "1.0.1",
  1553. "Microsoft.NETCore.Targets": "1.0.1",
  1554. "System.Runtime": "4.1.0"
  1555. },
  1556. "compile": {
  1557. "ref/netstandard1.0/_._": {
  1558. "related": ".xml"
  1559. }
  1560. }
  1561. },
  1562. "System.Diagnostics.Tracing/4.3.0": {
  1563. "type": "package",
  1564. "dependencies": {
  1565. "Microsoft.NETCore.Platforms": "1.1.0",
  1566. "Microsoft.NETCore.Targets": "1.1.0",
  1567. "System.Runtime": "4.3.0"
  1568. },
  1569. "compile": {
  1570. "ref/netstandard1.5/_._": {
  1571. "related": ".xml"
  1572. }
  1573. }
  1574. },
  1575. "System.Drawing.Common/7.0.0": {
  1576. "type": "package",
  1577. "dependencies": {
  1578. "Microsoft.Win32.SystemEvents": "7.0.0"
  1579. },
  1580. "compile": {
  1581. "lib/net6.0/System.Drawing.Common.dll": {
  1582. "related": ".xml"
  1583. }
  1584. },
  1585. "runtime": {
  1586. "lib/net6.0/System.Drawing.Common.dll": {
  1587. "related": ".xml"
  1588. }
  1589. },
  1590. "build": {
  1591. "buildTransitive/net6.0/_._": {}
  1592. },
  1593. "runtimeTargets": {
  1594. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1595. "assetType": "runtime",
  1596. "rid": "win"
  1597. }
  1598. }
  1599. },
  1600. "System.Dynamic.Runtime/4.0.11": {
  1601. "type": "package",
  1602. "dependencies": {
  1603. "System.Collections": "4.0.11",
  1604. "System.Diagnostics.Debug": "4.0.11",
  1605. "System.Globalization": "4.0.11",
  1606. "System.Linq": "4.1.0",
  1607. "System.Linq.Expressions": "4.1.0",
  1608. "System.ObjectModel": "4.0.12",
  1609. "System.Reflection": "4.1.0",
  1610. "System.Reflection.Emit": "4.0.1",
  1611. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1612. "System.Reflection.Primitives": "4.0.1",
  1613. "System.Reflection.TypeExtensions": "4.1.0",
  1614. "System.Resources.ResourceManager": "4.0.1",
  1615. "System.Runtime": "4.1.0",
  1616. "System.Runtime.Extensions": "4.1.0",
  1617. "System.Threading": "4.0.11"
  1618. },
  1619. "compile": {
  1620. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1621. "related": ".xml"
  1622. }
  1623. },
  1624. "runtime": {
  1625. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1626. }
  1627. },
  1628. "System.Formats.Asn1/5.0.0": {
  1629. "type": "package",
  1630. "compile": {
  1631. "lib/netstandard2.0/_._": {
  1632. "related": ".xml"
  1633. }
  1634. },
  1635. "runtime": {
  1636. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1637. "related": ".xml"
  1638. }
  1639. }
  1640. },
  1641. "System.Globalization/4.3.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.NETCore.Platforms": "1.1.0",
  1645. "Microsoft.NETCore.Targets": "1.1.0",
  1646. "System.Runtime": "4.3.0"
  1647. },
  1648. "compile": {
  1649. "ref/netstandard1.3/System.Globalization.dll": {
  1650. "related": ".xml"
  1651. }
  1652. }
  1653. },
  1654. "System.Globalization.Calendars/4.3.0": {
  1655. "type": "package",
  1656. "dependencies": {
  1657. "Microsoft.NETCore.Platforms": "1.1.0",
  1658. "Microsoft.NETCore.Targets": "1.1.0",
  1659. "System.Globalization": "4.3.0",
  1660. "System.Runtime": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.3/_._": {
  1664. "related": ".xml"
  1665. }
  1666. }
  1667. },
  1668. "System.Globalization.Extensions/4.3.0": {
  1669. "type": "package",
  1670. "dependencies": {
  1671. "Microsoft.NETCore.Platforms": "1.1.0",
  1672. "System.Globalization": "4.3.0",
  1673. "System.Resources.ResourceManager": "4.3.0",
  1674. "System.Runtime": "4.3.0",
  1675. "System.Runtime.Extensions": "4.3.0",
  1676. "System.Runtime.InteropServices": "4.3.0"
  1677. },
  1678. "compile": {
  1679. "ref/netstandard1.3/_._": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtimeTargets": {
  1684. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1685. "assetType": "runtime",
  1686. "rid": "unix"
  1687. },
  1688. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1689. "assetType": "runtime",
  1690. "rid": "win"
  1691. }
  1692. }
  1693. },
  1694. "System.IO/4.3.0": {
  1695. "type": "package",
  1696. "dependencies": {
  1697. "Microsoft.NETCore.Platforms": "1.1.0",
  1698. "Microsoft.NETCore.Targets": "1.1.0",
  1699. "System.Runtime": "4.3.0",
  1700. "System.Text.Encoding": "4.3.0",
  1701. "System.Threading.Tasks": "4.3.0"
  1702. },
  1703. "compile": {
  1704. "ref/netstandard1.5/System.IO.dll": {
  1705. "related": ".xml"
  1706. }
  1707. }
  1708. },
  1709. "System.IO.FileSystem/4.3.0": {
  1710. "type": "package",
  1711. "dependencies": {
  1712. "Microsoft.NETCore.Platforms": "1.1.0",
  1713. "Microsoft.NETCore.Targets": "1.1.0",
  1714. "System.IO": "4.3.0",
  1715. "System.IO.FileSystem.Primitives": "4.3.0",
  1716. "System.Runtime": "4.3.0",
  1717. "System.Runtime.Handles": "4.3.0",
  1718. "System.Text.Encoding": "4.3.0",
  1719. "System.Threading.Tasks": "4.3.0"
  1720. },
  1721. "compile": {
  1722. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1723. "related": ".xml"
  1724. }
  1725. }
  1726. },
  1727. "System.IO.FileSystem.Primitives/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "System.Runtime": "4.3.0"
  1731. },
  1732. "compile": {
  1733. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1734. "related": ".xml"
  1735. }
  1736. },
  1737. "runtime": {
  1738. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1739. }
  1740. },
  1741. "System.Linq/4.3.0": {
  1742. "type": "package",
  1743. "dependencies": {
  1744. "System.Collections": "4.3.0",
  1745. "System.Diagnostics.Debug": "4.3.0",
  1746. "System.Resources.ResourceManager": "4.3.0",
  1747. "System.Runtime": "4.3.0",
  1748. "System.Runtime.Extensions": "4.3.0"
  1749. },
  1750. "compile": {
  1751. "ref/netstandard1.6/System.Linq.dll": {
  1752. "related": ".xml"
  1753. }
  1754. },
  1755. "runtime": {
  1756. "lib/netstandard1.6/System.Linq.dll": {}
  1757. }
  1758. },
  1759. "System.Linq.Expressions/4.1.0": {
  1760. "type": "package",
  1761. "dependencies": {
  1762. "System.Collections": "4.0.11",
  1763. "System.Diagnostics.Debug": "4.0.11",
  1764. "System.Globalization": "4.0.11",
  1765. "System.IO": "4.1.0",
  1766. "System.Linq": "4.1.0",
  1767. "System.ObjectModel": "4.0.12",
  1768. "System.Reflection": "4.1.0",
  1769. "System.Reflection.Emit": "4.0.1",
  1770. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1771. "System.Reflection.Emit.Lightweight": "4.0.1",
  1772. "System.Reflection.Extensions": "4.0.1",
  1773. "System.Reflection.Primitives": "4.0.1",
  1774. "System.Reflection.TypeExtensions": "4.1.0",
  1775. "System.Resources.ResourceManager": "4.0.1",
  1776. "System.Runtime": "4.1.0",
  1777. "System.Runtime.Extensions": "4.1.0",
  1778. "System.Threading": "4.0.11"
  1779. },
  1780. "compile": {
  1781. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1787. }
  1788. },
  1789. "System.Memory/4.5.3": {
  1790. "type": "package",
  1791. "compile": {
  1792. "ref/netcoreapp2.1/_._": {}
  1793. },
  1794. "runtime": {
  1795. "lib/netcoreapp2.1/_._": {}
  1796. }
  1797. },
  1798. "System.ObjectModel/4.0.12": {
  1799. "type": "package",
  1800. "dependencies": {
  1801. "System.Collections": "4.0.11",
  1802. "System.Diagnostics.Debug": "4.0.11",
  1803. "System.Resources.ResourceManager": "4.0.1",
  1804. "System.Runtime": "4.1.0",
  1805. "System.Threading": "4.0.11"
  1806. },
  1807. "compile": {
  1808. "ref/netstandard1.3/System.ObjectModel.dll": {
  1809. "related": ".xml"
  1810. }
  1811. },
  1812. "runtime": {
  1813. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1814. }
  1815. },
  1816. "System.Reflection/4.3.0": {
  1817. "type": "package",
  1818. "dependencies": {
  1819. "Microsoft.NETCore.Platforms": "1.1.0",
  1820. "Microsoft.NETCore.Targets": "1.1.0",
  1821. "System.IO": "4.3.0",
  1822. "System.Reflection.Primitives": "4.3.0",
  1823. "System.Runtime": "4.3.0"
  1824. },
  1825. "compile": {
  1826. "ref/netstandard1.5/System.Reflection.dll": {
  1827. "related": ".xml"
  1828. }
  1829. }
  1830. },
  1831. "System.Reflection.Emit/4.3.0": {
  1832. "type": "package",
  1833. "dependencies": {
  1834. "System.IO": "4.3.0",
  1835. "System.Reflection": "4.3.0",
  1836. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1837. "System.Reflection.Primitives": "4.3.0",
  1838. "System.Runtime": "4.3.0"
  1839. },
  1840. "compile": {
  1841. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  1842. "related": ".xml"
  1843. }
  1844. },
  1845. "runtime": {
  1846. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1847. }
  1848. },
  1849. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Reflection": "4.3.0",
  1853. "System.Reflection.Primitives": "4.3.0",
  1854. "System.Runtime": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1858. "related": ".xml"
  1859. }
  1860. },
  1861. "runtime": {
  1862. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1863. }
  1864. },
  1865. "System.Reflection.Emit.Lightweight/4.0.1": {
  1866. "type": "package",
  1867. "dependencies": {
  1868. "System.Reflection": "4.1.0",
  1869. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1870. "System.Reflection.Primitives": "4.0.1",
  1871. "System.Runtime": "4.1.0"
  1872. },
  1873. "compile": {
  1874. "ref/netstandard1.0/_._": {
  1875. "related": ".xml"
  1876. }
  1877. },
  1878. "runtime": {
  1879. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1880. }
  1881. },
  1882. "System.Reflection.Extensions/4.3.0": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "Microsoft.NETCore.Platforms": "1.1.0",
  1886. "Microsoft.NETCore.Targets": "1.1.0",
  1887. "System.Reflection": "4.3.0",
  1888. "System.Runtime": "4.3.0"
  1889. },
  1890. "compile": {
  1891. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  1892. "related": ".xml"
  1893. }
  1894. }
  1895. },
  1896. "System.Reflection.Primitives/4.3.0": {
  1897. "type": "package",
  1898. "dependencies": {
  1899. "Microsoft.NETCore.Platforms": "1.1.0",
  1900. "Microsoft.NETCore.Targets": "1.1.0",
  1901. "System.Runtime": "4.3.0"
  1902. },
  1903. "compile": {
  1904. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1905. "related": ".xml"
  1906. }
  1907. }
  1908. },
  1909. "System.Reflection.TypeExtensions/4.3.0": {
  1910. "type": "package",
  1911. "dependencies": {
  1912. "System.Reflection": "4.3.0",
  1913. "System.Runtime": "4.3.0"
  1914. },
  1915. "compile": {
  1916. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  1917. "related": ".xml"
  1918. }
  1919. },
  1920. "runtime": {
  1921. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1922. }
  1923. },
  1924. "System.Resources.ResourceManager/4.3.0": {
  1925. "type": "package",
  1926. "dependencies": {
  1927. "Microsoft.NETCore.Platforms": "1.1.0",
  1928. "Microsoft.NETCore.Targets": "1.1.0",
  1929. "System.Globalization": "4.3.0",
  1930. "System.Reflection": "4.3.0",
  1931. "System.Runtime": "4.3.0"
  1932. },
  1933. "compile": {
  1934. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  1935. "related": ".xml"
  1936. }
  1937. }
  1938. },
  1939. "System.Runtime/4.3.0": {
  1940. "type": "package",
  1941. "dependencies": {
  1942. "Microsoft.NETCore.Platforms": "1.1.0",
  1943. "Microsoft.NETCore.Targets": "1.1.0"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard1.5/System.Runtime.dll": {
  1947. "related": ".xml"
  1948. }
  1949. }
  1950. },
  1951. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1952. "type": "package",
  1953. "compile": {
  1954. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1955. "related": ".xml"
  1956. }
  1957. },
  1958. "runtime": {
  1959. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1960. "related": ".xml"
  1961. }
  1962. },
  1963. "build": {
  1964. "buildTransitive/netcoreapp3.1/_._": {}
  1965. }
  1966. },
  1967. "System.Runtime.Extensions/4.3.0": {
  1968. "type": "package",
  1969. "dependencies": {
  1970. "Microsoft.NETCore.Platforms": "1.1.0",
  1971. "Microsoft.NETCore.Targets": "1.1.0",
  1972. "System.Runtime": "4.3.0"
  1973. },
  1974. "compile": {
  1975. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  1976. "related": ".xml"
  1977. }
  1978. }
  1979. },
  1980. "System.Runtime.Handles/4.3.0": {
  1981. "type": "package",
  1982. "dependencies": {
  1983. "Microsoft.NETCore.Platforms": "1.1.0",
  1984. "Microsoft.NETCore.Targets": "1.1.0",
  1985. "System.Runtime": "4.3.0"
  1986. },
  1987. "compile": {
  1988. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  1989. "related": ".xml"
  1990. }
  1991. }
  1992. },
  1993. "System.Runtime.InteropServices/4.3.0": {
  1994. "type": "package",
  1995. "dependencies": {
  1996. "Microsoft.NETCore.Platforms": "1.1.0",
  1997. "Microsoft.NETCore.Targets": "1.1.0",
  1998. "System.Reflection": "4.3.0",
  1999. "System.Reflection.Primitives": "4.3.0",
  2000. "System.Runtime": "4.3.0",
  2001. "System.Runtime.Handles": "4.3.0"
  2002. },
  2003. "compile": {
  2004. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2005. }
  2006. },
  2007. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2008. "type": "package",
  2009. "dependencies": {
  2010. "System.Reflection": "4.3.0",
  2011. "System.Reflection.Extensions": "4.3.0",
  2012. "System.Resources.ResourceManager": "4.3.0",
  2013. "System.Runtime": "4.3.0",
  2014. "System.Runtime.InteropServices": "4.3.0",
  2015. "System.Threading": "4.3.0",
  2016. "runtime.native.System": "4.3.0"
  2017. },
  2018. "compile": {
  2019. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2020. },
  2021. "runtime": {
  2022. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2023. },
  2024. "runtimeTargets": {
  2025. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2026. "assetType": "runtime",
  2027. "rid": "unix"
  2028. },
  2029. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2030. "assetType": "runtime",
  2031. "rid": "win"
  2032. }
  2033. }
  2034. },
  2035. "System.Runtime.Numerics/4.3.0": {
  2036. "type": "package",
  2037. "dependencies": {
  2038. "System.Globalization": "4.3.0",
  2039. "System.Resources.ResourceManager": "4.3.0",
  2040. "System.Runtime": "4.3.0",
  2041. "System.Runtime.Extensions": "4.3.0"
  2042. },
  2043. "compile": {
  2044. "ref/netstandard1.1/_._": {
  2045. "related": ".xml"
  2046. }
  2047. },
  2048. "runtime": {
  2049. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2050. }
  2051. },
  2052. "System.Runtime.Serialization.Primitives/4.1.1": {
  2053. "type": "package",
  2054. "dependencies": {
  2055. "System.Resources.ResourceManager": "4.0.1",
  2056. "System.Runtime": "4.1.0"
  2057. },
  2058. "compile": {
  2059. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2060. "related": ".xml"
  2061. }
  2062. },
  2063. "runtime": {
  2064. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2065. }
  2066. },
  2067. "System.Security.AccessControl/5.0.0": {
  2068. "type": "package",
  2069. "dependencies": {
  2070. "Microsoft.NETCore.Platforms": "5.0.0",
  2071. "System.Security.Principal.Windows": "5.0.0"
  2072. },
  2073. "compile": {
  2074. "ref/netstandard2.0/_._": {
  2075. "related": ".xml"
  2076. }
  2077. },
  2078. "runtime": {
  2079. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2080. "related": ".xml"
  2081. }
  2082. },
  2083. "runtimeTargets": {
  2084. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2085. "assetType": "runtime",
  2086. "rid": "win"
  2087. }
  2088. }
  2089. },
  2090. "System.Security.Claims/4.3.0": {
  2091. "type": "package",
  2092. "dependencies": {
  2093. "System.Collections": "4.3.0",
  2094. "System.Globalization": "4.3.0",
  2095. "System.IO": "4.3.0",
  2096. "System.Resources.ResourceManager": "4.3.0",
  2097. "System.Runtime": "4.3.0",
  2098. "System.Runtime.Extensions": "4.3.0",
  2099. "System.Security.Principal": "4.3.0"
  2100. },
  2101. "compile": {
  2102. "ref/netstandard1.3/System.Security.Claims.dll": {
  2103. "related": ".xml"
  2104. }
  2105. },
  2106. "runtime": {
  2107. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2108. }
  2109. },
  2110. "System.Security.Cryptography.Algorithms/4.3.0": {
  2111. "type": "package",
  2112. "dependencies": {
  2113. "Microsoft.NETCore.Platforms": "1.1.0",
  2114. "System.Collections": "4.3.0",
  2115. "System.IO": "4.3.0",
  2116. "System.Resources.ResourceManager": "4.3.0",
  2117. "System.Runtime": "4.3.0",
  2118. "System.Runtime.Extensions": "4.3.0",
  2119. "System.Runtime.Handles": "4.3.0",
  2120. "System.Runtime.InteropServices": "4.3.0",
  2121. "System.Runtime.Numerics": "4.3.0",
  2122. "System.Security.Cryptography.Encoding": "4.3.0",
  2123. "System.Security.Cryptography.Primitives": "4.3.0",
  2124. "System.Text.Encoding": "4.3.0",
  2125. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2126. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2127. },
  2128. "compile": {
  2129. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2130. },
  2131. "runtimeTargets": {
  2132. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2133. "assetType": "runtime",
  2134. "rid": "osx"
  2135. },
  2136. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2137. "assetType": "runtime",
  2138. "rid": "unix"
  2139. },
  2140. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2141. "assetType": "runtime",
  2142. "rid": "win"
  2143. }
  2144. }
  2145. },
  2146. "System.Security.Cryptography.Cng/5.0.0": {
  2147. "type": "package",
  2148. "dependencies": {
  2149. "System.Formats.Asn1": "5.0.0"
  2150. },
  2151. "compile": {
  2152. "ref/netcoreapp3.0/_._": {
  2153. "related": ".xml"
  2154. }
  2155. },
  2156. "runtime": {
  2157. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2158. "related": ".xml"
  2159. }
  2160. },
  2161. "runtimeTargets": {
  2162. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2163. "assetType": "runtime",
  2164. "rid": "win"
  2165. }
  2166. }
  2167. },
  2168. "System.Security.Cryptography.Csp/4.3.0": {
  2169. "type": "package",
  2170. "dependencies": {
  2171. "Microsoft.NETCore.Platforms": "1.1.0",
  2172. "System.IO": "4.3.0",
  2173. "System.Reflection": "4.3.0",
  2174. "System.Resources.ResourceManager": "4.3.0",
  2175. "System.Runtime": "4.3.0",
  2176. "System.Runtime.Extensions": "4.3.0",
  2177. "System.Runtime.Handles": "4.3.0",
  2178. "System.Runtime.InteropServices": "4.3.0",
  2179. "System.Security.Cryptography.Algorithms": "4.3.0",
  2180. "System.Security.Cryptography.Encoding": "4.3.0",
  2181. "System.Security.Cryptography.Primitives": "4.3.0",
  2182. "System.Text.Encoding": "4.3.0",
  2183. "System.Threading": "4.3.0"
  2184. },
  2185. "compile": {
  2186. "ref/netstandard1.3/_._": {}
  2187. },
  2188. "runtimeTargets": {
  2189. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2190. "assetType": "runtime",
  2191. "rid": "unix"
  2192. },
  2193. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2194. "assetType": "runtime",
  2195. "rid": "win"
  2196. }
  2197. }
  2198. },
  2199. "System.Security.Cryptography.Encoding/4.3.0": {
  2200. "type": "package",
  2201. "dependencies": {
  2202. "Microsoft.NETCore.Platforms": "1.1.0",
  2203. "System.Collections": "4.3.0",
  2204. "System.Collections.Concurrent": "4.3.0",
  2205. "System.Linq": "4.3.0",
  2206. "System.Resources.ResourceManager": "4.3.0",
  2207. "System.Runtime": "4.3.0",
  2208. "System.Runtime.Extensions": "4.3.0",
  2209. "System.Runtime.Handles": "4.3.0",
  2210. "System.Runtime.InteropServices": "4.3.0",
  2211. "System.Security.Cryptography.Primitives": "4.3.0",
  2212. "System.Text.Encoding": "4.3.0",
  2213. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2214. },
  2215. "compile": {
  2216. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2217. "related": ".xml"
  2218. }
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Collections": "4.3.0",
  2235. "System.IO": "4.3.0",
  2236. "System.Resources.ResourceManager": "4.3.0",
  2237. "System.Runtime": "4.3.0",
  2238. "System.Runtime.Extensions": "4.3.0",
  2239. "System.Runtime.Handles": "4.3.0",
  2240. "System.Runtime.InteropServices": "4.3.0",
  2241. "System.Runtime.Numerics": "4.3.0",
  2242. "System.Security.Cryptography.Algorithms": "4.3.0",
  2243. "System.Security.Cryptography.Encoding": "4.3.0",
  2244. "System.Security.Cryptography.Primitives": "4.3.0",
  2245. "System.Text.Encoding": "4.3.0",
  2246. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.6/_._": {}
  2250. },
  2251. "runtime": {
  2252. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2253. },
  2254. "runtimeTargets": {
  2255. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2256. "assetType": "runtime",
  2257. "rid": "unix"
  2258. }
  2259. }
  2260. },
  2261. "System.Security.Cryptography.Pkcs/5.0.0": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "System.Formats.Asn1": "5.0.0",
  2265. "System.Security.Cryptography.Cng": "5.0.0"
  2266. },
  2267. "compile": {
  2268. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2269. "related": ".xml"
  2270. }
  2271. },
  2272. "runtime": {
  2273. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2274. "related": ".xml"
  2275. }
  2276. },
  2277. "runtimeTargets": {
  2278. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2279. "assetType": "runtime",
  2280. "rid": "win"
  2281. }
  2282. }
  2283. },
  2284. "System.Security.Cryptography.Primitives/4.3.0": {
  2285. "type": "package",
  2286. "dependencies": {
  2287. "System.Diagnostics.Debug": "4.3.0",
  2288. "System.Globalization": "4.3.0",
  2289. "System.IO": "4.3.0",
  2290. "System.Resources.ResourceManager": "4.3.0",
  2291. "System.Runtime": "4.3.0",
  2292. "System.Threading": "4.3.0",
  2293. "System.Threading.Tasks": "4.3.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2297. },
  2298. "runtime": {
  2299. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2300. }
  2301. },
  2302. "System.Security.Cryptography.X509Certificates/4.3.2": {
  2303. "type": "package",
  2304. "dependencies": {
  2305. "Microsoft.NETCore.Platforms": "1.1.0",
  2306. "System.Collections": "4.3.0",
  2307. "System.Diagnostics.Debug": "4.3.0",
  2308. "System.Globalization": "4.3.0",
  2309. "System.Globalization.Calendars": "4.3.0",
  2310. "System.IO": "4.3.0",
  2311. "System.IO.FileSystem": "4.3.0",
  2312. "System.IO.FileSystem.Primitives": "4.3.0",
  2313. "System.Resources.ResourceManager": "4.3.0",
  2314. "System.Runtime": "4.3.0",
  2315. "System.Runtime.Extensions": "4.3.0",
  2316. "System.Runtime.Handles": "4.3.0",
  2317. "System.Runtime.InteropServices": "4.3.0",
  2318. "System.Runtime.Numerics": "4.3.0",
  2319. "System.Security.Cryptography.Algorithms": "4.3.0",
  2320. "System.Security.Cryptography.Cng": "4.3.0",
  2321. "System.Security.Cryptography.Csp": "4.3.0",
  2322. "System.Security.Cryptography.Encoding": "4.3.0",
  2323. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2324. "System.Security.Cryptography.Primitives": "4.3.0",
  2325. "System.Text.Encoding": "4.3.0",
  2326. "System.Threading": "4.3.0",
  2327. "runtime.native.System": "4.3.0",
  2328. "runtime.native.System.Net.Http": "4.3.0",
  2329. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2330. },
  2331. "compile": {
  2332. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2333. },
  2334. "runtimeTargets": {
  2335. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2336. "assetType": "runtime",
  2337. "rid": "unix"
  2338. },
  2339. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2340. "assetType": "runtime",
  2341. "rid": "win"
  2342. }
  2343. }
  2344. },
  2345. "System.Security.Principal/4.3.0": {
  2346. "type": "package",
  2347. "dependencies": {
  2348. "System.Runtime": "4.3.0"
  2349. },
  2350. "compile": {
  2351. "ref/netstandard1.0/System.Security.Principal.dll": {
  2352. "related": ".xml"
  2353. }
  2354. },
  2355. "runtime": {
  2356. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2357. }
  2358. },
  2359. "System.Security.Principal.Windows/5.0.0": {
  2360. "type": "package",
  2361. "compile": {
  2362. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2363. "related": ".xml"
  2364. }
  2365. },
  2366. "runtime": {
  2367. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2368. "related": ".xml"
  2369. }
  2370. },
  2371. "runtimeTargets": {
  2372. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2373. "assetType": "runtime",
  2374. "rid": "unix"
  2375. },
  2376. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2377. "assetType": "runtime",
  2378. "rid": "win"
  2379. }
  2380. }
  2381. },
  2382. "System.Text.Encoding/4.3.0": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "Microsoft.NETCore.Platforms": "1.1.0",
  2386. "Microsoft.NETCore.Targets": "1.1.0",
  2387. "System.Runtime": "4.3.0"
  2388. },
  2389. "compile": {
  2390. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2391. "related": ".xml"
  2392. }
  2393. }
  2394. },
  2395. "System.Text.Encoding.CodePages/5.0.0": {
  2396. "type": "package",
  2397. "dependencies": {
  2398. "Microsoft.NETCore.Platforms": "5.0.0"
  2399. },
  2400. "compile": {
  2401. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2407. "related": ".xml"
  2408. }
  2409. },
  2410. "runtimeTargets": {
  2411. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2412. "assetType": "runtime",
  2413. "rid": "win"
  2414. }
  2415. }
  2416. },
  2417. "System.Text.Encoding.Extensions/4.3.0": {
  2418. "type": "package",
  2419. "dependencies": {
  2420. "Microsoft.NETCore.Platforms": "1.1.0",
  2421. "Microsoft.NETCore.Targets": "1.1.0",
  2422. "System.Runtime": "4.3.0",
  2423. "System.Text.Encoding": "4.3.0"
  2424. },
  2425. "compile": {
  2426. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2427. "related": ".xml"
  2428. }
  2429. }
  2430. },
  2431. "System.Text.Json/4.7.2": {
  2432. "type": "package",
  2433. "compile": {
  2434. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2435. "related": ".xml"
  2436. }
  2437. },
  2438. "runtime": {
  2439. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2440. "related": ".xml"
  2441. }
  2442. }
  2443. },
  2444. "System.Text.RegularExpressions/4.3.0": {
  2445. "type": "package",
  2446. "dependencies": {
  2447. "System.Runtime": "4.3.0"
  2448. },
  2449. "compile": {
  2450. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2451. },
  2452. "runtime": {
  2453. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2454. }
  2455. },
  2456. "System.Threading/4.3.0": {
  2457. "type": "package",
  2458. "dependencies": {
  2459. "System.Runtime": "4.3.0",
  2460. "System.Threading.Tasks": "4.3.0"
  2461. },
  2462. "compile": {
  2463. "ref/netstandard1.3/System.Threading.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/netstandard1.3/System.Threading.dll": {}
  2469. }
  2470. },
  2471. "System.Threading.Tasks/4.3.0": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "Microsoft.NETCore.Platforms": "1.1.0",
  2475. "Microsoft.NETCore.Targets": "1.1.0",
  2476. "System.Runtime": "4.3.0"
  2477. },
  2478. "compile": {
  2479. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2480. "related": ".xml"
  2481. }
  2482. }
  2483. },
  2484. "System.Threading.Tasks.Extensions/4.5.2": {
  2485. "type": "package",
  2486. "compile": {
  2487. "ref/netcoreapp2.1/_._": {}
  2488. },
  2489. "runtime": {
  2490. "lib/netcoreapp2.1/_._": {}
  2491. }
  2492. },
  2493. "System.Threading.Timer/4.0.1": {
  2494. "type": "package",
  2495. "dependencies": {
  2496. "Microsoft.NETCore.Platforms": "1.0.1",
  2497. "Microsoft.NETCore.Targets": "1.0.1",
  2498. "System.Runtime": "4.1.0"
  2499. },
  2500. "compile": {
  2501. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2502. "related": ".xml"
  2503. }
  2504. }
  2505. },
  2506. "System.Xml.ReaderWriter/4.3.0": {
  2507. "type": "package",
  2508. "dependencies": {
  2509. "System.Collections": "4.3.0",
  2510. "System.Diagnostics.Debug": "4.3.0",
  2511. "System.Globalization": "4.3.0",
  2512. "System.IO": "4.3.0",
  2513. "System.IO.FileSystem": "4.3.0",
  2514. "System.IO.FileSystem.Primitives": "4.3.0",
  2515. "System.Resources.ResourceManager": "4.3.0",
  2516. "System.Runtime": "4.3.0",
  2517. "System.Runtime.Extensions": "4.3.0",
  2518. "System.Runtime.InteropServices": "4.3.0",
  2519. "System.Text.Encoding": "4.3.0",
  2520. "System.Text.Encoding.Extensions": "4.3.0",
  2521. "System.Text.RegularExpressions": "4.3.0",
  2522. "System.Threading.Tasks": "4.3.0",
  2523. "System.Threading.Tasks.Extensions": "4.3.0"
  2524. },
  2525. "compile": {
  2526. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtime": {
  2531. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2532. }
  2533. },
  2534. "System.Xml.XDocument/4.0.11": {
  2535. "type": "package",
  2536. "dependencies": {
  2537. "System.Collections": "4.0.11",
  2538. "System.Diagnostics.Debug": "4.0.11",
  2539. "System.Diagnostics.Tools": "4.0.1",
  2540. "System.Globalization": "4.0.11",
  2541. "System.IO": "4.1.0",
  2542. "System.Reflection": "4.1.0",
  2543. "System.Resources.ResourceManager": "4.0.1",
  2544. "System.Runtime": "4.1.0",
  2545. "System.Runtime.Extensions": "4.1.0",
  2546. "System.Text.Encoding": "4.0.11",
  2547. "System.Threading": "4.0.11",
  2548. "System.Xml.ReaderWriter": "4.0.11"
  2549. },
  2550. "compile": {
  2551. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2552. "related": ".xml"
  2553. }
  2554. },
  2555. "runtime": {
  2556. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2557. }
  2558. },
  2559. "System.Xml.XmlDocument/4.3.0": {
  2560. "type": "package",
  2561. "dependencies": {
  2562. "System.Collections": "4.3.0",
  2563. "System.Diagnostics.Debug": "4.3.0",
  2564. "System.Globalization": "4.3.0",
  2565. "System.IO": "4.3.0",
  2566. "System.Resources.ResourceManager": "4.3.0",
  2567. "System.Runtime": "4.3.0",
  2568. "System.Runtime.Extensions": "4.3.0",
  2569. "System.Text.Encoding": "4.3.0",
  2570. "System.Threading": "4.3.0",
  2571. "System.Xml.ReaderWriter": "4.3.0"
  2572. },
  2573. "compile": {
  2574. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2575. "related": ".xml"
  2576. }
  2577. },
  2578. "runtime": {
  2579. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2580. }
  2581. },
  2582. "System.Xml.XPath/4.3.0": {
  2583. "type": "package",
  2584. "dependencies": {
  2585. "System.Collections": "4.3.0",
  2586. "System.Diagnostics.Debug": "4.3.0",
  2587. "System.Globalization": "4.3.0",
  2588. "System.IO": "4.3.0",
  2589. "System.Resources.ResourceManager": "4.3.0",
  2590. "System.Runtime": "4.3.0",
  2591. "System.Runtime.Extensions": "4.3.0",
  2592. "System.Threading": "4.3.0",
  2593. "System.Xml.ReaderWriter": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.3/System.Xml.XPath.dll": {
  2597. "related": ".xml"
  2598. }
  2599. },
  2600. "runtime": {
  2601. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2602. }
  2603. },
  2604. "System.Xml.XPath.XmlDocument/4.3.0": {
  2605. "type": "package",
  2606. "dependencies": {
  2607. "System.Collections": "4.3.0",
  2608. "System.Globalization": "4.3.0",
  2609. "System.IO": "4.3.0",
  2610. "System.Resources.ResourceManager": "4.3.0",
  2611. "System.Runtime": "4.3.0",
  2612. "System.Runtime.Extensions": "4.3.0",
  2613. "System.Threading": "4.3.0",
  2614. "System.Xml.ReaderWriter": "4.3.0",
  2615. "System.Xml.XPath": "4.3.0",
  2616. "System.Xml.XmlDocument": "4.3.0"
  2617. },
  2618. "compile": {
  2619. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2620. "related": ".xml"
  2621. }
  2622. },
  2623. "runtime": {
  2624. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2625. }
  2626. },
  2627. "Unity.Abstractions/5.11.7": {
  2628. "type": "package",
  2629. "dependencies": {
  2630. "System.Threading.Tasks.Extensions": "4.5.2"
  2631. },
  2632. "compile": {
  2633. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  2634. "related": ".pdb"
  2635. }
  2636. },
  2637. "runtime": {
  2638. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  2639. "related": ".pdb"
  2640. }
  2641. }
  2642. },
  2643. "Unity.Container/5.11.11": {
  2644. "type": "package",
  2645. "dependencies": {
  2646. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  2647. "Unity.Abstractions": "5.11.7"
  2648. },
  2649. "compile": {
  2650. "lib/netcoreapp3.0/Unity.Container.dll": {
  2651. "related": ".pdb"
  2652. }
  2653. },
  2654. "runtime": {
  2655. "lib/netcoreapp3.0/Unity.Container.dll": {
  2656. "related": ".pdb"
  2657. }
  2658. }
  2659. },
  2660. "Unity.Interception/5.11.1": {
  2661. "type": "package",
  2662. "dependencies": {
  2663. "System.Reflection.Emit": "4.3.0",
  2664. "Unity.Container": "5.11.1"
  2665. },
  2666. "compile": {
  2667. "lib/netcoreapp2.0/Unity.Interception.dll": {
  2668. "related": ".pdb"
  2669. }
  2670. },
  2671. "runtime": {
  2672. "lib/netcoreapp2.0/Unity.Interception.dll": {
  2673. "related": ".pdb"
  2674. }
  2675. }
  2676. },
  2677. "YamlDotNet/11.2.1": {
  2678. "type": "package",
  2679. "compile": {
  2680. "lib/netstandard2.1/YamlDotNet.dll": {
  2681. "related": ".xml"
  2682. }
  2683. },
  2684. "runtime": {
  2685. "lib/netstandard2.1/YamlDotNet.dll": {
  2686. "related": ".xml"
  2687. }
  2688. }
  2689. },
  2690. "SHJX.Service.Model/1.0.0": {
  2691. "type": "project",
  2692. "framework": ".NETCoreApp,Version=v6.0",
  2693. "dependencies": {
  2694. "Panuon.UI.Silver": "1.1.3.4",
  2695. "Prism.Core": "8.1.97"
  2696. },
  2697. "compile": {
  2698. "bin/placeholder/SHJX.Service.Model.dll": {}
  2699. },
  2700. "runtime": {
  2701. "bin/placeholder/SHJX.Service.Model.dll": {}
  2702. },
  2703. "frameworkReferences": [
  2704. "Microsoft.WindowsDesktop.App.WPF"
  2705. ]
  2706. },
  2707. "shjxCamera/1.0.0": {
  2708. "type": "project",
  2709. "framework": ".NETCoreApp,Version=v6.0",
  2710. "dependencies": {
  2711. "AForge": "2.2.5",
  2712. "Microsoft.Extensions.Logging": "7.0.0",
  2713. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  2714. "System.Diagnostics.DiagnosticSource": "7.0.2",
  2715. "System.Drawing.Common": "7.0.0"
  2716. },
  2717. "compile": {
  2718. "bin/placeholder/shjxCamera.dll": {}
  2719. },
  2720. "runtime": {
  2721. "bin/placeholder/shjxCamera.dll": {}
  2722. }
  2723. }
  2724. }
  2725. },
  2726. "libraries": {
  2727. "AForge/2.2.5": {
  2728. "sha512": "clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==",
  2729. "type": "package",
  2730. "path": "aforge/2.2.5",
  2731. "files": [
  2732. ".nupkg.metadata",
  2733. ".signature.p7s",
  2734. "aforge.2.2.5.nupkg.sha512",
  2735. "aforge.nuspec",
  2736. "lib/AForge.dll",
  2737. "lib/AForge.xml"
  2738. ]
  2739. },
  2740. "ControlzEx/4.4.0": {
  2741. "sha512": "pZ5z4hYWwE4R13UMCVs6vII//nL7hz+Nwn4oJlnsZJRGqJNy6Z9KnJiTZfly6lKFu0pMc1aWBZpx+VqFTQKP1Q==",
  2742. "type": "package",
  2743. "path": "controlzex/4.4.0",
  2744. "files": [
  2745. ".nupkg.metadata",
  2746. ".signature.p7s",
  2747. "controlzex.4.4.0.nupkg.sha512",
  2748. "controlzex.nuspec",
  2749. "lib/net45/ControlzEx.dll",
  2750. "lib/net45/ControlzEx.pdb",
  2751. "lib/net45/ControlzEx.xml",
  2752. "lib/net462/ControlzEx.dll",
  2753. "lib/net462/ControlzEx.pdb",
  2754. "lib/net462/ControlzEx.xml",
  2755. "lib/netcoreapp3.0/ControlzEx.dll",
  2756. "lib/netcoreapp3.0/ControlzEx.pdb",
  2757. "lib/netcoreapp3.0/ControlzEx.xml",
  2758. "lib/netcoreapp3.1/ControlzEx.dll",
  2759. "lib/netcoreapp3.1/ControlzEx.pdb",
  2760. "lib/netcoreapp3.1/ControlzEx.xml",
  2761. "logo-mini.png"
  2762. ]
  2763. },
  2764. "EPPlus/5.6.4": {
  2765. "sha512": "JpkTI30hZnNcXis/EEbVE0dflVQD8MXrEMEt2HGZsmdIKnMw1ezqeHlbCIpvyWGNjFLizpZKd3nMoFuJWtrNIw==",
  2766. "type": "package",
  2767. "path": "epplus/5.6.4",
  2768. "files": [
  2769. ".nupkg.metadata",
  2770. ".signature.p7s",
  2771. "EPPlusLogo.png",
  2772. "epplus.5.6.4.nupkg.sha512",
  2773. "epplus.nuspec",
  2774. "lib/net35/EPPlus.dll",
  2775. "lib/net35/EPPlus.xml",
  2776. "lib/net40/EPPlus.dll",
  2777. "lib/net40/EPPlus.xml",
  2778. "lib/net45/EPPlus.dll",
  2779. "lib/net45/EPPlus.xml",
  2780. "lib/net5.0/EPPlus.dll",
  2781. "lib/net5.0/EPPlus.xml",
  2782. "lib/netstandard2.0/EPPlus.dll",
  2783. "lib/netstandard2.0/EPPlus.xml",
  2784. "lib/netstandard2.1/EPPlus.dll",
  2785. "lib/netstandard2.1/EPPlus.xml",
  2786. "license.md",
  2787. "readme.txt"
  2788. ]
  2789. },
  2790. "LiveCharts/0.9.7": {
  2791. "sha512": "p4xyBrUaNNfkWZSNsIle0r51cyVyFg0Yi0uBRZM5GQtdFiA/7guZHlffFyNUILIdux10Ch2hUaJpcZENVU9aaQ==",
  2792. "type": "package",
  2793. "path": "livecharts/0.9.7",
  2794. "files": [
  2795. ".nupkg.metadata",
  2796. ".signature.p7s",
  2797. "lib/net40/LiveCharts.dll",
  2798. "lib/net40/LiveCharts.pdb",
  2799. "lib/net40/LiveCharts.xml",
  2800. "lib/net45/LiveCharts.dll",
  2801. "lib/net45/LiveCharts.pdb",
  2802. "lib/net45/LiveCharts.xml",
  2803. "lib/portable-net45+win8+wp8/LiveCharts.XML",
  2804. "lib/portable-net45+win8+wp8/LiveCharts.dll",
  2805. "lib/portable-net45+win8+wp8/LiveCharts.pdb",
  2806. "livecharts.0.9.7.nupkg.sha512",
  2807. "livecharts.nuspec",
  2808. "readme.txt"
  2809. ]
  2810. },
  2811. "LiveCharts.Wpf/0.9.7": {
  2812. "sha512": "lv6YZoK0B4yWykMq5b9grZXtIbTj+OWu4sVN9GDpdgV6zffu64m4d5CW8KSjfSl9rB8VU649x1NZvhoU67hCDg==",
  2813. "type": "package",
  2814. "path": "livecharts.wpf/0.9.7",
  2815. "hasTools": true,
  2816. "files": [
  2817. ".nupkg.metadata",
  2818. ".signature.p7s",
  2819. "lib/net40/LiveCharts.Wpf.XML",
  2820. "lib/net40/LiveCharts.Wpf.dll",
  2821. "lib/net40/LiveCharts.Wpf.pdb",
  2822. "lib/net45/LiveCharts.Wpf.XML",
  2823. "lib/net45/LiveCharts.Wpf.dll",
  2824. "lib/net45/LiveCharts.Wpf.pdb",
  2825. "livecharts.wpf.0.9.7.nupkg.sha512",
  2826. "livecharts.wpf.nuspec",
  2827. "tools/install.ps1"
  2828. ]
  2829. },
  2830. "MahApps.Metro/2.4.5": {
  2831. "sha512": "fUmU2yQgHqUTDDZT494+WcMBrg6G/960et7eqIvKGRRwH0I/d6cA6AuvRIJEQezxCFewweRbIkFvIOS62tjqug==",
  2832. "type": "package",
  2833. "path": "mahapps.metro/2.4.5",
  2834. "hasTools": true,
  2835. "files": [
  2836. ".nupkg.metadata",
  2837. ".signature.p7s",
  2838. "lib/net452/MahApps.Metro.dll",
  2839. "lib/net452/MahApps.Metro.pdb",
  2840. "lib/net452/MahApps.Metro.xml",
  2841. "lib/net452/de/MahApps.Metro.resources.dll",
  2842. "lib/net46/MahApps.Metro.dll",
  2843. "lib/net46/MahApps.Metro.pdb",
  2844. "lib/net46/MahApps.Metro.xml",
  2845. "lib/net46/de/MahApps.Metro.resources.dll",
  2846. "lib/net47/MahApps.Metro.dll",
  2847. "lib/net47/MahApps.Metro.pdb",
  2848. "lib/net47/MahApps.Metro.xml",
  2849. "lib/net47/de/MahApps.Metro.resources.dll",
  2850. "lib/netcoreapp3.0/MahApps.Metro.dll",
  2851. "lib/netcoreapp3.0/MahApps.Metro.pdb",
  2852. "lib/netcoreapp3.0/MahApps.Metro.xml",
  2853. "lib/netcoreapp3.0/de/MahApps.Metro.resources.dll",
  2854. "lib/netcoreapp3.1/MahApps.Metro.dll",
  2855. "lib/netcoreapp3.1/MahApps.Metro.pdb",
  2856. "lib/netcoreapp3.1/MahApps.Metro.xml",
  2857. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll",
  2858. "mahapps.metro.2.4.5.nupkg.sha512",
  2859. "mahapps.metro.logo.png",
  2860. "mahapps.metro.nuspec",
  2861. "tools/VisualStudioToolsManifest.xml"
  2862. ]
  2863. },
  2864. "Microsoft.CSharp/4.0.1": {
  2865. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  2866. "type": "package",
  2867. "path": "microsoft.csharp/4.0.1",
  2868. "files": [
  2869. ".nupkg.metadata",
  2870. ".signature.p7s",
  2871. "ThirdPartyNotices.txt",
  2872. "dotnet_library_license.txt",
  2873. "lib/MonoAndroid10/_._",
  2874. "lib/MonoTouch10/_._",
  2875. "lib/net45/_._",
  2876. "lib/netcore50/Microsoft.CSharp.dll",
  2877. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2878. "lib/portable-net45+win8+wp8+wpa81/_._",
  2879. "lib/win8/_._",
  2880. "lib/wp80/_._",
  2881. "lib/wpa81/_._",
  2882. "lib/xamarinios10/_._",
  2883. "lib/xamarinmac20/_._",
  2884. "lib/xamarintvos10/_._",
  2885. "lib/xamarinwatchos10/_._",
  2886. "microsoft.csharp.4.0.1.nupkg.sha512",
  2887. "microsoft.csharp.nuspec",
  2888. "ref/MonoAndroid10/_._",
  2889. "ref/MonoTouch10/_._",
  2890. "ref/net45/_._",
  2891. "ref/netcore50/Microsoft.CSharp.dll",
  2892. "ref/netcore50/Microsoft.CSharp.xml",
  2893. "ref/netcore50/de/Microsoft.CSharp.xml",
  2894. "ref/netcore50/es/Microsoft.CSharp.xml",
  2895. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2896. "ref/netcore50/it/Microsoft.CSharp.xml",
  2897. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2898. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2899. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2900. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2901. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2902. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2903. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2904. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2905. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2906. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2907. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2908. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2909. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2910. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2911. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2912. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2913. "ref/portable-net45+win8+wp8+wpa81/_._",
  2914. "ref/win8/_._",
  2915. "ref/wp80/_._",
  2916. "ref/wpa81/_._",
  2917. "ref/xamarinios10/_._",
  2918. "ref/xamarinmac20/_._",
  2919. "ref/xamarintvos10/_._",
  2920. "ref/xamarinwatchos10/_._"
  2921. ]
  2922. },
  2923. "Microsoft.Data.Sqlite.Core/5.0.6": {
  2924. "sha512": "SWzwdhBvS76iWewmN9YBqQLA56rgdUPzw35Mh0RuotNbKGxYjrbXKsKu/7TG+HG030lgtMyzS8yNLWQCw3bc2g==",
  2925. "type": "package",
  2926. "path": "microsoft.data.sqlite.core/5.0.6",
  2927. "files": [
  2928. ".nupkg.metadata",
  2929. ".signature.p7s",
  2930. "Icon.png",
  2931. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2932. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2933. "microsoft.data.sqlite.core.5.0.6.nupkg.sha512",
  2934. "microsoft.data.sqlite.core.nuspec"
  2935. ]
  2936. },
  2937. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  2938. "sha512": "2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
  2939. "type": "package",
  2940. "path": "microsoft.dotnet.platformabstractions/2.0.4",
  2941. "files": [
  2942. ".nupkg.metadata",
  2943. ".signature.p7s",
  2944. "LICENSE.TXT",
  2945. "THIRD-PARTY-NOTICES.TXT",
  2946. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  2947. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  2948. "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512",
  2949. "microsoft.dotnet.platformabstractions.nuspec"
  2950. ]
  2951. },
  2952. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  2953. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  2954. "type": "package",
  2955. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  2956. "files": [
  2957. ".nupkg.metadata",
  2958. ".signature.p7s",
  2959. "Icon.png",
  2960. "LICENSE.TXT",
  2961. "THIRD-PARTY-NOTICES.TXT",
  2962. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2963. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2964. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2965. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2966. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  2967. "microsoft.extensions.caching.abstractions.nuspec",
  2968. "useSharedDesignerContext.txt",
  2969. "version.txt"
  2970. ]
  2971. },
  2972. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  2973. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  2974. "type": "package",
  2975. "path": "microsoft.extensions.caching.memory/5.0.0",
  2976. "files": [
  2977. ".nupkg.metadata",
  2978. ".signature.p7s",
  2979. "Icon.png",
  2980. "LICENSE.TXT",
  2981. "THIRD-PARTY-NOTICES.TXT",
  2982. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2983. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2984. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2985. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2986. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  2987. "microsoft.extensions.caching.memory.nuspec",
  2988. "useSharedDesignerContext.txt",
  2989. "version.txt"
  2990. ]
  2991. },
  2992. "Microsoft.Extensions.Configuration/5.0.0": {
  2993. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  2994. "type": "package",
  2995. "path": "microsoft.extensions.configuration/5.0.0",
  2996. "files": [
  2997. ".nupkg.metadata",
  2998. ".signature.p7s",
  2999. "Icon.png",
  3000. "LICENSE.TXT",
  3001. "THIRD-PARTY-NOTICES.TXT",
  3002. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3003. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3004. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3005. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3006. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3007. "microsoft.extensions.configuration.nuspec",
  3008. "useSharedDesignerContext.txt",
  3009. "version.txt"
  3010. ]
  3011. },
  3012. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3013. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3014. "type": "package",
  3015. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3016. "files": [
  3017. ".nupkg.metadata",
  3018. ".signature.p7s",
  3019. "Icon.png",
  3020. "LICENSE.TXT",
  3021. "THIRD-PARTY-NOTICES.TXT",
  3022. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3023. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3024. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3025. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3026. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3027. "microsoft.extensions.configuration.abstractions.nuspec",
  3028. "useSharedDesignerContext.txt",
  3029. "version.txt"
  3030. ]
  3031. },
  3032. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3033. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3034. "type": "package",
  3035. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3036. "files": [
  3037. ".nupkg.metadata",
  3038. ".signature.p7s",
  3039. "Icon.png",
  3040. "LICENSE.TXT",
  3041. "THIRD-PARTY-NOTICES.TXT",
  3042. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3043. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3044. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3045. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3046. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3047. "microsoft.extensions.configuration.binder.nuspec",
  3048. "useSharedDesignerContext.txt",
  3049. "version.txt"
  3050. ]
  3051. },
  3052. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  3053. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  3054. "type": "package",
  3055. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  3056. "files": [
  3057. ".nupkg.metadata",
  3058. ".signature.p7s",
  3059. "Icon.png",
  3060. "LICENSE.TXT",
  3061. "THIRD-PARTY-NOTICES.TXT",
  3062. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  3063. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  3064. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3065. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3066. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  3067. "microsoft.extensions.configuration.commandline.nuspec",
  3068. "useSharedDesignerContext.txt",
  3069. "version.txt"
  3070. ]
  3071. },
  3072. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  3073. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  3074. "type": "package",
  3075. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  3076. "files": [
  3077. ".nupkg.metadata",
  3078. ".signature.p7s",
  3079. "Icon.png",
  3080. "LICENSE.TXT",
  3081. "THIRD-PARTY-NOTICES.TXT",
  3082. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3083. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3084. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3085. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3086. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  3087. "microsoft.extensions.configuration.environmentvariables.nuspec",
  3088. "useSharedDesignerContext.txt",
  3089. "version.txt"
  3090. ]
  3091. },
  3092. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3093. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3094. "type": "package",
  3095. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3096. "files": [
  3097. ".nupkg.metadata",
  3098. ".signature.p7s",
  3099. "Icon.png",
  3100. "LICENSE.TXT",
  3101. "THIRD-PARTY-NOTICES.TXT",
  3102. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3103. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3104. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3105. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3106. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3107. "microsoft.extensions.configuration.fileextensions.nuspec",
  3108. "useSharedDesignerContext.txt",
  3109. "version.txt"
  3110. ]
  3111. },
  3112. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3113. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3114. "type": "package",
  3115. "path": "microsoft.extensions.configuration.json/5.0.0",
  3116. "files": [
  3117. ".nupkg.metadata",
  3118. ".signature.p7s",
  3119. "Icon.png",
  3120. "LICENSE.TXT",
  3121. "THIRD-PARTY-NOTICES.TXT",
  3122. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3123. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3124. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3125. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3126. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3127. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3128. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3129. "microsoft.extensions.configuration.json.nuspec",
  3130. "useSharedDesignerContext.txt",
  3131. "version.txt"
  3132. ]
  3133. },
  3134. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  3135. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  3136. "type": "package",
  3137. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  3138. "files": [
  3139. ".nupkg.metadata",
  3140. ".signature.p7s",
  3141. "Icon.png",
  3142. "LICENSE.TXT",
  3143. "THIRD-PARTY-NOTICES.TXT",
  3144. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3145. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3146. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3147. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3148. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3149. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3150. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  3151. "microsoft.extensions.configuration.usersecrets.nuspec",
  3152. "useSharedDesignerContext.txt",
  3153. "version.txt"
  3154. ]
  3155. },
  3156. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  3157. "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  3158. "type": "package",
  3159. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  3160. "files": [
  3161. ".nupkg.metadata",
  3162. ".signature.p7s",
  3163. "Icon.png",
  3164. "LICENSE.TXT",
  3165. "THIRD-PARTY-NOTICES.TXT",
  3166. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  3167. "buildTransitive/net462/_._",
  3168. "buildTransitive/net6.0/_._",
  3169. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3170. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  3171. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  3172. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3173. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3174. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  3175. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  3176. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3177. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3178. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3179. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3180. "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
  3181. "microsoft.extensions.dependencyinjection.nuspec",
  3182. "useSharedDesignerContext.txt"
  3183. ]
  3184. },
  3185. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  3186. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  3187. "type": "package",
  3188. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  3189. "files": [
  3190. ".nupkg.metadata",
  3191. ".signature.p7s",
  3192. "Icon.png",
  3193. "LICENSE.TXT",
  3194. "THIRD-PARTY-NOTICES.TXT",
  3195. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3196. "buildTransitive/net462/_._",
  3197. "buildTransitive/net6.0/_._",
  3198. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3199. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3200. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3201. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3202. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3203. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3204. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3205. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3206. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3207. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3208. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3209. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  3210. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3211. "useSharedDesignerContext.txt"
  3212. ]
  3213. },
  3214. "Microsoft.Extensions.DependencyModel/2.0.4": {
  3215. "sha512": "jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
  3216. "type": "package",
  3217. "path": "microsoft.extensions.dependencymodel/2.0.4",
  3218. "files": [
  3219. ".nupkg.metadata",
  3220. ".signature.p7s",
  3221. "LICENSE.TXT",
  3222. "THIRD-PARTY-NOTICES.TXT",
  3223. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3224. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3225. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3226. "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512",
  3227. "microsoft.extensions.dependencymodel.nuspec"
  3228. ]
  3229. },
  3230. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3231. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3232. "type": "package",
  3233. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "Icon.png",
  3238. "LICENSE.TXT",
  3239. "THIRD-PARTY-NOTICES.TXT",
  3240. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3241. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3242. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3243. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3244. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3245. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3246. "useSharedDesignerContext.txt",
  3247. "version.txt"
  3248. ]
  3249. },
  3250. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3251. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3252. "type": "package",
  3253. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3254. "files": [
  3255. ".nupkg.metadata",
  3256. ".signature.p7s",
  3257. "Icon.png",
  3258. "LICENSE.TXT",
  3259. "THIRD-PARTY-NOTICES.TXT",
  3260. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3261. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3262. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3263. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3264. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3265. "microsoft.extensions.fileproviders.physical.nuspec",
  3266. "useSharedDesignerContext.txt",
  3267. "version.txt"
  3268. ]
  3269. },
  3270. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3271. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3272. "type": "package",
  3273. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3274. "files": [
  3275. ".nupkg.metadata",
  3276. ".signature.p7s",
  3277. "Icon.png",
  3278. "LICENSE.TXT",
  3279. "THIRD-PARTY-NOTICES.TXT",
  3280. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3281. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3282. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3283. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3284. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3285. "microsoft.extensions.filesystemglobbing.nuspec",
  3286. "useSharedDesignerContext.txt",
  3287. "version.txt"
  3288. ]
  3289. },
  3290. "Microsoft.Extensions.Hosting/5.0.0": {
  3291. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  3292. "type": "package",
  3293. "path": "microsoft.extensions.hosting/5.0.0",
  3294. "files": [
  3295. ".nupkg.metadata",
  3296. ".signature.p7s",
  3297. "Icon.png",
  3298. "LICENSE.TXT",
  3299. "THIRD-PARTY-NOTICES.TXT",
  3300. "lib/net461/Microsoft.Extensions.Hosting.dll",
  3301. "lib/net461/Microsoft.Extensions.Hosting.xml",
  3302. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3303. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3304. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  3305. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  3306. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  3307. "microsoft.extensions.hosting.nuspec",
  3308. "useSharedDesignerContext.txt",
  3309. "version.txt"
  3310. ]
  3311. },
  3312. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  3313. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  3314. "type": "package",
  3315. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  3316. "files": [
  3317. ".nupkg.metadata",
  3318. ".signature.p7s",
  3319. "Icon.png",
  3320. "LICENSE.TXT",
  3321. "THIRD-PARTY-NOTICES.TXT",
  3322. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  3323. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  3324. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3325. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3326. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3327. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3328. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  3329. "microsoft.extensions.hosting.abstractions.nuspec",
  3330. "useSharedDesignerContext.txt",
  3331. "version.txt"
  3332. ]
  3333. },
  3334. "Microsoft.Extensions.Logging/7.0.0": {
  3335. "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  3336. "type": "package",
  3337. "path": "microsoft.extensions.logging/7.0.0",
  3338. "files": [
  3339. ".nupkg.metadata",
  3340. ".signature.p7s",
  3341. "Icon.png",
  3342. "LICENSE.TXT",
  3343. "THIRD-PARTY-NOTICES.TXT",
  3344. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  3345. "buildTransitive/net462/_._",
  3346. "buildTransitive/net6.0/_._",
  3347. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  3348. "lib/net462/Microsoft.Extensions.Logging.dll",
  3349. "lib/net462/Microsoft.Extensions.Logging.xml",
  3350. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  3351. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  3352. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  3353. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  3354. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3355. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3356. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3357. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3358. "microsoft.extensions.logging.7.0.0.nupkg.sha512",
  3359. "microsoft.extensions.logging.nuspec",
  3360. "useSharedDesignerContext.txt"
  3361. ]
  3362. },
  3363. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  3364. "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  3365. "type": "package",
  3366. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  3367. "files": [
  3368. ".nupkg.metadata",
  3369. ".signature.p7s",
  3370. "Icon.png",
  3371. "LICENSE.TXT",
  3372. "THIRD-PARTY-NOTICES.TXT",
  3373. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3374. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3375. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3376. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3377. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3378. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3379. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3380. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3381. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3382. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3383. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3384. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3385. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3386. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3387. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3388. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3389. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3390. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3391. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3392. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3393. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3394. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3395. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3396. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3397. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3398. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3399. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3400. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3401. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  3402. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3403. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3404. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3405. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3406. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3407. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3408. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3409. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3410. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3411. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3412. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3413. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3414. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3415. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  3416. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  3417. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3418. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3419. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3420. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  3421. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  3422. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3423. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3424. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3425. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3426. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3427. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3428. "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
  3429. "microsoft.extensions.logging.abstractions.nuspec",
  3430. "useSharedDesignerContext.txt"
  3431. ]
  3432. },
  3433. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  3434. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  3435. "type": "package",
  3436. "path": "microsoft.extensions.logging.configuration/5.0.0",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "Icon.png",
  3441. "LICENSE.TXT",
  3442. "THIRD-PARTY-NOTICES.TXT",
  3443. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  3444. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  3445. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3446. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3447. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  3448. "microsoft.extensions.logging.configuration.nuspec",
  3449. "useSharedDesignerContext.txt",
  3450. "version.txt"
  3451. ]
  3452. },
  3453. "Microsoft.Extensions.Logging.Console/5.0.0": {
  3454. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  3455. "type": "package",
  3456. "path": "microsoft.extensions.logging.console/5.0.0",
  3457. "files": [
  3458. ".nupkg.metadata",
  3459. ".signature.p7s",
  3460. "Icon.png",
  3461. "LICENSE.TXT",
  3462. "THIRD-PARTY-NOTICES.TXT",
  3463. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  3464. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  3465. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  3466. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  3467. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3468. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3469. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  3470. "microsoft.extensions.logging.console.nuspec",
  3471. "useSharedDesignerContext.txt",
  3472. "version.txt"
  3473. ]
  3474. },
  3475. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  3476. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  3477. "type": "package",
  3478. "path": "microsoft.extensions.logging.debug/5.0.0",
  3479. "files": [
  3480. ".nupkg.metadata",
  3481. ".signature.p7s",
  3482. "Icon.png",
  3483. "LICENSE.TXT",
  3484. "THIRD-PARTY-NOTICES.TXT",
  3485. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  3486. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  3487. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  3488. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  3489. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  3490. "microsoft.extensions.logging.debug.nuspec",
  3491. "useSharedDesignerContext.txt",
  3492. "version.txt"
  3493. ]
  3494. },
  3495. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  3496. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  3497. "type": "package",
  3498. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  3499. "files": [
  3500. ".nupkg.metadata",
  3501. ".signature.p7s",
  3502. "Icon.png",
  3503. "LICENSE.TXT",
  3504. "THIRD-PARTY-NOTICES.TXT",
  3505. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  3506. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  3507. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  3508. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  3509. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  3510. "microsoft.extensions.logging.eventlog.nuspec",
  3511. "useSharedDesignerContext.txt",
  3512. "version.txt"
  3513. ]
  3514. },
  3515. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  3516. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  3517. "type": "package",
  3518. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  3519. "files": [
  3520. ".nupkg.metadata",
  3521. ".signature.p7s",
  3522. "Icon.png",
  3523. "LICENSE.TXT",
  3524. "THIRD-PARTY-NOTICES.TXT",
  3525. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  3526. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  3527. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  3528. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  3529. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  3530. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  3531. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  3532. "microsoft.extensions.logging.eventsource.nuspec",
  3533. "useSharedDesignerContext.txt",
  3534. "version.txt"
  3535. ]
  3536. },
  3537. "Microsoft.Extensions.Options/7.0.0": {
  3538. "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  3539. "type": "package",
  3540. "path": "microsoft.extensions.options/7.0.0",
  3541. "files": [
  3542. ".nupkg.metadata",
  3543. ".signature.p7s",
  3544. "Icon.png",
  3545. "LICENSE.TXT",
  3546. "THIRD-PARTY-NOTICES.TXT",
  3547. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  3548. "buildTransitive/net462/_._",
  3549. "buildTransitive/net6.0/_._",
  3550. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  3551. "lib/net462/Microsoft.Extensions.Options.dll",
  3552. "lib/net462/Microsoft.Extensions.Options.xml",
  3553. "lib/net6.0/Microsoft.Extensions.Options.dll",
  3554. "lib/net6.0/Microsoft.Extensions.Options.xml",
  3555. "lib/net7.0/Microsoft.Extensions.Options.dll",
  3556. "lib/net7.0/Microsoft.Extensions.Options.xml",
  3557. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3558. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3559. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3560. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3561. "microsoft.extensions.options.7.0.0.nupkg.sha512",
  3562. "microsoft.extensions.options.nuspec",
  3563. "useSharedDesignerContext.txt"
  3564. ]
  3565. },
  3566. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  3567. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  3568. "type": "package",
  3569. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  3570. "files": [
  3571. ".nupkg.metadata",
  3572. ".signature.p7s",
  3573. "Icon.png",
  3574. "LICENSE.TXT",
  3575. "THIRD-PARTY-NOTICES.TXT",
  3576. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3577. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3578. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3579. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3580. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  3581. "microsoft.extensions.options.configurationextensions.nuspec",
  3582. "useSharedDesignerContext.txt",
  3583. "version.txt"
  3584. ]
  3585. },
  3586. "Microsoft.Extensions.Primitives/7.0.0": {
  3587. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3588. "type": "package",
  3589. "path": "microsoft.extensions.primitives/7.0.0",
  3590. "files": [
  3591. ".nupkg.metadata",
  3592. ".signature.p7s",
  3593. "Icon.png",
  3594. "LICENSE.TXT",
  3595. "THIRD-PARTY-NOTICES.TXT",
  3596. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3597. "buildTransitive/net462/_._",
  3598. "buildTransitive/net6.0/_._",
  3599. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3600. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3601. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3602. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3603. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3604. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3605. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3606. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3607. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3608. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3609. "microsoft.extensions.primitives.nuspec",
  3610. "useSharedDesignerContext.txt"
  3611. ]
  3612. },
  3613. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  3614. "sha512": "6A0fyZkxoUUj1dpXzLAWwI89YmKZ+ZSp1DCg+gN6llcXJwfYo1IIQZoCkuo6T7vUxw/w1CSk/Pl04NQ4fno+DQ==",
  3615. "type": "package",
  3616. "path": "microsoft.io.recyclablememorystream/1.4.1",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "lib/net40/Microsoft.IO.RecyclableMemoryStream.dll",
  3621. "lib/net40/Microsoft.IO.RecyclableMemoryStream.xml",
  3622. "lib/net45/Microsoft.IO.RecyclableMemoryStream.dll",
  3623. "lib/net45/Microsoft.IO.RecyclableMemoryStream.xml",
  3624. "lib/net46/Microsoft.IO.RecyclableMemoryStream.dll",
  3625. "lib/net46/Microsoft.IO.RecyclableMemoryStream.xml",
  3626. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  3627. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  3628. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.dll",
  3629. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.xml",
  3630. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  3631. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  3632. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  3633. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  3634. "microsoft.io.recyclablememorystream.1.4.1.nupkg.sha512",
  3635. "microsoft.io.recyclablememorystream.nuspec"
  3636. ]
  3637. },
  3638. "Microsoft.NETCore.Platforms/5.0.0": {
  3639. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3640. "type": "package",
  3641. "path": "microsoft.netcore.platforms/5.0.0",
  3642. "files": [
  3643. ".nupkg.metadata",
  3644. ".signature.p7s",
  3645. "Icon.png",
  3646. "LICENSE.TXT",
  3647. "THIRD-PARTY-NOTICES.TXT",
  3648. "lib/netstandard1.0/_._",
  3649. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3650. "microsoft.netcore.platforms.nuspec",
  3651. "runtime.json",
  3652. "useSharedDesignerContext.txt",
  3653. "version.txt"
  3654. ]
  3655. },
  3656. "Microsoft.NETCore.Targets/1.1.0": {
  3657. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3658. "type": "package",
  3659. "path": "microsoft.netcore.targets/1.1.0",
  3660. "files": [
  3661. ".nupkg.metadata",
  3662. ".signature.p7s",
  3663. "ThirdPartyNotices.txt",
  3664. "dotnet_library_license.txt",
  3665. "lib/netstandard1.0/_._",
  3666. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3667. "microsoft.netcore.targets.nuspec",
  3668. "runtime.json"
  3669. ]
  3670. },
  3671. "Microsoft.Win32.Registry/5.0.0": {
  3672. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  3673. "type": "package",
  3674. "path": "microsoft.win32.registry/5.0.0",
  3675. "files": [
  3676. ".nupkg.metadata",
  3677. ".signature.p7s",
  3678. "Icon.png",
  3679. "LICENSE.TXT",
  3680. "THIRD-PARTY-NOTICES.TXT",
  3681. "lib/net46/Microsoft.Win32.Registry.dll",
  3682. "lib/net461/Microsoft.Win32.Registry.dll",
  3683. "lib/net461/Microsoft.Win32.Registry.xml",
  3684. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3685. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3686. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3687. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  3688. "microsoft.win32.registry.nuspec",
  3689. "ref/net46/Microsoft.Win32.Registry.dll",
  3690. "ref/net461/Microsoft.Win32.Registry.dll",
  3691. "ref/net461/Microsoft.Win32.Registry.xml",
  3692. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3693. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3694. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3695. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3696. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3697. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3698. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3699. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3700. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3701. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3702. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3703. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3704. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3705. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3706. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3707. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3708. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3709. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3710. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3711. "useSharedDesignerContext.txt",
  3712. "version.txt"
  3713. ]
  3714. },
  3715. "Microsoft.Win32.SystemEvents/7.0.0": {
  3716. "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  3717. "type": "package",
  3718. "path": "microsoft.win32.systemevents/7.0.0",
  3719. "files": [
  3720. ".nupkg.metadata",
  3721. ".signature.p7s",
  3722. "Icon.png",
  3723. "LICENSE.TXT",
  3724. "THIRD-PARTY-NOTICES.TXT",
  3725. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  3726. "buildTransitive/net462/_._",
  3727. "buildTransitive/net6.0/_._",
  3728. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3729. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  3730. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  3731. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3732. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3733. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  3734. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  3735. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3736. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3737. "microsoft.win32.systemevents.7.0.0.nupkg.sha512",
  3738. "microsoft.win32.systemevents.nuspec",
  3739. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3740. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3741. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  3742. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  3743. "useSharedDesignerContext.txt"
  3744. ]
  3745. },
  3746. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  3747. "sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
  3748. "type": "package",
  3749. "path": "microsoft.xaml.behaviors.wpf/1.1.31",
  3750. "hasTools": true,
  3751. "files": [
  3752. ".nupkg.metadata",
  3753. ".signature.p7s",
  3754. "lib/net45/Design/Microsoft.Xaml.Behaviors.Design.dll",
  3755. "lib/net45/Microsoft.Xaml.Behaviors.dll",
  3756. "lib/net45/Microsoft.Xaml.Behaviors.pdb",
  3757. "lib/net45/Microsoft.Xaml.Behaviors.xml",
  3758. "lib/net5.0-windows7.0/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  3759. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll",
  3760. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.pdb",
  3761. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.xml",
  3762. "lib/netcoreapp3.1/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  3763. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
  3764. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
  3765. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
  3766. "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
  3767. "microsoft.xaml.behaviors.wpf.nuspec",
  3768. "tools/Install.ps1"
  3769. ]
  3770. },
  3771. "Newtonsoft.Json/9.0.1": {
  3772. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  3773. "type": "package",
  3774. "path": "newtonsoft.json/9.0.1",
  3775. "hasTools": true,
  3776. "files": [
  3777. ".nupkg.metadata",
  3778. ".signature.p7s",
  3779. "lib/net20/Newtonsoft.Json.dll",
  3780. "lib/net20/Newtonsoft.Json.xml",
  3781. "lib/net35/Newtonsoft.Json.dll",
  3782. "lib/net35/Newtonsoft.Json.xml",
  3783. "lib/net40/Newtonsoft.Json.dll",
  3784. "lib/net40/Newtonsoft.Json.xml",
  3785. "lib/net45/Newtonsoft.Json.dll",
  3786. "lib/net45/Newtonsoft.Json.xml",
  3787. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3788. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3789. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  3790. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  3791. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  3792. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  3793. "newtonsoft.json.9.0.1.nupkg.sha512",
  3794. "newtonsoft.json.nuspec",
  3795. "tools/install.ps1"
  3796. ]
  3797. },
  3798. "Panuon.UI.Silver/1.1.3.4": {
  3799. "sha512": "KURGslfhVctESnoAUAvzYntfVRMBjo2CBfwCx8jG/FAV1UZPRqU3CzxYDboZ93/5S4smFab+emLtCEAxpV0zAQ==",
  3800. "type": "package",
  3801. "path": "panuon.ui.silver/1.1.3.4",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "lib/net40/Panuon.UI.Silver.dll",
  3806. "lib/net45/Panuon.UI.Silver.dll",
  3807. "lib/netcoreapp3.1/Panuon.UI.Silver.dll",
  3808. "panuon.ui.silver.1.1.3.4.nupkg.sha512",
  3809. "panuon.ui.silver.nuspec"
  3810. ]
  3811. },
  3812. "Prism.Core/8.1.97": {
  3813. "sha512": "EP5zrvWddw3eSq25Y7hHnDYdmLZEC2Z/gMrvmHzUuLbitmA1UaS7wQUlSwNr9Km8lzJNCvytFnaGBEFukHgoHg==",
  3814. "type": "package",
  3815. "path": "prism.core/8.1.97",
  3816. "files": [
  3817. ".nupkg.metadata",
  3818. ".signature.p7s",
  3819. "LICENSE",
  3820. "lib/net461/Prism.dll",
  3821. "lib/net461/Prism.pdb",
  3822. "lib/net461/Prism.xml",
  3823. "lib/net47/Prism.dll",
  3824. "lib/net47/Prism.pdb",
  3825. "lib/net47/Prism.xml",
  3826. "lib/net5.0/Prism.dll",
  3827. "lib/net5.0/Prism.pdb",
  3828. "lib/net5.0/Prism.xml",
  3829. "lib/netstandard2.0/Prism.dll",
  3830. "lib/netstandard2.0/Prism.pdb",
  3831. "lib/netstandard2.0/Prism.xml",
  3832. "prism-logo.png",
  3833. "prism.core.8.1.97.nupkg.sha512",
  3834. "prism.core.nuspec",
  3835. "readme.txt"
  3836. ]
  3837. },
  3838. "Prism.Unity/8.1.97": {
  3839. "sha512": "PDKDjC9HAFmCEoP8bgCwoGup0Lm0NyvYmN/kLbfO0Q4zmL/sZBDbP2KNC/UguXWOy0iH6fWiH9JYQYCGFZ4oBw==",
  3840. "type": "package",
  3841. "path": "prism.unity/8.1.97",
  3842. "files": [
  3843. ".nupkg.metadata",
  3844. ".signature.p7s",
  3845. "LICENSE",
  3846. "lib/net461/Prism.Unity.Wpf.dll",
  3847. "lib/net461/Prism.Unity.Wpf.pdb",
  3848. "lib/net461/Prism.Unity.Wpf.xml",
  3849. "lib/net47/Prism.Unity.Wpf.dll",
  3850. "lib/net47/Prism.Unity.Wpf.pdb",
  3851. "lib/net47/Prism.Unity.Wpf.xml",
  3852. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll",
  3853. "lib/net5.0-windows7.0/Prism.Unity.Wpf.pdb",
  3854. "lib/net5.0-windows7.0/Prism.Unity.Wpf.xml",
  3855. "lib/netcoreapp3.1/Prism.Unity.Wpf.dll",
  3856. "lib/netcoreapp3.1/Prism.Unity.Wpf.pdb",
  3857. "lib/netcoreapp3.1/Prism.Unity.Wpf.xml",
  3858. "prism-logo.png",
  3859. "prism.unity.8.1.97.nupkg.sha512",
  3860. "prism.unity.nuspec",
  3861. "readme.txt"
  3862. ]
  3863. },
  3864. "Prism.Wpf/8.1.97": {
  3865. "sha512": "ZEa6S1mK35h8/blyb0uR0ed3wkpHtPdhB4eniXINJnTiJMWlGl/As6SVlFFdOPD+qsEdWNYV3xgyQD/ue5cvBA==",
  3866. "type": "package",
  3867. "path": "prism.wpf/8.1.97",
  3868. "files": [
  3869. ".nupkg.metadata",
  3870. ".signature.p7s",
  3871. "LICENSE",
  3872. "lib/net461/Prism.Wpf.dll",
  3873. "lib/net461/Prism.Wpf.pdb",
  3874. "lib/net461/Prism.Wpf.xml",
  3875. "lib/net47/Prism.Wpf.dll",
  3876. "lib/net47/Prism.Wpf.pdb",
  3877. "lib/net47/Prism.Wpf.xml",
  3878. "lib/net5.0-windows7.0/Prism.Wpf.dll",
  3879. "lib/net5.0-windows7.0/Prism.Wpf.pdb",
  3880. "lib/net5.0-windows7.0/Prism.Wpf.xml",
  3881. "lib/netcoreapp3.1/Prism.Wpf.dll",
  3882. "lib/netcoreapp3.1/Prism.Wpf.pdb",
  3883. "lib/netcoreapp3.1/Prism.Wpf.xml",
  3884. "prism-logo.png",
  3885. "prism.wpf.8.1.97.nupkg.sha512",
  3886. "prism.wpf.nuspec",
  3887. "readme.txt"
  3888. ]
  3889. },
  3890. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3891. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  3892. "type": "package",
  3893. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "ThirdPartyNotices.txt",
  3898. "dotnet_library_license.txt",
  3899. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3900. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3901. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3902. ]
  3903. },
  3904. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3905. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  3906. "type": "package",
  3907. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3908. "files": [
  3909. ".nupkg.metadata",
  3910. ".signature.p7s",
  3911. "ThirdPartyNotices.txt",
  3912. "dotnet_library_license.txt",
  3913. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3914. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3915. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3916. ]
  3917. },
  3918. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3919. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  3920. "type": "package",
  3921. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3922. "files": [
  3923. ".nupkg.metadata",
  3924. ".signature.p7s",
  3925. "ThirdPartyNotices.txt",
  3926. "dotnet_library_license.txt",
  3927. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3928. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3929. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3930. ]
  3931. },
  3932. "runtime.native.System/4.3.0": {
  3933. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3934. "type": "package",
  3935. "path": "runtime.native.system/4.3.0",
  3936. "files": [
  3937. ".nupkg.metadata",
  3938. ".signature.p7s",
  3939. "ThirdPartyNotices.txt",
  3940. "dotnet_library_license.txt",
  3941. "lib/netstandard1.0/_._",
  3942. "runtime.native.system.4.3.0.nupkg.sha512",
  3943. "runtime.native.system.nuspec"
  3944. ]
  3945. },
  3946. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  3947. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  3948. "type": "package",
  3949. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  3950. "files": [
  3951. ".nupkg.metadata",
  3952. ".signature.p7s",
  3953. "LICENSE.TXT",
  3954. "THIRD-PARTY-NOTICES.TXT",
  3955. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  3956. "runtime.native.system.data.sqlclient.sni.nuspec",
  3957. "useSharedDesignerContext.txt",
  3958. "version.txt"
  3959. ]
  3960. },
  3961. "runtime.native.System.Net.Http/4.3.0": {
  3962. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3963. "type": "package",
  3964. "path": "runtime.native.system.net.http/4.3.0",
  3965. "files": [
  3966. ".nupkg.metadata",
  3967. ".signature.p7s",
  3968. "ThirdPartyNotices.txt",
  3969. "dotnet_library_license.txt",
  3970. "lib/netstandard1.0/_._",
  3971. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3972. "runtime.native.system.net.http.nuspec"
  3973. ]
  3974. },
  3975. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3976. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3977. "type": "package",
  3978. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3979. "files": [
  3980. ".nupkg.metadata",
  3981. ".signature.p7s",
  3982. "ThirdPartyNotices.txt",
  3983. "dotnet_library_license.txt",
  3984. "lib/netstandard1.0/_._",
  3985. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3986. "runtime.native.system.security.cryptography.apple.nuspec"
  3987. ]
  3988. },
  3989. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3990. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  3991. "type": "package",
  3992. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  3993. "files": [
  3994. ".nupkg.metadata",
  3995. ".signature.p7s",
  3996. "ThirdPartyNotices.txt",
  3997. "dotnet_library_license.txt",
  3998. "lib/netstandard1.0/_._",
  3999. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4000. "runtime.native.system.security.cryptography.openssl.nuspec"
  4001. ]
  4002. },
  4003. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4004. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4005. "type": "package",
  4006. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4007. "files": [
  4008. ".nupkg.metadata",
  4009. ".signature.p7s",
  4010. "ThirdPartyNotices.txt",
  4011. "dotnet_library_license.txt",
  4012. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4013. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4014. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4015. ]
  4016. },
  4017. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4018. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4019. "type": "package",
  4020. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4021. "files": [
  4022. ".nupkg.metadata",
  4023. ".signature.p7s",
  4024. "ThirdPartyNotices.txt",
  4025. "dotnet_library_license.txt",
  4026. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4027. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4028. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4029. ]
  4030. },
  4031. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4032. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4033. "type": "package",
  4034. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "ThirdPartyNotices.txt",
  4039. "dotnet_library_license.txt",
  4040. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4041. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4042. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4043. ]
  4044. },
  4045. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4046. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4047. "type": "package",
  4048. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4049. "files": [
  4050. ".nupkg.metadata",
  4051. ".signature.p7s",
  4052. "ThirdPartyNotices.txt",
  4053. "dotnet_library_license.txt",
  4054. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4055. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4056. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4057. ]
  4058. },
  4059. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4060. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4061. "type": "package",
  4062. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. ".signature.p7s",
  4066. "ThirdPartyNotices.txt",
  4067. "dotnet_library_license.txt",
  4068. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4069. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4070. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4071. ]
  4072. },
  4073. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4074. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4075. "type": "package",
  4076. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4077. "files": [
  4078. ".nupkg.metadata",
  4079. ".signature.p7s",
  4080. "ThirdPartyNotices.txt",
  4081. "dotnet_library_license.txt",
  4082. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4083. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4084. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4085. ]
  4086. },
  4087. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4088. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4089. "type": "package",
  4090. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "ThirdPartyNotices.txt",
  4095. "dotnet_library_license.txt",
  4096. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4097. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4098. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4099. ]
  4100. },
  4101. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4102. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4103. "type": "package",
  4104. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4105. "files": [
  4106. ".nupkg.metadata",
  4107. ".signature.p7s",
  4108. "ThirdPartyNotices.txt",
  4109. "dotnet_library_license.txt",
  4110. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4111. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4112. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4113. ]
  4114. },
  4115. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4116. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4117. "type": "package",
  4118. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4119. "files": [
  4120. ".nupkg.metadata",
  4121. ".signature.p7s",
  4122. "ThirdPartyNotices.txt",
  4123. "dotnet_library_license.txt",
  4124. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4125. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4126. "runtimes/win-arm64/native/sni.dll",
  4127. "useSharedDesignerContext.txt",
  4128. "version.txt"
  4129. ]
  4130. },
  4131. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4132. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4133. "type": "package",
  4134. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "ThirdPartyNotices.txt",
  4139. "dotnet_library_license.txt",
  4140. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4141. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4142. "runtimes/win-x64/native/sni.dll",
  4143. "useSharedDesignerContext.txt",
  4144. "version.txt"
  4145. ]
  4146. },
  4147. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4148. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4149. "type": "package",
  4150. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4151. "files": [
  4152. ".nupkg.metadata",
  4153. ".signature.p7s",
  4154. "ThirdPartyNotices.txt",
  4155. "dotnet_library_license.txt",
  4156. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4157. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4158. "runtimes/win-x86/native/sni.dll",
  4159. "useSharedDesignerContext.txt",
  4160. "version.txt"
  4161. ]
  4162. },
  4163. "Serilog/2.10.0": {
  4164. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  4165. "type": "package",
  4166. "path": "serilog/2.10.0",
  4167. "files": [
  4168. ".nupkg.metadata",
  4169. ".signature.p7s",
  4170. "icon.png",
  4171. "lib/net45/Serilog.dll",
  4172. "lib/net45/Serilog.xml",
  4173. "lib/net46/Serilog.dll",
  4174. "lib/net46/Serilog.xml",
  4175. "lib/netstandard1.0/Serilog.dll",
  4176. "lib/netstandard1.0/Serilog.xml",
  4177. "lib/netstandard1.3/Serilog.dll",
  4178. "lib/netstandard1.3/Serilog.xml",
  4179. "lib/netstandard2.0/Serilog.dll",
  4180. "lib/netstandard2.0/Serilog.xml",
  4181. "lib/netstandard2.1/Serilog.dll",
  4182. "lib/netstandard2.1/Serilog.xml",
  4183. "serilog.2.10.0.nupkg.sha512",
  4184. "serilog.nuspec"
  4185. ]
  4186. },
  4187. "Serilog.Enrichers.Thread/3.1.0": {
  4188. "sha512": "85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
  4189. "type": "package",
  4190. "path": "serilog.enrichers.thread/3.1.0",
  4191. "files": [
  4192. ".nupkg.metadata",
  4193. ".signature.p7s",
  4194. "lib/net45/Serilog.Enrichers.Thread.dll",
  4195. "lib/net45/Serilog.Enrichers.Thread.xml",
  4196. "lib/netstandard1.0/Serilog.Enrichers.Thread.dll",
  4197. "lib/netstandard1.0/Serilog.Enrichers.Thread.xml",
  4198. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll",
  4199. "lib/netstandard2.0/Serilog.Enrichers.Thread.xml",
  4200. "serilog.enrichers.thread.3.1.0.nupkg.sha512",
  4201. "serilog.enrichers.thread.nuspec"
  4202. ]
  4203. },
  4204. "Serilog.Extensions.Logging/3.0.1": {
  4205. "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
  4206. "type": "package",
  4207. "path": "serilog.extensions.logging/3.0.1",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  4212. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  4213. "serilog.extensions.logging.3.0.1.nupkg.sha512",
  4214. "serilog.extensions.logging.nuspec"
  4215. ]
  4216. },
  4217. "Serilog.Formatting.Compact/1.1.0": {
  4218. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  4219. "type": "package",
  4220. "path": "serilog.formatting.compact/1.1.0",
  4221. "files": [
  4222. ".nupkg.metadata",
  4223. ".signature.p7s",
  4224. "lib/net452/Serilog.Formatting.Compact.dll",
  4225. "lib/net452/Serilog.Formatting.Compact.xml",
  4226. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  4227. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  4228. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  4229. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  4230. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  4231. "serilog.formatting.compact.nuspec"
  4232. ]
  4233. },
  4234. "Serilog.Settings.Configuration/3.1.0": {
  4235. "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
  4236. "type": "package",
  4237. "path": "serilog.settings.configuration/3.1.0",
  4238. "files": [
  4239. ".nupkg.metadata",
  4240. ".signature.p7s",
  4241. "lib/net451/Serilog.Settings.Configuration.dll",
  4242. "lib/net451/Serilog.Settings.Configuration.xml",
  4243. "lib/net461/Serilog.Settings.Configuration.dll",
  4244. "lib/net461/Serilog.Settings.Configuration.xml",
  4245. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  4246. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  4247. "serilog.settings.configuration.3.1.0.nupkg.sha512",
  4248. "serilog.settings.configuration.nuspec"
  4249. ]
  4250. },
  4251. "Serilog.Sinks.Console/3.1.1": {
  4252. "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
  4253. "type": "package",
  4254. "path": "serilog.sinks.console/3.1.1",
  4255. "files": [
  4256. ".nupkg.metadata",
  4257. ".signature.p7s",
  4258. "lib/net45/Serilog.Sinks.Console.dll",
  4259. "lib/net45/Serilog.Sinks.Console.xml",
  4260. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
  4261. "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
  4262. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  4263. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  4264. "serilog.sinks.console.3.1.1.nupkg.sha512",
  4265. "serilog.sinks.console.nuspec"
  4266. ]
  4267. },
  4268. "Serilog.Sinks.File/4.1.0": {
  4269. "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
  4270. "type": "package",
  4271. "path": "serilog.sinks.file/4.1.0",
  4272. "files": [
  4273. ".nupkg.metadata",
  4274. ".signature.p7s",
  4275. "lib/net45/Serilog.Sinks.File.dll",
  4276. "lib/net45/Serilog.Sinks.File.pdb",
  4277. "lib/net45/Serilog.Sinks.File.xml",
  4278. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  4279. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  4280. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  4281. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  4282. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  4283. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  4284. "serilog.sinks.file.4.1.0.nupkg.sha512",
  4285. "serilog.sinks.file.nuspec"
  4286. ]
  4287. },
  4288. "SQLitePCLRaw.core/2.0.4": {
  4289. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  4290. "type": "package",
  4291. "path": "sqlitepclraw.core/2.0.4",
  4292. "files": [
  4293. ".nupkg.metadata",
  4294. ".signature.p7s",
  4295. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  4296. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  4297. "sqlitepclraw.core.nuspec"
  4298. ]
  4299. },
  4300. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  4301. "sha512": "ZQU6AdbxWAqS8sEhrF+PhOV5I5mHx04YI3uu/c1gTNs86wPu6F3/D/kcMyArg2hm3G2U1/8aMGFICMC9iBzJTA==",
  4302. "type": "package",
  4303. "path": "stub.system.data.sqlite.core.netstandard/1.0.114",
  4304. "files": [
  4305. ".nupkg.metadata",
  4306. ".signature.p7s",
  4307. "lib/netstandard2.0/System.Data.SQLite.dll",
  4308. "lib/netstandard2.0/System.Data.SQLite.dll.altconfig",
  4309. "lib/netstandard2.0/System.Data.SQLite.xml",
  4310. "lib/netstandard2.1/System.Data.SQLite.dll",
  4311. "lib/netstandard2.1/System.Data.SQLite.dll.altconfig",
  4312. "lib/netstandard2.1/System.Data.SQLite.xml",
  4313. "runtimes/linux-x64/native/SQLite.Interop.dll",
  4314. "runtimes/osx-x64/native/SQLite.Interop.dll",
  4315. "runtimes/win-x64/native/SQLite.Interop.dll",
  4316. "runtimes/win-x86/native/SQLite.Interop.dll",
  4317. "stub.system.data.sqlite.core.netstandard.1.0.114.nupkg.sha512",
  4318. "stub.system.data.sqlite.core.netstandard.nuspec"
  4319. ]
  4320. },
  4321. "System.AppContext/4.1.0": {
  4322. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  4323. "type": "package",
  4324. "path": "system.appcontext/4.1.0",
  4325. "files": [
  4326. ".nupkg.metadata",
  4327. "ThirdPartyNotices.txt",
  4328. "dotnet_library_license.txt",
  4329. "lib/MonoAndroid10/_._",
  4330. "lib/MonoTouch10/_._",
  4331. "lib/net46/System.AppContext.dll",
  4332. "lib/net463/System.AppContext.dll",
  4333. "lib/netcore50/System.AppContext.dll",
  4334. "lib/netstandard1.6/System.AppContext.dll",
  4335. "lib/xamarinios10/_._",
  4336. "lib/xamarinmac20/_._",
  4337. "lib/xamarintvos10/_._",
  4338. "lib/xamarinwatchos10/_._",
  4339. "ref/MonoAndroid10/_._",
  4340. "ref/MonoTouch10/_._",
  4341. "ref/net46/System.AppContext.dll",
  4342. "ref/net463/System.AppContext.dll",
  4343. "ref/netstandard/_._",
  4344. "ref/netstandard1.3/System.AppContext.dll",
  4345. "ref/netstandard1.3/System.AppContext.xml",
  4346. "ref/netstandard1.3/de/System.AppContext.xml",
  4347. "ref/netstandard1.3/es/System.AppContext.xml",
  4348. "ref/netstandard1.3/fr/System.AppContext.xml",
  4349. "ref/netstandard1.3/it/System.AppContext.xml",
  4350. "ref/netstandard1.3/ja/System.AppContext.xml",
  4351. "ref/netstandard1.3/ko/System.AppContext.xml",
  4352. "ref/netstandard1.3/ru/System.AppContext.xml",
  4353. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4354. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4355. "ref/netstandard1.6/System.AppContext.dll",
  4356. "ref/netstandard1.6/System.AppContext.xml",
  4357. "ref/netstandard1.6/de/System.AppContext.xml",
  4358. "ref/netstandard1.6/es/System.AppContext.xml",
  4359. "ref/netstandard1.6/fr/System.AppContext.xml",
  4360. "ref/netstandard1.6/it/System.AppContext.xml",
  4361. "ref/netstandard1.6/ja/System.AppContext.xml",
  4362. "ref/netstandard1.6/ko/System.AppContext.xml",
  4363. "ref/netstandard1.6/ru/System.AppContext.xml",
  4364. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4365. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4366. "ref/xamarinios10/_._",
  4367. "ref/xamarinmac20/_._",
  4368. "ref/xamarintvos10/_._",
  4369. "ref/xamarinwatchos10/_._",
  4370. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4371. "system.appcontext.4.1.0.nupkg.sha512",
  4372. "system.appcontext.nuspec"
  4373. ]
  4374. },
  4375. "System.Collections/4.3.0": {
  4376. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4377. "type": "package",
  4378. "path": "system.collections/4.3.0",
  4379. "files": [
  4380. ".nupkg.metadata",
  4381. ".signature.p7s",
  4382. "ThirdPartyNotices.txt",
  4383. "dotnet_library_license.txt",
  4384. "lib/MonoAndroid10/_._",
  4385. "lib/MonoTouch10/_._",
  4386. "lib/net45/_._",
  4387. "lib/portable-net45+win8+wp8+wpa81/_._",
  4388. "lib/win8/_._",
  4389. "lib/wp80/_._",
  4390. "lib/wpa81/_._",
  4391. "lib/xamarinios10/_._",
  4392. "lib/xamarinmac20/_._",
  4393. "lib/xamarintvos10/_._",
  4394. "lib/xamarinwatchos10/_._",
  4395. "ref/MonoAndroid10/_._",
  4396. "ref/MonoTouch10/_._",
  4397. "ref/net45/_._",
  4398. "ref/netcore50/System.Collections.dll",
  4399. "ref/netcore50/System.Collections.xml",
  4400. "ref/netcore50/de/System.Collections.xml",
  4401. "ref/netcore50/es/System.Collections.xml",
  4402. "ref/netcore50/fr/System.Collections.xml",
  4403. "ref/netcore50/it/System.Collections.xml",
  4404. "ref/netcore50/ja/System.Collections.xml",
  4405. "ref/netcore50/ko/System.Collections.xml",
  4406. "ref/netcore50/ru/System.Collections.xml",
  4407. "ref/netcore50/zh-hans/System.Collections.xml",
  4408. "ref/netcore50/zh-hant/System.Collections.xml",
  4409. "ref/netstandard1.0/System.Collections.dll",
  4410. "ref/netstandard1.0/System.Collections.xml",
  4411. "ref/netstandard1.0/de/System.Collections.xml",
  4412. "ref/netstandard1.0/es/System.Collections.xml",
  4413. "ref/netstandard1.0/fr/System.Collections.xml",
  4414. "ref/netstandard1.0/it/System.Collections.xml",
  4415. "ref/netstandard1.0/ja/System.Collections.xml",
  4416. "ref/netstandard1.0/ko/System.Collections.xml",
  4417. "ref/netstandard1.0/ru/System.Collections.xml",
  4418. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4419. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4420. "ref/netstandard1.3/System.Collections.dll",
  4421. "ref/netstandard1.3/System.Collections.xml",
  4422. "ref/netstandard1.3/de/System.Collections.xml",
  4423. "ref/netstandard1.3/es/System.Collections.xml",
  4424. "ref/netstandard1.3/fr/System.Collections.xml",
  4425. "ref/netstandard1.3/it/System.Collections.xml",
  4426. "ref/netstandard1.3/ja/System.Collections.xml",
  4427. "ref/netstandard1.3/ko/System.Collections.xml",
  4428. "ref/netstandard1.3/ru/System.Collections.xml",
  4429. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4430. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4431. "ref/portable-net45+win8+wp8+wpa81/_._",
  4432. "ref/win8/_._",
  4433. "ref/wp80/_._",
  4434. "ref/wpa81/_._",
  4435. "ref/xamarinios10/_._",
  4436. "ref/xamarinmac20/_._",
  4437. "ref/xamarintvos10/_._",
  4438. "ref/xamarinwatchos10/_._",
  4439. "system.collections.4.3.0.nupkg.sha512",
  4440. "system.collections.nuspec"
  4441. ]
  4442. },
  4443. "System.Collections.Concurrent/4.3.0": {
  4444. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4445. "type": "package",
  4446. "path": "system.collections.concurrent/4.3.0",
  4447. "files": [
  4448. ".nupkg.metadata",
  4449. ".signature.p7s",
  4450. "ThirdPartyNotices.txt",
  4451. "dotnet_library_license.txt",
  4452. "lib/MonoAndroid10/_._",
  4453. "lib/MonoTouch10/_._",
  4454. "lib/net45/_._",
  4455. "lib/netcore50/System.Collections.Concurrent.dll",
  4456. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4457. "lib/portable-net45+win8+wpa81/_._",
  4458. "lib/win8/_._",
  4459. "lib/wpa81/_._",
  4460. "lib/xamarinios10/_._",
  4461. "lib/xamarinmac20/_._",
  4462. "lib/xamarintvos10/_._",
  4463. "lib/xamarinwatchos10/_._",
  4464. "ref/MonoAndroid10/_._",
  4465. "ref/MonoTouch10/_._",
  4466. "ref/net45/_._",
  4467. "ref/netcore50/System.Collections.Concurrent.dll",
  4468. "ref/netcore50/System.Collections.Concurrent.xml",
  4469. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4470. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4471. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4472. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4473. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4474. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4475. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4476. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4477. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4478. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4479. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4480. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4481. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4482. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4483. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4484. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4485. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4486. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4487. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4488. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4489. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4490. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4491. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4492. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4493. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4494. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4495. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4496. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4497. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4498. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4499. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4500. "ref/portable-net45+win8+wpa81/_._",
  4501. "ref/win8/_._",
  4502. "ref/wpa81/_._",
  4503. "ref/xamarinios10/_._",
  4504. "ref/xamarinmac20/_._",
  4505. "ref/xamarintvos10/_._",
  4506. "ref/xamarinwatchos10/_._",
  4507. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4508. "system.collections.concurrent.nuspec"
  4509. ]
  4510. },
  4511. "System.Collections.NonGeneric/4.3.0": {
  4512. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4513. "type": "package",
  4514. "path": "system.collections.nongeneric/4.3.0",
  4515. "files": [
  4516. ".nupkg.metadata",
  4517. ".signature.p7s",
  4518. "ThirdPartyNotices.txt",
  4519. "dotnet_library_license.txt",
  4520. "lib/MonoAndroid10/_._",
  4521. "lib/MonoTouch10/_._",
  4522. "lib/net46/System.Collections.NonGeneric.dll",
  4523. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4524. "lib/xamarinios10/_._",
  4525. "lib/xamarinmac20/_._",
  4526. "lib/xamarintvos10/_._",
  4527. "lib/xamarinwatchos10/_._",
  4528. "ref/MonoAndroid10/_._",
  4529. "ref/MonoTouch10/_._",
  4530. "ref/net46/System.Collections.NonGeneric.dll",
  4531. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4532. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4533. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4534. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4535. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4536. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4537. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4538. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4539. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4540. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4541. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4542. "ref/xamarinios10/_._",
  4543. "ref/xamarinmac20/_._",
  4544. "ref/xamarintvos10/_._",
  4545. "ref/xamarinwatchos10/_._",
  4546. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4547. "system.collections.nongeneric.nuspec"
  4548. ]
  4549. },
  4550. "System.Collections.Specialized/4.3.0": {
  4551. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4552. "type": "package",
  4553. "path": "system.collections.specialized/4.3.0",
  4554. "files": [
  4555. ".nupkg.metadata",
  4556. ".signature.p7s",
  4557. "ThirdPartyNotices.txt",
  4558. "dotnet_library_license.txt",
  4559. "lib/MonoAndroid10/_._",
  4560. "lib/MonoTouch10/_._",
  4561. "lib/net46/System.Collections.Specialized.dll",
  4562. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4563. "lib/xamarinios10/_._",
  4564. "lib/xamarinmac20/_._",
  4565. "lib/xamarintvos10/_._",
  4566. "lib/xamarinwatchos10/_._",
  4567. "ref/MonoAndroid10/_._",
  4568. "ref/MonoTouch10/_._",
  4569. "ref/net46/System.Collections.Specialized.dll",
  4570. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4571. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4572. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4573. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4574. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4575. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4576. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4577. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4578. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4579. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4580. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4581. "ref/xamarinios10/_._",
  4582. "ref/xamarinmac20/_._",
  4583. "ref/xamarintvos10/_._",
  4584. "ref/xamarinwatchos10/_._",
  4585. "system.collections.specialized.4.3.0.nupkg.sha512",
  4586. "system.collections.specialized.nuspec"
  4587. ]
  4588. },
  4589. "System.ComponentModel/4.3.0": {
  4590. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4591. "type": "package",
  4592. "path": "system.componentmodel/4.3.0",
  4593. "files": [
  4594. ".nupkg.metadata",
  4595. ".signature.p7s",
  4596. "ThirdPartyNotices.txt",
  4597. "dotnet_library_license.txt",
  4598. "lib/MonoAndroid10/_._",
  4599. "lib/MonoTouch10/_._",
  4600. "lib/net45/_._",
  4601. "lib/netcore50/System.ComponentModel.dll",
  4602. "lib/netstandard1.3/System.ComponentModel.dll",
  4603. "lib/portable-net45+win8+wp8+wpa81/_._",
  4604. "lib/win8/_._",
  4605. "lib/wp80/_._",
  4606. "lib/wpa81/_._",
  4607. "lib/xamarinios10/_._",
  4608. "lib/xamarinmac20/_._",
  4609. "lib/xamarintvos10/_._",
  4610. "lib/xamarinwatchos10/_._",
  4611. "ref/MonoAndroid10/_._",
  4612. "ref/MonoTouch10/_._",
  4613. "ref/net45/_._",
  4614. "ref/netcore50/System.ComponentModel.dll",
  4615. "ref/netcore50/System.ComponentModel.xml",
  4616. "ref/netcore50/de/System.ComponentModel.xml",
  4617. "ref/netcore50/es/System.ComponentModel.xml",
  4618. "ref/netcore50/fr/System.ComponentModel.xml",
  4619. "ref/netcore50/it/System.ComponentModel.xml",
  4620. "ref/netcore50/ja/System.ComponentModel.xml",
  4621. "ref/netcore50/ko/System.ComponentModel.xml",
  4622. "ref/netcore50/ru/System.ComponentModel.xml",
  4623. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4624. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4625. "ref/netstandard1.0/System.ComponentModel.dll",
  4626. "ref/netstandard1.0/System.ComponentModel.xml",
  4627. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4628. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4629. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4630. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4631. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4632. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4633. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4634. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4635. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4636. "ref/portable-net45+win8+wp8+wpa81/_._",
  4637. "ref/win8/_._",
  4638. "ref/wp80/_._",
  4639. "ref/wpa81/_._",
  4640. "ref/xamarinios10/_._",
  4641. "ref/xamarinmac20/_._",
  4642. "ref/xamarintvos10/_._",
  4643. "ref/xamarinwatchos10/_._",
  4644. "system.componentmodel.4.3.0.nupkg.sha512",
  4645. "system.componentmodel.nuspec"
  4646. ]
  4647. },
  4648. "System.ComponentModel.Annotations/5.0.0": {
  4649. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4650. "type": "package",
  4651. "path": "system.componentmodel.annotations/5.0.0",
  4652. "files": [
  4653. ".nupkg.metadata",
  4654. ".signature.p7s",
  4655. "Icon.png",
  4656. "LICENSE.TXT",
  4657. "THIRD-PARTY-NOTICES.TXT",
  4658. "lib/MonoAndroid10/_._",
  4659. "lib/MonoTouch10/_._",
  4660. "lib/net45/_._",
  4661. "lib/net461/System.ComponentModel.Annotations.dll",
  4662. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4663. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4664. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4665. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4666. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4667. "lib/portable-net45+win8/_._",
  4668. "lib/win8/_._",
  4669. "lib/xamarinios10/_._",
  4670. "lib/xamarinmac20/_._",
  4671. "lib/xamarintvos10/_._",
  4672. "lib/xamarinwatchos10/_._",
  4673. "ref/MonoAndroid10/_._",
  4674. "ref/MonoTouch10/_._",
  4675. "ref/net45/_._",
  4676. "ref/net461/System.ComponentModel.Annotations.dll",
  4677. "ref/net461/System.ComponentModel.Annotations.xml",
  4678. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4679. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4680. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4681. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4682. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4683. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4684. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4685. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4686. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4687. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4688. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4689. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4690. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4691. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4692. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4693. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4694. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4695. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4696. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4697. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4698. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4699. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4700. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4701. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4702. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4703. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4704. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4705. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4706. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4707. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4708. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4709. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4710. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4711. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4712. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4713. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4714. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4715. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4716. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4717. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4718. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4719. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4720. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4721. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4722. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4723. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4724. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4725. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4726. "ref/portable-net45+win8/_._",
  4727. "ref/win8/_._",
  4728. "ref/xamarinios10/_._",
  4729. "ref/xamarinmac20/_._",
  4730. "ref/xamarintvos10/_._",
  4731. "ref/xamarinwatchos10/_._",
  4732. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  4733. "system.componentmodel.annotations.nuspec",
  4734. "useSharedDesignerContext.txt",
  4735. "version.txt"
  4736. ]
  4737. },
  4738. "System.ComponentModel.Primitives/4.3.0": {
  4739. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4740. "type": "package",
  4741. "path": "system.componentmodel.primitives/4.3.0",
  4742. "files": [
  4743. ".nupkg.metadata",
  4744. ".signature.p7s",
  4745. "ThirdPartyNotices.txt",
  4746. "dotnet_library_license.txt",
  4747. "lib/MonoAndroid10/_._",
  4748. "lib/MonoTouch10/_._",
  4749. "lib/net45/System.ComponentModel.Primitives.dll",
  4750. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4751. "lib/xamarinios10/_._",
  4752. "lib/xamarinmac20/_._",
  4753. "lib/xamarintvos10/_._",
  4754. "lib/xamarinwatchos10/_._",
  4755. "ref/MonoAndroid10/_._",
  4756. "ref/MonoTouch10/_._",
  4757. "ref/net45/System.ComponentModel.Primitives.dll",
  4758. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4759. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4760. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4761. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4762. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4763. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4764. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4765. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4766. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4767. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4768. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4769. "ref/xamarinios10/_._",
  4770. "ref/xamarinmac20/_._",
  4771. "ref/xamarintvos10/_._",
  4772. "ref/xamarinwatchos10/_._",
  4773. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4774. "system.componentmodel.primitives.nuspec"
  4775. ]
  4776. },
  4777. "System.ComponentModel.TypeConverter/4.3.0": {
  4778. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4779. "type": "package",
  4780. "path": "system.componentmodel.typeconverter/4.3.0",
  4781. "files": [
  4782. ".nupkg.metadata",
  4783. ".signature.p7s",
  4784. "ThirdPartyNotices.txt",
  4785. "dotnet_library_license.txt",
  4786. "lib/MonoAndroid10/_._",
  4787. "lib/MonoTouch10/_._",
  4788. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4789. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4790. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4791. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4792. "lib/xamarinios10/_._",
  4793. "lib/xamarinmac20/_._",
  4794. "lib/xamarintvos10/_._",
  4795. "lib/xamarinwatchos10/_._",
  4796. "ref/MonoAndroid10/_._",
  4797. "ref/MonoTouch10/_._",
  4798. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4799. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4800. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4801. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4802. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4803. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4804. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4805. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4806. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4807. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4808. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4809. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4810. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4811. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4812. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4813. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4814. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4815. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4816. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4817. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4818. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4819. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4820. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4821. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4822. "ref/xamarinios10/_._",
  4823. "ref/xamarinmac20/_._",
  4824. "ref/xamarintvos10/_._",
  4825. "ref/xamarinwatchos10/_._",
  4826. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4827. "system.componentmodel.typeconverter.nuspec"
  4828. ]
  4829. },
  4830. "System.Console/4.3.0": {
  4831. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4832. "type": "package",
  4833. "path": "system.console/4.3.0",
  4834. "files": [
  4835. ".nupkg.metadata",
  4836. ".signature.p7s",
  4837. "ThirdPartyNotices.txt",
  4838. "dotnet_library_license.txt",
  4839. "lib/MonoAndroid10/_._",
  4840. "lib/MonoTouch10/_._",
  4841. "lib/net46/System.Console.dll",
  4842. "lib/xamarinios10/_._",
  4843. "lib/xamarinmac20/_._",
  4844. "lib/xamarintvos10/_._",
  4845. "lib/xamarinwatchos10/_._",
  4846. "ref/MonoAndroid10/_._",
  4847. "ref/MonoTouch10/_._",
  4848. "ref/net46/System.Console.dll",
  4849. "ref/netstandard1.3/System.Console.dll",
  4850. "ref/netstandard1.3/System.Console.xml",
  4851. "ref/netstandard1.3/de/System.Console.xml",
  4852. "ref/netstandard1.3/es/System.Console.xml",
  4853. "ref/netstandard1.3/fr/System.Console.xml",
  4854. "ref/netstandard1.3/it/System.Console.xml",
  4855. "ref/netstandard1.3/ja/System.Console.xml",
  4856. "ref/netstandard1.3/ko/System.Console.xml",
  4857. "ref/netstandard1.3/ru/System.Console.xml",
  4858. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4859. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4860. "ref/xamarinios10/_._",
  4861. "ref/xamarinmac20/_._",
  4862. "ref/xamarintvos10/_._",
  4863. "ref/xamarinwatchos10/_._",
  4864. "system.console.4.3.0.nupkg.sha512",
  4865. "system.console.nuspec"
  4866. ]
  4867. },
  4868. "System.Data.Common/4.3.0": {
  4869. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4870. "type": "package",
  4871. "path": "system.data.common/4.3.0",
  4872. "files": [
  4873. ".nupkg.metadata",
  4874. ".signature.p7s",
  4875. "ThirdPartyNotices.txt",
  4876. "dotnet_library_license.txt",
  4877. "lib/MonoAndroid10/_._",
  4878. "lib/MonoTouch10/_._",
  4879. "lib/net451/System.Data.Common.dll",
  4880. "lib/netstandard1.2/System.Data.Common.dll",
  4881. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4882. "lib/xamarinios10/_._",
  4883. "lib/xamarinmac20/_._",
  4884. "lib/xamarintvos10/_._",
  4885. "lib/xamarinwatchos10/_._",
  4886. "ref/MonoAndroid10/_._",
  4887. "ref/MonoTouch10/_._",
  4888. "ref/net451/System.Data.Common.dll",
  4889. "ref/netstandard1.2/System.Data.Common.dll",
  4890. "ref/netstandard1.2/System.Data.Common.xml",
  4891. "ref/netstandard1.2/de/System.Data.Common.xml",
  4892. "ref/netstandard1.2/es/System.Data.Common.xml",
  4893. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4894. "ref/netstandard1.2/it/System.Data.Common.xml",
  4895. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4896. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4897. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4898. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4899. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4900. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4901. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4902. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4903. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4904. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4905. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4906. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4907. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4908. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4909. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4910. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4911. "ref/xamarinios10/_._",
  4912. "ref/xamarinmac20/_._",
  4913. "ref/xamarintvos10/_._",
  4914. "ref/xamarinwatchos10/_._",
  4915. "system.data.common.4.3.0.nupkg.sha512",
  4916. "system.data.common.nuspec"
  4917. ]
  4918. },
  4919. "System.Data.SqlClient/4.8.2": {
  4920. "sha512": "80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
  4921. "type": "package",
  4922. "path": "system.data.sqlclient/4.8.2",
  4923. "files": [
  4924. ".nupkg.metadata",
  4925. ".signature.p7s",
  4926. "Icon.png",
  4927. "LICENSE.TXT",
  4928. "THIRD-PARTY-NOTICES.TXT",
  4929. "lib/MonoAndroid10/_._",
  4930. "lib/MonoTouch10/_._",
  4931. "lib/net451/System.Data.SqlClient.dll",
  4932. "lib/net46/System.Data.SqlClient.dll",
  4933. "lib/net461/System.Data.SqlClient.dll",
  4934. "lib/net461/System.Data.SqlClient.xml",
  4935. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4936. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4937. "lib/netstandard1.2/System.Data.SqlClient.dll",
  4938. "lib/netstandard1.2/System.Data.SqlClient.xml",
  4939. "lib/netstandard1.3/System.Data.SqlClient.dll",
  4940. "lib/netstandard1.3/System.Data.SqlClient.xml",
  4941. "lib/netstandard2.0/System.Data.SqlClient.dll",
  4942. "lib/netstandard2.0/System.Data.SqlClient.xml",
  4943. "lib/xamarinios10/_._",
  4944. "lib/xamarinmac20/_._",
  4945. "lib/xamarintvos10/_._",
  4946. "lib/xamarinwatchos10/_._",
  4947. "ref/MonoAndroid10/_._",
  4948. "ref/MonoTouch10/_._",
  4949. "ref/net451/System.Data.SqlClient.dll",
  4950. "ref/net46/System.Data.SqlClient.dll",
  4951. "ref/net461/System.Data.SqlClient.dll",
  4952. "ref/net461/System.Data.SqlClient.xml",
  4953. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  4954. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  4955. "ref/netstandard1.2/System.Data.SqlClient.dll",
  4956. "ref/netstandard1.2/System.Data.SqlClient.xml",
  4957. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  4958. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  4959. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  4960. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  4961. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  4962. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  4963. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  4964. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  4965. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  4966. "ref/netstandard1.3/System.Data.SqlClient.dll",
  4967. "ref/netstandard1.3/System.Data.SqlClient.xml",
  4968. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  4969. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  4970. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  4971. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  4972. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  4973. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  4974. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  4975. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  4976. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  4977. "ref/netstandard2.0/System.Data.SqlClient.dll",
  4978. "ref/netstandard2.0/System.Data.SqlClient.xml",
  4979. "ref/xamarinios10/_._",
  4980. "ref/xamarinmac20/_._",
  4981. "ref/xamarintvos10/_._",
  4982. "ref/xamarinwatchos10/_._",
  4983. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4984. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4985. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  4986. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  4987. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  4988. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  4989. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  4990. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  4991. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  4992. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4993. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4994. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  4995. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  4996. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  4997. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  4998. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  4999. "system.data.sqlclient.4.8.2.nupkg.sha512",
  5000. "system.data.sqlclient.nuspec",
  5001. "useSharedDesignerContext.txt",
  5002. "version.txt"
  5003. ]
  5004. },
  5005. "System.Data.SQLite.Core/1.0.114": {
  5006. "sha512": "yfUkYTTeTwhXMs+TC6BCbh/XZ/Db3EBC4OkujgzmkM5qf/b8HxdwukXwLh5mRC0PHmp70w52cDTkfqoQsPeyCw==",
  5007. "type": "package",
  5008. "path": "system.data.sqlite.core/1.0.114",
  5009. "files": [
  5010. ".nupkg.metadata",
  5011. ".signature.p7s",
  5012. "system.data.sqlite.core.1.0.114.nupkg.sha512",
  5013. "system.data.sqlite.core.nuspec"
  5014. ]
  5015. },
  5016. "System.Diagnostics.Debug/4.3.0": {
  5017. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5018. "type": "package",
  5019. "path": "system.diagnostics.debug/4.3.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "ThirdPartyNotices.txt",
  5024. "dotnet_library_license.txt",
  5025. "lib/MonoAndroid10/_._",
  5026. "lib/MonoTouch10/_._",
  5027. "lib/net45/_._",
  5028. "lib/portable-net45+win8+wp8+wpa81/_._",
  5029. "lib/win8/_._",
  5030. "lib/wp80/_._",
  5031. "lib/wpa81/_._",
  5032. "lib/xamarinios10/_._",
  5033. "lib/xamarinmac20/_._",
  5034. "lib/xamarintvos10/_._",
  5035. "lib/xamarinwatchos10/_._",
  5036. "ref/MonoAndroid10/_._",
  5037. "ref/MonoTouch10/_._",
  5038. "ref/net45/_._",
  5039. "ref/netcore50/System.Diagnostics.Debug.dll",
  5040. "ref/netcore50/System.Diagnostics.Debug.xml",
  5041. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5042. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5043. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5044. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5045. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5046. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5047. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5048. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5049. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5050. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5051. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5052. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5053. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5054. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5055. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5056. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5057. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5058. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5059. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5060. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5061. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5062. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5063. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5064. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5065. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5066. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5067. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5068. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5069. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5070. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5071. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5072. "ref/portable-net45+win8+wp8+wpa81/_._",
  5073. "ref/win8/_._",
  5074. "ref/wp80/_._",
  5075. "ref/wpa81/_._",
  5076. "ref/xamarinios10/_._",
  5077. "ref/xamarinmac20/_._",
  5078. "ref/xamarintvos10/_._",
  5079. "ref/xamarinwatchos10/_._",
  5080. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5081. "system.diagnostics.debug.nuspec"
  5082. ]
  5083. },
  5084. "System.Diagnostics.DiagnosticSource/7.0.2": {
  5085. "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  5086. "type": "package",
  5087. "path": "system.diagnostics.diagnosticsource/7.0.2",
  5088. "files": [
  5089. ".nupkg.metadata",
  5090. ".signature.p7s",
  5091. "Icon.png",
  5092. "LICENSE.TXT",
  5093. "THIRD-PARTY-NOTICES.TXT",
  5094. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  5095. "buildTransitive/net462/_._",
  5096. "buildTransitive/net6.0/_._",
  5097. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5098. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  5099. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  5100. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5101. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5102. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  5103. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  5104. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5105. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5106. "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
  5107. "system.diagnostics.diagnosticsource.nuspec",
  5108. "useSharedDesignerContext.txt"
  5109. ]
  5110. },
  5111. "System.Diagnostics.EventLog/5.0.0": {
  5112. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  5113. "type": "package",
  5114. "path": "system.diagnostics.eventlog/5.0.0",
  5115. "files": [
  5116. ".nupkg.metadata",
  5117. ".signature.p7s",
  5118. "Icon.png",
  5119. "LICENSE.TXT",
  5120. "THIRD-PARTY-NOTICES.TXT",
  5121. "lib/net461/System.Diagnostics.EventLog.dll",
  5122. "lib/net461/System.Diagnostics.EventLog.xml",
  5123. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  5124. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  5125. "ref/net461/System.Diagnostics.EventLog.dll",
  5126. "ref/net461/System.Diagnostics.EventLog.xml",
  5127. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  5128. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  5129. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  5130. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  5131. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  5132. "system.diagnostics.eventlog.nuspec",
  5133. "useSharedDesignerContext.txt",
  5134. "version.txt"
  5135. ]
  5136. },
  5137. "System.Diagnostics.Tools/4.0.1": {
  5138. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  5139. "type": "package",
  5140. "path": "system.diagnostics.tools/4.0.1",
  5141. "files": [
  5142. ".nupkg.metadata",
  5143. "ThirdPartyNotices.txt",
  5144. "dotnet_library_license.txt",
  5145. "lib/MonoAndroid10/_._",
  5146. "lib/MonoTouch10/_._",
  5147. "lib/net45/_._",
  5148. "lib/portable-net45+win8+wp8+wpa81/_._",
  5149. "lib/win8/_._",
  5150. "lib/wp80/_._",
  5151. "lib/wpa81/_._",
  5152. "lib/xamarinios10/_._",
  5153. "lib/xamarinmac20/_._",
  5154. "lib/xamarintvos10/_._",
  5155. "lib/xamarinwatchos10/_._",
  5156. "ref/MonoAndroid10/_._",
  5157. "ref/MonoTouch10/_._",
  5158. "ref/net45/_._",
  5159. "ref/netcore50/System.Diagnostics.Tools.dll",
  5160. "ref/netcore50/System.Diagnostics.Tools.xml",
  5161. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5162. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5163. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5164. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5165. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5166. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5167. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5168. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5169. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5170. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5171. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5172. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5173. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5174. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5175. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5176. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5177. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5178. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5179. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5180. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5181. "ref/portable-net45+win8+wp8+wpa81/_._",
  5182. "ref/win8/_._",
  5183. "ref/wp80/_._",
  5184. "ref/wpa81/_._",
  5185. "ref/xamarinios10/_._",
  5186. "ref/xamarinmac20/_._",
  5187. "ref/xamarintvos10/_._",
  5188. "ref/xamarinwatchos10/_._",
  5189. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  5190. "system.diagnostics.tools.nuspec"
  5191. ]
  5192. },
  5193. "System.Diagnostics.Tracing/4.3.0": {
  5194. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5195. "type": "package",
  5196. "path": "system.diagnostics.tracing/4.3.0",
  5197. "files": [
  5198. ".nupkg.metadata",
  5199. ".signature.p7s",
  5200. "ThirdPartyNotices.txt",
  5201. "dotnet_library_license.txt",
  5202. "lib/MonoAndroid10/_._",
  5203. "lib/MonoTouch10/_._",
  5204. "lib/net45/_._",
  5205. "lib/net462/System.Diagnostics.Tracing.dll",
  5206. "lib/portable-net45+win8+wpa81/_._",
  5207. "lib/win8/_._",
  5208. "lib/wpa81/_._",
  5209. "lib/xamarinios10/_._",
  5210. "lib/xamarinmac20/_._",
  5211. "lib/xamarintvos10/_._",
  5212. "lib/xamarinwatchos10/_._",
  5213. "ref/MonoAndroid10/_._",
  5214. "ref/MonoTouch10/_._",
  5215. "ref/net45/_._",
  5216. "ref/net462/System.Diagnostics.Tracing.dll",
  5217. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5218. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5219. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5220. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5221. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5222. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5223. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5224. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5225. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5226. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5227. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5228. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5229. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5230. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5231. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5232. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5233. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5234. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5235. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5236. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5237. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5238. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5239. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5240. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5241. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5242. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5243. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5244. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5245. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5246. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5247. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5248. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5249. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5250. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5251. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5252. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5253. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5254. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5255. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5256. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5257. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5258. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5259. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5260. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5261. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5262. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5263. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5264. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5265. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5266. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5267. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5268. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5269. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5270. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5271. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5272. "ref/portable-net45+win8+wpa81/_._",
  5273. "ref/win8/_._",
  5274. "ref/wpa81/_._",
  5275. "ref/xamarinios10/_._",
  5276. "ref/xamarinmac20/_._",
  5277. "ref/xamarintvos10/_._",
  5278. "ref/xamarinwatchos10/_._",
  5279. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5280. "system.diagnostics.tracing.nuspec"
  5281. ]
  5282. },
  5283. "System.Drawing.Common/7.0.0": {
  5284. "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  5285. "type": "package",
  5286. "path": "system.drawing.common/7.0.0",
  5287. "files": [
  5288. ".nupkg.metadata",
  5289. ".signature.p7s",
  5290. "Icon.png",
  5291. "LICENSE.TXT",
  5292. "THIRD-PARTY-NOTICES.TXT",
  5293. "buildTransitive/net461/System.Drawing.Common.targets",
  5294. "buildTransitive/net462/_._",
  5295. "buildTransitive/net6.0/_._",
  5296. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  5297. "lib/MonoAndroid10/_._",
  5298. "lib/MonoTouch10/_._",
  5299. "lib/net462/System.Drawing.Common.dll",
  5300. "lib/net462/System.Drawing.Common.xml",
  5301. "lib/net6.0/System.Drawing.Common.dll",
  5302. "lib/net6.0/System.Drawing.Common.xml",
  5303. "lib/net7.0/System.Drawing.Common.dll",
  5304. "lib/net7.0/System.Drawing.Common.xml",
  5305. "lib/netstandard2.0/System.Drawing.Common.dll",
  5306. "lib/netstandard2.0/System.Drawing.Common.xml",
  5307. "lib/xamarinios10/_._",
  5308. "lib/xamarinmac20/_._",
  5309. "lib/xamarintvos10/_._",
  5310. "lib/xamarinwatchos10/_._",
  5311. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  5312. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  5313. "runtimes/win/lib/net7.0/System.Drawing.Common.dll",
  5314. "runtimes/win/lib/net7.0/System.Drawing.Common.xml",
  5315. "system.drawing.common.7.0.0.nupkg.sha512",
  5316. "system.drawing.common.nuspec",
  5317. "useSharedDesignerContext.txt"
  5318. ]
  5319. },
  5320. "System.Dynamic.Runtime/4.0.11": {
  5321. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  5322. "type": "package",
  5323. "path": "system.dynamic.runtime/4.0.11",
  5324. "files": [
  5325. ".nupkg.metadata",
  5326. ".signature.p7s",
  5327. "ThirdPartyNotices.txt",
  5328. "dotnet_library_license.txt",
  5329. "lib/MonoAndroid10/_._",
  5330. "lib/MonoTouch10/_._",
  5331. "lib/net45/_._",
  5332. "lib/netcore50/System.Dynamic.Runtime.dll",
  5333. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5334. "lib/portable-net45+win8+wp8+wpa81/_._",
  5335. "lib/win8/_._",
  5336. "lib/wp80/_._",
  5337. "lib/wpa81/_._",
  5338. "lib/xamarinios10/_._",
  5339. "lib/xamarinmac20/_._",
  5340. "lib/xamarintvos10/_._",
  5341. "lib/xamarinwatchos10/_._",
  5342. "ref/MonoAndroid10/_._",
  5343. "ref/MonoTouch10/_._",
  5344. "ref/net45/_._",
  5345. "ref/netcore50/System.Dynamic.Runtime.dll",
  5346. "ref/netcore50/System.Dynamic.Runtime.xml",
  5347. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5348. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5349. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5350. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5351. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5352. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5353. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5354. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5355. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5356. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5357. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5358. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5359. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5360. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5361. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5362. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5363. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5364. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5365. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5366. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5367. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5368. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5369. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5370. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5371. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5372. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5373. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5374. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5375. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5376. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5377. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5378. "ref/portable-net45+win8+wp8+wpa81/_._",
  5379. "ref/win8/_._",
  5380. "ref/wp80/_._",
  5381. "ref/wpa81/_._",
  5382. "ref/xamarinios10/_._",
  5383. "ref/xamarinmac20/_._",
  5384. "ref/xamarintvos10/_._",
  5385. "ref/xamarinwatchos10/_._",
  5386. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5387. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  5388. "system.dynamic.runtime.nuspec"
  5389. ]
  5390. },
  5391. "System.Formats.Asn1/5.0.0": {
  5392. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  5393. "type": "package",
  5394. "path": "system.formats.asn1/5.0.0",
  5395. "files": [
  5396. ".nupkg.metadata",
  5397. ".signature.p7s",
  5398. "Icon.png",
  5399. "LICENSE.TXT",
  5400. "THIRD-PARTY-NOTICES.TXT",
  5401. "lib/net461/System.Formats.Asn1.dll",
  5402. "lib/net461/System.Formats.Asn1.xml",
  5403. "lib/netstandard2.0/System.Formats.Asn1.dll",
  5404. "lib/netstandard2.0/System.Formats.Asn1.xml",
  5405. "system.formats.asn1.5.0.0.nupkg.sha512",
  5406. "system.formats.asn1.nuspec",
  5407. "useSharedDesignerContext.txt",
  5408. "version.txt"
  5409. ]
  5410. },
  5411. "System.Globalization/4.3.0": {
  5412. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5413. "type": "package",
  5414. "path": "system.globalization/4.3.0",
  5415. "files": [
  5416. ".nupkg.metadata",
  5417. ".signature.p7s",
  5418. "ThirdPartyNotices.txt",
  5419. "dotnet_library_license.txt",
  5420. "lib/MonoAndroid10/_._",
  5421. "lib/MonoTouch10/_._",
  5422. "lib/net45/_._",
  5423. "lib/portable-net45+win8+wp8+wpa81/_._",
  5424. "lib/win8/_._",
  5425. "lib/wp80/_._",
  5426. "lib/wpa81/_._",
  5427. "lib/xamarinios10/_._",
  5428. "lib/xamarinmac20/_._",
  5429. "lib/xamarintvos10/_._",
  5430. "lib/xamarinwatchos10/_._",
  5431. "ref/MonoAndroid10/_._",
  5432. "ref/MonoTouch10/_._",
  5433. "ref/net45/_._",
  5434. "ref/netcore50/System.Globalization.dll",
  5435. "ref/netcore50/System.Globalization.xml",
  5436. "ref/netcore50/de/System.Globalization.xml",
  5437. "ref/netcore50/es/System.Globalization.xml",
  5438. "ref/netcore50/fr/System.Globalization.xml",
  5439. "ref/netcore50/it/System.Globalization.xml",
  5440. "ref/netcore50/ja/System.Globalization.xml",
  5441. "ref/netcore50/ko/System.Globalization.xml",
  5442. "ref/netcore50/ru/System.Globalization.xml",
  5443. "ref/netcore50/zh-hans/System.Globalization.xml",
  5444. "ref/netcore50/zh-hant/System.Globalization.xml",
  5445. "ref/netstandard1.0/System.Globalization.dll",
  5446. "ref/netstandard1.0/System.Globalization.xml",
  5447. "ref/netstandard1.0/de/System.Globalization.xml",
  5448. "ref/netstandard1.0/es/System.Globalization.xml",
  5449. "ref/netstandard1.0/fr/System.Globalization.xml",
  5450. "ref/netstandard1.0/it/System.Globalization.xml",
  5451. "ref/netstandard1.0/ja/System.Globalization.xml",
  5452. "ref/netstandard1.0/ko/System.Globalization.xml",
  5453. "ref/netstandard1.0/ru/System.Globalization.xml",
  5454. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5455. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5456. "ref/netstandard1.3/System.Globalization.dll",
  5457. "ref/netstandard1.3/System.Globalization.xml",
  5458. "ref/netstandard1.3/de/System.Globalization.xml",
  5459. "ref/netstandard1.3/es/System.Globalization.xml",
  5460. "ref/netstandard1.3/fr/System.Globalization.xml",
  5461. "ref/netstandard1.3/it/System.Globalization.xml",
  5462. "ref/netstandard1.3/ja/System.Globalization.xml",
  5463. "ref/netstandard1.3/ko/System.Globalization.xml",
  5464. "ref/netstandard1.3/ru/System.Globalization.xml",
  5465. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5466. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5467. "ref/portable-net45+win8+wp8+wpa81/_._",
  5468. "ref/win8/_._",
  5469. "ref/wp80/_._",
  5470. "ref/wpa81/_._",
  5471. "ref/xamarinios10/_._",
  5472. "ref/xamarinmac20/_._",
  5473. "ref/xamarintvos10/_._",
  5474. "ref/xamarinwatchos10/_._",
  5475. "system.globalization.4.3.0.nupkg.sha512",
  5476. "system.globalization.nuspec"
  5477. ]
  5478. },
  5479. "System.Globalization.Calendars/4.3.0": {
  5480. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5481. "type": "package",
  5482. "path": "system.globalization.calendars/4.3.0",
  5483. "files": [
  5484. ".nupkg.metadata",
  5485. ".signature.p7s",
  5486. "ThirdPartyNotices.txt",
  5487. "dotnet_library_license.txt",
  5488. "lib/MonoAndroid10/_._",
  5489. "lib/MonoTouch10/_._",
  5490. "lib/net46/System.Globalization.Calendars.dll",
  5491. "lib/xamarinios10/_._",
  5492. "lib/xamarinmac20/_._",
  5493. "lib/xamarintvos10/_._",
  5494. "lib/xamarinwatchos10/_._",
  5495. "ref/MonoAndroid10/_._",
  5496. "ref/MonoTouch10/_._",
  5497. "ref/net46/System.Globalization.Calendars.dll",
  5498. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5499. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5500. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5501. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5502. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5503. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5504. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5505. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5506. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5507. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5508. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5509. "ref/xamarinios10/_._",
  5510. "ref/xamarinmac20/_._",
  5511. "ref/xamarintvos10/_._",
  5512. "ref/xamarinwatchos10/_._",
  5513. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5514. "system.globalization.calendars.nuspec"
  5515. ]
  5516. },
  5517. "System.Globalization.Extensions/4.3.0": {
  5518. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5519. "type": "package",
  5520. "path": "system.globalization.extensions/4.3.0",
  5521. "files": [
  5522. ".nupkg.metadata",
  5523. ".signature.p7s",
  5524. "ThirdPartyNotices.txt",
  5525. "dotnet_library_license.txt",
  5526. "lib/MonoAndroid10/_._",
  5527. "lib/MonoTouch10/_._",
  5528. "lib/net46/System.Globalization.Extensions.dll",
  5529. "lib/xamarinios10/_._",
  5530. "lib/xamarinmac20/_._",
  5531. "lib/xamarintvos10/_._",
  5532. "lib/xamarinwatchos10/_._",
  5533. "ref/MonoAndroid10/_._",
  5534. "ref/MonoTouch10/_._",
  5535. "ref/net46/System.Globalization.Extensions.dll",
  5536. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5537. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5538. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5539. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5540. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5541. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5542. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5543. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5544. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5545. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5546. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5547. "ref/xamarinios10/_._",
  5548. "ref/xamarinmac20/_._",
  5549. "ref/xamarintvos10/_._",
  5550. "ref/xamarinwatchos10/_._",
  5551. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5552. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5553. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5554. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5555. "system.globalization.extensions.nuspec"
  5556. ]
  5557. },
  5558. "System.IO/4.3.0": {
  5559. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5560. "type": "package",
  5561. "path": "system.io/4.3.0",
  5562. "files": [
  5563. ".nupkg.metadata",
  5564. ".signature.p7s",
  5565. "ThirdPartyNotices.txt",
  5566. "dotnet_library_license.txt",
  5567. "lib/MonoAndroid10/_._",
  5568. "lib/MonoTouch10/_._",
  5569. "lib/net45/_._",
  5570. "lib/net462/System.IO.dll",
  5571. "lib/portable-net45+win8+wp8+wpa81/_._",
  5572. "lib/win8/_._",
  5573. "lib/wp80/_._",
  5574. "lib/wpa81/_._",
  5575. "lib/xamarinios10/_._",
  5576. "lib/xamarinmac20/_._",
  5577. "lib/xamarintvos10/_._",
  5578. "lib/xamarinwatchos10/_._",
  5579. "ref/MonoAndroid10/_._",
  5580. "ref/MonoTouch10/_._",
  5581. "ref/net45/_._",
  5582. "ref/net462/System.IO.dll",
  5583. "ref/netcore50/System.IO.dll",
  5584. "ref/netcore50/System.IO.xml",
  5585. "ref/netcore50/de/System.IO.xml",
  5586. "ref/netcore50/es/System.IO.xml",
  5587. "ref/netcore50/fr/System.IO.xml",
  5588. "ref/netcore50/it/System.IO.xml",
  5589. "ref/netcore50/ja/System.IO.xml",
  5590. "ref/netcore50/ko/System.IO.xml",
  5591. "ref/netcore50/ru/System.IO.xml",
  5592. "ref/netcore50/zh-hans/System.IO.xml",
  5593. "ref/netcore50/zh-hant/System.IO.xml",
  5594. "ref/netstandard1.0/System.IO.dll",
  5595. "ref/netstandard1.0/System.IO.xml",
  5596. "ref/netstandard1.0/de/System.IO.xml",
  5597. "ref/netstandard1.0/es/System.IO.xml",
  5598. "ref/netstandard1.0/fr/System.IO.xml",
  5599. "ref/netstandard1.0/it/System.IO.xml",
  5600. "ref/netstandard1.0/ja/System.IO.xml",
  5601. "ref/netstandard1.0/ko/System.IO.xml",
  5602. "ref/netstandard1.0/ru/System.IO.xml",
  5603. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5604. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5605. "ref/netstandard1.3/System.IO.dll",
  5606. "ref/netstandard1.3/System.IO.xml",
  5607. "ref/netstandard1.3/de/System.IO.xml",
  5608. "ref/netstandard1.3/es/System.IO.xml",
  5609. "ref/netstandard1.3/fr/System.IO.xml",
  5610. "ref/netstandard1.3/it/System.IO.xml",
  5611. "ref/netstandard1.3/ja/System.IO.xml",
  5612. "ref/netstandard1.3/ko/System.IO.xml",
  5613. "ref/netstandard1.3/ru/System.IO.xml",
  5614. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5615. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5616. "ref/netstandard1.5/System.IO.dll",
  5617. "ref/netstandard1.5/System.IO.xml",
  5618. "ref/netstandard1.5/de/System.IO.xml",
  5619. "ref/netstandard1.5/es/System.IO.xml",
  5620. "ref/netstandard1.5/fr/System.IO.xml",
  5621. "ref/netstandard1.5/it/System.IO.xml",
  5622. "ref/netstandard1.5/ja/System.IO.xml",
  5623. "ref/netstandard1.5/ko/System.IO.xml",
  5624. "ref/netstandard1.5/ru/System.IO.xml",
  5625. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5626. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5627. "ref/portable-net45+win8+wp8+wpa81/_._",
  5628. "ref/win8/_._",
  5629. "ref/wp80/_._",
  5630. "ref/wpa81/_._",
  5631. "ref/xamarinios10/_._",
  5632. "ref/xamarinmac20/_._",
  5633. "ref/xamarintvos10/_._",
  5634. "ref/xamarinwatchos10/_._",
  5635. "system.io.4.3.0.nupkg.sha512",
  5636. "system.io.nuspec"
  5637. ]
  5638. },
  5639. "System.IO.FileSystem/4.3.0": {
  5640. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5641. "type": "package",
  5642. "path": "system.io.filesystem/4.3.0",
  5643. "files": [
  5644. ".nupkg.metadata",
  5645. ".signature.p7s",
  5646. "ThirdPartyNotices.txt",
  5647. "dotnet_library_license.txt",
  5648. "lib/MonoAndroid10/_._",
  5649. "lib/MonoTouch10/_._",
  5650. "lib/net46/System.IO.FileSystem.dll",
  5651. "lib/xamarinios10/_._",
  5652. "lib/xamarinmac20/_._",
  5653. "lib/xamarintvos10/_._",
  5654. "lib/xamarinwatchos10/_._",
  5655. "ref/MonoAndroid10/_._",
  5656. "ref/MonoTouch10/_._",
  5657. "ref/net46/System.IO.FileSystem.dll",
  5658. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5659. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5660. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5661. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5662. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5663. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5664. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5665. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5666. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5667. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5668. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5669. "ref/xamarinios10/_._",
  5670. "ref/xamarinmac20/_._",
  5671. "ref/xamarintvos10/_._",
  5672. "ref/xamarinwatchos10/_._",
  5673. "system.io.filesystem.4.3.0.nupkg.sha512",
  5674. "system.io.filesystem.nuspec"
  5675. ]
  5676. },
  5677. "System.IO.FileSystem.Primitives/4.3.0": {
  5678. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5679. "type": "package",
  5680. "path": "system.io.filesystem.primitives/4.3.0",
  5681. "files": [
  5682. ".nupkg.metadata",
  5683. ".signature.p7s",
  5684. "ThirdPartyNotices.txt",
  5685. "dotnet_library_license.txt",
  5686. "lib/MonoAndroid10/_._",
  5687. "lib/MonoTouch10/_._",
  5688. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5689. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5690. "lib/xamarinios10/_._",
  5691. "lib/xamarinmac20/_._",
  5692. "lib/xamarintvos10/_._",
  5693. "lib/xamarinwatchos10/_._",
  5694. "ref/MonoAndroid10/_._",
  5695. "ref/MonoTouch10/_._",
  5696. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5697. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5698. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5699. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5700. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5701. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5702. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5703. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5704. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5705. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5706. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5707. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5708. "ref/xamarinios10/_._",
  5709. "ref/xamarinmac20/_._",
  5710. "ref/xamarintvos10/_._",
  5711. "ref/xamarinwatchos10/_._",
  5712. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5713. "system.io.filesystem.primitives.nuspec"
  5714. ]
  5715. },
  5716. "System.Linq/4.3.0": {
  5717. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5718. "type": "package",
  5719. "path": "system.linq/4.3.0",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "ThirdPartyNotices.txt",
  5724. "dotnet_library_license.txt",
  5725. "lib/MonoAndroid10/_._",
  5726. "lib/MonoTouch10/_._",
  5727. "lib/net45/_._",
  5728. "lib/net463/System.Linq.dll",
  5729. "lib/netcore50/System.Linq.dll",
  5730. "lib/netstandard1.6/System.Linq.dll",
  5731. "lib/portable-net45+win8+wp8+wpa81/_._",
  5732. "lib/win8/_._",
  5733. "lib/wp80/_._",
  5734. "lib/wpa81/_._",
  5735. "lib/xamarinios10/_._",
  5736. "lib/xamarinmac20/_._",
  5737. "lib/xamarintvos10/_._",
  5738. "lib/xamarinwatchos10/_._",
  5739. "ref/MonoAndroid10/_._",
  5740. "ref/MonoTouch10/_._",
  5741. "ref/net45/_._",
  5742. "ref/net463/System.Linq.dll",
  5743. "ref/netcore50/System.Linq.dll",
  5744. "ref/netcore50/System.Linq.xml",
  5745. "ref/netcore50/de/System.Linq.xml",
  5746. "ref/netcore50/es/System.Linq.xml",
  5747. "ref/netcore50/fr/System.Linq.xml",
  5748. "ref/netcore50/it/System.Linq.xml",
  5749. "ref/netcore50/ja/System.Linq.xml",
  5750. "ref/netcore50/ko/System.Linq.xml",
  5751. "ref/netcore50/ru/System.Linq.xml",
  5752. "ref/netcore50/zh-hans/System.Linq.xml",
  5753. "ref/netcore50/zh-hant/System.Linq.xml",
  5754. "ref/netstandard1.0/System.Linq.dll",
  5755. "ref/netstandard1.0/System.Linq.xml",
  5756. "ref/netstandard1.0/de/System.Linq.xml",
  5757. "ref/netstandard1.0/es/System.Linq.xml",
  5758. "ref/netstandard1.0/fr/System.Linq.xml",
  5759. "ref/netstandard1.0/it/System.Linq.xml",
  5760. "ref/netstandard1.0/ja/System.Linq.xml",
  5761. "ref/netstandard1.0/ko/System.Linq.xml",
  5762. "ref/netstandard1.0/ru/System.Linq.xml",
  5763. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5764. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5765. "ref/netstandard1.6/System.Linq.dll",
  5766. "ref/netstandard1.6/System.Linq.xml",
  5767. "ref/netstandard1.6/de/System.Linq.xml",
  5768. "ref/netstandard1.6/es/System.Linq.xml",
  5769. "ref/netstandard1.6/fr/System.Linq.xml",
  5770. "ref/netstandard1.6/it/System.Linq.xml",
  5771. "ref/netstandard1.6/ja/System.Linq.xml",
  5772. "ref/netstandard1.6/ko/System.Linq.xml",
  5773. "ref/netstandard1.6/ru/System.Linq.xml",
  5774. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5775. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5776. "ref/portable-net45+win8+wp8+wpa81/_._",
  5777. "ref/win8/_._",
  5778. "ref/wp80/_._",
  5779. "ref/wpa81/_._",
  5780. "ref/xamarinios10/_._",
  5781. "ref/xamarinmac20/_._",
  5782. "ref/xamarintvos10/_._",
  5783. "ref/xamarinwatchos10/_._",
  5784. "system.linq.4.3.0.nupkg.sha512",
  5785. "system.linq.nuspec"
  5786. ]
  5787. },
  5788. "System.Linq.Expressions/4.1.0": {
  5789. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  5790. "type": "package",
  5791. "path": "system.linq.expressions/4.1.0",
  5792. "files": [
  5793. ".nupkg.metadata",
  5794. "ThirdPartyNotices.txt",
  5795. "dotnet_library_license.txt",
  5796. "lib/MonoAndroid10/_._",
  5797. "lib/MonoTouch10/_._",
  5798. "lib/net45/_._",
  5799. "lib/net463/System.Linq.Expressions.dll",
  5800. "lib/netcore50/System.Linq.Expressions.dll",
  5801. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5802. "lib/portable-net45+win8+wp8+wpa81/_._",
  5803. "lib/win8/_._",
  5804. "lib/wp80/_._",
  5805. "lib/wpa81/_._",
  5806. "lib/xamarinios10/_._",
  5807. "lib/xamarinmac20/_._",
  5808. "lib/xamarintvos10/_._",
  5809. "lib/xamarinwatchos10/_._",
  5810. "ref/MonoAndroid10/_._",
  5811. "ref/MonoTouch10/_._",
  5812. "ref/net45/_._",
  5813. "ref/net463/System.Linq.Expressions.dll",
  5814. "ref/netcore50/System.Linq.Expressions.dll",
  5815. "ref/netcore50/System.Linq.Expressions.xml",
  5816. "ref/netcore50/de/System.Linq.Expressions.xml",
  5817. "ref/netcore50/es/System.Linq.Expressions.xml",
  5818. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5819. "ref/netcore50/it/System.Linq.Expressions.xml",
  5820. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5821. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5822. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5823. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5824. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5825. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5826. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5827. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5828. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5829. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5830. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5831. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5832. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5833. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5834. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5835. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5836. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5837. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5838. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5839. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5840. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5841. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5842. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5843. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5844. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5845. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5846. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5847. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5848. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5849. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5850. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5851. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5852. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5853. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5854. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5855. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5856. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5857. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5858. "ref/portable-net45+win8+wp8+wpa81/_._",
  5859. "ref/win8/_._",
  5860. "ref/wp80/_._",
  5861. "ref/wpa81/_._",
  5862. "ref/xamarinios10/_._",
  5863. "ref/xamarinmac20/_._",
  5864. "ref/xamarintvos10/_._",
  5865. "ref/xamarinwatchos10/_._",
  5866. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5867. "system.linq.expressions.4.1.0.nupkg.sha512",
  5868. "system.linq.expressions.nuspec"
  5869. ]
  5870. },
  5871. "System.Memory/4.5.3": {
  5872. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5873. "type": "package",
  5874. "path": "system.memory/4.5.3",
  5875. "files": [
  5876. ".nupkg.metadata",
  5877. ".signature.p7s",
  5878. "LICENSE.TXT",
  5879. "THIRD-PARTY-NOTICES.TXT",
  5880. "lib/netcoreapp2.1/_._",
  5881. "lib/netstandard1.1/System.Memory.dll",
  5882. "lib/netstandard1.1/System.Memory.xml",
  5883. "lib/netstandard2.0/System.Memory.dll",
  5884. "lib/netstandard2.0/System.Memory.xml",
  5885. "ref/netcoreapp2.1/_._",
  5886. "system.memory.4.5.3.nupkg.sha512",
  5887. "system.memory.nuspec",
  5888. "useSharedDesignerContext.txt",
  5889. "version.txt"
  5890. ]
  5891. },
  5892. "System.ObjectModel/4.0.12": {
  5893. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  5894. "type": "package",
  5895. "path": "system.objectmodel/4.0.12",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. "ThirdPartyNotices.txt",
  5899. "dotnet_library_license.txt",
  5900. "lib/MonoAndroid10/_._",
  5901. "lib/MonoTouch10/_._",
  5902. "lib/net45/_._",
  5903. "lib/netcore50/System.ObjectModel.dll",
  5904. "lib/netstandard1.3/System.ObjectModel.dll",
  5905. "lib/portable-net45+win8+wp8+wpa81/_._",
  5906. "lib/win8/_._",
  5907. "lib/wp80/_._",
  5908. "lib/wpa81/_._",
  5909. "lib/xamarinios10/_._",
  5910. "lib/xamarinmac20/_._",
  5911. "lib/xamarintvos10/_._",
  5912. "lib/xamarinwatchos10/_._",
  5913. "ref/MonoAndroid10/_._",
  5914. "ref/MonoTouch10/_._",
  5915. "ref/net45/_._",
  5916. "ref/netcore50/System.ObjectModel.dll",
  5917. "ref/netcore50/System.ObjectModel.xml",
  5918. "ref/netcore50/de/System.ObjectModel.xml",
  5919. "ref/netcore50/es/System.ObjectModel.xml",
  5920. "ref/netcore50/fr/System.ObjectModel.xml",
  5921. "ref/netcore50/it/System.ObjectModel.xml",
  5922. "ref/netcore50/ja/System.ObjectModel.xml",
  5923. "ref/netcore50/ko/System.ObjectModel.xml",
  5924. "ref/netcore50/ru/System.ObjectModel.xml",
  5925. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5926. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5927. "ref/netstandard1.0/System.ObjectModel.dll",
  5928. "ref/netstandard1.0/System.ObjectModel.xml",
  5929. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5930. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5931. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5932. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5933. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5934. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5935. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5936. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5937. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5938. "ref/netstandard1.3/System.ObjectModel.dll",
  5939. "ref/netstandard1.3/System.ObjectModel.xml",
  5940. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5941. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5942. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5943. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5944. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5945. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5946. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5947. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5948. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5949. "ref/portable-net45+win8+wp8+wpa81/_._",
  5950. "ref/win8/_._",
  5951. "ref/wp80/_._",
  5952. "ref/wpa81/_._",
  5953. "ref/xamarinios10/_._",
  5954. "ref/xamarinmac20/_._",
  5955. "ref/xamarintvos10/_._",
  5956. "ref/xamarinwatchos10/_._",
  5957. "system.objectmodel.4.0.12.nupkg.sha512",
  5958. "system.objectmodel.nuspec"
  5959. ]
  5960. },
  5961. "System.Reflection/4.3.0": {
  5962. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5963. "type": "package",
  5964. "path": "system.reflection/4.3.0",
  5965. "files": [
  5966. ".nupkg.metadata",
  5967. ".signature.p7s",
  5968. "ThirdPartyNotices.txt",
  5969. "dotnet_library_license.txt",
  5970. "lib/MonoAndroid10/_._",
  5971. "lib/MonoTouch10/_._",
  5972. "lib/net45/_._",
  5973. "lib/net462/System.Reflection.dll",
  5974. "lib/portable-net45+win8+wp8+wpa81/_._",
  5975. "lib/win8/_._",
  5976. "lib/wp80/_._",
  5977. "lib/wpa81/_._",
  5978. "lib/xamarinios10/_._",
  5979. "lib/xamarinmac20/_._",
  5980. "lib/xamarintvos10/_._",
  5981. "lib/xamarinwatchos10/_._",
  5982. "ref/MonoAndroid10/_._",
  5983. "ref/MonoTouch10/_._",
  5984. "ref/net45/_._",
  5985. "ref/net462/System.Reflection.dll",
  5986. "ref/netcore50/System.Reflection.dll",
  5987. "ref/netcore50/System.Reflection.xml",
  5988. "ref/netcore50/de/System.Reflection.xml",
  5989. "ref/netcore50/es/System.Reflection.xml",
  5990. "ref/netcore50/fr/System.Reflection.xml",
  5991. "ref/netcore50/it/System.Reflection.xml",
  5992. "ref/netcore50/ja/System.Reflection.xml",
  5993. "ref/netcore50/ko/System.Reflection.xml",
  5994. "ref/netcore50/ru/System.Reflection.xml",
  5995. "ref/netcore50/zh-hans/System.Reflection.xml",
  5996. "ref/netcore50/zh-hant/System.Reflection.xml",
  5997. "ref/netstandard1.0/System.Reflection.dll",
  5998. "ref/netstandard1.0/System.Reflection.xml",
  5999. "ref/netstandard1.0/de/System.Reflection.xml",
  6000. "ref/netstandard1.0/es/System.Reflection.xml",
  6001. "ref/netstandard1.0/fr/System.Reflection.xml",
  6002. "ref/netstandard1.0/it/System.Reflection.xml",
  6003. "ref/netstandard1.0/ja/System.Reflection.xml",
  6004. "ref/netstandard1.0/ko/System.Reflection.xml",
  6005. "ref/netstandard1.0/ru/System.Reflection.xml",
  6006. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6007. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6008. "ref/netstandard1.3/System.Reflection.dll",
  6009. "ref/netstandard1.3/System.Reflection.xml",
  6010. "ref/netstandard1.3/de/System.Reflection.xml",
  6011. "ref/netstandard1.3/es/System.Reflection.xml",
  6012. "ref/netstandard1.3/fr/System.Reflection.xml",
  6013. "ref/netstandard1.3/it/System.Reflection.xml",
  6014. "ref/netstandard1.3/ja/System.Reflection.xml",
  6015. "ref/netstandard1.3/ko/System.Reflection.xml",
  6016. "ref/netstandard1.3/ru/System.Reflection.xml",
  6017. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6018. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6019. "ref/netstandard1.5/System.Reflection.dll",
  6020. "ref/netstandard1.5/System.Reflection.xml",
  6021. "ref/netstandard1.5/de/System.Reflection.xml",
  6022. "ref/netstandard1.5/es/System.Reflection.xml",
  6023. "ref/netstandard1.5/fr/System.Reflection.xml",
  6024. "ref/netstandard1.5/it/System.Reflection.xml",
  6025. "ref/netstandard1.5/ja/System.Reflection.xml",
  6026. "ref/netstandard1.5/ko/System.Reflection.xml",
  6027. "ref/netstandard1.5/ru/System.Reflection.xml",
  6028. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6029. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6030. "ref/portable-net45+win8+wp8+wpa81/_._",
  6031. "ref/win8/_._",
  6032. "ref/wp80/_._",
  6033. "ref/wpa81/_._",
  6034. "ref/xamarinios10/_._",
  6035. "ref/xamarinmac20/_._",
  6036. "ref/xamarintvos10/_._",
  6037. "ref/xamarinwatchos10/_._",
  6038. "system.reflection.4.3.0.nupkg.sha512",
  6039. "system.reflection.nuspec"
  6040. ]
  6041. },
  6042. "System.Reflection.Emit/4.3.0": {
  6043. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6044. "type": "package",
  6045. "path": "system.reflection.emit/4.3.0",
  6046. "files": [
  6047. ".nupkg.metadata",
  6048. ".signature.p7s",
  6049. "ThirdPartyNotices.txt",
  6050. "dotnet_library_license.txt",
  6051. "lib/MonoAndroid10/_._",
  6052. "lib/monotouch10/_._",
  6053. "lib/net45/_._",
  6054. "lib/netcore50/System.Reflection.Emit.dll",
  6055. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6056. "lib/xamarinios10/_._",
  6057. "lib/xamarinmac20/_._",
  6058. "lib/xamarintvos10/_._",
  6059. "lib/xamarinwatchos10/_._",
  6060. "ref/MonoAndroid10/_._",
  6061. "ref/net45/_._",
  6062. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6063. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6064. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6065. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6066. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6067. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6068. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6069. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6070. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6071. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6072. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6073. "ref/xamarinmac20/_._",
  6074. "system.reflection.emit.4.3.0.nupkg.sha512",
  6075. "system.reflection.emit.nuspec"
  6076. ]
  6077. },
  6078. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6079. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6080. "type": "package",
  6081. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6082. "files": [
  6083. ".nupkg.metadata",
  6084. ".signature.p7s",
  6085. "ThirdPartyNotices.txt",
  6086. "dotnet_library_license.txt",
  6087. "lib/MonoAndroid10/_._",
  6088. "lib/MonoTouch10/_._",
  6089. "lib/net45/_._",
  6090. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6091. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6092. "lib/portable-net45+wp8/_._",
  6093. "lib/wp80/_._",
  6094. "lib/xamarinios10/_._",
  6095. "lib/xamarinmac20/_._",
  6096. "lib/xamarintvos10/_._",
  6097. "lib/xamarinwatchos10/_._",
  6098. "ref/MonoAndroid10/_._",
  6099. "ref/MonoTouch10/_._",
  6100. "ref/net45/_._",
  6101. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6102. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6103. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6104. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6105. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6106. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6107. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6108. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6109. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6110. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6111. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6112. "ref/portable-net45+wp8/_._",
  6113. "ref/wp80/_._",
  6114. "ref/xamarinios10/_._",
  6115. "ref/xamarinmac20/_._",
  6116. "ref/xamarintvos10/_._",
  6117. "ref/xamarinwatchos10/_._",
  6118. "runtimes/aot/lib/netcore50/_._",
  6119. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6120. "system.reflection.emit.ilgeneration.nuspec"
  6121. ]
  6122. },
  6123. "System.Reflection.Emit.Lightweight/4.0.1": {
  6124. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  6125. "type": "package",
  6126. "path": "system.reflection.emit.lightweight/4.0.1",
  6127. "files": [
  6128. ".nupkg.metadata",
  6129. "ThirdPartyNotices.txt",
  6130. "dotnet_library_license.txt",
  6131. "lib/net45/_._",
  6132. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6133. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6134. "lib/portable-net45+wp8/_._",
  6135. "lib/wp80/_._",
  6136. "ref/net45/_._",
  6137. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6138. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6139. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6140. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6141. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6142. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6143. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6144. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6145. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6146. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6147. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6148. "ref/portable-net45+wp8/_._",
  6149. "ref/wp80/_._",
  6150. "runtimes/aot/lib/netcore50/_._",
  6151. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  6152. "system.reflection.emit.lightweight.nuspec"
  6153. ]
  6154. },
  6155. "System.Reflection.Extensions/4.3.0": {
  6156. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6157. "type": "package",
  6158. "path": "system.reflection.extensions/4.3.0",
  6159. "files": [
  6160. ".nupkg.metadata",
  6161. ".signature.p7s",
  6162. "ThirdPartyNotices.txt",
  6163. "dotnet_library_license.txt",
  6164. "lib/MonoAndroid10/_._",
  6165. "lib/MonoTouch10/_._",
  6166. "lib/net45/_._",
  6167. "lib/portable-net45+win8+wp8+wpa81/_._",
  6168. "lib/win8/_._",
  6169. "lib/wp80/_._",
  6170. "lib/wpa81/_._",
  6171. "lib/xamarinios10/_._",
  6172. "lib/xamarinmac20/_._",
  6173. "lib/xamarintvos10/_._",
  6174. "lib/xamarinwatchos10/_._",
  6175. "ref/MonoAndroid10/_._",
  6176. "ref/MonoTouch10/_._",
  6177. "ref/net45/_._",
  6178. "ref/netcore50/System.Reflection.Extensions.dll",
  6179. "ref/netcore50/System.Reflection.Extensions.xml",
  6180. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6181. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6182. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6183. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6184. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6185. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6186. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6187. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6188. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6189. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6190. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6191. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6192. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6193. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6194. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6195. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6196. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6197. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6198. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6199. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6200. "ref/portable-net45+win8+wp8+wpa81/_._",
  6201. "ref/win8/_._",
  6202. "ref/wp80/_._",
  6203. "ref/wpa81/_._",
  6204. "ref/xamarinios10/_._",
  6205. "ref/xamarinmac20/_._",
  6206. "ref/xamarintvos10/_._",
  6207. "ref/xamarinwatchos10/_._",
  6208. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6209. "system.reflection.extensions.nuspec"
  6210. ]
  6211. },
  6212. "System.Reflection.Primitives/4.3.0": {
  6213. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6214. "type": "package",
  6215. "path": "system.reflection.primitives/4.3.0",
  6216. "files": [
  6217. ".nupkg.metadata",
  6218. ".signature.p7s",
  6219. "ThirdPartyNotices.txt",
  6220. "dotnet_library_license.txt",
  6221. "lib/MonoAndroid10/_._",
  6222. "lib/MonoTouch10/_._",
  6223. "lib/net45/_._",
  6224. "lib/portable-net45+win8+wp8+wpa81/_._",
  6225. "lib/win8/_._",
  6226. "lib/wp80/_._",
  6227. "lib/wpa81/_._",
  6228. "lib/xamarinios10/_._",
  6229. "lib/xamarinmac20/_._",
  6230. "lib/xamarintvos10/_._",
  6231. "lib/xamarinwatchos10/_._",
  6232. "ref/MonoAndroid10/_._",
  6233. "ref/MonoTouch10/_._",
  6234. "ref/net45/_._",
  6235. "ref/netcore50/System.Reflection.Primitives.dll",
  6236. "ref/netcore50/System.Reflection.Primitives.xml",
  6237. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6238. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6239. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6240. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6241. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6242. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6243. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6244. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6245. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6246. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6247. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6248. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6249. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6250. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6251. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6252. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6253. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6254. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6255. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6256. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6257. "ref/portable-net45+win8+wp8+wpa81/_._",
  6258. "ref/win8/_._",
  6259. "ref/wp80/_._",
  6260. "ref/wpa81/_._",
  6261. "ref/xamarinios10/_._",
  6262. "ref/xamarinmac20/_._",
  6263. "ref/xamarintvos10/_._",
  6264. "ref/xamarinwatchos10/_._",
  6265. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6266. "system.reflection.primitives.nuspec"
  6267. ]
  6268. },
  6269. "System.Reflection.TypeExtensions/4.3.0": {
  6270. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6271. "type": "package",
  6272. "path": "system.reflection.typeextensions/4.3.0",
  6273. "files": [
  6274. ".nupkg.metadata",
  6275. ".signature.p7s",
  6276. "ThirdPartyNotices.txt",
  6277. "dotnet_library_license.txt",
  6278. "lib/MonoAndroid10/_._",
  6279. "lib/MonoTouch10/_._",
  6280. "lib/net46/System.Reflection.TypeExtensions.dll",
  6281. "lib/net462/System.Reflection.TypeExtensions.dll",
  6282. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6283. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6284. "lib/xamarinios10/_._",
  6285. "lib/xamarinmac20/_._",
  6286. "lib/xamarintvos10/_._",
  6287. "lib/xamarinwatchos10/_._",
  6288. "ref/MonoAndroid10/_._",
  6289. "ref/MonoTouch10/_._",
  6290. "ref/net46/System.Reflection.TypeExtensions.dll",
  6291. "ref/net462/System.Reflection.TypeExtensions.dll",
  6292. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6293. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6294. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6295. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6296. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6297. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6298. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6299. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6300. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6301. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6302. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6303. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6304. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6305. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6306. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6307. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6308. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6309. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6310. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6311. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6312. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6313. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6314. "ref/xamarinios10/_._",
  6315. "ref/xamarinmac20/_._",
  6316. "ref/xamarintvos10/_._",
  6317. "ref/xamarinwatchos10/_._",
  6318. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6319. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6320. "system.reflection.typeextensions.nuspec"
  6321. ]
  6322. },
  6323. "System.Resources.ResourceManager/4.3.0": {
  6324. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6325. "type": "package",
  6326. "path": "system.resources.resourcemanager/4.3.0",
  6327. "files": [
  6328. ".nupkg.metadata",
  6329. ".signature.p7s",
  6330. "ThirdPartyNotices.txt",
  6331. "dotnet_library_license.txt",
  6332. "lib/MonoAndroid10/_._",
  6333. "lib/MonoTouch10/_._",
  6334. "lib/net45/_._",
  6335. "lib/portable-net45+win8+wp8+wpa81/_._",
  6336. "lib/win8/_._",
  6337. "lib/wp80/_._",
  6338. "lib/wpa81/_._",
  6339. "lib/xamarinios10/_._",
  6340. "lib/xamarinmac20/_._",
  6341. "lib/xamarintvos10/_._",
  6342. "lib/xamarinwatchos10/_._",
  6343. "ref/MonoAndroid10/_._",
  6344. "ref/MonoTouch10/_._",
  6345. "ref/net45/_._",
  6346. "ref/netcore50/System.Resources.ResourceManager.dll",
  6347. "ref/netcore50/System.Resources.ResourceManager.xml",
  6348. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6349. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6350. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6351. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6352. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6353. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6354. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6355. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6356. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6357. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6358. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6359. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6360. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6361. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6362. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6363. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6364. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6365. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6366. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6367. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6368. "ref/portable-net45+win8+wp8+wpa81/_._",
  6369. "ref/win8/_._",
  6370. "ref/wp80/_._",
  6371. "ref/wpa81/_._",
  6372. "ref/xamarinios10/_._",
  6373. "ref/xamarinmac20/_._",
  6374. "ref/xamarintvos10/_._",
  6375. "ref/xamarinwatchos10/_._",
  6376. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6377. "system.resources.resourcemanager.nuspec"
  6378. ]
  6379. },
  6380. "System.Runtime/4.3.0": {
  6381. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6382. "type": "package",
  6383. "path": "system.runtime/4.3.0",
  6384. "files": [
  6385. ".nupkg.metadata",
  6386. ".signature.p7s",
  6387. "ThirdPartyNotices.txt",
  6388. "dotnet_library_license.txt",
  6389. "lib/MonoAndroid10/_._",
  6390. "lib/MonoTouch10/_._",
  6391. "lib/net45/_._",
  6392. "lib/net462/System.Runtime.dll",
  6393. "lib/portable-net45+win8+wp80+wpa81/_._",
  6394. "lib/win8/_._",
  6395. "lib/wp80/_._",
  6396. "lib/wpa81/_._",
  6397. "lib/xamarinios10/_._",
  6398. "lib/xamarinmac20/_._",
  6399. "lib/xamarintvos10/_._",
  6400. "lib/xamarinwatchos10/_._",
  6401. "ref/MonoAndroid10/_._",
  6402. "ref/MonoTouch10/_._",
  6403. "ref/net45/_._",
  6404. "ref/net462/System.Runtime.dll",
  6405. "ref/netcore50/System.Runtime.dll",
  6406. "ref/netcore50/System.Runtime.xml",
  6407. "ref/netcore50/de/System.Runtime.xml",
  6408. "ref/netcore50/es/System.Runtime.xml",
  6409. "ref/netcore50/fr/System.Runtime.xml",
  6410. "ref/netcore50/it/System.Runtime.xml",
  6411. "ref/netcore50/ja/System.Runtime.xml",
  6412. "ref/netcore50/ko/System.Runtime.xml",
  6413. "ref/netcore50/ru/System.Runtime.xml",
  6414. "ref/netcore50/zh-hans/System.Runtime.xml",
  6415. "ref/netcore50/zh-hant/System.Runtime.xml",
  6416. "ref/netstandard1.0/System.Runtime.dll",
  6417. "ref/netstandard1.0/System.Runtime.xml",
  6418. "ref/netstandard1.0/de/System.Runtime.xml",
  6419. "ref/netstandard1.0/es/System.Runtime.xml",
  6420. "ref/netstandard1.0/fr/System.Runtime.xml",
  6421. "ref/netstandard1.0/it/System.Runtime.xml",
  6422. "ref/netstandard1.0/ja/System.Runtime.xml",
  6423. "ref/netstandard1.0/ko/System.Runtime.xml",
  6424. "ref/netstandard1.0/ru/System.Runtime.xml",
  6425. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6426. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6427. "ref/netstandard1.2/System.Runtime.dll",
  6428. "ref/netstandard1.2/System.Runtime.xml",
  6429. "ref/netstandard1.2/de/System.Runtime.xml",
  6430. "ref/netstandard1.2/es/System.Runtime.xml",
  6431. "ref/netstandard1.2/fr/System.Runtime.xml",
  6432. "ref/netstandard1.2/it/System.Runtime.xml",
  6433. "ref/netstandard1.2/ja/System.Runtime.xml",
  6434. "ref/netstandard1.2/ko/System.Runtime.xml",
  6435. "ref/netstandard1.2/ru/System.Runtime.xml",
  6436. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6437. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6438. "ref/netstandard1.3/System.Runtime.dll",
  6439. "ref/netstandard1.3/System.Runtime.xml",
  6440. "ref/netstandard1.3/de/System.Runtime.xml",
  6441. "ref/netstandard1.3/es/System.Runtime.xml",
  6442. "ref/netstandard1.3/fr/System.Runtime.xml",
  6443. "ref/netstandard1.3/it/System.Runtime.xml",
  6444. "ref/netstandard1.3/ja/System.Runtime.xml",
  6445. "ref/netstandard1.3/ko/System.Runtime.xml",
  6446. "ref/netstandard1.3/ru/System.Runtime.xml",
  6447. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6448. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6449. "ref/netstandard1.5/System.Runtime.dll",
  6450. "ref/netstandard1.5/System.Runtime.xml",
  6451. "ref/netstandard1.5/de/System.Runtime.xml",
  6452. "ref/netstandard1.5/es/System.Runtime.xml",
  6453. "ref/netstandard1.5/fr/System.Runtime.xml",
  6454. "ref/netstandard1.5/it/System.Runtime.xml",
  6455. "ref/netstandard1.5/ja/System.Runtime.xml",
  6456. "ref/netstandard1.5/ko/System.Runtime.xml",
  6457. "ref/netstandard1.5/ru/System.Runtime.xml",
  6458. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6459. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6460. "ref/portable-net45+win8+wp80+wpa81/_._",
  6461. "ref/win8/_._",
  6462. "ref/wp80/_._",
  6463. "ref/wpa81/_._",
  6464. "ref/xamarinios10/_._",
  6465. "ref/xamarinmac20/_._",
  6466. "ref/xamarintvos10/_._",
  6467. "ref/xamarinwatchos10/_._",
  6468. "system.runtime.4.3.0.nupkg.sha512",
  6469. "system.runtime.nuspec"
  6470. ]
  6471. },
  6472. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6473. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6474. "type": "package",
  6475. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6476. "files": [
  6477. ".nupkg.metadata",
  6478. ".signature.p7s",
  6479. "Icon.png",
  6480. "LICENSE.TXT",
  6481. "THIRD-PARTY-NOTICES.TXT",
  6482. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6483. "buildTransitive/netcoreapp3.1/_._",
  6484. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6485. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6486. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6487. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6488. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6489. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6490. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6491. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6492. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6493. "system.runtime.compilerservices.unsafe.nuspec",
  6494. "useSharedDesignerContext.txt"
  6495. ]
  6496. },
  6497. "System.Runtime.Extensions/4.3.0": {
  6498. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6499. "type": "package",
  6500. "path": "system.runtime.extensions/4.3.0",
  6501. "files": [
  6502. ".nupkg.metadata",
  6503. ".signature.p7s",
  6504. "ThirdPartyNotices.txt",
  6505. "dotnet_library_license.txt",
  6506. "lib/MonoAndroid10/_._",
  6507. "lib/MonoTouch10/_._",
  6508. "lib/net45/_._",
  6509. "lib/net462/System.Runtime.Extensions.dll",
  6510. "lib/portable-net45+win8+wp8+wpa81/_._",
  6511. "lib/win8/_._",
  6512. "lib/wp80/_._",
  6513. "lib/wpa81/_._",
  6514. "lib/xamarinios10/_._",
  6515. "lib/xamarinmac20/_._",
  6516. "lib/xamarintvos10/_._",
  6517. "lib/xamarinwatchos10/_._",
  6518. "ref/MonoAndroid10/_._",
  6519. "ref/MonoTouch10/_._",
  6520. "ref/net45/_._",
  6521. "ref/net462/System.Runtime.Extensions.dll",
  6522. "ref/netcore50/System.Runtime.Extensions.dll",
  6523. "ref/netcore50/System.Runtime.Extensions.xml",
  6524. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6525. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6526. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6527. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6528. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6529. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6530. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6531. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6532. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6533. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6534. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6535. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6536. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6537. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6538. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6539. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6540. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6541. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6542. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6543. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6544. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6545. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6546. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6547. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6548. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6549. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6550. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6551. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6552. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6553. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6554. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6555. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6556. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6557. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6558. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6559. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6560. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6561. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6562. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6563. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6564. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6565. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6566. "ref/portable-net45+win8+wp8+wpa81/_._",
  6567. "ref/win8/_._",
  6568. "ref/wp80/_._",
  6569. "ref/wpa81/_._",
  6570. "ref/xamarinios10/_._",
  6571. "ref/xamarinmac20/_._",
  6572. "ref/xamarintvos10/_._",
  6573. "ref/xamarinwatchos10/_._",
  6574. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6575. "system.runtime.extensions.nuspec"
  6576. ]
  6577. },
  6578. "System.Runtime.Handles/4.3.0": {
  6579. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6580. "type": "package",
  6581. "path": "system.runtime.handles/4.3.0",
  6582. "files": [
  6583. ".nupkg.metadata",
  6584. ".signature.p7s",
  6585. "ThirdPartyNotices.txt",
  6586. "dotnet_library_license.txt",
  6587. "lib/MonoAndroid10/_._",
  6588. "lib/MonoTouch10/_._",
  6589. "lib/net46/_._",
  6590. "lib/xamarinios10/_._",
  6591. "lib/xamarinmac20/_._",
  6592. "lib/xamarintvos10/_._",
  6593. "lib/xamarinwatchos10/_._",
  6594. "ref/MonoAndroid10/_._",
  6595. "ref/MonoTouch10/_._",
  6596. "ref/net46/_._",
  6597. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6598. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6599. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6600. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6601. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6602. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6603. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6604. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6605. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6606. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6607. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6608. "ref/xamarinios10/_._",
  6609. "ref/xamarinmac20/_._",
  6610. "ref/xamarintvos10/_._",
  6611. "ref/xamarinwatchos10/_._",
  6612. "system.runtime.handles.4.3.0.nupkg.sha512",
  6613. "system.runtime.handles.nuspec"
  6614. ]
  6615. },
  6616. "System.Runtime.InteropServices/4.3.0": {
  6617. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6618. "type": "package",
  6619. "path": "system.runtime.interopservices/4.3.0",
  6620. "files": [
  6621. ".nupkg.metadata",
  6622. ".signature.p7s",
  6623. "ThirdPartyNotices.txt",
  6624. "dotnet_library_license.txt",
  6625. "lib/MonoAndroid10/_._",
  6626. "lib/MonoTouch10/_._",
  6627. "lib/net45/_._",
  6628. "lib/net462/System.Runtime.InteropServices.dll",
  6629. "lib/net463/System.Runtime.InteropServices.dll",
  6630. "lib/portable-net45+win8+wpa81/_._",
  6631. "lib/win8/_._",
  6632. "lib/wpa81/_._",
  6633. "lib/xamarinios10/_._",
  6634. "lib/xamarinmac20/_._",
  6635. "lib/xamarintvos10/_._",
  6636. "lib/xamarinwatchos10/_._",
  6637. "ref/MonoAndroid10/_._",
  6638. "ref/MonoTouch10/_._",
  6639. "ref/net45/_._",
  6640. "ref/net462/System.Runtime.InteropServices.dll",
  6641. "ref/net463/System.Runtime.InteropServices.dll",
  6642. "ref/netcore50/System.Runtime.InteropServices.dll",
  6643. "ref/netcore50/System.Runtime.InteropServices.xml",
  6644. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6645. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6646. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6647. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6648. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6649. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6650. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6651. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6652. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6653. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6654. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6655. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6656. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6657. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6658. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6659. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6660. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6661. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6662. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6663. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6664. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6665. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6666. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6667. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6668. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6669. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6670. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6671. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6672. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6673. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6674. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6675. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6676. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6677. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6678. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6679. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6680. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6681. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6682. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6683. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6684. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6685. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6686. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6687. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6688. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6689. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6690. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6691. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6692. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6693. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6694. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6695. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6696. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6697. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6698. "ref/portable-net45+win8+wpa81/_._",
  6699. "ref/win8/_._",
  6700. "ref/wpa81/_._",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarinmac20/_._",
  6703. "ref/xamarintvos10/_._",
  6704. "ref/xamarinwatchos10/_._",
  6705. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6706. "system.runtime.interopservices.nuspec"
  6707. ]
  6708. },
  6709. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6710. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6711. "type": "package",
  6712. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6713. "files": [
  6714. ".nupkg.metadata",
  6715. ".signature.p7s",
  6716. "ThirdPartyNotices.txt",
  6717. "dotnet_library_license.txt",
  6718. "lib/MonoAndroid10/_._",
  6719. "lib/MonoTouch10/_._",
  6720. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6721. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6722. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6723. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6731. "ref/xamarinios10/_._",
  6732. "ref/xamarinmac20/_._",
  6733. "ref/xamarintvos10/_._",
  6734. "ref/xamarinwatchos10/_._",
  6735. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6736. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6737. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6738. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6739. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6740. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6741. "system.runtime.interopservices.runtimeinformation.nuspec"
  6742. ]
  6743. },
  6744. "System.Runtime.Numerics/4.3.0": {
  6745. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6746. "type": "package",
  6747. "path": "system.runtime.numerics/4.3.0",
  6748. "files": [
  6749. ".nupkg.metadata",
  6750. ".signature.p7s",
  6751. "ThirdPartyNotices.txt",
  6752. "dotnet_library_license.txt",
  6753. "lib/MonoAndroid10/_._",
  6754. "lib/MonoTouch10/_._",
  6755. "lib/net45/_._",
  6756. "lib/netcore50/System.Runtime.Numerics.dll",
  6757. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6758. "lib/portable-net45+win8+wpa81/_._",
  6759. "lib/win8/_._",
  6760. "lib/wpa81/_._",
  6761. "lib/xamarinios10/_._",
  6762. "lib/xamarinmac20/_._",
  6763. "lib/xamarintvos10/_._",
  6764. "lib/xamarinwatchos10/_._",
  6765. "ref/MonoAndroid10/_._",
  6766. "ref/MonoTouch10/_._",
  6767. "ref/net45/_._",
  6768. "ref/netcore50/System.Runtime.Numerics.dll",
  6769. "ref/netcore50/System.Runtime.Numerics.xml",
  6770. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6771. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6772. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6773. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6774. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6775. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6776. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6777. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6778. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6779. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6780. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6781. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6782. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6783. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6784. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6785. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6786. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6787. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6788. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6789. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6790. "ref/portable-net45+win8+wpa81/_._",
  6791. "ref/win8/_._",
  6792. "ref/wpa81/_._",
  6793. "ref/xamarinios10/_._",
  6794. "ref/xamarinmac20/_._",
  6795. "ref/xamarintvos10/_._",
  6796. "ref/xamarinwatchos10/_._",
  6797. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6798. "system.runtime.numerics.nuspec"
  6799. ]
  6800. },
  6801. "System.Runtime.Serialization.Primitives/4.1.1": {
  6802. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  6803. "type": "package",
  6804. "path": "system.runtime.serialization.primitives/4.1.1",
  6805. "files": [
  6806. ".nupkg.metadata",
  6807. ".signature.p7s",
  6808. "ThirdPartyNotices.txt",
  6809. "dotnet_library_license.txt",
  6810. "lib/MonoAndroid10/_._",
  6811. "lib/MonoTouch10/_._",
  6812. "lib/net45/_._",
  6813. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6814. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6815. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6816. "lib/portable-net45+win8+wp8+wpa81/_._",
  6817. "lib/win8/_._",
  6818. "lib/wp80/_._",
  6819. "lib/wpa81/_._",
  6820. "lib/xamarinios10/_._",
  6821. "lib/xamarinmac20/_._",
  6822. "lib/xamarintvos10/_._",
  6823. "lib/xamarinwatchos10/_._",
  6824. "ref/MonoAndroid10/_._",
  6825. "ref/MonoTouch10/_._",
  6826. "ref/net45/_._",
  6827. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6828. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6829. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6830. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6831. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6832. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6833. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6834. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6835. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6836. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6837. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6838. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6839. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6840. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6841. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6842. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6843. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6844. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6845. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6846. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6847. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6848. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6849. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6850. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6851. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6852. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6853. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6854. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6855. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6856. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6857. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6858. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6859. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6860. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6861. "ref/portable-net45+win8+wp8+wpa81/_._",
  6862. "ref/win8/_._",
  6863. "ref/wp80/_._",
  6864. "ref/wpa81/_._",
  6865. "ref/xamarinios10/_._",
  6866. "ref/xamarinmac20/_._",
  6867. "ref/xamarintvos10/_._",
  6868. "ref/xamarinwatchos10/_._",
  6869. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6870. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  6871. "system.runtime.serialization.primitives.nuspec"
  6872. ]
  6873. },
  6874. "System.Security.AccessControl/5.0.0": {
  6875. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  6876. "type": "package",
  6877. "path": "system.security.accesscontrol/5.0.0",
  6878. "files": [
  6879. ".nupkg.metadata",
  6880. ".signature.p7s",
  6881. "Icon.png",
  6882. "LICENSE.TXT",
  6883. "THIRD-PARTY-NOTICES.TXT",
  6884. "lib/net46/System.Security.AccessControl.dll",
  6885. "lib/net461/System.Security.AccessControl.dll",
  6886. "lib/net461/System.Security.AccessControl.xml",
  6887. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6888. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6889. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6890. "lib/uap10.0.16299/_._",
  6891. "ref/net46/System.Security.AccessControl.dll",
  6892. "ref/net461/System.Security.AccessControl.dll",
  6893. "ref/net461/System.Security.AccessControl.xml",
  6894. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6895. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6896. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6897. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6898. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6899. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6900. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6901. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6902. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6903. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6904. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6905. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6906. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6907. "ref/uap10.0.16299/_._",
  6908. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6909. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6910. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6911. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6912. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6913. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6914. "runtimes/win/lib/uap10.0.16299/_._",
  6915. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  6916. "system.security.accesscontrol.nuspec",
  6917. "useSharedDesignerContext.txt",
  6918. "version.txt"
  6919. ]
  6920. },
  6921. "System.Security.Claims/4.3.0": {
  6922. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  6923. "type": "package",
  6924. "path": "system.security.claims/4.3.0",
  6925. "files": [
  6926. ".nupkg.metadata",
  6927. ".signature.p7s",
  6928. "ThirdPartyNotices.txt",
  6929. "dotnet_library_license.txt",
  6930. "lib/MonoAndroid10/_._",
  6931. "lib/MonoTouch10/_._",
  6932. "lib/net46/System.Security.Claims.dll",
  6933. "lib/netstandard1.3/System.Security.Claims.dll",
  6934. "lib/xamarinios10/_._",
  6935. "lib/xamarinmac20/_._",
  6936. "lib/xamarintvos10/_._",
  6937. "lib/xamarinwatchos10/_._",
  6938. "ref/MonoAndroid10/_._",
  6939. "ref/MonoTouch10/_._",
  6940. "ref/net46/System.Security.Claims.dll",
  6941. "ref/netstandard1.3/System.Security.Claims.dll",
  6942. "ref/netstandard1.3/System.Security.Claims.xml",
  6943. "ref/netstandard1.3/de/System.Security.Claims.xml",
  6944. "ref/netstandard1.3/es/System.Security.Claims.xml",
  6945. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  6946. "ref/netstandard1.3/it/System.Security.Claims.xml",
  6947. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  6948. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  6949. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  6950. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  6951. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  6952. "ref/xamarinios10/_._",
  6953. "ref/xamarinmac20/_._",
  6954. "ref/xamarintvos10/_._",
  6955. "ref/xamarinwatchos10/_._",
  6956. "system.security.claims.4.3.0.nupkg.sha512",
  6957. "system.security.claims.nuspec"
  6958. ]
  6959. },
  6960. "System.Security.Cryptography.Algorithms/4.3.0": {
  6961. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6962. "type": "package",
  6963. "path": "system.security.cryptography.algorithms/4.3.0",
  6964. "files": [
  6965. ".nupkg.metadata",
  6966. ".signature.p7s",
  6967. "ThirdPartyNotices.txt",
  6968. "dotnet_library_license.txt",
  6969. "lib/MonoAndroid10/_._",
  6970. "lib/MonoTouch10/_._",
  6971. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6972. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6973. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6974. "lib/xamarinios10/_._",
  6975. "lib/xamarinmac20/_._",
  6976. "lib/xamarintvos10/_._",
  6977. "lib/xamarinwatchos10/_._",
  6978. "ref/MonoAndroid10/_._",
  6979. "ref/MonoTouch10/_._",
  6980. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6981. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6982. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6983. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6984. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6985. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6986. "ref/xamarinios10/_._",
  6987. "ref/xamarinmac20/_._",
  6988. "ref/xamarintvos10/_._",
  6989. "ref/xamarinwatchos10/_._",
  6990. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6991. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6992. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6993. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6994. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6995. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6996. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6997. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6998. "system.security.cryptography.algorithms.nuspec"
  6999. ]
  7000. },
  7001. "System.Security.Cryptography.Cng/5.0.0": {
  7002. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  7003. "type": "package",
  7004. "path": "system.security.cryptography.cng/5.0.0",
  7005. "files": [
  7006. ".nupkg.metadata",
  7007. ".signature.p7s",
  7008. "Icon.png",
  7009. "LICENSE.TXT",
  7010. "THIRD-PARTY-NOTICES.TXT",
  7011. "lib/MonoAndroid10/_._",
  7012. "lib/MonoTouch10/_._",
  7013. "lib/net46/System.Security.Cryptography.Cng.dll",
  7014. "lib/net461/System.Security.Cryptography.Cng.dll",
  7015. "lib/net461/System.Security.Cryptography.Cng.xml",
  7016. "lib/net462/System.Security.Cryptography.Cng.dll",
  7017. "lib/net462/System.Security.Cryptography.Cng.xml",
  7018. "lib/net47/System.Security.Cryptography.Cng.dll",
  7019. "lib/net47/System.Security.Cryptography.Cng.xml",
  7020. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7021. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7022. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7023. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7024. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7025. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7026. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7027. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7028. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7029. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7030. "lib/uap10.0.16299/_._",
  7031. "lib/xamarinios10/_._",
  7032. "lib/xamarinmac20/_._",
  7033. "lib/xamarintvos10/_._",
  7034. "lib/xamarinwatchos10/_._",
  7035. "ref/MonoAndroid10/_._",
  7036. "ref/MonoTouch10/_._",
  7037. "ref/net46/System.Security.Cryptography.Cng.dll",
  7038. "ref/net461/System.Security.Cryptography.Cng.dll",
  7039. "ref/net461/System.Security.Cryptography.Cng.xml",
  7040. "ref/net462/System.Security.Cryptography.Cng.dll",
  7041. "ref/net462/System.Security.Cryptography.Cng.xml",
  7042. "ref/net47/System.Security.Cryptography.Cng.dll",
  7043. "ref/net47/System.Security.Cryptography.Cng.xml",
  7044. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7045. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7046. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7047. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7048. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7049. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7050. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7051. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7052. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7053. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7054. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7055. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7056. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7057. "ref/uap10.0.16299/_._",
  7058. "ref/xamarinios10/_._",
  7059. "ref/xamarinmac20/_._",
  7060. "ref/xamarintvos10/_._",
  7061. "ref/xamarinwatchos10/_._",
  7062. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7063. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7064. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  7065. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7066. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  7067. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7068. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  7069. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7070. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7071. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7072. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7073. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7074. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7075. "runtimes/win/lib/uap10.0.16299/_._",
  7076. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  7077. "system.security.cryptography.cng.nuspec",
  7078. "useSharedDesignerContext.txt",
  7079. "version.txt"
  7080. ]
  7081. },
  7082. "System.Security.Cryptography.Csp/4.3.0": {
  7083. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7084. "type": "package",
  7085. "path": "system.security.cryptography.csp/4.3.0",
  7086. "files": [
  7087. ".nupkg.metadata",
  7088. ".signature.p7s",
  7089. "ThirdPartyNotices.txt",
  7090. "dotnet_library_license.txt",
  7091. "lib/MonoAndroid10/_._",
  7092. "lib/MonoTouch10/_._",
  7093. "lib/net46/System.Security.Cryptography.Csp.dll",
  7094. "lib/xamarinios10/_._",
  7095. "lib/xamarinmac20/_._",
  7096. "lib/xamarintvos10/_._",
  7097. "lib/xamarinwatchos10/_._",
  7098. "ref/MonoAndroid10/_._",
  7099. "ref/MonoTouch10/_._",
  7100. "ref/net46/System.Security.Cryptography.Csp.dll",
  7101. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7102. "ref/xamarinios10/_._",
  7103. "ref/xamarinmac20/_._",
  7104. "ref/xamarintvos10/_._",
  7105. "ref/xamarinwatchos10/_._",
  7106. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7107. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7108. "runtimes/win/lib/netcore50/_._",
  7109. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7110. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7111. "system.security.cryptography.csp.nuspec"
  7112. ]
  7113. },
  7114. "System.Security.Cryptography.Encoding/4.3.0": {
  7115. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7116. "type": "package",
  7117. "path": "system.security.cryptography.encoding/4.3.0",
  7118. "files": [
  7119. ".nupkg.metadata",
  7120. ".signature.p7s",
  7121. "ThirdPartyNotices.txt",
  7122. "dotnet_library_license.txt",
  7123. "lib/MonoAndroid10/_._",
  7124. "lib/MonoTouch10/_._",
  7125. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7126. "lib/xamarinios10/_._",
  7127. "lib/xamarinmac20/_._",
  7128. "lib/xamarintvos10/_._",
  7129. "lib/xamarinwatchos10/_._",
  7130. "ref/MonoAndroid10/_._",
  7131. "ref/MonoTouch10/_._",
  7132. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7133. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7134. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7135. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7136. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7137. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7138. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7139. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7140. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7141. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7142. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7143. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7144. "ref/xamarinios10/_._",
  7145. "ref/xamarinmac20/_._",
  7146. "ref/xamarintvos10/_._",
  7147. "ref/xamarinwatchos10/_._",
  7148. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7149. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7150. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7151. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7152. "system.security.cryptography.encoding.nuspec"
  7153. ]
  7154. },
  7155. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7156. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7157. "type": "package",
  7158. "path": "system.security.cryptography.openssl/4.3.0",
  7159. "files": [
  7160. ".nupkg.metadata",
  7161. ".signature.p7s",
  7162. "ThirdPartyNotices.txt",
  7163. "dotnet_library_license.txt",
  7164. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7165. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7166. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7167. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7168. "system.security.cryptography.openssl.nuspec"
  7169. ]
  7170. },
  7171. "System.Security.Cryptography.Pkcs/5.0.0": {
  7172. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  7173. "type": "package",
  7174. "path": "system.security.cryptography.pkcs/5.0.0",
  7175. "files": [
  7176. ".nupkg.metadata",
  7177. ".signature.p7s",
  7178. "Icon.png",
  7179. "LICENSE.TXT",
  7180. "THIRD-PARTY-NOTICES.TXT",
  7181. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  7182. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7183. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7184. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7185. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7186. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7187. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7188. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7189. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7190. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7191. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7192. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  7193. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  7194. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  7195. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7196. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  7197. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7198. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7199. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7200. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7201. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7202. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7203. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7204. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  7205. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7206. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7207. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7208. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7209. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7210. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7211. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7212. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7213. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7214. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7215. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  7216. "system.security.cryptography.pkcs.nuspec",
  7217. "useSharedDesignerContext.txt",
  7218. "version.txt"
  7219. ]
  7220. },
  7221. "System.Security.Cryptography.Primitives/4.3.0": {
  7222. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7223. "type": "package",
  7224. "path": "system.security.cryptography.primitives/4.3.0",
  7225. "files": [
  7226. ".nupkg.metadata",
  7227. ".signature.p7s",
  7228. "ThirdPartyNotices.txt",
  7229. "dotnet_library_license.txt",
  7230. "lib/MonoAndroid10/_._",
  7231. "lib/MonoTouch10/_._",
  7232. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7233. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7234. "lib/xamarinios10/_._",
  7235. "lib/xamarinmac20/_._",
  7236. "lib/xamarintvos10/_._",
  7237. "lib/xamarinwatchos10/_._",
  7238. "ref/MonoAndroid10/_._",
  7239. "ref/MonoTouch10/_._",
  7240. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7241. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7242. "ref/xamarinios10/_._",
  7243. "ref/xamarinmac20/_._",
  7244. "ref/xamarintvos10/_._",
  7245. "ref/xamarinwatchos10/_._",
  7246. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7247. "system.security.cryptography.primitives.nuspec"
  7248. ]
  7249. },
  7250. "System.Security.Cryptography.X509Certificates/4.3.2": {
  7251. "sha512": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
  7252. "type": "package",
  7253. "path": "system.security.cryptography.x509certificates/4.3.2",
  7254. "files": [
  7255. ".nupkg.metadata",
  7256. ".signature.p7s",
  7257. "ThirdPartyNotices.txt",
  7258. "dotnet_library_license.txt",
  7259. "lib/MonoAndroid10/_._",
  7260. "lib/MonoTouch10/_._",
  7261. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7262. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7263. "lib/xamarinios10/_._",
  7264. "lib/xamarinmac20/_._",
  7265. "lib/xamarintvos10/_._",
  7266. "lib/xamarinwatchos10/_._",
  7267. "ref/MonoAndroid10/_._",
  7268. "ref/MonoTouch10/_._",
  7269. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7270. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7271. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7272. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7273. "ref/xamarinios10/_._",
  7274. "ref/xamarinmac20/_._",
  7275. "ref/xamarintvos10/_._",
  7276. "ref/xamarinwatchos10/_._",
  7277. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7278. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7279. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7280. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7281. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7282. "system.security.cryptography.x509certificates.4.3.2.nupkg.sha512",
  7283. "system.security.cryptography.x509certificates.nuspec"
  7284. ]
  7285. },
  7286. "System.Security.Principal/4.3.0": {
  7287. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  7288. "type": "package",
  7289. "path": "system.security.principal/4.3.0",
  7290. "files": [
  7291. ".nupkg.metadata",
  7292. ".signature.p7s",
  7293. "ThirdPartyNotices.txt",
  7294. "dotnet_library_license.txt",
  7295. "lib/MonoAndroid10/_._",
  7296. "lib/MonoTouch10/_._",
  7297. "lib/net45/_._",
  7298. "lib/netcore50/System.Security.Principal.dll",
  7299. "lib/netstandard1.0/System.Security.Principal.dll",
  7300. "lib/portable-net45+win8+wp8+wpa81/_._",
  7301. "lib/win8/_._",
  7302. "lib/wp80/_._",
  7303. "lib/wpa81/_._",
  7304. "lib/xamarinios10/_._",
  7305. "lib/xamarinmac20/_._",
  7306. "lib/xamarintvos10/_._",
  7307. "lib/xamarinwatchos10/_._",
  7308. "ref/MonoAndroid10/_._",
  7309. "ref/MonoTouch10/_._",
  7310. "ref/net45/_._",
  7311. "ref/netcore50/System.Security.Principal.dll",
  7312. "ref/netcore50/System.Security.Principal.xml",
  7313. "ref/netcore50/de/System.Security.Principal.xml",
  7314. "ref/netcore50/es/System.Security.Principal.xml",
  7315. "ref/netcore50/fr/System.Security.Principal.xml",
  7316. "ref/netcore50/it/System.Security.Principal.xml",
  7317. "ref/netcore50/ja/System.Security.Principal.xml",
  7318. "ref/netcore50/ko/System.Security.Principal.xml",
  7319. "ref/netcore50/ru/System.Security.Principal.xml",
  7320. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  7321. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  7322. "ref/netstandard1.0/System.Security.Principal.dll",
  7323. "ref/netstandard1.0/System.Security.Principal.xml",
  7324. "ref/netstandard1.0/de/System.Security.Principal.xml",
  7325. "ref/netstandard1.0/es/System.Security.Principal.xml",
  7326. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  7327. "ref/netstandard1.0/it/System.Security.Principal.xml",
  7328. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  7329. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  7330. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  7331. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  7332. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  7333. "ref/portable-net45+win8+wp8+wpa81/_._",
  7334. "ref/win8/_._",
  7335. "ref/wp80/_._",
  7336. "ref/wpa81/_._",
  7337. "ref/xamarinios10/_._",
  7338. "ref/xamarinmac20/_._",
  7339. "ref/xamarintvos10/_._",
  7340. "ref/xamarinwatchos10/_._",
  7341. "system.security.principal.4.3.0.nupkg.sha512",
  7342. "system.security.principal.nuspec"
  7343. ]
  7344. },
  7345. "System.Security.Principal.Windows/5.0.0": {
  7346. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7347. "type": "package",
  7348. "path": "system.security.principal.windows/5.0.0",
  7349. "files": [
  7350. ".nupkg.metadata",
  7351. ".signature.p7s",
  7352. "Icon.png",
  7353. "LICENSE.TXT",
  7354. "THIRD-PARTY-NOTICES.TXT",
  7355. "lib/net46/System.Security.Principal.Windows.dll",
  7356. "lib/net461/System.Security.Principal.Windows.dll",
  7357. "lib/net461/System.Security.Principal.Windows.xml",
  7358. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7359. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7360. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7361. "lib/uap10.0.16299/_._",
  7362. "ref/net46/System.Security.Principal.Windows.dll",
  7363. "ref/net461/System.Security.Principal.Windows.dll",
  7364. "ref/net461/System.Security.Principal.Windows.xml",
  7365. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7366. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7367. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7368. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7369. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7370. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7371. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7372. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7373. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7374. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7375. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7376. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7377. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7378. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7379. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7380. "ref/uap10.0.16299/_._",
  7381. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7382. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7383. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7384. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7385. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7386. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7387. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7388. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7389. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7390. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7391. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7392. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7393. "runtimes/win/lib/uap10.0.16299/_._",
  7394. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7395. "system.security.principal.windows.nuspec",
  7396. "useSharedDesignerContext.txt",
  7397. "version.txt"
  7398. ]
  7399. },
  7400. "System.Text.Encoding/4.3.0": {
  7401. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7402. "type": "package",
  7403. "path": "system.text.encoding/4.3.0",
  7404. "files": [
  7405. ".nupkg.metadata",
  7406. ".signature.p7s",
  7407. "ThirdPartyNotices.txt",
  7408. "dotnet_library_license.txt",
  7409. "lib/MonoAndroid10/_._",
  7410. "lib/MonoTouch10/_._",
  7411. "lib/net45/_._",
  7412. "lib/portable-net45+win8+wp8+wpa81/_._",
  7413. "lib/win8/_._",
  7414. "lib/wp80/_._",
  7415. "lib/wpa81/_._",
  7416. "lib/xamarinios10/_._",
  7417. "lib/xamarinmac20/_._",
  7418. "lib/xamarintvos10/_._",
  7419. "lib/xamarinwatchos10/_._",
  7420. "ref/MonoAndroid10/_._",
  7421. "ref/MonoTouch10/_._",
  7422. "ref/net45/_._",
  7423. "ref/netcore50/System.Text.Encoding.dll",
  7424. "ref/netcore50/System.Text.Encoding.xml",
  7425. "ref/netcore50/de/System.Text.Encoding.xml",
  7426. "ref/netcore50/es/System.Text.Encoding.xml",
  7427. "ref/netcore50/fr/System.Text.Encoding.xml",
  7428. "ref/netcore50/it/System.Text.Encoding.xml",
  7429. "ref/netcore50/ja/System.Text.Encoding.xml",
  7430. "ref/netcore50/ko/System.Text.Encoding.xml",
  7431. "ref/netcore50/ru/System.Text.Encoding.xml",
  7432. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7433. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7434. "ref/netstandard1.0/System.Text.Encoding.dll",
  7435. "ref/netstandard1.0/System.Text.Encoding.xml",
  7436. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7437. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7438. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7439. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7440. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7441. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7442. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7443. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7444. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7445. "ref/netstandard1.3/System.Text.Encoding.dll",
  7446. "ref/netstandard1.3/System.Text.Encoding.xml",
  7447. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7448. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7449. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7450. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7451. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7452. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7453. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7454. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7455. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7456. "ref/portable-net45+win8+wp8+wpa81/_._",
  7457. "ref/win8/_._",
  7458. "ref/wp80/_._",
  7459. "ref/wpa81/_._",
  7460. "ref/xamarinios10/_._",
  7461. "ref/xamarinmac20/_._",
  7462. "ref/xamarintvos10/_._",
  7463. "ref/xamarinwatchos10/_._",
  7464. "system.text.encoding.4.3.0.nupkg.sha512",
  7465. "system.text.encoding.nuspec"
  7466. ]
  7467. },
  7468. "System.Text.Encoding.CodePages/5.0.0": {
  7469. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  7470. "type": "package",
  7471. "path": "system.text.encoding.codepages/5.0.0",
  7472. "files": [
  7473. ".nupkg.metadata",
  7474. ".signature.p7s",
  7475. "Icon.png",
  7476. "LICENSE.TXT",
  7477. "THIRD-PARTY-NOTICES.TXT",
  7478. "lib/MonoAndroid10/_._",
  7479. "lib/MonoTouch10/_._",
  7480. "lib/net46/System.Text.Encoding.CodePages.dll",
  7481. "lib/net461/System.Text.Encoding.CodePages.dll",
  7482. "lib/net461/System.Text.Encoding.CodePages.xml",
  7483. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7484. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7485. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7486. "lib/xamarinios10/_._",
  7487. "lib/xamarinmac20/_._",
  7488. "lib/xamarintvos10/_._",
  7489. "lib/xamarinwatchos10/_._",
  7490. "ref/MonoAndroid10/_._",
  7491. "ref/MonoTouch10/_._",
  7492. "ref/xamarinios10/_._",
  7493. "ref/xamarinmac20/_._",
  7494. "ref/xamarintvos10/_._",
  7495. "ref/xamarinwatchos10/_._",
  7496. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7497. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7498. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7499. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7500. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7501. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7502. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7503. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  7504. "system.text.encoding.codepages.nuspec",
  7505. "useSharedDesignerContext.txt",
  7506. "version.txt"
  7507. ]
  7508. },
  7509. "System.Text.Encoding.Extensions/4.3.0": {
  7510. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7511. "type": "package",
  7512. "path": "system.text.encoding.extensions/4.3.0",
  7513. "files": [
  7514. ".nupkg.metadata",
  7515. ".signature.p7s",
  7516. "ThirdPartyNotices.txt",
  7517. "dotnet_library_license.txt",
  7518. "lib/MonoAndroid10/_._",
  7519. "lib/MonoTouch10/_._",
  7520. "lib/net45/_._",
  7521. "lib/portable-net45+win8+wp8+wpa81/_._",
  7522. "lib/win8/_._",
  7523. "lib/wp80/_._",
  7524. "lib/wpa81/_._",
  7525. "lib/xamarinios10/_._",
  7526. "lib/xamarinmac20/_._",
  7527. "lib/xamarintvos10/_._",
  7528. "lib/xamarinwatchos10/_._",
  7529. "ref/MonoAndroid10/_._",
  7530. "ref/MonoTouch10/_._",
  7531. "ref/net45/_._",
  7532. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7533. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7534. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7535. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7536. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7537. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7538. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7539. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7540. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7541. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7542. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7543. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7544. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7545. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7546. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7547. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7548. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7549. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7550. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7551. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7552. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7553. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7554. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7555. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7556. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7557. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7558. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7559. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7560. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7561. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7562. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7563. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7564. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7565. "ref/portable-net45+win8+wp8+wpa81/_._",
  7566. "ref/win8/_._",
  7567. "ref/wp80/_._",
  7568. "ref/wpa81/_._",
  7569. "ref/xamarinios10/_._",
  7570. "ref/xamarinmac20/_._",
  7571. "ref/xamarintvos10/_._",
  7572. "ref/xamarinwatchos10/_._",
  7573. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7574. "system.text.encoding.extensions.nuspec"
  7575. ]
  7576. },
  7577. "System.Text.Json/4.7.2": {
  7578. "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
  7579. "type": "package",
  7580. "path": "system.text.json/4.7.2",
  7581. "files": [
  7582. ".nupkg.metadata",
  7583. ".signature.p7s",
  7584. "Icon.png",
  7585. "LICENSE.TXT",
  7586. "THIRD-PARTY-NOTICES.TXT",
  7587. "lib/net461/System.Text.Json.dll",
  7588. "lib/net461/System.Text.Json.xml",
  7589. "lib/netcoreapp3.0/System.Text.Json.dll",
  7590. "lib/netcoreapp3.0/System.Text.Json.xml",
  7591. "lib/netstandard2.0/System.Text.Json.dll",
  7592. "lib/netstandard2.0/System.Text.Json.xml",
  7593. "system.text.json.4.7.2.nupkg.sha512",
  7594. "system.text.json.nuspec",
  7595. "useSharedDesignerContext.txt",
  7596. "version.txt"
  7597. ]
  7598. },
  7599. "System.Text.RegularExpressions/4.3.0": {
  7600. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7601. "type": "package",
  7602. "path": "system.text.regularexpressions/4.3.0",
  7603. "files": [
  7604. ".nupkg.metadata",
  7605. ".signature.p7s",
  7606. "ThirdPartyNotices.txt",
  7607. "dotnet_library_license.txt",
  7608. "lib/MonoAndroid10/_._",
  7609. "lib/MonoTouch10/_._",
  7610. "lib/net45/_._",
  7611. "lib/net463/System.Text.RegularExpressions.dll",
  7612. "lib/netcore50/System.Text.RegularExpressions.dll",
  7613. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7614. "lib/portable-net45+win8+wp8+wpa81/_._",
  7615. "lib/win8/_._",
  7616. "lib/wp80/_._",
  7617. "lib/wpa81/_._",
  7618. "lib/xamarinios10/_._",
  7619. "lib/xamarinmac20/_._",
  7620. "lib/xamarintvos10/_._",
  7621. "lib/xamarinwatchos10/_._",
  7622. "ref/MonoAndroid10/_._",
  7623. "ref/MonoTouch10/_._",
  7624. "ref/net45/_._",
  7625. "ref/net463/System.Text.RegularExpressions.dll",
  7626. "ref/netcore50/System.Text.RegularExpressions.dll",
  7627. "ref/netcore50/System.Text.RegularExpressions.xml",
  7628. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7629. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7630. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7631. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7632. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7633. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7634. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7635. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7636. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7637. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7638. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7639. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7640. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7641. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7642. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7643. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7644. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7645. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7646. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7647. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7648. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7649. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7650. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7651. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7652. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7653. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7654. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7655. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7656. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7657. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7658. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7659. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7660. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7661. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7662. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7663. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7664. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7665. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7666. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7667. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7668. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7669. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7670. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7671. "ref/portable-net45+win8+wp8+wpa81/_._",
  7672. "ref/win8/_._",
  7673. "ref/wp80/_._",
  7674. "ref/wpa81/_._",
  7675. "ref/xamarinios10/_._",
  7676. "ref/xamarinmac20/_._",
  7677. "ref/xamarintvos10/_._",
  7678. "ref/xamarinwatchos10/_._",
  7679. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7680. "system.text.regularexpressions.nuspec"
  7681. ]
  7682. },
  7683. "System.Threading/4.3.0": {
  7684. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7685. "type": "package",
  7686. "path": "system.threading/4.3.0",
  7687. "files": [
  7688. ".nupkg.metadata",
  7689. ".signature.p7s",
  7690. "ThirdPartyNotices.txt",
  7691. "dotnet_library_license.txt",
  7692. "lib/MonoAndroid10/_._",
  7693. "lib/MonoTouch10/_._",
  7694. "lib/net45/_._",
  7695. "lib/netcore50/System.Threading.dll",
  7696. "lib/netstandard1.3/System.Threading.dll",
  7697. "lib/portable-net45+win8+wp8+wpa81/_._",
  7698. "lib/win8/_._",
  7699. "lib/wp80/_._",
  7700. "lib/wpa81/_._",
  7701. "lib/xamarinios10/_._",
  7702. "lib/xamarinmac20/_._",
  7703. "lib/xamarintvos10/_._",
  7704. "lib/xamarinwatchos10/_._",
  7705. "ref/MonoAndroid10/_._",
  7706. "ref/MonoTouch10/_._",
  7707. "ref/net45/_._",
  7708. "ref/netcore50/System.Threading.dll",
  7709. "ref/netcore50/System.Threading.xml",
  7710. "ref/netcore50/de/System.Threading.xml",
  7711. "ref/netcore50/es/System.Threading.xml",
  7712. "ref/netcore50/fr/System.Threading.xml",
  7713. "ref/netcore50/it/System.Threading.xml",
  7714. "ref/netcore50/ja/System.Threading.xml",
  7715. "ref/netcore50/ko/System.Threading.xml",
  7716. "ref/netcore50/ru/System.Threading.xml",
  7717. "ref/netcore50/zh-hans/System.Threading.xml",
  7718. "ref/netcore50/zh-hant/System.Threading.xml",
  7719. "ref/netstandard1.0/System.Threading.dll",
  7720. "ref/netstandard1.0/System.Threading.xml",
  7721. "ref/netstandard1.0/de/System.Threading.xml",
  7722. "ref/netstandard1.0/es/System.Threading.xml",
  7723. "ref/netstandard1.0/fr/System.Threading.xml",
  7724. "ref/netstandard1.0/it/System.Threading.xml",
  7725. "ref/netstandard1.0/ja/System.Threading.xml",
  7726. "ref/netstandard1.0/ko/System.Threading.xml",
  7727. "ref/netstandard1.0/ru/System.Threading.xml",
  7728. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7729. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7730. "ref/netstandard1.3/System.Threading.dll",
  7731. "ref/netstandard1.3/System.Threading.xml",
  7732. "ref/netstandard1.3/de/System.Threading.xml",
  7733. "ref/netstandard1.3/es/System.Threading.xml",
  7734. "ref/netstandard1.3/fr/System.Threading.xml",
  7735. "ref/netstandard1.3/it/System.Threading.xml",
  7736. "ref/netstandard1.3/ja/System.Threading.xml",
  7737. "ref/netstandard1.3/ko/System.Threading.xml",
  7738. "ref/netstandard1.3/ru/System.Threading.xml",
  7739. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7740. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7741. "ref/portable-net45+win8+wp8+wpa81/_._",
  7742. "ref/win8/_._",
  7743. "ref/wp80/_._",
  7744. "ref/wpa81/_._",
  7745. "ref/xamarinios10/_._",
  7746. "ref/xamarinmac20/_._",
  7747. "ref/xamarintvos10/_._",
  7748. "ref/xamarinwatchos10/_._",
  7749. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7750. "system.threading.4.3.0.nupkg.sha512",
  7751. "system.threading.nuspec"
  7752. ]
  7753. },
  7754. "System.Threading.Tasks/4.3.0": {
  7755. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7756. "type": "package",
  7757. "path": "system.threading.tasks/4.3.0",
  7758. "files": [
  7759. ".nupkg.metadata",
  7760. ".signature.p7s",
  7761. "ThirdPartyNotices.txt",
  7762. "dotnet_library_license.txt",
  7763. "lib/MonoAndroid10/_._",
  7764. "lib/MonoTouch10/_._",
  7765. "lib/net45/_._",
  7766. "lib/portable-net45+win8+wp8+wpa81/_._",
  7767. "lib/win8/_._",
  7768. "lib/wp80/_._",
  7769. "lib/wpa81/_._",
  7770. "lib/xamarinios10/_._",
  7771. "lib/xamarinmac20/_._",
  7772. "lib/xamarintvos10/_._",
  7773. "lib/xamarinwatchos10/_._",
  7774. "ref/MonoAndroid10/_._",
  7775. "ref/MonoTouch10/_._",
  7776. "ref/net45/_._",
  7777. "ref/netcore50/System.Threading.Tasks.dll",
  7778. "ref/netcore50/System.Threading.Tasks.xml",
  7779. "ref/netcore50/de/System.Threading.Tasks.xml",
  7780. "ref/netcore50/es/System.Threading.Tasks.xml",
  7781. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7782. "ref/netcore50/it/System.Threading.Tasks.xml",
  7783. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7784. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7785. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7786. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7787. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7788. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7789. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7790. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7791. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7792. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7793. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7794. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7795. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7796. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7797. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7798. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7799. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7800. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7801. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7802. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7803. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7804. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7805. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7806. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7807. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7808. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7809. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7810. "ref/portable-net45+win8+wp8+wpa81/_._",
  7811. "ref/win8/_._",
  7812. "ref/wp80/_._",
  7813. "ref/wpa81/_._",
  7814. "ref/xamarinios10/_._",
  7815. "ref/xamarinmac20/_._",
  7816. "ref/xamarintvos10/_._",
  7817. "ref/xamarinwatchos10/_._",
  7818. "system.threading.tasks.4.3.0.nupkg.sha512",
  7819. "system.threading.tasks.nuspec"
  7820. ]
  7821. },
  7822. "System.Threading.Tasks.Extensions/4.5.2": {
  7823. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  7824. "type": "package",
  7825. "path": "system.threading.tasks.extensions/4.5.2",
  7826. "files": [
  7827. ".nupkg.metadata",
  7828. ".signature.p7s",
  7829. "LICENSE.TXT",
  7830. "THIRD-PARTY-NOTICES.TXT",
  7831. "lib/MonoAndroid10/_._",
  7832. "lib/MonoTouch10/_._",
  7833. "lib/netcoreapp2.1/_._",
  7834. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7835. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7836. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  7837. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  7838. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7839. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7840. "lib/xamarinios10/_._",
  7841. "lib/xamarinmac20/_._",
  7842. "lib/xamarintvos10/_._",
  7843. "lib/xamarinwatchos10/_._",
  7844. "ref/MonoAndroid10/_._",
  7845. "ref/MonoTouch10/_._",
  7846. "ref/netcoreapp2.1/_._",
  7847. "ref/xamarinios10/_._",
  7848. "ref/xamarinmac20/_._",
  7849. "ref/xamarintvos10/_._",
  7850. "ref/xamarinwatchos10/_._",
  7851. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  7852. "system.threading.tasks.extensions.nuspec",
  7853. "useSharedDesignerContext.txt",
  7854. "version.txt"
  7855. ]
  7856. },
  7857. "System.Threading.Timer/4.0.1": {
  7858. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  7859. "type": "package",
  7860. "path": "system.threading.timer/4.0.1",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. "ThirdPartyNotices.txt",
  7864. "dotnet_library_license.txt",
  7865. "lib/MonoAndroid10/_._",
  7866. "lib/MonoTouch10/_._",
  7867. "lib/net451/_._",
  7868. "lib/portable-net451+win81+wpa81/_._",
  7869. "lib/win81/_._",
  7870. "lib/wpa81/_._",
  7871. "lib/xamarinios10/_._",
  7872. "lib/xamarinmac20/_._",
  7873. "lib/xamarintvos10/_._",
  7874. "lib/xamarinwatchos10/_._",
  7875. "ref/MonoAndroid10/_._",
  7876. "ref/MonoTouch10/_._",
  7877. "ref/net451/_._",
  7878. "ref/netcore50/System.Threading.Timer.dll",
  7879. "ref/netcore50/System.Threading.Timer.xml",
  7880. "ref/netcore50/de/System.Threading.Timer.xml",
  7881. "ref/netcore50/es/System.Threading.Timer.xml",
  7882. "ref/netcore50/fr/System.Threading.Timer.xml",
  7883. "ref/netcore50/it/System.Threading.Timer.xml",
  7884. "ref/netcore50/ja/System.Threading.Timer.xml",
  7885. "ref/netcore50/ko/System.Threading.Timer.xml",
  7886. "ref/netcore50/ru/System.Threading.Timer.xml",
  7887. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7888. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7889. "ref/netstandard1.2/System.Threading.Timer.dll",
  7890. "ref/netstandard1.2/System.Threading.Timer.xml",
  7891. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7892. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7893. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7894. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7895. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7896. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7897. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7898. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7899. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7900. "ref/portable-net451+win81+wpa81/_._",
  7901. "ref/win81/_._",
  7902. "ref/wpa81/_._",
  7903. "ref/xamarinios10/_._",
  7904. "ref/xamarinmac20/_._",
  7905. "ref/xamarintvos10/_._",
  7906. "ref/xamarinwatchos10/_._",
  7907. "system.threading.timer.4.0.1.nupkg.sha512",
  7908. "system.threading.timer.nuspec"
  7909. ]
  7910. },
  7911. "System.Xml.ReaderWriter/4.3.0": {
  7912. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7913. "type": "package",
  7914. "path": "system.xml.readerwriter/4.3.0",
  7915. "files": [
  7916. ".nupkg.metadata",
  7917. ".signature.p7s",
  7918. "ThirdPartyNotices.txt",
  7919. "dotnet_library_license.txt",
  7920. "lib/MonoAndroid10/_._",
  7921. "lib/MonoTouch10/_._",
  7922. "lib/net45/_._",
  7923. "lib/net46/System.Xml.ReaderWriter.dll",
  7924. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7925. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7926. "lib/portable-net45+win8+wp8+wpa81/_._",
  7927. "lib/win8/_._",
  7928. "lib/wp80/_._",
  7929. "lib/wpa81/_._",
  7930. "lib/xamarinios10/_._",
  7931. "lib/xamarinmac20/_._",
  7932. "lib/xamarintvos10/_._",
  7933. "lib/xamarinwatchos10/_._",
  7934. "ref/MonoAndroid10/_._",
  7935. "ref/MonoTouch10/_._",
  7936. "ref/net45/_._",
  7937. "ref/net46/System.Xml.ReaderWriter.dll",
  7938. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7939. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7940. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7941. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7942. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7943. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7944. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7945. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7946. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7947. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7948. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7949. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7950. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7951. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7952. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7953. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7954. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7955. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7956. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7957. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7958. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7959. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7960. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7961. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7962. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7963. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7964. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7965. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7966. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7967. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7968. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7969. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7970. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7971. "ref/portable-net45+win8+wp8+wpa81/_._",
  7972. "ref/win8/_._",
  7973. "ref/wp80/_._",
  7974. "ref/wpa81/_._",
  7975. "ref/xamarinios10/_._",
  7976. "ref/xamarinmac20/_._",
  7977. "ref/xamarintvos10/_._",
  7978. "ref/xamarinwatchos10/_._",
  7979. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7980. "system.xml.readerwriter.nuspec"
  7981. ]
  7982. },
  7983. "System.Xml.XDocument/4.0.11": {
  7984. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  7985. "type": "package",
  7986. "path": "system.xml.xdocument/4.0.11",
  7987. "files": [
  7988. ".nupkg.metadata",
  7989. "ThirdPartyNotices.txt",
  7990. "dotnet_library_license.txt",
  7991. "lib/MonoAndroid10/_._",
  7992. "lib/MonoTouch10/_._",
  7993. "lib/net45/_._",
  7994. "lib/netcore50/System.Xml.XDocument.dll",
  7995. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7996. "lib/portable-net45+win8+wp8+wpa81/_._",
  7997. "lib/win8/_._",
  7998. "lib/wp80/_._",
  7999. "lib/wpa81/_._",
  8000. "lib/xamarinios10/_._",
  8001. "lib/xamarinmac20/_._",
  8002. "lib/xamarintvos10/_._",
  8003. "lib/xamarinwatchos10/_._",
  8004. "ref/MonoAndroid10/_._",
  8005. "ref/MonoTouch10/_._",
  8006. "ref/net45/_._",
  8007. "ref/netcore50/System.Xml.XDocument.dll",
  8008. "ref/netcore50/System.Xml.XDocument.xml",
  8009. "ref/netcore50/de/System.Xml.XDocument.xml",
  8010. "ref/netcore50/es/System.Xml.XDocument.xml",
  8011. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8012. "ref/netcore50/it/System.Xml.XDocument.xml",
  8013. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8014. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8015. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8016. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8017. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8018. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8019. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8020. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8021. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8022. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8023. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8024. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8025. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8026. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8027. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8028. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8029. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8030. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8031. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8032. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8033. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8034. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8035. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8036. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8037. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8040. "ref/portable-net45+win8+wp8+wpa81/_._",
  8041. "ref/win8/_._",
  8042. "ref/wp80/_._",
  8043. "ref/wpa81/_._",
  8044. "ref/xamarinios10/_._",
  8045. "ref/xamarinmac20/_._",
  8046. "ref/xamarintvos10/_._",
  8047. "ref/xamarinwatchos10/_._",
  8048. "system.xml.xdocument.4.0.11.nupkg.sha512",
  8049. "system.xml.xdocument.nuspec"
  8050. ]
  8051. },
  8052. "System.Xml.XmlDocument/4.3.0": {
  8053. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8054. "type": "package",
  8055. "path": "system.xml.xmldocument/4.3.0",
  8056. "files": [
  8057. ".nupkg.metadata",
  8058. ".signature.p7s",
  8059. "ThirdPartyNotices.txt",
  8060. "dotnet_library_license.txt",
  8061. "lib/MonoAndroid10/_._",
  8062. "lib/MonoTouch10/_._",
  8063. "lib/net46/System.Xml.XmlDocument.dll",
  8064. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8065. "lib/xamarinios10/_._",
  8066. "lib/xamarinmac20/_._",
  8067. "lib/xamarintvos10/_._",
  8068. "lib/xamarinwatchos10/_._",
  8069. "ref/MonoAndroid10/_._",
  8070. "ref/MonoTouch10/_._",
  8071. "ref/net46/System.Xml.XmlDocument.dll",
  8072. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8073. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8074. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8075. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8076. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8077. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8078. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8079. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8080. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8081. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8082. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8083. "ref/xamarinios10/_._",
  8084. "ref/xamarinmac20/_._",
  8085. "ref/xamarintvos10/_._",
  8086. "ref/xamarinwatchos10/_._",
  8087. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8088. "system.xml.xmldocument.nuspec"
  8089. ]
  8090. },
  8091. "System.Xml.XPath/4.3.0": {
  8092. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  8093. "type": "package",
  8094. "path": "system.xml.xpath/4.3.0",
  8095. "files": [
  8096. ".nupkg.metadata",
  8097. ".signature.p7s",
  8098. "ThirdPartyNotices.txt",
  8099. "dotnet_library_license.txt",
  8100. "lib/MonoAndroid10/_._",
  8101. "lib/MonoTouch10/_._",
  8102. "lib/net46/System.Xml.XPath.dll",
  8103. "lib/netstandard1.3/System.Xml.XPath.dll",
  8104. "lib/xamarinios10/_._",
  8105. "lib/xamarinmac20/_._",
  8106. "lib/xamarintvos10/_._",
  8107. "lib/xamarinwatchos10/_._",
  8108. "ref/MonoAndroid10/_._",
  8109. "ref/MonoTouch10/_._",
  8110. "ref/net46/System.Xml.XPath.dll",
  8111. "ref/netstandard1.3/System.Xml.XPath.dll",
  8112. "ref/netstandard1.3/System.Xml.XPath.xml",
  8113. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8114. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8115. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8116. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8117. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8118. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8119. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8120. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8121. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8122. "ref/xamarinios10/_._",
  8123. "ref/xamarinmac20/_._",
  8124. "ref/xamarintvos10/_._",
  8125. "ref/xamarinwatchos10/_._",
  8126. "system.xml.xpath.4.3.0.nupkg.sha512",
  8127. "system.xml.xpath.nuspec"
  8128. ]
  8129. },
  8130. "System.Xml.XPath.XmlDocument/4.3.0": {
  8131. "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
  8132. "type": "package",
  8133. "path": "system.xml.xpath.xmldocument/4.3.0",
  8134. "files": [
  8135. ".nupkg.metadata",
  8136. ".signature.p7s",
  8137. "ThirdPartyNotices.txt",
  8138. "dotnet_library_license.txt",
  8139. "lib/MonoAndroid10/_._",
  8140. "lib/MonoTouch10/_._",
  8141. "lib/net46/System.Xml.XPath.XmlDocument.dll",
  8142. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8143. "lib/xamarinios10/_._",
  8144. "lib/xamarinmac20/_._",
  8145. "lib/xamarintvos10/_._",
  8146. "lib/xamarinwatchos10/_._",
  8147. "ref/MonoAndroid10/_._",
  8148. "ref/MonoTouch10/_._",
  8149. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8150. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  8151. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  8152. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  8153. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  8154. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  8155. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  8156. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  8157. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  8158. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  8159. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  8160. "ref/xamarinios10/_._",
  8161. "ref/xamarinmac20/_._",
  8162. "ref/xamarintvos10/_._",
  8163. "ref/xamarinwatchos10/_._",
  8164. "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
  8165. "system.xml.xpath.xmldocument.nuspec"
  8166. ]
  8167. },
  8168. "Unity.Abstractions/5.11.7": {
  8169. "sha512": "3ztwGEpe35UJlCUswXoi4uVDp8bJsgPsOmO71nZnNXh51II7t54AbezDbS6sR2z4QnMOpNGDaXbsEkyg6dIfOQ==",
  8170. "type": "package",
  8171. "path": "unity.abstractions/5.11.7",
  8172. "files": [
  8173. ".nupkg.metadata",
  8174. ".signature.p7s",
  8175. "lib/net40/Unity.Abstractions.dll",
  8176. "lib/net40/Unity.Abstractions.pdb",
  8177. "lib/net45/Unity.Abstractions.dll",
  8178. "lib/net45/Unity.Abstractions.pdb",
  8179. "lib/net46/Unity.Abstractions.dll",
  8180. "lib/net46/Unity.Abstractions.pdb",
  8181. "lib/net47/Unity.Abstractions.dll",
  8182. "lib/net47/Unity.Abstractions.pdb",
  8183. "lib/net48/Unity.Abstractions.dll",
  8184. "lib/net48/Unity.Abstractions.pdb",
  8185. "lib/netcoreapp1.0/Unity.Abstractions.dll",
  8186. "lib/netcoreapp1.0/Unity.Abstractions.pdb",
  8187. "lib/netcoreapp2.0/Unity.Abstractions.dll",
  8188. "lib/netcoreapp2.0/Unity.Abstractions.pdb",
  8189. "lib/netcoreapp3.0/Unity.Abstractions.dll",
  8190. "lib/netcoreapp3.0/Unity.Abstractions.pdb",
  8191. "lib/netstandard1.0/Unity.Abstractions.dll",
  8192. "lib/netstandard1.0/Unity.Abstractions.pdb",
  8193. "lib/netstandard2.0/Unity.Abstractions.dll",
  8194. "lib/netstandard2.0/Unity.Abstractions.pdb",
  8195. "unity.abstractions.5.11.7.nupkg.sha512",
  8196. "unity.abstractions.nuspec"
  8197. ]
  8198. },
  8199. "Unity.Container/5.11.11": {
  8200. "sha512": "47u4MBG8hxV2ZBUK7LlXcZQW8yWSqUSCRG+2/TBA2CSkxkQlMfVUJ0RJODJsZgsiSgy4N0M8HIr7J88drYR/OQ==",
  8201. "type": "package",
  8202. "path": "unity.container/5.11.11",
  8203. "files": [
  8204. ".nupkg.metadata",
  8205. ".signature.p7s",
  8206. "lib/net40/Unity.Container.dll",
  8207. "lib/net40/Unity.Container.pdb",
  8208. "lib/net45/Unity.Container.dll",
  8209. "lib/net45/Unity.Container.pdb",
  8210. "lib/net46/Unity.Container.dll",
  8211. "lib/net46/Unity.Container.pdb",
  8212. "lib/net47/Unity.Container.dll",
  8213. "lib/net47/Unity.Container.pdb",
  8214. "lib/net48/Unity.Container.dll",
  8215. "lib/net48/Unity.Container.pdb",
  8216. "lib/netcoreapp1.0/Unity.Container.dll",
  8217. "lib/netcoreapp1.0/Unity.Container.pdb",
  8218. "lib/netcoreapp2.0/Unity.Container.dll",
  8219. "lib/netcoreapp2.0/Unity.Container.pdb",
  8220. "lib/netcoreapp3.0/Unity.Container.dll",
  8221. "lib/netcoreapp3.0/Unity.Container.pdb",
  8222. "lib/netstandard1.0/Unity.Container.dll",
  8223. "lib/netstandard1.0/Unity.Container.pdb",
  8224. "lib/netstandard2.0/Unity.Container.dll",
  8225. "lib/netstandard2.0/Unity.Container.pdb",
  8226. "unity.container.5.11.11.nupkg.sha512",
  8227. "unity.container.nuspec"
  8228. ]
  8229. },
  8230. "Unity.Interception/5.11.1": {
  8231. "sha512": "q2SDcnfy3q6NrYANnV0E2XFPPQ9L+k+Rk3iztJF4vH5QPOeWQ8ooX26BbACPj5DAKUkUMeAdUdiobDkcpFZjBg==",
  8232. "type": "package",
  8233. "path": "unity.interception/5.11.1",
  8234. "files": [
  8235. ".nupkg.metadata",
  8236. ".signature.p7s",
  8237. "lib/net45/Unity.Interception.dll",
  8238. "lib/net45/Unity.Interception.pdb",
  8239. "lib/net46/Unity.Interception.dll",
  8240. "lib/net46/Unity.Interception.pdb",
  8241. "lib/net47/Unity.Interception.dll",
  8242. "lib/net47/Unity.Interception.pdb",
  8243. "lib/netcoreapp2.0/Unity.Interception.dll",
  8244. "lib/netcoreapp2.0/Unity.Interception.pdb",
  8245. "lib/netstandard2.0/Unity.Interception.dll",
  8246. "lib/netstandard2.0/Unity.Interception.pdb",
  8247. "unity.interception.5.11.1.nupkg.sha512",
  8248. "unity.interception.nuspec"
  8249. ]
  8250. },
  8251. "YamlDotNet/11.2.1": {
  8252. "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==",
  8253. "type": "package",
  8254. "path": "yamldotnet/11.2.1",
  8255. "files": [
  8256. ".nupkg.metadata",
  8257. ".signature.p7s",
  8258. "LICENSE.txt",
  8259. "images/yamldotnet.png",
  8260. "lib/net20/YamlDotNet.dll",
  8261. "lib/net20/YamlDotNet.xml",
  8262. "lib/net35-client/YamlDotNet.dll",
  8263. "lib/net35-client/YamlDotNet.xml",
  8264. "lib/net35/YamlDotNet.dll",
  8265. "lib/net35/YamlDotNet.xml",
  8266. "lib/net45/YamlDotNet.dll",
  8267. "lib/net45/YamlDotNet.xml",
  8268. "lib/netstandard1.3/YamlDotNet.dll",
  8269. "lib/netstandard1.3/YamlDotNet.xml",
  8270. "lib/netstandard2.1/YamlDotNet.dll",
  8271. "lib/netstandard2.1/YamlDotNet.xml",
  8272. "yamldotnet.11.2.1.nupkg.sha512",
  8273. "yamldotnet.nuspec"
  8274. ]
  8275. },
  8276. "SHJX.Service.Model/1.0.0": {
  8277. "type": "project",
  8278. "path": "../SHJX.Service.Model/SHJX.Service.Model.csproj",
  8279. "msbuildProject": "../SHJX.Service.Model/SHJX.Service.Model.csproj"
  8280. },
  8281. "shjxCamera/1.0.0": {
  8282. "type": "project",
  8283. "path": "../SHJXCamera/SHJXCamera/shjxCamera.csproj",
  8284. "msbuildProject": "../SHJXCamera/SHJXCamera/shjxCamera.csproj"
  8285. }
  8286. },
  8287. "projectFileDependencyGroups": {
  8288. "net6.0-windows7.0": [
  8289. "EPPlus >= 5.6.4",
  8290. "LiveCharts >= 0.9.7",
  8291. "LiveCharts.Wpf >= 0.9.7",
  8292. "MahApps.Metro >= 2.4.5",
  8293. "Microsoft.Data.Sqlite.Core >= 5.0.6",
  8294. "Microsoft.Extensions.Caching.Memory >= 5.0.0",
  8295. "Microsoft.Extensions.Configuration >= 5.0.0",
  8296. "Microsoft.Extensions.Hosting >= 5.0.0",
  8297. "Microsoft.Extensions.Logging >= 7.0.0",
  8298. "Microsoft.Extensions.Logging.Abstractions >= 7.0.0",
  8299. "Microsoft.Extensions.Logging.Console >= 5.0.0",
  8300. "Panuon.UI.Silver >= 1.1.3.4",
  8301. "Prism.Core >= 8.1.97",
  8302. "Prism.Unity >= 8.1.97",
  8303. "SHJX.Service.Model >= 1.0.0",
  8304. "Serilog >= 2.10.0",
  8305. "Serilog.Enrichers.Thread >= 3.1.0",
  8306. "Serilog.Extensions.Logging >= 3.0.1",
  8307. "Serilog.Formatting.Compact >= 1.1.0",
  8308. "Serilog.Settings.Configuration >= 3.1.0",
  8309. "Serilog.Sinks.Console >= 3.1.1",
  8310. "Serilog.Sinks.File >= 4.1.0",
  8311. "System.Data.SQLite.Core >= 1.0.114",
  8312. "System.Data.SqlClient >= 4.8.2",
  8313. "System.Drawing.Common >= 7.0.0",
  8314. "Unity.Interception >= 5.11.1",
  8315. "YamlDotNet >= 11.2.1",
  8316. "shjxCamera >= 1.0.0"
  8317. ]
  8318. },
  8319. "packageFolders": {
  8320. "C:\\Users\\25109\\.nuget\\packages\\": {}
  8321. },
  8322. "project": {
  8323. "version": "1.0.0",
  8324. "restore": {
  8325. "projectUniqueName": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj",
  8326. "projectName": "SHJX.Service.Common",
  8327. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj",
  8328. "packagesPath": "C:\\Users\\25109\\.nuget\\packages\\",
  8329. "outputPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\obj\\",
  8330. "projectStyle": "PackageReference",
  8331. "configFilePaths": [
  8332. "C:\\Users\\25109\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8333. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8334. ],
  8335. "originalTargetFrameworks": [
  8336. "net6.0-windows"
  8337. ],
  8338. "sources": {
  8339. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8340. "https://api.nuget.org/v3/index.json": {}
  8341. },
  8342. "frameworks": {
  8343. "net6.0-windows7.0": {
  8344. "targetAlias": "net6.0-windows",
  8345. "projectReferences": {
  8346. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Model\\SHJX.Service.Model.csproj": {
  8347. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Model\\SHJX.Service.Model.csproj"
  8348. },
  8349. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJXCamera\\SHJXCamera\\shjxCamera.csproj": {
  8350. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJXCamera\\SHJXCamera\\shjxCamera.csproj"
  8351. }
  8352. }
  8353. }
  8354. },
  8355. "warningProperties": {
  8356. "warnAsError": [
  8357. "NU1605"
  8358. ]
  8359. },
  8360. "restoreAuditProperties": {
  8361. "enableAudit": "true",
  8362. "auditLevel": "low",
  8363. "auditMode": "direct"
  8364. }
  8365. },
  8366. "frameworks": {
  8367. "net6.0-windows7.0": {
  8368. "targetAlias": "net6.0-windows",
  8369. "dependencies": {
  8370. "EPPlus": {
  8371. "target": "Package",
  8372. "version": "[5.6.4, )"
  8373. },
  8374. "LiveCharts": {
  8375. "target": "Package",
  8376. "version": "[0.9.7, )"
  8377. },
  8378. "LiveCharts.Wpf": {
  8379. "target": "Package",
  8380. "version": "[0.9.7, )"
  8381. },
  8382. "MahApps.Metro": {
  8383. "target": "Package",
  8384. "version": "[2.4.5, )"
  8385. },
  8386. "Microsoft.Data.Sqlite.Core": {
  8387. "target": "Package",
  8388. "version": "[5.0.6, )"
  8389. },
  8390. "Microsoft.Extensions.Caching.Memory": {
  8391. "target": "Package",
  8392. "version": "[5.0.0, )"
  8393. },
  8394. "Microsoft.Extensions.Configuration": {
  8395. "target": "Package",
  8396. "version": "[5.0.0, )"
  8397. },
  8398. "Microsoft.Extensions.Hosting": {
  8399. "target": "Package",
  8400. "version": "[5.0.0, )"
  8401. },
  8402. "Microsoft.Extensions.Logging": {
  8403. "target": "Package",
  8404. "version": "[7.0.0, )"
  8405. },
  8406. "Microsoft.Extensions.Logging.Abstractions": {
  8407. "target": "Package",
  8408. "version": "[7.0.0, )"
  8409. },
  8410. "Microsoft.Extensions.Logging.Console": {
  8411. "target": "Package",
  8412. "version": "[5.0.0, )"
  8413. },
  8414. "Panuon.UI.Silver": {
  8415. "target": "Package",
  8416. "version": "[1.1.3.4, )"
  8417. },
  8418. "Prism.Core": {
  8419. "target": "Package",
  8420. "version": "[8.1.97, )"
  8421. },
  8422. "Prism.Unity": {
  8423. "target": "Package",
  8424. "version": "[8.1.97, )"
  8425. },
  8426. "Serilog": {
  8427. "target": "Package",
  8428. "version": "[2.10.0, )"
  8429. },
  8430. "Serilog.Enrichers.Thread": {
  8431. "target": "Package",
  8432. "version": "[3.1.0, )"
  8433. },
  8434. "Serilog.Extensions.Logging": {
  8435. "target": "Package",
  8436. "version": "[3.0.1, )"
  8437. },
  8438. "Serilog.Formatting.Compact": {
  8439. "target": "Package",
  8440. "version": "[1.1.0, )"
  8441. },
  8442. "Serilog.Settings.Configuration": {
  8443. "target": "Package",
  8444. "version": "[3.1.0, )"
  8445. },
  8446. "Serilog.Sinks.Console": {
  8447. "target": "Package",
  8448. "version": "[3.1.1, )"
  8449. },
  8450. "Serilog.Sinks.File": {
  8451. "target": "Package",
  8452. "version": "[4.1.0, )"
  8453. },
  8454. "System.Data.SQLite.Core": {
  8455. "target": "Package",
  8456. "version": "[1.0.114, )"
  8457. },
  8458. "System.Data.SqlClient": {
  8459. "target": "Package",
  8460. "version": "[4.8.2, )"
  8461. },
  8462. "System.Drawing.Common": {
  8463. "target": "Package",
  8464. "version": "[7.0.0, )"
  8465. },
  8466. "Unity.Interception": {
  8467. "target": "Package",
  8468. "version": "[5.11.1, )"
  8469. },
  8470. "YamlDotNet": {
  8471. "target": "Package",
  8472. "version": "[11.2.1, )"
  8473. }
  8474. },
  8475. "imports": [
  8476. "net461",
  8477. "net462",
  8478. "net47",
  8479. "net471",
  8480. "net472",
  8481. "net48",
  8482. "net481"
  8483. ],
  8484. "assetTargetFallback": true,
  8485. "warn": true,
  8486. "downloadDependencies": [
  8487. {
  8488. "name": "Microsoft.AspNetCore.App.Ref",
  8489. "version": "[6.0.27, 6.0.27]"
  8490. },
  8491. {
  8492. "name": "Microsoft.NETCore.App.Ref",
  8493. "version": "[6.0.27, 6.0.27]"
  8494. },
  8495. {
  8496. "name": "Microsoft.WindowsDesktop.App.Ref",
  8497. "version": "[6.0.27, 6.0.27]"
  8498. }
  8499. ],
  8500. "frameworkReferences": {
  8501. "Microsoft.NETCore.App": {
  8502. "privateAssets": "all"
  8503. },
  8504. "Microsoft.WindowsDesktop.App.WPF": {
  8505. "privateAssets": "none"
  8506. }
  8507. },
  8508. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300-preview.24203.14\\RuntimeIdentifierGraph.json"
  8509. }
  8510. }
  8511. },
  8512. "logs": [
  8513. {
  8514. "code": "NU1902",
  8515. "level": "Warning",
  8516. "warningLevel": 1,
  8517. "message": "包 \"System.Data.SqlClient\" 4.8.2 具有已知的 中 严重性漏洞,https://github.com/advisories/GHSA-8g2p-5pqh-5jmc",
  8518. "libraryId": "System.Data.SqlClient",
  8519. "targetGraphs": [
  8520. "net6.0-windows7.0"
  8521. ]
  8522. },
  8523. {
  8524. "code": "NU1701",
  8525. "level": "Warning",
  8526. "warningLevel": 1,
  8527. "message": "已使用“.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1”而不是项目目标框架“net6.0-windows7.0”还原包“AForge 2.2.5”。此包可能与项目不完全兼容。",
  8528. "libraryId": "AForge",
  8529. "targetGraphs": [
  8530. "net6.0-windows7.0"
  8531. ]
  8532. },
  8533. {
  8534. "code": "NU1701",
  8535. "level": "Warning",
  8536. "warningLevel": 1,
  8537. "message": "已使用“.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1”而不是项目目标框架“net6.0-windows7.0”还原包“LiveCharts 0.9.7”。此包可能与项目不完全兼容。",
  8538. "libraryId": "LiveCharts",
  8539. "targetGraphs": [
  8540. "net6.0-windows7.0"
  8541. ]
  8542. },
  8543. {
  8544. "code": "NU1701",
  8545. "level": "Warning",
  8546. "warningLevel": 1,
  8547. "message": "已使用“.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1”而不是项目目标框架“net6.0-windows7.0”还原包“LiveCharts.Wpf 0.9.7”。此包可能与项目不完全兼容。",
  8548. "libraryId": "LiveCharts.Wpf",
  8549. "targetGraphs": [
  8550. "net6.0-windows7.0"
  8551. ]
  8552. }
  8553. ]
  8554. }