project.assets.json 421 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436
  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. "Autofac/6.3.0": {
  15. "type": "package",
  16. "dependencies": {
  17. "System.Diagnostics.DiagnosticSource": "4.7.1"
  18. },
  19. "compile": {
  20. "lib/net5.0/Autofac.dll": {
  21. "related": ".pdb;.xml"
  22. }
  23. },
  24. "runtime": {
  25. "lib/net5.0/Autofac.dll": {
  26. "related": ".pdb;.xml"
  27. }
  28. }
  29. },
  30. "Autofac.Extensions.DependencyInjection/7.2.0": {
  31. "type": "package",
  32. "dependencies": {
  33. "Autofac": "6.0.0",
  34. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  35. },
  36. "compile": {
  37. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  38. "related": ".pdb;.xml"
  39. }
  40. },
  41. "runtime": {
  42. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  43. "related": ".pdb;.xml"
  44. }
  45. }
  46. },
  47. "Autofac.Extras.DynamicProxy/6.0.0": {
  48. "type": "package",
  49. "dependencies": {
  50. "Autofac": "6.0.0",
  51. "Castle.Core": "4.4.0"
  52. },
  53. "compile": {
  54. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  55. "related": ".pdb;.xml"
  56. }
  57. },
  58. "runtime": {
  59. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  60. "related": ".pdb;.xml"
  61. }
  62. }
  63. },
  64. "BouncyCastle.NetCore/1.8.5": {
  65. "type": "package",
  66. "compile": {
  67. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  68. "related": ".xml"
  69. }
  70. },
  71. "runtime": {
  72. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  73. "related": ".xml"
  74. }
  75. }
  76. },
  77. "Castle.Core/4.4.1": {
  78. "type": "package",
  79. "dependencies": {
  80. "NETStandard.Library": "1.6.1",
  81. "System.Collections.Specialized": "4.3.0",
  82. "System.ComponentModel": "4.3.0",
  83. "System.ComponentModel.TypeConverter": "4.3.0",
  84. "System.Diagnostics.TraceSource": "4.3.0",
  85. "System.Dynamic.Runtime": "4.3.0",
  86. "System.Reflection": "4.3.0",
  87. "System.Reflection.Emit": "4.3.0",
  88. "System.Reflection.TypeExtensions": "4.3.0",
  89. "System.Xml.XmlDocument": "4.3.0"
  90. },
  91. "compile": {
  92. "lib/netstandard1.5/Castle.Core.dll": {
  93. "related": ".xml"
  94. }
  95. },
  96. "runtime": {
  97. "lib/netstandard1.5/Castle.Core.dll": {
  98. "related": ".xml"
  99. }
  100. }
  101. },
  102. "ControlzEx/4.4.0": {
  103. "type": "package",
  104. "dependencies": {
  105. "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
  106. "System.Text.Json": "4.7.2"
  107. },
  108. "compile": {
  109. "lib/netcoreapp3.1/ControlzEx.dll": {
  110. "related": ".pdb;.xml"
  111. }
  112. },
  113. "runtime": {
  114. "lib/netcoreapp3.1/ControlzEx.dll": {
  115. "related": ".pdb;.xml"
  116. }
  117. },
  118. "frameworkReferences": [
  119. "Microsoft.WindowsDesktop.App.WPF"
  120. ]
  121. },
  122. "Dapper/2.0.123": {
  123. "type": "package",
  124. "compile": {
  125. "lib/net5.0/Dapper.dll": {
  126. "related": ".xml"
  127. }
  128. },
  129. "runtime": {
  130. "lib/net5.0/Dapper.dll": {
  131. "related": ".xml"
  132. }
  133. }
  134. },
  135. "EaseDapper/0.1.4.18": {
  136. "type": "package",
  137. "dependencies": {
  138. "Dapper": "2.0.123",
  139. "Microsoft.Data.Sqlite.Core": "6.0.0",
  140. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  141. "MySql.Data": "8.0.27",
  142. "System.Data.SqlClient": "4.8.3"
  143. },
  144. "compile": {
  145. "lib/netcoreapp3.1/EaseDapper.dll": {}
  146. },
  147. "runtime": {
  148. "lib/netcoreapp3.1/EaseDapper.dll": {}
  149. }
  150. },
  151. "EaseScheduler/0.0.0.6": {
  152. "type": "package",
  153. "dependencies": {
  154. "Autofac": "6.2.0",
  155. "Prism.Core": "8.1.97"
  156. },
  157. "compile": {
  158. "lib/net6.0/EaseScheduler.dll": {}
  159. },
  160. "runtime": {
  161. "lib/net6.0/EaseScheduler.dll": {}
  162. }
  163. },
  164. "EPPlus/5.6.4": {
  165. "type": "package",
  166. "dependencies": {
  167. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  168. "Microsoft.IO.RecyclableMemoryStream": "1.4.1",
  169. "System.ComponentModel.Annotations": "5.0.0",
  170. "System.ComponentModel.TypeConverter": "4.3.0",
  171. "System.Data.Common": "4.3.0",
  172. "System.Drawing.Common": "5.0.0",
  173. "System.Reflection": "4.3.0",
  174. "System.Security.Claims": "4.3.0",
  175. "System.Security.Cryptography.Pkcs": "5.0.0",
  176. "System.Security.Cryptography.X509Certificates": "4.3.2",
  177. "System.Text.Encoding.CodePages": "5.0.0",
  178. "System.Xml.XPath.XmlDocument": "4.3.0",
  179. "System.Xml.XmlDocument": "4.3.0"
  180. },
  181. "compile": {
  182. "lib/net5.0/EPPlus.dll": {
  183. "related": ".xml"
  184. }
  185. },
  186. "runtime": {
  187. "lib/net5.0/EPPlus.dll": {
  188. "related": ".xml"
  189. }
  190. }
  191. },
  192. "Google.Protobuf/3.14.0": {
  193. "type": "package",
  194. "dependencies": {
  195. "System.Memory": "4.5.3",
  196. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/Google.Protobuf.dll": {
  200. "related": ".pdb;.xml"
  201. }
  202. },
  203. "runtime": {
  204. "lib/netstandard2.0/Google.Protobuf.dll": {
  205. "related": ".pdb;.xml"
  206. }
  207. }
  208. },
  209. "K4os.Compression.LZ4/1.2.6": {
  210. "type": "package",
  211. "dependencies": {
  212. "System.Memory": "4.5.4"
  213. },
  214. "compile": {
  215. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  216. "related": ".xml"
  217. }
  218. },
  219. "runtime": {
  220. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  221. "related": ".xml"
  222. }
  223. }
  224. },
  225. "K4os.Compression.LZ4.Streams/1.2.6": {
  226. "type": "package",
  227. "dependencies": {
  228. "K4os.Compression.LZ4": "1.2.6",
  229. "K4os.Hash.xxHash": "1.0.6"
  230. },
  231. "compile": {
  232. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  233. "related": ".xml"
  234. }
  235. },
  236. "runtime": {
  237. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  238. "related": ".xml"
  239. }
  240. }
  241. },
  242. "K4os.Hash.xxHash/1.0.6": {
  243. "type": "package",
  244. "dependencies": {
  245. "System.Memory": "4.5.3"
  246. },
  247. "compile": {
  248. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  249. "related": ".xml"
  250. }
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  254. "related": ".xml"
  255. }
  256. }
  257. },
  258. "LiveCharts/0.9.7": {
  259. "type": "package",
  260. "compile": {
  261. "lib/net45/LiveCharts.dll": {
  262. "related": ".pdb;.xml"
  263. }
  264. },
  265. "runtime": {
  266. "lib/net45/LiveCharts.dll": {
  267. "related": ".pdb;.xml"
  268. }
  269. }
  270. },
  271. "LiveCharts.Wpf/0.9.7": {
  272. "type": "package",
  273. "dependencies": {
  274. "LiveCharts": "0.9.7"
  275. },
  276. "compile": {
  277. "lib/net45/LiveCharts.Wpf.dll": {
  278. "related": ".pdb;.XML"
  279. }
  280. },
  281. "runtime": {
  282. "lib/net45/LiveCharts.Wpf.dll": {
  283. "related": ".pdb;.XML"
  284. }
  285. }
  286. },
  287. "MahApps.Metro/2.4.5": {
  288. "type": "package",
  289. "dependencies": {
  290. "ControlzEx": "4.4.0"
  291. },
  292. "compile": {
  293. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  294. "related": ".pdb;.xml"
  295. }
  296. },
  297. "runtime": {
  298. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  299. "related": ".pdb;.xml"
  300. }
  301. },
  302. "frameworkReferences": [
  303. "Microsoft.WindowsDesktop.App.WPF"
  304. ],
  305. "resource": {
  306. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll": {
  307. "locale": "de"
  308. }
  309. }
  310. },
  311. "Mapster/7.2.0": {
  312. "type": "package",
  313. "dependencies": {
  314. "Mapster.Core": "1.2.0",
  315. "Microsoft.CSharp": "4.3.0",
  316. "System.Reflection.Emit": "4.3.0"
  317. },
  318. "compile": {
  319. "lib/netstandard2.0/Mapster.dll": {}
  320. },
  321. "runtime": {
  322. "lib/netstandard2.0/Mapster.dll": {}
  323. }
  324. },
  325. "Mapster.Core/1.2.0": {
  326. "type": "package",
  327. "compile": {
  328. "lib/netstandard2.0/Mapster.Core.dll": {}
  329. },
  330. "runtime": {
  331. "lib/netstandard2.0/Mapster.Core.dll": {}
  332. }
  333. },
  334. "Microsoft.CSharp/4.3.0": {
  335. "type": "package",
  336. "dependencies": {
  337. "System.Collections": "4.3.0",
  338. "System.Diagnostics.Debug": "4.3.0",
  339. "System.Dynamic.Runtime": "4.3.0",
  340. "System.Globalization": "4.3.0",
  341. "System.Linq": "4.3.0",
  342. "System.Linq.Expressions": "4.3.0",
  343. "System.ObjectModel": "4.3.0",
  344. "System.Reflection": "4.3.0",
  345. "System.Reflection.Extensions": "4.3.0",
  346. "System.Reflection.Primitives": "4.3.0",
  347. "System.Reflection.TypeExtensions": "4.3.0",
  348. "System.Resources.ResourceManager": "4.3.0",
  349. "System.Runtime": "4.3.0",
  350. "System.Runtime.Extensions": "4.3.0",
  351. "System.Runtime.InteropServices": "4.3.0",
  352. "System.Threading": "4.3.0"
  353. },
  354. "compile": {
  355. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  361. }
  362. },
  363. "Microsoft.Data.Sqlite.Core/6.0.1": {
  364. "type": "package",
  365. "dependencies": {
  366. "SQLitePCLRaw.core": "2.0.6"
  367. },
  368. "compile": {
  369. "lib/net6.0/Microsoft.Data.Sqlite.dll": {
  370. "related": ".xml"
  371. }
  372. },
  373. "runtime": {
  374. "lib/net6.0/Microsoft.Data.Sqlite.dll": {
  375. "related": ".xml"
  376. }
  377. }
  378. },
  379. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  380. "type": "package",
  381. "dependencies": {
  382. "System.AppContext": "4.1.0",
  383. "System.Collections": "4.0.11",
  384. "System.IO": "4.1.0",
  385. "System.IO.FileSystem": "4.0.1",
  386. "System.Reflection.TypeExtensions": "4.1.0",
  387. "System.Runtime.Extensions": "4.1.0",
  388. "System.Runtime.InteropServices": "4.1.0",
  389. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  390. },
  391. "compile": {
  392. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  393. },
  394. "runtime": {
  395. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  396. }
  397. },
  398. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  399. "type": "package",
  400. "dependencies": {
  401. "Microsoft.Extensions.Primitives": "6.0.0"
  402. },
  403. "compile": {
  404. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  405. "related": ".xml"
  406. }
  407. },
  408. "runtime": {
  409. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  410. "related": ".xml"
  411. }
  412. }
  413. },
  414. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  415. "type": "package",
  416. "dependencies": {
  417. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  418. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  419. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  420. "Microsoft.Extensions.Options": "6.0.0",
  421. "Microsoft.Extensions.Primitives": "6.0.0"
  422. },
  423. "compile": {
  424. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  425. "related": ".xml"
  426. }
  427. },
  428. "runtime": {
  429. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  430. "related": ".xml"
  431. }
  432. }
  433. },
  434. "Microsoft.Extensions.Configuration/5.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  438. "Microsoft.Extensions.Primitives": "5.0.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  442. "related": ".xml"
  443. }
  444. },
  445. "runtime": {
  446. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  447. "related": ".xml"
  448. }
  449. }
  450. },
  451. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.Extensions.Primitives": "5.0.0"
  455. },
  456. "compile": {
  457. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  458. "related": ".xml"
  459. }
  460. },
  461. "runtime": {
  462. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  463. "related": ".xml"
  464. }
  465. }
  466. },
  467. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  468. "type": "package",
  469. "dependencies": {
  470. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.Extensions.Configuration": "5.0.0",
  487. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  488. },
  489. "compile": {
  490. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  491. "related": ".xml"
  492. }
  493. },
  494. "runtime": {
  495. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  496. "related": ".xml"
  497. }
  498. }
  499. },
  500. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.Extensions.Configuration": "5.0.0",
  504. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  505. },
  506. "compile": {
  507. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  508. "related": ".xml"
  509. }
  510. },
  511. "runtime": {
  512. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  513. "related": ".xml"
  514. }
  515. }
  516. },
  517. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  518. "type": "package",
  519. "dependencies": {
  520. "Microsoft.Extensions.Configuration": "5.0.0",
  521. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  522. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  523. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  524. "Microsoft.Extensions.Primitives": "5.0.0"
  525. },
  526. "compile": {
  527. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  528. "related": ".xml"
  529. }
  530. },
  531. "runtime": {
  532. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  533. "related": ".xml"
  534. }
  535. }
  536. },
  537. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  538. "type": "package",
  539. "dependencies": {
  540. "Microsoft.Extensions.Configuration": "5.0.0",
  541. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  542. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  543. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  544. },
  545. "compile": {
  546. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  547. "related": ".xml"
  548. }
  549. },
  550. "runtime": {
  551. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  552. "related": ".xml"
  553. }
  554. }
  555. },
  556. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  557. "type": "package",
  558. "dependencies": {
  559. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  560. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  561. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  562. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  563. },
  564. "compile": {
  565. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  566. "related": ".xml"
  567. }
  568. },
  569. "runtime": {
  570. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  571. "related": ".xml"
  572. }
  573. },
  574. "build": {
  575. "build/netstandard2.0/_._": {}
  576. }
  577. },
  578. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  579. "type": "package",
  580. "dependencies": {
  581. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  582. },
  583. "compile": {
  584. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "runtime": {
  589. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  590. "related": ".xml"
  591. }
  592. },
  593. "build": {
  594. "buildTransitive/net6.0/_._": {}
  595. }
  596. },
  597. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  598. "type": "package",
  599. "compile": {
  600. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  601. "related": ".xml"
  602. }
  603. },
  604. "runtime": {
  605. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  606. "related": ".xml"
  607. }
  608. },
  609. "build": {
  610. "buildTransitive/net6.0/_._": {}
  611. }
  612. },
  613. "Microsoft.Extensions.DependencyModel/2.0.4": {
  614. "type": "package",
  615. "dependencies": {
  616. "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
  617. "Newtonsoft.Json": "9.0.1",
  618. "System.Diagnostics.Debug": "4.0.11",
  619. "System.Dynamic.Runtime": "4.0.11",
  620. "System.Linq": "4.1.0"
  621. },
  622. "compile": {
  623. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  624. },
  625. "runtime": {
  626. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  627. }
  628. },
  629. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  630. "type": "package",
  631. "dependencies": {
  632. "Microsoft.Extensions.Primitives": "5.0.0"
  633. },
  634. "compile": {
  635. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  636. "related": ".xml"
  637. }
  638. },
  639. "runtime": {
  640. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  641. "related": ".xml"
  642. }
  643. }
  644. },
  645. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  646. "type": "package",
  647. "dependencies": {
  648. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  649. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  650. "Microsoft.Extensions.Primitives": "5.0.0"
  651. },
  652. "compile": {
  653. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  654. "related": ".xml"
  655. }
  656. },
  657. "runtime": {
  658. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  659. "related": ".xml"
  660. }
  661. }
  662. },
  663. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  664. "type": "package",
  665. "compile": {
  666. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  667. "related": ".xml"
  668. }
  669. },
  670. "runtime": {
  671. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  672. "related": ".xml"
  673. }
  674. }
  675. },
  676. "Microsoft.Extensions.Hosting/5.0.0": {
  677. "type": "package",
  678. "dependencies": {
  679. "Microsoft.Extensions.Configuration": "5.0.0",
  680. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  681. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  682. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  683. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  684. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  685. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  686. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  687. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  688. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  689. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  690. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  691. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  692. "Microsoft.Extensions.Logging": "5.0.0",
  693. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  694. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  695. "Microsoft.Extensions.Logging.Console": "5.0.0",
  696. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  697. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  698. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  699. "Microsoft.Extensions.Options": "5.0.0"
  700. },
  701. "compile": {
  702. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  703. "related": ".xml"
  704. }
  705. },
  706. "runtime": {
  707. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  708. "related": ".xml"
  709. }
  710. }
  711. },
  712. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  713. "type": "package",
  714. "dependencies": {
  715. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  716. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  717. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  718. },
  719. "compile": {
  720. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  721. "related": ".xml"
  722. }
  723. },
  724. "runtime": {
  725. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  726. "related": ".xml"
  727. }
  728. }
  729. },
  730. "Microsoft.Extensions.Logging/7.0.0": {
  731. "type": "package",
  732. "dependencies": {
  733. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  734. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  735. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  736. "Microsoft.Extensions.Options": "7.0.0"
  737. },
  738. "compile": {
  739. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  740. "related": ".xml"
  741. }
  742. },
  743. "runtime": {
  744. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  745. "related": ".xml"
  746. }
  747. },
  748. "build": {
  749. "buildTransitive/net6.0/_._": {}
  750. }
  751. },
  752. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  753. "type": "package",
  754. "compile": {
  755. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  756. "related": ".xml"
  757. }
  758. },
  759. "runtime": {
  760. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  761. "related": ".xml"
  762. }
  763. },
  764. "build": {
  765. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  766. }
  767. },
  768. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.Extensions.Configuration": "5.0.0",
  772. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  773. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  774. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  775. "Microsoft.Extensions.Logging": "5.0.0",
  776. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  777. "Microsoft.Extensions.Options": "5.0.0",
  778. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  779. },
  780. "compile": {
  781. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  782. "related": ".xml"
  783. }
  784. },
  785. "runtime": {
  786. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  787. "related": ".xml"
  788. }
  789. }
  790. },
  791. "Microsoft.Extensions.Logging.Console/5.0.0": {
  792. "type": "package",
  793. "dependencies": {
  794. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  795. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  796. "Microsoft.Extensions.Logging": "5.0.0",
  797. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  798. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  799. "Microsoft.Extensions.Options": "5.0.0",
  800. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  801. },
  802. "compile": {
  803. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  809. "related": ".xml"
  810. }
  811. }
  812. },
  813. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  814. "type": "package",
  815. "dependencies": {
  816. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  817. "Microsoft.Extensions.Logging": "5.0.0",
  818. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  819. },
  820. "compile": {
  821. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  827. "related": ".xml"
  828. }
  829. }
  830. },
  831. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  835. "Microsoft.Extensions.Logging": "5.0.0",
  836. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  837. "Microsoft.Extensions.Options": "5.0.0",
  838. "System.Diagnostics.EventLog": "5.0.0"
  839. },
  840. "compile": {
  841. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  847. "related": ".xml"
  848. }
  849. }
  850. },
  851. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  855. "Microsoft.Extensions.Logging": "5.0.0",
  856. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  857. "Microsoft.Extensions.Options": "5.0.0",
  858. "Microsoft.Extensions.Primitives": "5.0.0"
  859. },
  860. "compile": {
  861. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  862. "related": ".xml"
  863. }
  864. },
  865. "runtime": {
  866. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  867. "related": ".xml"
  868. }
  869. }
  870. },
  871. "Microsoft.Extensions.Options/7.0.0": {
  872. "type": "package",
  873. "dependencies": {
  874. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  875. "Microsoft.Extensions.Primitives": "7.0.0"
  876. },
  877. "compile": {
  878. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  879. "related": ".xml"
  880. }
  881. },
  882. "runtime": {
  883. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "build": {
  888. "buildTransitive/net6.0/_._": {}
  889. }
  890. },
  891. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  892. "type": "package",
  893. "dependencies": {
  894. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  895. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  896. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  897. "Microsoft.Extensions.Options": "5.0.0",
  898. "Microsoft.Extensions.Primitives": "5.0.0"
  899. },
  900. "compile": {
  901. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  902. "related": ".xml"
  903. }
  904. },
  905. "runtime": {
  906. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  907. "related": ".xml"
  908. }
  909. }
  910. },
  911. "Microsoft.Extensions.Primitives/7.0.0": {
  912. "type": "package",
  913. "dependencies": {
  914. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  915. },
  916. "compile": {
  917. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  918. "related": ".xml"
  919. }
  920. },
  921. "runtime": {
  922. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "build": {
  927. "buildTransitive/net6.0/_._": {}
  928. }
  929. },
  930. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  931. "type": "package",
  932. "compile": {
  933. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  934. "related": ".xml"
  935. }
  936. },
  937. "runtime": {
  938. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  939. "related": ".xml"
  940. }
  941. }
  942. },
  943. "Microsoft.NETCore.Platforms/5.0.0": {
  944. "type": "package",
  945. "compile": {
  946. "lib/netstandard1.0/_._": {}
  947. },
  948. "runtime": {
  949. "lib/netstandard1.0/_._": {}
  950. }
  951. },
  952. "Microsoft.NETCore.Targets/1.1.0": {
  953. "type": "package",
  954. "compile": {
  955. "lib/netstandard1.0/_._": {}
  956. },
  957. "runtime": {
  958. "lib/netstandard1.0/_._": {}
  959. }
  960. },
  961. "Microsoft.Win32.Primitives/4.3.0": {
  962. "type": "package",
  963. "dependencies": {
  964. "Microsoft.NETCore.Platforms": "1.1.0",
  965. "Microsoft.NETCore.Targets": "1.1.0",
  966. "System.Runtime": "4.3.0"
  967. },
  968. "compile": {
  969. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  970. "related": ".xml"
  971. }
  972. }
  973. },
  974. "Microsoft.Win32.Registry/5.0.0": {
  975. "type": "package",
  976. "dependencies": {
  977. "System.Security.AccessControl": "5.0.0",
  978. "System.Security.Principal.Windows": "5.0.0"
  979. },
  980. "compile": {
  981. "ref/netstandard2.0/_._": {
  982. "related": ".xml"
  983. }
  984. },
  985. "runtime": {
  986. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  987. "related": ".xml"
  988. }
  989. },
  990. "runtimeTargets": {
  991. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  992. "assetType": "runtime",
  993. "rid": "win"
  994. }
  995. }
  996. },
  997. "Microsoft.Win32.SystemEvents/8.0.0": {
  998. "type": "package",
  999. "compile": {
  1000. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1001. "related": ".xml"
  1002. }
  1003. },
  1004. "runtime": {
  1005. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "build": {
  1010. "buildTransitive/net6.0/_._": {}
  1011. },
  1012. "runtimeTargets": {
  1013. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1014. "assetType": "runtime",
  1015. "rid": "win"
  1016. }
  1017. }
  1018. },
  1019. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  1020. "type": "package",
  1021. "compile": {
  1022. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  1023. "related": ".pdb;.xml"
  1024. }
  1025. },
  1026. "runtime": {
  1027. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  1028. "related": ".pdb;.xml"
  1029. }
  1030. },
  1031. "frameworkReferences": [
  1032. "Microsoft.WindowsDesktop.App.WPF"
  1033. ]
  1034. },
  1035. "MySql.Data/8.0.27": {
  1036. "type": "package",
  1037. "dependencies": {
  1038. "BouncyCastle.NetCore": "1.8.5",
  1039. "Google.Protobuf": "3.14.0",
  1040. "K4os.Compression.LZ4.Streams": "1.2.6",
  1041. "System.Buffers": "4.5.1",
  1042. "System.Configuration.ConfigurationManager": "4.4.1",
  1043. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1044. "System.Security.Permissions": "4.7.0",
  1045. "System.Text.Encoding.CodePages": "4.4.0"
  1046. },
  1047. "compile": {
  1048. "lib/net5.0/MySql.Data.dll": {
  1049. "related": ".xml"
  1050. },
  1051. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1052. "lib/net5.0/ZstdNet.dll": {}
  1053. },
  1054. "runtime": {
  1055. "lib/net5.0/MySql.Data.dll": {
  1056. "related": ".xml"
  1057. },
  1058. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1059. "lib/net5.0/ZstdNet.dll": {}
  1060. }
  1061. },
  1062. "NETStandard.Library/1.6.1": {
  1063. "type": "package",
  1064. "dependencies": {
  1065. "Microsoft.NETCore.Platforms": "1.1.0",
  1066. "Microsoft.Win32.Primitives": "4.3.0",
  1067. "System.AppContext": "4.3.0",
  1068. "System.Collections": "4.3.0",
  1069. "System.Collections.Concurrent": "4.3.0",
  1070. "System.Console": "4.3.0",
  1071. "System.Diagnostics.Debug": "4.3.0",
  1072. "System.Diagnostics.Tools": "4.3.0",
  1073. "System.Diagnostics.Tracing": "4.3.0",
  1074. "System.Globalization": "4.3.0",
  1075. "System.Globalization.Calendars": "4.3.0",
  1076. "System.IO": "4.3.0",
  1077. "System.IO.Compression": "4.3.0",
  1078. "System.IO.Compression.ZipFile": "4.3.0",
  1079. "System.IO.FileSystem": "4.3.0",
  1080. "System.IO.FileSystem.Primitives": "4.3.0",
  1081. "System.Linq": "4.3.0",
  1082. "System.Linq.Expressions": "4.3.0",
  1083. "System.Net.Http": "4.3.0",
  1084. "System.Net.Primitives": "4.3.0",
  1085. "System.Net.Sockets": "4.3.0",
  1086. "System.ObjectModel": "4.3.0",
  1087. "System.Reflection": "4.3.0",
  1088. "System.Reflection.Extensions": "4.3.0",
  1089. "System.Reflection.Primitives": "4.3.0",
  1090. "System.Resources.ResourceManager": "4.3.0",
  1091. "System.Runtime": "4.3.0",
  1092. "System.Runtime.Extensions": "4.3.0",
  1093. "System.Runtime.Handles": "4.3.0",
  1094. "System.Runtime.InteropServices": "4.3.0",
  1095. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1096. "System.Runtime.Numerics": "4.3.0",
  1097. "System.Security.Cryptography.Algorithms": "4.3.0",
  1098. "System.Security.Cryptography.Encoding": "4.3.0",
  1099. "System.Security.Cryptography.Primitives": "4.3.0",
  1100. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1101. "System.Text.Encoding": "4.3.0",
  1102. "System.Text.Encoding.Extensions": "4.3.0",
  1103. "System.Text.RegularExpressions": "4.3.0",
  1104. "System.Threading": "4.3.0",
  1105. "System.Threading.Tasks": "4.3.0",
  1106. "System.Threading.Timer": "4.3.0",
  1107. "System.Xml.ReaderWriter": "4.3.0",
  1108. "System.Xml.XDocument": "4.3.0"
  1109. }
  1110. },
  1111. "Newtonsoft.Json/9.0.1": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "Microsoft.CSharp": "4.0.1",
  1115. "System.Collections": "4.0.11",
  1116. "System.Diagnostics.Debug": "4.0.11",
  1117. "System.Dynamic.Runtime": "4.0.11",
  1118. "System.Globalization": "4.0.11",
  1119. "System.IO": "4.1.0",
  1120. "System.Linq": "4.1.0",
  1121. "System.Linq.Expressions": "4.1.0",
  1122. "System.ObjectModel": "4.0.12",
  1123. "System.Reflection": "4.1.0",
  1124. "System.Reflection.Extensions": "4.0.1",
  1125. "System.Resources.ResourceManager": "4.0.1",
  1126. "System.Runtime": "4.1.0",
  1127. "System.Runtime.Extensions": "4.1.0",
  1128. "System.Runtime.Serialization.Primitives": "4.1.1",
  1129. "System.Text.Encoding": "4.0.11",
  1130. "System.Text.Encoding.Extensions": "4.0.11",
  1131. "System.Text.RegularExpressions": "4.1.0",
  1132. "System.Threading": "4.0.11",
  1133. "System.Threading.Tasks": "4.0.11",
  1134. "System.Xml.ReaderWriter": "4.0.11",
  1135. "System.Xml.XDocument": "4.0.11"
  1136. },
  1137. "compile": {
  1138. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  1139. "related": ".xml"
  1140. }
  1141. },
  1142. "runtime": {
  1143. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  1144. "related": ".xml"
  1145. }
  1146. }
  1147. },
  1148. "NModbus4.NetCore/2.0.1": {
  1149. "type": "package",
  1150. "dependencies": {
  1151. "System.IO.Ports": "6.0.0"
  1152. },
  1153. "compile": {
  1154. "lib/net6.0/Modbus.dll": {}
  1155. },
  1156. "runtime": {
  1157. "lib/net6.0/Modbus.dll": {}
  1158. }
  1159. },
  1160. "NPOI/2.5.6": {
  1161. "type": "package",
  1162. "dependencies": {
  1163. "Portable.BouncyCastle": "1.8.9",
  1164. "SharpZipLib": "1.3.3",
  1165. "System.Configuration.ConfigurationManager": "4.5.0",
  1166. "System.Drawing.Common": "4.5.0"
  1167. },
  1168. "compile": {
  1169. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1170. "related": ".pdb;.xml"
  1171. },
  1172. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1173. "related": ".pdb"
  1174. },
  1175. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1176. "related": ".pdb"
  1177. },
  1178. "lib/netstandard2.1/NPOI.dll": {
  1179. "related": ".OOXML.pdb;.OOXML.xml;.OpenXml4Net.pdb;.OpenXmlFormats.pdb;.pdb;.xml"
  1180. }
  1181. },
  1182. "runtime": {
  1183. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1184. "related": ".pdb;.xml"
  1185. },
  1186. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1187. "related": ".pdb"
  1188. },
  1189. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1190. "related": ".pdb"
  1191. },
  1192. "lib/netstandard2.1/NPOI.dll": {
  1193. "related": ".OOXML.pdb;.OOXML.xml;.OpenXml4Net.pdb;.OpenXmlFormats.pdb;.pdb;.xml"
  1194. }
  1195. }
  1196. },
  1197. "Panuon.UI.Silver/1.1.3.4": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "System.Drawing.Common": "5.0.0"
  1201. },
  1202. "compile": {
  1203. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  1204. },
  1205. "runtime": {
  1206. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  1207. },
  1208. "frameworkReferences": [
  1209. "Microsoft.WindowsDesktop.App.WPF"
  1210. ]
  1211. },
  1212. "Polly/7.2.2": {
  1213. "type": "package",
  1214. "compile": {
  1215. "lib/netstandard2.0/Polly.dll": {
  1216. "related": ".pdb;.xml"
  1217. }
  1218. },
  1219. "runtime": {
  1220. "lib/netstandard2.0/Polly.dll": {
  1221. "related": ".pdb;.xml"
  1222. }
  1223. }
  1224. },
  1225. "Portable.BouncyCastle/1.8.9": {
  1226. "type": "package",
  1227. "compile": {
  1228. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1229. "related": ".xml"
  1230. }
  1231. },
  1232. "runtime": {
  1233. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1234. "related": ".xml"
  1235. }
  1236. }
  1237. },
  1238. "Prism.Core/8.1.97": {
  1239. "type": "package",
  1240. "compile": {
  1241. "lib/net5.0/Prism.dll": {
  1242. "related": ".pdb;.xml"
  1243. }
  1244. },
  1245. "runtime": {
  1246. "lib/net5.0/Prism.dll": {
  1247. "related": ".pdb;.xml"
  1248. }
  1249. }
  1250. },
  1251. "Prism.Unity/8.1.97": {
  1252. "type": "package",
  1253. "dependencies": {
  1254. "Prism.Wpf": "8.1.97",
  1255. "Unity.Container": "5.11.11"
  1256. },
  1257. "compile": {
  1258. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  1259. "related": ".pdb;.xml"
  1260. }
  1261. },
  1262. "runtime": {
  1263. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  1264. "related": ".pdb;.xml"
  1265. }
  1266. },
  1267. "frameworkReferences": [
  1268. "Microsoft.WindowsDesktop.App.WPF"
  1269. ]
  1270. },
  1271. "Prism.Wpf/8.1.97": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "Microsoft.Xaml.Behaviors.Wpf": "1.1.31",
  1275. "Prism.Core": "8.1.97"
  1276. },
  1277. "compile": {
  1278. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  1279. "related": ".pdb;.xml"
  1280. }
  1281. },
  1282. "runtime": {
  1283. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  1284. "related": ".pdb;.xml"
  1285. }
  1286. },
  1287. "frameworkReferences": [
  1288. "Microsoft.WindowsDesktop.App.WPF"
  1289. ]
  1290. },
  1291. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1292. "type": "package",
  1293. "runtimeTargets": {
  1294. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1295. "assetType": "native",
  1296. "rid": "debian.8-x64"
  1297. }
  1298. }
  1299. },
  1300. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1301. "type": "package",
  1302. "runtimeTargets": {
  1303. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1304. "assetType": "native",
  1305. "rid": "fedora.23-x64"
  1306. }
  1307. }
  1308. },
  1309. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1310. "type": "package",
  1311. "runtimeTargets": {
  1312. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1313. "assetType": "native",
  1314. "rid": "fedora.24-x64"
  1315. }
  1316. }
  1317. },
  1318. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  1319. "type": "package",
  1320. "runtimeTargets": {
  1321. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": {
  1322. "assetType": "native",
  1323. "rid": "linux-arm"
  1324. }
  1325. }
  1326. },
  1327. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  1328. "type": "package",
  1329. "runtimeTargets": {
  1330. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": {
  1331. "assetType": "native",
  1332. "rid": "linux-arm64"
  1333. }
  1334. }
  1335. },
  1336. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  1337. "type": "package",
  1338. "runtimeTargets": {
  1339. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {
  1340. "assetType": "native",
  1341. "rid": "linux-x64"
  1342. }
  1343. }
  1344. },
  1345. "runtime.native.System/4.3.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "Microsoft.NETCore.Platforms": "1.1.0",
  1349. "Microsoft.NETCore.Targets": "1.1.0"
  1350. },
  1351. "compile": {
  1352. "lib/netstandard1.0/_._": {}
  1353. },
  1354. "runtime": {
  1355. "lib/netstandard1.0/_._": {}
  1356. }
  1357. },
  1358. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  1359. "type": "package",
  1360. "dependencies": {
  1361. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1362. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1363. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1364. }
  1365. },
  1366. "runtime.native.System.IO.Compression/4.3.0": {
  1367. "type": "package",
  1368. "dependencies": {
  1369. "Microsoft.NETCore.Platforms": "1.1.0",
  1370. "Microsoft.NETCore.Targets": "1.1.0"
  1371. },
  1372. "compile": {
  1373. "lib/netstandard1.0/_._": {}
  1374. },
  1375. "runtime": {
  1376. "lib/netstandard1.0/_._": {}
  1377. }
  1378. },
  1379. "runtime.native.System.IO.Ports/6.0.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
  1383. "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1384. "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
  1385. "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1386. "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
  1387. }
  1388. },
  1389. "runtime.native.System.Net.Http/4.3.0": {
  1390. "type": "package",
  1391. "dependencies": {
  1392. "Microsoft.NETCore.Platforms": "1.1.0",
  1393. "Microsoft.NETCore.Targets": "1.1.0"
  1394. },
  1395. "compile": {
  1396. "lib/netstandard1.0/_._": {}
  1397. },
  1398. "runtime": {
  1399. "lib/netstandard1.0/_._": {}
  1400. }
  1401. },
  1402. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1406. },
  1407. "compile": {
  1408. "lib/netstandard1.0/_._": {}
  1409. },
  1410. "runtime": {
  1411. "lib/netstandard1.0/_._": {}
  1412. }
  1413. },
  1414. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1418. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1419. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1420. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1421. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1422. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1423. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1424. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1425. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1426. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1427. },
  1428. "compile": {
  1429. "lib/netstandard1.0/_._": {}
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard1.0/_._": {}
  1433. }
  1434. },
  1435. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1436. "type": "package",
  1437. "runtimeTargets": {
  1438. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1439. "assetType": "native",
  1440. "rid": "opensuse.13.2-x64"
  1441. }
  1442. }
  1443. },
  1444. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1445. "type": "package",
  1446. "runtimeTargets": {
  1447. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1448. "assetType": "native",
  1449. "rid": "opensuse.42.1-x64"
  1450. }
  1451. }
  1452. },
  1453. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  1454. "type": "package",
  1455. "runtimeTargets": {
  1456. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": {
  1457. "assetType": "native",
  1458. "rid": "osx-arm64"
  1459. }
  1460. }
  1461. },
  1462. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  1463. "type": "package",
  1464. "runtimeTargets": {
  1465. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": {
  1466. "assetType": "native",
  1467. "rid": "osx-x64"
  1468. }
  1469. }
  1470. },
  1471. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1472. "type": "package",
  1473. "runtimeTargets": {
  1474. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1475. "assetType": "native",
  1476. "rid": "osx.10.10-x64"
  1477. }
  1478. }
  1479. },
  1480. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1481. "type": "package",
  1482. "runtimeTargets": {
  1483. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1484. "assetType": "native",
  1485. "rid": "osx.10.10-x64"
  1486. }
  1487. }
  1488. },
  1489. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1490. "type": "package",
  1491. "runtimeTargets": {
  1492. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1493. "assetType": "native",
  1494. "rid": "rhel.7-x64"
  1495. }
  1496. }
  1497. },
  1498. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1499. "type": "package",
  1500. "runtimeTargets": {
  1501. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1502. "assetType": "native",
  1503. "rid": "ubuntu.14.04-x64"
  1504. }
  1505. }
  1506. },
  1507. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1508. "type": "package",
  1509. "runtimeTargets": {
  1510. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1511. "assetType": "native",
  1512. "rid": "ubuntu.16.04-x64"
  1513. }
  1514. }
  1515. },
  1516. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1517. "type": "package",
  1518. "runtimeTargets": {
  1519. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1520. "assetType": "native",
  1521. "rid": "ubuntu.16.10-x64"
  1522. }
  1523. }
  1524. },
  1525. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1526. "type": "package",
  1527. "runtimeTargets": {
  1528. "runtimes/win-arm64/native/sni.dll": {
  1529. "assetType": "native",
  1530. "rid": "win-arm64"
  1531. }
  1532. }
  1533. },
  1534. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1535. "type": "package",
  1536. "runtimeTargets": {
  1537. "runtimes/win-x64/native/sni.dll": {
  1538. "assetType": "native",
  1539. "rid": "win-x64"
  1540. }
  1541. }
  1542. },
  1543. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1544. "type": "package",
  1545. "runtimeTargets": {
  1546. "runtimes/win-x86/native/sni.dll": {
  1547. "assetType": "native",
  1548. "rid": "win-x86"
  1549. }
  1550. }
  1551. },
  1552. "Serilog/2.10.0": {
  1553. "type": "package",
  1554. "compile": {
  1555. "lib/netstandard2.1/Serilog.dll": {
  1556. "related": ".xml"
  1557. }
  1558. },
  1559. "runtime": {
  1560. "lib/netstandard2.1/Serilog.dll": {
  1561. "related": ".xml"
  1562. }
  1563. }
  1564. },
  1565. "Serilog.Enrichers.Thread/3.1.0": {
  1566. "type": "package",
  1567. "dependencies": {
  1568. "Serilog": "2.3.0"
  1569. },
  1570. "compile": {
  1571. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1572. "related": ".xml"
  1573. }
  1574. },
  1575. "runtime": {
  1576. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1577. "related": ".xml"
  1578. }
  1579. }
  1580. },
  1581. "Serilog.Extensions.Logging/3.0.1": {
  1582. "type": "package",
  1583. "dependencies": {
  1584. "Microsoft.Extensions.Logging": "2.0.0",
  1585. "Serilog": "2.8.0"
  1586. },
  1587. "compile": {
  1588. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1589. "related": ".xml"
  1590. }
  1591. },
  1592. "runtime": {
  1593. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1594. "related": ".xml"
  1595. }
  1596. }
  1597. },
  1598. "Serilog.Formatting.Compact/1.1.0": {
  1599. "type": "package",
  1600. "dependencies": {
  1601. "Serilog": "2.8.0"
  1602. },
  1603. "compile": {
  1604. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1605. "related": ".xml"
  1606. }
  1607. },
  1608. "runtime": {
  1609. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1610. "related": ".xml"
  1611. }
  1612. }
  1613. },
  1614. "Serilog.Settings.Configuration/3.1.0": {
  1615. "type": "package",
  1616. "dependencies": {
  1617. "Microsoft.Extensions.DependencyModel": "2.0.4",
  1618. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1619. "Serilog": "2.6.0"
  1620. },
  1621. "compile": {
  1622. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1623. "related": ".xml"
  1624. }
  1625. },
  1626. "runtime": {
  1627. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1628. "related": ".xml"
  1629. }
  1630. }
  1631. },
  1632. "Serilog.Sinks.Console/3.1.1": {
  1633. "type": "package",
  1634. "dependencies": {
  1635. "Serilog": "2.5.0",
  1636. "System.Console": "4.3.0",
  1637. "System.Runtime.InteropServices": "4.3.0",
  1638. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1639. },
  1640. "compile": {
  1641. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1642. "related": ".xml"
  1643. }
  1644. },
  1645. "runtime": {
  1646. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1647. "related": ".xml"
  1648. }
  1649. }
  1650. },
  1651. "Serilog.Sinks.File/4.1.0": {
  1652. "type": "package",
  1653. "dependencies": {
  1654. "Serilog": "2.5.0",
  1655. "System.IO.FileSystem": "4.0.1",
  1656. "System.Text.Encoding.Extensions": "4.0.11",
  1657. "System.Threading.Timer": "4.0.1"
  1658. },
  1659. "compile": {
  1660. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1661. "related": ".pdb;.xml"
  1662. }
  1663. },
  1664. "runtime": {
  1665. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1666. "related": ".pdb;.xml"
  1667. }
  1668. }
  1669. },
  1670. "SharpZipLib/1.3.3": {
  1671. "type": "package",
  1672. "compile": {
  1673. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1674. "related": ".pdb;.xml"
  1675. }
  1676. },
  1677. "runtime": {
  1678. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1679. "related": ".pdb;.xml"
  1680. }
  1681. }
  1682. },
  1683. "SQLitePCLRaw.core/2.0.6": {
  1684. "type": "package",
  1685. "dependencies": {
  1686. "System.Memory": "4.5.3"
  1687. },
  1688. "compile": {
  1689. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1690. },
  1691. "runtime": {
  1692. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1693. }
  1694. },
  1695. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  1696. "type": "package",
  1697. "compile": {
  1698. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1699. "related": ".dll.altconfig;.xml"
  1700. }
  1701. },
  1702. "runtime": {
  1703. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1704. "related": ".dll.altconfig;.xml"
  1705. }
  1706. },
  1707. "runtimeTargets": {
  1708. "runtimes/linux-x64/native/SQLite.Interop.dll": {
  1709. "assetType": "native",
  1710. "rid": "linux-x64"
  1711. },
  1712. "runtimes/osx-x64/native/SQLite.Interop.dll": {
  1713. "assetType": "native",
  1714. "rid": "osx-x64"
  1715. },
  1716. "runtimes/win-x64/native/SQLite.Interop.dll": {
  1717. "assetType": "native",
  1718. "rid": "win-x64"
  1719. },
  1720. "runtimes/win-x86/native/SQLite.Interop.dll": {
  1721. "assetType": "native",
  1722. "rid": "win-x86"
  1723. }
  1724. }
  1725. },
  1726. "System.AppContext/4.3.0": {
  1727. "type": "package",
  1728. "dependencies": {
  1729. "System.Runtime": "4.3.0"
  1730. },
  1731. "compile": {
  1732. "ref/netstandard1.6/System.AppContext.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard1.6/System.AppContext.dll": {}
  1738. }
  1739. },
  1740. "System.Buffers/4.5.1": {
  1741. "type": "package",
  1742. "compile": {
  1743. "ref/netcoreapp2.0/_._": {}
  1744. },
  1745. "runtime": {
  1746. "lib/netcoreapp2.0/_._": {}
  1747. }
  1748. },
  1749. "System.Collections/4.3.0": {
  1750. "type": "package",
  1751. "dependencies": {
  1752. "Microsoft.NETCore.Platforms": "1.1.0",
  1753. "Microsoft.NETCore.Targets": "1.1.0",
  1754. "System.Runtime": "4.3.0"
  1755. },
  1756. "compile": {
  1757. "ref/netstandard1.3/System.Collections.dll": {
  1758. "related": ".xml"
  1759. }
  1760. }
  1761. },
  1762. "System.Collections.Concurrent/4.3.0": {
  1763. "type": "package",
  1764. "dependencies": {
  1765. "System.Collections": "4.3.0",
  1766. "System.Diagnostics.Debug": "4.3.0",
  1767. "System.Diagnostics.Tracing": "4.3.0",
  1768. "System.Globalization": "4.3.0",
  1769. "System.Reflection": "4.3.0",
  1770. "System.Resources.ResourceManager": "4.3.0",
  1771. "System.Runtime": "4.3.0",
  1772. "System.Runtime.Extensions": "4.3.0",
  1773. "System.Threading": "4.3.0",
  1774. "System.Threading.Tasks": "4.3.0"
  1775. },
  1776. "compile": {
  1777. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1778. "related": ".xml"
  1779. }
  1780. },
  1781. "runtime": {
  1782. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1783. }
  1784. },
  1785. "System.Collections.NonGeneric/4.3.0": {
  1786. "type": "package",
  1787. "dependencies": {
  1788. "System.Diagnostics.Debug": "4.3.0",
  1789. "System.Globalization": "4.3.0",
  1790. "System.Resources.ResourceManager": "4.3.0",
  1791. "System.Runtime": "4.3.0",
  1792. "System.Runtime.Extensions": "4.3.0",
  1793. "System.Threading": "4.3.0"
  1794. },
  1795. "compile": {
  1796. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1797. "related": ".xml"
  1798. }
  1799. },
  1800. "runtime": {
  1801. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1802. }
  1803. },
  1804. "System.Collections.Specialized/4.3.0": {
  1805. "type": "package",
  1806. "dependencies": {
  1807. "System.Collections.NonGeneric": "4.3.0",
  1808. "System.Globalization": "4.3.0",
  1809. "System.Globalization.Extensions": "4.3.0",
  1810. "System.Resources.ResourceManager": "4.3.0",
  1811. "System.Runtime": "4.3.0",
  1812. "System.Runtime.Extensions": "4.3.0",
  1813. "System.Threading": "4.3.0"
  1814. },
  1815. "compile": {
  1816. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1817. "related": ".xml"
  1818. }
  1819. },
  1820. "runtime": {
  1821. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1822. }
  1823. },
  1824. "System.ComponentModel/4.3.0": {
  1825. "type": "package",
  1826. "dependencies": {
  1827. "System.Runtime": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.0/System.ComponentModel.dll": {
  1831. "related": ".xml"
  1832. }
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1836. }
  1837. },
  1838. "System.ComponentModel.Annotations/5.0.0": {
  1839. "type": "package",
  1840. "compile": {
  1841. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1842. "related": ".xml"
  1843. }
  1844. },
  1845. "runtime": {
  1846. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1847. "related": ".xml"
  1848. }
  1849. }
  1850. },
  1851. "System.ComponentModel.Primitives/4.3.0": {
  1852. "type": "package",
  1853. "dependencies": {
  1854. "System.ComponentModel": "4.3.0",
  1855. "System.Resources.ResourceManager": "4.3.0",
  1856. "System.Runtime": "4.3.0"
  1857. },
  1858. "compile": {
  1859. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1860. "related": ".xml"
  1861. }
  1862. },
  1863. "runtime": {
  1864. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1865. }
  1866. },
  1867. "System.ComponentModel.TypeConverter/4.3.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "System.Collections": "4.3.0",
  1871. "System.Collections.NonGeneric": "4.3.0",
  1872. "System.Collections.Specialized": "4.3.0",
  1873. "System.ComponentModel": "4.3.0",
  1874. "System.ComponentModel.Primitives": "4.3.0",
  1875. "System.Globalization": "4.3.0",
  1876. "System.Linq": "4.3.0",
  1877. "System.Reflection": "4.3.0",
  1878. "System.Reflection.Extensions": "4.3.0",
  1879. "System.Reflection.Primitives": "4.3.0",
  1880. "System.Reflection.TypeExtensions": "4.3.0",
  1881. "System.Resources.ResourceManager": "4.3.0",
  1882. "System.Runtime": "4.3.0",
  1883. "System.Runtime.Extensions": "4.3.0",
  1884. "System.Threading": "4.3.0"
  1885. },
  1886. "compile": {
  1887. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1888. "related": ".xml"
  1889. }
  1890. },
  1891. "runtime": {
  1892. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1893. }
  1894. },
  1895. "System.Configuration.ConfigurationManager/4.5.0": {
  1896. "type": "package",
  1897. "dependencies": {
  1898. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1899. "System.Security.Permissions": "4.5.0"
  1900. },
  1901. "compile": {
  1902. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1903. "related": ".xml"
  1904. }
  1905. },
  1906. "runtime": {
  1907. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1908. }
  1909. },
  1910. "System.Console/4.3.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "Microsoft.NETCore.Platforms": "1.1.0",
  1914. "Microsoft.NETCore.Targets": "1.1.0",
  1915. "System.IO": "4.3.0",
  1916. "System.Runtime": "4.3.0",
  1917. "System.Text.Encoding": "4.3.0"
  1918. },
  1919. "compile": {
  1920. "ref/netstandard1.3/System.Console.dll": {
  1921. "related": ".xml"
  1922. }
  1923. }
  1924. },
  1925. "System.Data.Common/4.3.0": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "System.Collections": "4.3.0",
  1929. "System.Globalization": "4.3.0",
  1930. "System.IO": "4.3.0",
  1931. "System.Resources.ResourceManager": "4.3.0",
  1932. "System.Runtime": "4.3.0",
  1933. "System.Runtime.Extensions": "4.3.0",
  1934. "System.Text.RegularExpressions": "4.3.0",
  1935. "System.Threading.Tasks": "4.3.0"
  1936. },
  1937. "compile": {
  1938. "ref/netstandard1.2/System.Data.Common.dll": {
  1939. "related": ".xml"
  1940. }
  1941. },
  1942. "runtime": {
  1943. "lib/netstandard1.2/System.Data.Common.dll": {}
  1944. }
  1945. },
  1946. "System.Data.SqlClient/4.8.3": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "Microsoft.Win32.Registry": "4.7.0",
  1950. "System.Security.Principal.Windows": "4.7.0",
  1951. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1952. },
  1953. "compile": {
  1954. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  1955. "related": ".xml"
  1956. }
  1957. },
  1958. "runtime": {
  1959. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1960. "related": ".xml"
  1961. }
  1962. },
  1963. "runtimeTargets": {
  1964. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1965. "assetType": "runtime",
  1966. "rid": "unix"
  1967. },
  1968. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1969. "assetType": "runtime",
  1970. "rid": "win"
  1971. }
  1972. }
  1973. },
  1974. "System.Data.SQLite.Core/1.0.114": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "Stub.System.Data.SQLite.Core.NetStandard": "1.0.114"
  1978. }
  1979. },
  1980. "System.Diagnostics.Debug/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.Diagnostics.Debug.dll": {
  1989. "related": ".xml"
  1990. }
  1991. }
  1992. },
  1993. "System.Diagnostics.DiagnosticSource/7.0.2": {
  1994. "type": "package",
  1995. "dependencies": {
  1996. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1997. },
  1998. "compile": {
  1999. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2000. "related": ".xml"
  2001. }
  2002. },
  2003. "runtime": {
  2004. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "build": {
  2009. "buildTransitive/net6.0/_._": {}
  2010. }
  2011. },
  2012. "System.Diagnostics.EventLog/5.0.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "Microsoft.NETCore.Platforms": "5.0.0",
  2016. "Microsoft.Win32.Registry": "5.0.0",
  2017. "System.Security.Principal.Windows": "5.0.0"
  2018. },
  2019. "compile": {
  2020. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {
  2021. "related": ".xml"
  2022. }
  2023. },
  2024. "runtime": {
  2025. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  2026. "related": ".xml"
  2027. }
  2028. },
  2029. "runtimeTargets": {
  2030. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  2031. "assetType": "runtime",
  2032. "rid": "win"
  2033. }
  2034. }
  2035. },
  2036. "System.Diagnostics.Tools/4.3.0": {
  2037. "type": "package",
  2038. "dependencies": {
  2039. "Microsoft.NETCore.Platforms": "1.1.0",
  2040. "Microsoft.NETCore.Targets": "1.1.0",
  2041. "System.Runtime": "4.3.0"
  2042. },
  2043. "compile": {
  2044. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2045. "related": ".xml"
  2046. }
  2047. }
  2048. },
  2049. "System.Diagnostics.TraceSource/4.3.0": {
  2050. "type": "package",
  2051. "dependencies": {
  2052. "Microsoft.NETCore.Platforms": "1.1.0",
  2053. "System.Collections": "4.3.0",
  2054. "System.Diagnostics.Debug": "4.3.0",
  2055. "System.Globalization": "4.3.0",
  2056. "System.Resources.ResourceManager": "4.3.0",
  2057. "System.Runtime": "4.3.0",
  2058. "System.Runtime.Extensions": "4.3.0",
  2059. "System.Threading": "4.3.0",
  2060. "runtime.native.System": "4.3.0"
  2061. },
  2062. "compile": {
  2063. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2064. "related": ".xml"
  2065. }
  2066. },
  2067. "runtimeTargets": {
  2068. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2069. "assetType": "runtime",
  2070. "rid": "unix"
  2071. },
  2072. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2073. "assetType": "runtime",
  2074. "rid": "win"
  2075. }
  2076. }
  2077. },
  2078. "System.Diagnostics.Tracing/4.3.0": {
  2079. "type": "package",
  2080. "dependencies": {
  2081. "Microsoft.NETCore.Platforms": "1.1.0",
  2082. "Microsoft.NETCore.Targets": "1.1.0",
  2083. "System.Runtime": "4.3.0"
  2084. },
  2085. "compile": {
  2086. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2087. "related": ".xml"
  2088. }
  2089. }
  2090. },
  2091. "System.Drawing.Common/8.0.4": {
  2092. "type": "package",
  2093. "dependencies": {
  2094. "Microsoft.Win32.SystemEvents": "8.0.0"
  2095. },
  2096. "compile": {
  2097. "lib/net6.0/System.Drawing.Common.dll": {
  2098. "related": ".pdb;.xml"
  2099. }
  2100. },
  2101. "runtime": {
  2102. "lib/net6.0/System.Drawing.Common.dll": {
  2103. "related": ".pdb;.xml"
  2104. }
  2105. },
  2106. "build": {
  2107. "buildTransitive/net6.0/_._": {}
  2108. }
  2109. },
  2110. "System.Dynamic.Runtime/4.3.0": {
  2111. "type": "package",
  2112. "dependencies": {
  2113. "System.Collections": "4.3.0",
  2114. "System.Diagnostics.Debug": "4.3.0",
  2115. "System.Linq": "4.3.0",
  2116. "System.Linq.Expressions": "4.3.0",
  2117. "System.ObjectModel": "4.3.0",
  2118. "System.Reflection": "4.3.0",
  2119. "System.Reflection.Emit": "4.3.0",
  2120. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2121. "System.Reflection.Primitives": "4.3.0",
  2122. "System.Reflection.TypeExtensions": "4.3.0",
  2123. "System.Resources.ResourceManager": "4.3.0",
  2124. "System.Runtime": "4.3.0",
  2125. "System.Runtime.Extensions": "4.3.0",
  2126. "System.Threading": "4.3.0"
  2127. },
  2128. "compile": {
  2129. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2130. "related": ".xml"
  2131. }
  2132. },
  2133. "runtime": {
  2134. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2135. }
  2136. },
  2137. "System.Formats.Asn1/5.0.0": {
  2138. "type": "package",
  2139. "compile": {
  2140. "lib/netstandard2.0/_._": {
  2141. "related": ".xml"
  2142. }
  2143. },
  2144. "runtime": {
  2145. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.Globalization/4.3.0": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "Microsoft.NETCore.Platforms": "1.1.0",
  2154. "Microsoft.NETCore.Targets": "1.1.0",
  2155. "System.Runtime": "4.3.0"
  2156. },
  2157. "compile": {
  2158. "ref/netstandard1.3/System.Globalization.dll": {
  2159. "related": ".xml"
  2160. }
  2161. }
  2162. },
  2163. "System.Globalization.Calendars/4.3.0": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "Microsoft.NETCore.Platforms": "1.1.0",
  2167. "Microsoft.NETCore.Targets": "1.1.0",
  2168. "System.Globalization": "4.3.0",
  2169. "System.Runtime": "4.3.0"
  2170. },
  2171. "compile": {
  2172. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2173. "related": ".xml"
  2174. }
  2175. }
  2176. },
  2177. "System.Globalization.Extensions/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "Microsoft.NETCore.Platforms": "1.1.0",
  2181. "System.Globalization": "4.3.0",
  2182. "System.Resources.ResourceManager": "4.3.0",
  2183. "System.Runtime": "4.3.0",
  2184. "System.Runtime.Extensions": "4.3.0",
  2185. "System.Runtime.InteropServices": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/_._": {
  2189. "related": ".xml"
  2190. }
  2191. },
  2192. "runtimeTargets": {
  2193. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2194. "assetType": "runtime",
  2195. "rid": "unix"
  2196. },
  2197. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2198. "assetType": "runtime",
  2199. "rid": "win"
  2200. }
  2201. }
  2202. },
  2203. "System.IO/4.3.0": {
  2204. "type": "package",
  2205. "dependencies": {
  2206. "Microsoft.NETCore.Platforms": "1.1.0",
  2207. "Microsoft.NETCore.Targets": "1.1.0",
  2208. "System.Runtime": "4.3.0",
  2209. "System.Text.Encoding": "4.3.0",
  2210. "System.Threading.Tasks": "4.3.0"
  2211. },
  2212. "compile": {
  2213. "ref/netstandard1.5/System.IO.dll": {
  2214. "related": ".xml"
  2215. }
  2216. }
  2217. },
  2218. "System.IO.Compression/4.3.0": {
  2219. "type": "package",
  2220. "dependencies": {
  2221. "Microsoft.NETCore.Platforms": "1.1.0",
  2222. "System.Buffers": "4.3.0",
  2223. "System.Collections": "4.3.0",
  2224. "System.Diagnostics.Debug": "4.3.0",
  2225. "System.IO": "4.3.0",
  2226. "System.Resources.ResourceManager": "4.3.0",
  2227. "System.Runtime": "4.3.0",
  2228. "System.Runtime.Extensions": "4.3.0",
  2229. "System.Runtime.Handles": "4.3.0",
  2230. "System.Runtime.InteropServices": "4.3.0",
  2231. "System.Text.Encoding": "4.3.0",
  2232. "System.Threading": "4.3.0",
  2233. "System.Threading.Tasks": "4.3.0",
  2234. "runtime.native.System": "4.3.0",
  2235. "runtime.native.System.IO.Compression": "4.3.0"
  2236. },
  2237. "compile": {
  2238. "ref/netstandard1.3/System.IO.Compression.dll": {
  2239. "related": ".xml"
  2240. }
  2241. },
  2242. "runtimeTargets": {
  2243. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2244. "assetType": "runtime",
  2245. "rid": "unix"
  2246. },
  2247. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2248. "assetType": "runtime",
  2249. "rid": "win"
  2250. }
  2251. }
  2252. },
  2253. "System.IO.Compression.ZipFile/4.3.0": {
  2254. "type": "package",
  2255. "dependencies": {
  2256. "System.Buffers": "4.3.0",
  2257. "System.IO": "4.3.0",
  2258. "System.IO.Compression": "4.3.0",
  2259. "System.IO.FileSystem": "4.3.0",
  2260. "System.IO.FileSystem.Primitives": "4.3.0",
  2261. "System.Resources.ResourceManager": "4.3.0",
  2262. "System.Runtime": "4.3.0",
  2263. "System.Runtime.Extensions": "4.3.0",
  2264. "System.Text.Encoding": "4.3.0"
  2265. },
  2266. "compile": {
  2267. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2268. "related": ".xml"
  2269. }
  2270. },
  2271. "runtime": {
  2272. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2273. }
  2274. },
  2275. "System.IO.FileSystem/4.3.0": {
  2276. "type": "package",
  2277. "dependencies": {
  2278. "Microsoft.NETCore.Platforms": "1.1.0",
  2279. "Microsoft.NETCore.Targets": "1.1.0",
  2280. "System.IO": "4.3.0",
  2281. "System.IO.FileSystem.Primitives": "4.3.0",
  2282. "System.Runtime": "4.3.0",
  2283. "System.Runtime.Handles": "4.3.0",
  2284. "System.Text.Encoding": "4.3.0",
  2285. "System.Threading.Tasks": "4.3.0"
  2286. },
  2287. "compile": {
  2288. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2289. "related": ".xml"
  2290. }
  2291. }
  2292. },
  2293. "System.IO.FileSystem.Primitives/4.3.0": {
  2294. "type": "package",
  2295. "dependencies": {
  2296. "System.Runtime": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2300. "related": ".xml"
  2301. }
  2302. },
  2303. "runtime": {
  2304. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2305. }
  2306. },
  2307. "System.IO.Ports/6.0.0": {
  2308. "type": "package",
  2309. "dependencies": {
  2310. "runtime.native.System.IO.Ports": "6.0.0"
  2311. },
  2312. "compile": {
  2313. "lib/net6.0/System.IO.Ports.dll": {
  2314. "related": ".xml"
  2315. }
  2316. },
  2317. "runtime": {
  2318. "lib/net6.0/System.IO.Ports.dll": {
  2319. "related": ".xml"
  2320. }
  2321. },
  2322. "build": {
  2323. "buildTransitive/netcoreapp3.1/_._": {}
  2324. },
  2325. "runtimeTargets": {
  2326. "runtimes/unix/lib/net6.0/System.IO.Ports.dll": {
  2327. "assetType": "runtime",
  2328. "rid": "unix"
  2329. },
  2330. "runtimes/win/lib/net6.0/System.IO.Ports.dll": {
  2331. "assetType": "runtime",
  2332. "rid": "win"
  2333. }
  2334. }
  2335. },
  2336. "System.Linq/4.3.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "System.Collections": "4.3.0",
  2340. "System.Diagnostics.Debug": "4.3.0",
  2341. "System.Resources.ResourceManager": "4.3.0",
  2342. "System.Runtime": "4.3.0",
  2343. "System.Runtime.Extensions": "4.3.0"
  2344. },
  2345. "compile": {
  2346. "ref/netstandard1.6/System.Linq.dll": {
  2347. "related": ".xml"
  2348. }
  2349. },
  2350. "runtime": {
  2351. "lib/netstandard1.6/System.Linq.dll": {}
  2352. }
  2353. },
  2354. "System.Linq.Expressions/4.3.0": {
  2355. "type": "package",
  2356. "dependencies": {
  2357. "System.Collections": "4.3.0",
  2358. "System.Diagnostics.Debug": "4.3.0",
  2359. "System.Globalization": "4.3.0",
  2360. "System.IO": "4.3.0",
  2361. "System.Linq": "4.3.0",
  2362. "System.ObjectModel": "4.3.0",
  2363. "System.Reflection": "4.3.0",
  2364. "System.Reflection.Emit": "4.3.0",
  2365. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2366. "System.Reflection.Emit.Lightweight": "4.3.0",
  2367. "System.Reflection.Extensions": "4.3.0",
  2368. "System.Reflection.Primitives": "4.3.0",
  2369. "System.Reflection.TypeExtensions": "4.3.0",
  2370. "System.Resources.ResourceManager": "4.3.0",
  2371. "System.Runtime": "4.3.0",
  2372. "System.Runtime.Extensions": "4.3.0",
  2373. "System.Threading": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2377. "related": ".xml"
  2378. }
  2379. },
  2380. "runtime": {
  2381. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2382. }
  2383. },
  2384. "System.Memory/4.5.4": {
  2385. "type": "package",
  2386. "compile": {
  2387. "ref/netcoreapp2.1/_._": {}
  2388. },
  2389. "runtime": {
  2390. "lib/netcoreapp2.1/_._": {}
  2391. }
  2392. },
  2393. "System.Net.Http/4.3.0": {
  2394. "type": "package",
  2395. "dependencies": {
  2396. "Microsoft.NETCore.Platforms": "1.1.0",
  2397. "System.Collections": "4.3.0",
  2398. "System.Diagnostics.Debug": "4.3.0",
  2399. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2400. "System.Diagnostics.Tracing": "4.3.0",
  2401. "System.Globalization": "4.3.0",
  2402. "System.Globalization.Extensions": "4.3.0",
  2403. "System.IO": "4.3.0",
  2404. "System.IO.FileSystem": "4.3.0",
  2405. "System.Net.Primitives": "4.3.0",
  2406. "System.Resources.ResourceManager": "4.3.0",
  2407. "System.Runtime": "4.3.0",
  2408. "System.Runtime.Extensions": "4.3.0",
  2409. "System.Runtime.Handles": "4.3.0",
  2410. "System.Runtime.InteropServices": "4.3.0",
  2411. "System.Security.Cryptography.Algorithms": "4.3.0",
  2412. "System.Security.Cryptography.Encoding": "4.3.0",
  2413. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2414. "System.Security.Cryptography.Primitives": "4.3.0",
  2415. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2416. "System.Text.Encoding": "4.3.0",
  2417. "System.Threading": "4.3.0",
  2418. "System.Threading.Tasks": "4.3.0",
  2419. "runtime.native.System": "4.3.0",
  2420. "runtime.native.System.Net.Http": "4.3.0",
  2421. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2422. },
  2423. "compile": {
  2424. "ref/netstandard1.3/System.Net.Http.dll": {
  2425. "related": ".xml"
  2426. }
  2427. },
  2428. "runtimeTargets": {
  2429. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2430. "assetType": "runtime",
  2431. "rid": "unix"
  2432. },
  2433. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2434. "assetType": "runtime",
  2435. "rid": "win"
  2436. }
  2437. }
  2438. },
  2439. "System.Net.Primitives/4.3.0": {
  2440. "type": "package",
  2441. "dependencies": {
  2442. "Microsoft.NETCore.Platforms": "1.1.0",
  2443. "Microsoft.NETCore.Targets": "1.1.0",
  2444. "System.Runtime": "4.3.0",
  2445. "System.Runtime.Handles": "4.3.0"
  2446. },
  2447. "compile": {
  2448. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2449. "related": ".xml"
  2450. }
  2451. }
  2452. },
  2453. "System.Net.Sockets/4.3.0": {
  2454. "type": "package",
  2455. "dependencies": {
  2456. "Microsoft.NETCore.Platforms": "1.1.0",
  2457. "Microsoft.NETCore.Targets": "1.1.0",
  2458. "System.IO": "4.3.0",
  2459. "System.Net.Primitives": "4.3.0",
  2460. "System.Runtime": "4.3.0",
  2461. "System.Threading.Tasks": "4.3.0"
  2462. },
  2463. "compile": {
  2464. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2465. "related": ".xml"
  2466. }
  2467. }
  2468. },
  2469. "System.ObjectModel/4.3.0": {
  2470. "type": "package",
  2471. "dependencies": {
  2472. "System.Collections": "4.3.0",
  2473. "System.Diagnostics.Debug": "4.3.0",
  2474. "System.Resources.ResourceManager": "4.3.0",
  2475. "System.Runtime": "4.3.0",
  2476. "System.Threading": "4.3.0"
  2477. },
  2478. "compile": {
  2479. "ref/netstandard1.3/System.ObjectModel.dll": {
  2480. "related": ".xml"
  2481. }
  2482. },
  2483. "runtime": {
  2484. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2485. }
  2486. },
  2487. "System.Reflection/4.3.0": {
  2488. "type": "package",
  2489. "dependencies": {
  2490. "Microsoft.NETCore.Platforms": "1.1.0",
  2491. "Microsoft.NETCore.Targets": "1.1.0",
  2492. "System.IO": "4.3.0",
  2493. "System.Reflection.Primitives": "4.3.0",
  2494. "System.Runtime": "4.3.0"
  2495. },
  2496. "compile": {
  2497. "ref/netstandard1.5/System.Reflection.dll": {
  2498. "related": ".xml"
  2499. }
  2500. }
  2501. },
  2502. "System.Reflection.Emit/4.3.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "System.IO": "4.3.0",
  2506. "System.Reflection": "4.3.0",
  2507. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2508. "System.Reflection.Primitives": "4.3.0",
  2509. "System.Runtime": "4.3.0"
  2510. },
  2511. "compile": {
  2512. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2513. "related": ".xml"
  2514. }
  2515. },
  2516. "runtime": {
  2517. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2518. }
  2519. },
  2520. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "System.Reflection": "4.3.0",
  2524. "System.Reflection.Primitives": "4.3.0",
  2525. "System.Runtime": "4.3.0"
  2526. },
  2527. "compile": {
  2528. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2529. "related": ".xml"
  2530. }
  2531. },
  2532. "runtime": {
  2533. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2534. }
  2535. },
  2536. "System.Reflection.Emit.Lightweight/4.3.0": {
  2537. "type": "package",
  2538. "dependencies": {
  2539. "System.Reflection": "4.3.0",
  2540. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2541. "System.Reflection.Primitives": "4.3.0",
  2542. "System.Runtime": "4.3.0"
  2543. },
  2544. "compile": {
  2545. "ref/netstandard1.0/_._": {
  2546. "related": ".xml"
  2547. }
  2548. },
  2549. "runtime": {
  2550. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2551. }
  2552. },
  2553. "System.Reflection.Extensions/4.3.0": {
  2554. "type": "package",
  2555. "dependencies": {
  2556. "Microsoft.NETCore.Platforms": "1.1.0",
  2557. "Microsoft.NETCore.Targets": "1.1.0",
  2558. "System.Reflection": "4.3.0",
  2559. "System.Runtime": "4.3.0"
  2560. },
  2561. "compile": {
  2562. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2563. "related": ".xml"
  2564. }
  2565. }
  2566. },
  2567. "System.Reflection.Primitives/4.3.0": {
  2568. "type": "package",
  2569. "dependencies": {
  2570. "Microsoft.NETCore.Platforms": "1.1.0",
  2571. "Microsoft.NETCore.Targets": "1.1.0",
  2572. "System.Runtime": "4.3.0"
  2573. },
  2574. "compile": {
  2575. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2576. "related": ".xml"
  2577. }
  2578. }
  2579. },
  2580. "System.Reflection.TypeExtensions/4.3.0": {
  2581. "type": "package",
  2582. "dependencies": {
  2583. "System.Reflection": "4.3.0",
  2584. "System.Runtime": "4.3.0"
  2585. },
  2586. "compile": {
  2587. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2588. "related": ".xml"
  2589. }
  2590. },
  2591. "runtime": {
  2592. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2593. }
  2594. },
  2595. "System.Resources.ResourceManager/4.3.0": {
  2596. "type": "package",
  2597. "dependencies": {
  2598. "Microsoft.NETCore.Platforms": "1.1.0",
  2599. "Microsoft.NETCore.Targets": "1.1.0",
  2600. "System.Globalization": "4.3.0",
  2601. "System.Reflection": "4.3.0",
  2602. "System.Runtime": "4.3.0"
  2603. },
  2604. "compile": {
  2605. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2606. "related": ".xml"
  2607. }
  2608. }
  2609. },
  2610. "System.Runtime/4.3.0": {
  2611. "type": "package",
  2612. "dependencies": {
  2613. "Microsoft.NETCore.Platforms": "1.1.0",
  2614. "Microsoft.NETCore.Targets": "1.1.0"
  2615. },
  2616. "compile": {
  2617. "ref/netstandard1.5/System.Runtime.dll": {
  2618. "related": ".xml"
  2619. }
  2620. }
  2621. },
  2622. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2623. "type": "package",
  2624. "compile": {
  2625. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2626. "related": ".xml"
  2627. }
  2628. },
  2629. "runtime": {
  2630. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2631. "related": ".xml"
  2632. }
  2633. },
  2634. "build": {
  2635. "buildTransitive/netcoreapp3.1/_._": {}
  2636. }
  2637. },
  2638. "System.Runtime.Extensions/4.3.0": {
  2639. "type": "package",
  2640. "dependencies": {
  2641. "Microsoft.NETCore.Platforms": "1.1.0",
  2642. "Microsoft.NETCore.Targets": "1.1.0",
  2643. "System.Runtime": "4.3.0"
  2644. },
  2645. "compile": {
  2646. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2647. "related": ".xml"
  2648. }
  2649. }
  2650. },
  2651. "System.Runtime.Handles/4.3.0": {
  2652. "type": "package",
  2653. "dependencies": {
  2654. "Microsoft.NETCore.Platforms": "1.1.0",
  2655. "Microsoft.NETCore.Targets": "1.1.0",
  2656. "System.Runtime": "4.3.0"
  2657. },
  2658. "compile": {
  2659. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2660. "related": ".xml"
  2661. }
  2662. }
  2663. },
  2664. "System.Runtime.InteropServices/4.3.0": {
  2665. "type": "package",
  2666. "dependencies": {
  2667. "Microsoft.NETCore.Platforms": "1.1.0",
  2668. "Microsoft.NETCore.Targets": "1.1.0",
  2669. "System.Reflection": "4.3.0",
  2670. "System.Reflection.Primitives": "4.3.0",
  2671. "System.Runtime": "4.3.0",
  2672. "System.Runtime.Handles": "4.3.0"
  2673. },
  2674. "compile": {
  2675. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2676. }
  2677. },
  2678. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2679. "type": "package",
  2680. "dependencies": {
  2681. "System.Reflection": "4.3.0",
  2682. "System.Reflection.Extensions": "4.3.0",
  2683. "System.Resources.ResourceManager": "4.3.0",
  2684. "System.Runtime": "4.3.0",
  2685. "System.Runtime.InteropServices": "4.3.0",
  2686. "System.Threading": "4.3.0",
  2687. "runtime.native.System": "4.3.0"
  2688. },
  2689. "compile": {
  2690. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2691. },
  2692. "runtime": {
  2693. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2694. },
  2695. "runtimeTargets": {
  2696. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2697. "assetType": "runtime",
  2698. "rid": "unix"
  2699. },
  2700. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2701. "assetType": "runtime",
  2702. "rid": "win"
  2703. }
  2704. }
  2705. },
  2706. "System.Runtime.Numerics/4.3.0": {
  2707. "type": "package",
  2708. "dependencies": {
  2709. "System.Globalization": "4.3.0",
  2710. "System.Resources.ResourceManager": "4.3.0",
  2711. "System.Runtime": "4.3.0",
  2712. "System.Runtime.Extensions": "4.3.0"
  2713. },
  2714. "compile": {
  2715. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2716. "related": ".xml"
  2717. }
  2718. },
  2719. "runtime": {
  2720. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2721. }
  2722. },
  2723. "System.Runtime.Serialization.Primitives/4.1.1": {
  2724. "type": "package",
  2725. "dependencies": {
  2726. "System.Resources.ResourceManager": "4.0.1",
  2727. "System.Runtime": "4.1.0"
  2728. },
  2729. "compile": {
  2730. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2731. "related": ".xml"
  2732. }
  2733. },
  2734. "runtime": {
  2735. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2736. }
  2737. },
  2738. "System.Security.AccessControl/5.0.0": {
  2739. "type": "package",
  2740. "dependencies": {
  2741. "Microsoft.NETCore.Platforms": "5.0.0",
  2742. "System.Security.Principal.Windows": "5.0.0"
  2743. },
  2744. "compile": {
  2745. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2746. "related": ".xml"
  2747. }
  2748. },
  2749. "runtime": {
  2750. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2751. "related": ".xml"
  2752. }
  2753. },
  2754. "runtimeTargets": {
  2755. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2756. "assetType": "runtime",
  2757. "rid": "win"
  2758. }
  2759. }
  2760. },
  2761. "System.Security.Claims/4.3.0": {
  2762. "type": "package",
  2763. "dependencies": {
  2764. "System.Collections": "4.3.0",
  2765. "System.Globalization": "4.3.0",
  2766. "System.IO": "4.3.0",
  2767. "System.Resources.ResourceManager": "4.3.0",
  2768. "System.Runtime": "4.3.0",
  2769. "System.Runtime.Extensions": "4.3.0",
  2770. "System.Security.Principal": "4.3.0"
  2771. },
  2772. "compile": {
  2773. "ref/netstandard1.3/System.Security.Claims.dll": {
  2774. "related": ".xml"
  2775. }
  2776. },
  2777. "runtime": {
  2778. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2779. }
  2780. },
  2781. "System.Security.Cryptography.Algorithms/4.3.0": {
  2782. "type": "package",
  2783. "dependencies": {
  2784. "Microsoft.NETCore.Platforms": "1.1.0",
  2785. "System.Collections": "4.3.0",
  2786. "System.IO": "4.3.0",
  2787. "System.Resources.ResourceManager": "4.3.0",
  2788. "System.Runtime": "4.3.0",
  2789. "System.Runtime.Extensions": "4.3.0",
  2790. "System.Runtime.Handles": "4.3.0",
  2791. "System.Runtime.InteropServices": "4.3.0",
  2792. "System.Runtime.Numerics": "4.3.0",
  2793. "System.Security.Cryptography.Encoding": "4.3.0",
  2794. "System.Security.Cryptography.Primitives": "4.3.0",
  2795. "System.Text.Encoding": "4.3.0",
  2796. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2797. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2798. },
  2799. "compile": {
  2800. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2801. },
  2802. "runtimeTargets": {
  2803. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2804. "assetType": "runtime",
  2805. "rid": "osx"
  2806. },
  2807. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2808. "assetType": "runtime",
  2809. "rid": "unix"
  2810. },
  2811. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2812. "assetType": "runtime",
  2813. "rid": "win"
  2814. }
  2815. }
  2816. },
  2817. "System.Security.Cryptography.Cng/5.0.0": {
  2818. "type": "package",
  2819. "dependencies": {
  2820. "System.Formats.Asn1": "5.0.0"
  2821. },
  2822. "compile": {
  2823. "ref/netcoreapp3.0/_._": {
  2824. "related": ".xml"
  2825. }
  2826. },
  2827. "runtime": {
  2828. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2829. "related": ".xml"
  2830. }
  2831. },
  2832. "runtimeTargets": {
  2833. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2834. "assetType": "runtime",
  2835. "rid": "win"
  2836. }
  2837. }
  2838. },
  2839. "System.Security.Cryptography.Csp/4.3.0": {
  2840. "type": "package",
  2841. "dependencies": {
  2842. "Microsoft.NETCore.Platforms": "1.1.0",
  2843. "System.IO": "4.3.0",
  2844. "System.Reflection": "4.3.0",
  2845. "System.Resources.ResourceManager": "4.3.0",
  2846. "System.Runtime": "4.3.0",
  2847. "System.Runtime.Extensions": "4.3.0",
  2848. "System.Runtime.Handles": "4.3.0",
  2849. "System.Runtime.InteropServices": "4.3.0",
  2850. "System.Security.Cryptography.Algorithms": "4.3.0",
  2851. "System.Security.Cryptography.Encoding": "4.3.0",
  2852. "System.Security.Cryptography.Primitives": "4.3.0",
  2853. "System.Text.Encoding": "4.3.0",
  2854. "System.Threading": "4.3.0"
  2855. },
  2856. "compile": {
  2857. "ref/netstandard1.3/_._": {}
  2858. },
  2859. "runtimeTargets": {
  2860. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2861. "assetType": "runtime",
  2862. "rid": "unix"
  2863. },
  2864. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2865. "assetType": "runtime",
  2866. "rid": "win"
  2867. }
  2868. }
  2869. },
  2870. "System.Security.Cryptography.Encoding/4.3.0": {
  2871. "type": "package",
  2872. "dependencies": {
  2873. "Microsoft.NETCore.Platforms": "1.1.0",
  2874. "System.Collections": "4.3.0",
  2875. "System.Collections.Concurrent": "4.3.0",
  2876. "System.Linq": "4.3.0",
  2877. "System.Resources.ResourceManager": "4.3.0",
  2878. "System.Runtime": "4.3.0",
  2879. "System.Runtime.Extensions": "4.3.0",
  2880. "System.Runtime.Handles": "4.3.0",
  2881. "System.Runtime.InteropServices": "4.3.0",
  2882. "System.Security.Cryptography.Primitives": "4.3.0",
  2883. "System.Text.Encoding": "4.3.0",
  2884. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2885. },
  2886. "compile": {
  2887. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2888. "related": ".xml"
  2889. }
  2890. },
  2891. "runtimeTargets": {
  2892. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2893. "assetType": "runtime",
  2894. "rid": "unix"
  2895. },
  2896. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2897. "assetType": "runtime",
  2898. "rid": "win"
  2899. }
  2900. }
  2901. },
  2902. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2903. "type": "package",
  2904. "dependencies": {
  2905. "System.Collections": "4.3.0",
  2906. "System.IO": "4.3.0",
  2907. "System.Resources.ResourceManager": "4.3.0",
  2908. "System.Runtime": "4.3.0",
  2909. "System.Runtime.Extensions": "4.3.0",
  2910. "System.Runtime.Handles": "4.3.0",
  2911. "System.Runtime.InteropServices": "4.3.0",
  2912. "System.Runtime.Numerics": "4.3.0",
  2913. "System.Security.Cryptography.Algorithms": "4.3.0",
  2914. "System.Security.Cryptography.Encoding": "4.3.0",
  2915. "System.Security.Cryptography.Primitives": "4.3.0",
  2916. "System.Text.Encoding": "4.3.0",
  2917. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2918. },
  2919. "compile": {
  2920. "ref/netstandard1.6/_._": {}
  2921. },
  2922. "runtime": {
  2923. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2924. },
  2925. "runtimeTargets": {
  2926. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2927. "assetType": "runtime",
  2928. "rid": "unix"
  2929. }
  2930. }
  2931. },
  2932. "System.Security.Cryptography.Pkcs/5.0.0": {
  2933. "type": "package",
  2934. "dependencies": {
  2935. "System.Formats.Asn1": "5.0.0",
  2936. "System.Security.Cryptography.Cng": "5.0.0"
  2937. },
  2938. "compile": {
  2939. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2940. "related": ".xml"
  2941. }
  2942. },
  2943. "runtime": {
  2944. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2945. "related": ".xml"
  2946. }
  2947. },
  2948. "runtimeTargets": {
  2949. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2950. "assetType": "runtime",
  2951. "rid": "win"
  2952. }
  2953. }
  2954. },
  2955. "System.Security.Cryptography.Primitives/4.3.0": {
  2956. "type": "package",
  2957. "dependencies": {
  2958. "System.Diagnostics.Debug": "4.3.0",
  2959. "System.Globalization": "4.3.0",
  2960. "System.IO": "4.3.0",
  2961. "System.Resources.ResourceManager": "4.3.0",
  2962. "System.Runtime": "4.3.0",
  2963. "System.Threading": "4.3.0",
  2964. "System.Threading.Tasks": "4.3.0"
  2965. },
  2966. "compile": {
  2967. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2968. },
  2969. "runtime": {
  2970. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2971. }
  2972. },
  2973. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2974. "type": "package",
  2975. "compile": {
  2976. "ref/netstandard2.0/_._": {
  2977. "related": ".xml"
  2978. }
  2979. },
  2980. "runtime": {
  2981. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2982. },
  2983. "runtimeTargets": {
  2984. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2985. "assetType": "runtime",
  2986. "rid": "win"
  2987. }
  2988. }
  2989. },
  2990. "System.Security.Cryptography.X509Certificates/4.3.2": {
  2991. "type": "package",
  2992. "dependencies": {
  2993. "Microsoft.NETCore.Platforms": "1.1.0",
  2994. "System.Collections": "4.3.0",
  2995. "System.Diagnostics.Debug": "4.3.0",
  2996. "System.Globalization": "4.3.0",
  2997. "System.Globalization.Calendars": "4.3.0",
  2998. "System.IO": "4.3.0",
  2999. "System.IO.FileSystem": "4.3.0",
  3000. "System.IO.FileSystem.Primitives": "4.3.0",
  3001. "System.Resources.ResourceManager": "4.3.0",
  3002. "System.Runtime": "4.3.0",
  3003. "System.Runtime.Extensions": "4.3.0",
  3004. "System.Runtime.Handles": "4.3.0",
  3005. "System.Runtime.InteropServices": "4.3.0",
  3006. "System.Runtime.Numerics": "4.3.0",
  3007. "System.Security.Cryptography.Algorithms": "4.3.0",
  3008. "System.Security.Cryptography.Cng": "4.3.0",
  3009. "System.Security.Cryptography.Csp": "4.3.0",
  3010. "System.Security.Cryptography.Encoding": "4.3.0",
  3011. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3012. "System.Security.Cryptography.Primitives": "4.3.0",
  3013. "System.Text.Encoding": "4.3.0",
  3014. "System.Threading": "4.3.0",
  3015. "runtime.native.System": "4.3.0",
  3016. "runtime.native.System.Net.Http": "4.3.0",
  3017. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  3018. },
  3019. "compile": {
  3020. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3021. },
  3022. "runtimeTargets": {
  3023. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3024. "assetType": "runtime",
  3025. "rid": "unix"
  3026. },
  3027. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3028. "assetType": "runtime",
  3029. "rid": "win"
  3030. }
  3031. }
  3032. },
  3033. "System.Security.Permissions/4.7.0": {
  3034. "type": "package",
  3035. "dependencies": {
  3036. "System.Security.AccessControl": "4.7.0",
  3037. "System.Windows.Extensions": "4.7.0"
  3038. },
  3039. "compile": {
  3040. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3041. "related": ".xml"
  3042. }
  3043. },
  3044. "runtime": {
  3045. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3046. "related": ".xml"
  3047. }
  3048. }
  3049. },
  3050. "System.Security.Principal/4.3.0": {
  3051. "type": "package",
  3052. "dependencies": {
  3053. "System.Runtime": "4.3.0"
  3054. },
  3055. "compile": {
  3056. "ref/netstandard1.0/System.Security.Principal.dll": {
  3057. "related": ".xml"
  3058. }
  3059. },
  3060. "runtime": {
  3061. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3062. }
  3063. },
  3064. "System.Security.Principal.Windows/5.0.0": {
  3065. "type": "package",
  3066. "compile": {
  3067. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3068. "related": ".xml"
  3069. }
  3070. },
  3071. "runtime": {
  3072. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3073. "related": ".xml"
  3074. }
  3075. },
  3076. "runtimeTargets": {
  3077. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3078. "assetType": "runtime",
  3079. "rid": "unix"
  3080. },
  3081. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3082. "assetType": "runtime",
  3083. "rid": "win"
  3084. }
  3085. }
  3086. },
  3087. "System.Text.Encoding/4.3.0": {
  3088. "type": "package",
  3089. "dependencies": {
  3090. "Microsoft.NETCore.Platforms": "1.1.0",
  3091. "Microsoft.NETCore.Targets": "1.1.0",
  3092. "System.Runtime": "4.3.0"
  3093. },
  3094. "compile": {
  3095. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3096. "related": ".xml"
  3097. }
  3098. }
  3099. },
  3100. "System.Text.Encoding.CodePages/5.0.0": {
  3101. "type": "package",
  3102. "dependencies": {
  3103. "Microsoft.NETCore.Platforms": "5.0.0"
  3104. },
  3105. "compile": {
  3106. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3107. "related": ".xml"
  3108. }
  3109. },
  3110. "runtime": {
  3111. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3112. "related": ".xml"
  3113. }
  3114. },
  3115. "runtimeTargets": {
  3116. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3117. "assetType": "runtime",
  3118. "rid": "win"
  3119. }
  3120. }
  3121. },
  3122. "System.Text.Encoding.Extensions/4.3.0": {
  3123. "type": "package",
  3124. "dependencies": {
  3125. "Microsoft.NETCore.Platforms": "1.1.0",
  3126. "Microsoft.NETCore.Targets": "1.1.0",
  3127. "System.Runtime": "4.3.0",
  3128. "System.Text.Encoding": "4.3.0"
  3129. },
  3130. "compile": {
  3131. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3132. "related": ".xml"
  3133. }
  3134. }
  3135. },
  3136. "System.Text.Json/4.7.2": {
  3137. "type": "package",
  3138. "compile": {
  3139. "lib/netcoreapp3.0/System.Text.Json.dll": {
  3140. "related": ".xml"
  3141. }
  3142. },
  3143. "runtime": {
  3144. "lib/netcoreapp3.0/System.Text.Json.dll": {
  3145. "related": ".xml"
  3146. }
  3147. }
  3148. },
  3149. "System.Text.RegularExpressions/4.3.0": {
  3150. "type": "package",
  3151. "dependencies": {
  3152. "System.Runtime": "4.3.0"
  3153. },
  3154. "compile": {
  3155. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3156. },
  3157. "runtime": {
  3158. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3159. }
  3160. },
  3161. "System.Threading/4.3.0": {
  3162. "type": "package",
  3163. "dependencies": {
  3164. "System.Runtime": "4.3.0",
  3165. "System.Threading.Tasks": "4.3.0"
  3166. },
  3167. "compile": {
  3168. "ref/netstandard1.3/System.Threading.dll": {
  3169. "related": ".xml"
  3170. }
  3171. },
  3172. "runtime": {
  3173. "lib/netstandard1.3/System.Threading.dll": {}
  3174. }
  3175. },
  3176. "System.Threading.Tasks/4.3.0": {
  3177. "type": "package",
  3178. "dependencies": {
  3179. "Microsoft.NETCore.Platforms": "1.1.0",
  3180. "Microsoft.NETCore.Targets": "1.1.0",
  3181. "System.Runtime": "4.3.0"
  3182. },
  3183. "compile": {
  3184. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3185. "related": ".xml"
  3186. }
  3187. }
  3188. },
  3189. "System.Threading.Tasks.Extensions/4.5.2": {
  3190. "type": "package",
  3191. "compile": {
  3192. "ref/netcoreapp2.1/_._": {}
  3193. },
  3194. "runtime": {
  3195. "lib/netcoreapp2.1/_._": {}
  3196. }
  3197. },
  3198. "System.Threading.Timer/4.3.0": {
  3199. "type": "package",
  3200. "dependencies": {
  3201. "Microsoft.NETCore.Platforms": "1.1.0",
  3202. "Microsoft.NETCore.Targets": "1.1.0",
  3203. "System.Runtime": "4.3.0"
  3204. },
  3205. "compile": {
  3206. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3207. "related": ".xml"
  3208. }
  3209. }
  3210. },
  3211. "System.Windows.Extensions/4.7.0": {
  3212. "type": "package",
  3213. "dependencies": {
  3214. "System.Drawing.Common": "4.7.0"
  3215. },
  3216. "compile": {
  3217. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3218. "related": ".xml"
  3219. }
  3220. },
  3221. "runtime": {
  3222. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3223. "related": ".xml"
  3224. }
  3225. },
  3226. "runtimeTargets": {
  3227. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3228. "assetType": "runtime",
  3229. "rid": "win"
  3230. }
  3231. }
  3232. },
  3233. "System.Xml.ReaderWriter/4.3.0": {
  3234. "type": "package",
  3235. "dependencies": {
  3236. "System.Collections": "4.3.0",
  3237. "System.Diagnostics.Debug": "4.3.0",
  3238. "System.Globalization": "4.3.0",
  3239. "System.IO": "4.3.0",
  3240. "System.IO.FileSystem": "4.3.0",
  3241. "System.IO.FileSystem.Primitives": "4.3.0",
  3242. "System.Resources.ResourceManager": "4.3.0",
  3243. "System.Runtime": "4.3.0",
  3244. "System.Runtime.Extensions": "4.3.0",
  3245. "System.Runtime.InteropServices": "4.3.0",
  3246. "System.Text.Encoding": "4.3.0",
  3247. "System.Text.Encoding.Extensions": "4.3.0",
  3248. "System.Text.RegularExpressions": "4.3.0",
  3249. "System.Threading.Tasks": "4.3.0",
  3250. "System.Threading.Tasks.Extensions": "4.3.0"
  3251. },
  3252. "compile": {
  3253. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3254. "related": ".xml"
  3255. }
  3256. },
  3257. "runtime": {
  3258. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3259. }
  3260. },
  3261. "System.Xml.XDocument/4.3.0": {
  3262. "type": "package",
  3263. "dependencies": {
  3264. "System.Collections": "4.3.0",
  3265. "System.Diagnostics.Debug": "4.3.0",
  3266. "System.Diagnostics.Tools": "4.3.0",
  3267. "System.Globalization": "4.3.0",
  3268. "System.IO": "4.3.0",
  3269. "System.Reflection": "4.3.0",
  3270. "System.Resources.ResourceManager": "4.3.0",
  3271. "System.Runtime": "4.3.0",
  3272. "System.Runtime.Extensions": "4.3.0",
  3273. "System.Text.Encoding": "4.3.0",
  3274. "System.Threading": "4.3.0",
  3275. "System.Xml.ReaderWriter": "4.3.0"
  3276. },
  3277. "compile": {
  3278. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3279. "related": ".xml"
  3280. }
  3281. },
  3282. "runtime": {
  3283. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3284. }
  3285. },
  3286. "System.Xml.XmlDocument/4.3.0": {
  3287. "type": "package",
  3288. "dependencies": {
  3289. "System.Collections": "4.3.0",
  3290. "System.Diagnostics.Debug": "4.3.0",
  3291. "System.Globalization": "4.3.0",
  3292. "System.IO": "4.3.0",
  3293. "System.Resources.ResourceManager": "4.3.0",
  3294. "System.Runtime": "4.3.0",
  3295. "System.Runtime.Extensions": "4.3.0",
  3296. "System.Text.Encoding": "4.3.0",
  3297. "System.Threading": "4.3.0",
  3298. "System.Xml.ReaderWriter": "4.3.0"
  3299. },
  3300. "compile": {
  3301. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3302. "related": ".xml"
  3303. }
  3304. },
  3305. "runtime": {
  3306. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3307. }
  3308. },
  3309. "System.Xml.XPath/4.3.0": {
  3310. "type": "package",
  3311. "dependencies": {
  3312. "System.Collections": "4.3.0",
  3313. "System.Diagnostics.Debug": "4.3.0",
  3314. "System.Globalization": "4.3.0",
  3315. "System.IO": "4.3.0",
  3316. "System.Resources.ResourceManager": "4.3.0",
  3317. "System.Runtime": "4.3.0",
  3318. "System.Runtime.Extensions": "4.3.0",
  3319. "System.Threading": "4.3.0",
  3320. "System.Xml.ReaderWriter": "4.3.0"
  3321. },
  3322. "compile": {
  3323. "ref/netstandard1.3/System.Xml.XPath.dll": {
  3324. "related": ".xml"
  3325. }
  3326. },
  3327. "runtime": {
  3328. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3329. }
  3330. },
  3331. "System.Xml.XPath.XmlDocument/4.3.0": {
  3332. "type": "package",
  3333. "dependencies": {
  3334. "System.Collections": "4.3.0",
  3335. "System.Globalization": "4.3.0",
  3336. "System.IO": "4.3.0",
  3337. "System.Resources.ResourceManager": "4.3.0",
  3338. "System.Runtime": "4.3.0",
  3339. "System.Runtime.Extensions": "4.3.0",
  3340. "System.Threading": "4.3.0",
  3341. "System.Xml.ReaderWriter": "4.3.0",
  3342. "System.Xml.XPath": "4.3.0",
  3343. "System.Xml.XmlDocument": "4.3.0"
  3344. },
  3345. "compile": {
  3346. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  3347. "related": ".xml"
  3348. }
  3349. },
  3350. "runtime": {
  3351. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  3352. }
  3353. },
  3354. "Unity.Abstractions/5.11.7": {
  3355. "type": "package",
  3356. "dependencies": {
  3357. "System.Threading.Tasks.Extensions": "4.5.2"
  3358. },
  3359. "compile": {
  3360. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  3361. "related": ".pdb"
  3362. }
  3363. },
  3364. "runtime": {
  3365. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  3366. "related": ".pdb"
  3367. }
  3368. }
  3369. },
  3370. "Unity.Container/5.11.11": {
  3371. "type": "package",
  3372. "dependencies": {
  3373. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  3374. "Unity.Abstractions": "5.11.7"
  3375. },
  3376. "compile": {
  3377. "lib/netcoreapp3.0/Unity.Container.dll": {
  3378. "related": ".pdb"
  3379. }
  3380. },
  3381. "runtime": {
  3382. "lib/netcoreapp3.0/Unity.Container.dll": {
  3383. "related": ".pdb"
  3384. }
  3385. }
  3386. },
  3387. "Unity.Interception/5.11.1": {
  3388. "type": "package",
  3389. "dependencies": {
  3390. "System.Reflection.Emit": "4.3.0",
  3391. "Unity.Container": "5.11.1"
  3392. },
  3393. "compile": {
  3394. "lib/netcoreapp2.0/Unity.Interception.dll": {
  3395. "related": ".pdb"
  3396. }
  3397. },
  3398. "runtime": {
  3399. "lib/netcoreapp2.0/Unity.Interception.dll": {
  3400. "related": ".pdb"
  3401. }
  3402. }
  3403. },
  3404. "WpfAnimatedGif/2.0.0": {
  3405. "type": "package",
  3406. "compile": {
  3407. "lib/netcoreapp3.0/WpfAnimatedGif.dll": {
  3408. "related": ".pdb;.xml"
  3409. }
  3410. },
  3411. "runtime": {
  3412. "lib/netcoreapp3.0/WpfAnimatedGif.dll": {
  3413. "related": ".pdb;.xml"
  3414. }
  3415. },
  3416. "frameworkReferences": [
  3417. "Microsoft.WindowsDesktop.App.WPF"
  3418. ]
  3419. },
  3420. "YamlDotNet/11.2.1": {
  3421. "type": "package",
  3422. "compile": {
  3423. "lib/netstandard2.1/YamlDotNet.dll": {
  3424. "related": ".xml"
  3425. }
  3426. },
  3427. "runtime": {
  3428. "lib/netstandard2.1/YamlDotNet.dll": {
  3429. "related": ".xml"
  3430. }
  3431. }
  3432. },
  3433. "SHJX.Service.Common/1.0.0": {
  3434. "type": "project",
  3435. "framework": ".NETCoreApp,Version=v6.0",
  3436. "dependencies": {
  3437. "EPPlus": "5.6.4",
  3438. "LiveCharts": "0.9.7",
  3439. "LiveCharts.Wpf": "0.9.7",
  3440. "MahApps.Metro": "2.4.5",
  3441. "Microsoft.Data.Sqlite.Core": "5.0.6",
  3442. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3443. "Microsoft.Extensions.Configuration": "5.0.0",
  3444. "Microsoft.Extensions.Hosting": "5.0.0",
  3445. "Microsoft.Extensions.Logging": "7.0.0",
  3446. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  3447. "Microsoft.Extensions.Logging.Console": "5.0.0",
  3448. "Panuon.UI.Silver": "1.1.3.4",
  3449. "Prism.Core": "8.1.97",
  3450. "Prism.Unity": "8.1.97",
  3451. "SHJX.Service.Model": "1.0.0",
  3452. "Serilog": "2.10.0",
  3453. "Serilog.Enrichers.Thread": "3.1.0",
  3454. "Serilog.Extensions.Logging": "3.0.1",
  3455. "Serilog.Formatting.Compact": "1.1.0",
  3456. "Serilog.Settings.Configuration": "3.1.0",
  3457. "Serilog.Sinks.Console": "3.1.1",
  3458. "Serilog.Sinks.File": "4.1.0",
  3459. "System.Data.SQLite.Core": "1.0.114",
  3460. "System.Data.SqlClient": "4.8.2",
  3461. "System.Drawing.Common": "7.0.0",
  3462. "Unity.Interception": "5.11.1",
  3463. "YamlDotNet": "11.2.1",
  3464. "shjxCamera": "1.0.0"
  3465. },
  3466. "compile": {
  3467. "bin/placeholder/SHJX.Service.Common.dll": {}
  3468. },
  3469. "runtime": {
  3470. "bin/placeholder/SHJX.Service.Common.dll": {}
  3471. },
  3472. "frameworkReferences": [
  3473. "Microsoft.WindowsDesktop.App.WPF"
  3474. ]
  3475. },
  3476. "SHJX.Service.Control/1.0.0": {
  3477. "type": "project",
  3478. "framework": ".NETCoreApp,Version=v6.0",
  3479. "dependencies": {
  3480. "Autofac": "6.3.0",
  3481. "Autofac.Extensions.DependencyInjection": "7.2.0",
  3482. "Autofac.Extras.DynamicProxy": "6.0.0",
  3483. "Castle.Core": "4.4.1",
  3484. "EaseDapper": "0.1.4.18",
  3485. "EaseScheduler": "0.0.0.6",
  3486. "Mapster": "7.2.0",
  3487. "Microsoft.Data.Sqlite.Core": "6.0.1",
  3488. "Microsoft.Extensions.Caching.Memory": "6.0.0",
  3489. "Microsoft.Extensions.Logging": "7.0.0",
  3490. "NPOI": "2.5.6",
  3491. "Polly": "7.2.2",
  3492. "SHJX.Service.PortClient": "1.0.0",
  3493. "System.Drawing.Common": "8.0.4",
  3494. "shjxCamera": "1.0.0"
  3495. },
  3496. "compile": {
  3497. "bin/placeholder/SHJX.Service.Control.dll": {}
  3498. },
  3499. "runtime": {
  3500. "bin/placeholder/SHJX.Service.Control.dll": {}
  3501. }
  3502. },
  3503. "SHJX.Service.Model/1.0.0": {
  3504. "type": "project",
  3505. "framework": ".NETCoreApp,Version=v6.0",
  3506. "dependencies": {
  3507. "Panuon.UI.Silver": "1.1.3.4",
  3508. "Prism.Core": "8.1.97"
  3509. },
  3510. "compile": {
  3511. "bin/placeholder/SHJX.Service.Model.dll": {}
  3512. },
  3513. "runtime": {
  3514. "bin/placeholder/SHJX.Service.Model.dll": {}
  3515. },
  3516. "frameworkReferences": [
  3517. "Microsoft.WindowsDesktop.App.WPF"
  3518. ]
  3519. },
  3520. "SHJX.Service.PortClient/1.0.0": {
  3521. "type": "project",
  3522. "framework": ".NETCoreApp,Version=v6.0",
  3523. "dependencies": {
  3524. "NModbus4.NetCore": "2.0.1",
  3525. "SHJX.Service.Common": "1.0.0"
  3526. },
  3527. "compile": {
  3528. "bin/placeholder/SHJX.Service.PortClient.dll": {}
  3529. },
  3530. "runtime": {
  3531. "bin/placeholder/SHJX.Service.PortClient.dll": {}
  3532. },
  3533. "frameworkReferences": [
  3534. "Microsoft.WindowsDesktop.App.WPF"
  3535. ]
  3536. },
  3537. "SHJX.Service.Resource/1.0.0": {
  3538. "type": "project",
  3539. "framework": ".NETCoreApp,Version=v6.0",
  3540. "dependencies": {
  3541. "WpfAnimatedGif": "2.0.0"
  3542. },
  3543. "compile": {
  3544. "bin/placeholder/SHJX.Service.Resource.dll": {}
  3545. },
  3546. "runtime": {
  3547. "bin/placeholder/SHJX.Service.Resource.dll": {}
  3548. },
  3549. "frameworkReferences": [
  3550. "Microsoft.WindowsDesktop.App.WPF"
  3551. ]
  3552. },
  3553. "shjxCamera/1.0.0": {
  3554. "type": "project",
  3555. "framework": ".NETCoreApp,Version=v6.0",
  3556. "dependencies": {
  3557. "AForge": "2.2.5",
  3558. "Microsoft.Extensions.Logging": "7.0.0",
  3559. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  3560. "System.Diagnostics.DiagnosticSource": "7.0.2",
  3561. "System.Drawing.Common": "7.0.0"
  3562. },
  3563. "compile": {
  3564. "bin/placeholder/shjxCamera.dll": {}
  3565. },
  3566. "runtime": {
  3567. "bin/placeholder/shjxCamera.dll": {}
  3568. }
  3569. }
  3570. }
  3571. },
  3572. "libraries": {
  3573. "AForge/2.2.5": {
  3574. "sha512": "clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==",
  3575. "type": "package",
  3576. "path": "aforge/2.2.5",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "aforge.2.2.5.nupkg.sha512",
  3581. "aforge.nuspec",
  3582. "lib/AForge.dll",
  3583. "lib/AForge.xml"
  3584. ]
  3585. },
  3586. "Autofac/6.3.0": {
  3587. "sha512": "gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==",
  3588. "type": "package",
  3589. "path": "autofac/6.3.0",
  3590. "files": [
  3591. ".nupkg.metadata",
  3592. ".signature.p7s",
  3593. "autofac.6.3.0.nupkg.sha512",
  3594. "autofac.nuspec",
  3595. "icon.png",
  3596. "lib/net5.0/Autofac.dll",
  3597. "lib/net5.0/Autofac.pdb",
  3598. "lib/net5.0/Autofac.xml",
  3599. "lib/netstandard2.0/Autofac.dll",
  3600. "lib/netstandard2.0/Autofac.pdb",
  3601. "lib/netstandard2.0/Autofac.xml",
  3602. "lib/netstandard2.1/Autofac.dll",
  3603. "lib/netstandard2.1/Autofac.pdb",
  3604. "lib/netstandard2.1/Autofac.xml"
  3605. ]
  3606. },
  3607. "Autofac.Extensions.DependencyInjection/7.2.0": {
  3608. "sha512": "S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==",
  3609. "type": "package",
  3610. "path": "autofac.extensions.dependencyinjection/7.2.0",
  3611. "files": [
  3612. ".nupkg.metadata",
  3613. ".signature.p7s",
  3614. "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512",
  3615. "autofac.extensions.dependencyinjection.nuspec",
  3616. "icon.png",
  3617. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  3618. "lib/net5.0/Autofac.Extensions.DependencyInjection.pdb",
  3619. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  3620. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  3621. "lib/net6.0/Autofac.Extensions.DependencyInjection.pdb",
  3622. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  3623. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3624. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3625. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3626. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3627. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3628. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3629. ]
  3630. },
  3631. "Autofac.Extras.DynamicProxy/6.0.0": {
  3632. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3633. "type": "package",
  3634. "path": "autofac.extras.dynamicproxy/6.0.0",
  3635. "files": [
  3636. ".nupkg.metadata",
  3637. ".signature.p7s",
  3638. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3639. "autofac.extras.dynamicproxy.nuspec",
  3640. "icon.png",
  3641. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3642. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3643. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3644. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3645. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3646. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3647. ]
  3648. },
  3649. "BouncyCastle.NetCore/1.8.5": {
  3650. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3651. "type": "package",
  3652. "path": "bouncycastle.netcore/1.8.5",
  3653. "files": [
  3654. ".nupkg.metadata",
  3655. ".signature.p7s",
  3656. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3657. "bouncycastle.netcore.nuspec",
  3658. "lib/Mono/BouncyCastle.Crypto.dll",
  3659. "lib/Mono/BouncyCastle.Crypto.xml",
  3660. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3661. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3662. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3663. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3664. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3665. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3666. "lib/net20/BouncyCastle.Crypto.dll",
  3667. "lib/net20/BouncyCastle.Crypto.xml",
  3668. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3669. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3670. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3671. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3672. ]
  3673. },
  3674. "Castle.Core/4.4.1": {
  3675. "sha512": "zanbjWC0Y05gbx4eGXkzVycOQqVOFVeCjVsDSyuao9P4mtN1w3WxxTo193NGC7j3o2u3AJRswaoC6hEbnGACnQ==",
  3676. "type": "package",
  3677. "path": "castle.core/4.4.1",
  3678. "files": [
  3679. ".nupkg.metadata",
  3680. ".signature.p7s",
  3681. "ASL - Apache Software Foundation License.txt",
  3682. "CHANGELOG.md",
  3683. "LICENSE",
  3684. "castle.core.4.4.1.nupkg.sha512",
  3685. "castle.core.nuspec",
  3686. "lib/net35/Castle.Core.dll",
  3687. "lib/net35/Castle.Core.xml",
  3688. "lib/net40/Castle.Core.dll",
  3689. "lib/net40/Castle.Core.xml",
  3690. "lib/net45/Castle.Core.dll",
  3691. "lib/net45/Castle.Core.xml",
  3692. "lib/netstandard1.3/Castle.Core.dll",
  3693. "lib/netstandard1.3/Castle.Core.xml",
  3694. "lib/netstandard1.5/Castle.Core.dll",
  3695. "lib/netstandard1.5/Castle.Core.xml",
  3696. "readme.txt"
  3697. ]
  3698. },
  3699. "ControlzEx/4.4.0": {
  3700. "sha512": "pZ5z4hYWwE4R13UMCVs6vII//nL7hz+Nwn4oJlnsZJRGqJNy6Z9KnJiTZfly6lKFu0pMc1aWBZpx+VqFTQKP1Q==",
  3701. "type": "package",
  3702. "path": "controlzex/4.4.0",
  3703. "files": [
  3704. ".nupkg.metadata",
  3705. ".signature.p7s",
  3706. "controlzex.4.4.0.nupkg.sha512",
  3707. "controlzex.nuspec",
  3708. "lib/net45/ControlzEx.dll",
  3709. "lib/net45/ControlzEx.pdb",
  3710. "lib/net45/ControlzEx.xml",
  3711. "lib/net462/ControlzEx.dll",
  3712. "lib/net462/ControlzEx.pdb",
  3713. "lib/net462/ControlzEx.xml",
  3714. "lib/netcoreapp3.0/ControlzEx.dll",
  3715. "lib/netcoreapp3.0/ControlzEx.pdb",
  3716. "lib/netcoreapp3.0/ControlzEx.xml",
  3717. "lib/netcoreapp3.1/ControlzEx.dll",
  3718. "lib/netcoreapp3.1/ControlzEx.pdb",
  3719. "lib/netcoreapp3.1/ControlzEx.xml",
  3720. "logo-mini.png"
  3721. ]
  3722. },
  3723. "Dapper/2.0.123": {
  3724. "sha512": "RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==",
  3725. "type": "package",
  3726. "path": "dapper/2.0.123",
  3727. "files": [
  3728. ".nupkg.metadata",
  3729. ".signature.p7s",
  3730. "Dapper.png",
  3731. "dapper.2.0.123.nupkg.sha512",
  3732. "dapper.nuspec",
  3733. "lib/net461/Dapper.dll",
  3734. "lib/net461/Dapper.xml",
  3735. "lib/net5.0/Dapper.dll",
  3736. "lib/net5.0/Dapper.xml",
  3737. "lib/netstandard2.0/Dapper.dll",
  3738. "lib/netstandard2.0/Dapper.xml"
  3739. ]
  3740. },
  3741. "EaseDapper/0.1.4.18": {
  3742. "sha512": "6uznqEd+roUxWzZjc9POUosA0v+/u/jTC15l9P/PnN/nfFaty9DfAJhRu5+yMB5upCRbyQbpvdHbnVgMIJNpRg==",
  3743. "type": "package",
  3744. "path": "easedapper/0.1.4.18",
  3745. "files": [
  3746. ".nupkg.metadata",
  3747. ".signature.p7s",
  3748. "easedapper.0.1.4.18.nupkg.sha512",
  3749. "easedapper.nuspec",
  3750. "lib/netcoreapp3.1/EaseDapper.dll"
  3751. ]
  3752. },
  3753. "EaseScheduler/0.0.0.6": {
  3754. "sha512": "jIcjRoceKuhHWzYGYZRnj9ybN00VW0ITreUuNBV2zxxr7FVGOeSoBYBJXkCE8SdR1ya7xdUUBoFCv7K+j8/A8w==",
  3755. "type": "package",
  3756. "path": "easescheduler/0.0.0.6",
  3757. "files": [
  3758. ".nupkg.metadata",
  3759. ".signature.p7s",
  3760. "easescheduler.0.0.0.6.nupkg.sha512",
  3761. "easescheduler.nuspec",
  3762. "lib/net6.0/EaseScheduler.dll"
  3763. ]
  3764. },
  3765. "EPPlus/5.6.4": {
  3766. "sha512": "JpkTI30hZnNcXis/EEbVE0dflVQD8MXrEMEt2HGZsmdIKnMw1ezqeHlbCIpvyWGNjFLizpZKd3nMoFuJWtrNIw==",
  3767. "type": "package",
  3768. "path": "epplus/5.6.4",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "EPPlusLogo.png",
  3773. "epplus.5.6.4.nupkg.sha512",
  3774. "epplus.nuspec",
  3775. "lib/net35/EPPlus.dll",
  3776. "lib/net35/EPPlus.xml",
  3777. "lib/net40/EPPlus.dll",
  3778. "lib/net40/EPPlus.xml",
  3779. "lib/net45/EPPlus.dll",
  3780. "lib/net45/EPPlus.xml",
  3781. "lib/net5.0/EPPlus.dll",
  3782. "lib/net5.0/EPPlus.xml",
  3783. "lib/netstandard2.0/EPPlus.dll",
  3784. "lib/netstandard2.0/EPPlus.xml",
  3785. "lib/netstandard2.1/EPPlus.dll",
  3786. "lib/netstandard2.1/EPPlus.xml",
  3787. "license.md",
  3788. "readme.txt"
  3789. ]
  3790. },
  3791. "Google.Protobuf/3.14.0": {
  3792. "sha512": "9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==",
  3793. "type": "package",
  3794. "path": "google.protobuf/3.14.0",
  3795. "files": [
  3796. ".nupkg.metadata",
  3797. ".signature.p7s",
  3798. "google.protobuf.3.14.0.nupkg.sha512",
  3799. "google.protobuf.nuspec",
  3800. "lib/net45/Google.Protobuf.dll",
  3801. "lib/net45/Google.Protobuf.pdb",
  3802. "lib/net45/Google.Protobuf.xml",
  3803. "lib/netstandard1.1/Google.Protobuf.dll",
  3804. "lib/netstandard1.1/Google.Protobuf.pdb",
  3805. "lib/netstandard1.1/Google.Protobuf.xml",
  3806. "lib/netstandard2.0/Google.Protobuf.dll",
  3807. "lib/netstandard2.0/Google.Protobuf.pdb",
  3808. "lib/netstandard2.0/Google.Protobuf.xml"
  3809. ]
  3810. },
  3811. "K4os.Compression.LZ4/1.2.6": {
  3812. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  3813. "type": "package",
  3814. "path": "k4os.compression.lz4/1.2.6",
  3815. "files": [
  3816. ".nupkg.metadata",
  3817. ".signature.p7s",
  3818. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  3819. "k4os.compression.lz4.nuspec",
  3820. "lib/net45/K4os.Compression.LZ4.dll",
  3821. "lib/net45/K4os.Compression.LZ4.xml",
  3822. "lib/net46/K4os.Compression.LZ4.dll",
  3823. "lib/net46/K4os.Compression.LZ4.xml",
  3824. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3825. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3826. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3827. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3828. ]
  3829. },
  3830. "K4os.Compression.LZ4.Streams/1.2.6": {
  3831. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  3832. "type": "package",
  3833. "path": "k4os.compression.lz4.streams/1.2.6",
  3834. "files": [
  3835. ".nupkg.metadata",
  3836. ".signature.p7s",
  3837. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  3838. "k4os.compression.lz4.streams.nuspec",
  3839. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3840. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3841. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3842. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3843. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3844. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3845. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3846. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  3847. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  3848. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  3849. ]
  3850. },
  3851. "K4os.Hash.xxHash/1.0.6": {
  3852. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3853. "type": "package",
  3854. "path": "k4os.hash.xxhash/1.0.6",
  3855. "files": [
  3856. ".nupkg.metadata",
  3857. ".signature.p7s",
  3858. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3859. "k4os.hash.xxhash.nuspec",
  3860. "lib/net45/K4os.Hash.xxHash.dll",
  3861. "lib/net45/K4os.Hash.xxHash.xml",
  3862. "lib/net46/K4os.Hash.xxHash.dll",
  3863. "lib/net46/K4os.Hash.xxHash.xml",
  3864. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3865. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3866. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3867. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3868. ]
  3869. },
  3870. "LiveCharts/0.9.7": {
  3871. "sha512": "p4xyBrUaNNfkWZSNsIle0r51cyVyFg0Yi0uBRZM5GQtdFiA/7guZHlffFyNUILIdux10Ch2hUaJpcZENVU9aaQ==",
  3872. "type": "package",
  3873. "path": "livecharts/0.9.7",
  3874. "files": [
  3875. ".nupkg.metadata",
  3876. ".signature.p7s",
  3877. "lib/net40/LiveCharts.dll",
  3878. "lib/net40/LiveCharts.pdb",
  3879. "lib/net40/LiveCharts.xml",
  3880. "lib/net45/LiveCharts.dll",
  3881. "lib/net45/LiveCharts.pdb",
  3882. "lib/net45/LiveCharts.xml",
  3883. "lib/portable-net45+win8+wp8/LiveCharts.XML",
  3884. "lib/portable-net45+win8+wp8/LiveCharts.dll",
  3885. "lib/portable-net45+win8+wp8/LiveCharts.pdb",
  3886. "livecharts.0.9.7.nupkg.sha512",
  3887. "livecharts.nuspec",
  3888. "readme.txt"
  3889. ]
  3890. },
  3891. "LiveCharts.Wpf/0.9.7": {
  3892. "sha512": "lv6YZoK0B4yWykMq5b9grZXtIbTj+OWu4sVN9GDpdgV6zffu64m4d5CW8KSjfSl9rB8VU649x1NZvhoU67hCDg==",
  3893. "type": "package",
  3894. "path": "livecharts.wpf/0.9.7",
  3895. "hasTools": true,
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "lib/net40/LiveCharts.Wpf.XML",
  3900. "lib/net40/LiveCharts.Wpf.dll",
  3901. "lib/net40/LiveCharts.Wpf.pdb",
  3902. "lib/net45/LiveCharts.Wpf.XML",
  3903. "lib/net45/LiveCharts.Wpf.dll",
  3904. "lib/net45/LiveCharts.Wpf.pdb",
  3905. "livecharts.wpf.0.9.7.nupkg.sha512",
  3906. "livecharts.wpf.nuspec",
  3907. "tools/install.ps1"
  3908. ]
  3909. },
  3910. "MahApps.Metro/2.4.5": {
  3911. "sha512": "fUmU2yQgHqUTDDZT494+WcMBrg6G/960et7eqIvKGRRwH0I/d6cA6AuvRIJEQezxCFewweRbIkFvIOS62tjqug==",
  3912. "type": "package",
  3913. "path": "mahapps.metro/2.4.5",
  3914. "hasTools": true,
  3915. "files": [
  3916. ".nupkg.metadata",
  3917. ".signature.p7s",
  3918. "lib/net452/MahApps.Metro.dll",
  3919. "lib/net452/MahApps.Metro.pdb",
  3920. "lib/net452/MahApps.Metro.xml",
  3921. "lib/net452/de/MahApps.Metro.resources.dll",
  3922. "lib/net46/MahApps.Metro.dll",
  3923. "lib/net46/MahApps.Metro.pdb",
  3924. "lib/net46/MahApps.Metro.xml",
  3925. "lib/net46/de/MahApps.Metro.resources.dll",
  3926. "lib/net47/MahApps.Metro.dll",
  3927. "lib/net47/MahApps.Metro.pdb",
  3928. "lib/net47/MahApps.Metro.xml",
  3929. "lib/net47/de/MahApps.Metro.resources.dll",
  3930. "lib/netcoreapp3.0/MahApps.Metro.dll",
  3931. "lib/netcoreapp3.0/MahApps.Metro.pdb",
  3932. "lib/netcoreapp3.0/MahApps.Metro.xml",
  3933. "lib/netcoreapp3.0/de/MahApps.Metro.resources.dll",
  3934. "lib/netcoreapp3.1/MahApps.Metro.dll",
  3935. "lib/netcoreapp3.1/MahApps.Metro.pdb",
  3936. "lib/netcoreapp3.1/MahApps.Metro.xml",
  3937. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll",
  3938. "mahapps.metro.2.4.5.nupkg.sha512",
  3939. "mahapps.metro.logo.png",
  3940. "mahapps.metro.nuspec",
  3941. "tools/VisualStudioToolsManifest.xml"
  3942. ]
  3943. },
  3944. "Mapster/7.2.0": {
  3945. "sha512": "dIXWyCPHrzcQ7Aeblz/bKxsP9ZxGMMbHZTyywZS7/cGa9elPcJiTNeJ4OahzLtATzL13xC4MF8NRNcj49cCIng==",
  3946. "type": "package",
  3947. "path": "mapster/7.2.0",
  3948. "files": [
  3949. ".nupkg.metadata",
  3950. ".signature.p7s",
  3951. "icon.png",
  3952. "lib/net40/Mapster.dll",
  3953. "lib/net45/Mapster.dll",
  3954. "lib/netstandard1.3/Mapster.dll",
  3955. "lib/netstandard2.0/Mapster.dll",
  3956. "mapster.7.2.0.nupkg.sha512",
  3957. "mapster.nuspec"
  3958. ]
  3959. },
  3960. "Mapster.Core/1.2.0": {
  3961. "sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==",
  3962. "type": "package",
  3963. "path": "mapster.core/1.2.0",
  3964. "files": [
  3965. ".nupkg.metadata",
  3966. ".signature.p7s",
  3967. "icon.png",
  3968. "lib/net40/Mapster.Core.dll",
  3969. "lib/net45/Mapster.Core.dll",
  3970. "lib/netstandard1.3/Mapster.Core.dll",
  3971. "lib/netstandard2.0/Mapster.Core.dll",
  3972. "mapster.core.1.2.0.nupkg.sha512",
  3973. "mapster.core.nuspec"
  3974. ]
  3975. },
  3976. "Microsoft.CSharp/4.3.0": {
  3977. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3978. "type": "package",
  3979. "path": "microsoft.csharp/4.3.0",
  3980. "files": [
  3981. ".nupkg.metadata",
  3982. ".signature.p7s",
  3983. "ThirdPartyNotices.txt",
  3984. "dotnet_library_license.txt",
  3985. "lib/MonoAndroid10/_._",
  3986. "lib/MonoTouch10/_._",
  3987. "lib/net45/_._",
  3988. "lib/netcore50/Microsoft.CSharp.dll",
  3989. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3990. "lib/portable-net45+win8+wp8+wpa81/_._",
  3991. "lib/win8/_._",
  3992. "lib/wp80/_._",
  3993. "lib/wpa81/_._",
  3994. "lib/xamarinios10/_._",
  3995. "lib/xamarinmac20/_._",
  3996. "lib/xamarintvos10/_._",
  3997. "lib/xamarinwatchos10/_._",
  3998. "microsoft.csharp.4.3.0.nupkg.sha512",
  3999. "microsoft.csharp.nuspec",
  4000. "ref/MonoAndroid10/_._",
  4001. "ref/MonoTouch10/_._",
  4002. "ref/net45/_._",
  4003. "ref/netcore50/Microsoft.CSharp.dll",
  4004. "ref/netcore50/Microsoft.CSharp.xml",
  4005. "ref/netcore50/de/Microsoft.CSharp.xml",
  4006. "ref/netcore50/es/Microsoft.CSharp.xml",
  4007. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4008. "ref/netcore50/it/Microsoft.CSharp.xml",
  4009. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4010. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4011. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4012. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4013. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4014. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4015. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4016. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4017. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4018. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4019. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4020. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4021. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4022. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4023. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4024. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4025. "ref/portable-net45+win8+wp8+wpa81/_._",
  4026. "ref/win8/_._",
  4027. "ref/wp80/_._",
  4028. "ref/wpa81/_._",
  4029. "ref/xamarinios10/_._",
  4030. "ref/xamarinmac20/_._",
  4031. "ref/xamarintvos10/_._",
  4032. "ref/xamarinwatchos10/_._"
  4033. ]
  4034. },
  4035. "Microsoft.Data.Sqlite.Core/6.0.1": {
  4036. "sha512": "Z8MIjWmzxUjcc2HKTKFHfo7jqqVeVftkigrojGY4zEN8OwjLgJNb5/BqW3J2FiIiCrPBDGNkiVlOERazGfLizg==",
  4037. "type": "package",
  4038. "path": "microsoft.data.sqlite.core/6.0.1",
  4039. "files": [
  4040. ".nupkg.metadata",
  4041. ".signature.p7s",
  4042. "Icon.png",
  4043. "lib/net6.0/Microsoft.Data.Sqlite.dll",
  4044. "lib/net6.0/Microsoft.Data.Sqlite.xml",
  4045. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  4046. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  4047. "microsoft.data.sqlite.core.6.0.1.nupkg.sha512",
  4048. "microsoft.data.sqlite.core.nuspec"
  4049. ]
  4050. },
  4051. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  4052. "sha512": "2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
  4053. "type": "package",
  4054. "path": "microsoft.dotnet.platformabstractions/2.0.4",
  4055. "files": [
  4056. ".nupkg.metadata",
  4057. ".signature.p7s",
  4058. "LICENSE.TXT",
  4059. "THIRD-PARTY-NOTICES.TXT",
  4060. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  4061. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  4062. "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512",
  4063. "microsoft.dotnet.platformabstractions.nuspec"
  4064. ]
  4065. },
  4066. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  4067. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  4068. "type": "package",
  4069. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  4070. "files": [
  4071. ".nupkg.metadata",
  4072. ".signature.p7s",
  4073. "Icon.png",
  4074. "LICENSE.TXT",
  4075. "THIRD-PARTY-NOTICES.TXT",
  4076. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4077. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4078. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4079. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4080. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  4081. "microsoft.extensions.caching.abstractions.nuspec",
  4082. "useSharedDesignerContext.txt"
  4083. ]
  4084. },
  4085. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  4086. "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==",
  4087. "type": "package",
  4088. "path": "microsoft.extensions.caching.memory/6.0.0",
  4089. "files": [
  4090. ".nupkg.metadata",
  4091. ".signature.p7s",
  4092. "Icon.png",
  4093. "LICENSE.TXT",
  4094. "THIRD-PARTY-NOTICES.TXT",
  4095. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4096. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4097. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4098. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4099. "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512",
  4100. "microsoft.extensions.caching.memory.nuspec",
  4101. "useSharedDesignerContext.txt"
  4102. ]
  4103. },
  4104. "Microsoft.Extensions.Configuration/5.0.0": {
  4105. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4106. "type": "package",
  4107. "path": "microsoft.extensions.configuration/5.0.0",
  4108. "files": [
  4109. ".nupkg.metadata",
  4110. ".signature.p7s",
  4111. "Icon.png",
  4112. "LICENSE.TXT",
  4113. "THIRD-PARTY-NOTICES.TXT",
  4114. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4115. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4116. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4117. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4118. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4119. "microsoft.extensions.configuration.nuspec",
  4120. "useSharedDesignerContext.txt",
  4121. "version.txt"
  4122. ]
  4123. },
  4124. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4125. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4126. "type": "package",
  4127. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4128. "files": [
  4129. ".nupkg.metadata",
  4130. ".signature.p7s",
  4131. "Icon.png",
  4132. "LICENSE.TXT",
  4133. "THIRD-PARTY-NOTICES.TXT",
  4134. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4135. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4136. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4137. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4138. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4139. "microsoft.extensions.configuration.abstractions.nuspec",
  4140. "useSharedDesignerContext.txt",
  4141. "version.txt"
  4142. ]
  4143. },
  4144. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4145. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4146. "type": "package",
  4147. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. ".signature.p7s",
  4151. "Icon.png",
  4152. "LICENSE.TXT",
  4153. "THIRD-PARTY-NOTICES.TXT",
  4154. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4155. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4156. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4157. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4158. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4159. "microsoft.extensions.configuration.binder.nuspec",
  4160. "useSharedDesignerContext.txt",
  4161. "version.txt"
  4162. ]
  4163. },
  4164. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  4165. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  4166. "type": "package",
  4167. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  4168. "files": [
  4169. ".nupkg.metadata",
  4170. ".signature.p7s",
  4171. "Icon.png",
  4172. "LICENSE.TXT",
  4173. "THIRD-PARTY-NOTICES.TXT",
  4174. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  4175. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  4176. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  4177. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  4178. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  4179. "microsoft.extensions.configuration.commandline.nuspec",
  4180. "useSharedDesignerContext.txt",
  4181. "version.txt"
  4182. ]
  4183. },
  4184. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  4185. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  4186. "type": "package",
  4187. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  4188. "files": [
  4189. ".nupkg.metadata",
  4190. ".signature.p7s",
  4191. "Icon.png",
  4192. "LICENSE.TXT",
  4193. "THIRD-PARTY-NOTICES.TXT",
  4194. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4195. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4196. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4197. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4198. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  4199. "microsoft.extensions.configuration.environmentvariables.nuspec",
  4200. "useSharedDesignerContext.txt",
  4201. "version.txt"
  4202. ]
  4203. },
  4204. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4205. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4206. "type": "package",
  4207. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "Icon.png",
  4212. "LICENSE.TXT",
  4213. "THIRD-PARTY-NOTICES.TXT",
  4214. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4215. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4216. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4217. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4218. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4219. "microsoft.extensions.configuration.fileextensions.nuspec",
  4220. "useSharedDesignerContext.txt",
  4221. "version.txt"
  4222. ]
  4223. },
  4224. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4225. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4226. "type": "package",
  4227. "path": "microsoft.extensions.configuration.json/5.0.0",
  4228. "files": [
  4229. ".nupkg.metadata",
  4230. ".signature.p7s",
  4231. "Icon.png",
  4232. "LICENSE.TXT",
  4233. "THIRD-PARTY-NOTICES.TXT",
  4234. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4235. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4236. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4237. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4238. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4239. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4240. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4241. "microsoft.extensions.configuration.json.nuspec",
  4242. "useSharedDesignerContext.txt",
  4243. "version.txt"
  4244. ]
  4245. },
  4246. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  4247. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  4248. "type": "package",
  4249. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "Icon.png",
  4254. "LICENSE.TXT",
  4255. "THIRD-PARTY-NOTICES.TXT",
  4256. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  4257. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  4258. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4259. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4260. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4261. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4262. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  4263. "microsoft.extensions.configuration.usersecrets.nuspec",
  4264. "useSharedDesignerContext.txt",
  4265. "version.txt"
  4266. ]
  4267. },
  4268. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  4269. "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  4270. "type": "package",
  4271. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  4272. "files": [
  4273. ".nupkg.metadata",
  4274. ".signature.p7s",
  4275. "Icon.png",
  4276. "LICENSE.TXT",
  4277. "THIRD-PARTY-NOTICES.TXT",
  4278. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  4279. "buildTransitive/net462/_._",
  4280. "buildTransitive/net6.0/_._",
  4281. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4282. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  4283. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  4284. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  4285. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  4286. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  4287. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  4288. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4289. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4290. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4291. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4292. "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
  4293. "microsoft.extensions.dependencyinjection.nuspec",
  4294. "useSharedDesignerContext.txt"
  4295. ]
  4296. },
  4297. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  4298. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  4299. "type": "package",
  4300. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  4301. "files": [
  4302. ".nupkg.metadata",
  4303. ".signature.p7s",
  4304. "Icon.png",
  4305. "LICENSE.TXT",
  4306. "THIRD-PARTY-NOTICES.TXT",
  4307. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4308. "buildTransitive/net462/_._",
  4309. "buildTransitive/net6.0/_._",
  4310. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4311. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4312. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4313. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4314. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4315. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4316. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4317. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4318. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4319. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4320. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4321. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  4322. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4323. "useSharedDesignerContext.txt"
  4324. ]
  4325. },
  4326. "Microsoft.Extensions.DependencyModel/2.0.4": {
  4327. "sha512": "jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
  4328. "type": "package",
  4329. "path": "microsoft.extensions.dependencymodel/2.0.4",
  4330. "files": [
  4331. ".nupkg.metadata",
  4332. ".signature.p7s",
  4333. "LICENSE.TXT",
  4334. "THIRD-PARTY-NOTICES.TXT",
  4335. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4336. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4337. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  4338. "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512",
  4339. "microsoft.extensions.dependencymodel.nuspec"
  4340. ]
  4341. },
  4342. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4343. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4344. "type": "package",
  4345. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "Icon.png",
  4350. "LICENSE.TXT",
  4351. "THIRD-PARTY-NOTICES.TXT",
  4352. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4353. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4354. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4355. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4356. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4357. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4358. "useSharedDesignerContext.txt",
  4359. "version.txt"
  4360. ]
  4361. },
  4362. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4363. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4364. "type": "package",
  4365. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "Icon.png",
  4370. "LICENSE.TXT",
  4371. "THIRD-PARTY-NOTICES.TXT",
  4372. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4373. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4374. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4375. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4376. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4377. "microsoft.extensions.fileproviders.physical.nuspec",
  4378. "useSharedDesignerContext.txt",
  4379. "version.txt"
  4380. ]
  4381. },
  4382. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4383. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4384. "type": "package",
  4385. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4386. "files": [
  4387. ".nupkg.metadata",
  4388. ".signature.p7s",
  4389. "Icon.png",
  4390. "LICENSE.TXT",
  4391. "THIRD-PARTY-NOTICES.TXT",
  4392. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4393. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4394. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4395. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4396. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4397. "microsoft.extensions.filesystemglobbing.nuspec",
  4398. "useSharedDesignerContext.txt",
  4399. "version.txt"
  4400. ]
  4401. },
  4402. "Microsoft.Extensions.Hosting/5.0.0": {
  4403. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  4404. "type": "package",
  4405. "path": "microsoft.extensions.hosting/5.0.0",
  4406. "files": [
  4407. ".nupkg.metadata",
  4408. ".signature.p7s",
  4409. "Icon.png",
  4410. "LICENSE.TXT",
  4411. "THIRD-PARTY-NOTICES.TXT",
  4412. "lib/net461/Microsoft.Extensions.Hosting.dll",
  4413. "lib/net461/Microsoft.Extensions.Hosting.xml",
  4414. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4415. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4416. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  4417. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  4418. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  4419. "microsoft.extensions.hosting.nuspec",
  4420. "useSharedDesignerContext.txt",
  4421. "version.txt"
  4422. ]
  4423. },
  4424. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  4425. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  4426. "type": "package",
  4427. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  4428. "files": [
  4429. ".nupkg.metadata",
  4430. ".signature.p7s",
  4431. "Icon.png",
  4432. "LICENSE.TXT",
  4433. "THIRD-PARTY-NOTICES.TXT",
  4434. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  4435. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  4436. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4437. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4438. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4439. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4440. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  4441. "microsoft.extensions.hosting.abstractions.nuspec",
  4442. "useSharedDesignerContext.txt",
  4443. "version.txt"
  4444. ]
  4445. },
  4446. "Microsoft.Extensions.Logging/7.0.0": {
  4447. "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  4448. "type": "package",
  4449. "path": "microsoft.extensions.logging/7.0.0",
  4450. "files": [
  4451. ".nupkg.metadata",
  4452. ".signature.p7s",
  4453. "Icon.png",
  4454. "LICENSE.TXT",
  4455. "THIRD-PARTY-NOTICES.TXT",
  4456. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  4457. "buildTransitive/net462/_._",
  4458. "buildTransitive/net6.0/_._",
  4459. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  4460. "lib/net462/Microsoft.Extensions.Logging.dll",
  4461. "lib/net462/Microsoft.Extensions.Logging.xml",
  4462. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  4463. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  4464. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  4465. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  4466. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4467. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4468. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4469. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4470. "microsoft.extensions.logging.7.0.0.nupkg.sha512",
  4471. "microsoft.extensions.logging.nuspec",
  4472. "useSharedDesignerContext.txt"
  4473. ]
  4474. },
  4475. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  4476. "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  4477. "type": "package",
  4478. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  4479. "files": [
  4480. ".nupkg.metadata",
  4481. ".signature.p7s",
  4482. "Icon.png",
  4483. "LICENSE.TXT",
  4484. "THIRD-PARTY-NOTICES.TXT",
  4485. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  4486. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4487. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4488. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4489. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4490. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4491. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4492. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4493. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4494. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4495. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4496. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4497. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4498. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4499. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  4500. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4501. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4502. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4503. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4504. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4505. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4506. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4507. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4508. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4509. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4510. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4511. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4512. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4513. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  4514. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4515. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4516. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4517. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4518. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4519. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4520. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4521. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4522. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4523. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4524. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4525. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4526. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4527. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  4528. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  4529. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4530. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4531. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4532. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  4533. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  4534. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4535. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4536. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4537. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4538. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4539. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4540. "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
  4541. "microsoft.extensions.logging.abstractions.nuspec",
  4542. "useSharedDesignerContext.txt"
  4543. ]
  4544. },
  4545. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  4546. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  4547. "type": "package",
  4548. "path": "microsoft.extensions.logging.configuration/5.0.0",
  4549. "files": [
  4550. ".nupkg.metadata",
  4551. ".signature.p7s",
  4552. "Icon.png",
  4553. "LICENSE.TXT",
  4554. "THIRD-PARTY-NOTICES.TXT",
  4555. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  4556. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  4557. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4558. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4559. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  4560. "microsoft.extensions.logging.configuration.nuspec",
  4561. "useSharedDesignerContext.txt",
  4562. "version.txt"
  4563. ]
  4564. },
  4565. "Microsoft.Extensions.Logging.Console/5.0.0": {
  4566. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  4567. "type": "package",
  4568. "path": "microsoft.extensions.logging.console/5.0.0",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "Icon.png",
  4573. "LICENSE.TXT",
  4574. "THIRD-PARTY-NOTICES.TXT",
  4575. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  4576. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  4577. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  4578. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  4579. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4580. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4581. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  4582. "microsoft.extensions.logging.console.nuspec",
  4583. "useSharedDesignerContext.txt",
  4584. "version.txt"
  4585. ]
  4586. },
  4587. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  4588. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  4589. "type": "package",
  4590. "path": "microsoft.extensions.logging.debug/5.0.0",
  4591. "files": [
  4592. ".nupkg.metadata",
  4593. ".signature.p7s",
  4594. "Icon.png",
  4595. "LICENSE.TXT",
  4596. "THIRD-PARTY-NOTICES.TXT",
  4597. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  4598. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  4599. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  4600. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  4601. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  4602. "microsoft.extensions.logging.debug.nuspec",
  4603. "useSharedDesignerContext.txt",
  4604. "version.txt"
  4605. ]
  4606. },
  4607. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  4608. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  4609. "type": "package",
  4610. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  4611. "files": [
  4612. ".nupkg.metadata",
  4613. ".signature.p7s",
  4614. "Icon.png",
  4615. "LICENSE.TXT",
  4616. "THIRD-PARTY-NOTICES.TXT",
  4617. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  4618. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  4619. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  4620. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  4621. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  4622. "microsoft.extensions.logging.eventlog.nuspec",
  4623. "useSharedDesignerContext.txt",
  4624. "version.txt"
  4625. ]
  4626. },
  4627. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  4628. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  4629. "type": "package",
  4630. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  4631. "files": [
  4632. ".nupkg.metadata",
  4633. ".signature.p7s",
  4634. "Icon.png",
  4635. "LICENSE.TXT",
  4636. "THIRD-PARTY-NOTICES.TXT",
  4637. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  4638. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  4639. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  4640. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  4641. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  4642. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  4643. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  4644. "microsoft.extensions.logging.eventsource.nuspec",
  4645. "useSharedDesignerContext.txt",
  4646. "version.txt"
  4647. ]
  4648. },
  4649. "Microsoft.Extensions.Options/7.0.0": {
  4650. "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  4651. "type": "package",
  4652. "path": "microsoft.extensions.options/7.0.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "Icon.png",
  4657. "LICENSE.TXT",
  4658. "THIRD-PARTY-NOTICES.TXT",
  4659. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  4660. "buildTransitive/net462/_._",
  4661. "buildTransitive/net6.0/_._",
  4662. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  4663. "lib/net462/Microsoft.Extensions.Options.dll",
  4664. "lib/net462/Microsoft.Extensions.Options.xml",
  4665. "lib/net6.0/Microsoft.Extensions.Options.dll",
  4666. "lib/net6.0/Microsoft.Extensions.Options.xml",
  4667. "lib/net7.0/Microsoft.Extensions.Options.dll",
  4668. "lib/net7.0/Microsoft.Extensions.Options.xml",
  4669. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4670. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4671. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4672. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4673. "microsoft.extensions.options.7.0.0.nupkg.sha512",
  4674. "microsoft.extensions.options.nuspec",
  4675. "useSharedDesignerContext.txt"
  4676. ]
  4677. },
  4678. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  4679. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  4680. "type": "package",
  4681. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  4682. "files": [
  4683. ".nupkg.metadata",
  4684. ".signature.p7s",
  4685. "Icon.png",
  4686. "LICENSE.TXT",
  4687. "THIRD-PARTY-NOTICES.TXT",
  4688. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4689. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4690. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4691. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4692. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  4693. "microsoft.extensions.options.configurationextensions.nuspec",
  4694. "useSharedDesignerContext.txt",
  4695. "version.txt"
  4696. ]
  4697. },
  4698. "Microsoft.Extensions.Primitives/7.0.0": {
  4699. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  4700. "type": "package",
  4701. "path": "microsoft.extensions.primitives/7.0.0",
  4702. "files": [
  4703. ".nupkg.metadata",
  4704. ".signature.p7s",
  4705. "Icon.png",
  4706. "LICENSE.TXT",
  4707. "THIRD-PARTY-NOTICES.TXT",
  4708. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  4709. "buildTransitive/net462/_._",
  4710. "buildTransitive/net6.0/_._",
  4711. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4712. "lib/net462/Microsoft.Extensions.Primitives.dll",
  4713. "lib/net462/Microsoft.Extensions.Primitives.xml",
  4714. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  4715. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  4716. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  4717. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  4718. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4719. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4720. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  4721. "microsoft.extensions.primitives.nuspec",
  4722. "useSharedDesignerContext.txt"
  4723. ]
  4724. },
  4725. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  4726. "sha512": "6A0fyZkxoUUj1dpXzLAWwI89YmKZ+ZSp1DCg+gN6llcXJwfYo1IIQZoCkuo6T7vUxw/w1CSk/Pl04NQ4fno+DQ==",
  4727. "type": "package",
  4728. "path": "microsoft.io.recyclablememorystream/1.4.1",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "lib/net40/Microsoft.IO.RecyclableMemoryStream.dll",
  4733. "lib/net40/Microsoft.IO.RecyclableMemoryStream.xml",
  4734. "lib/net45/Microsoft.IO.RecyclableMemoryStream.dll",
  4735. "lib/net45/Microsoft.IO.RecyclableMemoryStream.xml",
  4736. "lib/net46/Microsoft.IO.RecyclableMemoryStream.dll",
  4737. "lib/net46/Microsoft.IO.RecyclableMemoryStream.xml",
  4738. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4739. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4740. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.dll",
  4741. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.xml",
  4742. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  4743. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  4744. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4745. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4746. "microsoft.io.recyclablememorystream.1.4.1.nupkg.sha512",
  4747. "microsoft.io.recyclablememorystream.nuspec"
  4748. ]
  4749. },
  4750. "Microsoft.NETCore.Platforms/5.0.0": {
  4751. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4752. "type": "package",
  4753. "path": "microsoft.netcore.platforms/5.0.0",
  4754. "files": [
  4755. ".nupkg.metadata",
  4756. ".signature.p7s",
  4757. "Icon.png",
  4758. "LICENSE.TXT",
  4759. "THIRD-PARTY-NOTICES.TXT",
  4760. "lib/netstandard1.0/_._",
  4761. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4762. "microsoft.netcore.platforms.nuspec",
  4763. "runtime.json",
  4764. "useSharedDesignerContext.txt",
  4765. "version.txt"
  4766. ]
  4767. },
  4768. "Microsoft.NETCore.Targets/1.1.0": {
  4769. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4770. "type": "package",
  4771. "path": "microsoft.netcore.targets/1.1.0",
  4772. "files": [
  4773. ".nupkg.metadata",
  4774. ".signature.p7s",
  4775. "ThirdPartyNotices.txt",
  4776. "dotnet_library_license.txt",
  4777. "lib/netstandard1.0/_._",
  4778. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4779. "microsoft.netcore.targets.nuspec",
  4780. "runtime.json"
  4781. ]
  4782. },
  4783. "Microsoft.Win32.Primitives/4.3.0": {
  4784. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4785. "type": "package",
  4786. "path": "microsoft.win32.primitives/4.3.0",
  4787. "files": [
  4788. ".nupkg.metadata",
  4789. ".signature.p7s",
  4790. "ThirdPartyNotices.txt",
  4791. "dotnet_library_license.txt",
  4792. "lib/MonoAndroid10/_._",
  4793. "lib/MonoTouch10/_._",
  4794. "lib/net46/Microsoft.Win32.Primitives.dll",
  4795. "lib/xamarinios10/_._",
  4796. "lib/xamarinmac20/_._",
  4797. "lib/xamarintvos10/_._",
  4798. "lib/xamarinwatchos10/_._",
  4799. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4800. "microsoft.win32.primitives.nuspec",
  4801. "ref/MonoAndroid10/_._",
  4802. "ref/MonoTouch10/_._",
  4803. "ref/net46/Microsoft.Win32.Primitives.dll",
  4804. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4805. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4806. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4807. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4808. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4809. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4810. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4811. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4812. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4813. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4814. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4815. "ref/xamarinios10/_._",
  4816. "ref/xamarinmac20/_._",
  4817. "ref/xamarintvos10/_._",
  4818. "ref/xamarinwatchos10/_._"
  4819. ]
  4820. },
  4821. "Microsoft.Win32.Registry/5.0.0": {
  4822. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  4823. "type": "package",
  4824. "path": "microsoft.win32.registry/5.0.0",
  4825. "files": [
  4826. ".nupkg.metadata",
  4827. ".signature.p7s",
  4828. "Icon.png",
  4829. "LICENSE.TXT",
  4830. "THIRD-PARTY-NOTICES.TXT",
  4831. "lib/net46/Microsoft.Win32.Registry.dll",
  4832. "lib/net461/Microsoft.Win32.Registry.dll",
  4833. "lib/net461/Microsoft.Win32.Registry.xml",
  4834. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4835. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4836. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4837. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  4838. "microsoft.win32.registry.nuspec",
  4839. "ref/net46/Microsoft.Win32.Registry.dll",
  4840. "ref/net461/Microsoft.Win32.Registry.dll",
  4841. "ref/net461/Microsoft.Win32.Registry.xml",
  4842. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4843. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4844. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4845. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4846. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4847. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4848. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4849. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4850. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4851. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4852. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4853. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4854. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4855. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4856. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4857. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4858. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4859. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4860. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4861. "useSharedDesignerContext.txt",
  4862. "version.txt"
  4863. ]
  4864. },
  4865. "Microsoft.Win32.SystemEvents/8.0.0": {
  4866. "sha512": "9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==",
  4867. "type": "package",
  4868. "path": "microsoft.win32.systemevents/8.0.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "Icon.png",
  4873. "LICENSE.TXT",
  4874. "THIRD-PARTY-NOTICES.TXT",
  4875. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  4876. "buildTransitive/net462/_._",
  4877. "buildTransitive/net6.0/_._",
  4878. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  4879. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  4880. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  4881. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4882. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4883. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  4884. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  4885. "lib/net8.0/Microsoft.Win32.SystemEvents.dll",
  4886. "lib/net8.0/Microsoft.Win32.SystemEvents.xml",
  4887. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4888. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4889. "microsoft.win32.systemevents.8.0.0.nupkg.sha512",
  4890. "microsoft.win32.systemevents.nuspec",
  4891. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4892. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4893. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  4894. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  4895. "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll",
  4896. "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.xml",
  4897. "useSharedDesignerContext.txt"
  4898. ]
  4899. },
  4900. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  4901. "sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
  4902. "type": "package",
  4903. "path": "microsoft.xaml.behaviors.wpf/1.1.31",
  4904. "hasTools": true,
  4905. "files": [
  4906. ".nupkg.metadata",
  4907. ".signature.p7s",
  4908. "lib/net45/Design/Microsoft.Xaml.Behaviors.Design.dll",
  4909. "lib/net45/Microsoft.Xaml.Behaviors.dll",
  4910. "lib/net45/Microsoft.Xaml.Behaviors.pdb",
  4911. "lib/net45/Microsoft.Xaml.Behaviors.xml",
  4912. "lib/net5.0-windows7.0/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  4913. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll",
  4914. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.pdb",
  4915. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.xml",
  4916. "lib/netcoreapp3.1/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  4917. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
  4918. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
  4919. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
  4920. "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
  4921. "microsoft.xaml.behaviors.wpf.nuspec",
  4922. "tools/Install.ps1"
  4923. ]
  4924. },
  4925. "MySql.Data/8.0.27": {
  4926. "sha512": "Ef+sH12/nGAiF9yLZFkuXh7vtVvEPiLKyZNJiDk+VBULzLcXj0lmfU7qcmWNCSVX5n6zu5jMV+JaNf1C+a+T8g==",
  4927. "type": "package",
  4928. "path": "mysql.data/8.0.27",
  4929. "files": [
  4930. ".nupkg.metadata",
  4931. ".signature.p7s",
  4932. "lib/net452/MySql.Data.dll",
  4933. "lib/net452/MySql.Data.xml",
  4934. "lib/net452/Ubiety.Dns.Core.dll",
  4935. "lib/net452/ZstdNet.dll",
  4936. "lib/net48/MySql.Data.dll",
  4937. "lib/net48/MySql.Data.xml",
  4938. "lib/net48/Ubiety.Dns.Core.dll",
  4939. "lib/net48/ZstdNet.dll",
  4940. "lib/net5.0/MySql.Data.dll",
  4941. "lib/net5.0/MySql.Data.xml",
  4942. "lib/net5.0/Ubiety.Dns.Core.dll",
  4943. "lib/net5.0/ZstdNet.dll",
  4944. "lib/netstandard2.0/MySql.Data.dll",
  4945. "lib/netstandard2.0/MySql.Data.xml",
  4946. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4947. "lib/netstandard2.0/ZstdNet.dll",
  4948. "lib/netstandard2.1/MySql.Data.dll",
  4949. "lib/netstandard2.1/MySql.Data.xml",
  4950. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4951. "lib/netstandard2.1/ZstdNet.dll",
  4952. "mysql.data.8.0.27.nupkg.sha512",
  4953. "mysql.data.nuspec"
  4954. ]
  4955. },
  4956. "NETStandard.Library/1.6.1": {
  4957. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4958. "type": "package",
  4959. "path": "netstandard.library/1.6.1",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "netstandard.library.1.6.1.nupkg.sha512",
  4966. "netstandard.library.nuspec"
  4967. ]
  4968. },
  4969. "Newtonsoft.Json/9.0.1": {
  4970. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  4971. "type": "package",
  4972. "path": "newtonsoft.json/9.0.1",
  4973. "hasTools": true,
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "lib/net20/Newtonsoft.Json.dll",
  4978. "lib/net20/Newtonsoft.Json.xml",
  4979. "lib/net35/Newtonsoft.Json.dll",
  4980. "lib/net35/Newtonsoft.Json.xml",
  4981. "lib/net40/Newtonsoft.Json.dll",
  4982. "lib/net40/Newtonsoft.Json.xml",
  4983. "lib/net45/Newtonsoft.Json.dll",
  4984. "lib/net45/Newtonsoft.Json.xml",
  4985. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4986. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4987. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4988. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4989. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4990. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4991. "newtonsoft.json.9.0.1.nupkg.sha512",
  4992. "newtonsoft.json.nuspec",
  4993. "tools/install.ps1"
  4994. ]
  4995. },
  4996. "NModbus4.NetCore/2.0.1": {
  4997. "sha512": "+utot9E9UOwBq3zSzHaDn9n+J4gpaGgAXYTTZyXIkdeUJlVrogXLQlz7H2za4GeJziGvanzGAl6n3fdyULMqSw==",
  4998. "type": "package",
  4999. "path": "nmodbus4.netcore/2.0.1",
  5000. "files": [
  5001. ".nupkg.metadata",
  5002. ".signature.p7s",
  5003. "LICENSE",
  5004. "README.md",
  5005. "lib/net6.0/Modbus.dll",
  5006. "nmodbus4.netcore.2.0.1.nupkg.sha512",
  5007. "nmodbus4.netcore.nuspec"
  5008. ]
  5009. },
  5010. "NPOI/2.5.6": {
  5011. "sha512": "xQfr09LZN3fr4rjSuV3li+WJUo2LiSg00IUtnomzrKO51zhhavyIgvbZ1f8c8zwHXvRbFc1JB4PNZpxqyxizWw==",
  5012. "type": "package",
  5013. "path": "npoi/2.5.6",
  5014. "files": [
  5015. ".nupkg.metadata",
  5016. ".signature.p7s",
  5017. "LICENSE",
  5018. "Read Me.txt",
  5019. "lib/net45/NPOI.OOXML.XML",
  5020. "lib/net45/NPOI.OOXML.dll",
  5021. "lib/net45/NPOI.OOXML.pdb",
  5022. "lib/net45/NPOI.OpenXml4Net.XML",
  5023. "lib/net45/NPOI.OpenXml4Net.dll",
  5024. "lib/net45/NPOI.OpenXml4Net.pdb",
  5025. "lib/net45/NPOI.OpenXmlFormats.dll",
  5026. "lib/net45/NPOI.OpenXmlFormats.pdb",
  5027. "lib/net45/NPOI.XML",
  5028. "lib/net45/NPOI.dll",
  5029. "lib/net45/NPOI.pdb",
  5030. "lib/netstandard2.0/NPOI.OOXML.dll",
  5031. "lib/netstandard2.0/NPOI.OOXML.pdb",
  5032. "lib/netstandard2.0/NPOI.OOXML.xml",
  5033. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  5034. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  5035. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  5036. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  5037. "lib/netstandard2.0/NPOI.dll",
  5038. "lib/netstandard2.0/NPOI.pdb",
  5039. "lib/netstandard2.0/NPOI.xml",
  5040. "lib/netstandard2.1/NPOI.OOXML.dll",
  5041. "lib/netstandard2.1/NPOI.OOXML.pdb",
  5042. "lib/netstandard2.1/NPOI.OOXML.xml",
  5043. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  5044. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  5045. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  5046. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  5047. "lib/netstandard2.1/NPOI.dll",
  5048. "lib/netstandard2.1/NPOI.pdb",
  5049. "lib/netstandard2.1/NPOI.xml",
  5050. "logo/120_120.jpg",
  5051. "logo/240_240.png",
  5052. "logo/32_32.jpg",
  5053. "logo/60_60.jpg",
  5054. "npoi.2.5.6.nupkg.sha512",
  5055. "npoi.nuspec"
  5056. ]
  5057. },
  5058. "Panuon.UI.Silver/1.1.3.4": {
  5059. "sha512": "KURGslfhVctESnoAUAvzYntfVRMBjo2CBfwCx8jG/FAV1UZPRqU3CzxYDboZ93/5S4smFab+emLtCEAxpV0zAQ==",
  5060. "type": "package",
  5061. "path": "panuon.ui.silver/1.1.3.4",
  5062. "files": [
  5063. ".nupkg.metadata",
  5064. ".signature.p7s",
  5065. "lib/net40/Panuon.UI.Silver.dll",
  5066. "lib/net45/Panuon.UI.Silver.dll",
  5067. "lib/netcoreapp3.1/Panuon.UI.Silver.dll",
  5068. "panuon.ui.silver.1.1.3.4.nupkg.sha512",
  5069. "panuon.ui.silver.nuspec"
  5070. ]
  5071. },
  5072. "Polly/7.2.2": {
  5073. "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==",
  5074. "type": "package",
  5075. "path": "polly/7.2.2",
  5076. "files": [
  5077. ".nupkg.metadata",
  5078. ".signature.p7s",
  5079. "lib/net461/Polly.dll",
  5080. "lib/net461/Polly.pdb",
  5081. "lib/net461/Polly.xml",
  5082. "lib/net472/Polly.dll",
  5083. "lib/net472/Polly.pdb",
  5084. "lib/net472/Polly.xml",
  5085. "lib/netstandard1.1/Polly.dll",
  5086. "lib/netstandard1.1/Polly.pdb",
  5087. "lib/netstandard1.1/Polly.xml",
  5088. "lib/netstandard2.0/Polly.dll",
  5089. "lib/netstandard2.0/Polly.pdb",
  5090. "lib/netstandard2.0/Polly.xml",
  5091. "polly.7.2.2.nupkg.sha512",
  5092. "polly.nuspec"
  5093. ]
  5094. },
  5095. "Portable.BouncyCastle/1.8.9": {
  5096. "sha512": "wlJo8aFoeyl+W93iFXTK5ShzDYk5WBqoUPjTNEM0Xv9kn1H+4hmuCjF0/n8HLm9Nnp1aY6KNndWqQTNk+NGgRQ==",
  5097. "type": "package",
  5098. "path": "portable.bouncycastle/1.8.9",
  5099. "files": [
  5100. ".nupkg.metadata",
  5101. ".signature.p7s",
  5102. "lib/net40/BouncyCastle.Crypto.dll",
  5103. "lib/net40/BouncyCastle.Crypto.xml",
  5104. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  5105. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  5106. "portable.bouncycastle.1.8.9.nupkg.sha512",
  5107. "portable.bouncycastle.nuspec"
  5108. ]
  5109. },
  5110. "Prism.Core/8.1.97": {
  5111. "sha512": "EP5zrvWddw3eSq25Y7hHnDYdmLZEC2Z/gMrvmHzUuLbitmA1UaS7wQUlSwNr9Km8lzJNCvytFnaGBEFukHgoHg==",
  5112. "type": "package",
  5113. "path": "prism.core/8.1.97",
  5114. "files": [
  5115. ".nupkg.metadata",
  5116. ".signature.p7s",
  5117. "LICENSE",
  5118. "lib/net461/Prism.dll",
  5119. "lib/net461/Prism.pdb",
  5120. "lib/net461/Prism.xml",
  5121. "lib/net47/Prism.dll",
  5122. "lib/net47/Prism.pdb",
  5123. "lib/net47/Prism.xml",
  5124. "lib/net5.0/Prism.dll",
  5125. "lib/net5.0/Prism.pdb",
  5126. "lib/net5.0/Prism.xml",
  5127. "lib/netstandard2.0/Prism.dll",
  5128. "lib/netstandard2.0/Prism.pdb",
  5129. "lib/netstandard2.0/Prism.xml",
  5130. "prism-logo.png",
  5131. "prism.core.8.1.97.nupkg.sha512",
  5132. "prism.core.nuspec",
  5133. "readme.txt"
  5134. ]
  5135. },
  5136. "Prism.Unity/8.1.97": {
  5137. "sha512": "PDKDjC9HAFmCEoP8bgCwoGup0Lm0NyvYmN/kLbfO0Q4zmL/sZBDbP2KNC/UguXWOy0iH6fWiH9JYQYCGFZ4oBw==",
  5138. "type": "package",
  5139. "path": "prism.unity/8.1.97",
  5140. "files": [
  5141. ".nupkg.metadata",
  5142. ".signature.p7s",
  5143. "LICENSE",
  5144. "lib/net461/Prism.Unity.Wpf.dll",
  5145. "lib/net461/Prism.Unity.Wpf.pdb",
  5146. "lib/net461/Prism.Unity.Wpf.xml",
  5147. "lib/net47/Prism.Unity.Wpf.dll",
  5148. "lib/net47/Prism.Unity.Wpf.pdb",
  5149. "lib/net47/Prism.Unity.Wpf.xml",
  5150. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll",
  5151. "lib/net5.0-windows7.0/Prism.Unity.Wpf.pdb",
  5152. "lib/net5.0-windows7.0/Prism.Unity.Wpf.xml",
  5153. "lib/netcoreapp3.1/Prism.Unity.Wpf.dll",
  5154. "lib/netcoreapp3.1/Prism.Unity.Wpf.pdb",
  5155. "lib/netcoreapp3.1/Prism.Unity.Wpf.xml",
  5156. "prism-logo.png",
  5157. "prism.unity.8.1.97.nupkg.sha512",
  5158. "prism.unity.nuspec",
  5159. "readme.txt"
  5160. ]
  5161. },
  5162. "Prism.Wpf/8.1.97": {
  5163. "sha512": "ZEa6S1mK35h8/blyb0uR0ed3wkpHtPdhB4eniXINJnTiJMWlGl/As6SVlFFdOPD+qsEdWNYV3xgyQD/ue5cvBA==",
  5164. "type": "package",
  5165. "path": "prism.wpf/8.1.97",
  5166. "files": [
  5167. ".nupkg.metadata",
  5168. ".signature.p7s",
  5169. "LICENSE",
  5170. "lib/net461/Prism.Wpf.dll",
  5171. "lib/net461/Prism.Wpf.pdb",
  5172. "lib/net461/Prism.Wpf.xml",
  5173. "lib/net47/Prism.Wpf.dll",
  5174. "lib/net47/Prism.Wpf.pdb",
  5175. "lib/net47/Prism.Wpf.xml",
  5176. "lib/net5.0-windows7.0/Prism.Wpf.dll",
  5177. "lib/net5.0-windows7.0/Prism.Wpf.pdb",
  5178. "lib/net5.0-windows7.0/Prism.Wpf.xml",
  5179. "lib/netcoreapp3.1/Prism.Wpf.dll",
  5180. "lib/netcoreapp3.1/Prism.Wpf.pdb",
  5181. "lib/netcoreapp3.1/Prism.Wpf.xml",
  5182. "prism-logo.png",
  5183. "prism.wpf.8.1.97.nupkg.sha512",
  5184. "prism.wpf.nuspec",
  5185. "readme.txt"
  5186. ]
  5187. },
  5188. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5189. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  5190. "type": "package",
  5191. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. ".signature.p7s",
  5195. "ThirdPartyNotices.txt",
  5196. "dotnet_library_license.txt",
  5197. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5198. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5199. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5200. ]
  5201. },
  5202. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5203. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  5204. "type": "package",
  5205. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5206. "files": [
  5207. ".nupkg.metadata",
  5208. ".signature.p7s",
  5209. "ThirdPartyNotices.txt",
  5210. "dotnet_library_license.txt",
  5211. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5212. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5213. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5214. ]
  5215. },
  5216. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5217. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  5218. "type": "package",
  5219. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5220. "files": [
  5221. ".nupkg.metadata",
  5222. ".signature.p7s",
  5223. "ThirdPartyNotices.txt",
  5224. "dotnet_library_license.txt",
  5225. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5226. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5227. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5228. ]
  5229. },
  5230. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  5231. "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==",
  5232. "type": "package",
  5233. "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0",
  5234. "files": [
  5235. ".nupkg.metadata",
  5236. ".signature.p7s",
  5237. "Icon.png",
  5238. "LICENSE.TXT",
  5239. "THIRD-PARTY-NOTICES.TXT",
  5240. "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5241. "runtime.linux-arm.runtime.native.system.io.ports.nuspec",
  5242. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so",
  5243. "useSharedDesignerContext.txt"
  5244. ]
  5245. },
  5246. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  5247. "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==",
  5248. "type": "package",
  5249. "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0",
  5250. "files": [
  5251. ".nupkg.metadata",
  5252. ".signature.p7s",
  5253. "Icon.png",
  5254. "LICENSE.TXT",
  5255. "THIRD-PARTY-NOTICES.TXT",
  5256. "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5257. "runtime.linux-arm64.runtime.native.system.io.ports.nuspec",
  5258. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so",
  5259. "useSharedDesignerContext.txt"
  5260. ]
  5261. },
  5262. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  5263. "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==",
  5264. "type": "package",
  5265. "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0",
  5266. "files": [
  5267. ".nupkg.metadata",
  5268. ".signature.p7s",
  5269. "Icon.png",
  5270. "LICENSE.TXT",
  5271. "THIRD-PARTY-NOTICES.TXT",
  5272. "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5273. "runtime.linux-x64.runtime.native.system.io.ports.nuspec",
  5274. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so",
  5275. "useSharedDesignerContext.txt"
  5276. ]
  5277. },
  5278. "runtime.native.System/4.3.0": {
  5279. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5280. "type": "package",
  5281. "path": "runtime.native.system/4.3.0",
  5282. "files": [
  5283. ".nupkg.metadata",
  5284. ".signature.p7s",
  5285. "ThirdPartyNotices.txt",
  5286. "dotnet_library_license.txt",
  5287. "lib/netstandard1.0/_._",
  5288. "runtime.native.system.4.3.0.nupkg.sha512",
  5289. "runtime.native.system.nuspec"
  5290. ]
  5291. },
  5292. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  5293. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  5294. "type": "package",
  5295. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  5296. "files": [
  5297. ".nupkg.metadata",
  5298. ".signature.p7s",
  5299. "LICENSE.TXT",
  5300. "THIRD-PARTY-NOTICES.TXT",
  5301. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  5302. "runtime.native.system.data.sqlclient.sni.nuspec",
  5303. "useSharedDesignerContext.txt",
  5304. "version.txt"
  5305. ]
  5306. },
  5307. "runtime.native.System.IO.Compression/4.3.0": {
  5308. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5309. "type": "package",
  5310. "path": "runtime.native.system.io.compression/4.3.0",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "ThirdPartyNotices.txt",
  5315. "dotnet_library_license.txt",
  5316. "lib/netstandard1.0/_._",
  5317. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5318. "runtime.native.system.io.compression.nuspec"
  5319. ]
  5320. },
  5321. "runtime.native.System.IO.Ports/6.0.0": {
  5322. "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
  5323. "type": "package",
  5324. "path": "runtime.native.system.io.ports/6.0.0",
  5325. "files": [
  5326. ".nupkg.metadata",
  5327. ".signature.p7s",
  5328. "Icon.png",
  5329. "LICENSE.TXT",
  5330. "THIRD-PARTY-NOTICES.TXT",
  5331. "runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5332. "runtime.native.system.io.ports.nuspec",
  5333. "useSharedDesignerContext.txt"
  5334. ]
  5335. },
  5336. "runtime.native.System.Net.Http/4.3.0": {
  5337. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5338. "type": "package",
  5339. "path": "runtime.native.system.net.http/4.3.0",
  5340. "files": [
  5341. ".nupkg.metadata",
  5342. ".signature.p7s",
  5343. "ThirdPartyNotices.txt",
  5344. "dotnet_library_license.txt",
  5345. "lib/netstandard1.0/_._",
  5346. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5347. "runtime.native.system.net.http.nuspec"
  5348. ]
  5349. },
  5350. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5351. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5352. "type": "package",
  5353. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5354. "files": [
  5355. ".nupkg.metadata",
  5356. ".signature.p7s",
  5357. "ThirdPartyNotices.txt",
  5358. "dotnet_library_license.txt",
  5359. "lib/netstandard1.0/_._",
  5360. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5361. "runtime.native.system.security.cryptography.apple.nuspec"
  5362. ]
  5363. },
  5364. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5365. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  5366. "type": "package",
  5367. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  5368. "files": [
  5369. ".nupkg.metadata",
  5370. ".signature.p7s",
  5371. "ThirdPartyNotices.txt",
  5372. "dotnet_library_license.txt",
  5373. "lib/netstandard1.0/_._",
  5374. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5375. "runtime.native.system.security.cryptography.openssl.nuspec"
  5376. ]
  5377. },
  5378. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5379. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  5380. "type": "package",
  5381. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5382. "files": [
  5383. ".nupkg.metadata",
  5384. ".signature.p7s",
  5385. "ThirdPartyNotices.txt",
  5386. "dotnet_library_license.txt",
  5387. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5388. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5389. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5390. ]
  5391. },
  5392. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5393. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  5394. "type": "package",
  5395. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5396. "files": [
  5397. ".nupkg.metadata",
  5398. ".signature.p7s",
  5399. "ThirdPartyNotices.txt",
  5400. "dotnet_library_license.txt",
  5401. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5402. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5403. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5404. ]
  5405. },
  5406. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  5407. "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==",
  5408. "type": "package",
  5409. "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0",
  5410. "files": [
  5411. ".nupkg.metadata",
  5412. ".signature.p7s",
  5413. "Icon.png",
  5414. "LICENSE.TXT",
  5415. "THIRD-PARTY-NOTICES.TXT",
  5416. "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5417. "runtime.osx-arm64.runtime.native.system.io.ports.nuspec",
  5418. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib",
  5419. "useSharedDesignerContext.txt"
  5420. ]
  5421. },
  5422. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  5423. "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==",
  5424. "type": "package",
  5425. "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0",
  5426. "files": [
  5427. ".nupkg.metadata",
  5428. ".signature.p7s",
  5429. "Icon.png",
  5430. "LICENSE.TXT",
  5431. "THIRD-PARTY-NOTICES.TXT",
  5432. "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5433. "runtime.osx-x64.runtime.native.system.io.ports.nuspec",
  5434. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib",
  5435. "useSharedDesignerContext.txt"
  5436. ]
  5437. },
  5438. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5439. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5440. "type": "package",
  5441. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5442. "files": [
  5443. ".nupkg.metadata",
  5444. ".signature.p7s",
  5445. "ThirdPartyNotices.txt",
  5446. "dotnet_library_license.txt",
  5447. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5448. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5449. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5450. ]
  5451. },
  5452. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5453. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  5454. "type": "package",
  5455. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5456. "files": [
  5457. ".nupkg.metadata",
  5458. ".signature.p7s",
  5459. "ThirdPartyNotices.txt",
  5460. "dotnet_library_license.txt",
  5461. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5462. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5463. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5464. ]
  5465. },
  5466. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5467. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  5468. "type": "package",
  5469. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5470. "files": [
  5471. ".nupkg.metadata",
  5472. ".signature.p7s",
  5473. "ThirdPartyNotices.txt",
  5474. "dotnet_library_license.txt",
  5475. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5476. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5477. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5478. ]
  5479. },
  5480. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5481. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  5482. "type": "package",
  5483. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5484. "files": [
  5485. ".nupkg.metadata",
  5486. ".signature.p7s",
  5487. "ThirdPartyNotices.txt",
  5488. "dotnet_library_license.txt",
  5489. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5490. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5491. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5492. ]
  5493. },
  5494. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5495. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  5496. "type": "package",
  5497. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5498. "files": [
  5499. ".nupkg.metadata",
  5500. ".signature.p7s",
  5501. "ThirdPartyNotices.txt",
  5502. "dotnet_library_license.txt",
  5503. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5504. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5505. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5506. ]
  5507. },
  5508. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5509. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  5510. "type": "package",
  5511. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5512. "files": [
  5513. ".nupkg.metadata",
  5514. ".signature.p7s",
  5515. "ThirdPartyNotices.txt",
  5516. "dotnet_library_license.txt",
  5517. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5518. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5519. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5520. ]
  5521. },
  5522. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5523. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  5524. "type": "package",
  5525. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  5526. "files": [
  5527. ".nupkg.metadata",
  5528. ".signature.p7s",
  5529. "ThirdPartyNotices.txt",
  5530. "dotnet_library_license.txt",
  5531. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5532. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  5533. "runtimes/win-arm64/native/sni.dll",
  5534. "useSharedDesignerContext.txt",
  5535. "version.txt"
  5536. ]
  5537. },
  5538. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5539. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  5540. "type": "package",
  5541. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  5542. "files": [
  5543. ".nupkg.metadata",
  5544. ".signature.p7s",
  5545. "ThirdPartyNotices.txt",
  5546. "dotnet_library_license.txt",
  5547. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5548. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  5549. "runtimes/win-x64/native/sni.dll",
  5550. "useSharedDesignerContext.txt",
  5551. "version.txt"
  5552. ]
  5553. },
  5554. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5555. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  5556. "type": "package",
  5557. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  5558. "files": [
  5559. ".nupkg.metadata",
  5560. ".signature.p7s",
  5561. "ThirdPartyNotices.txt",
  5562. "dotnet_library_license.txt",
  5563. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5564. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  5565. "runtimes/win-x86/native/sni.dll",
  5566. "useSharedDesignerContext.txt",
  5567. "version.txt"
  5568. ]
  5569. },
  5570. "Serilog/2.10.0": {
  5571. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  5572. "type": "package",
  5573. "path": "serilog/2.10.0",
  5574. "files": [
  5575. ".nupkg.metadata",
  5576. ".signature.p7s",
  5577. "icon.png",
  5578. "lib/net45/Serilog.dll",
  5579. "lib/net45/Serilog.xml",
  5580. "lib/net46/Serilog.dll",
  5581. "lib/net46/Serilog.xml",
  5582. "lib/netstandard1.0/Serilog.dll",
  5583. "lib/netstandard1.0/Serilog.xml",
  5584. "lib/netstandard1.3/Serilog.dll",
  5585. "lib/netstandard1.3/Serilog.xml",
  5586. "lib/netstandard2.0/Serilog.dll",
  5587. "lib/netstandard2.0/Serilog.xml",
  5588. "lib/netstandard2.1/Serilog.dll",
  5589. "lib/netstandard2.1/Serilog.xml",
  5590. "serilog.2.10.0.nupkg.sha512",
  5591. "serilog.nuspec"
  5592. ]
  5593. },
  5594. "Serilog.Enrichers.Thread/3.1.0": {
  5595. "sha512": "85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
  5596. "type": "package",
  5597. "path": "serilog.enrichers.thread/3.1.0",
  5598. "files": [
  5599. ".nupkg.metadata",
  5600. ".signature.p7s",
  5601. "lib/net45/Serilog.Enrichers.Thread.dll",
  5602. "lib/net45/Serilog.Enrichers.Thread.xml",
  5603. "lib/netstandard1.0/Serilog.Enrichers.Thread.dll",
  5604. "lib/netstandard1.0/Serilog.Enrichers.Thread.xml",
  5605. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll",
  5606. "lib/netstandard2.0/Serilog.Enrichers.Thread.xml",
  5607. "serilog.enrichers.thread.3.1.0.nupkg.sha512",
  5608. "serilog.enrichers.thread.nuspec"
  5609. ]
  5610. },
  5611. "Serilog.Extensions.Logging/3.0.1": {
  5612. "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
  5613. "type": "package",
  5614. "path": "serilog.extensions.logging/3.0.1",
  5615. "files": [
  5616. ".nupkg.metadata",
  5617. ".signature.p7s",
  5618. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  5619. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  5620. "serilog.extensions.logging.3.0.1.nupkg.sha512",
  5621. "serilog.extensions.logging.nuspec"
  5622. ]
  5623. },
  5624. "Serilog.Formatting.Compact/1.1.0": {
  5625. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  5626. "type": "package",
  5627. "path": "serilog.formatting.compact/1.1.0",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "lib/net452/Serilog.Formatting.Compact.dll",
  5632. "lib/net452/Serilog.Formatting.Compact.xml",
  5633. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  5634. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  5635. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  5636. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  5637. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  5638. "serilog.formatting.compact.nuspec"
  5639. ]
  5640. },
  5641. "Serilog.Settings.Configuration/3.1.0": {
  5642. "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
  5643. "type": "package",
  5644. "path": "serilog.settings.configuration/3.1.0",
  5645. "files": [
  5646. ".nupkg.metadata",
  5647. ".signature.p7s",
  5648. "lib/net451/Serilog.Settings.Configuration.dll",
  5649. "lib/net451/Serilog.Settings.Configuration.xml",
  5650. "lib/net461/Serilog.Settings.Configuration.dll",
  5651. "lib/net461/Serilog.Settings.Configuration.xml",
  5652. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  5653. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  5654. "serilog.settings.configuration.3.1.0.nupkg.sha512",
  5655. "serilog.settings.configuration.nuspec"
  5656. ]
  5657. },
  5658. "Serilog.Sinks.Console/3.1.1": {
  5659. "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
  5660. "type": "package",
  5661. "path": "serilog.sinks.console/3.1.1",
  5662. "files": [
  5663. ".nupkg.metadata",
  5664. ".signature.p7s",
  5665. "lib/net45/Serilog.Sinks.Console.dll",
  5666. "lib/net45/Serilog.Sinks.Console.xml",
  5667. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
  5668. "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
  5669. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  5670. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  5671. "serilog.sinks.console.3.1.1.nupkg.sha512",
  5672. "serilog.sinks.console.nuspec"
  5673. ]
  5674. },
  5675. "Serilog.Sinks.File/4.1.0": {
  5676. "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
  5677. "type": "package",
  5678. "path": "serilog.sinks.file/4.1.0",
  5679. "files": [
  5680. ".nupkg.metadata",
  5681. ".signature.p7s",
  5682. "lib/net45/Serilog.Sinks.File.dll",
  5683. "lib/net45/Serilog.Sinks.File.pdb",
  5684. "lib/net45/Serilog.Sinks.File.xml",
  5685. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  5686. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  5687. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  5688. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  5689. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  5690. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  5691. "serilog.sinks.file.4.1.0.nupkg.sha512",
  5692. "serilog.sinks.file.nuspec"
  5693. ]
  5694. },
  5695. "SharpZipLib/1.3.3": {
  5696. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  5697. "type": "package",
  5698. "path": "sharpziplib/1.3.3",
  5699. "files": [
  5700. ".nupkg.metadata",
  5701. ".signature.p7s",
  5702. "images/sharpziplib-nuget-256x256.png",
  5703. "lib/net45/ICSharpCode.SharpZipLib.dll",
  5704. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  5705. "lib/net45/ICSharpCode.SharpZipLib.xml",
  5706. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  5707. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  5708. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  5709. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  5710. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  5711. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  5712. "sharpziplib.1.3.3.nupkg.sha512",
  5713. "sharpziplib.nuspec"
  5714. ]
  5715. },
  5716. "SQLitePCLRaw.core/2.0.6": {
  5717. "sha512": "Vh8n0dTvwXkCGur2WqQTITvk4BUO8i8h9ucSx3wwuaej3s2S6ZC0R7vqCTf9TfS/I4QkXO6g3W2YQIRFkOcijA==",
  5718. "type": "package",
  5719. "path": "sqlitepclraw.core/2.0.6",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  5724. "sqlitepclraw.core.2.0.6.nupkg.sha512",
  5725. "sqlitepclraw.core.nuspec"
  5726. ]
  5727. },
  5728. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  5729. "sha512": "ZQU6AdbxWAqS8sEhrF+PhOV5I5mHx04YI3uu/c1gTNs86wPu6F3/D/kcMyArg2hm3G2U1/8aMGFICMC9iBzJTA==",
  5730. "type": "package",
  5731. "path": "stub.system.data.sqlite.core.netstandard/1.0.114",
  5732. "files": [
  5733. ".nupkg.metadata",
  5734. ".signature.p7s",
  5735. "lib/netstandard2.0/System.Data.SQLite.dll",
  5736. "lib/netstandard2.0/System.Data.SQLite.dll.altconfig",
  5737. "lib/netstandard2.0/System.Data.SQLite.xml",
  5738. "lib/netstandard2.1/System.Data.SQLite.dll",
  5739. "lib/netstandard2.1/System.Data.SQLite.dll.altconfig",
  5740. "lib/netstandard2.1/System.Data.SQLite.xml",
  5741. "runtimes/linux-x64/native/SQLite.Interop.dll",
  5742. "runtimes/osx-x64/native/SQLite.Interop.dll",
  5743. "runtimes/win-x64/native/SQLite.Interop.dll",
  5744. "runtimes/win-x86/native/SQLite.Interop.dll",
  5745. "stub.system.data.sqlite.core.netstandard.1.0.114.nupkg.sha512",
  5746. "stub.system.data.sqlite.core.netstandard.nuspec"
  5747. ]
  5748. },
  5749. "System.AppContext/4.3.0": {
  5750. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5751. "type": "package",
  5752. "path": "system.appcontext/4.3.0",
  5753. "files": [
  5754. ".nupkg.metadata",
  5755. ".signature.p7s",
  5756. "ThirdPartyNotices.txt",
  5757. "dotnet_library_license.txt",
  5758. "lib/MonoAndroid10/_._",
  5759. "lib/MonoTouch10/_._",
  5760. "lib/net46/System.AppContext.dll",
  5761. "lib/net463/System.AppContext.dll",
  5762. "lib/netcore50/System.AppContext.dll",
  5763. "lib/netstandard1.6/System.AppContext.dll",
  5764. "lib/xamarinios10/_._",
  5765. "lib/xamarinmac20/_._",
  5766. "lib/xamarintvos10/_._",
  5767. "lib/xamarinwatchos10/_._",
  5768. "ref/MonoAndroid10/_._",
  5769. "ref/MonoTouch10/_._",
  5770. "ref/net46/System.AppContext.dll",
  5771. "ref/net463/System.AppContext.dll",
  5772. "ref/netstandard/_._",
  5773. "ref/netstandard1.3/System.AppContext.dll",
  5774. "ref/netstandard1.3/System.AppContext.xml",
  5775. "ref/netstandard1.3/de/System.AppContext.xml",
  5776. "ref/netstandard1.3/es/System.AppContext.xml",
  5777. "ref/netstandard1.3/fr/System.AppContext.xml",
  5778. "ref/netstandard1.3/it/System.AppContext.xml",
  5779. "ref/netstandard1.3/ja/System.AppContext.xml",
  5780. "ref/netstandard1.3/ko/System.AppContext.xml",
  5781. "ref/netstandard1.3/ru/System.AppContext.xml",
  5782. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5783. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5784. "ref/netstandard1.6/System.AppContext.dll",
  5785. "ref/netstandard1.6/System.AppContext.xml",
  5786. "ref/netstandard1.6/de/System.AppContext.xml",
  5787. "ref/netstandard1.6/es/System.AppContext.xml",
  5788. "ref/netstandard1.6/fr/System.AppContext.xml",
  5789. "ref/netstandard1.6/it/System.AppContext.xml",
  5790. "ref/netstandard1.6/ja/System.AppContext.xml",
  5791. "ref/netstandard1.6/ko/System.AppContext.xml",
  5792. "ref/netstandard1.6/ru/System.AppContext.xml",
  5793. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5794. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5795. "ref/xamarinios10/_._",
  5796. "ref/xamarinmac20/_._",
  5797. "ref/xamarintvos10/_._",
  5798. "ref/xamarinwatchos10/_._",
  5799. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5800. "system.appcontext.4.3.0.nupkg.sha512",
  5801. "system.appcontext.nuspec"
  5802. ]
  5803. },
  5804. "System.Buffers/4.5.1": {
  5805. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5806. "type": "package",
  5807. "path": "system.buffers/4.5.1",
  5808. "files": [
  5809. ".nupkg.metadata",
  5810. ".signature.p7s",
  5811. "LICENSE.TXT",
  5812. "THIRD-PARTY-NOTICES.TXT",
  5813. "lib/net461/System.Buffers.dll",
  5814. "lib/net461/System.Buffers.xml",
  5815. "lib/netcoreapp2.0/_._",
  5816. "lib/netstandard1.1/System.Buffers.dll",
  5817. "lib/netstandard1.1/System.Buffers.xml",
  5818. "lib/netstandard2.0/System.Buffers.dll",
  5819. "lib/netstandard2.0/System.Buffers.xml",
  5820. "lib/uap10.0.16299/_._",
  5821. "ref/net45/System.Buffers.dll",
  5822. "ref/net45/System.Buffers.xml",
  5823. "ref/netcoreapp2.0/_._",
  5824. "ref/netstandard1.1/System.Buffers.dll",
  5825. "ref/netstandard1.1/System.Buffers.xml",
  5826. "ref/netstandard2.0/System.Buffers.dll",
  5827. "ref/netstandard2.0/System.Buffers.xml",
  5828. "ref/uap10.0.16299/_._",
  5829. "system.buffers.4.5.1.nupkg.sha512",
  5830. "system.buffers.nuspec",
  5831. "useSharedDesignerContext.txt",
  5832. "version.txt"
  5833. ]
  5834. },
  5835. "System.Collections/4.3.0": {
  5836. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5837. "type": "package",
  5838. "path": "system.collections/4.3.0",
  5839. "files": [
  5840. ".nupkg.metadata",
  5841. ".signature.p7s",
  5842. "ThirdPartyNotices.txt",
  5843. "dotnet_library_license.txt",
  5844. "lib/MonoAndroid10/_._",
  5845. "lib/MonoTouch10/_._",
  5846. "lib/net45/_._",
  5847. "lib/portable-net45+win8+wp8+wpa81/_._",
  5848. "lib/win8/_._",
  5849. "lib/wp80/_._",
  5850. "lib/wpa81/_._",
  5851. "lib/xamarinios10/_._",
  5852. "lib/xamarinmac20/_._",
  5853. "lib/xamarintvos10/_._",
  5854. "lib/xamarinwatchos10/_._",
  5855. "ref/MonoAndroid10/_._",
  5856. "ref/MonoTouch10/_._",
  5857. "ref/net45/_._",
  5858. "ref/netcore50/System.Collections.dll",
  5859. "ref/netcore50/System.Collections.xml",
  5860. "ref/netcore50/de/System.Collections.xml",
  5861. "ref/netcore50/es/System.Collections.xml",
  5862. "ref/netcore50/fr/System.Collections.xml",
  5863. "ref/netcore50/it/System.Collections.xml",
  5864. "ref/netcore50/ja/System.Collections.xml",
  5865. "ref/netcore50/ko/System.Collections.xml",
  5866. "ref/netcore50/ru/System.Collections.xml",
  5867. "ref/netcore50/zh-hans/System.Collections.xml",
  5868. "ref/netcore50/zh-hant/System.Collections.xml",
  5869. "ref/netstandard1.0/System.Collections.dll",
  5870. "ref/netstandard1.0/System.Collections.xml",
  5871. "ref/netstandard1.0/de/System.Collections.xml",
  5872. "ref/netstandard1.0/es/System.Collections.xml",
  5873. "ref/netstandard1.0/fr/System.Collections.xml",
  5874. "ref/netstandard1.0/it/System.Collections.xml",
  5875. "ref/netstandard1.0/ja/System.Collections.xml",
  5876. "ref/netstandard1.0/ko/System.Collections.xml",
  5877. "ref/netstandard1.0/ru/System.Collections.xml",
  5878. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5879. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5880. "ref/netstandard1.3/System.Collections.dll",
  5881. "ref/netstandard1.3/System.Collections.xml",
  5882. "ref/netstandard1.3/de/System.Collections.xml",
  5883. "ref/netstandard1.3/es/System.Collections.xml",
  5884. "ref/netstandard1.3/fr/System.Collections.xml",
  5885. "ref/netstandard1.3/it/System.Collections.xml",
  5886. "ref/netstandard1.3/ja/System.Collections.xml",
  5887. "ref/netstandard1.3/ko/System.Collections.xml",
  5888. "ref/netstandard1.3/ru/System.Collections.xml",
  5889. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5890. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5891. "ref/portable-net45+win8+wp8+wpa81/_._",
  5892. "ref/win8/_._",
  5893. "ref/wp80/_._",
  5894. "ref/wpa81/_._",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "system.collections.4.3.0.nupkg.sha512",
  5900. "system.collections.nuspec"
  5901. ]
  5902. },
  5903. "System.Collections.Concurrent/4.3.0": {
  5904. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5905. "type": "package",
  5906. "path": "system.collections.concurrent/4.3.0",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "ThirdPartyNotices.txt",
  5911. "dotnet_library_license.txt",
  5912. "lib/MonoAndroid10/_._",
  5913. "lib/MonoTouch10/_._",
  5914. "lib/net45/_._",
  5915. "lib/netcore50/System.Collections.Concurrent.dll",
  5916. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5917. "lib/portable-net45+win8+wpa81/_._",
  5918. "lib/win8/_._",
  5919. "lib/wpa81/_._",
  5920. "lib/xamarinios10/_._",
  5921. "lib/xamarinmac20/_._",
  5922. "lib/xamarintvos10/_._",
  5923. "lib/xamarinwatchos10/_._",
  5924. "ref/MonoAndroid10/_._",
  5925. "ref/MonoTouch10/_._",
  5926. "ref/net45/_._",
  5927. "ref/netcore50/System.Collections.Concurrent.dll",
  5928. "ref/netcore50/System.Collections.Concurrent.xml",
  5929. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5930. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5931. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5932. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5933. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5934. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5935. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5936. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5937. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5938. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5939. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5940. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5941. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5942. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5943. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5944. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5945. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5946. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5947. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5948. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5949. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5950. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5951. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5952. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5953. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5954. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5955. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5956. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5957. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5958. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5959. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5960. "ref/portable-net45+win8+wpa81/_._",
  5961. "ref/win8/_._",
  5962. "ref/wpa81/_._",
  5963. "ref/xamarinios10/_._",
  5964. "ref/xamarinmac20/_._",
  5965. "ref/xamarintvos10/_._",
  5966. "ref/xamarinwatchos10/_._",
  5967. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5968. "system.collections.concurrent.nuspec"
  5969. ]
  5970. },
  5971. "System.Collections.NonGeneric/4.3.0": {
  5972. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5973. "type": "package",
  5974. "path": "system.collections.nongeneric/4.3.0",
  5975. "files": [
  5976. ".nupkg.metadata",
  5977. ".signature.p7s",
  5978. "ThirdPartyNotices.txt",
  5979. "dotnet_library_license.txt",
  5980. "lib/MonoAndroid10/_._",
  5981. "lib/MonoTouch10/_._",
  5982. "lib/net46/System.Collections.NonGeneric.dll",
  5983. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5984. "lib/xamarinios10/_._",
  5985. "lib/xamarinmac20/_._",
  5986. "lib/xamarintvos10/_._",
  5987. "lib/xamarinwatchos10/_._",
  5988. "ref/MonoAndroid10/_._",
  5989. "ref/MonoTouch10/_._",
  5990. "ref/net46/System.Collections.NonGeneric.dll",
  5991. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5992. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5993. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5994. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5995. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5996. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5997. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5998. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5999. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6000. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6001. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6002. "ref/xamarinios10/_._",
  6003. "ref/xamarinmac20/_._",
  6004. "ref/xamarintvos10/_._",
  6005. "ref/xamarinwatchos10/_._",
  6006. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6007. "system.collections.nongeneric.nuspec"
  6008. ]
  6009. },
  6010. "System.Collections.Specialized/4.3.0": {
  6011. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6012. "type": "package",
  6013. "path": "system.collections.specialized/4.3.0",
  6014. "files": [
  6015. ".nupkg.metadata",
  6016. ".signature.p7s",
  6017. "ThirdPartyNotices.txt",
  6018. "dotnet_library_license.txt",
  6019. "lib/MonoAndroid10/_._",
  6020. "lib/MonoTouch10/_._",
  6021. "lib/net46/System.Collections.Specialized.dll",
  6022. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6023. "lib/xamarinios10/_._",
  6024. "lib/xamarinmac20/_._",
  6025. "lib/xamarintvos10/_._",
  6026. "lib/xamarinwatchos10/_._",
  6027. "ref/MonoAndroid10/_._",
  6028. "ref/MonoTouch10/_._",
  6029. "ref/net46/System.Collections.Specialized.dll",
  6030. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6031. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6032. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6033. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6034. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6035. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6036. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6037. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6038. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6039. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6040. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "system.collections.specialized.4.3.0.nupkg.sha512",
  6046. "system.collections.specialized.nuspec"
  6047. ]
  6048. },
  6049. "System.ComponentModel/4.3.0": {
  6050. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6051. "type": "package",
  6052. "path": "system.componentmodel/4.3.0",
  6053. "files": [
  6054. ".nupkg.metadata",
  6055. ".signature.p7s",
  6056. "ThirdPartyNotices.txt",
  6057. "dotnet_library_license.txt",
  6058. "lib/MonoAndroid10/_._",
  6059. "lib/MonoTouch10/_._",
  6060. "lib/net45/_._",
  6061. "lib/netcore50/System.ComponentModel.dll",
  6062. "lib/netstandard1.3/System.ComponentModel.dll",
  6063. "lib/portable-net45+win8+wp8+wpa81/_._",
  6064. "lib/win8/_._",
  6065. "lib/wp80/_._",
  6066. "lib/wpa81/_._",
  6067. "lib/xamarinios10/_._",
  6068. "lib/xamarinmac20/_._",
  6069. "lib/xamarintvos10/_._",
  6070. "lib/xamarinwatchos10/_._",
  6071. "ref/MonoAndroid10/_._",
  6072. "ref/MonoTouch10/_._",
  6073. "ref/net45/_._",
  6074. "ref/netcore50/System.ComponentModel.dll",
  6075. "ref/netcore50/System.ComponentModel.xml",
  6076. "ref/netcore50/de/System.ComponentModel.xml",
  6077. "ref/netcore50/es/System.ComponentModel.xml",
  6078. "ref/netcore50/fr/System.ComponentModel.xml",
  6079. "ref/netcore50/it/System.ComponentModel.xml",
  6080. "ref/netcore50/ja/System.ComponentModel.xml",
  6081. "ref/netcore50/ko/System.ComponentModel.xml",
  6082. "ref/netcore50/ru/System.ComponentModel.xml",
  6083. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6084. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6085. "ref/netstandard1.0/System.ComponentModel.dll",
  6086. "ref/netstandard1.0/System.ComponentModel.xml",
  6087. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6088. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6089. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6090. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6091. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6092. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6093. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6094. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6095. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6096. "ref/portable-net45+win8+wp8+wpa81/_._",
  6097. "ref/win8/_._",
  6098. "ref/wp80/_._",
  6099. "ref/wpa81/_._",
  6100. "ref/xamarinios10/_._",
  6101. "ref/xamarinmac20/_._",
  6102. "ref/xamarintvos10/_._",
  6103. "ref/xamarinwatchos10/_._",
  6104. "system.componentmodel.4.3.0.nupkg.sha512",
  6105. "system.componentmodel.nuspec"
  6106. ]
  6107. },
  6108. "System.ComponentModel.Annotations/5.0.0": {
  6109. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6110. "type": "package",
  6111. "path": "system.componentmodel.annotations/5.0.0",
  6112. "files": [
  6113. ".nupkg.metadata",
  6114. ".signature.p7s",
  6115. "Icon.png",
  6116. "LICENSE.TXT",
  6117. "THIRD-PARTY-NOTICES.TXT",
  6118. "lib/MonoAndroid10/_._",
  6119. "lib/MonoTouch10/_._",
  6120. "lib/net45/_._",
  6121. "lib/net461/System.ComponentModel.Annotations.dll",
  6122. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6123. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6124. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6125. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6126. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6127. "lib/portable-net45+win8/_._",
  6128. "lib/win8/_._",
  6129. "lib/xamarinios10/_._",
  6130. "lib/xamarinmac20/_._",
  6131. "lib/xamarintvos10/_._",
  6132. "lib/xamarinwatchos10/_._",
  6133. "ref/MonoAndroid10/_._",
  6134. "ref/MonoTouch10/_._",
  6135. "ref/net45/_._",
  6136. "ref/net461/System.ComponentModel.Annotations.dll",
  6137. "ref/net461/System.ComponentModel.Annotations.xml",
  6138. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6139. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6140. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6141. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6142. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6143. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6144. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6145. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6146. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6147. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6148. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6149. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6150. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6151. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6152. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6153. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6154. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6155. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6156. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6157. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6158. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6159. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6160. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6161. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6162. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6163. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6164. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6165. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6166. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6167. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6168. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6169. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6170. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6171. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6172. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6173. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6174. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6175. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6176. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6177. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6178. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6179. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6180. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6181. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6182. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6183. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6184. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6185. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6186. "ref/portable-net45+win8/_._",
  6187. "ref/win8/_._",
  6188. "ref/xamarinios10/_._",
  6189. "ref/xamarinmac20/_._",
  6190. "ref/xamarintvos10/_._",
  6191. "ref/xamarinwatchos10/_._",
  6192. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6193. "system.componentmodel.annotations.nuspec",
  6194. "useSharedDesignerContext.txt",
  6195. "version.txt"
  6196. ]
  6197. },
  6198. "System.ComponentModel.Primitives/4.3.0": {
  6199. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6200. "type": "package",
  6201. "path": "system.componentmodel.primitives/4.3.0",
  6202. "files": [
  6203. ".nupkg.metadata",
  6204. ".signature.p7s",
  6205. "ThirdPartyNotices.txt",
  6206. "dotnet_library_license.txt",
  6207. "lib/MonoAndroid10/_._",
  6208. "lib/MonoTouch10/_._",
  6209. "lib/net45/System.ComponentModel.Primitives.dll",
  6210. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6211. "lib/xamarinios10/_._",
  6212. "lib/xamarinmac20/_._",
  6213. "lib/xamarintvos10/_._",
  6214. "lib/xamarinwatchos10/_._",
  6215. "ref/MonoAndroid10/_._",
  6216. "ref/MonoTouch10/_._",
  6217. "ref/net45/System.ComponentModel.Primitives.dll",
  6218. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6219. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6220. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6221. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6222. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6223. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6224. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6225. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6226. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6227. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6228. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6229. "ref/xamarinios10/_._",
  6230. "ref/xamarinmac20/_._",
  6231. "ref/xamarintvos10/_._",
  6232. "ref/xamarinwatchos10/_._",
  6233. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6234. "system.componentmodel.primitives.nuspec"
  6235. ]
  6236. },
  6237. "System.ComponentModel.TypeConverter/4.3.0": {
  6238. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6239. "type": "package",
  6240. "path": "system.componentmodel.typeconverter/4.3.0",
  6241. "files": [
  6242. ".nupkg.metadata",
  6243. ".signature.p7s",
  6244. "ThirdPartyNotices.txt",
  6245. "dotnet_library_license.txt",
  6246. "lib/MonoAndroid10/_._",
  6247. "lib/MonoTouch10/_._",
  6248. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6249. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6250. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6251. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6252. "lib/xamarinios10/_._",
  6253. "lib/xamarinmac20/_._",
  6254. "lib/xamarintvos10/_._",
  6255. "lib/xamarinwatchos10/_._",
  6256. "ref/MonoAndroid10/_._",
  6257. "ref/MonoTouch10/_._",
  6258. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6259. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6260. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6261. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6262. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6263. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6264. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6265. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6266. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6267. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6268. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6269. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6270. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6271. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6272. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6273. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6274. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6275. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6276. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6277. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6278. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6279. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6280. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6281. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6282. "ref/xamarinios10/_._",
  6283. "ref/xamarinmac20/_._",
  6284. "ref/xamarintvos10/_._",
  6285. "ref/xamarinwatchos10/_._",
  6286. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6287. "system.componentmodel.typeconverter.nuspec"
  6288. ]
  6289. },
  6290. "System.Configuration.ConfigurationManager/4.5.0": {
  6291. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  6292. "type": "package",
  6293. "path": "system.configuration.configurationmanager/4.5.0",
  6294. "files": [
  6295. ".nupkg.metadata",
  6296. ".signature.p7s",
  6297. "LICENSE.TXT",
  6298. "THIRD-PARTY-NOTICES.TXT",
  6299. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6300. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6301. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6302. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6303. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6304. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6305. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  6306. "system.configuration.configurationmanager.nuspec",
  6307. "useSharedDesignerContext.txt",
  6308. "version.txt"
  6309. ]
  6310. },
  6311. "System.Console/4.3.0": {
  6312. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6313. "type": "package",
  6314. "path": "system.console/4.3.0",
  6315. "files": [
  6316. ".nupkg.metadata",
  6317. ".signature.p7s",
  6318. "ThirdPartyNotices.txt",
  6319. "dotnet_library_license.txt",
  6320. "lib/MonoAndroid10/_._",
  6321. "lib/MonoTouch10/_._",
  6322. "lib/net46/System.Console.dll",
  6323. "lib/xamarinios10/_._",
  6324. "lib/xamarinmac20/_._",
  6325. "lib/xamarintvos10/_._",
  6326. "lib/xamarinwatchos10/_._",
  6327. "ref/MonoAndroid10/_._",
  6328. "ref/MonoTouch10/_._",
  6329. "ref/net46/System.Console.dll",
  6330. "ref/netstandard1.3/System.Console.dll",
  6331. "ref/netstandard1.3/System.Console.xml",
  6332. "ref/netstandard1.3/de/System.Console.xml",
  6333. "ref/netstandard1.3/es/System.Console.xml",
  6334. "ref/netstandard1.3/fr/System.Console.xml",
  6335. "ref/netstandard1.3/it/System.Console.xml",
  6336. "ref/netstandard1.3/ja/System.Console.xml",
  6337. "ref/netstandard1.3/ko/System.Console.xml",
  6338. "ref/netstandard1.3/ru/System.Console.xml",
  6339. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6340. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6341. "ref/xamarinios10/_._",
  6342. "ref/xamarinmac20/_._",
  6343. "ref/xamarintvos10/_._",
  6344. "ref/xamarinwatchos10/_._",
  6345. "system.console.4.3.0.nupkg.sha512",
  6346. "system.console.nuspec"
  6347. ]
  6348. },
  6349. "System.Data.Common/4.3.0": {
  6350. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  6351. "type": "package",
  6352. "path": "system.data.common/4.3.0",
  6353. "files": [
  6354. ".nupkg.metadata",
  6355. ".signature.p7s",
  6356. "ThirdPartyNotices.txt",
  6357. "dotnet_library_license.txt",
  6358. "lib/MonoAndroid10/_._",
  6359. "lib/MonoTouch10/_._",
  6360. "lib/net451/System.Data.Common.dll",
  6361. "lib/netstandard1.2/System.Data.Common.dll",
  6362. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6363. "lib/xamarinios10/_._",
  6364. "lib/xamarinmac20/_._",
  6365. "lib/xamarintvos10/_._",
  6366. "lib/xamarinwatchos10/_._",
  6367. "ref/MonoAndroid10/_._",
  6368. "ref/MonoTouch10/_._",
  6369. "ref/net451/System.Data.Common.dll",
  6370. "ref/netstandard1.2/System.Data.Common.dll",
  6371. "ref/netstandard1.2/System.Data.Common.xml",
  6372. "ref/netstandard1.2/de/System.Data.Common.xml",
  6373. "ref/netstandard1.2/es/System.Data.Common.xml",
  6374. "ref/netstandard1.2/fr/System.Data.Common.xml",
  6375. "ref/netstandard1.2/it/System.Data.Common.xml",
  6376. "ref/netstandard1.2/ja/System.Data.Common.xml",
  6377. "ref/netstandard1.2/ko/System.Data.Common.xml",
  6378. "ref/netstandard1.2/ru/System.Data.Common.xml",
  6379. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  6380. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  6381. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6382. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  6383. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  6384. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  6385. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  6386. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  6387. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  6388. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  6389. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  6390. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  6391. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  6392. "ref/xamarinios10/_._",
  6393. "ref/xamarinmac20/_._",
  6394. "ref/xamarintvos10/_._",
  6395. "ref/xamarinwatchos10/_._",
  6396. "system.data.common.4.3.0.nupkg.sha512",
  6397. "system.data.common.nuspec"
  6398. ]
  6399. },
  6400. "System.Data.SqlClient/4.8.3": {
  6401. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  6402. "type": "package",
  6403. "path": "system.data.sqlclient/4.8.3",
  6404. "files": [
  6405. ".nupkg.metadata",
  6406. ".signature.p7s",
  6407. "Icon.png",
  6408. "LICENSE.TXT",
  6409. "THIRD-PARTY-NOTICES.TXT",
  6410. "lib/MonoAndroid10/_._",
  6411. "lib/MonoTouch10/_._",
  6412. "lib/net451/System.Data.SqlClient.dll",
  6413. "lib/net46/System.Data.SqlClient.dll",
  6414. "lib/net461/System.Data.SqlClient.dll",
  6415. "lib/net461/System.Data.SqlClient.xml",
  6416. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6417. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6418. "lib/netstandard1.2/System.Data.SqlClient.dll",
  6419. "lib/netstandard1.2/System.Data.SqlClient.xml",
  6420. "lib/netstandard1.3/System.Data.SqlClient.dll",
  6421. "lib/netstandard1.3/System.Data.SqlClient.xml",
  6422. "lib/netstandard2.0/System.Data.SqlClient.dll",
  6423. "lib/netstandard2.0/System.Data.SqlClient.xml",
  6424. "lib/xamarinios10/_._",
  6425. "lib/xamarinmac20/_._",
  6426. "lib/xamarintvos10/_._",
  6427. "lib/xamarinwatchos10/_._",
  6428. "ref/MonoAndroid10/_._",
  6429. "ref/MonoTouch10/_._",
  6430. "ref/net451/System.Data.SqlClient.dll",
  6431. "ref/net46/System.Data.SqlClient.dll",
  6432. "ref/net461/System.Data.SqlClient.dll",
  6433. "ref/net461/System.Data.SqlClient.xml",
  6434. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  6435. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  6436. "ref/netstandard1.2/System.Data.SqlClient.dll",
  6437. "ref/netstandard1.2/System.Data.SqlClient.xml",
  6438. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  6439. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  6440. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  6441. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  6442. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  6443. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  6444. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  6445. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  6446. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  6447. "ref/netstandard1.3/System.Data.SqlClient.dll",
  6448. "ref/netstandard1.3/System.Data.SqlClient.xml",
  6449. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  6450. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  6451. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  6452. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  6453. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  6454. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  6455. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  6456. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  6457. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  6458. "ref/netstandard2.0/System.Data.SqlClient.dll",
  6459. "ref/netstandard2.0/System.Data.SqlClient.xml",
  6460. "ref/xamarinios10/_._",
  6461. "ref/xamarinmac20/_._",
  6462. "ref/xamarintvos10/_._",
  6463. "ref/xamarinwatchos10/_._",
  6464. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6465. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6466. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  6467. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  6468. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  6469. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  6470. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  6471. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  6472. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  6473. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6474. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6475. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  6476. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  6477. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  6478. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  6479. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  6480. "system.data.sqlclient.4.8.3.nupkg.sha512",
  6481. "system.data.sqlclient.nuspec",
  6482. "useSharedDesignerContext.txt",
  6483. "version.txt"
  6484. ]
  6485. },
  6486. "System.Data.SQLite.Core/1.0.114": {
  6487. "sha512": "yfUkYTTeTwhXMs+TC6BCbh/XZ/Db3EBC4OkujgzmkM5qf/b8HxdwukXwLh5mRC0PHmp70w52cDTkfqoQsPeyCw==",
  6488. "type": "package",
  6489. "path": "system.data.sqlite.core/1.0.114",
  6490. "files": [
  6491. ".nupkg.metadata",
  6492. ".signature.p7s",
  6493. "system.data.sqlite.core.1.0.114.nupkg.sha512",
  6494. "system.data.sqlite.core.nuspec"
  6495. ]
  6496. },
  6497. "System.Diagnostics.Debug/4.3.0": {
  6498. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6499. "type": "package",
  6500. "path": "system.diagnostics.debug/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/portable-net45+win8+wp8+wpa81/_._",
  6510. "lib/win8/_._",
  6511. "lib/wp80/_._",
  6512. "lib/wpa81/_._",
  6513. "lib/xamarinios10/_._",
  6514. "lib/xamarinmac20/_._",
  6515. "lib/xamarintvos10/_._",
  6516. "lib/xamarinwatchos10/_._",
  6517. "ref/MonoAndroid10/_._",
  6518. "ref/MonoTouch10/_._",
  6519. "ref/net45/_._",
  6520. "ref/netcore50/System.Diagnostics.Debug.dll",
  6521. "ref/netcore50/System.Diagnostics.Debug.xml",
  6522. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6523. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6524. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6525. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6526. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6527. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6528. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6529. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6530. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6531. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6532. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6533. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6534. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6535. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6536. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6537. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6538. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6539. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6540. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6541. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6542. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6543. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6544. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6545. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6546. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6547. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6548. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6549. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6550. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6551. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6552. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6553. "ref/portable-net45+win8+wp8+wpa81/_._",
  6554. "ref/win8/_._",
  6555. "ref/wp80/_._",
  6556. "ref/wpa81/_._",
  6557. "ref/xamarinios10/_._",
  6558. "ref/xamarinmac20/_._",
  6559. "ref/xamarintvos10/_._",
  6560. "ref/xamarinwatchos10/_._",
  6561. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6562. "system.diagnostics.debug.nuspec"
  6563. ]
  6564. },
  6565. "System.Diagnostics.DiagnosticSource/7.0.2": {
  6566. "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  6567. "type": "package",
  6568. "path": "system.diagnostics.diagnosticsource/7.0.2",
  6569. "files": [
  6570. ".nupkg.metadata",
  6571. ".signature.p7s",
  6572. "Icon.png",
  6573. "LICENSE.TXT",
  6574. "THIRD-PARTY-NOTICES.TXT",
  6575. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  6576. "buildTransitive/net462/_._",
  6577. "buildTransitive/net6.0/_._",
  6578. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6579. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  6580. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  6581. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6582. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6583. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  6584. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  6585. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6586. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6587. "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
  6588. "system.diagnostics.diagnosticsource.nuspec",
  6589. "useSharedDesignerContext.txt"
  6590. ]
  6591. },
  6592. "System.Diagnostics.EventLog/5.0.0": {
  6593. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  6594. "type": "package",
  6595. "path": "system.diagnostics.eventlog/5.0.0",
  6596. "files": [
  6597. ".nupkg.metadata",
  6598. ".signature.p7s",
  6599. "Icon.png",
  6600. "LICENSE.TXT",
  6601. "THIRD-PARTY-NOTICES.TXT",
  6602. "lib/net461/System.Diagnostics.EventLog.dll",
  6603. "lib/net461/System.Diagnostics.EventLog.xml",
  6604. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  6605. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  6606. "ref/net461/System.Diagnostics.EventLog.dll",
  6607. "ref/net461/System.Diagnostics.EventLog.xml",
  6608. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  6609. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  6610. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  6611. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  6612. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  6613. "system.diagnostics.eventlog.nuspec",
  6614. "useSharedDesignerContext.txt",
  6615. "version.txt"
  6616. ]
  6617. },
  6618. "System.Diagnostics.Tools/4.3.0": {
  6619. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6620. "type": "package",
  6621. "path": "system.diagnostics.tools/4.3.0",
  6622. "files": [
  6623. ".nupkg.metadata",
  6624. ".signature.p7s",
  6625. "ThirdPartyNotices.txt",
  6626. "dotnet_library_license.txt",
  6627. "lib/MonoAndroid10/_._",
  6628. "lib/MonoTouch10/_._",
  6629. "lib/net45/_._",
  6630. "lib/portable-net45+win8+wp8+wpa81/_._",
  6631. "lib/win8/_._",
  6632. "lib/wp80/_._",
  6633. "lib/wpa81/_._",
  6634. "lib/xamarinios10/_._",
  6635. "lib/xamarinmac20/_._",
  6636. "lib/xamarintvos10/_._",
  6637. "lib/xamarinwatchos10/_._",
  6638. "ref/MonoAndroid10/_._",
  6639. "ref/MonoTouch10/_._",
  6640. "ref/net45/_._",
  6641. "ref/netcore50/System.Diagnostics.Tools.dll",
  6642. "ref/netcore50/System.Diagnostics.Tools.xml",
  6643. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6644. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6645. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6646. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6647. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6648. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6649. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6650. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6651. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6652. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6653. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6654. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6655. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6656. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6657. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6658. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6659. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6660. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6661. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6662. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6663. "ref/portable-net45+win8+wp8+wpa81/_._",
  6664. "ref/win8/_._",
  6665. "ref/wp80/_._",
  6666. "ref/wpa81/_._",
  6667. "ref/xamarinios10/_._",
  6668. "ref/xamarinmac20/_._",
  6669. "ref/xamarintvos10/_._",
  6670. "ref/xamarinwatchos10/_._",
  6671. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6672. "system.diagnostics.tools.nuspec"
  6673. ]
  6674. },
  6675. "System.Diagnostics.TraceSource/4.3.0": {
  6676. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6677. "type": "package",
  6678. "path": "system.diagnostics.tracesource/4.3.0",
  6679. "files": [
  6680. ".nupkg.metadata",
  6681. ".signature.p7s",
  6682. "ThirdPartyNotices.txt",
  6683. "dotnet_library_license.txt",
  6684. "lib/MonoAndroid10/_._",
  6685. "lib/MonoTouch10/_._",
  6686. "lib/net46/System.Diagnostics.TraceSource.dll",
  6687. "lib/xamarinios10/_._",
  6688. "lib/xamarinmac20/_._",
  6689. "lib/xamarintvos10/_._",
  6690. "lib/xamarinwatchos10/_._",
  6691. "ref/MonoAndroid10/_._",
  6692. "ref/MonoTouch10/_._",
  6693. "ref/net46/System.Diagnostics.TraceSource.dll",
  6694. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6695. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6696. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6697. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6698. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6699. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6700. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6701. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6702. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6703. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6704. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6705. "ref/xamarinios10/_._",
  6706. "ref/xamarinmac20/_._",
  6707. "ref/xamarintvos10/_._",
  6708. "ref/xamarinwatchos10/_._",
  6709. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6710. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6711. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6712. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6713. "system.diagnostics.tracesource.nuspec"
  6714. ]
  6715. },
  6716. "System.Diagnostics.Tracing/4.3.0": {
  6717. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6718. "type": "package",
  6719. "path": "system.diagnostics.tracing/4.3.0",
  6720. "files": [
  6721. ".nupkg.metadata",
  6722. ".signature.p7s",
  6723. "ThirdPartyNotices.txt",
  6724. "dotnet_library_license.txt",
  6725. "lib/MonoAndroid10/_._",
  6726. "lib/MonoTouch10/_._",
  6727. "lib/net45/_._",
  6728. "lib/net462/System.Diagnostics.Tracing.dll",
  6729. "lib/portable-net45+win8+wpa81/_._",
  6730. "lib/win8/_._",
  6731. "lib/wpa81/_._",
  6732. "lib/xamarinios10/_._",
  6733. "lib/xamarinmac20/_._",
  6734. "lib/xamarintvos10/_._",
  6735. "lib/xamarinwatchos10/_._",
  6736. "ref/MonoAndroid10/_._",
  6737. "ref/MonoTouch10/_._",
  6738. "ref/net45/_._",
  6739. "ref/net462/System.Diagnostics.Tracing.dll",
  6740. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6741. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6742. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6743. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6744. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6745. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6746. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6747. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6748. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6749. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6750. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6751. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6752. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6753. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6754. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6755. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6756. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6757. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6758. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6759. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6760. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6761. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6762. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6763. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6764. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6765. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6766. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6767. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6768. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6769. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6770. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6771. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6772. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6773. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6774. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6775. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6776. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6777. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6778. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6779. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6780. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6781. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6782. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6783. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6784. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6785. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6786. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6787. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6788. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6789. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6790. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6791. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6792. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6793. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6794. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6795. "ref/portable-net45+win8+wpa81/_._",
  6796. "ref/win8/_._",
  6797. "ref/wpa81/_._",
  6798. "ref/xamarinios10/_._",
  6799. "ref/xamarinmac20/_._",
  6800. "ref/xamarintvos10/_._",
  6801. "ref/xamarinwatchos10/_._",
  6802. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6803. "system.diagnostics.tracing.nuspec"
  6804. ]
  6805. },
  6806. "System.Drawing.Common/8.0.4": {
  6807. "sha512": "3G4xpa8mUYGzEF0HlswlBArAFywHJIzsZoB5hU4yMlnYHaabj/lg019BwbyyYBxj0aoM7Cz+jdlgUemeno9LOQ==",
  6808. "type": "package",
  6809. "path": "system.drawing.common/8.0.4",
  6810. "files": [
  6811. ".nupkg.metadata",
  6812. ".signature.p7s",
  6813. "Icon.png",
  6814. "LICENSE.TXT",
  6815. "THIRD-PARTY-NOTICES.TXT",
  6816. "buildTransitive/net461/System.Drawing.Common.targets",
  6817. "buildTransitive/net462/_._",
  6818. "buildTransitive/net6.0/_._",
  6819. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  6820. "lib/MonoAndroid10/_._",
  6821. "lib/MonoTouch10/_._",
  6822. "lib/net462/System.Drawing.Common.dll",
  6823. "lib/net462/System.Drawing.Common.pdb",
  6824. "lib/net462/System.Drawing.Common.xml",
  6825. "lib/net6.0/System.Drawing.Common.dll",
  6826. "lib/net6.0/System.Drawing.Common.pdb",
  6827. "lib/net6.0/System.Drawing.Common.xml",
  6828. "lib/net7.0/System.Drawing.Common.dll",
  6829. "lib/net7.0/System.Drawing.Common.pdb",
  6830. "lib/net7.0/System.Drawing.Common.xml",
  6831. "lib/net8.0/System.Drawing.Common.dll",
  6832. "lib/net8.0/System.Drawing.Common.pdb",
  6833. "lib/net8.0/System.Drawing.Common.xml",
  6834. "lib/netstandard2.0/System.Drawing.Common.dll",
  6835. "lib/netstandard2.0/System.Drawing.Common.pdb",
  6836. "lib/netstandard2.0/System.Drawing.Common.xml",
  6837. "lib/xamarinios10/_._",
  6838. "lib/xamarinmac20/_._",
  6839. "lib/xamarintvos10/_._",
  6840. "lib/xamarinwatchos10/_._",
  6841. "system.drawing.common.8.0.4.nupkg.sha512",
  6842. "system.drawing.common.nuspec",
  6843. "useSharedDesignerContext.txt"
  6844. ]
  6845. },
  6846. "System.Dynamic.Runtime/4.3.0": {
  6847. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6848. "type": "package",
  6849. "path": "system.dynamic.runtime/4.3.0",
  6850. "files": [
  6851. ".nupkg.metadata",
  6852. ".signature.p7s",
  6853. "ThirdPartyNotices.txt",
  6854. "dotnet_library_license.txt",
  6855. "lib/MonoAndroid10/_._",
  6856. "lib/MonoTouch10/_._",
  6857. "lib/net45/_._",
  6858. "lib/netcore50/System.Dynamic.Runtime.dll",
  6859. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6860. "lib/portable-net45+win8+wp8+wpa81/_._",
  6861. "lib/win8/_._",
  6862. "lib/wp80/_._",
  6863. "lib/wpa81/_._",
  6864. "lib/xamarinios10/_._",
  6865. "lib/xamarinmac20/_._",
  6866. "lib/xamarintvos10/_._",
  6867. "lib/xamarinwatchos10/_._",
  6868. "ref/MonoAndroid10/_._",
  6869. "ref/MonoTouch10/_._",
  6870. "ref/net45/_._",
  6871. "ref/netcore50/System.Dynamic.Runtime.dll",
  6872. "ref/netcore50/System.Dynamic.Runtime.xml",
  6873. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6874. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6875. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6876. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6877. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6878. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6879. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6880. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6881. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6882. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6883. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6884. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6885. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6886. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6887. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6888. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6889. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6890. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6891. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6892. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6893. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6894. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6895. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6896. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6897. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6898. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6899. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6900. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6901. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6902. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6903. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6904. "ref/portable-net45+win8+wp8+wpa81/_._",
  6905. "ref/win8/_._",
  6906. "ref/wp80/_._",
  6907. "ref/wpa81/_._",
  6908. "ref/xamarinios10/_._",
  6909. "ref/xamarinmac20/_._",
  6910. "ref/xamarintvos10/_._",
  6911. "ref/xamarinwatchos10/_._",
  6912. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6913. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6914. "system.dynamic.runtime.nuspec"
  6915. ]
  6916. },
  6917. "System.Formats.Asn1/5.0.0": {
  6918. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  6919. "type": "package",
  6920. "path": "system.formats.asn1/5.0.0",
  6921. "files": [
  6922. ".nupkg.metadata",
  6923. ".signature.p7s",
  6924. "Icon.png",
  6925. "LICENSE.TXT",
  6926. "THIRD-PARTY-NOTICES.TXT",
  6927. "lib/net461/System.Formats.Asn1.dll",
  6928. "lib/net461/System.Formats.Asn1.xml",
  6929. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6930. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6931. "system.formats.asn1.5.0.0.nupkg.sha512",
  6932. "system.formats.asn1.nuspec",
  6933. "useSharedDesignerContext.txt",
  6934. "version.txt"
  6935. ]
  6936. },
  6937. "System.Globalization/4.3.0": {
  6938. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6939. "type": "package",
  6940. "path": "system.globalization/4.3.0",
  6941. "files": [
  6942. ".nupkg.metadata",
  6943. ".signature.p7s",
  6944. "ThirdPartyNotices.txt",
  6945. "dotnet_library_license.txt",
  6946. "lib/MonoAndroid10/_._",
  6947. "lib/MonoTouch10/_._",
  6948. "lib/net45/_._",
  6949. "lib/portable-net45+win8+wp8+wpa81/_._",
  6950. "lib/win8/_._",
  6951. "lib/wp80/_._",
  6952. "lib/wpa81/_._",
  6953. "lib/xamarinios10/_._",
  6954. "lib/xamarinmac20/_._",
  6955. "lib/xamarintvos10/_._",
  6956. "lib/xamarinwatchos10/_._",
  6957. "ref/MonoAndroid10/_._",
  6958. "ref/MonoTouch10/_._",
  6959. "ref/net45/_._",
  6960. "ref/netcore50/System.Globalization.dll",
  6961. "ref/netcore50/System.Globalization.xml",
  6962. "ref/netcore50/de/System.Globalization.xml",
  6963. "ref/netcore50/es/System.Globalization.xml",
  6964. "ref/netcore50/fr/System.Globalization.xml",
  6965. "ref/netcore50/it/System.Globalization.xml",
  6966. "ref/netcore50/ja/System.Globalization.xml",
  6967. "ref/netcore50/ko/System.Globalization.xml",
  6968. "ref/netcore50/ru/System.Globalization.xml",
  6969. "ref/netcore50/zh-hans/System.Globalization.xml",
  6970. "ref/netcore50/zh-hant/System.Globalization.xml",
  6971. "ref/netstandard1.0/System.Globalization.dll",
  6972. "ref/netstandard1.0/System.Globalization.xml",
  6973. "ref/netstandard1.0/de/System.Globalization.xml",
  6974. "ref/netstandard1.0/es/System.Globalization.xml",
  6975. "ref/netstandard1.0/fr/System.Globalization.xml",
  6976. "ref/netstandard1.0/it/System.Globalization.xml",
  6977. "ref/netstandard1.0/ja/System.Globalization.xml",
  6978. "ref/netstandard1.0/ko/System.Globalization.xml",
  6979. "ref/netstandard1.0/ru/System.Globalization.xml",
  6980. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6981. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6982. "ref/netstandard1.3/System.Globalization.dll",
  6983. "ref/netstandard1.3/System.Globalization.xml",
  6984. "ref/netstandard1.3/de/System.Globalization.xml",
  6985. "ref/netstandard1.3/es/System.Globalization.xml",
  6986. "ref/netstandard1.3/fr/System.Globalization.xml",
  6987. "ref/netstandard1.3/it/System.Globalization.xml",
  6988. "ref/netstandard1.3/ja/System.Globalization.xml",
  6989. "ref/netstandard1.3/ko/System.Globalization.xml",
  6990. "ref/netstandard1.3/ru/System.Globalization.xml",
  6991. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6992. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6993. "ref/portable-net45+win8+wp8+wpa81/_._",
  6994. "ref/win8/_._",
  6995. "ref/wp80/_._",
  6996. "ref/wpa81/_._",
  6997. "ref/xamarinios10/_._",
  6998. "ref/xamarinmac20/_._",
  6999. "ref/xamarintvos10/_._",
  7000. "ref/xamarinwatchos10/_._",
  7001. "system.globalization.4.3.0.nupkg.sha512",
  7002. "system.globalization.nuspec"
  7003. ]
  7004. },
  7005. "System.Globalization.Calendars/4.3.0": {
  7006. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7007. "type": "package",
  7008. "path": "system.globalization.calendars/4.3.0",
  7009. "files": [
  7010. ".nupkg.metadata",
  7011. ".signature.p7s",
  7012. "ThirdPartyNotices.txt",
  7013. "dotnet_library_license.txt",
  7014. "lib/MonoAndroid10/_._",
  7015. "lib/MonoTouch10/_._",
  7016. "lib/net46/System.Globalization.Calendars.dll",
  7017. "lib/xamarinios10/_._",
  7018. "lib/xamarinmac20/_._",
  7019. "lib/xamarintvos10/_._",
  7020. "lib/xamarinwatchos10/_._",
  7021. "ref/MonoAndroid10/_._",
  7022. "ref/MonoTouch10/_._",
  7023. "ref/net46/System.Globalization.Calendars.dll",
  7024. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7025. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7026. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7027. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7028. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7029. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7030. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7031. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7032. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7033. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7034. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7035. "ref/xamarinios10/_._",
  7036. "ref/xamarinmac20/_._",
  7037. "ref/xamarintvos10/_._",
  7038. "ref/xamarinwatchos10/_._",
  7039. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7040. "system.globalization.calendars.nuspec"
  7041. ]
  7042. },
  7043. "System.Globalization.Extensions/4.3.0": {
  7044. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7045. "type": "package",
  7046. "path": "system.globalization.extensions/4.3.0",
  7047. "files": [
  7048. ".nupkg.metadata",
  7049. ".signature.p7s",
  7050. "ThirdPartyNotices.txt",
  7051. "dotnet_library_license.txt",
  7052. "lib/MonoAndroid10/_._",
  7053. "lib/MonoTouch10/_._",
  7054. "lib/net46/System.Globalization.Extensions.dll",
  7055. "lib/xamarinios10/_._",
  7056. "lib/xamarinmac20/_._",
  7057. "lib/xamarintvos10/_._",
  7058. "lib/xamarinwatchos10/_._",
  7059. "ref/MonoAndroid10/_._",
  7060. "ref/MonoTouch10/_._",
  7061. "ref/net46/System.Globalization.Extensions.dll",
  7062. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7063. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7064. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7065. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7066. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7067. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7068. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7069. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7070. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7071. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7072. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7073. "ref/xamarinios10/_._",
  7074. "ref/xamarinmac20/_._",
  7075. "ref/xamarintvos10/_._",
  7076. "ref/xamarinwatchos10/_._",
  7077. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7078. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7079. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7080. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7081. "system.globalization.extensions.nuspec"
  7082. ]
  7083. },
  7084. "System.IO/4.3.0": {
  7085. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7086. "type": "package",
  7087. "path": "system.io/4.3.0",
  7088. "files": [
  7089. ".nupkg.metadata",
  7090. ".signature.p7s",
  7091. "ThirdPartyNotices.txt",
  7092. "dotnet_library_license.txt",
  7093. "lib/MonoAndroid10/_._",
  7094. "lib/MonoTouch10/_._",
  7095. "lib/net45/_._",
  7096. "lib/net462/System.IO.dll",
  7097. "lib/portable-net45+win8+wp8+wpa81/_._",
  7098. "lib/win8/_._",
  7099. "lib/wp80/_._",
  7100. "lib/wpa81/_._",
  7101. "lib/xamarinios10/_._",
  7102. "lib/xamarinmac20/_._",
  7103. "lib/xamarintvos10/_._",
  7104. "lib/xamarinwatchos10/_._",
  7105. "ref/MonoAndroid10/_._",
  7106. "ref/MonoTouch10/_._",
  7107. "ref/net45/_._",
  7108. "ref/net462/System.IO.dll",
  7109. "ref/netcore50/System.IO.dll",
  7110. "ref/netcore50/System.IO.xml",
  7111. "ref/netcore50/de/System.IO.xml",
  7112. "ref/netcore50/es/System.IO.xml",
  7113. "ref/netcore50/fr/System.IO.xml",
  7114. "ref/netcore50/it/System.IO.xml",
  7115. "ref/netcore50/ja/System.IO.xml",
  7116. "ref/netcore50/ko/System.IO.xml",
  7117. "ref/netcore50/ru/System.IO.xml",
  7118. "ref/netcore50/zh-hans/System.IO.xml",
  7119. "ref/netcore50/zh-hant/System.IO.xml",
  7120. "ref/netstandard1.0/System.IO.dll",
  7121. "ref/netstandard1.0/System.IO.xml",
  7122. "ref/netstandard1.0/de/System.IO.xml",
  7123. "ref/netstandard1.0/es/System.IO.xml",
  7124. "ref/netstandard1.0/fr/System.IO.xml",
  7125. "ref/netstandard1.0/it/System.IO.xml",
  7126. "ref/netstandard1.0/ja/System.IO.xml",
  7127. "ref/netstandard1.0/ko/System.IO.xml",
  7128. "ref/netstandard1.0/ru/System.IO.xml",
  7129. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7130. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7131. "ref/netstandard1.3/System.IO.dll",
  7132. "ref/netstandard1.3/System.IO.xml",
  7133. "ref/netstandard1.3/de/System.IO.xml",
  7134. "ref/netstandard1.3/es/System.IO.xml",
  7135. "ref/netstandard1.3/fr/System.IO.xml",
  7136. "ref/netstandard1.3/it/System.IO.xml",
  7137. "ref/netstandard1.3/ja/System.IO.xml",
  7138. "ref/netstandard1.3/ko/System.IO.xml",
  7139. "ref/netstandard1.3/ru/System.IO.xml",
  7140. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7141. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7142. "ref/netstandard1.5/System.IO.dll",
  7143. "ref/netstandard1.5/System.IO.xml",
  7144. "ref/netstandard1.5/de/System.IO.xml",
  7145. "ref/netstandard1.5/es/System.IO.xml",
  7146. "ref/netstandard1.5/fr/System.IO.xml",
  7147. "ref/netstandard1.5/it/System.IO.xml",
  7148. "ref/netstandard1.5/ja/System.IO.xml",
  7149. "ref/netstandard1.5/ko/System.IO.xml",
  7150. "ref/netstandard1.5/ru/System.IO.xml",
  7151. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7152. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7153. "ref/portable-net45+win8+wp8+wpa81/_._",
  7154. "ref/win8/_._",
  7155. "ref/wp80/_._",
  7156. "ref/wpa81/_._",
  7157. "ref/xamarinios10/_._",
  7158. "ref/xamarinmac20/_._",
  7159. "ref/xamarintvos10/_._",
  7160. "ref/xamarinwatchos10/_._",
  7161. "system.io.4.3.0.nupkg.sha512",
  7162. "system.io.nuspec"
  7163. ]
  7164. },
  7165. "System.IO.Compression/4.3.0": {
  7166. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7167. "type": "package",
  7168. "path": "system.io.compression/4.3.0",
  7169. "files": [
  7170. ".nupkg.metadata",
  7171. ".signature.p7s",
  7172. "ThirdPartyNotices.txt",
  7173. "dotnet_library_license.txt",
  7174. "lib/MonoAndroid10/_._",
  7175. "lib/MonoTouch10/_._",
  7176. "lib/net45/_._",
  7177. "lib/net46/System.IO.Compression.dll",
  7178. "lib/portable-net45+win8+wpa81/_._",
  7179. "lib/win8/_._",
  7180. "lib/wpa81/_._",
  7181. "lib/xamarinios10/_._",
  7182. "lib/xamarinmac20/_._",
  7183. "lib/xamarintvos10/_._",
  7184. "lib/xamarinwatchos10/_._",
  7185. "ref/MonoAndroid10/_._",
  7186. "ref/MonoTouch10/_._",
  7187. "ref/net45/_._",
  7188. "ref/net46/System.IO.Compression.dll",
  7189. "ref/netcore50/System.IO.Compression.dll",
  7190. "ref/netcore50/System.IO.Compression.xml",
  7191. "ref/netcore50/de/System.IO.Compression.xml",
  7192. "ref/netcore50/es/System.IO.Compression.xml",
  7193. "ref/netcore50/fr/System.IO.Compression.xml",
  7194. "ref/netcore50/it/System.IO.Compression.xml",
  7195. "ref/netcore50/ja/System.IO.Compression.xml",
  7196. "ref/netcore50/ko/System.IO.Compression.xml",
  7197. "ref/netcore50/ru/System.IO.Compression.xml",
  7198. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7199. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7200. "ref/netstandard1.1/System.IO.Compression.dll",
  7201. "ref/netstandard1.1/System.IO.Compression.xml",
  7202. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7203. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7204. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7205. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7206. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7207. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7208. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7209. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7210. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7211. "ref/netstandard1.3/System.IO.Compression.dll",
  7212. "ref/netstandard1.3/System.IO.Compression.xml",
  7213. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7214. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7215. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7216. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7217. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7218. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7219. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7220. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7221. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7222. "ref/portable-net45+win8+wpa81/_._",
  7223. "ref/win8/_._",
  7224. "ref/wpa81/_._",
  7225. "ref/xamarinios10/_._",
  7226. "ref/xamarinmac20/_._",
  7227. "ref/xamarintvos10/_._",
  7228. "ref/xamarinwatchos10/_._",
  7229. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7230. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7231. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7232. "system.io.compression.4.3.0.nupkg.sha512",
  7233. "system.io.compression.nuspec"
  7234. ]
  7235. },
  7236. "System.IO.Compression.ZipFile/4.3.0": {
  7237. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7238. "type": "package",
  7239. "path": "system.io.compression.zipfile/4.3.0",
  7240. "files": [
  7241. ".nupkg.metadata",
  7242. ".signature.p7s",
  7243. "ThirdPartyNotices.txt",
  7244. "dotnet_library_license.txt",
  7245. "lib/MonoAndroid10/_._",
  7246. "lib/MonoTouch10/_._",
  7247. "lib/net46/System.IO.Compression.ZipFile.dll",
  7248. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7249. "lib/xamarinios10/_._",
  7250. "lib/xamarinmac20/_._",
  7251. "lib/xamarintvos10/_._",
  7252. "lib/xamarinwatchos10/_._",
  7253. "ref/MonoAndroid10/_._",
  7254. "ref/MonoTouch10/_._",
  7255. "ref/net46/System.IO.Compression.ZipFile.dll",
  7256. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7257. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7258. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7259. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7260. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7261. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7262. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7263. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7264. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7265. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7266. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7267. "ref/xamarinios10/_._",
  7268. "ref/xamarinmac20/_._",
  7269. "ref/xamarintvos10/_._",
  7270. "ref/xamarinwatchos10/_._",
  7271. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7272. "system.io.compression.zipfile.nuspec"
  7273. ]
  7274. },
  7275. "System.IO.FileSystem/4.3.0": {
  7276. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7277. "type": "package",
  7278. "path": "system.io.filesystem/4.3.0",
  7279. "files": [
  7280. ".nupkg.metadata",
  7281. ".signature.p7s",
  7282. "ThirdPartyNotices.txt",
  7283. "dotnet_library_license.txt",
  7284. "lib/MonoAndroid10/_._",
  7285. "lib/MonoTouch10/_._",
  7286. "lib/net46/System.IO.FileSystem.dll",
  7287. "lib/xamarinios10/_._",
  7288. "lib/xamarinmac20/_._",
  7289. "lib/xamarintvos10/_._",
  7290. "lib/xamarinwatchos10/_._",
  7291. "ref/MonoAndroid10/_._",
  7292. "ref/MonoTouch10/_._",
  7293. "ref/net46/System.IO.FileSystem.dll",
  7294. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7295. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7296. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7297. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7298. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7299. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7300. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7301. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7302. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7303. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7304. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7305. "ref/xamarinios10/_._",
  7306. "ref/xamarinmac20/_._",
  7307. "ref/xamarintvos10/_._",
  7308. "ref/xamarinwatchos10/_._",
  7309. "system.io.filesystem.4.3.0.nupkg.sha512",
  7310. "system.io.filesystem.nuspec"
  7311. ]
  7312. },
  7313. "System.IO.FileSystem.Primitives/4.3.0": {
  7314. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7315. "type": "package",
  7316. "path": "system.io.filesystem.primitives/4.3.0",
  7317. "files": [
  7318. ".nupkg.metadata",
  7319. ".signature.p7s",
  7320. "ThirdPartyNotices.txt",
  7321. "dotnet_library_license.txt",
  7322. "lib/MonoAndroid10/_._",
  7323. "lib/MonoTouch10/_._",
  7324. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7325. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7326. "lib/xamarinios10/_._",
  7327. "lib/xamarinmac20/_._",
  7328. "lib/xamarintvos10/_._",
  7329. "lib/xamarinwatchos10/_._",
  7330. "ref/MonoAndroid10/_._",
  7331. "ref/MonoTouch10/_._",
  7332. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7333. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7334. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7335. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7336. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7337. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7338. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7339. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7340. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7341. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7342. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7343. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7344. "ref/xamarinios10/_._",
  7345. "ref/xamarinmac20/_._",
  7346. "ref/xamarintvos10/_._",
  7347. "ref/xamarinwatchos10/_._",
  7348. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7349. "system.io.filesystem.primitives.nuspec"
  7350. ]
  7351. },
  7352. "System.IO.Ports/6.0.0": {
  7353. "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
  7354. "type": "package",
  7355. "path": "system.io.ports/6.0.0",
  7356. "files": [
  7357. ".nupkg.metadata",
  7358. ".signature.p7s",
  7359. "Icon.png",
  7360. "LICENSE.TXT",
  7361. "THIRD-PARTY-NOTICES.TXT",
  7362. "buildTransitive/netcoreapp2.0/System.IO.Ports.targets",
  7363. "buildTransitive/netcoreapp3.1/_._",
  7364. "lib/net461/System.IO.Ports.dll",
  7365. "lib/net461/System.IO.Ports.xml",
  7366. "lib/net6.0/System.IO.Ports.dll",
  7367. "lib/net6.0/System.IO.Ports.xml",
  7368. "lib/netstandard2.0/System.IO.Ports.dll",
  7369. "lib/netstandard2.0/System.IO.Ports.xml",
  7370. "runtimes/unix/lib/net6.0/System.IO.Ports.dll",
  7371. "runtimes/unix/lib/net6.0/System.IO.Ports.xml",
  7372. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll",
  7373. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml",
  7374. "runtimes/win/lib/net461/System.IO.Ports.dll",
  7375. "runtimes/win/lib/net461/System.IO.Ports.xml",
  7376. "runtimes/win/lib/net6.0/System.IO.Ports.dll",
  7377. "runtimes/win/lib/net6.0/System.IO.Ports.xml",
  7378. "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll",
  7379. "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml",
  7380. "system.io.ports.6.0.0.nupkg.sha512",
  7381. "system.io.ports.nuspec",
  7382. "useSharedDesignerContext.txt"
  7383. ]
  7384. },
  7385. "System.Linq/4.3.0": {
  7386. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7387. "type": "package",
  7388. "path": "system.linq/4.3.0",
  7389. "files": [
  7390. ".nupkg.metadata",
  7391. ".signature.p7s",
  7392. "ThirdPartyNotices.txt",
  7393. "dotnet_library_license.txt",
  7394. "lib/MonoAndroid10/_._",
  7395. "lib/MonoTouch10/_._",
  7396. "lib/net45/_._",
  7397. "lib/net463/System.Linq.dll",
  7398. "lib/netcore50/System.Linq.dll",
  7399. "lib/netstandard1.6/System.Linq.dll",
  7400. "lib/portable-net45+win8+wp8+wpa81/_._",
  7401. "lib/win8/_._",
  7402. "lib/wp80/_._",
  7403. "lib/wpa81/_._",
  7404. "lib/xamarinios10/_._",
  7405. "lib/xamarinmac20/_._",
  7406. "lib/xamarintvos10/_._",
  7407. "lib/xamarinwatchos10/_._",
  7408. "ref/MonoAndroid10/_._",
  7409. "ref/MonoTouch10/_._",
  7410. "ref/net45/_._",
  7411. "ref/net463/System.Linq.dll",
  7412. "ref/netcore50/System.Linq.dll",
  7413. "ref/netcore50/System.Linq.xml",
  7414. "ref/netcore50/de/System.Linq.xml",
  7415. "ref/netcore50/es/System.Linq.xml",
  7416. "ref/netcore50/fr/System.Linq.xml",
  7417. "ref/netcore50/it/System.Linq.xml",
  7418. "ref/netcore50/ja/System.Linq.xml",
  7419. "ref/netcore50/ko/System.Linq.xml",
  7420. "ref/netcore50/ru/System.Linq.xml",
  7421. "ref/netcore50/zh-hans/System.Linq.xml",
  7422. "ref/netcore50/zh-hant/System.Linq.xml",
  7423. "ref/netstandard1.0/System.Linq.dll",
  7424. "ref/netstandard1.0/System.Linq.xml",
  7425. "ref/netstandard1.0/de/System.Linq.xml",
  7426. "ref/netstandard1.0/es/System.Linq.xml",
  7427. "ref/netstandard1.0/fr/System.Linq.xml",
  7428. "ref/netstandard1.0/it/System.Linq.xml",
  7429. "ref/netstandard1.0/ja/System.Linq.xml",
  7430. "ref/netstandard1.0/ko/System.Linq.xml",
  7431. "ref/netstandard1.0/ru/System.Linq.xml",
  7432. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7433. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7434. "ref/netstandard1.6/System.Linq.dll",
  7435. "ref/netstandard1.6/System.Linq.xml",
  7436. "ref/netstandard1.6/de/System.Linq.xml",
  7437. "ref/netstandard1.6/es/System.Linq.xml",
  7438. "ref/netstandard1.6/fr/System.Linq.xml",
  7439. "ref/netstandard1.6/it/System.Linq.xml",
  7440. "ref/netstandard1.6/ja/System.Linq.xml",
  7441. "ref/netstandard1.6/ko/System.Linq.xml",
  7442. "ref/netstandard1.6/ru/System.Linq.xml",
  7443. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7444. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7445. "ref/portable-net45+win8+wp8+wpa81/_._",
  7446. "ref/win8/_._",
  7447. "ref/wp80/_._",
  7448. "ref/wpa81/_._",
  7449. "ref/xamarinios10/_._",
  7450. "ref/xamarinmac20/_._",
  7451. "ref/xamarintvos10/_._",
  7452. "ref/xamarinwatchos10/_._",
  7453. "system.linq.4.3.0.nupkg.sha512",
  7454. "system.linq.nuspec"
  7455. ]
  7456. },
  7457. "System.Linq.Expressions/4.3.0": {
  7458. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7459. "type": "package",
  7460. "path": "system.linq.expressions/4.3.0",
  7461. "files": [
  7462. ".nupkg.metadata",
  7463. ".signature.p7s",
  7464. "ThirdPartyNotices.txt",
  7465. "dotnet_library_license.txt",
  7466. "lib/MonoAndroid10/_._",
  7467. "lib/MonoTouch10/_._",
  7468. "lib/net45/_._",
  7469. "lib/net463/System.Linq.Expressions.dll",
  7470. "lib/netcore50/System.Linq.Expressions.dll",
  7471. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7472. "lib/portable-net45+win8+wp8+wpa81/_._",
  7473. "lib/win8/_._",
  7474. "lib/wp80/_._",
  7475. "lib/wpa81/_._",
  7476. "lib/xamarinios10/_._",
  7477. "lib/xamarinmac20/_._",
  7478. "lib/xamarintvos10/_._",
  7479. "lib/xamarinwatchos10/_._",
  7480. "ref/MonoAndroid10/_._",
  7481. "ref/MonoTouch10/_._",
  7482. "ref/net45/_._",
  7483. "ref/net463/System.Linq.Expressions.dll",
  7484. "ref/netcore50/System.Linq.Expressions.dll",
  7485. "ref/netcore50/System.Linq.Expressions.xml",
  7486. "ref/netcore50/de/System.Linq.Expressions.xml",
  7487. "ref/netcore50/es/System.Linq.Expressions.xml",
  7488. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7489. "ref/netcore50/it/System.Linq.Expressions.xml",
  7490. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7491. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7492. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7493. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7494. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7495. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7496. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7497. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7498. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7499. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7500. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7501. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7502. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7503. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7504. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7505. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7506. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7507. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7508. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7509. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7510. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7511. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7512. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7513. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7514. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7515. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7516. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7517. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7518. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7519. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7520. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7521. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7522. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7523. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7524. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7525. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7526. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7527. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7528. "ref/portable-net45+win8+wp8+wpa81/_._",
  7529. "ref/win8/_._",
  7530. "ref/wp80/_._",
  7531. "ref/wpa81/_._",
  7532. "ref/xamarinios10/_._",
  7533. "ref/xamarinmac20/_._",
  7534. "ref/xamarintvos10/_._",
  7535. "ref/xamarinwatchos10/_._",
  7536. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7537. "system.linq.expressions.4.3.0.nupkg.sha512",
  7538. "system.linq.expressions.nuspec"
  7539. ]
  7540. },
  7541. "System.Memory/4.5.4": {
  7542. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7543. "type": "package",
  7544. "path": "system.memory/4.5.4",
  7545. "files": [
  7546. ".nupkg.metadata",
  7547. ".signature.p7s",
  7548. "LICENSE.TXT",
  7549. "THIRD-PARTY-NOTICES.TXT",
  7550. "lib/net461/System.Memory.dll",
  7551. "lib/net461/System.Memory.xml",
  7552. "lib/netcoreapp2.1/_._",
  7553. "lib/netstandard1.1/System.Memory.dll",
  7554. "lib/netstandard1.1/System.Memory.xml",
  7555. "lib/netstandard2.0/System.Memory.dll",
  7556. "lib/netstandard2.0/System.Memory.xml",
  7557. "ref/netcoreapp2.1/_._",
  7558. "system.memory.4.5.4.nupkg.sha512",
  7559. "system.memory.nuspec",
  7560. "useSharedDesignerContext.txt",
  7561. "version.txt"
  7562. ]
  7563. },
  7564. "System.Net.Http/4.3.0": {
  7565. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  7566. "type": "package",
  7567. "path": "system.net.http/4.3.0",
  7568. "files": [
  7569. ".nupkg.metadata",
  7570. ".signature.p7s",
  7571. "ThirdPartyNotices.txt",
  7572. "dotnet_library_license.txt",
  7573. "lib/Xamarinmac20/_._",
  7574. "lib/monoandroid10/_._",
  7575. "lib/monotouch10/_._",
  7576. "lib/net45/_._",
  7577. "lib/net46/System.Net.Http.dll",
  7578. "lib/portable-net45+win8+wpa81/_._",
  7579. "lib/win8/_._",
  7580. "lib/wpa81/_._",
  7581. "lib/xamarinios10/_._",
  7582. "lib/xamarintvos10/_._",
  7583. "lib/xamarinwatchos10/_._",
  7584. "ref/Xamarinmac20/_._",
  7585. "ref/monoandroid10/_._",
  7586. "ref/monotouch10/_._",
  7587. "ref/net45/_._",
  7588. "ref/net46/System.Net.Http.dll",
  7589. "ref/net46/System.Net.Http.xml",
  7590. "ref/net46/de/System.Net.Http.xml",
  7591. "ref/net46/es/System.Net.Http.xml",
  7592. "ref/net46/fr/System.Net.Http.xml",
  7593. "ref/net46/it/System.Net.Http.xml",
  7594. "ref/net46/ja/System.Net.Http.xml",
  7595. "ref/net46/ko/System.Net.Http.xml",
  7596. "ref/net46/ru/System.Net.Http.xml",
  7597. "ref/net46/zh-hans/System.Net.Http.xml",
  7598. "ref/net46/zh-hant/System.Net.Http.xml",
  7599. "ref/netcore50/System.Net.Http.dll",
  7600. "ref/netcore50/System.Net.Http.xml",
  7601. "ref/netcore50/de/System.Net.Http.xml",
  7602. "ref/netcore50/es/System.Net.Http.xml",
  7603. "ref/netcore50/fr/System.Net.Http.xml",
  7604. "ref/netcore50/it/System.Net.Http.xml",
  7605. "ref/netcore50/ja/System.Net.Http.xml",
  7606. "ref/netcore50/ko/System.Net.Http.xml",
  7607. "ref/netcore50/ru/System.Net.Http.xml",
  7608. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7609. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7610. "ref/netstandard1.1/System.Net.Http.dll",
  7611. "ref/netstandard1.1/System.Net.Http.xml",
  7612. "ref/netstandard1.1/de/System.Net.Http.xml",
  7613. "ref/netstandard1.1/es/System.Net.Http.xml",
  7614. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7615. "ref/netstandard1.1/it/System.Net.Http.xml",
  7616. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7617. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7618. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7619. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7620. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7621. "ref/netstandard1.3/System.Net.Http.dll",
  7622. "ref/netstandard1.3/System.Net.Http.xml",
  7623. "ref/netstandard1.3/de/System.Net.Http.xml",
  7624. "ref/netstandard1.3/es/System.Net.Http.xml",
  7625. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7626. "ref/netstandard1.3/it/System.Net.Http.xml",
  7627. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7628. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7629. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7630. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7631. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7632. "ref/portable-net45+win8+wpa81/_._",
  7633. "ref/win8/_._",
  7634. "ref/wpa81/_._",
  7635. "ref/xamarinios10/_._",
  7636. "ref/xamarintvos10/_._",
  7637. "ref/xamarinwatchos10/_._",
  7638. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7639. "runtimes/win/lib/net46/System.Net.Http.dll",
  7640. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7641. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7642. "system.net.http.4.3.0.nupkg.sha512",
  7643. "system.net.http.nuspec"
  7644. ]
  7645. },
  7646. "System.Net.Primitives/4.3.0": {
  7647. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7648. "type": "package",
  7649. "path": "system.net.primitives/4.3.0",
  7650. "files": [
  7651. ".nupkg.metadata",
  7652. ".signature.p7s",
  7653. "ThirdPartyNotices.txt",
  7654. "dotnet_library_license.txt",
  7655. "lib/MonoAndroid10/_._",
  7656. "lib/MonoTouch10/_._",
  7657. "lib/net45/_._",
  7658. "lib/portable-net45+win8+wp8+wpa81/_._",
  7659. "lib/win8/_._",
  7660. "lib/wp80/_._",
  7661. "lib/wpa81/_._",
  7662. "lib/xamarinios10/_._",
  7663. "lib/xamarinmac20/_._",
  7664. "lib/xamarintvos10/_._",
  7665. "lib/xamarinwatchos10/_._",
  7666. "ref/MonoAndroid10/_._",
  7667. "ref/MonoTouch10/_._",
  7668. "ref/net45/_._",
  7669. "ref/netcore50/System.Net.Primitives.dll",
  7670. "ref/netcore50/System.Net.Primitives.xml",
  7671. "ref/netcore50/de/System.Net.Primitives.xml",
  7672. "ref/netcore50/es/System.Net.Primitives.xml",
  7673. "ref/netcore50/fr/System.Net.Primitives.xml",
  7674. "ref/netcore50/it/System.Net.Primitives.xml",
  7675. "ref/netcore50/ja/System.Net.Primitives.xml",
  7676. "ref/netcore50/ko/System.Net.Primitives.xml",
  7677. "ref/netcore50/ru/System.Net.Primitives.xml",
  7678. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7679. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7680. "ref/netstandard1.0/System.Net.Primitives.dll",
  7681. "ref/netstandard1.0/System.Net.Primitives.xml",
  7682. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7683. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7684. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7685. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7686. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7687. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7688. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7689. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7690. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7691. "ref/netstandard1.1/System.Net.Primitives.dll",
  7692. "ref/netstandard1.1/System.Net.Primitives.xml",
  7693. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7694. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7695. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7696. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7697. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7698. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7699. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7700. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7701. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7702. "ref/netstandard1.3/System.Net.Primitives.dll",
  7703. "ref/netstandard1.3/System.Net.Primitives.xml",
  7704. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7705. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7706. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7707. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7708. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7709. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7710. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7711. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7712. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7713. "ref/portable-net45+win8+wp8+wpa81/_._",
  7714. "ref/win8/_._",
  7715. "ref/wp80/_._",
  7716. "ref/wpa81/_._",
  7717. "ref/xamarinios10/_._",
  7718. "ref/xamarinmac20/_._",
  7719. "ref/xamarintvos10/_._",
  7720. "ref/xamarinwatchos10/_._",
  7721. "system.net.primitives.4.3.0.nupkg.sha512",
  7722. "system.net.primitives.nuspec"
  7723. ]
  7724. },
  7725. "System.Net.Sockets/4.3.0": {
  7726. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7727. "type": "package",
  7728. "path": "system.net.sockets/4.3.0",
  7729. "files": [
  7730. ".nupkg.metadata",
  7731. ".signature.p7s",
  7732. "ThirdPartyNotices.txt",
  7733. "dotnet_library_license.txt",
  7734. "lib/MonoAndroid10/_._",
  7735. "lib/MonoTouch10/_._",
  7736. "lib/net46/System.Net.Sockets.dll",
  7737. "lib/xamarinios10/_._",
  7738. "lib/xamarinmac20/_._",
  7739. "lib/xamarintvos10/_._",
  7740. "lib/xamarinwatchos10/_._",
  7741. "ref/MonoAndroid10/_._",
  7742. "ref/MonoTouch10/_._",
  7743. "ref/net46/System.Net.Sockets.dll",
  7744. "ref/netstandard1.3/System.Net.Sockets.dll",
  7745. "ref/netstandard1.3/System.Net.Sockets.xml",
  7746. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7747. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7748. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7749. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7750. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7751. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7752. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7753. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7754. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7755. "ref/xamarinios10/_._",
  7756. "ref/xamarinmac20/_._",
  7757. "ref/xamarintvos10/_._",
  7758. "ref/xamarinwatchos10/_._",
  7759. "system.net.sockets.4.3.0.nupkg.sha512",
  7760. "system.net.sockets.nuspec"
  7761. ]
  7762. },
  7763. "System.ObjectModel/4.3.0": {
  7764. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7765. "type": "package",
  7766. "path": "system.objectmodel/4.3.0",
  7767. "files": [
  7768. ".nupkg.metadata",
  7769. ".signature.p7s",
  7770. "ThirdPartyNotices.txt",
  7771. "dotnet_library_license.txt",
  7772. "lib/MonoAndroid10/_._",
  7773. "lib/MonoTouch10/_._",
  7774. "lib/net45/_._",
  7775. "lib/netcore50/System.ObjectModel.dll",
  7776. "lib/netstandard1.3/System.ObjectModel.dll",
  7777. "lib/portable-net45+win8+wp8+wpa81/_._",
  7778. "lib/win8/_._",
  7779. "lib/wp80/_._",
  7780. "lib/wpa81/_._",
  7781. "lib/xamarinios10/_._",
  7782. "lib/xamarinmac20/_._",
  7783. "lib/xamarintvos10/_._",
  7784. "lib/xamarinwatchos10/_._",
  7785. "ref/MonoAndroid10/_._",
  7786. "ref/MonoTouch10/_._",
  7787. "ref/net45/_._",
  7788. "ref/netcore50/System.ObjectModel.dll",
  7789. "ref/netcore50/System.ObjectModel.xml",
  7790. "ref/netcore50/de/System.ObjectModel.xml",
  7791. "ref/netcore50/es/System.ObjectModel.xml",
  7792. "ref/netcore50/fr/System.ObjectModel.xml",
  7793. "ref/netcore50/it/System.ObjectModel.xml",
  7794. "ref/netcore50/ja/System.ObjectModel.xml",
  7795. "ref/netcore50/ko/System.ObjectModel.xml",
  7796. "ref/netcore50/ru/System.ObjectModel.xml",
  7797. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7798. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7799. "ref/netstandard1.0/System.ObjectModel.dll",
  7800. "ref/netstandard1.0/System.ObjectModel.xml",
  7801. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7802. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7803. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7804. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7805. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7806. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7807. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7808. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7809. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7810. "ref/netstandard1.3/System.ObjectModel.dll",
  7811. "ref/netstandard1.3/System.ObjectModel.xml",
  7812. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7813. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7814. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7815. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7816. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7817. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7818. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7819. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7820. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7821. "ref/portable-net45+win8+wp8+wpa81/_._",
  7822. "ref/win8/_._",
  7823. "ref/wp80/_._",
  7824. "ref/wpa81/_._",
  7825. "ref/xamarinios10/_._",
  7826. "ref/xamarinmac20/_._",
  7827. "ref/xamarintvos10/_._",
  7828. "ref/xamarinwatchos10/_._",
  7829. "system.objectmodel.4.3.0.nupkg.sha512",
  7830. "system.objectmodel.nuspec"
  7831. ]
  7832. },
  7833. "System.Reflection/4.3.0": {
  7834. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7835. "type": "package",
  7836. "path": "system.reflection/4.3.0",
  7837. "files": [
  7838. ".nupkg.metadata",
  7839. ".signature.p7s",
  7840. "ThirdPartyNotices.txt",
  7841. "dotnet_library_license.txt",
  7842. "lib/MonoAndroid10/_._",
  7843. "lib/MonoTouch10/_._",
  7844. "lib/net45/_._",
  7845. "lib/net462/System.Reflection.dll",
  7846. "lib/portable-net45+win8+wp8+wpa81/_._",
  7847. "lib/win8/_._",
  7848. "lib/wp80/_._",
  7849. "lib/wpa81/_._",
  7850. "lib/xamarinios10/_._",
  7851. "lib/xamarinmac20/_._",
  7852. "lib/xamarintvos10/_._",
  7853. "lib/xamarinwatchos10/_._",
  7854. "ref/MonoAndroid10/_._",
  7855. "ref/MonoTouch10/_._",
  7856. "ref/net45/_._",
  7857. "ref/net462/System.Reflection.dll",
  7858. "ref/netcore50/System.Reflection.dll",
  7859. "ref/netcore50/System.Reflection.xml",
  7860. "ref/netcore50/de/System.Reflection.xml",
  7861. "ref/netcore50/es/System.Reflection.xml",
  7862. "ref/netcore50/fr/System.Reflection.xml",
  7863. "ref/netcore50/it/System.Reflection.xml",
  7864. "ref/netcore50/ja/System.Reflection.xml",
  7865. "ref/netcore50/ko/System.Reflection.xml",
  7866. "ref/netcore50/ru/System.Reflection.xml",
  7867. "ref/netcore50/zh-hans/System.Reflection.xml",
  7868. "ref/netcore50/zh-hant/System.Reflection.xml",
  7869. "ref/netstandard1.0/System.Reflection.dll",
  7870. "ref/netstandard1.0/System.Reflection.xml",
  7871. "ref/netstandard1.0/de/System.Reflection.xml",
  7872. "ref/netstandard1.0/es/System.Reflection.xml",
  7873. "ref/netstandard1.0/fr/System.Reflection.xml",
  7874. "ref/netstandard1.0/it/System.Reflection.xml",
  7875. "ref/netstandard1.0/ja/System.Reflection.xml",
  7876. "ref/netstandard1.0/ko/System.Reflection.xml",
  7877. "ref/netstandard1.0/ru/System.Reflection.xml",
  7878. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7879. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7880. "ref/netstandard1.3/System.Reflection.dll",
  7881. "ref/netstandard1.3/System.Reflection.xml",
  7882. "ref/netstandard1.3/de/System.Reflection.xml",
  7883. "ref/netstandard1.3/es/System.Reflection.xml",
  7884. "ref/netstandard1.3/fr/System.Reflection.xml",
  7885. "ref/netstandard1.3/it/System.Reflection.xml",
  7886. "ref/netstandard1.3/ja/System.Reflection.xml",
  7887. "ref/netstandard1.3/ko/System.Reflection.xml",
  7888. "ref/netstandard1.3/ru/System.Reflection.xml",
  7889. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7890. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7891. "ref/netstandard1.5/System.Reflection.dll",
  7892. "ref/netstandard1.5/System.Reflection.xml",
  7893. "ref/netstandard1.5/de/System.Reflection.xml",
  7894. "ref/netstandard1.5/es/System.Reflection.xml",
  7895. "ref/netstandard1.5/fr/System.Reflection.xml",
  7896. "ref/netstandard1.5/it/System.Reflection.xml",
  7897. "ref/netstandard1.5/ja/System.Reflection.xml",
  7898. "ref/netstandard1.5/ko/System.Reflection.xml",
  7899. "ref/netstandard1.5/ru/System.Reflection.xml",
  7900. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7901. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7902. "ref/portable-net45+win8+wp8+wpa81/_._",
  7903. "ref/win8/_._",
  7904. "ref/wp80/_._",
  7905. "ref/wpa81/_._",
  7906. "ref/xamarinios10/_._",
  7907. "ref/xamarinmac20/_._",
  7908. "ref/xamarintvos10/_._",
  7909. "ref/xamarinwatchos10/_._",
  7910. "system.reflection.4.3.0.nupkg.sha512",
  7911. "system.reflection.nuspec"
  7912. ]
  7913. },
  7914. "System.Reflection.Emit/4.3.0": {
  7915. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7916. "type": "package",
  7917. "path": "system.reflection.emit/4.3.0",
  7918. "files": [
  7919. ".nupkg.metadata",
  7920. ".signature.p7s",
  7921. "ThirdPartyNotices.txt",
  7922. "dotnet_library_license.txt",
  7923. "lib/MonoAndroid10/_._",
  7924. "lib/monotouch10/_._",
  7925. "lib/net45/_._",
  7926. "lib/netcore50/System.Reflection.Emit.dll",
  7927. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7928. "lib/xamarinios10/_._",
  7929. "lib/xamarinmac20/_._",
  7930. "lib/xamarintvos10/_._",
  7931. "lib/xamarinwatchos10/_._",
  7932. "ref/MonoAndroid10/_._",
  7933. "ref/net45/_._",
  7934. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7935. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7936. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7937. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7938. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7939. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7940. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7941. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7942. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7943. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7944. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7945. "ref/xamarinmac20/_._",
  7946. "system.reflection.emit.4.3.0.nupkg.sha512",
  7947. "system.reflection.emit.nuspec"
  7948. ]
  7949. },
  7950. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7951. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7952. "type": "package",
  7953. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7954. "files": [
  7955. ".nupkg.metadata",
  7956. ".signature.p7s",
  7957. "ThirdPartyNotices.txt",
  7958. "dotnet_library_license.txt",
  7959. "lib/MonoAndroid10/_._",
  7960. "lib/MonoTouch10/_._",
  7961. "lib/net45/_._",
  7962. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7963. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7964. "lib/portable-net45+wp8/_._",
  7965. "lib/wp80/_._",
  7966. "lib/xamarinios10/_._",
  7967. "lib/xamarinmac20/_._",
  7968. "lib/xamarintvos10/_._",
  7969. "lib/xamarinwatchos10/_._",
  7970. "ref/MonoAndroid10/_._",
  7971. "ref/MonoTouch10/_._",
  7972. "ref/net45/_._",
  7973. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7974. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7975. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7976. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7977. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7978. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7979. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7980. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7981. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7982. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7983. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7984. "ref/portable-net45+wp8/_._",
  7985. "ref/wp80/_._",
  7986. "ref/xamarinios10/_._",
  7987. "ref/xamarinmac20/_._",
  7988. "ref/xamarintvos10/_._",
  7989. "ref/xamarinwatchos10/_._",
  7990. "runtimes/aot/lib/netcore50/_._",
  7991. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7992. "system.reflection.emit.ilgeneration.nuspec"
  7993. ]
  7994. },
  7995. "System.Reflection.Emit.Lightweight/4.3.0": {
  7996. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7997. "type": "package",
  7998. "path": "system.reflection.emit.lightweight/4.3.0",
  7999. "files": [
  8000. ".nupkg.metadata",
  8001. ".signature.p7s",
  8002. "ThirdPartyNotices.txt",
  8003. "dotnet_library_license.txt",
  8004. "lib/MonoAndroid10/_._",
  8005. "lib/MonoTouch10/_._",
  8006. "lib/net45/_._",
  8007. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8008. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8009. "lib/portable-net45+wp8/_._",
  8010. "lib/wp80/_._",
  8011. "lib/xamarinios10/_._",
  8012. "lib/xamarinmac20/_._",
  8013. "lib/xamarintvos10/_._",
  8014. "lib/xamarinwatchos10/_._",
  8015. "ref/MonoAndroid10/_._",
  8016. "ref/MonoTouch10/_._",
  8017. "ref/net45/_._",
  8018. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8019. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8020. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8021. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8022. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8023. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8024. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8025. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8026. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8027. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8028. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8029. "ref/portable-net45+wp8/_._",
  8030. "ref/wp80/_._",
  8031. "ref/xamarinios10/_._",
  8032. "ref/xamarinmac20/_._",
  8033. "ref/xamarintvos10/_._",
  8034. "ref/xamarinwatchos10/_._",
  8035. "runtimes/aot/lib/netcore50/_._",
  8036. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8037. "system.reflection.emit.lightweight.nuspec"
  8038. ]
  8039. },
  8040. "System.Reflection.Extensions/4.3.0": {
  8041. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8042. "type": "package",
  8043. "path": "system.reflection.extensions/4.3.0",
  8044. "files": [
  8045. ".nupkg.metadata",
  8046. ".signature.p7s",
  8047. "ThirdPartyNotices.txt",
  8048. "dotnet_library_license.txt",
  8049. "lib/MonoAndroid10/_._",
  8050. "lib/MonoTouch10/_._",
  8051. "lib/net45/_._",
  8052. "lib/portable-net45+win8+wp8+wpa81/_._",
  8053. "lib/win8/_._",
  8054. "lib/wp80/_._",
  8055. "lib/wpa81/_._",
  8056. "lib/xamarinios10/_._",
  8057. "lib/xamarinmac20/_._",
  8058. "lib/xamarintvos10/_._",
  8059. "lib/xamarinwatchos10/_._",
  8060. "ref/MonoAndroid10/_._",
  8061. "ref/MonoTouch10/_._",
  8062. "ref/net45/_._",
  8063. "ref/netcore50/System.Reflection.Extensions.dll",
  8064. "ref/netcore50/System.Reflection.Extensions.xml",
  8065. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8066. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8067. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8068. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8069. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8070. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8071. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8072. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8073. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8074. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8075. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8076. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8077. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8078. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8079. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8080. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8081. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8082. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8083. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8084. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8085. "ref/portable-net45+win8+wp8+wpa81/_._",
  8086. "ref/win8/_._",
  8087. "ref/wp80/_._",
  8088. "ref/wpa81/_._",
  8089. "ref/xamarinios10/_._",
  8090. "ref/xamarinmac20/_._",
  8091. "ref/xamarintvos10/_._",
  8092. "ref/xamarinwatchos10/_._",
  8093. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8094. "system.reflection.extensions.nuspec"
  8095. ]
  8096. },
  8097. "System.Reflection.Primitives/4.3.0": {
  8098. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8099. "type": "package",
  8100. "path": "system.reflection.primitives/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net45/_._",
  8109. "lib/portable-net45+win8+wp8+wpa81/_._",
  8110. "lib/win8/_._",
  8111. "lib/wp80/_._",
  8112. "lib/wpa81/_._",
  8113. "lib/xamarinios10/_._",
  8114. "lib/xamarinmac20/_._",
  8115. "lib/xamarintvos10/_._",
  8116. "lib/xamarinwatchos10/_._",
  8117. "ref/MonoAndroid10/_._",
  8118. "ref/MonoTouch10/_._",
  8119. "ref/net45/_._",
  8120. "ref/netcore50/System.Reflection.Primitives.dll",
  8121. "ref/netcore50/System.Reflection.Primitives.xml",
  8122. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8123. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8124. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8125. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8126. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8127. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8128. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8129. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8130. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8131. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8132. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8133. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8134. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8135. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8136. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8137. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8138. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8139. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8140. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8141. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8142. "ref/portable-net45+win8+wp8+wpa81/_._",
  8143. "ref/win8/_._",
  8144. "ref/wp80/_._",
  8145. "ref/wpa81/_._",
  8146. "ref/xamarinios10/_._",
  8147. "ref/xamarinmac20/_._",
  8148. "ref/xamarintvos10/_._",
  8149. "ref/xamarinwatchos10/_._",
  8150. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8151. "system.reflection.primitives.nuspec"
  8152. ]
  8153. },
  8154. "System.Reflection.TypeExtensions/4.3.0": {
  8155. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8156. "type": "package",
  8157. "path": "system.reflection.typeextensions/4.3.0",
  8158. "files": [
  8159. ".nupkg.metadata",
  8160. ".signature.p7s",
  8161. "ThirdPartyNotices.txt",
  8162. "dotnet_library_license.txt",
  8163. "lib/MonoAndroid10/_._",
  8164. "lib/MonoTouch10/_._",
  8165. "lib/net46/System.Reflection.TypeExtensions.dll",
  8166. "lib/net462/System.Reflection.TypeExtensions.dll",
  8167. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8168. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8169. "lib/xamarinios10/_._",
  8170. "lib/xamarinmac20/_._",
  8171. "lib/xamarintvos10/_._",
  8172. "lib/xamarinwatchos10/_._",
  8173. "ref/MonoAndroid10/_._",
  8174. "ref/MonoTouch10/_._",
  8175. "ref/net46/System.Reflection.TypeExtensions.dll",
  8176. "ref/net462/System.Reflection.TypeExtensions.dll",
  8177. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8178. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8179. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8180. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8181. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8182. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8183. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8184. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8185. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8186. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8187. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8188. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8189. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8190. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8191. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8192. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8193. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8194. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8195. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8196. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8197. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8198. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8199. "ref/xamarinios10/_._",
  8200. "ref/xamarinmac20/_._",
  8201. "ref/xamarintvos10/_._",
  8202. "ref/xamarinwatchos10/_._",
  8203. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8204. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8205. "system.reflection.typeextensions.nuspec"
  8206. ]
  8207. },
  8208. "System.Resources.ResourceManager/4.3.0": {
  8209. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8210. "type": "package",
  8211. "path": "system.resources.resourcemanager/4.3.0",
  8212. "files": [
  8213. ".nupkg.metadata",
  8214. ".signature.p7s",
  8215. "ThirdPartyNotices.txt",
  8216. "dotnet_library_license.txt",
  8217. "lib/MonoAndroid10/_._",
  8218. "lib/MonoTouch10/_._",
  8219. "lib/net45/_._",
  8220. "lib/portable-net45+win8+wp8+wpa81/_._",
  8221. "lib/win8/_._",
  8222. "lib/wp80/_._",
  8223. "lib/wpa81/_._",
  8224. "lib/xamarinios10/_._",
  8225. "lib/xamarinmac20/_._",
  8226. "lib/xamarintvos10/_._",
  8227. "lib/xamarinwatchos10/_._",
  8228. "ref/MonoAndroid10/_._",
  8229. "ref/MonoTouch10/_._",
  8230. "ref/net45/_._",
  8231. "ref/netcore50/System.Resources.ResourceManager.dll",
  8232. "ref/netcore50/System.Resources.ResourceManager.xml",
  8233. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8234. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8235. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8236. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8237. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8238. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8239. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8240. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8241. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8242. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8243. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8244. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8245. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8246. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8247. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8248. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8249. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8250. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8251. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8252. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8253. "ref/portable-net45+win8+wp8+wpa81/_._",
  8254. "ref/win8/_._",
  8255. "ref/wp80/_._",
  8256. "ref/wpa81/_._",
  8257. "ref/xamarinios10/_._",
  8258. "ref/xamarinmac20/_._",
  8259. "ref/xamarintvos10/_._",
  8260. "ref/xamarinwatchos10/_._",
  8261. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8262. "system.resources.resourcemanager.nuspec"
  8263. ]
  8264. },
  8265. "System.Runtime/4.3.0": {
  8266. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8267. "type": "package",
  8268. "path": "system.runtime/4.3.0",
  8269. "files": [
  8270. ".nupkg.metadata",
  8271. ".signature.p7s",
  8272. "ThirdPartyNotices.txt",
  8273. "dotnet_library_license.txt",
  8274. "lib/MonoAndroid10/_._",
  8275. "lib/MonoTouch10/_._",
  8276. "lib/net45/_._",
  8277. "lib/net462/System.Runtime.dll",
  8278. "lib/portable-net45+win8+wp80+wpa81/_._",
  8279. "lib/win8/_._",
  8280. "lib/wp80/_._",
  8281. "lib/wpa81/_._",
  8282. "lib/xamarinios10/_._",
  8283. "lib/xamarinmac20/_._",
  8284. "lib/xamarintvos10/_._",
  8285. "lib/xamarinwatchos10/_._",
  8286. "ref/MonoAndroid10/_._",
  8287. "ref/MonoTouch10/_._",
  8288. "ref/net45/_._",
  8289. "ref/net462/System.Runtime.dll",
  8290. "ref/netcore50/System.Runtime.dll",
  8291. "ref/netcore50/System.Runtime.xml",
  8292. "ref/netcore50/de/System.Runtime.xml",
  8293. "ref/netcore50/es/System.Runtime.xml",
  8294. "ref/netcore50/fr/System.Runtime.xml",
  8295. "ref/netcore50/it/System.Runtime.xml",
  8296. "ref/netcore50/ja/System.Runtime.xml",
  8297. "ref/netcore50/ko/System.Runtime.xml",
  8298. "ref/netcore50/ru/System.Runtime.xml",
  8299. "ref/netcore50/zh-hans/System.Runtime.xml",
  8300. "ref/netcore50/zh-hant/System.Runtime.xml",
  8301. "ref/netstandard1.0/System.Runtime.dll",
  8302. "ref/netstandard1.0/System.Runtime.xml",
  8303. "ref/netstandard1.0/de/System.Runtime.xml",
  8304. "ref/netstandard1.0/es/System.Runtime.xml",
  8305. "ref/netstandard1.0/fr/System.Runtime.xml",
  8306. "ref/netstandard1.0/it/System.Runtime.xml",
  8307. "ref/netstandard1.0/ja/System.Runtime.xml",
  8308. "ref/netstandard1.0/ko/System.Runtime.xml",
  8309. "ref/netstandard1.0/ru/System.Runtime.xml",
  8310. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8311. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8312. "ref/netstandard1.2/System.Runtime.dll",
  8313. "ref/netstandard1.2/System.Runtime.xml",
  8314. "ref/netstandard1.2/de/System.Runtime.xml",
  8315. "ref/netstandard1.2/es/System.Runtime.xml",
  8316. "ref/netstandard1.2/fr/System.Runtime.xml",
  8317. "ref/netstandard1.2/it/System.Runtime.xml",
  8318. "ref/netstandard1.2/ja/System.Runtime.xml",
  8319. "ref/netstandard1.2/ko/System.Runtime.xml",
  8320. "ref/netstandard1.2/ru/System.Runtime.xml",
  8321. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8322. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8323. "ref/netstandard1.3/System.Runtime.dll",
  8324. "ref/netstandard1.3/System.Runtime.xml",
  8325. "ref/netstandard1.3/de/System.Runtime.xml",
  8326. "ref/netstandard1.3/es/System.Runtime.xml",
  8327. "ref/netstandard1.3/fr/System.Runtime.xml",
  8328. "ref/netstandard1.3/it/System.Runtime.xml",
  8329. "ref/netstandard1.3/ja/System.Runtime.xml",
  8330. "ref/netstandard1.3/ko/System.Runtime.xml",
  8331. "ref/netstandard1.3/ru/System.Runtime.xml",
  8332. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8333. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8334. "ref/netstandard1.5/System.Runtime.dll",
  8335. "ref/netstandard1.5/System.Runtime.xml",
  8336. "ref/netstandard1.5/de/System.Runtime.xml",
  8337. "ref/netstandard1.5/es/System.Runtime.xml",
  8338. "ref/netstandard1.5/fr/System.Runtime.xml",
  8339. "ref/netstandard1.5/it/System.Runtime.xml",
  8340. "ref/netstandard1.5/ja/System.Runtime.xml",
  8341. "ref/netstandard1.5/ko/System.Runtime.xml",
  8342. "ref/netstandard1.5/ru/System.Runtime.xml",
  8343. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8344. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8345. "ref/portable-net45+win8+wp80+wpa81/_._",
  8346. "ref/win8/_._",
  8347. "ref/wp80/_._",
  8348. "ref/wpa81/_._",
  8349. "ref/xamarinios10/_._",
  8350. "ref/xamarinmac20/_._",
  8351. "ref/xamarintvos10/_._",
  8352. "ref/xamarinwatchos10/_._",
  8353. "system.runtime.4.3.0.nupkg.sha512",
  8354. "system.runtime.nuspec"
  8355. ]
  8356. },
  8357. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8358. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8359. "type": "package",
  8360. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8361. "files": [
  8362. ".nupkg.metadata",
  8363. ".signature.p7s",
  8364. "Icon.png",
  8365. "LICENSE.TXT",
  8366. "THIRD-PARTY-NOTICES.TXT",
  8367. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8368. "buildTransitive/netcoreapp3.1/_._",
  8369. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8370. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8371. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8372. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8373. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8374. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8375. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8376. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8377. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8378. "system.runtime.compilerservices.unsafe.nuspec",
  8379. "useSharedDesignerContext.txt"
  8380. ]
  8381. },
  8382. "System.Runtime.Extensions/4.3.0": {
  8383. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8384. "type": "package",
  8385. "path": "system.runtime.extensions/4.3.0",
  8386. "files": [
  8387. ".nupkg.metadata",
  8388. ".signature.p7s",
  8389. "ThirdPartyNotices.txt",
  8390. "dotnet_library_license.txt",
  8391. "lib/MonoAndroid10/_._",
  8392. "lib/MonoTouch10/_._",
  8393. "lib/net45/_._",
  8394. "lib/net462/System.Runtime.Extensions.dll",
  8395. "lib/portable-net45+win8+wp8+wpa81/_._",
  8396. "lib/win8/_._",
  8397. "lib/wp80/_._",
  8398. "lib/wpa81/_._",
  8399. "lib/xamarinios10/_._",
  8400. "lib/xamarinmac20/_._",
  8401. "lib/xamarintvos10/_._",
  8402. "lib/xamarinwatchos10/_._",
  8403. "ref/MonoAndroid10/_._",
  8404. "ref/MonoTouch10/_._",
  8405. "ref/net45/_._",
  8406. "ref/net462/System.Runtime.Extensions.dll",
  8407. "ref/netcore50/System.Runtime.Extensions.dll",
  8408. "ref/netcore50/System.Runtime.Extensions.xml",
  8409. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8410. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8411. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8412. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8413. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8414. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8415. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8416. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8417. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8418. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8419. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8420. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8421. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8422. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8423. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8424. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8425. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8426. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8427. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8428. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8429. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8430. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8431. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8432. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8433. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8434. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8435. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8436. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8437. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8438. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8439. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8440. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8441. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8442. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8443. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8444. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8445. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8446. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8447. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8448. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8449. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8450. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8451. "ref/portable-net45+win8+wp8+wpa81/_._",
  8452. "ref/win8/_._",
  8453. "ref/wp80/_._",
  8454. "ref/wpa81/_._",
  8455. "ref/xamarinios10/_._",
  8456. "ref/xamarinmac20/_._",
  8457. "ref/xamarintvos10/_._",
  8458. "ref/xamarinwatchos10/_._",
  8459. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8460. "system.runtime.extensions.nuspec"
  8461. ]
  8462. },
  8463. "System.Runtime.Handles/4.3.0": {
  8464. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8465. "type": "package",
  8466. "path": "system.runtime.handles/4.3.0",
  8467. "files": [
  8468. ".nupkg.metadata",
  8469. ".signature.p7s",
  8470. "ThirdPartyNotices.txt",
  8471. "dotnet_library_license.txt",
  8472. "lib/MonoAndroid10/_._",
  8473. "lib/MonoTouch10/_._",
  8474. "lib/net46/_._",
  8475. "lib/xamarinios10/_._",
  8476. "lib/xamarinmac20/_._",
  8477. "lib/xamarintvos10/_._",
  8478. "lib/xamarinwatchos10/_._",
  8479. "ref/MonoAndroid10/_._",
  8480. "ref/MonoTouch10/_._",
  8481. "ref/net46/_._",
  8482. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8483. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8484. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8485. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8486. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8487. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8488. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8489. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8490. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8491. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8492. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8493. "ref/xamarinios10/_._",
  8494. "ref/xamarinmac20/_._",
  8495. "ref/xamarintvos10/_._",
  8496. "ref/xamarinwatchos10/_._",
  8497. "system.runtime.handles.4.3.0.nupkg.sha512",
  8498. "system.runtime.handles.nuspec"
  8499. ]
  8500. },
  8501. "System.Runtime.InteropServices/4.3.0": {
  8502. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8503. "type": "package",
  8504. "path": "system.runtime.interopservices/4.3.0",
  8505. "files": [
  8506. ".nupkg.metadata",
  8507. ".signature.p7s",
  8508. "ThirdPartyNotices.txt",
  8509. "dotnet_library_license.txt",
  8510. "lib/MonoAndroid10/_._",
  8511. "lib/MonoTouch10/_._",
  8512. "lib/net45/_._",
  8513. "lib/net462/System.Runtime.InteropServices.dll",
  8514. "lib/net463/System.Runtime.InteropServices.dll",
  8515. "lib/portable-net45+win8+wpa81/_._",
  8516. "lib/win8/_._",
  8517. "lib/wpa81/_._",
  8518. "lib/xamarinios10/_._",
  8519. "lib/xamarinmac20/_._",
  8520. "lib/xamarintvos10/_._",
  8521. "lib/xamarinwatchos10/_._",
  8522. "ref/MonoAndroid10/_._",
  8523. "ref/MonoTouch10/_._",
  8524. "ref/net45/_._",
  8525. "ref/net462/System.Runtime.InteropServices.dll",
  8526. "ref/net463/System.Runtime.InteropServices.dll",
  8527. "ref/netcore50/System.Runtime.InteropServices.dll",
  8528. "ref/netcore50/System.Runtime.InteropServices.xml",
  8529. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8530. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8531. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8532. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8533. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8534. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8535. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8536. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8537. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8538. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8539. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8540. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8541. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8542. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8543. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8544. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8545. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8546. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8547. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8548. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8549. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8550. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8551. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8552. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8553. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8554. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8555. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8556. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8557. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8558. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8559. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8560. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8561. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8562. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8563. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8564. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8565. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8566. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8567. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8568. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8569. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8570. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8571. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8572. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8573. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8574. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8575. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8576. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8577. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8578. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8579. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8580. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8581. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8582. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8583. "ref/portable-net45+win8+wpa81/_._",
  8584. "ref/win8/_._",
  8585. "ref/wpa81/_._",
  8586. "ref/xamarinios10/_._",
  8587. "ref/xamarinmac20/_._",
  8588. "ref/xamarintvos10/_._",
  8589. "ref/xamarinwatchos10/_._",
  8590. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8591. "system.runtime.interopservices.nuspec"
  8592. ]
  8593. },
  8594. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8595. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8596. "type": "package",
  8597. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8598. "files": [
  8599. ".nupkg.metadata",
  8600. ".signature.p7s",
  8601. "ThirdPartyNotices.txt",
  8602. "dotnet_library_license.txt",
  8603. "lib/MonoAndroid10/_._",
  8604. "lib/MonoTouch10/_._",
  8605. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8606. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8607. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8608. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8609. "lib/xamarinios10/_._",
  8610. "lib/xamarinmac20/_._",
  8611. "lib/xamarintvos10/_._",
  8612. "lib/xamarinwatchos10/_._",
  8613. "ref/MonoAndroid10/_._",
  8614. "ref/MonoTouch10/_._",
  8615. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8616. "ref/xamarinios10/_._",
  8617. "ref/xamarinmac20/_._",
  8618. "ref/xamarintvos10/_._",
  8619. "ref/xamarinwatchos10/_._",
  8620. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8621. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8622. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8623. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8624. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8625. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8626. "system.runtime.interopservices.runtimeinformation.nuspec"
  8627. ]
  8628. },
  8629. "System.Runtime.Numerics/4.3.0": {
  8630. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8631. "type": "package",
  8632. "path": "system.runtime.numerics/4.3.0",
  8633. "files": [
  8634. ".nupkg.metadata",
  8635. ".signature.p7s",
  8636. "ThirdPartyNotices.txt",
  8637. "dotnet_library_license.txt",
  8638. "lib/MonoAndroid10/_._",
  8639. "lib/MonoTouch10/_._",
  8640. "lib/net45/_._",
  8641. "lib/netcore50/System.Runtime.Numerics.dll",
  8642. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8643. "lib/portable-net45+win8+wpa81/_._",
  8644. "lib/win8/_._",
  8645. "lib/wpa81/_._",
  8646. "lib/xamarinios10/_._",
  8647. "lib/xamarinmac20/_._",
  8648. "lib/xamarintvos10/_._",
  8649. "lib/xamarinwatchos10/_._",
  8650. "ref/MonoAndroid10/_._",
  8651. "ref/MonoTouch10/_._",
  8652. "ref/net45/_._",
  8653. "ref/netcore50/System.Runtime.Numerics.dll",
  8654. "ref/netcore50/System.Runtime.Numerics.xml",
  8655. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8656. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8657. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8658. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8659. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8660. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8661. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8662. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8663. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8664. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8665. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8666. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8667. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8668. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8669. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8670. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8671. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8672. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8673. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8674. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8675. "ref/portable-net45+win8+wpa81/_._",
  8676. "ref/win8/_._",
  8677. "ref/wpa81/_._",
  8678. "ref/xamarinios10/_._",
  8679. "ref/xamarinmac20/_._",
  8680. "ref/xamarintvos10/_._",
  8681. "ref/xamarinwatchos10/_._",
  8682. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8683. "system.runtime.numerics.nuspec"
  8684. ]
  8685. },
  8686. "System.Runtime.Serialization.Primitives/4.1.1": {
  8687. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  8688. "type": "package",
  8689. "path": "system.runtime.serialization.primitives/4.1.1",
  8690. "files": [
  8691. ".nupkg.metadata",
  8692. ".signature.p7s",
  8693. "ThirdPartyNotices.txt",
  8694. "dotnet_library_license.txt",
  8695. "lib/MonoAndroid10/_._",
  8696. "lib/MonoTouch10/_._",
  8697. "lib/net45/_._",
  8698. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8699. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8700. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8701. "lib/portable-net45+win8+wp8+wpa81/_._",
  8702. "lib/win8/_._",
  8703. "lib/wp80/_._",
  8704. "lib/wpa81/_._",
  8705. "lib/xamarinios10/_._",
  8706. "lib/xamarinmac20/_._",
  8707. "lib/xamarintvos10/_._",
  8708. "lib/xamarinwatchos10/_._",
  8709. "ref/MonoAndroid10/_._",
  8710. "ref/MonoTouch10/_._",
  8711. "ref/net45/_._",
  8712. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8713. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8714. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8715. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8716. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8717. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8718. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8719. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8720. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8721. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8722. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8723. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8724. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8725. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8726. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8727. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8728. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8729. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8730. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8731. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8732. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8733. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8734. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8735. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8736. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8737. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8738. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8739. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8740. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8741. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8742. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8743. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8744. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8745. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8746. "ref/portable-net45+win8+wp8+wpa81/_._",
  8747. "ref/win8/_._",
  8748. "ref/wp80/_._",
  8749. "ref/wpa81/_._",
  8750. "ref/xamarinios10/_._",
  8751. "ref/xamarinmac20/_._",
  8752. "ref/xamarintvos10/_._",
  8753. "ref/xamarinwatchos10/_._",
  8754. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8755. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  8756. "system.runtime.serialization.primitives.nuspec"
  8757. ]
  8758. },
  8759. "System.Security.AccessControl/5.0.0": {
  8760. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  8761. "type": "package",
  8762. "path": "system.security.accesscontrol/5.0.0",
  8763. "files": [
  8764. ".nupkg.metadata",
  8765. ".signature.p7s",
  8766. "Icon.png",
  8767. "LICENSE.TXT",
  8768. "THIRD-PARTY-NOTICES.TXT",
  8769. "lib/net46/System.Security.AccessControl.dll",
  8770. "lib/net461/System.Security.AccessControl.dll",
  8771. "lib/net461/System.Security.AccessControl.xml",
  8772. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8773. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8774. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8775. "lib/uap10.0.16299/_._",
  8776. "ref/net46/System.Security.AccessControl.dll",
  8777. "ref/net461/System.Security.AccessControl.dll",
  8778. "ref/net461/System.Security.AccessControl.xml",
  8779. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8780. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8781. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8782. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8783. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8784. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8785. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8786. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8787. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8788. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8789. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8790. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8791. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8792. "ref/uap10.0.16299/_._",
  8793. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8794. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8795. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8796. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8797. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8798. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8799. "runtimes/win/lib/uap10.0.16299/_._",
  8800. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  8801. "system.security.accesscontrol.nuspec",
  8802. "useSharedDesignerContext.txt",
  8803. "version.txt"
  8804. ]
  8805. },
  8806. "System.Security.Claims/4.3.0": {
  8807. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8808. "type": "package",
  8809. "path": "system.security.claims/4.3.0",
  8810. "files": [
  8811. ".nupkg.metadata",
  8812. ".signature.p7s",
  8813. "ThirdPartyNotices.txt",
  8814. "dotnet_library_license.txt",
  8815. "lib/MonoAndroid10/_._",
  8816. "lib/MonoTouch10/_._",
  8817. "lib/net46/System.Security.Claims.dll",
  8818. "lib/netstandard1.3/System.Security.Claims.dll",
  8819. "lib/xamarinios10/_._",
  8820. "lib/xamarinmac20/_._",
  8821. "lib/xamarintvos10/_._",
  8822. "lib/xamarinwatchos10/_._",
  8823. "ref/MonoAndroid10/_._",
  8824. "ref/MonoTouch10/_._",
  8825. "ref/net46/System.Security.Claims.dll",
  8826. "ref/netstandard1.3/System.Security.Claims.dll",
  8827. "ref/netstandard1.3/System.Security.Claims.xml",
  8828. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8829. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8830. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8831. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8832. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8833. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8834. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8835. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8836. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8837. "ref/xamarinios10/_._",
  8838. "ref/xamarinmac20/_._",
  8839. "ref/xamarintvos10/_._",
  8840. "ref/xamarinwatchos10/_._",
  8841. "system.security.claims.4.3.0.nupkg.sha512",
  8842. "system.security.claims.nuspec"
  8843. ]
  8844. },
  8845. "System.Security.Cryptography.Algorithms/4.3.0": {
  8846. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8847. "type": "package",
  8848. "path": "system.security.cryptography.algorithms/4.3.0",
  8849. "files": [
  8850. ".nupkg.metadata",
  8851. ".signature.p7s",
  8852. "ThirdPartyNotices.txt",
  8853. "dotnet_library_license.txt",
  8854. "lib/MonoAndroid10/_._",
  8855. "lib/MonoTouch10/_._",
  8856. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8857. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8858. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8859. "lib/xamarinios10/_._",
  8860. "lib/xamarinmac20/_._",
  8861. "lib/xamarintvos10/_._",
  8862. "lib/xamarinwatchos10/_._",
  8863. "ref/MonoAndroid10/_._",
  8864. "ref/MonoTouch10/_._",
  8865. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8866. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8867. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8868. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8869. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8870. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8871. "ref/xamarinios10/_._",
  8872. "ref/xamarinmac20/_._",
  8873. "ref/xamarintvos10/_._",
  8874. "ref/xamarinwatchos10/_._",
  8875. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8876. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8877. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8878. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8879. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8880. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8881. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8882. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8883. "system.security.cryptography.algorithms.nuspec"
  8884. ]
  8885. },
  8886. "System.Security.Cryptography.Cng/5.0.0": {
  8887. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  8888. "type": "package",
  8889. "path": "system.security.cryptography.cng/5.0.0",
  8890. "files": [
  8891. ".nupkg.metadata",
  8892. ".signature.p7s",
  8893. "Icon.png",
  8894. "LICENSE.TXT",
  8895. "THIRD-PARTY-NOTICES.TXT",
  8896. "lib/MonoAndroid10/_._",
  8897. "lib/MonoTouch10/_._",
  8898. "lib/net46/System.Security.Cryptography.Cng.dll",
  8899. "lib/net461/System.Security.Cryptography.Cng.dll",
  8900. "lib/net461/System.Security.Cryptography.Cng.xml",
  8901. "lib/net462/System.Security.Cryptography.Cng.dll",
  8902. "lib/net462/System.Security.Cryptography.Cng.xml",
  8903. "lib/net47/System.Security.Cryptography.Cng.dll",
  8904. "lib/net47/System.Security.Cryptography.Cng.xml",
  8905. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8906. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8907. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8908. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8909. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8910. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8911. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8912. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8913. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8914. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8915. "lib/uap10.0.16299/_._",
  8916. "lib/xamarinios10/_._",
  8917. "lib/xamarinmac20/_._",
  8918. "lib/xamarintvos10/_._",
  8919. "lib/xamarinwatchos10/_._",
  8920. "ref/MonoAndroid10/_._",
  8921. "ref/MonoTouch10/_._",
  8922. "ref/net46/System.Security.Cryptography.Cng.dll",
  8923. "ref/net461/System.Security.Cryptography.Cng.dll",
  8924. "ref/net461/System.Security.Cryptography.Cng.xml",
  8925. "ref/net462/System.Security.Cryptography.Cng.dll",
  8926. "ref/net462/System.Security.Cryptography.Cng.xml",
  8927. "ref/net47/System.Security.Cryptography.Cng.dll",
  8928. "ref/net47/System.Security.Cryptography.Cng.xml",
  8929. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8930. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8931. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8932. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8933. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8934. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8935. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8936. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8937. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8938. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8939. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8940. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8941. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8942. "ref/uap10.0.16299/_._",
  8943. "ref/xamarinios10/_._",
  8944. "ref/xamarinmac20/_._",
  8945. "ref/xamarintvos10/_._",
  8946. "ref/xamarinwatchos10/_._",
  8947. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8948. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8949. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  8950. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8951. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  8952. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8953. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  8954. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8955. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8956. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8957. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8958. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8959. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8960. "runtimes/win/lib/uap10.0.16299/_._",
  8961. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  8962. "system.security.cryptography.cng.nuspec",
  8963. "useSharedDesignerContext.txt",
  8964. "version.txt"
  8965. ]
  8966. },
  8967. "System.Security.Cryptography.Csp/4.3.0": {
  8968. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8969. "type": "package",
  8970. "path": "system.security.cryptography.csp/4.3.0",
  8971. "files": [
  8972. ".nupkg.metadata",
  8973. ".signature.p7s",
  8974. "ThirdPartyNotices.txt",
  8975. "dotnet_library_license.txt",
  8976. "lib/MonoAndroid10/_._",
  8977. "lib/MonoTouch10/_._",
  8978. "lib/net46/System.Security.Cryptography.Csp.dll",
  8979. "lib/xamarinios10/_._",
  8980. "lib/xamarinmac20/_._",
  8981. "lib/xamarintvos10/_._",
  8982. "lib/xamarinwatchos10/_._",
  8983. "ref/MonoAndroid10/_._",
  8984. "ref/MonoTouch10/_._",
  8985. "ref/net46/System.Security.Cryptography.Csp.dll",
  8986. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8987. "ref/xamarinios10/_._",
  8988. "ref/xamarinmac20/_._",
  8989. "ref/xamarintvos10/_._",
  8990. "ref/xamarinwatchos10/_._",
  8991. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8992. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8993. "runtimes/win/lib/netcore50/_._",
  8994. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8995. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8996. "system.security.cryptography.csp.nuspec"
  8997. ]
  8998. },
  8999. "System.Security.Cryptography.Encoding/4.3.0": {
  9000. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9001. "type": "package",
  9002. "path": "system.security.cryptography.encoding/4.3.0",
  9003. "files": [
  9004. ".nupkg.metadata",
  9005. ".signature.p7s",
  9006. "ThirdPartyNotices.txt",
  9007. "dotnet_library_license.txt",
  9008. "lib/MonoAndroid10/_._",
  9009. "lib/MonoTouch10/_._",
  9010. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9011. "lib/xamarinios10/_._",
  9012. "lib/xamarinmac20/_._",
  9013. "lib/xamarintvos10/_._",
  9014. "lib/xamarinwatchos10/_._",
  9015. "ref/MonoAndroid10/_._",
  9016. "ref/MonoTouch10/_._",
  9017. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9018. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9019. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9020. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9021. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9022. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9023. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9024. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9025. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9026. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9027. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9028. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9029. "ref/xamarinios10/_._",
  9030. "ref/xamarinmac20/_._",
  9031. "ref/xamarintvos10/_._",
  9032. "ref/xamarinwatchos10/_._",
  9033. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9034. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9035. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9036. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9037. "system.security.cryptography.encoding.nuspec"
  9038. ]
  9039. },
  9040. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9041. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9042. "type": "package",
  9043. "path": "system.security.cryptography.openssl/4.3.0",
  9044. "files": [
  9045. ".nupkg.metadata",
  9046. ".signature.p7s",
  9047. "ThirdPartyNotices.txt",
  9048. "dotnet_library_license.txt",
  9049. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9050. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9051. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9052. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9053. "system.security.cryptography.openssl.nuspec"
  9054. ]
  9055. },
  9056. "System.Security.Cryptography.Pkcs/5.0.0": {
  9057. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  9058. "type": "package",
  9059. "path": "system.security.cryptography.pkcs/5.0.0",
  9060. "files": [
  9061. ".nupkg.metadata",
  9062. ".signature.p7s",
  9063. "Icon.png",
  9064. "LICENSE.TXT",
  9065. "THIRD-PARTY-NOTICES.TXT",
  9066. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  9067. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  9068. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  9069. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9070. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9071. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9072. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9073. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9074. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9075. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9076. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9077. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  9078. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  9079. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  9080. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9081. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  9082. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9083. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9084. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9085. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9086. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9087. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9088. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9089. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  9090. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  9091. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  9092. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9093. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9094. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9095. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9096. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9097. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9098. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9099. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9100. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  9101. "system.security.cryptography.pkcs.nuspec",
  9102. "useSharedDesignerContext.txt",
  9103. "version.txt"
  9104. ]
  9105. },
  9106. "System.Security.Cryptography.Primitives/4.3.0": {
  9107. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9108. "type": "package",
  9109. "path": "system.security.cryptography.primitives/4.3.0",
  9110. "files": [
  9111. ".nupkg.metadata",
  9112. ".signature.p7s",
  9113. "ThirdPartyNotices.txt",
  9114. "dotnet_library_license.txt",
  9115. "lib/MonoAndroid10/_._",
  9116. "lib/MonoTouch10/_._",
  9117. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9118. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9119. "lib/xamarinios10/_._",
  9120. "lib/xamarinmac20/_._",
  9121. "lib/xamarintvos10/_._",
  9122. "lib/xamarinwatchos10/_._",
  9123. "ref/MonoAndroid10/_._",
  9124. "ref/MonoTouch10/_._",
  9125. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9126. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9127. "ref/xamarinios10/_._",
  9128. "ref/xamarinmac20/_._",
  9129. "ref/xamarintvos10/_._",
  9130. "ref/xamarinwatchos10/_._",
  9131. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9132. "system.security.cryptography.primitives.nuspec"
  9133. ]
  9134. },
  9135. "System.Security.Cryptography.ProtectedData/4.5.0": {
  9136. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  9137. "type": "package",
  9138. "path": "system.security.cryptography.protecteddata/4.5.0",
  9139. "files": [
  9140. ".nupkg.metadata",
  9141. ".signature.p7s",
  9142. "LICENSE.TXT",
  9143. "THIRD-PARTY-NOTICES.TXT",
  9144. "lib/MonoAndroid10/_._",
  9145. "lib/MonoTouch10/_._",
  9146. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9147. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9148. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9149. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9150. "lib/xamarinios10/_._",
  9151. "lib/xamarinmac20/_._",
  9152. "lib/xamarintvos10/_._",
  9153. "lib/xamarinwatchos10/_._",
  9154. "ref/MonoAndroid10/_._",
  9155. "ref/MonoTouch10/_._",
  9156. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9157. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9158. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9159. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9160. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9161. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9162. "ref/xamarinios10/_._",
  9163. "ref/xamarinmac20/_._",
  9164. "ref/xamarintvos10/_._",
  9165. "ref/xamarinwatchos10/_._",
  9166. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9167. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9168. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9169. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9170. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  9171. "system.security.cryptography.protecteddata.nuspec",
  9172. "useSharedDesignerContext.txt",
  9173. "version.txt"
  9174. ]
  9175. },
  9176. "System.Security.Cryptography.X509Certificates/4.3.2": {
  9177. "sha512": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
  9178. "type": "package",
  9179. "path": "system.security.cryptography.x509certificates/4.3.2",
  9180. "files": [
  9181. ".nupkg.metadata",
  9182. ".signature.p7s",
  9183. "ThirdPartyNotices.txt",
  9184. "dotnet_library_license.txt",
  9185. "lib/MonoAndroid10/_._",
  9186. "lib/MonoTouch10/_._",
  9187. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9188. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9189. "lib/xamarinios10/_._",
  9190. "lib/xamarinmac20/_._",
  9191. "lib/xamarintvos10/_._",
  9192. "lib/xamarinwatchos10/_._",
  9193. "ref/MonoAndroid10/_._",
  9194. "ref/MonoTouch10/_._",
  9195. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9196. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9197. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9198. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9199. "ref/xamarinios10/_._",
  9200. "ref/xamarinmac20/_._",
  9201. "ref/xamarintvos10/_._",
  9202. "ref/xamarinwatchos10/_._",
  9203. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9204. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9205. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9206. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9207. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9208. "system.security.cryptography.x509certificates.4.3.2.nupkg.sha512",
  9209. "system.security.cryptography.x509certificates.nuspec"
  9210. ]
  9211. },
  9212. "System.Security.Permissions/4.7.0": {
  9213. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9214. "type": "package",
  9215. "path": "system.security.permissions/4.7.0",
  9216. "files": [
  9217. ".nupkg.metadata",
  9218. ".signature.p7s",
  9219. "LICENSE.TXT",
  9220. "THIRD-PARTY-NOTICES.TXT",
  9221. "lib/net461/System.Security.Permissions.dll",
  9222. "lib/net461/System.Security.Permissions.xml",
  9223. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9224. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9225. "lib/netstandard2.0/System.Security.Permissions.dll",
  9226. "lib/netstandard2.0/System.Security.Permissions.xml",
  9227. "ref/net461/System.Security.Permissions.dll",
  9228. "ref/net461/System.Security.Permissions.xml",
  9229. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9230. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9231. "ref/netstandard2.0/System.Security.Permissions.dll",
  9232. "ref/netstandard2.0/System.Security.Permissions.xml",
  9233. "system.security.permissions.4.7.0.nupkg.sha512",
  9234. "system.security.permissions.nuspec",
  9235. "useSharedDesignerContext.txt",
  9236. "version.txt"
  9237. ]
  9238. },
  9239. "System.Security.Principal/4.3.0": {
  9240. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9241. "type": "package",
  9242. "path": "system.security.principal/4.3.0",
  9243. "files": [
  9244. ".nupkg.metadata",
  9245. ".signature.p7s",
  9246. "ThirdPartyNotices.txt",
  9247. "dotnet_library_license.txt",
  9248. "lib/MonoAndroid10/_._",
  9249. "lib/MonoTouch10/_._",
  9250. "lib/net45/_._",
  9251. "lib/netcore50/System.Security.Principal.dll",
  9252. "lib/netstandard1.0/System.Security.Principal.dll",
  9253. "lib/portable-net45+win8+wp8+wpa81/_._",
  9254. "lib/win8/_._",
  9255. "lib/wp80/_._",
  9256. "lib/wpa81/_._",
  9257. "lib/xamarinios10/_._",
  9258. "lib/xamarinmac20/_._",
  9259. "lib/xamarintvos10/_._",
  9260. "lib/xamarinwatchos10/_._",
  9261. "ref/MonoAndroid10/_._",
  9262. "ref/MonoTouch10/_._",
  9263. "ref/net45/_._",
  9264. "ref/netcore50/System.Security.Principal.dll",
  9265. "ref/netcore50/System.Security.Principal.xml",
  9266. "ref/netcore50/de/System.Security.Principal.xml",
  9267. "ref/netcore50/es/System.Security.Principal.xml",
  9268. "ref/netcore50/fr/System.Security.Principal.xml",
  9269. "ref/netcore50/it/System.Security.Principal.xml",
  9270. "ref/netcore50/ja/System.Security.Principal.xml",
  9271. "ref/netcore50/ko/System.Security.Principal.xml",
  9272. "ref/netcore50/ru/System.Security.Principal.xml",
  9273. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9274. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9275. "ref/netstandard1.0/System.Security.Principal.dll",
  9276. "ref/netstandard1.0/System.Security.Principal.xml",
  9277. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9278. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9279. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9280. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9281. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9282. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9283. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9284. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9285. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9286. "ref/portable-net45+win8+wp8+wpa81/_._",
  9287. "ref/win8/_._",
  9288. "ref/wp80/_._",
  9289. "ref/wpa81/_._",
  9290. "ref/xamarinios10/_._",
  9291. "ref/xamarinmac20/_._",
  9292. "ref/xamarintvos10/_._",
  9293. "ref/xamarinwatchos10/_._",
  9294. "system.security.principal.4.3.0.nupkg.sha512",
  9295. "system.security.principal.nuspec"
  9296. ]
  9297. },
  9298. "System.Security.Principal.Windows/5.0.0": {
  9299. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  9300. "type": "package",
  9301. "path": "system.security.principal.windows/5.0.0",
  9302. "files": [
  9303. ".nupkg.metadata",
  9304. ".signature.p7s",
  9305. "Icon.png",
  9306. "LICENSE.TXT",
  9307. "THIRD-PARTY-NOTICES.TXT",
  9308. "lib/net46/System.Security.Principal.Windows.dll",
  9309. "lib/net461/System.Security.Principal.Windows.dll",
  9310. "lib/net461/System.Security.Principal.Windows.xml",
  9311. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9312. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9313. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9314. "lib/uap10.0.16299/_._",
  9315. "ref/net46/System.Security.Principal.Windows.dll",
  9316. "ref/net461/System.Security.Principal.Windows.dll",
  9317. "ref/net461/System.Security.Principal.Windows.xml",
  9318. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9319. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9320. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9321. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9322. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9323. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9324. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9325. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9326. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9327. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9328. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9329. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9330. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9331. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9332. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9333. "ref/uap10.0.16299/_._",
  9334. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9335. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9336. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9337. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9338. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9339. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9340. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9341. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9342. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9343. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9344. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9345. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9346. "runtimes/win/lib/uap10.0.16299/_._",
  9347. "system.security.principal.windows.5.0.0.nupkg.sha512",
  9348. "system.security.principal.windows.nuspec",
  9349. "useSharedDesignerContext.txt",
  9350. "version.txt"
  9351. ]
  9352. },
  9353. "System.Text.Encoding/4.3.0": {
  9354. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9355. "type": "package",
  9356. "path": "system.text.encoding/4.3.0",
  9357. "files": [
  9358. ".nupkg.metadata",
  9359. ".signature.p7s",
  9360. "ThirdPartyNotices.txt",
  9361. "dotnet_library_license.txt",
  9362. "lib/MonoAndroid10/_._",
  9363. "lib/MonoTouch10/_._",
  9364. "lib/net45/_._",
  9365. "lib/portable-net45+win8+wp8+wpa81/_._",
  9366. "lib/win8/_._",
  9367. "lib/wp80/_._",
  9368. "lib/wpa81/_._",
  9369. "lib/xamarinios10/_._",
  9370. "lib/xamarinmac20/_._",
  9371. "lib/xamarintvos10/_._",
  9372. "lib/xamarinwatchos10/_._",
  9373. "ref/MonoAndroid10/_._",
  9374. "ref/MonoTouch10/_._",
  9375. "ref/net45/_._",
  9376. "ref/netcore50/System.Text.Encoding.dll",
  9377. "ref/netcore50/System.Text.Encoding.xml",
  9378. "ref/netcore50/de/System.Text.Encoding.xml",
  9379. "ref/netcore50/es/System.Text.Encoding.xml",
  9380. "ref/netcore50/fr/System.Text.Encoding.xml",
  9381. "ref/netcore50/it/System.Text.Encoding.xml",
  9382. "ref/netcore50/ja/System.Text.Encoding.xml",
  9383. "ref/netcore50/ko/System.Text.Encoding.xml",
  9384. "ref/netcore50/ru/System.Text.Encoding.xml",
  9385. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9386. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9387. "ref/netstandard1.0/System.Text.Encoding.dll",
  9388. "ref/netstandard1.0/System.Text.Encoding.xml",
  9389. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9390. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9391. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9392. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9393. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9394. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9395. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9396. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9397. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9398. "ref/netstandard1.3/System.Text.Encoding.dll",
  9399. "ref/netstandard1.3/System.Text.Encoding.xml",
  9400. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9401. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9402. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9403. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9404. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9405. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9406. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9407. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9408. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9409. "ref/portable-net45+win8+wp8+wpa81/_._",
  9410. "ref/win8/_._",
  9411. "ref/wp80/_._",
  9412. "ref/wpa81/_._",
  9413. "ref/xamarinios10/_._",
  9414. "ref/xamarinmac20/_._",
  9415. "ref/xamarintvos10/_._",
  9416. "ref/xamarinwatchos10/_._",
  9417. "system.text.encoding.4.3.0.nupkg.sha512",
  9418. "system.text.encoding.nuspec"
  9419. ]
  9420. },
  9421. "System.Text.Encoding.CodePages/5.0.0": {
  9422. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9423. "type": "package",
  9424. "path": "system.text.encoding.codepages/5.0.0",
  9425. "files": [
  9426. ".nupkg.metadata",
  9427. ".signature.p7s",
  9428. "Icon.png",
  9429. "LICENSE.TXT",
  9430. "THIRD-PARTY-NOTICES.TXT",
  9431. "lib/MonoAndroid10/_._",
  9432. "lib/MonoTouch10/_._",
  9433. "lib/net46/System.Text.Encoding.CodePages.dll",
  9434. "lib/net461/System.Text.Encoding.CodePages.dll",
  9435. "lib/net461/System.Text.Encoding.CodePages.xml",
  9436. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9437. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9438. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9439. "lib/xamarinios10/_._",
  9440. "lib/xamarinmac20/_._",
  9441. "lib/xamarintvos10/_._",
  9442. "lib/xamarinwatchos10/_._",
  9443. "ref/MonoAndroid10/_._",
  9444. "ref/MonoTouch10/_._",
  9445. "ref/xamarinios10/_._",
  9446. "ref/xamarinmac20/_._",
  9447. "ref/xamarintvos10/_._",
  9448. "ref/xamarinwatchos10/_._",
  9449. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9450. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9451. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9452. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9453. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9454. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9455. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9456. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9457. "system.text.encoding.codepages.nuspec",
  9458. "useSharedDesignerContext.txt",
  9459. "version.txt"
  9460. ]
  9461. },
  9462. "System.Text.Encoding.Extensions/4.3.0": {
  9463. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9464. "type": "package",
  9465. "path": "system.text.encoding.extensions/4.3.0",
  9466. "files": [
  9467. ".nupkg.metadata",
  9468. ".signature.p7s",
  9469. "ThirdPartyNotices.txt",
  9470. "dotnet_library_license.txt",
  9471. "lib/MonoAndroid10/_._",
  9472. "lib/MonoTouch10/_._",
  9473. "lib/net45/_._",
  9474. "lib/portable-net45+win8+wp8+wpa81/_._",
  9475. "lib/win8/_._",
  9476. "lib/wp80/_._",
  9477. "lib/wpa81/_._",
  9478. "lib/xamarinios10/_._",
  9479. "lib/xamarinmac20/_._",
  9480. "lib/xamarintvos10/_._",
  9481. "lib/xamarinwatchos10/_._",
  9482. "ref/MonoAndroid10/_._",
  9483. "ref/MonoTouch10/_._",
  9484. "ref/net45/_._",
  9485. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9486. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9487. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9488. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9489. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9490. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9491. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9492. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9493. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9494. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9495. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9496. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9497. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9498. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9499. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9500. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9501. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9502. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9503. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9504. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9505. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9506. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9507. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9508. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9509. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9510. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9511. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9512. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9513. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9514. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9515. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9516. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9517. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9518. "ref/portable-net45+win8+wp8+wpa81/_._",
  9519. "ref/win8/_._",
  9520. "ref/wp80/_._",
  9521. "ref/wpa81/_._",
  9522. "ref/xamarinios10/_._",
  9523. "ref/xamarinmac20/_._",
  9524. "ref/xamarintvos10/_._",
  9525. "ref/xamarinwatchos10/_._",
  9526. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9527. "system.text.encoding.extensions.nuspec"
  9528. ]
  9529. },
  9530. "System.Text.Json/4.7.2": {
  9531. "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
  9532. "type": "package",
  9533. "path": "system.text.json/4.7.2",
  9534. "files": [
  9535. ".nupkg.metadata",
  9536. ".signature.p7s",
  9537. "Icon.png",
  9538. "LICENSE.TXT",
  9539. "THIRD-PARTY-NOTICES.TXT",
  9540. "lib/net461/System.Text.Json.dll",
  9541. "lib/net461/System.Text.Json.xml",
  9542. "lib/netcoreapp3.0/System.Text.Json.dll",
  9543. "lib/netcoreapp3.0/System.Text.Json.xml",
  9544. "lib/netstandard2.0/System.Text.Json.dll",
  9545. "lib/netstandard2.0/System.Text.Json.xml",
  9546. "system.text.json.4.7.2.nupkg.sha512",
  9547. "system.text.json.nuspec",
  9548. "useSharedDesignerContext.txt",
  9549. "version.txt"
  9550. ]
  9551. },
  9552. "System.Text.RegularExpressions/4.3.0": {
  9553. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9554. "type": "package",
  9555. "path": "system.text.regularexpressions/4.3.0",
  9556. "files": [
  9557. ".nupkg.metadata",
  9558. ".signature.p7s",
  9559. "ThirdPartyNotices.txt",
  9560. "dotnet_library_license.txt",
  9561. "lib/MonoAndroid10/_._",
  9562. "lib/MonoTouch10/_._",
  9563. "lib/net45/_._",
  9564. "lib/net463/System.Text.RegularExpressions.dll",
  9565. "lib/netcore50/System.Text.RegularExpressions.dll",
  9566. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9567. "lib/portable-net45+win8+wp8+wpa81/_._",
  9568. "lib/win8/_._",
  9569. "lib/wp80/_._",
  9570. "lib/wpa81/_._",
  9571. "lib/xamarinios10/_._",
  9572. "lib/xamarinmac20/_._",
  9573. "lib/xamarintvos10/_._",
  9574. "lib/xamarinwatchos10/_._",
  9575. "ref/MonoAndroid10/_._",
  9576. "ref/MonoTouch10/_._",
  9577. "ref/net45/_._",
  9578. "ref/net463/System.Text.RegularExpressions.dll",
  9579. "ref/netcore50/System.Text.RegularExpressions.dll",
  9580. "ref/netcore50/System.Text.RegularExpressions.xml",
  9581. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9582. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9583. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9584. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9585. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9586. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9587. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9588. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9589. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9590. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9591. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9592. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9593. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9594. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9595. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9596. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9597. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9598. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9599. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9600. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9601. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9602. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9603. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9604. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9605. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9606. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9607. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9608. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9609. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9610. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9611. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9612. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9613. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9614. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9615. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9616. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9617. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9618. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9619. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9620. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9621. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9622. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9623. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9624. "ref/portable-net45+win8+wp8+wpa81/_._",
  9625. "ref/win8/_._",
  9626. "ref/wp80/_._",
  9627. "ref/wpa81/_._",
  9628. "ref/xamarinios10/_._",
  9629. "ref/xamarinmac20/_._",
  9630. "ref/xamarintvos10/_._",
  9631. "ref/xamarinwatchos10/_._",
  9632. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9633. "system.text.regularexpressions.nuspec"
  9634. ]
  9635. },
  9636. "System.Threading/4.3.0": {
  9637. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9638. "type": "package",
  9639. "path": "system.threading/4.3.0",
  9640. "files": [
  9641. ".nupkg.metadata",
  9642. ".signature.p7s",
  9643. "ThirdPartyNotices.txt",
  9644. "dotnet_library_license.txt",
  9645. "lib/MonoAndroid10/_._",
  9646. "lib/MonoTouch10/_._",
  9647. "lib/net45/_._",
  9648. "lib/netcore50/System.Threading.dll",
  9649. "lib/netstandard1.3/System.Threading.dll",
  9650. "lib/portable-net45+win8+wp8+wpa81/_._",
  9651. "lib/win8/_._",
  9652. "lib/wp80/_._",
  9653. "lib/wpa81/_._",
  9654. "lib/xamarinios10/_._",
  9655. "lib/xamarinmac20/_._",
  9656. "lib/xamarintvos10/_._",
  9657. "lib/xamarinwatchos10/_._",
  9658. "ref/MonoAndroid10/_._",
  9659. "ref/MonoTouch10/_._",
  9660. "ref/net45/_._",
  9661. "ref/netcore50/System.Threading.dll",
  9662. "ref/netcore50/System.Threading.xml",
  9663. "ref/netcore50/de/System.Threading.xml",
  9664. "ref/netcore50/es/System.Threading.xml",
  9665. "ref/netcore50/fr/System.Threading.xml",
  9666. "ref/netcore50/it/System.Threading.xml",
  9667. "ref/netcore50/ja/System.Threading.xml",
  9668. "ref/netcore50/ko/System.Threading.xml",
  9669. "ref/netcore50/ru/System.Threading.xml",
  9670. "ref/netcore50/zh-hans/System.Threading.xml",
  9671. "ref/netcore50/zh-hant/System.Threading.xml",
  9672. "ref/netstandard1.0/System.Threading.dll",
  9673. "ref/netstandard1.0/System.Threading.xml",
  9674. "ref/netstandard1.0/de/System.Threading.xml",
  9675. "ref/netstandard1.0/es/System.Threading.xml",
  9676. "ref/netstandard1.0/fr/System.Threading.xml",
  9677. "ref/netstandard1.0/it/System.Threading.xml",
  9678. "ref/netstandard1.0/ja/System.Threading.xml",
  9679. "ref/netstandard1.0/ko/System.Threading.xml",
  9680. "ref/netstandard1.0/ru/System.Threading.xml",
  9681. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9682. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9683. "ref/netstandard1.3/System.Threading.dll",
  9684. "ref/netstandard1.3/System.Threading.xml",
  9685. "ref/netstandard1.3/de/System.Threading.xml",
  9686. "ref/netstandard1.3/es/System.Threading.xml",
  9687. "ref/netstandard1.3/fr/System.Threading.xml",
  9688. "ref/netstandard1.3/it/System.Threading.xml",
  9689. "ref/netstandard1.3/ja/System.Threading.xml",
  9690. "ref/netstandard1.3/ko/System.Threading.xml",
  9691. "ref/netstandard1.3/ru/System.Threading.xml",
  9692. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9693. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9694. "ref/portable-net45+win8+wp8+wpa81/_._",
  9695. "ref/win8/_._",
  9696. "ref/wp80/_._",
  9697. "ref/wpa81/_._",
  9698. "ref/xamarinios10/_._",
  9699. "ref/xamarinmac20/_._",
  9700. "ref/xamarintvos10/_._",
  9701. "ref/xamarinwatchos10/_._",
  9702. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9703. "system.threading.4.3.0.nupkg.sha512",
  9704. "system.threading.nuspec"
  9705. ]
  9706. },
  9707. "System.Threading.Tasks/4.3.0": {
  9708. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9709. "type": "package",
  9710. "path": "system.threading.tasks/4.3.0",
  9711. "files": [
  9712. ".nupkg.metadata",
  9713. ".signature.p7s",
  9714. "ThirdPartyNotices.txt",
  9715. "dotnet_library_license.txt",
  9716. "lib/MonoAndroid10/_._",
  9717. "lib/MonoTouch10/_._",
  9718. "lib/net45/_._",
  9719. "lib/portable-net45+win8+wp8+wpa81/_._",
  9720. "lib/win8/_._",
  9721. "lib/wp80/_._",
  9722. "lib/wpa81/_._",
  9723. "lib/xamarinios10/_._",
  9724. "lib/xamarinmac20/_._",
  9725. "lib/xamarintvos10/_._",
  9726. "lib/xamarinwatchos10/_._",
  9727. "ref/MonoAndroid10/_._",
  9728. "ref/MonoTouch10/_._",
  9729. "ref/net45/_._",
  9730. "ref/netcore50/System.Threading.Tasks.dll",
  9731. "ref/netcore50/System.Threading.Tasks.xml",
  9732. "ref/netcore50/de/System.Threading.Tasks.xml",
  9733. "ref/netcore50/es/System.Threading.Tasks.xml",
  9734. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9735. "ref/netcore50/it/System.Threading.Tasks.xml",
  9736. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9737. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9738. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9739. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9740. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9741. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9742. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9743. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9744. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9745. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9746. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9747. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9748. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9749. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9750. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9751. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9752. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9753. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9754. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9755. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9756. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9757. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9758. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9759. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9760. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9761. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9762. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9763. "ref/portable-net45+win8+wp8+wpa81/_._",
  9764. "ref/win8/_._",
  9765. "ref/wp80/_._",
  9766. "ref/wpa81/_._",
  9767. "ref/xamarinios10/_._",
  9768. "ref/xamarinmac20/_._",
  9769. "ref/xamarintvos10/_._",
  9770. "ref/xamarinwatchos10/_._",
  9771. "system.threading.tasks.4.3.0.nupkg.sha512",
  9772. "system.threading.tasks.nuspec"
  9773. ]
  9774. },
  9775. "System.Threading.Tasks.Extensions/4.5.2": {
  9776. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  9777. "type": "package",
  9778. "path": "system.threading.tasks.extensions/4.5.2",
  9779. "files": [
  9780. ".nupkg.metadata",
  9781. ".signature.p7s",
  9782. "LICENSE.TXT",
  9783. "THIRD-PARTY-NOTICES.TXT",
  9784. "lib/MonoAndroid10/_._",
  9785. "lib/MonoTouch10/_._",
  9786. "lib/netcoreapp2.1/_._",
  9787. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9788. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9789. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9790. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9791. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9792. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9793. "lib/xamarinios10/_._",
  9794. "lib/xamarinmac20/_._",
  9795. "lib/xamarintvos10/_._",
  9796. "lib/xamarinwatchos10/_._",
  9797. "ref/MonoAndroid10/_._",
  9798. "ref/MonoTouch10/_._",
  9799. "ref/netcoreapp2.1/_._",
  9800. "ref/xamarinios10/_._",
  9801. "ref/xamarinmac20/_._",
  9802. "ref/xamarintvos10/_._",
  9803. "ref/xamarinwatchos10/_._",
  9804. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  9805. "system.threading.tasks.extensions.nuspec",
  9806. "useSharedDesignerContext.txt",
  9807. "version.txt"
  9808. ]
  9809. },
  9810. "System.Threading.Timer/4.3.0": {
  9811. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9812. "type": "package",
  9813. "path": "system.threading.timer/4.3.0",
  9814. "files": [
  9815. ".nupkg.metadata",
  9816. ".signature.p7s",
  9817. "ThirdPartyNotices.txt",
  9818. "dotnet_library_license.txt",
  9819. "lib/MonoAndroid10/_._",
  9820. "lib/MonoTouch10/_._",
  9821. "lib/net451/_._",
  9822. "lib/portable-net451+win81+wpa81/_._",
  9823. "lib/win81/_._",
  9824. "lib/wpa81/_._",
  9825. "lib/xamarinios10/_._",
  9826. "lib/xamarinmac20/_._",
  9827. "lib/xamarintvos10/_._",
  9828. "lib/xamarinwatchos10/_._",
  9829. "ref/MonoAndroid10/_._",
  9830. "ref/MonoTouch10/_._",
  9831. "ref/net451/_._",
  9832. "ref/netcore50/System.Threading.Timer.dll",
  9833. "ref/netcore50/System.Threading.Timer.xml",
  9834. "ref/netcore50/de/System.Threading.Timer.xml",
  9835. "ref/netcore50/es/System.Threading.Timer.xml",
  9836. "ref/netcore50/fr/System.Threading.Timer.xml",
  9837. "ref/netcore50/it/System.Threading.Timer.xml",
  9838. "ref/netcore50/ja/System.Threading.Timer.xml",
  9839. "ref/netcore50/ko/System.Threading.Timer.xml",
  9840. "ref/netcore50/ru/System.Threading.Timer.xml",
  9841. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9842. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9843. "ref/netstandard1.2/System.Threading.Timer.dll",
  9844. "ref/netstandard1.2/System.Threading.Timer.xml",
  9845. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9846. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9847. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9848. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9849. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9850. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9851. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9852. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9853. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9854. "ref/portable-net451+win81+wpa81/_._",
  9855. "ref/win81/_._",
  9856. "ref/wpa81/_._",
  9857. "ref/xamarinios10/_._",
  9858. "ref/xamarinmac20/_._",
  9859. "ref/xamarintvos10/_._",
  9860. "ref/xamarinwatchos10/_._",
  9861. "system.threading.timer.4.3.0.nupkg.sha512",
  9862. "system.threading.timer.nuspec"
  9863. ]
  9864. },
  9865. "System.Windows.Extensions/4.7.0": {
  9866. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9867. "type": "package",
  9868. "path": "system.windows.extensions/4.7.0",
  9869. "files": [
  9870. ".nupkg.metadata",
  9871. ".signature.p7s",
  9872. "LICENSE.TXT",
  9873. "THIRD-PARTY-NOTICES.TXT",
  9874. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9875. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9876. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9877. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9878. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9879. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9880. "system.windows.extensions.4.7.0.nupkg.sha512",
  9881. "system.windows.extensions.nuspec",
  9882. "useSharedDesignerContext.txt",
  9883. "version.txt"
  9884. ]
  9885. },
  9886. "System.Xml.ReaderWriter/4.3.0": {
  9887. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9888. "type": "package",
  9889. "path": "system.xml.readerwriter/4.3.0",
  9890. "files": [
  9891. ".nupkg.metadata",
  9892. ".signature.p7s",
  9893. "ThirdPartyNotices.txt",
  9894. "dotnet_library_license.txt",
  9895. "lib/MonoAndroid10/_._",
  9896. "lib/MonoTouch10/_._",
  9897. "lib/net45/_._",
  9898. "lib/net46/System.Xml.ReaderWriter.dll",
  9899. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9900. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9901. "lib/portable-net45+win8+wp8+wpa81/_._",
  9902. "lib/win8/_._",
  9903. "lib/wp80/_._",
  9904. "lib/wpa81/_._",
  9905. "lib/xamarinios10/_._",
  9906. "lib/xamarinmac20/_._",
  9907. "lib/xamarintvos10/_._",
  9908. "lib/xamarinwatchos10/_._",
  9909. "ref/MonoAndroid10/_._",
  9910. "ref/MonoTouch10/_._",
  9911. "ref/net45/_._",
  9912. "ref/net46/System.Xml.ReaderWriter.dll",
  9913. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9914. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9915. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9916. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9917. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9918. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9919. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9920. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9921. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9922. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9923. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9924. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9925. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9926. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9927. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9928. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9929. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9930. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9931. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9932. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9933. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9934. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9935. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9936. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9937. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9938. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9939. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9940. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9941. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9942. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9943. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9944. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9945. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9946. "ref/portable-net45+win8+wp8+wpa81/_._",
  9947. "ref/win8/_._",
  9948. "ref/wp80/_._",
  9949. "ref/wpa81/_._",
  9950. "ref/xamarinios10/_._",
  9951. "ref/xamarinmac20/_._",
  9952. "ref/xamarintvos10/_._",
  9953. "ref/xamarinwatchos10/_._",
  9954. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9955. "system.xml.readerwriter.nuspec"
  9956. ]
  9957. },
  9958. "System.Xml.XDocument/4.3.0": {
  9959. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9960. "type": "package",
  9961. "path": "system.xml.xdocument/4.3.0",
  9962. "files": [
  9963. ".nupkg.metadata",
  9964. ".signature.p7s",
  9965. "ThirdPartyNotices.txt",
  9966. "dotnet_library_license.txt",
  9967. "lib/MonoAndroid10/_._",
  9968. "lib/MonoTouch10/_._",
  9969. "lib/net45/_._",
  9970. "lib/netcore50/System.Xml.XDocument.dll",
  9971. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9972. "lib/portable-net45+win8+wp8+wpa81/_._",
  9973. "lib/win8/_._",
  9974. "lib/wp80/_._",
  9975. "lib/wpa81/_._",
  9976. "lib/xamarinios10/_._",
  9977. "lib/xamarinmac20/_._",
  9978. "lib/xamarintvos10/_._",
  9979. "lib/xamarinwatchos10/_._",
  9980. "ref/MonoAndroid10/_._",
  9981. "ref/MonoTouch10/_._",
  9982. "ref/net45/_._",
  9983. "ref/netcore50/System.Xml.XDocument.dll",
  9984. "ref/netcore50/System.Xml.XDocument.xml",
  9985. "ref/netcore50/de/System.Xml.XDocument.xml",
  9986. "ref/netcore50/es/System.Xml.XDocument.xml",
  9987. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9988. "ref/netcore50/it/System.Xml.XDocument.xml",
  9989. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9990. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9991. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9992. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9993. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9994. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9995. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9996. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9997. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9998. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9999. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10000. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10001. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10002. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10003. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10004. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10005. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10006. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10007. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10008. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10009. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10010. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10011. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10012. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10013. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10014. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10015. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10016. "ref/portable-net45+win8+wp8+wpa81/_._",
  10017. "ref/win8/_._",
  10018. "ref/wp80/_._",
  10019. "ref/wpa81/_._",
  10020. "ref/xamarinios10/_._",
  10021. "ref/xamarinmac20/_._",
  10022. "ref/xamarintvos10/_._",
  10023. "ref/xamarinwatchos10/_._",
  10024. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10025. "system.xml.xdocument.nuspec"
  10026. ]
  10027. },
  10028. "System.Xml.XmlDocument/4.3.0": {
  10029. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10030. "type": "package",
  10031. "path": "system.xml.xmldocument/4.3.0",
  10032. "files": [
  10033. ".nupkg.metadata",
  10034. ".signature.p7s",
  10035. "ThirdPartyNotices.txt",
  10036. "dotnet_library_license.txt",
  10037. "lib/MonoAndroid10/_._",
  10038. "lib/MonoTouch10/_._",
  10039. "lib/net46/System.Xml.XmlDocument.dll",
  10040. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10041. "lib/xamarinios10/_._",
  10042. "lib/xamarinmac20/_._",
  10043. "lib/xamarintvos10/_._",
  10044. "lib/xamarinwatchos10/_._",
  10045. "ref/MonoAndroid10/_._",
  10046. "ref/MonoTouch10/_._",
  10047. "ref/net46/System.Xml.XmlDocument.dll",
  10048. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10049. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10050. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10051. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10052. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10053. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10054. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10055. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10056. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10057. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10058. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10059. "ref/xamarinios10/_._",
  10060. "ref/xamarinmac20/_._",
  10061. "ref/xamarintvos10/_._",
  10062. "ref/xamarinwatchos10/_._",
  10063. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10064. "system.xml.xmldocument.nuspec"
  10065. ]
  10066. },
  10067. "System.Xml.XPath/4.3.0": {
  10068. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  10069. "type": "package",
  10070. "path": "system.xml.xpath/4.3.0",
  10071. "files": [
  10072. ".nupkg.metadata",
  10073. ".signature.p7s",
  10074. "ThirdPartyNotices.txt",
  10075. "dotnet_library_license.txt",
  10076. "lib/MonoAndroid10/_._",
  10077. "lib/MonoTouch10/_._",
  10078. "lib/net46/System.Xml.XPath.dll",
  10079. "lib/netstandard1.3/System.Xml.XPath.dll",
  10080. "lib/xamarinios10/_._",
  10081. "lib/xamarinmac20/_._",
  10082. "lib/xamarintvos10/_._",
  10083. "lib/xamarinwatchos10/_._",
  10084. "ref/MonoAndroid10/_._",
  10085. "ref/MonoTouch10/_._",
  10086. "ref/net46/System.Xml.XPath.dll",
  10087. "ref/netstandard1.3/System.Xml.XPath.dll",
  10088. "ref/netstandard1.3/System.Xml.XPath.xml",
  10089. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  10090. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  10091. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  10092. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  10093. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  10094. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  10095. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  10096. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  10097. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  10098. "ref/xamarinios10/_._",
  10099. "ref/xamarinmac20/_._",
  10100. "ref/xamarintvos10/_._",
  10101. "ref/xamarinwatchos10/_._",
  10102. "system.xml.xpath.4.3.0.nupkg.sha512",
  10103. "system.xml.xpath.nuspec"
  10104. ]
  10105. },
  10106. "System.Xml.XPath.XmlDocument/4.3.0": {
  10107. "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
  10108. "type": "package",
  10109. "path": "system.xml.xpath.xmldocument/4.3.0",
  10110. "files": [
  10111. ".nupkg.metadata",
  10112. ".signature.p7s",
  10113. "ThirdPartyNotices.txt",
  10114. "dotnet_library_license.txt",
  10115. "lib/MonoAndroid10/_._",
  10116. "lib/MonoTouch10/_._",
  10117. "lib/net46/System.Xml.XPath.XmlDocument.dll",
  10118. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  10119. "lib/xamarinios10/_._",
  10120. "lib/xamarinmac20/_._",
  10121. "lib/xamarintvos10/_._",
  10122. "lib/xamarinwatchos10/_._",
  10123. "ref/MonoAndroid10/_._",
  10124. "ref/MonoTouch10/_._",
  10125. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  10126. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  10127. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  10128. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  10129. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  10130. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  10131. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  10132. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  10133. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  10134. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  10135. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  10136. "ref/xamarinios10/_._",
  10137. "ref/xamarinmac20/_._",
  10138. "ref/xamarintvos10/_._",
  10139. "ref/xamarinwatchos10/_._",
  10140. "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
  10141. "system.xml.xpath.xmldocument.nuspec"
  10142. ]
  10143. },
  10144. "Unity.Abstractions/5.11.7": {
  10145. "sha512": "3ztwGEpe35UJlCUswXoi4uVDp8bJsgPsOmO71nZnNXh51II7t54AbezDbS6sR2z4QnMOpNGDaXbsEkyg6dIfOQ==",
  10146. "type": "package",
  10147. "path": "unity.abstractions/5.11.7",
  10148. "files": [
  10149. ".nupkg.metadata",
  10150. ".signature.p7s",
  10151. "lib/net40/Unity.Abstractions.dll",
  10152. "lib/net40/Unity.Abstractions.pdb",
  10153. "lib/net45/Unity.Abstractions.dll",
  10154. "lib/net45/Unity.Abstractions.pdb",
  10155. "lib/net46/Unity.Abstractions.dll",
  10156. "lib/net46/Unity.Abstractions.pdb",
  10157. "lib/net47/Unity.Abstractions.dll",
  10158. "lib/net47/Unity.Abstractions.pdb",
  10159. "lib/net48/Unity.Abstractions.dll",
  10160. "lib/net48/Unity.Abstractions.pdb",
  10161. "lib/netcoreapp1.0/Unity.Abstractions.dll",
  10162. "lib/netcoreapp1.0/Unity.Abstractions.pdb",
  10163. "lib/netcoreapp2.0/Unity.Abstractions.dll",
  10164. "lib/netcoreapp2.0/Unity.Abstractions.pdb",
  10165. "lib/netcoreapp3.0/Unity.Abstractions.dll",
  10166. "lib/netcoreapp3.0/Unity.Abstractions.pdb",
  10167. "lib/netstandard1.0/Unity.Abstractions.dll",
  10168. "lib/netstandard1.0/Unity.Abstractions.pdb",
  10169. "lib/netstandard2.0/Unity.Abstractions.dll",
  10170. "lib/netstandard2.0/Unity.Abstractions.pdb",
  10171. "unity.abstractions.5.11.7.nupkg.sha512",
  10172. "unity.abstractions.nuspec"
  10173. ]
  10174. },
  10175. "Unity.Container/5.11.11": {
  10176. "sha512": "47u4MBG8hxV2ZBUK7LlXcZQW8yWSqUSCRG+2/TBA2CSkxkQlMfVUJ0RJODJsZgsiSgy4N0M8HIr7J88drYR/OQ==",
  10177. "type": "package",
  10178. "path": "unity.container/5.11.11",
  10179. "files": [
  10180. ".nupkg.metadata",
  10181. ".signature.p7s",
  10182. "lib/net40/Unity.Container.dll",
  10183. "lib/net40/Unity.Container.pdb",
  10184. "lib/net45/Unity.Container.dll",
  10185. "lib/net45/Unity.Container.pdb",
  10186. "lib/net46/Unity.Container.dll",
  10187. "lib/net46/Unity.Container.pdb",
  10188. "lib/net47/Unity.Container.dll",
  10189. "lib/net47/Unity.Container.pdb",
  10190. "lib/net48/Unity.Container.dll",
  10191. "lib/net48/Unity.Container.pdb",
  10192. "lib/netcoreapp1.0/Unity.Container.dll",
  10193. "lib/netcoreapp1.0/Unity.Container.pdb",
  10194. "lib/netcoreapp2.0/Unity.Container.dll",
  10195. "lib/netcoreapp2.0/Unity.Container.pdb",
  10196. "lib/netcoreapp3.0/Unity.Container.dll",
  10197. "lib/netcoreapp3.0/Unity.Container.pdb",
  10198. "lib/netstandard1.0/Unity.Container.dll",
  10199. "lib/netstandard1.0/Unity.Container.pdb",
  10200. "lib/netstandard2.0/Unity.Container.dll",
  10201. "lib/netstandard2.0/Unity.Container.pdb",
  10202. "unity.container.5.11.11.nupkg.sha512",
  10203. "unity.container.nuspec"
  10204. ]
  10205. },
  10206. "Unity.Interception/5.11.1": {
  10207. "sha512": "q2SDcnfy3q6NrYANnV0E2XFPPQ9L+k+Rk3iztJF4vH5QPOeWQ8ooX26BbACPj5DAKUkUMeAdUdiobDkcpFZjBg==",
  10208. "type": "package",
  10209. "path": "unity.interception/5.11.1",
  10210. "files": [
  10211. ".nupkg.metadata",
  10212. ".signature.p7s",
  10213. "lib/net45/Unity.Interception.dll",
  10214. "lib/net45/Unity.Interception.pdb",
  10215. "lib/net46/Unity.Interception.dll",
  10216. "lib/net46/Unity.Interception.pdb",
  10217. "lib/net47/Unity.Interception.dll",
  10218. "lib/net47/Unity.Interception.pdb",
  10219. "lib/netcoreapp2.0/Unity.Interception.dll",
  10220. "lib/netcoreapp2.0/Unity.Interception.pdb",
  10221. "lib/netstandard2.0/Unity.Interception.dll",
  10222. "lib/netstandard2.0/Unity.Interception.pdb",
  10223. "unity.interception.5.11.1.nupkg.sha512",
  10224. "unity.interception.nuspec"
  10225. ]
  10226. },
  10227. "WpfAnimatedGif/2.0.0": {
  10228. "sha512": "Z468xEqg+MSSW30BkbIcwoCQ9E0GiRQxU6L9qYCUmP28fQ79Dq4QSakWm3Dfw8CoRY3xLl3gf1xRfqILSs6/mw==",
  10229. "type": "package",
  10230. "path": "wpfanimatedgif/2.0.0",
  10231. "files": [
  10232. ".nupkg.metadata",
  10233. ".signature.p7s",
  10234. "lib/net35/WpfAnimatedGif.dll",
  10235. "lib/net35/WpfAnimatedGif.pdb",
  10236. "lib/net35/WpfAnimatedGif.xml",
  10237. "lib/net40/WpfAnimatedGif.dll",
  10238. "lib/net40/WpfAnimatedGif.pdb",
  10239. "lib/net40/WpfAnimatedGif.xml",
  10240. "lib/netcoreapp3.0/WpfAnimatedGif.dll",
  10241. "lib/netcoreapp3.0/WpfAnimatedGif.pdb",
  10242. "lib/netcoreapp3.0/WpfAnimatedGif.xml",
  10243. "wpfanimatedgif.2.0.0.nupkg.sha512",
  10244. "wpfanimatedgif.nuspec"
  10245. ]
  10246. },
  10247. "YamlDotNet/11.2.1": {
  10248. "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==",
  10249. "type": "package",
  10250. "path": "yamldotnet/11.2.1",
  10251. "files": [
  10252. ".nupkg.metadata",
  10253. ".signature.p7s",
  10254. "LICENSE.txt",
  10255. "images/yamldotnet.png",
  10256. "lib/net20/YamlDotNet.dll",
  10257. "lib/net20/YamlDotNet.xml",
  10258. "lib/net35-client/YamlDotNet.dll",
  10259. "lib/net35-client/YamlDotNet.xml",
  10260. "lib/net35/YamlDotNet.dll",
  10261. "lib/net35/YamlDotNet.xml",
  10262. "lib/net45/YamlDotNet.dll",
  10263. "lib/net45/YamlDotNet.xml",
  10264. "lib/netstandard1.3/YamlDotNet.dll",
  10265. "lib/netstandard1.3/YamlDotNet.xml",
  10266. "lib/netstandard2.1/YamlDotNet.dll",
  10267. "lib/netstandard2.1/YamlDotNet.xml",
  10268. "yamldotnet.11.2.1.nupkg.sha512",
  10269. "yamldotnet.nuspec"
  10270. ]
  10271. },
  10272. "SHJX.Service.Common/1.0.0": {
  10273. "type": "project",
  10274. "path": "../SHJX.Service.Common/SHJX.Service.Common.csproj",
  10275. "msbuildProject": "../SHJX.Service.Common/SHJX.Service.Common.csproj"
  10276. },
  10277. "SHJX.Service.Control/1.0.0": {
  10278. "type": "project",
  10279. "path": "../SHJX.Service.Control/SHJX.Service.Control.csproj",
  10280. "msbuildProject": "../SHJX.Service.Control/SHJX.Service.Control.csproj"
  10281. },
  10282. "SHJX.Service.Model/1.0.0": {
  10283. "type": "project",
  10284. "path": "../SHJX.Service.Model/SHJX.Service.Model.csproj",
  10285. "msbuildProject": "../SHJX.Service.Model/SHJX.Service.Model.csproj"
  10286. },
  10287. "SHJX.Service.PortClient/1.0.0": {
  10288. "type": "project",
  10289. "path": "../SHJX.Service.PortClient/SHJX.Service.PortClient.csproj",
  10290. "msbuildProject": "../SHJX.Service.PortClient/SHJX.Service.PortClient.csproj"
  10291. },
  10292. "SHJX.Service.Resource/1.0.0": {
  10293. "type": "project",
  10294. "path": "../SHJX.Service.Resource/SHJX.Service.Resource.csproj",
  10295. "msbuildProject": "../SHJX.Service.Resource/SHJX.Service.Resource.csproj"
  10296. },
  10297. "shjxCamera/1.0.0": {
  10298. "type": "project",
  10299. "path": "../SHJXCamera/SHJXCamera/shjxCamera.csproj",
  10300. "msbuildProject": "../SHJXCamera/SHJXCamera/shjxCamera.csproj"
  10301. }
  10302. },
  10303. "projectFileDependencyGroups": {
  10304. "net6.0-windows7.0": [
  10305. "SHJX.Service.Common >= 1.0.0",
  10306. "SHJX.Service.Control >= 1.0.0",
  10307. "SHJX.Service.Model >= 1.0.0",
  10308. "SHJX.Service.Resource >= 1.0.0"
  10309. ]
  10310. },
  10311. "packageFolders": {
  10312. "C:\\Users\\25109\\.nuget\\packages\\": {}
  10313. },
  10314. "project": {
  10315. "version": "1.0.0",
  10316. "restore": {
  10317. "projectUniqueName": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Library\\SHJX.Service.Library.csproj",
  10318. "projectName": "SHJX.Service.Library",
  10319. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Library\\SHJX.Service.Library.csproj",
  10320. "packagesPath": "C:\\Users\\25109\\.nuget\\packages\\",
  10321. "outputPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Library\\obj\\",
  10322. "projectStyle": "PackageReference",
  10323. "configFilePaths": [
  10324. "C:\\Users\\25109\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10325. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10326. ],
  10327. "originalTargetFrameworks": [
  10328. "net6.0-windows"
  10329. ],
  10330. "sources": {
  10331. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10332. "https://api.nuget.org/v3/index.json": {}
  10333. },
  10334. "frameworks": {
  10335. "net6.0-windows7.0": {
  10336. "targetAlias": "net6.0-windows",
  10337. "projectReferences": {
  10338. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj": {
  10339. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj"
  10340. },
  10341. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Control\\SHJX.Service.Control.csproj": {
  10342. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Control\\SHJX.Service.Control.csproj"
  10343. },
  10344. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Model\\SHJX.Service.Model.csproj": {
  10345. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Model\\SHJX.Service.Model.csproj"
  10346. },
  10347. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Resource\\SHJX.Service.Resource.csproj": {
  10348. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Resource\\SHJX.Service.Resource.csproj"
  10349. }
  10350. }
  10351. }
  10352. },
  10353. "warningProperties": {
  10354. "warnAsError": [
  10355. "NU1605"
  10356. ]
  10357. },
  10358. "restoreAuditProperties": {
  10359. "enableAudit": "true",
  10360. "auditLevel": "low",
  10361. "auditMode": "direct"
  10362. }
  10363. },
  10364. "frameworks": {
  10365. "net6.0-windows7.0": {
  10366. "targetAlias": "net6.0-windows",
  10367. "imports": [
  10368. "net461",
  10369. "net462",
  10370. "net47",
  10371. "net471",
  10372. "net472",
  10373. "net48",
  10374. "net481"
  10375. ],
  10376. "assetTargetFallback": true,
  10377. "warn": true,
  10378. "downloadDependencies": [
  10379. {
  10380. "name": "Microsoft.AspNetCore.App.Ref",
  10381. "version": "[6.0.27, 6.0.27]"
  10382. },
  10383. {
  10384. "name": "Microsoft.NETCore.App.Ref",
  10385. "version": "[6.0.27, 6.0.27]"
  10386. },
  10387. {
  10388. "name": "Microsoft.WindowsDesktop.App.Ref",
  10389. "version": "[6.0.27, 6.0.27]"
  10390. }
  10391. ],
  10392. "frameworkReferences": {
  10393. "Microsoft.NETCore.App": {
  10394. "privateAssets": "all"
  10395. },
  10396. "Microsoft.WindowsDesktop.App.WPF": {
  10397. "privateAssets": "none"
  10398. }
  10399. },
  10400. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300-preview.24203.14\\RuntimeIdentifierGraph.json"
  10401. }
  10402. }
  10403. },
  10404. "logs": [
  10405. {
  10406. "code": "NU1701",
  10407. "level": "Warning",
  10408. "warningLevel": 1,
  10409. "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”。此包可能与项目不完全兼容。",
  10410. "libraryId": "AForge",
  10411. "targetGraphs": [
  10412. "net6.0-windows7.0"
  10413. ]
  10414. },
  10415. {
  10416. "code": "NU1701",
  10417. "level": "Warning",
  10418. "warningLevel": 1,
  10419. "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”。此包可能与项目不完全兼容。",
  10420. "libraryId": "LiveCharts",
  10421. "targetGraphs": [
  10422. "net6.0-windows7.0"
  10423. ]
  10424. },
  10425. {
  10426. "code": "NU1701",
  10427. "level": "Warning",
  10428. "warningLevel": 1,
  10429. "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”。此包可能与项目不完全兼容。",
  10430. "libraryId": "LiveCharts.Wpf",
  10431. "targetGraphs": [
  10432. "net6.0-windows7.0"
  10433. ]
  10434. }
  10435. ]
  10436. }