project.assets.json 356 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0-windows7.0": {
  5. "AForge/2.2.5": {
  6. "type": "package",
  7. "compile": {
  8. "lib/AForge.dll": {}
  9. },
  10. "runtime": {
  11. "lib/AForge.dll": {}
  12. }
  13. },
  14. "ControlzEx/4.4.0": {
  15. "type": "package",
  16. "dependencies": {
  17. "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
  18. "System.Text.Json": "4.7.2"
  19. },
  20. "compile": {
  21. "lib/netcoreapp3.1/ControlzEx.dll": {
  22. "related": ".pdb;.xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netcoreapp3.1/ControlzEx.dll": {
  27. "related": ".pdb;.xml"
  28. }
  29. },
  30. "frameworkReferences": [
  31. "Microsoft.WindowsDesktop.App.WPF"
  32. ]
  33. },
  34. "EPPlus/5.6.4": {
  35. "type": "package",
  36. "dependencies": {
  37. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  38. "Microsoft.IO.RecyclableMemoryStream": "1.4.1",
  39. "System.ComponentModel.Annotations": "5.0.0",
  40. "System.ComponentModel.TypeConverter": "4.3.0",
  41. "System.Data.Common": "4.3.0",
  42. "System.Drawing.Common": "5.0.0",
  43. "System.Reflection": "4.3.0",
  44. "System.Security.Claims": "4.3.0",
  45. "System.Security.Cryptography.Pkcs": "5.0.0",
  46. "System.Security.Cryptography.X509Certificates": "4.3.2",
  47. "System.Text.Encoding.CodePages": "5.0.0",
  48. "System.Xml.XPath.XmlDocument": "4.3.0",
  49. "System.Xml.XmlDocument": "4.3.0"
  50. },
  51. "compile": {
  52. "lib/net5.0/EPPlus.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/net5.0/EPPlus.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "LiveCharts/0.9.7": {
  63. "type": "package",
  64. "compile": {
  65. "lib/net45/LiveCharts.dll": {
  66. "related": ".pdb;.xml"
  67. }
  68. },
  69. "runtime": {
  70. "lib/net45/LiveCharts.dll": {
  71. "related": ".pdb;.xml"
  72. }
  73. }
  74. },
  75. "LiveCharts.Wpf/0.9.7": {
  76. "type": "package",
  77. "dependencies": {
  78. "LiveCharts": "0.9.7"
  79. },
  80. "compile": {
  81. "lib/net45/LiveCharts.Wpf.dll": {
  82. "related": ".pdb;.XML"
  83. }
  84. },
  85. "runtime": {
  86. "lib/net45/LiveCharts.Wpf.dll": {
  87. "related": ".pdb;.XML"
  88. }
  89. }
  90. },
  91. "MahApps.Metro/2.4.5": {
  92. "type": "package",
  93. "dependencies": {
  94. "ControlzEx": "4.4.0"
  95. },
  96. "compile": {
  97. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  98. "related": ".pdb;.xml"
  99. }
  100. },
  101. "runtime": {
  102. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  103. "related": ".pdb;.xml"
  104. }
  105. },
  106. "frameworkReferences": [
  107. "Microsoft.WindowsDesktop.App.WPF"
  108. ],
  109. "resource": {
  110. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll": {
  111. "locale": "de"
  112. }
  113. }
  114. },
  115. "Microsoft.CSharp/4.0.1": {
  116. "type": "package",
  117. "dependencies": {
  118. "System.Collections": "4.0.11",
  119. "System.Diagnostics.Debug": "4.0.11",
  120. "System.Dynamic.Runtime": "4.0.11",
  121. "System.Globalization": "4.0.11",
  122. "System.Linq": "4.1.0",
  123. "System.Linq.Expressions": "4.1.0",
  124. "System.ObjectModel": "4.0.12",
  125. "System.Reflection": "4.1.0",
  126. "System.Reflection.Extensions": "4.0.1",
  127. "System.Reflection.Primitives": "4.0.1",
  128. "System.Reflection.TypeExtensions": "4.1.0",
  129. "System.Resources.ResourceManager": "4.0.1",
  130. "System.Runtime": "4.1.0",
  131. "System.Runtime.Extensions": "4.1.0",
  132. "System.Runtime.InteropServices": "4.1.0",
  133. "System.Threading": "4.0.11"
  134. },
  135. "compile": {
  136. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  137. "related": ".xml"
  138. }
  139. },
  140. "runtime": {
  141. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  142. }
  143. },
  144. "Microsoft.Data.Sqlite.Core/5.0.6": {
  145. "type": "package",
  146. "dependencies": {
  147. "SQLitePCLRaw.core": "2.0.4"
  148. },
  149. "compile": {
  150. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  151. "related": ".xml"
  152. }
  153. },
  154. "runtime": {
  155. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  156. "related": ".xml"
  157. }
  158. }
  159. },
  160. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  161. "type": "package",
  162. "dependencies": {
  163. "System.AppContext": "4.1.0",
  164. "System.Collections": "4.0.11",
  165. "System.IO": "4.1.0",
  166. "System.IO.FileSystem": "4.0.1",
  167. "System.Reflection.TypeExtensions": "4.1.0",
  168. "System.Runtime.Extensions": "4.1.0",
  169. "System.Runtime.InteropServices": "4.1.0",
  170. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  171. },
  172. "compile": {
  173. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  174. },
  175. "runtime": {
  176. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  177. }
  178. },
  179. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  180. "type": "package",
  181. "dependencies": {
  182. "Microsoft.Extensions.Primitives": "5.0.0"
  183. },
  184. "compile": {
  185. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  186. "related": ".xml"
  187. }
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  191. "related": ".xml"
  192. }
  193. }
  194. },
  195. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  196. "type": "package",
  197. "dependencies": {
  198. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  199. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  200. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  201. "Microsoft.Extensions.Options": "5.0.0",
  202. "Microsoft.Extensions.Primitives": "5.0.0"
  203. },
  204. "compile": {
  205. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  206. "related": ".xml"
  207. }
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  211. "related": ".xml"
  212. }
  213. }
  214. },
  215. "Microsoft.Extensions.Configuration/5.0.0": {
  216. "type": "package",
  217. "dependencies": {
  218. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  219. "Microsoft.Extensions.Primitives": "5.0.0"
  220. },
  221. "compile": {
  222. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  223. "related": ".xml"
  224. }
  225. },
  226. "runtime": {
  227. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  228. "related": ".xml"
  229. }
  230. }
  231. },
  232. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  233. "type": "package",
  234. "dependencies": {
  235. "Microsoft.Extensions.Primitives": "5.0.0"
  236. },
  237. "compile": {
  238. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  239. "related": ".xml"
  240. }
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  244. "related": ".xml"
  245. }
  246. }
  247. },
  248. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  249. "type": "package",
  250. "dependencies": {
  251. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  252. },
  253. "compile": {
  254. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  255. "related": ".xml"
  256. }
  257. },
  258. "runtime": {
  259. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  260. "related": ".xml"
  261. }
  262. }
  263. },
  264. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Configuration": "5.0.0",
  268. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  269. },
  270. "compile": {
  271. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  277. "related": ".xml"
  278. }
  279. }
  280. },
  281. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  282. "type": "package",
  283. "dependencies": {
  284. "Microsoft.Extensions.Configuration": "5.0.0",
  285. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  286. },
  287. "compile": {
  288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  289. "related": ".xml"
  290. }
  291. },
  292. "runtime": {
  293. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  294. "related": ".xml"
  295. }
  296. }
  297. },
  298. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  299. "type": "package",
  300. "dependencies": {
  301. "Microsoft.Extensions.Configuration": "5.0.0",
  302. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  303. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  304. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  305. "Microsoft.Extensions.Primitives": "5.0.0"
  306. },
  307. "compile": {
  308. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  309. "related": ".xml"
  310. }
  311. },
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  314. "related": ".xml"
  315. }
  316. }
  317. },
  318. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  319. "type": "package",
  320. "dependencies": {
  321. "Microsoft.Extensions.Configuration": "5.0.0",
  322. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  323. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  324. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  325. },
  326. "compile": {
  327. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  328. "related": ".xml"
  329. }
  330. },
  331. "runtime": {
  332. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  333. "related": ".xml"
  334. }
  335. }
  336. },
  337. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  338. "type": "package",
  339. "dependencies": {
  340. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  341. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  342. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  343. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  344. },
  345. "compile": {
  346. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  347. "related": ".xml"
  348. }
  349. },
  350. "runtime": {
  351. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  352. "related": ".xml"
  353. }
  354. },
  355. "build": {
  356. "build/netstandard2.0/_._": {}
  357. }
  358. },
  359. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  360. "type": "package",
  361. "dependencies": {
  362. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  363. },
  364. "compile": {
  365. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  366. "related": ".xml"
  367. }
  368. },
  369. "runtime": {
  370. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  371. "related": ".xml"
  372. }
  373. },
  374. "build": {
  375. "buildTransitive/net6.0/_._": {}
  376. }
  377. },
  378. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  379. "type": "package",
  380. "compile": {
  381. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  382. "related": ".xml"
  383. }
  384. },
  385. "runtime": {
  386. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  387. "related": ".xml"
  388. }
  389. },
  390. "build": {
  391. "buildTransitive/net6.0/_._": {}
  392. }
  393. },
  394. "Microsoft.Extensions.DependencyModel/2.0.4": {
  395. "type": "package",
  396. "dependencies": {
  397. "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
  398. "Newtonsoft.Json": "9.0.1",
  399. "System.Diagnostics.Debug": "4.0.11",
  400. "System.Dynamic.Runtime": "4.0.11",
  401. "System.Linq": "4.1.0"
  402. },
  403. "compile": {
  404. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  405. },
  406. "runtime": {
  407. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  408. }
  409. },
  410. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  411. "type": "package",
  412. "dependencies": {
  413. "Microsoft.Extensions.Primitives": "5.0.0"
  414. },
  415. "compile": {
  416. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  417. "related": ".xml"
  418. }
  419. },
  420. "runtime": {
  421. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  422. "related": ".xml"
  423. }
  424. }
  425. },
  426. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  427. "type": "package",
  428. "dependencies": {
  429. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  430. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  431. "Microsoft.Extensions.Primitives": "5.0.0"
  432. },
  433. "compile": {
  434. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  435. "related": ".xml"
  436. }
  437. },
  438. "runtime": {
  439. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  440. "related": ".xml"
  441. }
  442. }
  443. },
  444. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  445. "type": "package",
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  453. "related": ".xml"
  454. }
  455. }
  456. },
  457. "Microsoft.Extensions.Hosting/5.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.Extensions.Configuration": "5.0.0",
  461. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  462. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  463. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  464. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  465. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  466. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  467. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  468. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  469. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  470. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  471. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  472. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  473. "Microsoft.Extensions.Logging": "5.0.0",
  474. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  475. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  476. "Microsoft.Extensions.Logging.Console": "5.0.0",
  477. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  478. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  479. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  480. "Microsoft.Extensions.Options": "5.0.0"
  481. },
  482. "compile": {
  483. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "runtime": {
  488. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  489. "related": ".xml"
  490. }
  491. }
  492. },
  493. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  494. "type": "package",
  495. "dependencies": {
  496. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  497. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  498. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  499. },
  500. "compile": {
  501. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  502. "related": ".xml"
  503. }
  504. },
  505. "runtime": {
  506. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  507. "related": ".xml"
  508. }
  509. }
  510. },
  511. "Microsoft.Extensions.Logging/7.0.0": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  515. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  516. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  517. "Microsoft.Extensions.Options": "7.0.0"
  518. },
  519. "compile": {
  520. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "runtime": {
  525. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "build": {
  530. "buildTransitive/net6.0/_._": {}
  531. }
  532. },
  533. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  534. "type": "package",
  535. "compile": {
  536. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  542. "related": ".xml"
  543. }
  544. },
  545. "build": {
  546. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  547. }
  548. },
  549. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  550. "type": "package",
  551. "dependencies": {
  552. "Microsoft.Extensions.Configuration": "5.0.0",
  553. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  554. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  555. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  556. "Microsoft.Extensions.Logging": "5.0.0",
  557. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  558. "Microsoft.Extensions.Options": "5.0.0",
  559. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  560. },
  561. "compile": {
  562. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "runtime": {
  567. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  568. "related": ".xml"
  569. }
  570. }
  571. },
  572. "Microsoft.Extensions.Logging.Console/5.0.0": {
  573. "type": "package",
  574. "dependencies": {
  575. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  576. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  577. "Microsoft.Extensions.Logging": "5.0.0",
  578. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  579. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  580. "Microsoft.Extensions.Options": "5.0.0",
  581. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  582. },
  583. "compile": {
  584. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "runtime": {
  589. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  590. "related": ".xml"
  591. }
  592. }
  593. },
  594. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  595. "type": "package",
  596. "dependencies": {
  597. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  598. "Microsoft.Extensions.Logging": "5.0.0",
  599. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  600. },
  601. "compile": {
  602. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  603. "related": ".xml"
  604. }
  605. },
  606. "runtime": {
  607. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  608. "related": ".xml"
  609. }
  610. }
  611. },
  612. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  616. "Microsoft.Extensions.Logging": "5.0.0",
  617. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  618. "Microsoft.Extensions.Options": "5.0.0",
  619. "System.Diagnostics.EventLog": "5.0.0"
  620. },
  621. "compile": {
  622. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  623. "related": ".xml"
  624. }
  625. },
  626. "runtime": {
  627. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  628. "related": ".xml"
  629. }
  630. }
  631. },
  632. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  633. "type": "package",
  634. "dependencies": {
  635. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  636. "Microsoft.Extensions.Logging": "5.0.0",
  637. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  638. "Microsoft.Extensions.Options": "5.0.0",
  639. "Microsoft.Extensions.Primitives": "5.0.0"
  640. },
  641. "compile": {
  642. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  643. "related": ".xml"
  644. }
  645. },
  646. "runtime": {
  647. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  648. "related": ".xml"
  649. }
  650. }
  651. },
  652. "Microsoft.Extensions.Options/7.0.0": {
  653. "type": "package",
  654. "dependencies": {
  655. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  656. "Microsoft.Extensions.Primitives": "7.0.0"
  657. },
  658. "compile": {
  659. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  660. "related": ".xml"
  661. }
  662. },
  663. "runtime": {
  664. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  665. "related": ".xml"
  666. }
  667. },
  668. "build": {
  669. "buildTransitive/net6.0/_._": {}
  670. }
  671. },
  672. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  673. "type": "package",
  674. "dependencies": {
  675. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  676. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  677. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  678. "Microsoft.Extensions.Options": "5.0.0",
  679. "Microsoft.Extensions.Primitives": "5.0.0"
  680. },
  681. "compile": {
  682. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  683. "related": ".xml"
  684. }
  685. },
  686. "runtime": {
  687. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  688. "related": ".xml"
  689. }
  690. }
  691. },
  692. "Microsoft.Extensions.Primitives/7.0.0": {
  693. "type": "package",
  694. "dependencies": {
  695. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  696. },
  697. "compile": {
  698. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  699. "related": ".xml"
  700. }
  701. },
  702. "runtime": {
  703. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  704. "related": ".xml"
  705. }
  706. },
  707. "build": {
  708. "buildTransitive/net6.0/_._": {}
  709. }
  710. },
  711. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  712. "type": "package",
  713. "compile": {
  714. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  715. "related": ".xml"
  716. }
  717. },
  718. "runtime": {
  719. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  720. "related": ".xml"
  721. }
  722. }
  723. },
  724. "Microsoft.NETCore.Platforms/5.0.0": {
  725. "type": "package",
  726. "compile": {
  727. "lib/netstandard1.0/_._": {}
  728. },
  729. "runtime": {
  730. "lib/netstandard1.0/_._": {}
  731. }
  732. },
  733. "Microsoft.NETCore.Targets/1.1.0": {
  734. "type": "package",
  735. "compile": {
  736. "lib/netstandard1.0/_._": {}
  737. },
  738. "runtime": {
  739. "lib/netstandard1.0/_._": {}
  740. }
  741. },
  742. "Microsoft.Win32.Registry/5.0.0": {
  743. "type": "package",
  744. "dependencies": {
  745. "System.Security.AccessControl": "5.0.0",
  746. "System.Security.Principal.Windows": "5.0.0"
  747. },
  748. "compile": {
  749. "ref/netstandard2.0/_._": {
  750. "related": ".xml"
  751. }
  752. },
  753. "runtime": {
  754. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  755. "related": ".xml"
  756. }
  757. },
  758. "runtimeTargets": {
  759. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  760. "assetType": "runtime",
  761. "rid": "win"
  762. }
  763. }
  764. },
  765. "Microsoft.Win32.SystemEvents/7.0.0": {
  766. "type": "package",
  767. "compile": {
  768. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "runtime": {
  773. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  774. "related": ".xml"
  775. }
  776. },
  777. "build": {
  778. "buildTransitive/net6.0/_._": {}
  779. },
  780. "runtimeTargets": {
  781. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  782. "assetType": "runtime",
  783. "rid": "win"
  784. }
  785. }
  786. },
  787. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  788. "type": "package",
  789. "compile": {
  790. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  791. "related": ".pdb;.xml"
  792. }
  793. },
  794. "runtime": {
  795. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  796. "related": ".pdb;.xml"
  797. }
  798. },
  799. "frameworkReferences": [
  800. "Microsoft.WindowsDesktop.App.WPF"
  801. ]
  802. },
  803. "Newtonsoft.Json/9.0.1": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.CSharp": "4.0.1",
  807. "System.Collections": "4.0.11",
  808. "System.Diagnostics.Debug": "4.0.11",
  809. "System.Dynamic.Runtime": "4.0.11",
  810. "System.Globalization": "4.0.11",
  811. "System.IO": "4.1.0",
  812. "System.Linq": "4.1.0",
  813. "System.Linq.Expressions": "4.1.0",
  814. "System.ObjectModel": "4.0.12",
  815. "System.Reflection": "4.1.0",
  816. "System.Reflection.Extensions": "4.0.1",
  817. "System.Resources.ResourceManager": "4.0.1",
  818. "System.Runtime": "4.1.0",
  819. "System.Runtime.Extensions": "4.1.0",
  820. "System.Runtime.Serialization.Primitives": "4.1.1",
  821. "System.Text.Encoding": "4.0.11",
  822. "System.Text.Encoding.Extensions": "4.0.11",
  823. "System.Text.RegularExpressions": "4.1.0",
  824. "System.Threading": "4.0.11",
  825. "System.Threading.Tasks": "4.0.11",
  826. "System.Xml.ReaderWriter": "4.0.11",
  827. "System.Xml.XDocument": "4.0.11"
  828. },
  829. "compile": {
  830. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  831. "related": ".xml"
  832. }
  833. },
  834. "runtime": {
  835. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  836. "related": ".xml"
  837. }
  838. }
  839. },
  840. "NModbus4.NetCore/2.0.1": {
  841. "type": "package",
  842. "dependencies": {
  843. "System.IO.Ports": "6.0.0"
  844. },
  845. "compile": {
  846. "lib/net6.0/Modbus.dll": {}
  847. },
  848. "runtime": {
  849. "lib/net6.0/Modbus.dll": {}
  850. }
  851. },
  852. "Panuon.UI.Silver/1.1.3.4": {
  853. "type": "package",
  854. "dependencies": {
  855. "System.Drawing.Common": "5.0.0"
  856. },
  857. "compile": {
  858. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  859. },
  860. "runtime": {
  861. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  862. },
  863. "frameworkReferences": [
  864. "Microsoft.WindowsDesktop.App.WPF"
  865. ]
  866. },
  867. "Prism.Core/8.1.97": {
  868. "type": "package",
  869. "compile": {
  870. "lib/net5.0/Prism.dll": {
  871. "related": ".pdb;.xml"
  872. }
  873. },
  874. "runtime": {
  875. "lib/net5.0/Prism.dll": {
  876. "related": ".pdb;.xml"
  877. }
  878. }
  879. },
  880. "Prism.Unity/8.1.97": {
  881. "type": "package",
  882. "dependencies": {
  883. "Prism.Wpf": "8.1.97",
  884. "Unity.Container": "5.11.11"
  885. },
  886. "compile": {
  887. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  888. "related": ".pdb;.xml"
  889. }
  890. },
  891. "runtime": {
  892. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  893. "related": ".pdb;.xml"
  894. }
  895. },
  896. "frameworkReferences": [
  897. "Microsoft.WindowsDesktop.App.WPF"
  898. ]
  899. },
  900. "Prism.Wpf/8.1.97": {
  901. "type": "package",
  902. "dependencies": {
  903. "Microsoft.Xaml.Behaviors.Wpf": "1.1.31",
  904. "Prism.Core": "8.1.97"
  905. },
  906. "compile": {
  907. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  908. "related": ".pdb;.xml"
  909. }
  910. },
  911. "runtime": {
  912. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  913. "related": ".pdb;.xml"
  914. }
  915. },
  916. "frameworkReferences": [
  917. "Microsoft.WindowsDesktop.App.WPF"
  918. ]
  919. },
  920. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  921. "type": "package",
  922. "runtimeTargets": {
  923. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  924. "assetType": "native",
  925. "rid": "debian.8-x64"
  926. }
  927. }
  928. },
  929. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  930. "type": "package",
  931. "runtimeTargets": {
  932. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  933. "assetType": "native",
  934. "rid": "fedora.23-x64"
  935. }
  936. }
  937. },
  938. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  939. "type": "package",
  940. "runtimeTargets": {
  941. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  942. "assetType": "native",
  943. "rid": "fedora.24-x64"
  944. }
  945. }
  946. },
  947. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  948. "type": "package",
  949. "runtimeTargets": {
  950. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": {
  951. "assetType": "native",
  952. "rid": "linux-arm"
  953. }
  954. }
  955. },
  956. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  957. "type": "package",
  958. "runtimeTargets": {
  959. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": {
  960. "assetType": "native",
  961. "rid": "linux-arm64"
  962. }
  963. }
  964. },
  965. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  966. "type": "package",
  967. "runtimeTargets": {
  968. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {
  969. "assetType": "native",
  970. "rid": "linux-x64"
  971. }
  972. }
  973. },
  974. "runtime.native.System/4.3.0": {
  975. "type": "package",
  976. "dependencies": {
  977. "Microsoft.NETCore.Platforms": "1.1.0",
  978. "Microsoft.NETCore.Targets": "1.1.0"
  979. },
  980. "compile": {
  981. "lib/netstandard1.0/_._": {}
  982. },
  983. "runtime": {
  984. "lib/netstandard1.0/_._": {}
  985. }
  986. },
  987. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  988. "type": "package",
  989. "dependencies": {
  990. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  991. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  992. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  993. }
  994. },
  995. "runtime.native.System.IO.Ports/6.0.0": {
  996. "type": "package",
  997. "dependencies": {
  998. "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
  999. "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1000. "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
  1001. "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1002. "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
  1003. }
  1004. },
  1005. "runtime.native.System.Net.Http/4.3.0": {
  1006. "type": "package",
  1007. "dependencies": {
  1008. "Microsoft.NETCore.Platforms": "1.1.0",
  1009. "Microsoft.NETCore.Targets": "1.1.0"
  1010. },
  1011. "compile": {
  1012. "lib/netstandard1.0/_._": {}
  1013. },
  1014. "runtime": {
  1015. "lib/netstandard1.0/_._": {}
  1016. }
  1017. },
  1018. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1022. },
  1023. "compile": {
  1024. "lib/netstandard1.0/_._": {}
  1025. },
  1026. "runtime": {
  1027. "lib/netstandard1.0/_._": {}
  1028. }
  1029. },
  1030. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1034. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1035. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1036. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1037. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1038. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1039. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1040. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1041. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1042. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1043. },
  1044. "compile": {
  1045. "lib/netstandard1.0/_._": {}
  1046. },
  1047. "runtime": {
  1048. "lib/netstandard1.0/_._": {}
  1049. }
  1050. },
  1051. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1052. "type": "package",
  1053. "runtimeTargets": {
  1054. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1055. "assetType": "native",
  1056. "rid": "opensuse.13.2-x64"
  1057. }
  1058. }
  1059. },
  1060. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1061. "type": "package",
  1062. "runtimeTargets": {
  1063. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1064. "assetType": "native",
  1065. "rid": "opensuse.42.1-x64"
  1066. }
  1067. }
  1068. },
  1069. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  1070. "type": "package",
  1071. "runtimeTargets": {
  1072. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": {
  1073. "assetType": "native",
  1074. "rid": "osx-arm64"
  1075. }
  1076. }
  1077. },
  1078. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  1079. "type": "package",
  1080. "runtimeTargets": {
  1081. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": {
  1082. "assetType": "native",
  1083. "rid": "osx-x64"
  1084. }
  1085. }
  1086. },
  1087. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1088. "type": "package",
  1089. "runtimeTargets": {
  1090. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1091. "assetType": "native",
  1092. "rid": "osx.10.10-x64"
  1093. }
  1094. }
  1095. },
  1096. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1097. "type": "package",
  1098. "runtimeTargets": {
  1099. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1100. "assetType": "native",
  1101. "rid": "osx.10.10-x64"
  1102. }
  1103. }
  1104. },
  1105. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1106. "type": "package",
  1107. "runtimeTargets": {
  1108. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1109. "assetType": "native",
  1110. "rid": "rhel.7-x64"
  1111. }
  1112. }
  1113. },
  1114. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1115. "type": "package",
  1116. "runtimeTargets": {
  1117. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1118. "assetType": "native",
  1119. "rid": "ubuntu.14.04-x64"
  1120. }
  1121. }
  1122. },
  1123. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1124. "type": "package",
  1125. "runtimeTargets": {
  1126. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1127. "assetType": "native",
  1128. "rid": "ubuntu.16.04-x64"
  1129. }
  1130. }
  1131. },
  1132. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1133. "type": "package",
  1134. "runtimeTargets": {
  1135. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1136. "assetType": "native",
  1137. "rid": "ubuntu.16.10-x64"
  1138. }
  1139. }
  1140. },
  1141. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1142. "type": "package",
  1143. "runtimeTargets": {
  1144. "runtimes/win-arm64/native/sni.dll": {
  1145. "assetType": "native",
  1146. "rid": "win-arm64"
  1147. }
  1148. }
  1149. },
  1150. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1151. "type": "package",
  1152. "runtimeTargets": {
  1153. "runtimes/win-x64/native/sni.dll": {
  1154. "assetType": "native",
  1155. "rid": "win-x64"
  1156. }
  1157. }
  1158. },
  1159. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1160. "type": "package",
  1161. "runtimeTargets": {
  1162. "runtimes/win-x86/native/sni.dll": {
  1163. "assetType": "native",
  1164. "rid": "win-x86"
  1165. }
  1166. }
  1167. },
  1168. "Serilog/2.10.0": {
  1169. "type": "package",
  1170. "compile": {
  1171. "lib/netstandard2.1/Serilog.dll": {
  1172. "related": ".xml"
  1173. }
  1174. },
  1175. "runtime": {
  1176. "lib/netstandard2.1/Serilog.dll": {
  1177. "related": ".xml"
  1178. }
  1179. }
  1180. },
  1181. "Serilog.Enrichers.Thread/3.1.0": {
  1182. "type": "package",
  1183. "dependencies": {
  1184. "Serilog": "2.3.0"
  1185. },
  1186. "compile": {
  1187. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1188. "related": ".xml"
  1189. }
  1190. },
  1191. "runtime": {
  1192. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1193. "related": ".xml"
  1194. }
  1195. }
  1196. },
  1197. "Serilog.Extensions.Logging/3.0.1": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "Microsoft.Extensions.Logging": "2.0.0",
  1201. "Serilog": "2.8.0"
  1202. },
  1203. "compile": {
  1204. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "runtime": {
  1209. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1210. "related": ".xml"
  1211. }
  1212. }
  1213. },
  1214. "Serilog.Formatting.Compact/1.1.0": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "Serilog": "2.8.0"
  1218. },
  1219. "compile": {
  1220. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1221. "related": ".xml"
  1222. }
  1223. },
  1224. "runtime": {
  1225. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1226. "related": ".xml"
  1227. }
  1228. }
  1229. },
  1230. "Serilog.Settings.Configuration/3.1.0": {
  1231. "type": "package",
  1232. "dependencies": {
  1233. "Microsoft.Extensions.DependencyModel": "2.0.4",
  1234. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1235. "Serilog": "2.6.0"
  1236. },
  1237. "compile": {
  1238. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1239. "related": ".xml"
  1240. }
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1244. "related": ".xml"
  1245. }
  1246. }
  1247. },
  1248. "Serilog.Sinks.Console/3.1.1": {
  1249. "type": "package",
  1250. "dependencies": {
  1251. "Serilog": "2.5.0",
  1252. "System.Console": "4.3.0",
  1253. "System.Runtime.InteropServices": "4.3.0",
  1254. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1255. },
  1256. "compile": {
  1257. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1258. "related": ".xml"
  1259. }
  1260. },
  1261. "runtime": {
  1262. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1263. "related": ".xml"
  1264. }
  1265. }
  1266. },
  1267. "Serilog.Sinks.File/4.1.0": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "Serilog": "2.5.0",
  1271. "System.IO.FileSystem": "4.0.1",
  1272. "System.Text.Encoding.Extensions": "4.0.11",
  1273. "System.Threading.Timer": "4.0.1"
  1274. },
  1275. "compile": {
  1276. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1277. "related": ".pdb;.xml"
  1278. }
  1279. },
  1280. "runtime": {
  1281. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1282. "related": ".pdb;.xml"
  1283. }
  1284. }
  1285. },
  1286. "SQLitePCLRaw.core/2.0.4": {
  1287. "type": "package",
  1288. "dependencies": {
  1289. "System.Memory": "4.5.3"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1296. }
  1297. },
  1298. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  1299. "type": "package",
  1300. "compile": {
  1301. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1302. "related": ".dll.altconfig;.xml"
  1303. }
  1304. },
  1305. "runtime": {
  1306. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1307. "related": ".dll.altconfig;.xml"
  1308. }
  1309. },
  1310. "runtimeTargets": {
  1311. "runtimes/linux-x64/native/SQLite.Interop.dll": {
  1312. "assetType": "native",
  1313. "rid": "linux-x64"
  1314. },
  1315. "runtimes/osx-x64/native/SQLite.Interop.dll": {
  1316. "assetType": "native",
  1317. "rid": "osx-x64"
  1318. },
  1319. "runtimes/win-x64/native/SQLite.Interop.dll": {
  1320. "assetType": "native",
  1321. "rid": "win-x64"
  1322. },
  1323. "runtimes/win-x86/native/SQLite.Interop.dll": {
  1324. "assetType": "native",
  1325. "rid": "win-x86"
  1326. }
  1327. }
  1328. },
  1329. "System.AppContext/4.1.0": {
  1330. "type": "package",
  1331. "dependencies": {
  1332. "System.Runtime": "4.1.0"
  1333. },
  1334. "compile": {
  1335. "ref/netstandard1.6/System.AppContext.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/netstandard1.6/System.AppContext.dll": {}
  1341. }
  1342. },
  1343. "System.Collections/4.3.0": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.1.0",
  1347. "Microsoft.NETCore.Targets": "1.1.0",
  1348. "System.Runtime": "4.3.0"
  1349. },
  1350. "compile": {
  1351. "ref/netstandard1.3/System.Collections.dll": {
  1352. "related": ".xml"
  1353. }
  1354. }
  1355. },
  1356. "System.Collections.Concurrent/4.3.0": {
  1357. "type": "package",
  1358. "dependencies": {
  1359. "System.Collections": "4.3.0",
  1360. "System.Diagnostics.Debug": "4.3.0",
  1361. "System.Diagnostics.Tracing": "4.3.0",
  1362. "System.Globalization": "4.3.0",
  1363. "System.Reflection": "4.3.0",
  1364. "System.Resources.ResourceManager": "4.3.0",
  1365. "System.Runtime": "4.3.0",
  1366. "System.Runtime.Extensions": "4.3.0",
  1367. "System.Threading": "4.3.0",
  1368. "System.Threading.Tasks": "4.3.0"
  1369. },
  1370. "compile": {
  1371. "ref/netstandard1.3/_._": {
  1372. "related": ".xml"
  1373. }
  1374. },
  1375. "runtime": {
  1376. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1377. }
  1378. },
  1379. "System.Collections.NonGeneric/4.3.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "System.Diagnostics.Debug": "4.3.0",
  1383. "System.Globalization": "4.3.0",
  1384. "System.Resources.ResourceManager": "4.3.0",
  1385. "System.Runtime": "4.3.0",
  1386. "System.Runtime.Extensions": "4.3.0",
  1387. "System.Threading": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1391. "related": ".xml"
  1392. }
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1396. }
  1397. },
  1398. "System.Collections.Specialized/4.3.0": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "System.Collections.NonGeneric": "4.3.0",
  1402. "System.Globalization": "4.3.0",
  1403. "System.Globalization.Extensions": "4.3.0",
  1404. "System.Resources.ResourceManager": "4.3.0",
  1405. "System.Runtime": "4.3.0",
  1406. "System.Runtime.Extensions": "4.3.0",
  1407. "System.Threading": "4.3.0"
  1408. },
  1409. "compile": {
  1410. "ref/netstandard1.3/_._": {
  1411. "related": ".xml"
  1412. }
  1413. },
  1414. "runtime": {
  1415. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1416. }
  1417. },
  1418. "System.ComponentModel/4.3.0": {
  1419. "type": "package",
  1420. "dependencies": {
  1421. "System.Runtime": "4.3.0"
  1422. },
  1423. "compile": {
  1424. "ref/netstandard1.0/System.ComponentModel.dll": {
  1425. "related": ".xml"
  1426. }
  1427. },
  1428. "runtime": {
  1429. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1430. }
  1431. },
  1432. "System.ComponentModel.Annotations/5.0.0": {
  1433. "type": "package",
  1434. "compile": {
  1435. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1436. "related": ".xml"
  1437. }
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1441. "related": ".xml"
  1442. }
  1443. }
  1444. },
  1445. "System.ComponentModel.Primitives/4.3.0": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "System.ComponentModel": "4.3.0",
  1449. "System.Resources.ResourceManager": "4.3.0",
  1450. "System.Runtime": "4.3.0"
  1451. },
  1452. "compile": {
  1453. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1454. "related": ".xml"
  1455. }
  1456. },
  1457. "runtime": {
  1458. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1459. }
  1460. },
  1461. "System.ComponentModel.TypeConverter/4.3.0": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "System.Collections": "4.3.0",
  1465. "System.Collections.NonGeneric": "4.3.0",
  1466. "System.Collections.Specialized": "4.3.0",
  1467. "System.ComponentModel": "4.3.0",
  1468. "System.ComponentModel.Primitives": "4.3.0",
  1469. "System.Globalization": "4.3.0",
  1470. "System.Linq": "4.3.0",
  1471. "System.Reflection": "4.3.0",
  1472. "System.Reflection.Extensions": "4.3.0",
  1473. "System.Reflection.Primitives": "4.3.0",
  1474. "System.Reflection.TypeExtensions": "4.3.0",
  1475. "System.Resources.ResourceManager": "4.3.0",
  1476. "System.Runtime": "4.3.0",
  1477. "System.Runtime.Extensions": "4.3.0",
  1478. "System.Threading": "4.3.0"
  1479. },
  1480. "compile": {
  1481. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1482. "related": ".xml"
  1483. }
  1484. },
  1485. "runtime": {
  1486. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1487. }
  1488. },
  1489. "System.Console/4.3.0": {
  1490. "type": "package",
  1491. "dependencies": {
  1492. "Microsoft.NETCore.Platforms": "1.1.0",
  1493. "Microsoft.NETCore.Targets": "1.1.0",
  1494. "System.IO": "4.3.0",
  1495. "System.Runtime": "4.3.0",
  1496. "System.Text.Encoding": "4.3.0"
  1497. },
  1498. "compile": {
  1499. "ref/netstandard1.3/System.Console.dll": {
  1500. "related": ".xml"
  1501. }
  1502. }
  1503. },
  1504. "System.Data.Common/4.3.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "System.Collections": "4.3.0",
  1508. "System.Globalization": "4.3.0",
  1509. "System.IO": "4.3.0",
  1510. "System.Resources.ResourceManager": "4.3.0",
  1511. "System.Runtime": "4.3.0",
  1512. "System.Runtime.Extensions": "4.3.0",
  1513. "System.Text.RegularExpressions": "4.3.0",
  1514. "System.Threading.Tasks": "4.3.0"
  1515. },
  1516. "compile": {
  1517. "ref/netstandard1.2/System.Data.Common.dll": {
  1518. "related": ".xml"
  1519. }
  1520. },
  1521. "runtime": {
  1522. "lib/netstandard1.2/System.Data.Common.dll": {}
  1523. }
  1524. },
  1525. "System.Data.SqlClient/4.8.2": {
  1526. "type": "package",
  1527. "dependencies": {
  1528. "Microsoft.Win32.Registry": "4.7.0",
  1529. "System.Security.Principal.Windows": "4.7.0",
  1530. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1531. },
  1532. "compile": {
  1533. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  1534. "related": ".xml"
  1535. }
  1536. },
  1537. "runtime": {
  1538. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1539. "related": ".xml"
  1540. }
  1541. },
  1542. "runtimeTargets": {
  1543. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1544. "assetType": "runtime",
  1545. "rid": "unix"
  1546. },
  1547. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1548. "assetType": "runtime",
  1549. "rid": "win"
  1550. }
  1551. }
  1552. },
  1553. "System.Data.SQLite.Core/1.0.114": {
  1554. "type": "package",
  1555. "dependencies": {
  1556. "Stub.System.Data.SQLite.Core.NetStandard": "1.0.114"
  1557. }
  1558. },
  1559. "System.Diagnostics.Debug/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "Microsoft.NETCore.Platforms": "1.1.0",
  1563. "Microsoft.NETCore.Targets": "1.1.0",
  1564. "System.Runtime": "4.3.0"
  1565. },
  1566. "compile": {
  1567. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1568. "related": ".xml"
  1569. }
  1570. }
  1571. },
  1572. "System.Diagnostics.DiagnosticSource/7.0.2": {
  1573. "type": "package",
  1574. "dependencies": {
  1575. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1576. },
  1577. "compile": {
  1578. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1579. "related": ".xml"
  1580. }
  1581. },
  1582. "runtime": {
  1583. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1584. "related": ".xml"
  1585. }
  1586. },
  1587. "build": {
  1588. "buildTransitive/net6.0/_._": {}
  1589. }
  1590. },
  1591. "System.Diagnostics.EventLog/5.0.0": {
  1592. "type": "package",
  1593. "dependencies": {
  1594. "Microsoft.NETCore.Platforms": "5.0.0",
  1595. "Microsoft.Win32.Registry": "5.0.0",
  1596. "System.Security.Principal.Windows": "5.0.0"
  1597. },
  1598. "compile": {
  1599. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1600. "related": ".xml"
  1601. }
  1602. },
  1603. "runtime": {
  1604. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1605. "related": ".xml"
  1606. }
  1607. },
  1608. "runtimeTargets": {
  1609. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  1610. "assetType": "runtime",
  1611. "rid": "win"
  1612. }
  1613. }
  1614. },
  1615. "System.Diagnostics.Tools/4.0.1": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.NETCore.Platforms": "1.0.1",
  1619. "Microsoft.NETCore.Targets": "1.0.1",
  1620. "System.Runtime": "4.1.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.0/_._": {
  1624. "related": ".xml"
  1625. }
  1626. }
  1627. },
  1628. "System.Diagnostics.Tracing/4.3.0": {
  1629. "type": "package",
  1630. "dependencies": {
  1631. "Microsoft.NETCore.Platforms": "1.1.0",
  1632. "Microsoft.NETCore.Targets": "1.1.0",
  1633. "System.Runtime": "4.3.0"
  1634. },
  1635. "compile": {
  1636. "ref/netstandard1.5/_._": {
  1637. "related": ".xml"
  1638. }
  1639. }
  1640. },
  1641. "System.Drawing.Common/7.0.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.Win32.SystemEvents": "7.0.0"
  1645. },
  1646. "compile": {
  1647. "lib/net6.0/System.Drawing.Common.dll": {
  1648. "related": ".xml"
  1649. }
  1650. },
  1651. "runtime": {
  1652. "lib/net6.0/System.Drawing.Common.dll": {
  1653. "related": ".xml"
  1654. }
  1655. },
  1656. "build": {
  1657. "buildTransitive/net6.0/_._": {}
  1658. },
  1659. "runtimeTargets": {
  1660. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1661. "assetType": "runtime",
  1662. "rid": "win"
  1663. }
  1664. }
  1665. },
  1666. "System.Dynamic.Runtime/4.0.11": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "System.Collections": "4.0.11",
  1670. "System.Diagnostics.Debug": "4.0.11",
  1671. "System.Globalization": "4.0.11",
  1672. "System.Linq": "4.1.0",
  1673. "System.Linq.Expressions": "4.1.0",
  1674. "System.ObjectModel": "4.0.12",
  1675. "System.Reflection": "4.1.0",
  1676. "System.Reflection.Emit": "4.0.1",
  1677. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1678. "System.Reflection.Primitives": "4.0.1",
  1679. "System.Reflection.TypeExtensions": "4.1.0",
  1680. "System.Resources.ResourceManager": "4.0.1",
  1681. "System.Runtime": "4.1.0",
  1682. "System.Runtime.Extensions": "4.1.0",
  1683. "System.Threading": "4.0.11"
  1684. },
  1685. "compile": {
  1686. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1687. "related": ".xml"
  1688. }
  1689. },
  1690. "runtime": {
  1691. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1692. }
  1693. },
  1694. "System.Formats.Asn1/5.0.0": {
  1695. "type": "package",
  1696. "compile": {
  1697. "lib/netstandard2.0/_._": {
  1698. "related": ".xml"
  1699. }
  1700. },
  1701. "runtime": {
  1702. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1703. "related": ".xml"
  1704. }
  1705. }
  1706. },
  1707. "System.Globalization/4.3.0": {
  1708. "type": "package",
  1709. "dependencies": {
  1710. "Microsoft.NETCore.Platforms": "1.1.0",
  1711. "Microsoft.NETCore.Targets": "1.1.0",
  1712. "System.Runtime": "4.3.0"
  1713. },
  1714. "compile": {
  1715. "ref/netstandard1.3/System.Globalization.dll": {
  1716. "related": ".xml"
  1717. }
  1718. }
  1719. },
  1720. "System.Globalization.Calendars/4.3.0": {
  1721. "type": "package",
  1722. "dependencies": {
  1723. "Microsoft.NETCore.Platforms": "1.1.0",
  1724. "Microsoft.NETCore.Targets": "1.1.0",
  1725. "System.Globalization": "4.3.0",
  1726. "System.Runtime": "4.3.0"
  1727. },
  1728. "compile": {
  1729. "ref/netstandard1.3/_._": {
  1730. "related": ".xml"
  1731. }
  1732. }
  1733. },
  1734. "System.Globalization.Extensions/4.3.0": {
  1735. "type": "package",
  1736. "dependencies": {
  1737. "Microsoft.NETCore.Platforms": "1.1.0",
  1738. "System.Globalization": "4.3.0",
  1739. "System.Resources.ResourceManager": "4.3.0",
  1740. "System.Runtime": "4.3.0",
  1741. "System.Runtime.Extensions": "4.3.0",
  1742. "System.Runtime.InteropServices": "4.3.0"
  1743. },
  1744. "compile": {
  1745. "ref/netstandard1.3/_._": {
  1746. "related": ".xml"
  1747. }
  1748. },
  1749. "runtimeTargets": {
  1750. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1751. "assetType": "runtime",
  1752. "rid": "unix"
  1753. },
  1754. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1755. "assetType": "runtime",
  1756. "rid": "win"
  1757. }
  1758. }
  1759. },
  1760. "System.IO/4.3.0": {
  1761. "type": "package",
  1762. "dependencies": {
  1763. "Microsoft.NETCore.Platforms": "1.1.0",
  1764. "Microsoft.NETCore.Targets": "1.1.0",
  1765. "System.Runtime": "4.3.0",
  1766. "System.Text.Encoding": "4.3.0",
  1767. "System.Threading.Tasks": "4.3.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.5/System.IO.dll": {
  1771. "related": ".xml"
  1772. }
  1773. }
  1774. },
  1775. "System.IO.FileSystem/4.3.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "Microsoft.NETCore.Platforms": "1.1.0",
  1779. "Microsoft.NETCore.Targets": "1.1.0",
  1780. "System.IO": "4.3.0",
  1781. "System.IO.FileSystem.Primitives": "4.3.0",
  1782. "System.Runtime": "4.3.0",
  1783. "System.Runtime.Handles": "4.3.0",
  1784. "System.Text.Encoding": "4.3.0",
  1785. "System.Threading.Tasks": "4.3.0"
  1786. },
  1787. "compile": {
  1788. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1789. "related": ".xml"
  1790. }
  1791. }
  1792. },
  1793. "System.IO.FileSystem.Primitives/4.3.0": {
  1794. "type": "package",
  1795. "dependencies": {
  1796. "System.Runtime": "4.3.0"
  1797. },
  1798. "compile": {
  1799. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1800. "related": ".xml"
  1801. }
  1802. },
  1803. "runtime": {
  1804. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1805. }
  1806. },
  1807. "System.IO.Ports/6.0.0": {
  1808. "type": "package",
  1809. "dependencies": {
  1810. "runtime.native.System.IO.Ports": "6.0.0"
  1811. },
  1812. "compile": {
  1813. "lib/net6.0/System.IO.Ports.dll": {
  1814. "related": ".xml"
  1815. }
  1816. },
  1817. "runtime": {
  1818. "lib/net6.0/System.IO.Ports.dll": {
  1819. "related": ".xml"
  1820. }
  1821. },
  1822. "build": {
  1823. "buildTransitive/netcoreapp3.1/_._": {}
  1824. },
  1825. "runtimeTargets": {
  1826. "runtimes/unix/lib/net6.0/System.IO.Ports.dll": {
  1827. "assetType": "runtime",
  1828. "rid": "unix"
  1829. },
  1830. "runtimes/win/lib/net6.0/System.IO.Ports.dll": {
  1831. "assetType": "runtime",
  1832. "rid": "win"
  1833. }
  1834. }
  1835. },
  1836. "System.Linq/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "System.Collections": "4.3.0",
  1840. "System.Diagnostics.Debug": "4.3.0",
  1841. "System.Resources.ResourceManager": "4.3.0",
  1842. "System.Runtime": "4.3.0",
  1843. "System.Runtime.Extensions": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.6/System.Linq.dll": {
  1847. "related": ".xml"
  1848. }
  1849. },
  1850. "runtime": {
  1851. "lib/netstandard1.6/System.Linq.dll": {}
  1852. }
  1853. },
  1854. "System.Linq.Expressions/4.1.0": {
  1855. "type": "package",
  1856. "dependencies": {
  1857. "System.Collections": "4.0.11",
  1858. "System.Diagnostics.Debug": "4.0.11",
  1859. "System.Globalization": "4.0.11",
  1860. "System.IO": "4.1.0",
  1861. "System.Linq": "4.1.0",
  1862. "System.ObjectModel": "4.0.12",
  1863. "System.Reflection": "4.1.0",
  1864. "System.Reflection.Emit": "4.0.1",
  1865. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1866. "System.Reflection.Emit.Lightweight": "4.0.1",
  1867. "System.Reflection.Extensions": "4.0.1",
  1868. "System.Reflection.Primitives": "4.0.1",
  1869. "System.Reflection.TypeExtensions": "4.1.0",
  1870. "System.Resources.ResourceManager": "4.0.1",
  1871. "System.Runtime": "4.1.0",
  1872. "System.Runtime.Extensions": "4.1.0",
  1873. "System.Threading": "4.0.11"
  1874. },
  1875. "compile": {
  1876. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1877. "related": ".xml"
  1878. }
  1879. },
  1880. "runtime": {
  1881. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1882. }
  1883. },
  1884. "System.Memory/4.5.3": {
  1885. "type": "package",
  1886. "compile": {
  1887. "ref/netcoreapp2.1/_._": {}
  1888. },
  1889. "runtime": {
  1890. "lib/netcoreapp2.1/_._": {}
  1891. }
  1892. },
  1893. "System.ObjectModel/4.0.12": {
  1894. "type": "package",
  1895. "dependencies": {
  1896. "System.Collections": "4.0.11",
  1897. "System.Diagnostics.Debug": "4.0.11",
  1898. "System.Resources.ResourceManager": "4.0.1",
  1899. "System.Runtime": "4.1.0",
  1900. "System.Threading": "4.0.11"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.3/System.ObjectModel.dll": {
  1904. "related": ".xml"
  1905. }
  1906. },
  1907. "runtime": {
  1908. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1909. }
  1910. },
  1911. "System.Reflection/4.3.0": {
  1912. "type": "package",
  1913. "dependencies": {
  1914. "Microsoft.NETCore.Platforms": "1.1.0",
  1915. "Microsoft.NETCore.Targets": "1.1.0",
  1916. "System.IO": "4.3.0",
  1917. "System.Reflection.Primitives": "4.3.0",
  1918. "System.Runtime": "4.3.0"
  1919. },
  1920. "compile": {
  1921. "ref/netstandard1.5/System.Reflection.dll": {
  1922. "related": ".xml"
  1923. }
  1924. }
  1925. },
  1926. "System.Reflection.Emit/4.3.0": {
  1927. "type": "package",
  1928. "dependencies": {
  1929. "System.IO": "4.3.0",
  1930. "System.Reflection": "4.3.0",
  1931. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1932. "System.Reflection.Primitives": "4.3.0",
  1933. "System.Runtime": "4.3.0"
  1934. },
  1935. "compile": {
  1936. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  1937. "related": ".xml"
  1938. }
  1939. },
  1940. "runtime": {
  1941. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1942. }
  1943. },
  1944. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1945. "type": "package",
  1946. "dependencies": {
  1947. "System.Reflection": "4.3.0",
  1948. "System.Reflection.Primitives": "4.3.0",
  1949. "System.Runtime": "4.3.0"
  1950. },
  1951. "compile": {
  1952. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1953. "related": ".xml"
  1954. }
  1955. },
  1956. "runtime": {
  1957. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1958. }
  1959. },
  1960. "System.Reflection.Emit.Lightweight/4.0.1": {
  1961. "type": "package",
  1962. "dependencies": {
  1963. "System.Reflection": "4.1.0",
  1964. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1965. "System.Reflection.Primitives": "4.0.1",
  1966. "System.Runtime": "4.1.0"
  1967. },
  1968. "compile": {
  1969. "ref/netstandard1.0/_._": {
  1970. "related": ".xml"
  1971. }
  1972. },
  1973. "runtime": {
  1974. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1975. }
  1976. },
  1977. "System.Reflection.Extensions/4.3.0": {
  1978. "type": "package",
  1979. "dependencies": {
  1980. "Microsoft.NETCore.Platforms": "1.1.0",
  1981. "Microsoft.NETCore.Targets": "1.1.0",
  1982. "System.Reflection": "4.3.0",
  1983. "System.Runtime": "4.3.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  1987. "related": ".xml"
  1988. }
  1989. }
  1990. },
  1991. "System.Reflection.Primitives/4.3.0": {
  1992. "type": "package",
  1993. "dependencies": {
  1994. "Microsoft.NETCore.Platforms": "1.1.0",
  1995. "Microsoft.NETCore.Targets": "1.1.0",
  1996. "System.Runtime": "4.3.0"
  1997. },
  1998. "compile": {
  1999. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2000. "related": ".xml"
  2001. }
  2002. }
  2003. },
  2004. "System.Reflection.TypeExtensions/4.3.0": {
  2005. "type": "package",
  2006. "dependencies": {
  2007. "System.Reflection": "4.3.0",
  2008. "System.Runtime": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2012. "related": ".xml"
  2013. }
  2014. },
  2015. "runtime": {
  2016. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2017. }
  2018. },
  2019. "System.Resources.ResourceManager/4.3.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.1.0",
  2023. "Microsoft.NETCore.Targets": "1.1.0",
  2024. "System.Globalization": "4.3.0",
  2025. "System.Reflection": "4.3.0",
  2026. "System.Runtime": "4.3.0"
  2027. },
  2028. "compile": {
  2029. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2030. "related": ".xml"
  2031. }
  2032. }
  2033. },
  2034. "System.Runtime/4.3.0": {
  2035. "type": "package",
  2036. "dependencies": {
  2037. "Microsoft.NETCore.Platforms": "1.1.0",
  2038. "Microsoft.NETCore.Targets": "1.1.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard1.5/System.Runtime.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2047. "type": "package",
  2048. "compile": {
  2049. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2050. "related": ".xml"
  2051. }
  2052. },
  2053. "runtime": {
  2054. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2055. "related": ".xml"
  2056. }
  2057. },
  2058. "build": {
  2059. "buildTransitive/netcoreapp3.1/_._": {}
  2060. }
  2061. },
  2062. "System.Runtime.Extensions/4.3.0": {
  2063. "type": "package",
  2064. "dependencies": {
  2065. "Microsoft.NETCore.Platforms": "1.1.0",
  2066. "Microsoft.NETCore.Targets": "1.1.0",
  2067. "System.Runtime": "4.3.0"
  2068. },
  2069. "compile": {
  2070. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2071. "related": ".xml"
  2072. }
  2073. }
  2074. },
  2075. "System.Runtime.Handles/4.3.0": {
  2076. "type": "package",
  2077. "dependencies": {
  2078. "Microsoft.NETCore.Platforms": "1.1.0",
  2079. "Microsoft.NETCore.Targets": "1.1.0",
  2080. "System.Runtime": "4.3.0"
  2081. },
  2082. "compile": {
  2083. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2084. "related": ".xml"
  2085. }
  2086. }
  2087. },
  2088. "System.Runtime.InteropServices/4.3.0": {
  2089. "type": "package",
  2090. "dependencies": {
  2091. "Microsoft.NETCore.Platforms": "1.1.0",
  2092. "Microsoft.NETCore.Targets": "1.1.0",
  2093. "System.Reflection": "4.3.0",
  2094. "System.Reflection.Primitives": "4.3.0",
  2095. "System.Runtime": "4.3.0",
  2096. "System.Runtime.Handles": "4.3.0"
  2097. },
  2098. "compile": {
  2099. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2100. }
  2101. },
  2102. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2103. "type": "package",
  2104. "dependencies": {
  2105. "System.Reflection": "4.3.0",
  2106. "System.Reflection.Extensions": "4.3.0",
  2107. "System.Resources.ResourceManager": "4.3.0",
  2108. "System.Runtime": "4.3.0",
  2109. "System.Runtime.InteropServices": "4.3.0",
  2110. "System.Threading": "4.3.0",
  2111. "runtime.native.System": "4.3.0"
  2112. },
  2113. "compile": {
  2114. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2115. },
  2116. "runtime": {
  2117. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2118. },
  2119. "runtimeTargets": {
  2120. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2121. "assetType": "runtime",
  2122. "rid": "unix"
  2123. },
  2124. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2125. "assetType": "runtime",
  2126. "rid": "win"
  2127. }
  2128. }
  2129. },
  2130. "System.Runtime.Numerics/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "System.Globalization": "4.3.0",
  2134. "System.Resources.ResourceManager": "4.3.0",
  2135. "System.Runtime": "4.3.0",
  2136. "System.Runtime.Extensions": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.1/_._": {
  2140. "related": ".xml"
  2141. }
  2142. },
  2143. "runtime": {
  2144. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2145. }
  2146. },
  2147. "System.Runtime.Serialization.Primitives/4.1.1": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "System.Resources.ResourceManager": "4.0.1",
  2151. "System.Runtime": "4.1.0"
  2152. },
  2153. "compile": {
  2154. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2155. "related": ".xml"
  2156. }
  2157. },
  2158. "runtime": {
  2159. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2160. }
  2161. },
  2162. "System.Security.AccessControl/5.0.0": {
  2163. "type": "package",
  2164. "dependencies": {
  2165. "Microsoft.NETCore.Platforms": "5.0.0",
  2166. "System.Security.Principal.Windows": "5.0.0"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard2.0/_._": {
  2170. "related": ".xml"
  2171. }
  2172. },
  2173. "runtime": {
  2174. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2175. "related": ".xml"
  2176. }
  2177. },
  2178. "runtimeTargets": {
  2179. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2180. "assetType": "runtime",
  2181. "rid": "win"
  2182. }
  2183. }
  2184. },
  2185. "System.Security.Claims/4.3.0": {
  2186. "type": "package",
  2187. "dependencies": {
  2188. "System.Collections": "4.3.0",
  2189. "System.Globalization": "4.3.0",
  2190. "System.IO": "4.3.0",
  2191. "System.Resources.ResourceManager": "4.3.0",
  2192. "System.Runtime": "4.3.0",
  2193. "System.Runtime.Extensions": "4.3.0",
  2194. "System.Security.Principal": "4.3.0"
  2195. },
  2196. "compile": {
  2197. "ref/netstandard1.3/System.Security.Claims.dll": {
  2198. "related": ".xml"
  2199. }
  2200. },
  2201. "runtime": {
  2202. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2203. }
  2204. },
  2205. "System.Security.Cryptography.Algorithms/4.3.0": {
  2206. "type": "package",
  2207. "dependencies": {
  2208. "Microsoft.NETCore.Platforms": "1.1.0",
  2209. "System.Collections": "4.3.0",
  2210. "System.IO": "4.3.0",
  2211. "System.Resources.ResourceManager": "4.3.0",
  2212. "System.Runtime": "4.3.0",
  2213. "System.Runtime.Extensions": "4.3.0",
  2214. "System.Runtime.Handles": "4.3.0",
  2215. "System.Runtime.InteropServices": "4.3.0",
  2216. "System.Runtime.Numerics": "4.3.0",
  2217. "System.Security.Cryptography.Encoding": "4.3.0",
  2218. "System.Security.Cryptography.Primitives": "4.3.0",
  2219. "System.Text.Encoding": "4.3.0",
  2220. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2221. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2222. },
  2223. "compile": {
  2224. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2225. },
  2226. "runtimeTargets": {
  2227. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2228. "assetType": "runtime",
  2229. "rid": "osx"
  2230. },
  2231. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2232. "assetType": "runtime",
  2233. "rid": "unix"
  2234. },
  2235. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2236. "assetType": "runtime",
  2237. "rid": "win"
  2238. }
  2239. }
  2240. },
  2241. "System.Security.Cryptography.Cng/5.0.0": {
  2242. "type": "package",
  2243. "dependencies": {
  2244. "System.Formats.Asn1": "5.0.0"
  2245. },
  2246. "compile": {
  2247. "ref/netcoreapp3.0/_._": {
  2248. "related": ".xml"
  2249. }
  2250. },
  2251. "runtime": {
  2252. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2253. "related": ".xml"
  2254. }
  2255. },
  2256. "runtimeTargets": {
  2257. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2258. "assetType": "runtime",
  2259. "rid": "win"
  2260. }
  2261. }
  2262. },
  2263. "System.Security.Cryptography.Csp/4.3.0": {
  2264. "type": "package",
  2265. "dependencies": {
  2266. "Microsoft.NETCore.Platforms": "1.1.0",
  2267. "System.IO": "4.3.0",
  2268. "System.Reflection": "4.3.0",
  2269. "System.Resources.ResourceManager": "4.3.0",
  2270. "System.Runtime": "4.3.0",
  2271. "System.Runtime.Extensions": "4.3.0",
  2272. "System.Runtime.Handles": "4.3.0",
  2273. "System.Runtime.InteropServices": "4.3.0",
  2274. "System.Security.Cryptography.Algorithms": "4.3.0",
  2275. "System.Security.Cryptography.Encoding": "4.3.0",
  2276. "System.Security.Cryptography.Primitives": "4.3.0",
  2277. "System.Text.Encoding": "4.3.0",
  2278. "System.Threading": "4.3.0"
  2279. },
  2280. "compile": {
  2281. "ref/netstandard1.3/_._": {}
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "unix"
  2287. },
  2288. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.Security.Cryptography.Encoding/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.1.0",
  2298. "System.Collections": "4.3.0",
  2299. "System.Collections.Concurrent": "4.3.0",
  2300. "System.Linq": "4.3.0",
  2301. "System.Resources.ResourceManager": "4.3.0",
  2302. "System.Runtime": "4.3.0",
  2303. "System.Runtime.Extensions": "4.3.0",
  2304. "System.Runtime.Handles": "4.3.0",
  2305. "System.Runtime.InteropServices": "4.3.0",
  2306. "System.Security.Cryptography.Primitives": "4.3.0",
  2307. "System.Text.Encoding": "4.3.0",
  2308. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2309. },
  2310. "compile": {
  2311. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2312. "related": ".xml"
  2313. }
  2314. },
  2315. "runtimeTargets": {
  2316. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2317. "assetType": "runtime",
  2318. "rid": "unix"
  2319. },
  2320. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2321. "assetType": "runtime",
  2322. "rid": "win"
  2323. }
  2324. }
  2325. },
  2326. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2327. "type": "package",
  2328. "dependencies": {
  2329. "System.Collections": "4.3.0",
  2330. "System.IO": "4.3.0",
  2331. "System.Resources.ResourceManager": "4.3.0",
  2332. "System.Runtime": "4.3.0",
  2333. "System.Runtime.Extensions": "4.3.0",
  2334. "System.Runtime.Handles": "4.3.0",
  2335. "System.Runtime.InteropServices": "4.3.0",
  2336. "System.Runtime.Numerics": "4.3.0",
  2337. "System.Security.Cryptography.Algorithms": "4.3.0",
  2338. "System.Security.Cryptography.Encoding": "4.3.0",
  2339. "System.Security.Cryptography.Primitives": "4.3.0",
  2340. "System.Text.Encoding": "4.3.0",
  2341. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2342. },
  2343. "compile": {
  2344. "ref/netstandard1.6/_._": {}
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2348. },
  2349. "runtimeTargets": {
  2350. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "unix"
  2353. }
  2354. }
  2355. },
  2356. "System.Security.Cryptography.Pkcs/5.0.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "System.Formats.Asn1": "5.0.0",
  2360. "System.Security.Cryptography.Cng": "5.0.0"
  2361. },
  2362. "compile": {
  2363. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2364. "related": ".xml"
  2365. }
  2366. },
  2367. "runtime": {
  2368. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2369. "related": ".xml"
  2370. }
  2371. },
  2372. "runtimeTargets": {
  2373. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2374. "assetType": "runtime",
  2375. "rid": "win"
  2376. }
  2377. }
  2378. },
  2379. "System.Security.Cryptography.Primitives/4.3.0": {
  2380. "type": "package",
  2381. "dependencies": {
  2382. "System.Diagnostics.Debug": "4.3.0",
  2383. "System.Globalization": "4.3.0",
  2384. "System.IO": "4.3.0",
  2385. "System.Resources.ResourceManager": "4.3.0",
  2386. "System.Runtime": "4.3.0",
  2387. "System.Threading": "4.3.0",
  2388. "System.Threading.Tasks": "4.3.0"
  2389. },
  2390. "compile": {
  2391. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2392. },
  2393. "runtime": {
  2394. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2395. }
  2396. },
  2397. "System.Security.Cryptography.X509Certificates/4.3.2": {
  2398. "type": "package",
  2399. "dependencies": {
  2400. "Microsoft.NETCore.Platforms": "1.1.0",
  2401. "System.Collections": "4.3.0",
  2402. "System.Diagnostics.Debug": "4.3.0",
  2403. "System.Globalization": "4.3.0",
  2404. "System.Globalization.Calendars": "4.3.0",
  2405. "System.IO": "4.3.0",
  2406. "System.IO.FileSystem": "4.3.0",
  2407. "System.IO.FileSystem.Primitives": "4.3.0",
  2408. "System.Resources.ResourceManager": "4.3.0",
  2409. "System.Runtime": "4.3.0",
  2410. "System.Runtime.Extensions": "4.3.0",
  2411. "System.Runtime.Handles": "4.3.0",
  2412. "System.Runtime.InteropServices": "4.3.0",
  2413. "System.Runtime.Numerics": "4.3.0",
  2414. "System.Security.Cryptography.Algorithms": "4.3.0",
  2415. "System.Security.Cryptography.Cng": "4.3.0",
  2416. "System.Security.Cryptography.Csp": "4.3.0",
  2417. "System.Security.Cryptography.Encoding": "4.3.0",
  2418. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2419. "System.Security.Cryptography.Primitives": "4.3.0",
  2420. "System.Text.Encoding": "4.3.0",
  2421. "System.Threading": "4.3.0",
  2422. "runtime.native.System": "4.3.0",
  2423. "runtime.native.System.Net.Http": "4.3.0",
  2424. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2425. },
  2426. "compile": {
  2427. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2428. },
  2429. "runtimeTargets": {
  2430. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2431. "assetType": "runtime",
  2432. "rid": "unix"
  2433. },
  2434. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "win"
  2437. }
  2438. }
  2439. },
  2440. "System.Security.Principal/4.3.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "System.Runtime": "4.3.0"
  2444. },
  2445. "compile": {
  2446. "ref/netstandard1.0/System.Security.Principal.dll": {
  2447. "related": ".xml"
  2448. }
  2449. },
  2450. "runtime": {
  2451. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2452. }
  2453. },
  2454. "System.Security.Principal.Windows/5.0.0": {
  2455. "type": "package",
  2456. "compile": {
  2457. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2458. "related": ".xml"
  2459. }
  2460. },
  2461. "runtime": {
  2462. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2463. "related": ".xml"
  2464. }
  2465. },
  2466. "runtimeTargets": {
  2467. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2468. "assetType": "runtime",
  2469. "rid": "unix"
  2470. },
  2471. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2472. "assetType": "runtime",
  2473. "rid": "win"
  2474. }
  2475. }
  2476. },
  2477. "System.Text.Encoding/4.3.0": {
  2478. "type": "package",
  2479. "dependencies": {
  2480. "Microsoft.NETCore.Platforms": "1.1.0",
  2481. "Microsoft.NETCore.Targets": "1.1.0",
  2482. "System.Runtime": "4.3.0"
  2483. },
  2484. "compile": {
  2485. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2486. "related": ".xml"
  2487. }
  2488. }
  2489. },
  2490. "System.Text.Encoding.CodePages/5.0.0": {
  2491. "type": "package",
  2492. "dependencies": {
  2493. "Microsoft.NETCore.Platforms": "5.0.0"
  2494. },
  2495. "compile": {
  2496. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2497. "related": ".xml"
  2498. }
  2499. },
  2500. "runtime": {
  2501. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2502. "related": ".xml"
  2503. }
  2504. },
  2505. "runtimeTargets": {
  2506. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "win"
  2509. }
  2510. }
  2511. },
  2512. "System.Text.Encoding.Extensions/4.3.0": {
  2513. "type": "package",
  2514. "dependencies": {
  2515. "Microsoft.NETCore.Platforms": "1.1.0",
  2516. "Microsoft.NETCore.Targets": "1.1.0",
  2517. "System.Runtime": "4.3.0",
  2518. "System.Text.Encoding": "4.3.0"
  2519. },
  2520. "compile": {
  2521. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2522. "related": ".xml"
  2523. }
  2524. }
  2525. },
  2526. "System.Text.Json/4.7.2": {
  2527. "type": "package",
  2528. "compile": {
  2529. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2530. "related": ".xml"
  2531. }
  2532. },
  2533. "runtime": {
  2534. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2535. "related": ".xml"
  2536. }
  2537. }
  2538. },
  2539. "System.Text.RegularExpressions/4.3.0": {
  2540. "type": "package",
  2541. "dependencies": {
  2542. "System.Runtime": "4.3.0"
  2543. },
  2544. "compile": {
  2545. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2546. },
  2547. "runtime": {
  2548. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2549. }
  2550. },
  2551. "System.Threading/4.3.0": {
  2552. "type": "package",
  2553. "dependencies": {
  2554. "System.Runtime": "4.3.0",
  2555. "System.Threading.Tasks": "4.3.0"
  2556. },
  2557. "compile": {
  2558. "ref/netstandard1.3/System.Threading.dll": {
  2559. "related": ".xml"
  2560. }
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.3/System.Threading.dll": {}
  2564. }
  2565. },
  2566. "System.Threading.Tasks/4.3.0": {
  2567. "type": "package",
  2568. "dependencies": {
  2569. "Microsoft.NETCore.Platforms": "1.1.0",
  2570. "Microsoft.NETCore.Targets": "1.1.0",
  2571. "System.Runtime": "4.3.0"
  2572. },
  2573. "compile": {
  2574. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2575. "related": ".xml"
  2576. }
  2577. }
  2578. },
  2579. "System.Threading.Tasks.Extensions/4.5.2": {
  2580. "type": "package",
  2581. "compile": {
  2582. "ref/netcoreapp2.1/_._": {}
  2583. },
  2584. "runtime": {
  2585. "lib/netcoreapp2.1/_._": {}
  2586. }
  2587. },
  2588. "System.Threading.Timer/4.0.1": {
  2589. "type": "package",
  2590. "dependencies": {
  2591. "Microsoft.NETCore.Platforms": "1.0.1",
  2592. "Microsoft.NETCore.Targets": "1.0.1",
  2593. "System.Runtime": "4.1.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2597. "related": ".xml"
  2598. }
  2599. }
  2600. },
  2601. "System.Xml.ReaderWriter/4.3.0": {
  2602. "type": "package",
  2603. "dependencies": {
  2604. "System.Collections": "4.3.0",
  2605. "System.Diagnostics.Debug": "4.3.0",
  2606. "System.Globalization": "4.3.0",
  2607. "System.IO": "4.3.0",
  2608. "System.IO.FileSystem": "4.3.0",
  2609. "System.IO.FileSystem.Primitives": "4.3.0",
  2610. "System.Resources.ResourceManager": "4.3.0",
  2611. "System.Runtime": "4.3.0",
  2612. "System.Runtime.Extensions": "4.3.0",
  2613. "System.Runtime.InteropServices": "4.3.0",
  2614. "System.Text.Encoding": "4.3.0",
  2615. "System.Text.Encoding.Extensions": "4.3.0",
  2616. "System.Text.RegularExpressions": "4.3.0",
  2617. "System.Threading.Tasks": "4.3.0",
  2618. "System.Threading.Tasks.Extensions": "4.3.0"
  2619. },
  2620. "compile": {
  2621. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2622. "related": ".xml"
  2623. }
  2624. },
  2625. "runtime": {
  2626. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2627. }
  2628. },
  2629. "System.Xml.XDocument/4.0.11": {
  2630. "type": "package",
  2631. "dependencies": {
  2632. "System.Collections": "4.0.11",
  2633. "System.Diagnostics.Debug": "4.0.11",
  2634. "System.Diagnostics.Tools": "4.0.1",
  2635. "System.Globalization": "4.0.11",
  2636. "System.IO": "4.1.0",
  2637. "System.Reflection": "4.1.0",
  2638. "System.Resources.ResourceManager": "4.0.1",
  2639. "System.Runtime": "4.1.0",
  2640. "System.Runtime.Extensions": "4.1.0",
  2641. "System.Text.Encoding": "4.0.11",
  2642. "System.Threading": "4.0.11",
  2643. "System.Xml.ReaderWriter": "4.0.11"
  2644. },
  2645. "compile": {
  2646. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2647. "related": ".xml"
  2648. }
  2649. },
  2650. "runtime": {
  2651. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2652. }
  2653. },
  2654. "System.Xml.XmlDocument/4.3.0": {
  2655. "type": "package",
  2656. "dependencies": {
  2657. "System.Collections": "4.3.0",
  2658. "System.Diagnostics.Debug": "4.3.0",
  2659. "System.Globalization": "4.3.0",
  2660. "System.IO": "4.3.0",
  2661. "System.Resources.ResourceManager": "4.3.0",
  2662. "System.Runtime": "4.3.0",
  2663. "System.Runtime.Extensions": "4.3.0",
  2664. "System.Text.Encoding": "4.3.0",
  2665. "System.Threading": "4.3.0",
  2666. "System.Xml.ReaderWriter": "4.3.0"
  2667. },
  2668. "compile": {
  2669. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2670. "related": ".xml"
  2671. }
  2672. },
  2673. "runtime": {
  2674. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2675. }
  2676. },
  2677. "System.Xml.XPath/4.3.0": {
  2678. "type": "package",
  2679. "dependencies": {
  2680. "System.Collections": "4.3.0",
  2681. "System.Diagnostics.Debug": "4.3.0",
  2682. "System.Globalization": "4.3.0",
  2683. "System.IO": "4.3.0",
  2684. "System.Resources.ResourceManager": "4.3.0",
  2685. "System.Runtime": "4.3.0",
  2686. "System.Runtime.Extensions": "4.3.0",
  2687. "System.Threading": "4.3.0",
  2688. "System.Xml.ReaderWriter": "4.3.0"
  2689. },
  2690. "compile": {
  2691. "ref/netstandard1.3/System.Xml.XPath.dll": {
  2692. "related": ".xml"
  2693. }
  2694. },
  2695. "runtime": {
  2696. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2697. }
  2698. },
  2699. "System.Xml.XPath.XmlDocument/4.3.0": {
  2700. "type": "package",
  2701. "dependencies": {
  2702. "System.Collections": "4.3.0",
  2703. "System.Globalization": "4.3.0",
  2704. "System.IO": "4.3.0",
  2705. "System.Resources.ResourceManager": "4.3.0",
  2706. "System.Runtime": "4.3.0",
  2707. "System.Runtime.Extensions": "4.3.0",
  2708. "System.Threading": "4.3.0",
  2709. "System.Xml.ReaderWriter": "4.3.0",
  2710. "System.Xml.XPath": "4.3.0",
  2711. "System.Xml.XmlDocument": "4.3.0"
  2712. },
  2713. "compile": {
  2714. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2715. "related": ".xml"
  2716. }
  2717. },
  2718. "runtime": {
  2719. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2720. }
  2721. },
  2722. "Unity.Abstractions/5.11.7": {
  2723. "type": "package",
  2724. "dependencies": {
  2725. "System.Threading.Tasks.Extensions": "4.5.2"
  2726. },
  2727. "compile": {
  2728. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  2729. "related": ".pdb"
  2730. }
  2731. },
  2732. "runtime": {
  2733. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  2734. "related": ".pdb"
  2735. }
  2736. }
  2737. },
  2738. "Unity.Container/5.11.11": {
  2739. "type": "package",
  2740. "dependencies": {
  2741. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  2742. "Unity.Abstractions": "5.11.7"
  2743. },
  2744. "compile": {
  2745. "lib/netcoreapp3.0/Unity.Container.dll": {
  2746. "related": ".pdb"
  2747. }
  2748. },
  2749. "runtime": {
  2750. "lib/netcoreapp3.0/Unity.Container.dll": {
  2751. "related": ".pdb"
  2752. }
  2753. }
  2754. },
  2755. "Unity.Interception/5.11.1": {
  2756. "type": "package",
  2757. "dependencies": {
  2758. "System.Reflection.Emit": "4.3.0",
  2759. "Unity.Container": "5.11.1"
  2760. },
  2761. "compile": {
  2762. "lib/netcoreapp2.0/Unity.Interception.dll": {
  2763. "related": ".pdb"
  2764. }
  2765. },
  2766. "runtime": {
  2767. "lib/netcoreapp2.0/Unity.Interception.dll": {
  2768. "related": ".pdb"
  2769. }
  2770. }
  2771. },
  2772. "YamlDotNet/11.2.1": {
  2773. "type": "package",
  2774. "compile": {
  2775. "lib/netstandard2.1/YamlDotNet.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtime": {
  2780. "lib/netstandard2.1/YamlDotNet.dll": {
  2781. "related": ".xml"
  2782. }
  2783. }
  2784. },
  2785. "SHJX.Service.Common/1.0.0": {
  2786. "type": "project",
  2787. "framework": ".NETCoreApp,Version=v6.0",
  2788. "dependencies": {
  2789. "EPPlus": "5.6.4",
  2790. "LiveCharts": "0.9.7",
  2791. "LiveCharts.Wpf": "0.9.7",
  2792. "MahApps.Metro": "2.4.5",
  2793. "Microsoft.Data.Sqlite.Core": "5.0.6",
  2794. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  2795. "Microsoft.Extensions.Configuration": "5.0.0",
  2796. "Microsoft.Extensions.Hosting": "5.0.0",
  2797. "Microsoft.Extensions.Logging": "7.0.0",
  2798. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  2799. "Microsoft.Extensions.Logging.Console": "5.0.0",
  2800. "Panuon.UI.Silver": "1.1.3.4",
  2801. "Prism.Core": "8.1.97",
  2802. "Prism.Unity": "8.1.97",
  2803. "SHJX.Service.Model": "1.0.0",
  2804. "Serilog": "2.10.0",
  2805. "Serilog.Enrichers.Thread": "3.1.0",
  2806. "Serilog.Extensions.Logging": "3.0.1",
  2807. "Serilog.Formatting.Compact": "1.1.0",
  2808. "Serilog.Settings.Configuration": "3.1.0",
  2809. "Serilog.Sinks.Console": "3.1.1",
  2810. "Serilog.Sinks.File": "4.1.0",
  2811. "System.Data.SQLite.Core": "1.0.114",
  2812. "System.Data.SqlClient": "4.8.2",
  2813. "System.Drawing.Common": "7.0.0",
  2814. "Unity.Interception": "5.11.1",
  2815. "YamlDotNet": "11.2.1",
  2816. "shjxCamera": "1.0.0"
  2817. },
  2818. "compile": {
  2819. "bin/placeholder/SHJX.Service.Common.dll": {}
  2820. },
  2821. "runtime": {
  2822. "bin/placeholder/SHJX.Service.Common.dll": {}
  2823. },
  2824. "frameworkReferences": [
  2825. "Microsoft.WindowsDesktop.App.WPF"
  2826. ]
  2827. },
  2828. "SHJX.Service.Model/1.0.0": {
  2829. "type": "project",
  2830. "framework": ".NETCoreApp,Version=v6.0",
  2831. "dependencies": {
  2832. "Panuon.UI.Silver": "1.1.3.4",
  2833. "Prism.Core": "8.1.97"
  2834. },
  2835. "compile": {
  2836. "bin/placeholder/SHJX.Service.Model.dll": {}
  2837. },
  2838. "runtime": {
  2839. "bin/placeholder/SHJX.Service.Model.dll": {}
  2840. },
  2841. "frameworkReferences": [
  2842. "Microsoft.WindowsDesktop.App.WPF"
  2843. ]
  2844. },
  2845. "shjxCamera/1.0.0": {
  2846. "type": "project",
  2847. "framework": ".NETCoreApp,Version=v6.0",
  2848. "dependencies": {
  2849. "AForge": "2.2.5",
  2850. "Microsoft.Extensions.Logging": "7.0.0",
  2851. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  2852. "System.Diagnostics.DiagnosticSource": "7.0.2",
  2853. "System.Drawing.Common": "7.0.0"
  2854. },
  2855. "compile": {
  2856. "bin/placeholder/shjxCamera.dll": {}
  2857. },
  2858. "runtime": {
  2859. "bin/placeholder/shjxCamera.dll": {}
  2860. }
  2861. }
  2862. }
  2863. },
  2864. "libraries": {
  2865. "AForge/2.2.5": {
  2866. "sha512": "clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==",
  2867. "type": "package",
  2868. "path": "aforge/2.2.5",
  2869. "files": [
  2870. ".nupkg.metadata",
  2871. ".signature.p7s",
  2872. "aforge.2.2.5.nupkg.sha512",
  2873. "aforge.nuspec",
  2874. "lib/AForge.dll",
  2875. "lib/AForge.xml"
  2876. ]
  2877. },
  2878. "ControlzEx/4.4.0": {
  2879. "sha512": "pZ5z4hYWwE4R13UMCVs6vII//nL7hz+Nwn4oJlnsZJRGqJNy6Z9KnJiTZfly6lKFu0pMc1aWBZpx+VqFTQKP1Q==",
  2880. "type": "package",
  2881. "path": "controlzex/4.4.0",
  2882. "files": [
  2883. ".nupkg.metadata",
  2884. ".signature.p7s",
  2885. "controlzex.4.4.0.nupkg.sha512",
  2886. "controlzex.nuspec",
  2887. "lib/net45/ControlzEx.dll",
  2888. "lib/net45/ControlzEx.pdb",
  2889. "lib/net45/ControlzEx.xml",
  2890. "lib/net462/ControlzEx.dll",
  2891. "lib/net462/ControlzEx.pdb",
  2892. "lib/net462/ControlzEx.xml",
  2893. "lib/netcoreapp3.0/ControlzEx.dll",
  2894. "lib/netcoreapp3.0/ControlzEx.pdb",
  2895. "lib/netcoreapp3.0/ControlzEx.xml",
  2896. "lib/netcoreapp3.1/ControlzEx.dll",
  2897. "lib/netcoreapp3.1/ControlzEx.pdb",
  2898. "lib/netcoreapp3.1/ControlzEx.xml",
  2899. "logo-mini.png"
  2900. ]
  2901. },
  2902. "EPPlus/5.6.4": {
  2903. "sha512": "JpkTI30hZnNcXis/EEbVE0dflVQD8MXrEMEt2HGZsmdIKnMw1ezqeHlbCIpvyWGNjFLizpZKd3nMoFuJWtrNIw==",
  2904. "type": "package",
  2905. "path": "epplus/5.6.4",
  2906. "files": [
  2907. ".nupkg.metadata",
  2908. ".signature.p7s",
  2909. "EPPlusLogo.png",
  2910. "epplus.5.6.4.nupkg.sha512",
  2911. "epplus.nuspec",
  2912. "lib/net35/EPPlus.dll",
  2913. "lib/net35/EPPlus.xml",
  2914. "lib/net40/EPPlus.dll",
  2915. "lib/net40/EPPlus.xml",
  2916. "lib/net45/EPPlus.dll",
  2917. "lib/net45/EPPlus.xml",
  2918. "lib/net5.0/EPPlus.dll",
  2919. "lib/net5.0/EPPlus.xml",
  2920. "lib/netstandard2.0/EPPlus.dll",
  2921. "lib/netstandard2.0/EPPlus.xml",
  2922. "lib/netstandard2.1/EPPlus.dll",
  2923. "lib/netstandard2.1/EPPlus.xml",
  2924. "license.md",
  2925. "readme.txt"
  2926. ]
  2927. },
  2928. "LiveCharts/0.9.7": {
  2929. "sha512": "p4xyBrUaNNfkWZSNsIle0r51cyVyFg0Yi0uBRZM5GQtdFiA/7guZHlffFyNUILIdux10Ch2hUaJpcZENVU9aaQ==",
  2930. "type": "package",
  2931. "path": "livecharts/0.9.7",
  2932. "files": [
  2933. ".nupkg.metadata",
  2934. ".signature.p7s",
  2935. "lib/net40/LiveCharts.dll",
  2936. "lib/net40/LiveCharts.pdb",
  2937. "lib/net40/LiveCharts.xml",
  2938. "lib/net45/LiveCharts.dll",
  2939. "lib/net45/LiveCharts.pdb",
  2940. "lib/net45/LiveCharts.xml",
  2941. "lib/portable-net45+win8+wp8/LiveCharts.XML",
  2942. "lib/portable-net45+win8+wp8/LiveCharts.dll",
  2943. "lib/portable-net45+win8+wp8/LiveCharts.pdb",
  2944. "livecharts.0.9.7.nupkg.sha512",
  2945. "livecharts.nuspec",
  2946. "readme.txt"
  2947. ]
  2948. },
  2949. "LiveCharts.Wpf/0.9.7": {
  2950. "sha512": "lv6YZoK0B4yWykMq5b9grZXtIbTj+OWu4sVN9GDpdgV6zffu64m4d5CW8KSjfSl9rB8VU649x1NZvhoU67hCDg==",
  2951. "type": "package",
  2952. "path": "livecharts.wpf/0.9.7",
  2953. "hasTools": true,
  2954. "files": [
  2955. ".nupkg.metadata",
  2956. ".signature.p7s",
  2957. "lib/net40/LiveCharts.Wpf.XML",
  2958. "lib/net40/LiveCharts.Wpf.dll",
  2959. "lib/net40/LiveCharts.Wpf.pdb",
  2960. "lib/net45/LiveCharts.Wpf.XML",
  2961. "lib/net45/LiveCharts.Wpf.dll",
  2962. "lib/net45/LiveCharts.Wpf.pdb",
  2963. "livecharts.wpf.0.9.7.nupkg.sha512",
  2964. "livecharts.wpf.nuspec",
  2965. "tools/install.ps1"
  2966. ]
  2967. },
  2968. "MahApps.Metro/2.4.5": {
  2969. "sha512": "fUmU2yQgHqUTDDZT494+WcMBrg6G/960et7eqIvKGRRwH0I/d6cA6AuvRIJEQezxCFewweRbIkFvIOS62tjqug==",
  2970. "type": "package",
  2971. "path": "mahapps.metro/2.4.5",
  2972. "hasTools": true,
  2973. "files": [
  2974. ".nupkg.metadata",
  2975. ".signature.p7s",
  2976. "lib/net452/MahApps.Metro.dll",
  2977. "lib/net452/MahApps.Metro.pdb",
  2978. "lib/net452/MahApps.Metro.xml",
  2979. "lib/net452/de/MahApps.Metro.resources.dll",
  2980. "lib/net46/MahApps.Metro.dll",
  2981. "lib/net46/MahApps.Metro.pdb",
  2982. "lib/net46/MahApps.Metro.xml",
  2983. "lib/net46/de/MahApps.Metro.resources.dll",
  2984. "lib/net47/MahApps.Metro.dll",
  2985. "lib/net47/MahApps.Metro.pdb",
  2986. "lib/net47/MahApps.Metro.xml",
  2987. "lib/net47/de/MahApps.Metro.resources.dll",
  2988. "lib/netcoreapp3.0/MahApps.Metro.dll",
  2989. "lib/netcoreapp3.0/MahApps.Metro.pdb",
  2990. "lib/netcoreapp3.0/MahApps.Metro.xml",
  2991. "lib/netcoreapp3.0/de/MahApps.Metro.resources.dll",
  2992. "lib/netcoreapp3.1/MahApps.Metro.dll",
  2993. "lib/netcoreapp3.1/MahApps.Metro.pdb",
  2994. "lib/netcoreapp3.1/MahApps.Metro.xml",
  2995. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll",
  2996. "mahapps.metro.2.4.5.nupkg.sha512",
  2997. "mahapps.metro.logo.png",
  2998. "mahapps.metro.nuspec",
  2999. "tools/VisualStudioToolsManifest.xml"
  3000. ]
  3001. },
  3002. "Microsoft.CSharp/4.0.1": {
  3003. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  3004. "type": "package",
  3005. "path": "microsoft.csharp/4.0.1",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "ThirdPartyNotices.txt",
  3010. "dotnet_library_license.txt",
  3011. "lib/MonoAndroid10/_._",
  3012. "lib/MonoTouch10/_._",
  3013. "lib/net45/_._",
  3014. "lib/netcore50/Microsoft.CSharp.dll",
  3015. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3016. "lib/portable-net45+win8+wp8+wpa81/_._",
  3017. "lib/win8/_._",
  3018. "lib/wp80/_._",
  3019. "lib/wpa81/_._",
  3020. "lib/xamarinios10/_._",
  3021. "lib/xamarinmac20/_._",
  3022. "lib/xamarintvos10/_._",
  3023. "lib/xamarinwatchos10/_._",
  3024. "microsoft.csharp.4.0.1.nupkg.sha512",
  3025. "microsoft.csharp.nuspec",
  3026. "ref/MonoAndroid10/_._",
  3027. "ref/MonoTouch10/_._",
  3028. "ref/net45/_._",
  3029. "ref/netcore50/Microsoft.CSharp.dll",
  3030. "ref/netcore50/Microsoft.CSharp.xml",
  3031. "ref/netcore50/de/Microsoft.CSharp.xml",
  3032. "ref/netcore50/es/Microsoft.CSharp.xml",
  3033. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3034. "ref/netcore50/it/Microsoft.CSharp.xml",
  3035. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3036. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3037. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3038. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3039. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3040. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3041. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3042. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3043. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3044. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3045. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3046. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3047. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3048. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3049. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3050. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3051. "ref/portable-net45+win8+wp8+wpa81/_._",
  3052. "ref/win8/_._",
  3053. "ref/wp80/_._",
  3054. "ref/wpa81/_._",
  3055. "ref/xamarinios10/_._",
  3056. "ref/xamarinmac20/_._",
  3057. "ref/xamarintvos10/_._",
  3058. "ref/xamarinwatchos10/_._"
  3059. ]
  3060. },
  3061. "Microsoft.Data.Sqlite.Core/5.0.6": {
  3062. "sha512": "SWzwdhBvS76iWewmN9YBqQLA56rgdUPzw35Mh0RuotNbKGxYjrbXKsKu/7TG+HG030lgtMyzS8yNLWQCw3bc2g==",
  3063. "type": "package",
  3064. "path": "microsoft.data.sqlite.core/5.0.6",
  3065. "files": [
  3066. ".nupkg.metadata",
  3067. ".signature.p7s",
  3068. "Icon.png",
  3069. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3070. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3071. "microsoft.data.sqlite.core.5.0.6.nupkg.sha512",
  3072. "microsoft.data.sqlite.core.nuspec"
  3073. ]
  3074. },
  3075. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  3076. "sha512": "2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
  3077. "type": "package",
  3078. "path": "microsoft.dotnet.platformabstractions/2.0.4",
  3079. "files": [
  3080. ".nupkg.metadata",
  3081. ".signature.p7s",
  3082. "LICENSE.TXT",
  3083. "THIRD-PARTY-NOTICES.TXT",
  3084. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  3085. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  3086. "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512",
  3087. "microsoft.dotnet.platformabstractions.nuspec"
  3088. ]
  3089. },
  3090. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3091. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3092. "type": "package",
  3093. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3094. "files": [
  3095. ".nupkg.metadata",
  3096. ".signature.p7s",
  3097. "Icon.png",
  3098. "LICENSE.TXT",
  3099. "THIRD-PARTY-NOTICES.TXT",
  3100. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3101. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3102. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3103. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3104. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3105. "microsoft.extensions.caching.abstractions.nuspec",
  3106. "useSharedDesignerContext.txt",
  3107. "version.txt"
  3108. ]
  3109. },
  3110. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3111. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3112. "type": "package",
  3113. "path": "microsoft.extensions.caching.memory/5.0.0",
  3114. "files": [
  3115. ".nupkg.metadata",
  3116. ".signature.p7s",
  3117. "Icon.png",
  3118. "LICENSE.TXT",
  3119. "THIRD-PARTY-NOTICES.TXT",
  3120. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3121. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3122. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3123. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3124. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3125. "microsoft.extensions.caching.memory.nuspec",
  3126. "useSharedDesignerContext.txt",
  3127. "version.txt"
  3128. ]
  3129. },
  3130. "Microsoft.Extensions.Configuration/5.0.0": {
  3131. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3132. "type": "package",
  3133. "path": "microsoft.extensions.configuration/5.0.0",
  3134. "files": [
  3135. ".nupkg.metadata",
  3136. ".signature.p7s",
  3137. "Icon.png",
  3138. "LICENSE.TXT",
  3139. "THIRD-PARTY-NOTICES.TXT",
  3140. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3141. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3142. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3143. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3144. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3145. "microsoft.extensions.configuration.nuspec",
  3146. "useSharedDesignerContext.txt",
  3147. "version.txt"
  3148. ]
  3149. },
  3150. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3151. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3152. "type": "package",
  3153. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3154. "files": [
  3155. ".nupkg.metadata",
  3156. ".signature.p7s",
  3157. "Icon.png",
  3158. "LICENSE.TXT",
  3159. "THIRD-PARTY-NOTICES.TXT",
  3160. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3161. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3162. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3163. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3164. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3165. "microsoft.extensions.configuration.abstractions.nuspec",
  3166. "useSharedDesignerContext.txt",
  3167. "version.txt"
  3168. ]
  3169. },
  3170. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3171. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3172. "type": "package",
  3173. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3174. "files": [
  3175. ".nupkg.metadata",
  3176. ".signature.p7s",
  3177. "Icon.png",
  3178. "LICENSE.TXT",
  3179. "THIRD-PARTY-NOTICES.TXT",
  3180. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3181. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3182. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3183. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3184. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3185. "microsoft.extensions.configuration.binder.nuspec",
  3186. "useSharedDesignerContext.txt",
  3187. "version.txt"
  3188. ]
  3189. },
  3190. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  3191. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  3192. "type": "package",
  3193. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  3194. "files": [
  3195. ".nupkg.metadata",
  3196. ".signature.p7s",
  3197. "Icon.png",
  3198. "LICENSE.TXT",
  3199. "THIRD-PARTY-NOTICES.TXT",
  3200. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  3201. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  3202. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3203. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3204. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  3205. "microsoft.extensions.configuration.commandline.nuspec",
  3206. "useSharedDesignerContext.txt",
  3207. "version.txt"
  3208. ]
  3209. },
  3210. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  3211. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  3212. "type": "package",
  3213. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  3214. "files": [
  3215. ".nupkg.metadata",
  3216. ".signature.p7s",
  3217. "Icon.png",
  3218. "LICENSE.TXT",
  3219. "THIRD-PARTY-NOTICES.TXT",
  3220. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3221. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3222. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3223. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3224. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  3225. "microsoft.extensions.configuration.environmentvariables.nuspec",
  3226. "useSharedDesignerContext.txt",
  3227. "version.txt"
  3228. ]
  3229. },
  3230. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3231. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3232. "type": "package",
  3233. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "Icon.png",
  3238. "LICENSE.TXT",
  3239. "THIRD-PARTY-NOTICES.TXT",
  3240. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3241. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3242. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3243. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3244. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3245. "microsoft.extensions.configuration.fileextensions.nuspec",
  3246. "useSharedDesignerContext.txt",
  3247. "version.txt"
  3248. ]
  3249. },
  3250. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3251. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3252. "type": "package",
  3253. "path": "microsoft.extensions.configuration.json/5.0.0",
  3254. "files": [
  3255. ".nupkg.metadata",
  3256. ".signature.p7s",
  3257. "Icon.png",
  3258. "LICENSE.TXT",
  3259. "THIRD-PARTY-NOTICES.TXT",
  3260. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3261. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3262. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3263. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3264. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3265. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3266. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3267. "microsoft.extensions.configuration.json.nuspec",
  3268. "useSharedDesignerContext.txt",
  3269. "version.txt"
  3270. ]
  3271. },
  3272. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  3273. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  3274. "type": "package",
  3275. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  3276. "files": [
  3277. ".nupkg.metadata",
  3278. ".signature.p7s",
  3279. "Icon.png",
  3280. "LICENSE.TXT",
  3281. "THIRD-PARTY-NOTICES.TXT",
  3282. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3283. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3284. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3285. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3286. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3287. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3288. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  3289. "microsoft.extensions.configuration.usersecrets.nuspec",
  3290. "useSharedDesignerContext.txt",
  3291. "version.txt"
  3292. ]
  3293. },
  3294. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  3295. "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  3296. "type": "package",
  3297. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  3298. "files": [
  3299. ".nupkg.metadata",
  3300. ".signature.p7s",
  3301. "Icon.png",
  3302. "LICENSE.TXT",
  3303. "THIRD-PARTY-NOTICES.TXT",
  3304. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  3305. "buildTransitive/net462/_._",
  3306. "buildTransitive/net6.0/_._",
  3307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3308. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  3309. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  3310. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3311. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3312. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  3313. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  3314. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3315. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3316. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3317. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3318. "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
  3319. "microsoft.extensions.dependencyinjection.nuspec",
  3320. "useSharedDesignerContext.txt"
  3321. ]
  3322. },
  3323. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  3324. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  3325. "type": "package",
  3326. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  3327. "files": [
  3328. ".nupkg.metadata",
  3329. ".signature.p7s",
  3330. "Icon.png",
  3331. "LICENSE.TXT",
  3332. "THIRD-PARTY-NOTICES.TXT",
  3333. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3334. "buildTransitive/net462/_._",
  3335. "buildTransitive/net6.0/_._",
  3336. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3337. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3338. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3339. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3340. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3341. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3342. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3343. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3344. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3345. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3346. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3347. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  3348. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3349. "useSharedDesignerContext.txt"
  3350. ]
  3351. },
  3352. "Microsoft.Extensions.DependencyModel/2.0.4": {
  3353. "sha512": "jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
  3354. "type": "package",
  3355. "path": "microsoft.extensions.dependencymodel/2.0.4",
  3356. "files": [
  3357. ".nupkg.metadata",
  3358. ".signature.p7s",
  3359. "LICENSE.TXT",
  3360. "THIRD-PARTY-NOTICES.TXT",
  3361. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3362. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3363. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3364. "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512",
  3365. "microsoft.extensions.dependencymodel.nuspec"
  3366. ]
  3367. },
  3368. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3369. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3370. "type": "package",
  3371. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3372. "files": [
  3373. ".nupkg.metadata",
  3374. ".signature.p7s",
  3375. "Icon.png",
  3376. "LICENSE.TXT",
  3377. "THIRD-PARTY-NOTICES.TXT",
  3378. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3379. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3380. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3381. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3382. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3383. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3384. "useSharedDesignerContext.txt",
  3385. "version.txt"
  3386. ]
  3387. },
  3388. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3389. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3390. "type": "package",
  3391. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3392. "files": [
  3393. ".nupkg.metadata",
  3394. ".signature.p7s",
  3395. "Icon.png",
  3396. "LICENSE.TXT",
  3397. "THIRD-PARTY-NOTICES.TXT",
  3398. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3399. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3400. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3401. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3402. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3403. "microsoft.extensions.fileproviders.physical.nuspec",
  3404. "useSharedDesignerContext.txt",
  3405. "version.txt"
  3406. ]
  3407. },
  3408. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3409. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3410. "type": "package",
  3411. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3412. "files": [
  3413. ".nupkg.metadata",
  3414. ".signature.p7s",
  3415. "Icon.png",
  3416. "LICENSE.TXT",
  3417. "THIRD-PARTY-NOTICES.TXT",
  3418. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3419. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3420. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3421. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3422. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3423. "microsoft.extensions.filesystemglobbing.nuspec",
  3424. "useSharedDesignerContext.txt",
  3425. "version.txt"
  3426. ]
  3427. },
  3428. "Microsoft.Extensions.Hosting/5.0.0": {
  3429. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  3430. "type": "package",
  3431. "path": "microsoft.extensions.hosting/5.0.0",
  3432. "files": [
  3433. ".nupkg.metadata",
  3434. ".signature.p7s",
  3435. "Icon.png",
  3436. "LICENSE.TXT",
  3437. "THIRD-PARTY-NOTICES.TXT",
  3438. "lib/net461/Microsoft.Extensions.Hosting.dll",
  3439. "lib/net461/Microsoft.Extensions.Hosting.xml",
  3440. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3441. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3442. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  3443. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  3444. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  3445. "microsoft.extensions.hosting.nuspec",
  3446. "useSharedDesignerContext.txt",
  3447. "version.txt"
  3448. ]
  3449. },
  3450. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  3451. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  3452. "type": "package",
  3453. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  3454. "files": [
  3455. ".nupkg.metadata",
  3456. ".signature.p7s",
  3457. "Icon.png",
  3458. "LICENSE.TXT",
  3459. "THIRD-PARTY-NOTICES.TXT",
  3460. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  3461. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  3462. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3463. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3464. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3465. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3466. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  3467. "microsoft.extensions.hosting.abstractions.nuspec",
  3468. "useSharedDesignerContext.txt",
  3469. "version.txt"
  3470. ]
  3471. },
  3472. "Microsoft.Extensions.Logging/7.0.0": {
  3473. "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  3474. "type": "package",
  3475. "path": "microsoft.extensions.logging/7.0.0",
  3476. "files": [
  3477. ".nupkg.metadata",
  3478. ".signature.p7s",
  3479. "Icon.png",
  3480. "LICENSE.TXT",
  3481. "THIRD-PARTY-NOTICES.TXT",
  3482. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  3483. "buildTransitive/net462/_._",
  3484. "buildTransitive/net6.0/_._",
  3485. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  3486. "lib/net462/Microsoft.Extensions.Logging.dll",
  3487. "lib/net462/Microsoft.Extensions.Logging.xml",
  3488. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  3489. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  3490. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  3491. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  3492. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3493. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3494. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3495. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3496. "microsoft.extensions.logging.7.0.0.nupkg.sha512",
  3497. "microsoft.extensions.logging.nuspec",
  3498. "useSharedDesignerContext.txt"
  3499. ]
  3500. },
  3501. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  3502. "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  3503. "type": "package",
  3504. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  3505. "files": [
  3506. ".nupkg.metadata",
  3507. ".signature.p7s",
  3508. "Icon.png",
  3509. "LICENSE.TXT",
  3510. "THIRD-PARTY-NOTICES.TXT",
  3511. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3512. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3513. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3514. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3515. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3516. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3517. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3518. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3519. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3520. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3521. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3522. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3523. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3524. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3525. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3526. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3527. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3528. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3529. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3530. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3531. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3532. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3533. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3534. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3535. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3536. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3537. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3538. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3539. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  3540. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3541. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3542. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3543. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3544. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3545. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3546. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3547. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3548. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3549. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3550. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3551. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3552. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3553. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  3554. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  3555. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3556. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3557. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3558. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  3559. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  3560. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3561. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3562. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3563. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3564. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3565. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3566. "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
  3567. "microsoft.extensions.logging.abstractions.nuspec",
  3568. "useSharedDesignerContext.txt"
  3569. ]
  3570. },
  3571. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  3572. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  3573. "type": "package",
  3574. "path": "microsoft.extensions.logging.configuration/5.0.0",
  3575. "files": [
  3576. ".nupkg.metadata",
  3577. ".signature.p7s",
  3578. "Icon.png",
  3579. "LICENSE.TXT",
  3580. "THIRD-PARTY-NOTICES.TXT",
  3581. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  3582. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  3583. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3584. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3585. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  3586. "microsoft.extensions.logging.configuration.nuspec",
  3587. "useSharedDesignerContext.txt",
  3588. "version.txt"
  3589. ]
  3590. },
  3591. "Microsoft.Extensions.Logging.Console/5.0.0": {
  3592. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  3593. "type": "package",
  3594. "path": "microsoft.extensions.logging.console/5.0.0",
  3595. "files": [
  3596. ".nupkg.metadata",
  3597. ".signature.p7s",
  3598. "Icon.png",
  3599. "LICENSE.TXT",
  3600. "THIRD-PARTY-NOTICES.TXT",
  3601. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  3602. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  3603. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  3604. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3606. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3607. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  3608. "microsoft.extensions.logging.console.nuspec",
  3609. "useSharedDesignerContext.txt",
  3610. "version.txt"
  3611. ]
  3612. },
  3613. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  3614. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  3615. "type": "package",
  3616. "path": "microsoft.extensions.logging.debug/5.0.0",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "Icon.png",
  3621. "LICENSE.TXT",
  3622. "THIRD-PARTY-NOTICES.TXT",
  3623. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  3624. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  3625. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  3626. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  3627. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  3628. "microsoft.extensions.logging.debug.nuspec",
  3629. "useSharedDesignerContext.txt",
  3630. "version.txt"
  3631. ]
  3632. },
  3633. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  3634. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  3635. "type": "package",
  3636. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  3637. "files": [
  3638. ".nupkg.metadata",
  3639. ".signature.p7s",
  3640. "Icon.png",
  3641. "LICENSE.TXT",
  3642. "THIRD-PARTY-NOTICES.TXT",
  3643. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  3644. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  3645. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  3646. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  3647. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  3648. "microsoft.extensions.logging.eventlog.nuspec",
  3649. "useSharedDesignerContext.txt",
  3650. "version.txt"
  3651. ]
  3652. },
  3653. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  3654. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  3655. "type": "package",
  3656. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  3657. "files": [
  3658. ".nupkg.metadata",
  3659. ".signature.p7s",
  3660. "Icon.png",
  3661. "LICENSE.TXT",
  3662. "THIRD-PARTY-NOTICES.TXT",
  3663. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  3664. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  3665. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  3666. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  3667. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  3668. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  3669. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  3670. "microsoft.extensions.logging.eventsource.nuspec",
  3671. "useSharedDesignerContext.txt",
  3672. "version.txt"
  3673. ]
  3674. },
  3675. "Microsoft.Extensions.Options/7.0.0": {
  3676. "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  3677. "type": "package",
  3678. "path": "microsoft.extensions.options/7.0.0",
  3679. "files": [
  3680. ".nupkg.metadata",
  3681. ".signature.p7s",
  3682. "Icon.png",
  3683. "LICENSE.TXT",
  3684. "THIRD-PARTY-NOTICES.TXT",
  3685. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  3686. "buildTransitive/net462/_._",
  3687. "buildTransitive/net6.0/_._",
  3688. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  3689. "lib/net462/Microsoft.Extensions.Options.dll",
  3690. "lib/net462/Microsoft.Extensions.Options.xml",
  3691. "lib/net6.0/Microsoft.Extensions.Options.dll",
  3692. "lib/net6.0/Microsoft.Extensions.Options.xml",
  3693. "lib/net7.0/Microsoft.Extensions.Options.dll",
  3694. "lib/net7.0/Microsoft.Extensions.Options.xml",
  3695. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3696. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3697. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3698. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3699. "microsoft.extensions.options.7.0.0.nupkg.sha512",
  3700. "microsoft.extensions.options.nuspec",
  3701. "useSharedDesignerContext.txt"
  3702. ]
  3703. },
  3704. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  3705. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  3706. "type": "package",
  3707. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  3708. "files": [
  3709. ".nupkg.metadata",
  3710. ".signature.p7s",
  3711. "Icon.png",
  3712. "LICENSE.TXT",
  3713. "THIRD-PARTY-NOTICES.TXT",
  3714. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3715. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3716. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3717. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3718. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  3719. "microsoft.extensions.options.configurationextensions.nuspec",
  3720. "useSharedDesignerContext.txt",
  3721. "version.txt"
  3722. ]
  3723. },
  3724. "Microsoft.Extensions.Primitives/7.0.0": {
  3725. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3726. "type": "package",
  3727. "path": "microsoft.extensions.primitives/7.0.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "Icon.png",
  3732. "LICENSE.TXT",
  3733. "THIRD-PARTY-NOTICES.TXT",
  3734. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3735. "buildTransitive/net462/_._",
  3736. "buildTransitive/net6.0/_._",
  3737. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3738. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3739. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3740. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3741. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3742. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3743. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3744. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3745. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3746. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3747. "microsoft.extensions.primitives.nuspec",
  3748. "useSharedDesignerContext.txt"
  3749. ]
  3750. },
  3751. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  3752. "sha512": "6A0fyZkxoUUj1dpXzLAWwI89YmKZ+ZSp1DCg+gN6llcXJwfYo1IIQZoCkuo6T7vUxw/w1CSk/Pl04NQ4fno+DQ==",
  3753. "type": "package",
  3754. "path": "microsoft.io.recyclablememorystream/1.4.1",
  3755. "files": [
  3756. ".nupkg.metadata",
  3757. ".signature.p7s",
  3758. "lib/net40/Microsoft.IO.RecyclableMemoryStream.dll",
  3759. "lib/net40/Microsoft.IO.RecyclableMemoryStream.xml",
  3760. "lib/net45/Microsoft.IO.RecyclableMemoryStream.dll",
  3761. "lib/net45/Microsoft.IO.RecyclableMemoryStream.xml",
  3762. "lib/net46/Microsoft.IO.RecyclableMemoryStream.dll",
  3763. "lib/net46/Microsoft.IO.RecyclableMemoryStream.xml",
  3764. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  3765. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  3766. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.dll",
  3767. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.xml",
  3768. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  3769. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  3770. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  3771. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  3772. "microsoft.io.recyclablememorystream.1.4.1.nupkg.sha512",
  3773. "microsoft.io.recyclablememorystream.nuspec"
  3774. ]
  3775. },
  3776. "Microsoft.NETCore.Platforms/5.0.0": {
  3777. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3778. "type": "package",
  3779. "path": "microsoft.netcore.platforms/5.0.0",
  3780. "files": [
  3781. ".nupkg.metadata",
  3782. ".signature.p7s",
  3783. "Icon.png",
  3784. "LICENSE.TXT",
  3785. "THIRD-PARTY-NOTICES.TXT",
  3786. "lib/netstandard1.0/_._",
  3787. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3788. "microsoft.netcore.platforms.nuspec",
  3789. "runtime.json",
  3790. "useSharedDesignerContext.txt",
  3791. "version.txt"
  3792. ]
  3793. },
  3794. "Microsoft.NETCore.Targets/1.1.0": {
  3795. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3796. "type": "package",
  3797. "path": "microsoft.netcore.targets/1.1.0",
  3798. "files": [
  3799. ".nupkg.metadata",
  3800. ".signature.p7s",
  3801. "ThirdPartyNotices.txt",
  3802. "dotnet_library_license.txt",
  3803. "lib/netstandard1.0/_._",
  3804. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3805. "microsoft.netcore.targets.nuspec",
  3806. "runtime.json"
  3807. ]
  3808. },
  3809. "Microsoft.Win32.Registry/5.0.0": {
  3810. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  3811. "type": "package",
  3812. "path": "microsoft.win32.registry/5.0.0",
  3813. "files": [
  3814. ".nupkg.metadata",
  3815. ".signature.p7s",
  3816. "Icon.png",
  3817. "LICENSE.TXT",
  3818. "THIRD-PARTY-NOTICES.TXT",
  3819. "lib/net46/Microsoft.Win32.Registry.dll",
  3820. "lib/net461/Microsoft.Win32.Registry.dll",
  3821. "lib/net461/Microsoft.Win32.Registry.xml",
  3822. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3823. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3824. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3825. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  3826. "microsoft.win32.registry.nuspec",
  3827. "ref/net46/Microsoft.Win32.Registry.dll",
  3828. "ref/net461/Microsoft.Win32.Registry.dll",
  3829. "ref/net461/Microsoft.Win32.Registry.xml",
  3830. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3831. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3832. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3833. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3834. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3835. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3836. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3837. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3838. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3839. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3840. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3841. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3842. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3843. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3844. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3845. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3846. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3847. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3848. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3849. "useSharedDesignerContext.txt",
  3850. "version.txt"
  3851. ]
  3852. },
  3853. "Microsoft.Win32.SystemEvents/7.0.0": {
  3854. "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  3855. "type": "package",
  3856. "path": "microsoft.win32.systemevents/7.0.0",
  3857. "files": [
  3858. ".nupkg.metadata",
  3859. ".signature.p7s",
  3860. "Icon.png",
  3861. "LICENSE.TXT",
  3862. "THIRD-PARTY-NOTICES.TXT",
  3863. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  3864. "buildTransitive/net462/_._",
  3865. "buildTransitive/net6.0/_._",
  3866. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3867. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  3868. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  3869. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3870. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3871. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  3872. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  3873. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3874. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3875. "microsoft.win32.systemevents.7.0.0.nupkg.sha512",
  3876. "microsoft.win32.systemevents.nuspec",
  3877. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3878. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3879. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  3880. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  3881. "useSharedDesignerContext.txt"
  3882. ]
  3883. },
  3884. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  3885. "sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
  3886. "type": "package",
  3887. "path": "microsoft.xaml.behaviors.wpf/1.1.31",
  3888. "hasTools": true,
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "lib/net45/Design/Microsoft.Xaml.Behaviors.Design.dll",
  3893. "lib/net45/Microsoft.Xaml.Behaviors.dll",
  3894. "lib/net45/Microsoft.Xaml.Behaviors.pdb",
  3895. "lib/net45/Microsoft.Xaml.Behaviors.xml",
  3896. "lib/net5.0-windows7.0/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  3897. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll",
  3898. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.pdb",
  3899. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.xml",
  3900. "lib/netcoreapp3.1/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  3901. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
  3902. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
  3903. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
  3904. "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
  3905. "microsoft.xaml.behaviors.wpf.nuspec",
  3906. "tools/Install.ps1"
  3907. ]
  3908. },
  3909. "Newtonsoft.Json/9.0.1": {
  3910. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  3911. "type": "package",
  3912. "path": "newtonsoft.json/9.0.1",
  3913. "hasTools": true,
  3914. "files": [
  3915. ".nupkg.metadata",
  3916. ".signature.p7s",
  3917. "lib/net20/Newtonsoft.Json.dll",
  3918. "lib/net20/Newtonsoft.Json.xml",
  3919. "lib/net35/Newtonsoft.Json.dll",
  3920. "lib/net35/Newtonsoft.Json.xml",
  3921. "lib/net40/Newtonsoft.Json.dll",
  3922. "lib/net40/Newtonsoft.Json.xml",
  3923. "lib/net45/Newtonsoft.Json.dll",
  3924. "lib/net45/Newtonsoft.Json.xml",
  3925. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3926. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3927. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  3928. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  3929. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  3930. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  3931. "newtonsoft.json.9.0.1.nupkg.sha512",
  3932. "newtonsoft.json.nuspec",
  3933. "tools/install.ps1"
  3934. ]
  3935. },
  3936. "NModbus4.NetCore/2.0.1": {
  3937. "sha512": "+utot9E9UOwBq3zSzHaDn9n+J4gpaGgAXYTTZyXIkdeUJlVrogXLQlz7H2za4GeJziGvanzGAl6n3fdyULMqSw==",
  3938. "type": "package",
  3939. "path": "nmodbus4.netcore/2.0.1",
  3940. "files": [
  3941. ".nupkg.metadata",
  3942. ".signature.p7s",
  3943. "LICENSE",
  3944. "README.md",
  3945. "lib/net6.0/Modbus.dll",
  3946. "nmodbus4.netcore.2.0.1.nupkg.sha512",
  3947. "nmodbus4.netcore.nuspec"
  3948. ]
  3949. },
  3950. "Panuon.UI.Silver/1.1.3.4": {
  3951. "sha512": "KURGslfhVctESnoAUAvzYntfVRMBjo2CBfwCx8jG/FAV1UZPRqU3CzxYDboZ93/5S4smFab+emLtCEAxpV0zAQ==",
  3952. "type": "package",
  3953. "path": "panuon.ui.silver/1.1.3.4",
  3954. "files": [
  3955. ".nupkg.metadata",
  3956. ".signature.p7s",
  3957. "lib/net40/Panuon.UI.Silver.dll",
  3958. "lib/net45/Panuon.UI.Silver.dll",
  3959. "lib/netcoreapp3.1/Panuon.UI.Silver.dll",
  3960. "panuon.ui.silver.1.1.3.4.nupkg.sha512",
  3961. "panuon.ui.silver.nuspec"
  3962. ]
  3963. },
  3964. "Prism.Core/8.1.97": {
  3965. "sha512": "EP5zrvWddw3eSq25Y7hHnDYdmLZEC2Z/gMrvmHzUuLbitmA1UaS7wQUlSwNr9Km8lzJNCvytFnaGBEFukHgoHg==",
  3966. "type": "package",
  3967. "path": "prism.core/8.1.97",
  3968. "files": [
  3969. ".nupkg.metadata",
  3970. ".signature.p7s",
  3971. "LICENSE",
  3972. "lib/net461/Prism.dll",
  3973. "lib/net461/Prism.pdb",
  3974. "lib/net461/Prism.xml",
  3975. "lib/net47/Prism.dll",
  3976. "lib/net47/Prism.pdb",
  3977. "lib/net47/Prism.xml",
  3978. "lib/net5.0/Prism.dll",
  3979. "lib/net5.0/Prism.pdb",
  3980. "lib/net5.0/Prism.xml",
  3981. "lib/netstandard2.0/Prism.dll",
  3982. "lib/netstandard2.0/Prism.pdb",
  3983. "lib/netstandard2.0/Prism.xml",
  3984. "prism-logo.png",
  3985. "prism.core.8.1.97.nupkg.sha512",
  3986. "prism.core.nuspec",
  3987. "readme.txt"
  3988. ]
  3989. },
  3990. "Prism.Unity/8.1.97": {
  3991. "sha512": "PDKDjC9HAFmCEoP8bgCwoGup0Lm0NyvYmN/kLbfO0Q4zmL/sZBDbP2KNC/UguXWOy0iH6fWiH9JYQYCGFZ4oBw==",
  3992. "type": "package",
  3993. "path": "prism.unity/8.1.97",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "LICENSE",
  3998. "lib/net461/Prism.Unity.Wpf.dll",
  3999. "lib/net461/Prism.Unity.Wpf.pdb",
  4000. "lib/net461/Prism.Unity.Wpf.xml",
  4001. "lib/net47/Prism.Unity.Wpf.dll",
  4002. "lib/net47/Prism.Unity.Wpf.pdb",
  4003. "lib/net47/Prism.Unity.Wpf.xml",
  4004. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll",
  4005. "lib/net5.0-windows7.0/Prism.Unity.Wpf.pdb",
  4006. "lib/net5.0-windows7.0/Prism.Unity.Wpf.xml",
  4007. "lib/netcoreapp3.1/Prism.Unity.Wpf.dll",
  4008. "lib/netcoreapp3.1/Prism.Unity.Wpf.pdb",
  4009. "lib/netcoreapp3.1/Prism.Unity.Wpf.xml",
  4010. "prism-logo.png",
  4011. "prism.unity.8.1.97.nupkg.sha512",
  4012. "prism.unity.nuspec",
  4013. "readme.txt"
  4014. ]
  4015. },
  4016. "Prism.Wpf/8.1.97": {
  4017. "sha512": "ZEa6S1mK35h8/blyb0uR0ed3wkpHtPdhB4eniXINJnTiJMWlGl/As6SVlFFdOPD+qsEdWNYV3xgyQD/ue5cvBA==",
  4018. "type": "package",
  4019. "path": "prism.wpf/8.1.97",
  4020. "files": [
  4021. ".nupkg.metadata",
  4022. ".signature.p7s",
  4023. "LICENSE",
  4024. "lib/net461/Prism.Wpf.dll",
  4025. "lib/net461/Prism.Wpf.pdb",
  4026. "lib/net461/Prism.Wpf.xml",
  4027. "lib/net47/Prism.Wpf.dll",
  4028. "lib/net47/Prism.Wpf.pdb",
  4029. "lib/net47/Prism.Wpf.xml",
  4030. "lib/net5.0-windows7.0/Prism.Wpf.dll",
  4031. "lib/net5.0-windows7.0/Prism.Wpf.pdb",
  4032. "lib/net5.0-windows7.0/Prism.Wpf.xml",
  4033. "lib/netcoreapp3.1/Prism.Wpf.dll",
  4034. "lib/netcoreapp3.1/Prism.Wpf.pdb",
  4035. "lib/netcoreapp3.1/Prism.Wpf.xml",
  4036. "prism-logo.png",
  4037. "prism.wpf.8.1.97.nupkg.sha512",
  4038. "prism.wpf.nuspec",
  4039. "readme.txt"
  4040. ]
  4041. },
  4042. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4043. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4044. "type": "package",
  4045. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4046. "files": [
  4047. ".nupkg.metadata",
  4048. ".signature.p7s",
  4049. "ThirdPartyNotices.txt",
  4050. "dotnet_library_license.txt",
  4051. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4052. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4053. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4054. ]
  4055. },
  4056. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4057. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4058. "type": "package",
  4059. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4060. "files": [
  4061. ".nupkg.metadata",
  4062. ".signature.p7s",
  4063. "ThirdPartyNotices.txt",
  4064. "dotnet_library_license.txt",
  4065. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4066. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4067. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4068. ]
  4069. },
  4070. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4071. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4072. "type": "package",
  4073. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4074. "files": [
  4075. ".nupkg.metadata",
  4076. ".signature.p7s",
  4077. "ThirdPartyNotices.txt",
  4078. "dotnet_library_license.txt",
  4079. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4080. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4081. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4082. ]
  4083. },
  4084. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  4085. "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==",
  4086. "type": "package",
  4087. "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0",
  4088. "files": [
  4089. ".nupkg.metadata",
  4090. ".signature.p7s",
  4091. "Icon.png",
  4092. "LICENSE.TXT",
  4093. "THIRD-PARTY-NOTICES.TXT",
  4094. "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4095. "runtime.linux-arm.runtime.native.system.io.ports.nuspec",
  4096. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so",
  4097. "useSharedDesignerContext.txt"
  4098. ]
  4099. },
  4100. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  4101. "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==",
  4102. "type": "package",
  4103. "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. ".signature.p7s",
  4107. "Icon.png",
  4108. "LICENSE.TXT",
  4109. "THIRD-PARTY-NOTICES.TXT",
  4110. "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4111. "runtime.linux-arm64.runtime.native.system.io.ports.nuspec",
  4112. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so",
  4113. "useSharedDesignerContext.txt"
  4114. ]
  4115. },
  4116. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  4117. "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==",
  4118. "type": "package",
  4119. "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "Icon.png",
  4124. "LICENSE.TXT",
  4125. "THIRD-PARTY-NOTICES.TXT",
  4126. "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4127. "runtime.linux-x64.runtime.native.system.io.ports.nuspec",
  4128. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so",
  4129. "useSharedDesignerContext.txt"
  4130. ]
  4131. },
  4132. "runtime.native.System/4.3.0": {
  4133. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4134. "type": "package",
  4135. "path": "runtime.native.system/4.3.0",
  4136. "files": [
  4137. ".nupkg.metadata",
  4138. ".signature.p7s",
  4139. "ThirdPartyNotices.txt",
  4140. "dotnet_library_license.txt",
  4141. "lib/netstandard1.0/_._",
  4142. "runtime.native.system.4.3.0.nupkg.sha512",
  4143. "runtime.native.system.nuspec"
  4144. ]
  4145. },
  4146. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  4147. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  4148. "type": "package",
  4149. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  4150. "files": [
  4151. ".nupkg.metadata",
  4152. ".signature.p7s",
  4153. "LICENSE.TXT",
  4154. "THIRD-PARTY-NOTICES.TXT",
  4155. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  4156. "runtime.native.system.data.sqlclient.sni.nuspec",
  4157. "useSharedDesignerContext.txt",
  4158. "version.txt"
  4159. ]
  4160. },
  4161. "runtime.native.System.IO.Ports/6.0.0": {
  4162. "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
  4163. "type": "package",
  4164. "path": "runtime.native.system.io.ports/6.0.0",
  4165. "files": [
  4166. ".nupkg.metadata",
  4167. ".signature.p7s",
  4168. "Icon.png",
  4169. "LICENSE.TXT",
  4170. "THIRD-PARTY-NOTICES.TXT",
  4171. "runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4172. "runtime.native.system.io.ports.nuspec",
  4173. "useSharedDesignerContext.txt"
  4174. ]
  4175. },
  4176. "runtime.native.System.Net.Http/4.3.0": {
  4177. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4178. "type": "package",
  4179. "path": "runtime.native.system.net.http/4.3.0",
  4180. "files": [
  4181. ".nupkg.metadata",
  4182. ".signature.p7s",
  4183. "ThirdPartyNotices.txt",
  4184. "dotnet_library_license.txt",
  4185. "lib/netstandard1.0/_._",
  4186. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4187. "runtime.native.system.net.http.nuspec"
  4188. ]
  4189. },
  4190. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4191. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4192. "type": "package",
  4193. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "ThirdPartyNotices.txt",
  4198. "dotnet_library_license.txt",
  4199. "lib/netstandard1.0/_._",
  4200. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4201. "runtime.native.system.security.cryptography.apple.nuspec"
  4202. ]
  4203. },
  4204. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4205. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4206. "type": "package",
  4207. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "ThirdPartyNotices.txt",
  4212. "dotnet_library_license.txt",
  4213. "lib/netstandard1.0/_._",
  4214. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4215. "runtime.native.system.security.cryptography.openssl.nuspec"
  4216. ]
  4217. },
  4218. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4219. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4220. "type": "package",
  4221. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4222. "files": [
  4223. ".nupkg.metadata",
  4224. ".signature.p7s",
  4225. "ThirdPartyNotices.txt",
  4226. "dotnet_library_license.txt",
  4227. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4228. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4229. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4230. ]
  4231. },
  4232. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4233. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4234. "type": "package",
  4235. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4236. "files": [
  4237. ".nupkg.metadata",
  4238. ".signature.p7s",
  4239. "ThirdPartyNotices.txt",
  4240. "dotnet_library_license.txt",
  4241. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4242. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4243. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4244. ]
  4245. },
  4246. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  4247. "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==",
  4248. "type": "package",
  4249. "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "Icon.png",
  4254. "LICENSE.TXT",
  4255. "THIRD-PARTY-NOTICES.TXT",
  4256. "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4257. "runtime.osx-arm64.runtime.native.system.io.ports.nuspec",
  4258. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib",
  4259. "useSharedDesignerContext.txt"
  4260. ]
  4261. },
  4262. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  4263. "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==",
  4264. "type": "package",
  4265. "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0",
  4266. "files": [
  4267. ".nupkg.metadata",
  4268. ".signature.p7s",
  4269. "Icon.png",
  4270. "LICENSE.TXT",
  4271. "THIRD-PARTY-NOTICES.TXT",
  4272. "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  4273. "runtime.osx-x64.runtime.native.system.io.ports.nuspec",
  4274. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib",
  4275. "useSharedDesignerContext.txt"
  4276. ]
  4277. },
  4278. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4279. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4280. "type": "package",
  4281. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4282. "files": [
  4283. ".nupkg.metadata",
  4284. ".signature.p7s",
  4285. "ThirdPartyNotices.txt",
  4286. "dotnet_library_license.txt",
  4287. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4288. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4289. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4290. ]
  4291. },
  4292. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4293. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4294. "type": "package",
  4295. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4296. "files": [
  4297. ".nupkg.metadata",
  4298. ".signature.p7s",
  4299. "ThirdPartyNotices.txt",
  4300. "dotnet_library_license.txt",
  4301. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4302. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4303. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4304. ]
  4305. },
  4306. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4307. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4308. "type": "package",
  4309. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4310. "files": [
  4311. ".nupkg.metadata",
  4312. ".signature.p7s",
  4313. "ThirdPartyNotices.txt",
  4314. "dotnet_library_license.txt",
  4315. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4316. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4317. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4318. ]
  4319. },
  4320. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4321. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4322. "type": "package",
  4323. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4324. "files": [
  4325. ".nupkg.metadata",
  4326. ".signature.p7s",
  4327. "ThirdPartyNotices.txt",
  4328. "dotnet_library_license.txt",
  4329. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4330. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4331. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4332. ]
  4333. },
  4334. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4335. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4336. "type": "package",
  4337. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4338. "files": [
  4339. ".nupkg.metadata",
  4340. ".signature.p7s",
  4341. "ThirdPartyNotices.txt",
  4342. "dotnet_library_license.txt",
  4343. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4344. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4345. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4346. ]
  4347. },
  4348. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4349. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4350. "type": "package",
  4351. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4352. "files": [
  4353. ".nupkg.metadata",
  4354. ".signature.p7s",
  4355. "ThirdPartyNotices.txt",
  4356. "dotnet_library_license.txt",
  4357. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4358. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4359. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4360. ]
  4361. },
  4362. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4363. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4364. "type": "package",
  4365. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "ThirdPartyNotices.txt",
  4370. "dotnet_library_license.txt",
  4371. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4372. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4373. "runtimes/win-arm64/native/sni.dll",
  4374. "useSharedDesignerContext.txt",
  4375. "version.txt"
  4376. ]
  4377. },
  4378. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4379. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4380. "type": "package",
  4381. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "ThirdPartyNotices.txt",
  4386. "dotnet_library_license.txt",
  4387. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4388. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4389. "runtimes/win-x64/native/sni.dll",
  4390. "useSharedDesignerContext.txt",
  4391. "version.txt"
  4392. ]
  4393. },
  4394. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4395. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4396. "type": "package",
  4397. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4398. "files": [
  4399. ".nupkg.metadata",
  4400. ".signature.p7s",
  4401. "ThirdPartyNotices.txt",
  4402. "dotnet_library_license.txt",
  4403. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4404. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4405. "runtimes/win-x86/native/sni.dll",
  4406. "useSharedDesignerContext.txt",
  4407. "version.txt"
  4408. ]
  4409. },
  4410. "Serilog/2.10.0": {
  4411. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  4412. "type": "package",
  4413. "path": "serilog/2.10.0",
  4414. "files": [
  4415. ".nupkg.metadata",
  4416. ".signature.p7s",
  4417. "icon.png",
  4418. "lib/net45/Serilog.dll",
  4419. "lib/net45/Serilog.xml",
  4420. "lib/net46/Serilog.dll",
  4421. "lib/net46/Serilog.xml",
  4422. "lib/netstandard1.0/Serilog.dll",
  4423. "lib/netstandard1.0/Serilog.xml",
  4424. "lib/netstandard1.3/Serilog.dll",
  4425. "lib/netstandard1.3/Serilog.xml",
  4426. "lib/netstandard2.0/Serilog.dll",
  4427. "lib/netstandard2.0/Serilog.xml",
  4428. "lib/netstandard2.1/Serilog.dll",
  4429. "lib/netstandard2.1/Serilog.xml",
  4430. "serilog.2.10.0.nupkg.sha512",
  4431. "serilog.nuspec"
  4432. ]
  4433. },
  4434. "Serilog.Enrichers.Thread/3.1.0": {
  4435. "sha512": "85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
  4436. "type": "package",
  4437. "path": "serilog.enrichers.thread/3.1.0",
  4438. "files": [
  4439. ".nupkg.metadata",
  4440. ".signature.p7s",
  4441. "lib/net45/Serilog.Enrichers.Thread.dll",
  4442. "lib/net45/Serilog.Enrichers.Thread.xml",
  4443. "lib/netstandard1.0/Serilog.Enrichers.Thread.dll",
  4444. "lib/netstandard1.0/Serilog.Enrichers.Thread.xml",
  4445. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll",
  4446. "lib/netstandard2.0/Serilog.Enrichers.Thread.xml",
  4447. "serilog.enrichers.thread.3.1.0.nupkg.sha512",
  4448. "serilog.enrichers.thread.nuspec"
  4449. ]
  4450. },
  4451. "Serilog.Extensions.Logging/3.0.1": {
  4452. "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
  4453. "type": "package",
  4454. "path": "serilog.extensions.logging/3.0.1",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  4459. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  4460. "serilog.extensions.logging.3.0.1.nupkg.sha512",
  4461. "serilog.extensions.logging.nuspec"
  4462. ]
  4463. },
  4464. "Serilog.Formatting.Compact/1.1.0": {
  4465. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  4466. "type": "package",
  4467. "path": "serilog.formatting.compact/1.1.0",
  4468. "files": [
  4469. ".nupkg.metadata",
  4470. ".signature.p7s",
  4471. "lib/net452/Serilog.Formatting.Compact.dll",
  4472. "lib/net452/Serilog.Formatting.Compact.xml",
  4473. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  4474. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  4475. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  4476. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  4477. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  4478. "serilog.formatting.compact.nuspec"
  4479. ]
  4480. },
  4481. "Serilog.Settings.Configuration/3.1.0": {
  4482. "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
  4483. "type": "package",
  4484. "path": "serilog.settings.configuration/3.1.0",
  4485. "files": [
  4486. ".nupkg.metadata",
  4487. ".signature.p7s",
  4488. "lib/net451/Serilog.Settings.Configuration.dll",
  4489. "lib/net451/Serilog.Settings.Configuration.xml",
  4490. "lib/net461/Serilog.Settings.Configuration.dll",
  4491. "lib/net461/Serilog.Settings.Configuration.xml",
  4492. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  4493. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  4494. "serilog.settings.configuration.3.1.0.nupkg.sha512",
  4495. "serilog.settings.configuration.nuspec"
  4496. ]
  4497. },
  4498. "Serilog.Sinks.Console/3.1.1": {
  4499. "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
  4500. "type": "package",
  4501. "path": "serilog.sinks.console/3.1.1",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "lib/net45/Serilog.Sinks.Console.dll",
  4506. "lib/net45/Serilog.Sinks.Console.xml",
  4507. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
  4508. "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
  4509. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  4510. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  4511. "serilog.sinks.console.3.1.1.nupkg.sha512",
  4512. "serilog.sinks.console.nuspec"
  4513. ]
  4514. },
  4515. "Serilog.Sinks.File/4.1.0": {
  4516. "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
  4517. "type": "package",
  4518. "path": "serilog.sinks.file/4.1.0",
  4519. "files": [
  4520. ".nupkg.metadata",
  4521. ".signature.p7s",
  4522. "lib/net45/Serilog.Sinks.File.dll",
  4523. "lib/net45/Serilog.Sinks.File.pdb",
  4524. "lib/net45/Serilog.Sinks.File.xml",
  4525. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  4526. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  4527. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  4528. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  4529. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  4530. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  4531. "serilog.sinks.file.4.1.0.nupkg.sha512",
  4532. "serilog.sinks.file.nuspec"
  4533. ]
  4534. },
  4535. "SQLitePCLRaw.core/2.0.4": {
  4536. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  4537. "type": "package",
  4538. "path": "sqlitepclraw.core/2.0.4",
  4539. "files": [
  4540. ".nupkg.metadata",
  4541. ".signature.p7s",
  4542. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  4543. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  4544. "sqlitepclraw.core.nuspec"
  4545. ]
  4546. },
  4547. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  4548. "sha512": "ZQU6AdbxWAqS8sEhrF+PhOV5I5mHx04YI3uu/c1gTNs86wPu6F3/D/kcMyArg2hm3G2U1/8aMGFICMC9iBzJTA==",
  4549. "type": "package",
  4550. "path": "stub.system.data.sqlite.core.netstandard/1.0.114",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "lib/netstandard2.0/System.Data.SQLite.dll",
  4555. "lib/netstandard2.0/System.Data.SQLite.dll.altconfig",
  4556. "lib/netstandard2.0/System.Data.SQLite.xml",
  4557. "lib/netstandard2.1/System.Data.SQLite.dll",
  4558. "lib/netstandard2.1/System.Data.SQLite.dll.altconfig",
  4559. "lib/netstandard2.1/System.Data.SQLite.xml",
  4560. "runtimes/linux-x64/native/SQLite.Interop.dll",
  4561. "runtimes/osx-x64/native/SQLite.Interop.dll",
  4562. "runtimes/win-x64/native/SQLite.Interop.dll",
  4563. "runtimes/win-x86/native/SQLite.Interop.dll",
  4564. "stub.system.data.sqlite.core.netstandard.1.0.114.nupkg.sha512",
  4565. "stub.system.data.sqlite.core.netstandard.nuspec"
  4566. ]
  4567. },
  4568. "System.AppContext/4.1.0": {
  4569. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  4570. "type": "package",
  4571. "path": "system.appcontext/4.1.0",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. "ThirdPartyNotices.txt",
  4575. "dotnet_library_license.txt",
  4576. "lib/MonoAndroid10/_._",
  4577. "lib/MonoTouch10/_._",
  4578. "lib/net46/System.AppContext.dll",
  4579. "lib/net463/System.AppContext.dll",
  4580. "lib/netcore50/System.AppContext.dll",
  4581. "lib/netstandard1.6/System.AppContext.dll",
  4582. "lib/xamarinios10/_._",
  4583. "lib/xamarinmac20/_._",
  4584. "lib/xamarintvos10/_._",
  4585. "lib/xamarinwatchos10/_._",
  4586. "ref/MonoAndroid10/_._",
  4587. "ref/MonoTouch10/_._",
  4588. "ref/net46/System.AppContext.dll",
  4589. "ref/net463/System.AppContext.dll",
  4590. "ref/netstandard/_._",
  4591. "ref/netstandard1.3/System.AppContext.dll",
  4592. "ref/netstandard1.3/System.AppContext.xml",
  4593. "ref/netstandard1.3/de/System.AppContext.xml",
  4594. "ref/netstandard1.3/es/System.AppContext.xml",
  4595. "ref/netstandard1.3/fr/System.AppContext.xml",
  4596. "ref/netstandard1.3/it/System.AppContext.xml",
  4597. "ref/netstandard1.3/ja/System.AppContext.xml",
  4598. "ref/netstandard1.3/ko/System.AppContext.xml",
  4599. "ref/netstandard1.3/ru/System.AppContext.xml",
  4600. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4601. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4602. "ref/netstandard1.6/System.AppContext.dll",
  4603. "ref/netstandard1.6/System.AppContext.xml",
  4604. "ref/netstandard1.6/de/System.AppContext.xml",
  4605. "ref/netstandard1.6/es/System.AppContext.xml",
  4606. "ref/netstandard1.6/fr/System.AppContext.xml",
  4607. "ref/netstandard1.6/it/System.AppContext.xml",
  4608. "ref/netstandard1.6/ja/System.AppContext.xml",
  4609. "ref/netstandard1.6/ko/System.AppContext.xml",
  4610. "ref/netstandard1.6/ru/System.AppContext.xml",
  4611. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4612. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4613. "ref/xamarinios10/_._",
  4614. "ref/xamarinmac20/_._",
  4615. "ref/xamarintvos10/_._",
  4616. "ref/xamarinwatchos10/_._",
  4617. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4618. "system.appcontext.4.1.0.nupkg.sha512",
  4619. "system.appcontext.nuspec"
  4620. ]
  4621. },
  4622. "System.Collections/4.3.0": {
  4623. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4624. "type": "package",
  4625. "path": "system.collections/4.3.0",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "ThirdPartyNotices.txt",
  4630. "dotnet_library_license.txt",
  4631. "lib/MonoAndroid10/_._",
  4632. "lib/MonoTouch10/_._",
  4633. "lib/net45/_._",
  4634. "lib/portable-net45+win8+wp8+wpa81/_._",
  4635. "lib/win8/_._",
  4636. "lib/wp80/_._",
  4637. "lib/wpa81/_._",
  4638. "lib/xamarinios10/_._",
  4639. "lib/xamarinmac20/_._",
  4640. "lib/xamarintvos10/_._",
  4641. "lib/xamarinwatchos10/_._",
  4642. "ref/MonoAndroid10/_._",
  4643. "ref/MonoTouch10/_._",
  4644. "ref/net45/_._",
  4645. "ref/netcore50/System.Collections.dll",
  4646. "ref/netcore50/System.Collections.xml",
  4647. "ref/netcore50/de/System.Collections.xml",
  4648. "ref/netcore50/es/System.Collections.xml",
  4649. "ref/netcore50/fr/System.Collections.xml",
  4650. "ref/netcore50/it/System.Collections.xml",
  4651. "ref/netcore50/ja/System.Collections.xml",
  4652. "ref/netcore50/ko/System.Collections.xml",
  4653. "ref/netcore50/ru/System.Collections.xml",
  4654. "ref/netcore50/zh-hans/System.Collections.xml",
  4655. "ref/netcore50/zh-hant/System.Collections.xml",
  4656. "ref/netstandard1.0/System.Collections.dll",
  4657. "ref/netstandard1.0/System.Collections.xml",
  4658. "ref/netstandard1.0/de/System.Collections.xml",
  4659. "ref/netstandard1.0/es/System.Collections.xml",
  4660. "ref/netstandard1.0/fr/System.Collections.xml",
  4661. "ref/netstandard1.0/it/System.Collections.xml",
  4662. "ref/netstandard1.0/ja/System.Collections.xml",
  4663. "ref/netstandard1.0/ko/System.Collections.xml",
  4664. "ref/netstandard1.0/ru/System.Collections.xml",
  4665. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4666. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4667. "ref/netstandard1.3/System.Collections.dll",
  4668. "ref/netstandard1.3/System.Collections.xml",
  4669. "ref/netstandard1.3/de/System.Collections.xml",
  4670. "ref/netstandard1.3/es/System.Collections.xml",
  4671. "ref/netstandard1.3/fr/System.Collections.xml",
  4672. "ref/netstandard1.3/it/System.Collections.xml",
  4673. "ref/netstandard1.3/ja/System.Collections.xml",
  4674. "ref/netstandard1.3/ko/System.Collections.xml",
  4675. "ref/netstandard1.3/ru/System.Collections.xml",
  4676. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4677. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4678. "ref/portable-net45+win8+wp8+wpa81/_._",
  4679. "ref/win8/_._",
  4680. "ref/wp80/_._",
  4681. "ref/wpa81/_._",
  4682. "ref/xamarinios10/_._",
  4683. "ref/xamarinmac20/_._",
  4684. "ref/xamarintvos10/_._",
  4685. "ref/xamarinwatchos10/_._",
  4686. "system.collections.4.3.0.nupkg.sha512",
  4687. "system.collections.nuspec"
  4688. ]
  4689. },
  4690. "System.Collections.Concurrent/4.3.0": {
  4691. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4692. "type": "package",
  4693. "path": "system.collections.concurrent/4.3.0",
  4694. "files": [
  4695. ".nupkg.metadata",
  4696. ".signature.p7s",
  4697. "ThirdPartyNotices.txt",
  4698. "dotnet_library_license.txt",
  4699. "lib/MonoAndroid10/_._",
  4700. "lib/MonoTouch10/_._",
  4701. "lib/net45/_._",
  4702. "lib/netcore50/System.Collections.Concurrent.dll",
  4703. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4704. "lib/portable-net45+win8+wpa81/_._",
  4705. "lib/win8/_._",
  4706. "lib/wpa81/_._",
  4707. "lib/xamarinios10/_._",
  4708. "lib/xamarinmac20/_._",
  4709. "lib/xamarintvos10/_._",
  4710. "lib/xamarinwatchos10/_._",
  4711. "ref/MonoAndroid10/_._",
  4712. "ref/MonoTouch10/_._",
  4713. "ref/net45/_._",
  4714. "ref/netcore50/System.Collections.Concurrent.dll",
  4715. "ref/netcore50/System.Collections.Concurrent.xml",
  4716. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4717. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4718. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4719. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4720. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4721. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4722. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4723. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4724. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4725. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4726. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4727. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4728. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4729. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4730. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4731. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4732. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4733. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4734. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4735. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4736. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4737. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4738. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4739. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4740. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4741. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4742. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4743. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4744. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4745. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4746. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4747. "ref/portable-net45+win8+wpa81/_._",
  4748. "ref/win8/_._",
  4749. "ref/wpa81/_._",
  4750. "ref/xamarinios10/_._",
  4751. "ref/xamarinmac20/_._",
  4752. "ref/xamarintvos10/_._",
  4753. "ref/xamarinwatchos10/_._",
  4754. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4755. "system.collections.concurrent.nuspec"
  4756. ]
  4757. },
  4758. "System.Collections.NonGeneric/4.3.0": {
  4759. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4760. "type": "package",
  4761. "path": "system.collections.nongeneric/4.3.0",
  4762. "files": [
  4763. ".nupkg.metadata",
  4764. ".signature.p7s",
  4765. "ThirdPartyNotices.txt",
  4766. "dotnet_library_license.txt",
  4767. "lib/MonoAndroid10/_._",
  4768. "lib/MonoTouch10/_._",
  4769. "lib/net46/System.Collections.NonGeneric.dll",
  4770. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4771. "lib/xamarinios10/_._",
  4772. "lib/xamarinmac20/_._",
  4773. "lib/xamarintvos10/_._",
  4774. "lib/xamarinwatchos10/_._",
  4775. "ref/MonoAndroid10/_._",
  4776. "ref/MonoTouch10/_._",
  4777. "ref/net46/System.Collections.NonGeneric.dll",
  4778. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4779. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4780. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4781. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4782. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4783. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4784. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4785. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4786. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4787. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4788. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4789. "ref/xamarinios10/_._",
  4790. "ref/xamarinmac20/_._",
  4791. "ref/xamarintvos10/_._",
  4792. "ref/xamarinwatchos10/_._",
  4793. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4794. "system.collections.nongeneric.nuspec"
  4795. ]
  4796. },
  4797. "System.Collections.Specialized/4.3.0": {
  4798. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4799. "type": "package",
  4800. "path": "system.collections.specialized/4.3.0",
  4801. "files": [
  4802. ".nupkg.metadata",
  4803. ".signature.p7s",
  4804. "ThirdPartyNotices.txt",
  4805. "dotnet_library_license.txt",
  4806. "lib/MonoAndroid10/_._",
  4807. "lib/MonoTouch10/_._",
  4808. "lib/net46/System.Collections.Specialized.dll",
  4809. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4810. "lib/xamarinios10/_._",
  4811. "lib/xamarinmac20/_._",
  4812. "lib/xamarintvos10/_._",
  4813. "lib/xamarinwatchos10/_._",
  4814. "ref/MonoAndroid10/_._",
  4815. "ref/MonoTouch10/_._",
  4816. "ref/net46/System.Collections.Specialized.dll",
  4817. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4818. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4819. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4820. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4821. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4822. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4823. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4824. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4825. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4826. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4827. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4828. "ref/xamarinios10/_._",
  4829. "ref/xamarinmac20/_._",
  4830. "ref/xamarintvos10/_._",
  4831. "ref/xamarinwatchos10/_._",
  4832. "system.collections.specialized.4.3.0.nupkg.sha512",
  4833. "system.collections.specialized.nuspec"
  4834. ]
  4835. },
  4836. "System.ComponentModel/4.3.0": {
  4837. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4838. "type": "package",
  4839. "path": "system.componentmodel/4.3.0",
  4840. "files": [
  4841. ".nupkg.metadata",
  4842. ".signature.p7s",
  4843. "ThirdPartyNotices.txt",
  4844. "dotnet_library_license.txt",
  4845. "lib/MonoAndroid10/_._",
  4846. "lib/MonoTouch10/_._",
  4847. "lib/net45/_._",
  4848. "lib/netcore50/System.ComponentModel.dll",
  4849. "lib/netstandard1.3/System.ComponentModel.dll",
  4850. "lib/portable-net45+win8+wp8+wpa81/_._",
  4851. "lib/win8/_._",
  4852. "lib/wp80/_._",
  4853. "lib/wpa81/_._",
  4854. "lib/xamarinios10/_._",
  4855. "lib/xamarinmac20/_._",
  4856. "lib/xamarintvos10/_._",
  4857. "lib/xamarinwatchos10/_._",
  4858. "ref/MonoAndroid10/_._",
  4859. "ref/MonoTouch10/_._",
  4860. "ref/net45/_._",
  4861. "ref/netcore50/System.ComponentModel.dll",
  4862. "ref/netcore50/System.ComponentModel.xml",
  4863. "ref/netcore50/de/System.ComponentModel.xml",
  4864. "ref/netcore50/es/System.ComponentModel.xml",
  4865. "ref/netcore50/fr/System.ComponentModel.xml",
  4866. "ref/netcore50/it/System.ComponentModel.xml",
  4867. "ref/netcore50/ja/System.ComponentModel.xml",
  4868. "ref/netcore50/ko/System.ComponentModel.xml",
  4869. "ref/netcore50/ru/System.ComponentModel.xml",
  4870. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4871. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4872. "ref/netstandard1.0/System.ComponentModel.dll",
  4873. "ref/netstandard1.0/System.ComponentModel.xml",
  4874. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4875. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4876. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4877. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4878. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4879. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4880. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4881. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4882. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4883. "ref/portable-net45+win8+wp8+wpa81/_._",
  4884. "ref/win8/_._",
  4885. "ref/wp80/_._",
  4886. "ref/wpa81/_._",
  4887. "ref/xamarinios10/_._",
  4888. "ref/xamarinmac20/_._",
  4889. "ref/xamarintvos10/_._",
  4890. "ref/xamarinwatchos10/_._",
  4891. "system.componentmodel.4.3.0.nupkg.sha512",
  4892. "system.componentmodel.nuspec"
  4893. ]
  4894. },
  4895. "System.ComponentModel.Annotations/5.0.0": {
  4896. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4897. "type": "package",
  4898. "path": "system.componentmodel.annotations/5.0.0",
  4899. "files": [
  4900. ".nupkg.metadata",
  4901. ".signature.p7s",
  4902. "Icon.png",
  4903. "LICENSE.TXT",
  4904. "THIRD-PARTY-NOTICES.TXT",
  4905. "lib/MonoAndroid10/_._",
  4906. "lib/MonoTouch10/_._",
  4907. "lib/net45/_._",
  4908. "lib/net461/System.ComponentModel.Annotations.dll",
  4909. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4910. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4911. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4912. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4913. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4914. "lib/portable-net45+win8/_._",
  4915. "lib/win8/_._",
  4916. "lib/xamarinios10/_._",
  4917. "lib/xamarinmac20/_._",
  4918. "lib/xamarintvos10/_._",
  4919. "lib/xamarinwatchos10/_._",
  4920. "ref/MonoAndroid10/_._",
  4921. "ref/MonoTouch10/_._",
  4922. "ref/net45/_._",
  4923. "ref/net461/System.ComponentModel.Annotations.dll",
  4924. "ref/net461/System.ComponentModel.Annotations.xml",
  4925. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4926. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4927. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4928. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4929. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4930. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4931. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4932. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4933. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4934. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4935. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4936. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4937. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4938. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4939. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4940. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4941. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4942. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4943. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4944. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4945. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4946. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4947. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4948. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4949. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4950. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4951. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4952. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4953. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4954. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4955. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4956. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4957. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4958. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4959. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4960. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4961. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4962. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4963. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4964. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4965. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4966. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4967. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4968. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4969. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4970. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4971. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4972. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4973. "ref/portable-net45+win8/_._",
  4974. "ref/win8/_._",
  4975. "ref/xamarinios10/_._",
  4976. "ref/xamarinmac20/_._",
  4977. "ref/xamarintvos10/_._",
  4978. "ref/xamarinwatchos10/_._",
  4979. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  4980. "system.componentmodel.annotations.nuspec",
  4981. "useSharedDesignerContext.txt",
  4982. "version.txt"
  4983. ]
  4984. },
  4985. "System.ComponentModel.Primitives/4.3.0": {
  4986. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4987. "type": "package",
  4988. "path": "system.componentmodel.primitives/4.3.0",
  4989. "files": [
  4990. ".nupkg.metadata",
  4991. ".signature.p7s",
  4992. "ThirdPartyNotices.txt",
  4993. "dotnet_library_license.txt",
  4994. "lib/MonoAndroid10/_._",
  4995. "lib/MonoTouch10/_._",
  4996. "lib/net45/System.ComponentModel.Primitives.dll",
  4997. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4998. "lib/xamarinios10/_._",
  4999. "lib/xamarinmac20/_._",
  5000. "lib/xamarintvos10/_._",
  5001. "lib/xamarinwatchos10/_._",
  5002. "ref/MonoAndroid10/_._",
  5003. "ref/MonoTouch10/_._",
  5004. "ref/net45/System.ComponentModel.Primitives.dll",
  5005. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5006. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5007. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5008. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5009. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5010. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5011. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5012. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5013. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5014. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5015. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5016. "ref/xamarinios10/_._",
  5017. "ref/xamarinmac20/_._",
  5018. "ref/xamarintvos10/_._",
  5019. "ref/xamarinwatchos10/_._",
  5020. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5021. "system.componentmodel.primitives.nuspec"
  5022. ]
  5023. },
  5024. "System.ComponentModel.TypeConverter/4.3.0": {
  5025. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5026. "type": "package",
  5027. "path": "system.componentmodel.typeconverter/4.3.0",
  5028. "files": [
  5029. ".nupkg.metadata",
  5030. ".signature.p7s",
  5031. "ThirdPartyNotices.txt",
  5032. "dotnet_library_license.txt",
  5033. "lib/MonoAndroid10/_._",
  5034. "lib/MonoTouch10/_._",
  5035. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5036. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5037. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5038. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5039. "lib/xamarinios10/_._",
  5040. "lib/xamarinmac20/_._",
  5041. "lib/xamarintvos10/_._",
  5042. "lib/xamarinwatchos10/_._",
  5043. "ref/MonoAndroid10/_._",
  5044. "ref/MonoTouch10/_._",
  5045. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5046. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5047. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5048. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5049. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5050. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5051. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5052. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5053. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5054. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5055. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5056. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5057. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5058. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5059. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5060. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5061. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5062. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5063. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5064. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5065. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5066. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5067. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5068. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5069. "ref/xamarinios10/_._",
  5070. "ref/xamarinmac20/_._",
  5071. "ref/xamarintvos10/_._",
  5072. "ref/xamarinwatchos10/_._",
  5073. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5074. "system.componentmodel.typeconverter.nuspec"
  5075. ]
  5076. },
  5077. "System.Console/4.3.0": {
  5078. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5079. "type": "package",
  5080. "path": "system.console/4.3.0",
  5081. "files": [
  5082. ".nupkg.metadata",
  5083. ".signature.p7s",
  5084. "ThirdPartyNotices.txt",
  5085. "dotnet_library_license.txt",
  5086. "lib/MonoAndroid10/_._",
  5087. "lib/MonoTouch10/_._",
  5088. "lib/net46/System.Console.dll",
  5089. "lib/xamarinios10/_._",
  5090. "lib/xamarinmac20/_._",
  5091. "lib/xamarintvos10/_._",
  5092. "lib/xamarinwatchos10/_._",
  5093. "ref/MonoAndroid10/_._",
  5094. "ref/MonoTouch10/_._",
  5095. "ref/net46/System.Console.dll",
  5096. "ref/netstandard1.3/System.Console.dll",
  5097. "ref/netstandard1.3/System.Console.xml",
  5098. "ref/netstandard1.3/de/System.Console.xml",
  5099. "ref/netstandard1.3/es/System.Console.xml",
  5100. "ref/netstandard1.3/fr/System.Console.xml",
  5101. "ref/netstandard1.3/it/System.Console.xml",
  5102. "ref/netstandard1.3/ja/System.Console.xml",
  5103. "ref/netstandard1.3/ko/System.Console.xml",
  5104. "ref/netstandard1.3/ru/System.Console.xml",
  5105. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5106. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5107. "ref/xamarinios10/_._",
  5108. "ref/xamarinmac20/_._",
  5109. "ref/xamarintvos10/_._",
  5110. "ref/xamarinwatchos10/_._",
  5111. "system.console.4.3.0.nupkg.sha512",
  5112. "system.console.nuspec"
  5113. ]
  5114. },
  5115. "System.Data.Common/4.3.0": {
  5116. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5117. "type": "package",
  5118. "path": "system.data.common/4.3.0",
  5119. "files": [
  5120. ".nupkg.metadata",
  5121. ".signature.p7s",
  5122. "ThirdPartyNotices.txt",
  5123. "dotnet_library_license.txt",
  5124. "lib/MonoAndroid10/_._",
  5125. "lib/MonoTouch10/_._",
  5126. "lib/net451/System.Data.Common.dll",
  5127. "lib/netstandard1.2/System.Data.Common.dll",
  5128. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5129. "lib/xamarinios10/_._",
  5130. "lib/xamarinmac20/_._",
  5131. "lib/xamarintvos10/_._",
  5132. "lib/xamarinwatchos10/_._",
  5133. "ref/MonoAndroid10/_._",
  5134. "ref/MonoTouch10/_._",
  5135. "ref/net451/System.Data.Common.dll",
  5136. "ref/netstandard1.2/System.Data.Common.dll",
  5137. "ref/netstandard1.2/System.Data.Common.xml",
  5138. "ref/netstandard1.2/de/System.Data.Common.xml",
  5139. "ref/netstandard1.2/es/System.Data.Common.xml",
  5140. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5141. "ref/netstandard1.2/it/System.Data.Common.xml",
  5142. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5143. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5144. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5145. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5146. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5147. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5148. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5149. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5150. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5151. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5152. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5153. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5154. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5155. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5156. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5157. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5158. "ref/xamarinios10/_._",
  5159. "ref/xamarinmac20/_._",
  5160. "ref/xamarintvos10/_._",
  5161. "ref/xamarinwatchos10/_._",
  5162. "system.data.common.4.3.0.nupkg.sha512",
  5163. "system.data.common.nuspec"
  5164. ]
  5165. },
  5166. "System.Data.SqlClient/4.8.2": {
  5167. "sha512": "80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
  5168. "type": "package",
  5169. "path": "system.data.sqlclient/4.8.2",
  5170. "files": [
  5171. ".nupkg.metadata",
  5172. ".signature.p7s",
  5173. "Icon.png",
  5174. "LICENSE.TXT",
  5175. "THIRD-PARTY-NOTICES.TXT",
  5176. "lib/MonoAndroid10/_._",
  5177. "lib/MonoTouch10/_._",
  5178. "lib/net451/System.Data.SqlClient.dll",
  5179. "lib/net46/System.Data.SqlClient.dll",
  5180. "lib/net461/System.Data.SqlClient.dll",
  5181. "lib/net461/System.Data.SqlClient.xml",
  5182. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5183. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5184. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5185. "lib/netstandard1.2/System.Data.SqlClient.xml",
  5186. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5187. "lib/netstandard1.3/System.Data.SqlClient.xml",
  5188. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5189. "lib/netstandard2.0/System.Data.SqlClient.xml",
  5190. "lib/xamarinios10/_._",
  5191. "lib/xamarinmac20/_._",
  5192. "lib/xamarintvos10/_._",
  5193. "lib/xamarinwatchos10/_._",
  5194. "ref/MonoAndroid10/_._",
  5195. "ref/MonoTouch10/_._",
  5196. "ref/net451/System.Data.SqlClient.dll",
  5197. "ref/net46/System.Data.SqlClient.dll",
  5198. "ref/net461/System.Data.SqlClient.dll",
  5199. "ref/net461/System.Data.SqlClient.xml",
  5200. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  5201. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  5202. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5203. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5204. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5205. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5206. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5207. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5208. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5209. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5210. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5211. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5212. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5213. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5214. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5215. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5216. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5217. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5218. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5219. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5220. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5221. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5222. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5223. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5224. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5225. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5226. "ref/xamarinios10/_._",
  5227. "ref/xamarinmac20/_._",
  5228. "ref/xamarintvos10/_._",
  5229. "ref/xamarinwatchos10/_._",
  5230. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5231. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5232. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5233. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5234. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  5235. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5236. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5237. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5238. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  5239. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5240. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5241. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5242. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5243. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  5244. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  5245. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  5246. "system.data.sqlclient.4.8.2.nupkg.sha512",
  5247. "system.data.sqlclient.nuspec",
  5248. "useSharedDesignerContext.txt",
  5249. "version.txt"
  5250. ]
  5251. },
  5252. "System.Data.SQLite.Core/1.0.114": {
  5253. "sha512": "yfUkYTTeTwhXMs+TC6BCbh/XZ/Db3EBC4OkujgzmkM5qf/b8HxdwukXwLh5mRC0PHmp70w52cDTkfqoQsPeyCw==",
  5254. "type": "package",
  5255. "path": "system.data.sqlite.core/1.0.114",
  5256. "files": [
  5257. ".nupkg.metadata",
  5258. ".signature.p7s",
  5259. "system.data.sqlite.core.1.0.114.nupkg.sha512",
  5260. "system.data.sqlite.core.nuspec"
  5261. ]
  5262. },
  5263. "System.Diagnostics.Debug/4.3.0": {
  5264. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5265. "type": "package",
  5266. "path": "system.diagnostics.debug/4.3.0",
  5267. "files": [
  5268. ".nupkg.metadata",
  5269. ".signature.p7s",
  5270. "ThirdPartyNotices.txt",
  5271. "dotnet_library_license.txt",
  5272. "lib/MonoAndroid10/_._",
  5273. "lib/MonoTouch10/_._",
  5274. "lib/net45/_._",
  5275. "lib/portable-net45+win8+wp8+wpa81/_._",
  5276. "lib/win8/_._",
  5277. "lib/wp80/_._",
  5278. "lib/wpa81/_._",
  5279. "lib/xamarinios10/_._",
  5280. "lib/xamarinmac20/_._",
  5281. "lib/xamarintvos10/_._",
  5282. "lib/xamarinwatchos10/_._",
  5283. "ref/MonoAndroid10/_._",
  5284. "ref/MonoTouch10/_._",
  5285. "ref/net45/_._",
  5286. "ref/netcore50/System.Diagnostics.Debug.dll",
  5287. "ref/netcore50/System.Diagnostics.Debug.xml",
  5288. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5289. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5290. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5291. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5292. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5293. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5294. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5295. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5296. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5297. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5298. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5299. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5300. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5301. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5302. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5303. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5304. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5305. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5306. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5307. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5308. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5309. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5310. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5311. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5312. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5313. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5314. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5315. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5316. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5317. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5318. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5319. "ref/portable-net45+win8+wp8+wpa81/_._",
  5320. "ref/win8/_._",
  5321. "ref/wp80/_._",
  5322. "ref/wpa81/_._",
  5323. "ref/xamarinios10/_._",
  5324. "ref/xamarinmac20/_._",
  5325. "ref/xamarintvos10/_._",
  5326. "ref/xamarinwatchos10/_._",
  5327. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5328. "system.diagnostics.debug.nuspec"
  5329. ]
  5330. },
  5331. "System.Diagnostics.DiagnosticSource/7.0.2": {
  5332. "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  5333. "type": "package",
  5334. "path": "system.diagnostics.diagnosticsource/7.0.2",
  5335. "files": [
  5336. ".nupkg.metadata",
  5337. ".signature.p7s",
  5338. "Icon.png",
  5339. "LICENSE.TXT",
  5340. "THIRD-PARTY-NOTICES.TXT",
  5341. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  5342. "buildTransitive/net462/_._",
  5343. "buildTransitive/net6.0/_._",
  5344. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5345. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  5346. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  5347. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5348. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5349. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  5350. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  5351. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5352. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5353. "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
  5354. "system.diagnostics.diagnosticsource.nuspec",
  5355. "useSharedDesignerContext.txt"
  5356. ]
  5357. },
  5358. "System.Diagnostics.EventLog/5.0.0": {
  5359. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  5360. "type": "package",
  5361. "path": "system.diagnostics.eventlog/5.0.0",
  5362. "files": [
  5363. ".nupkg.metadata",
  5364. ".signature.p7s",
  5365. "Icon.png",
  5366. "LICENSE.TXT",
  5367. "THIRD-PARTY-NOTICES.TXT",
  5368. "lib/net461/System.Diagnostics.EventLog.dll",
  5369. "lib/net461/System.Diagnostics.EventLog.xml",
  5370. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  5371. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  5372. "ref/net461/System.Diagnostics.EventLog.dll",
  5373. "ref/net461/System.Diagnostics.EventLog.xml",
  5374. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  5375. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  5376. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  5377. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  5378. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  5379. "system.diagnostics.eventlog.nuspec",
  5380. "useSharedDesignerContext.txt",
  5381. "version.txt"
  5382. ]
  5383. },
  5384. "System.Diagnostics.Tools/4.0.1": {
  5385. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  5386. "type": "package",
  5387. "path": "system.diagnostics.tools/4.0.1",
  5388. "files": [
  5389. ".nupkg.metadata",
  5390. "ThirdPartyNotices.txt",
  5391. "dotnet_library_license.txt",
  5392. "lib/MonoAndroid10/_._",
  5393. "lib/MonoTouch10/_._",
  5394. "lib/net45/_._",
  5395. "lib/portable-net45+win8+wp8+wpa81/_._",
  5396. "lib/win8/_._",
  5397. "lib/wp80/_._",
  5398. "lib/wpa81/_._",
  5399. "lib/xamarinios10/_._",
  5400. "lib/xamarinmac20/_._",
  5401. "lib/xamarintvos10/_._",
  5402. "lib/xamarinwatchos10/_._",
  5403. "ref/MonoAndroid10/_._",
  5404. "ref/MonoTouch10/_._",
  5405. "ref/net45/_._",
  5406. "ref/netcore50/System.Diagnostics.Tools.dll",
  5407. "ref/netcore50/System.Diagnostics.Tools.xml",
  5408. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5409. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5410. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5411. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5412. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5413. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5414. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5415. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5416. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5417. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5418. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5419. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5420. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5421. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5422. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5423. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5424. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5425. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5426. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5427. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5428. "ref/portable-net45+win8+wp8+wpa81/_._",
  5429. "ref/win8/_._",
  5430. "ref/wp80/_._",
  5431. "ref/wpa81/_._",
  5432. "ref/xamarinios10/_._",
  5433. "ref/xamarinmac20/_._",
  5434. "ref/xamarintvos10/_._",
  5435. "ref/xamarinwatchos10/_._",
  5436. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  5437. "system.diagnostics.tools.nuspec"
  5438. ]
  5439. },
  5440. "System.Diagnostics.Tracing/4.3.0": {
  5441. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5442. "type": "package",
  5443. "path": "system.diagnostics.tracing/4.3.0",
  5444. "files": [
  5445. ".nupkg.metadata",
  5446. ".signature.p7s",
  5447. "ThirdPartyNotices.txt",
  5448. "dotnet_library_license.txt",
  5449. "lib/MonoAndroid10/_._",
  5450. "lib/MonoTouch10/_._",
  5451. "lib/net45/_._",
  5452. "lib/net462/System.Diagnostics.Tracing.dll",
  5453. "lib/portable-net45+win8+wpa81/_._",
  5454. "lib/win8/_._",
  5455. "lib/wpa81/_._",
  5456. "lib/xamarinios10/_._",
  5457. "lib/xamarinmac20/_._",
  5458. "lib/xamarintvos10/_._",
  5459. "lib/xamarinwatchos10/_._",
  5460. "ref/MonoAndroid10/_._",
  5461. "ref/MonoTouch10/_._",
  5462. "ref/net45/_._",
  5463. "ref/net462/System.Diagnostics.Tracing.dll",
  5464. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5465. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5466. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5467. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5468. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5469. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5470. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5471. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5472. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5473. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5474. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5475. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5476. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5477. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5478. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5479. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5480. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5481. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5482. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5483. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5484. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5485. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5486. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5487. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5488. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5489. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5490. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5491. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5492. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5493. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5494. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5495. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5496. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5497. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5498. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5499. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5500. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5501. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5502. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5503. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5504. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5505. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5506. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5507. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5508. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5509. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5510. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5511. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5512. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5513. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5514. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5515. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5516. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5517. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5518. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5519. "ref/portable-net45+win8+wpa81/_._",
  5520. "ref/win8/_._",
  5521. "ref/wpa81/_._",
  5522. "ref/xamarinios10/_._",
  5523. "ref/xamarinmac20/_._",
  5524. "ref/xamarintvos10/_._",
  5525. "ref/xamarinwatchos10/_._",
  5526. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5527. "system.diagnostics.tracing.nuspec"
  5528. ]
  5529. },
  5530. "System.Drawing.Common/7.0.0": {
  5531. "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  5532. "type": "package",
  5533. "path": "system.drawing.common/7.0.0",
  5534. "files": [
  5535. ".nupkg.metadata",
  5536. ".signature.p7s",
  5537. "Icon.png",
  5538. "LICENSE.TXT",
  5539. "THIRD-PARTY-NOTICES.TXT",
  5540. "buildTransitive/net461/System.Drawing.Common.targets",
  5541. "buildTransitive/net462/_._",
  5542. "buildTransitive/net6.0/_._",
  5543. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  5544. "lib/MonoAndroid10/_._",
  5545. "lib/MonoTouch10/_._",
  5546. "lib/net462/System.Drawing.Common.dll",
  5547. "lib/net462/System.Drawing.Common.xml",
  5548. "lib/net6.0/System.Drawing.Common.dll",
  5549. "lib/net6.0/System.Drawing.Common.xml",
  5550. "lib/net7.0/System.Drawing.Common.dll",
  5551. "lib/net7.0/System.Drawing.Common.xml",
  5552. "lib/netstandard2.0/System.Drawing.Common.dll",
  5553. "lib/netstandard2.0/System.Drawing.Common.xml",
  5554. "lib/xamarinios10/_._",
  5555. "lib/xamarinmac20/_._",
  5556. "lib/xamarintvos10/_._",
  5557. "lib/xamarinwatchos10/_._",
  5558. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  5559. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  5560. "runtimes/win/lib/net7.0/System.Drawing.Common.dll",
  5561. "runtimes/win/lib/net7.0/System.Drawing.Common.xml",
  5562. "system.drawing.common.7.0.0.nupkg.sha512",
  5563. "system.drawing.common.nuspec",
  5564. "useSharedDesignerContext.txt"
  5565. ]
  5566. },
  5567. "System.Dynamic.Runtime/4.0.11": {
  5568. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  5569. "type": "package",
  5570. "path": "system.dynamic.runtime/4.0.11",
  5571. "files": [
  5572. ".nupkg.metadata",
  5573. ".signature.p7s",
  5574. "ThirdPartyNotices.txt",
  5575. "dotnet_library_license.txt",
  5576. "lib/MonoAndroid10/_._",
  5577. "lib/MonoTouch10/_._",
  5578. "lib/net45/_._",
  5579. "lib/netcore50/System.Dynamic.Runtime.dll",
  5580. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5581. "lib/portable-net45+win8+wp8+wpa81/_._",
  5582. "lib/win8/_._",
  5583. "lib/wp80/_._",
  5584. "lib/wpa81/_._",
  5585. "lib/xamarinios10/_._",
  5586. "lib/xamarinmac20/_._",
  5587. "lib/xamarintvos10/_._",
  5588. "lib/xamarinwatchos10/_._",
  5589. "ref/MonoAndroid10/_._",
  5590. "ref/MonoTouch10/_._",
  5591. "ref/net45/_._",
  5592. "ref/netcore50/System.Dynamic.Runtime.dll",
  5593. "ref/netcore50/System.Dynamic.Runtime.xml",
  5594. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5595. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5596. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5597. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5598. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5599. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5600. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5601. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5602. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5603. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5604. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5605. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5606. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5607. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5608. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5609. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5610. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5611. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5612. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5613. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5614. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5615. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5616. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5617. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5618. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5619. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5620. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5621. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5622. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5623. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5624. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5625. "ref/portable-net45+win8+wp8+wpa81/_._",
  5626. "ref/win8/_._",
  5627. "ref/wp80/_._",
  5628. "ref/wpa81/_._",
  5629. "ref/xamarinios10/_._",
  5630. "ref/xamarinmac20/_._",
  5631. "ref/xamarintvos10/_._",
  5632. "ref/xamarinwatchos10/_._",
  5633. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5634. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  5635. "system.dynamic.runtime.nuspec"
  5636. ]
  5637. },
  5638. "System.Formats.Asn1/5.0.0": {
  5639. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  5640. "type": "package",
  5641. "path": "system.formats.asn1/5.0.0",
  5642. "files": [
  5643. ".nupkg.metadata",
  5644. ".signature.p7s",
  5645. "Icon.png",
  5646. "LICENSE.TXT",
  5647. "THIRD-PARTY-NOTICES.TXT",
  5648. "lib/net461/System.Formats.Asn1.dll",
  5649. "lib/net461/System.Formats.Asn1.xml",
  5650. "lib/netstandard2.0/System.Formats.Asn1.dll",
  5651. "lib/netstandard2.0/System.Formats.Asn1.xml",
  5652. "system.formats.asn1.5.0.0.nupkg.sha512",
  5653. "system.formats.asn1.nuspec",
  5654. "useSharedDesignerContext.txt",
  5655. "version.txt"
  5656. ]
  5657. },
  5658. "System.Globalization/4.3.0": {
  5659. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5660. "type": "package",
  5661. "path": "system.globalization/4.3.0",
  5662. "files": [
  5663. ".nupkg.metadata",
  5664. ".signature.p7s",
  5665. "ThirdPartyNotices.txt",
  5666. "dotnet_library_license.txt",
  5667. "lib/MonoAndroid10/_._",
  5668. "lib/MonoTouch10/_._",
  5669. "lib/net45/_._",
  5670. "lib/portable-net45+win8+wp8+wpa81/_._",
  5671. "lib/win8/_._",
  5672. "lib/wp80/_._",
  5673. "lib/wpa81/_._",
  5674. "lib/xamarinios10/_._",
  5675. "lib/xamarinmac20/_._",
  5676. "lib/xamarintvos10/_._",
  5677. "lib/xamarinwatchos10/_._",
  5678. "ref/MonoAndroid10/_._",
  5679. "ref/MonoTouch10/_._",
  5680. "ref/net45/_._",
  5681. "ref/netcore50/System.Globalization.dll",
  5682. "ref/netcore50/System.Globalization.xml",
  5683. "ref/netcore50/de/System.Globalization.xml",
  5684. "ref/netcore50/es/System.Globalization.xml",
  5685. "ref/netcore50/fr/System.Globalization.xml",
  5686. "ref/netcore50/it/System.Globalization.xml",
  5687. "ref/netcore50/ja/System.Globalization.xml",
  5688. "ref/netcore50/ko/System.Globalization.xml",
  5689. "ref/netcore50/ru/System.Globalization.xml",
  5690. "ref/netcore50/zh-hans/System.Globalization.xml",
  5691. "ref/netcore50/zh-hant/System.Globalization.xml",
  5692. "ref/netstandard1.0/System.Globalization.dll",
  5693. "ref/netstandard1.0/System.Globalization.xml",
  5694. "ref/netstandard1.0/de/System.Globalization.xml",
  5695. "ref/netstandard1.0/es/System.Globalization.xml",
  5696. "ref/netstandard1.0/fr/System.Globalization.xml",
  5697. "ref/netstandard1.0/it/System.Globalization.xml",
  5698. "ref/netstandard1.0/ja/System.Globalization.xml",
  5699. "ref/netstandard1.0/ko/System.Globalization.xml",
  5700. "ref/netstandard1.0/ru/System.Globalization.xml",
  5701. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5702. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5703. "ref/netstandard1.3/System.Globalization.dll",
  5704. "ref/netstandard1.3/System.Globalization.xml",
  5705. "ref/netstandard1.3/de/System.Globalization.xml",
  5706. "ref/netstandard1.3/es/System.Globalization.xml",
  5707. "ref/netstandard1.3/fr/System.Globalization.xml",
  5708. "ref/netstandard1.3/it/System.Globalization.xml",
  5709. "ref/netstandard1.3/ja/System.Globalization.xml",
  5710. "ref/netstandard1.3/ko/System.Globalization.xml",
  5711. "ref/netstandard1.3/ru/System.Globalization.xml",
  5712. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5713. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5714. "ref/portable-net45+win8+wp8+wpa81/_._",
  5715. "ref/win8/_._",
  5716. "ref/wp80/_._",
  5717. "ref/wpa81/_._",
  5718. "ref/xamarinios10/_._",
  5719. "ref/xamarinmac20/_._",
  5720. "ref/xamarintvos10/_._",
  5721. "ref/xamarinwatchos10/_._",
  5722. "system.globalization.4.3.0.nupkg.sha512",
  5723. "system.globalization.nuspec"
  5724. ]
  5725. },
  5726. "System.Globalization.Calendars/4.3.0": {
  5727. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5728. "type": "package",
  5729. "path": "system.globalization.calendars/4.3.0",
  5730. "files": [
  5731. ".nupkg.metadata",
  5732. ".signature.p7s",
  5733. "ThirdPartyNotices.txt",
  5734. "dotnet_library_license.txt",
  5735. "lib/MonoAndroid10/_._",
  5736. "lib/MonoTouch10/_._",
  5737. "lib/net46/System.Globalization.Calendars.dll",
  5738. "lib/xamarinios10/_._",
  5739. "lib/xamarinmac20/_._",
  5740. "lib/xamarintvos10/_._",
  5741. "lib/xamarinwatchos10/_._",
  5742. "ref/MonoAndroid10/_._",
  5743. "ref/MonoTouch10/_._",
  5744. "ref/net46/System.Globalization.Calendars.dll",
  5745. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5746. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5747. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5748. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5749. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5750. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5751. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5752. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5753. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5754. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5755. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5756. "ref/xamarinios10/_._",
  5757. "ref/xamarinmac20/_._",
  5758. "ref/xamarintvos10/_._",
  5759. "ref/xamarinwatchos10/_._",
  5760. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5761. "system.globalization.calendars.nuspec"
  5762. ]
  5763. },
  5764. "System.Globalization.Extensions/4.3.0": {
  5765. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5766. "type": "package",
  5767. "path": "system.globalization.extensions/4.3.0",
  5768. "files": [
  5769. ".nupkg.metadata",
  5770. ".signature.p7s",
  5771. "ThirdPartyNotices.txt",
  5772. "dotnet_library_license.txt",
  5773. "lib/MonoAndroid10/_._",
  5774. "lib/MonoTouch10/_._",
  5775. "lib/net46/System.Globalization.Extensions.dll",
  5776. "lib/xamarinios10/_._",
  5777. "lib/xamarinmac20/_._",
  5778. "lib/xamarintvos10/_._",
  5779. "lib/xamarinwatchos10/_._",
  5780. "ref/MonoAndroid10/_._",
  5781. "ref/MonoTouch10/_._",
  5782. "ref/net46/System.Globalization.Extensions.dll",
  5783. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5784. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5785. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5786. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5787. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5788. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5789. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5790. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5791. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5792. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5793. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5794. "ref/xamarinios10/_._",
  5795. "ref/xamarinmac20/_._",
  5796. "ref/xamarintvos10/_._",
  5797. "ref/xamarinwatchos10/_._",
  5798. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5799. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5800. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5801. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5802. "system.globalization.extensions.nuspec"
  5803. ]
  5804. },
  5805. "System.IO/4.3.0": {
  5806. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5807. "type": "package",
  5808. "path": "system.io/4.3.0",
  5809. "files": [
  5810. ".nupkg.metadata",
  5811. ".signature.p7s",
  5812. "ThirdPartyNotices.txt",
  5813. "dotnet_library_license.txt",
  5814. "lib/MonoAndroid10/_._",
  5815. "lib/MonoTouch10/_._",
  5816. "lib/net45/_._",
  5817. "lib/net462/System.IO.dll",
  5818. "lib/portable-net45+win8+wp8+wpa81/_._",
  5819. "lib/win8/_._",
  5820. "lib/wp80/_._",
  5821. "lib/wpa81/_._",
  5822. "lib/xamarinios10/_._",
  5823. "lib/xamarinmac20/_._",
  5824. "lib/xamarintvos10/_._",
  5825. "lib/xamarinwatchos10/_._",
  5826. "ref/MonoAndroid10/_._",
  5827. "ref/MonoTouch10/_._",
  5828. "ref/net45/_._",
  5829. "ref/net462/System.IO.dll",
  5830. "ref/netcore50/System.IO.dll",
  5831. "ref/netcore50/System.IO.xml",
  5832. "ref/netcore50/de/System.IO.xml",
  5833. "ref/netcore50/es/System.IO.xml",
  5834. "ref/netcore50/fr/System.IO.xml",
  5835. "ref/netcore50/it/System.IO.xml",
  5836. "ref/netcore50/ja/System.IO.xml",
  5837. "ref/netcore50/ko/System.IO.xml",
  5838. "ref/netcore50/ru/System.IO.xml",
  5839. "ref/netcore50/zh-hans/System.IO.xml",
  5840. "ref/netcore50/zh-hant/System.IO.xml",
  5841. "ref/netstandard1.0/System.IO.dll",
  5842. "ref/netstandard1.0/System.IO.xml",
  5843. "ref/netstandard1.0/de/System.IO.xml",
  5844. "ref/netstandard1.0/es/System.IO.xml",
  5845. "ref/netstandard1.0/fr/System.IO.xml",
  5846. "ref/netstandard1.0/it/System.IO.xml",
  5847. "ref/netstandard1.0/ja/System.IO.xml",
  5848. "ref/netstandard1.0/ko/System.IO.xml",
  5849. "ref/netstandard1.0/ru/System.IO.xml",
  5850. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5851. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5852. "ref/netstandard1.3/System.IO.dll",
  5853. "ref/netstandard1.3/System.IO.xml",
  5854. "ref/netstandard1.3/de/System.IO.xml",
  5855. "ref/netstandard1.3/es/System.IO.xml",
  5856. "ref/netstandard1.3/fr/System.IO.xml",
  5857. "ref/netstandard1.3/it/System.IO.xml",
  5858. "ref/netstandard1.3/ja/System.IO.xml",
  5859. "ref/netstandard1.3/ko/System.IO.xml",
  5860. "ref/netstandard1.3/ru/System.IO.xml",
  5861. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5862. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5863. "ref/netstandard1.5/System.IO.dll",
  5864. "ref/netstandard1.5/System.IO.xml",
  5865. "ref/netstandard1.5/de/System.IO.xml",
  5866. "ref/netstandard1.5/es/System.IO.xml",
  5867. "ref/netstandard1.5/fr/System.IO.xml",
  5868. "ref/netstandard1.5/it/System.IO.xml",
  5869. "ref/netstandard1.5/ja/System.IO.xml",
  5870. "ref/netstandard1.5/ko/System.IO.xml",
  5871. "ref/netstandard1.5/ru/System.IO.xml",
  5872. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5873. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5874. "ref/portable-net45+win8+wp8+wpa81/_._",
  5875. "ref/win8/_._",
  5876. "ref/wp80/_._",
  5877. "ref/wpa81/_._",
  5878. "ref/xamarinios10/_._",
  5879. "ref/xamarinmac20/_._",
  5880. "ref/xamarintvos10/_._",
  5881. "ref/xamarinwatchos10/_._",
  5882. "system.io.4.3.0.nupkg.sha512",
  5883. "system.io.nuspec"
  5884. ]
  5885. },
  5886. "System.IO.FileSystem/4.3.0": {
  5887. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5888. "type": "package",
  5889. "path": "system.io.filesystem/4.3.0",
  5890. "files": [
  5891. ".nupkg.metadata",
  5892. ".signature.p7s",
  5893. "ThirdPartyNotices.txt",
  5894. "dotnet_library_license.txt",
  5895. "lib/MonoAndroid10/_._",
  5896. "lib/MonoTouch10/_._",
  5897. "lib/net46/System.IO.FileSystem.dll",
  5898. "lib/xamarinios10/_._",
  5899. "lib/xamarinmac20/_._",
  5900. "lib/xamarintvos10/_._",
  5901. "lib/xamarinwatchos10/_._",
  5902. "ref/MonoAndroid10/_._",
  5903. "ref/MonoTouch10/_._",
  5904. "ref/net46/System.IO.FileSystem.dll",
  5905. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5906. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5907. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5908. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5909. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5910. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5911. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5912. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5913. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5914. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5915. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5916. "ref/xamarinios10/_._",
  5917. "ref/xamarinmac20/_._",
  5918. "ref/xamarintvos10/_._",
  5919. "ref/xamarinwatchos10/_._",
  5920. "system.io.filesystem.4.3.0.nupkg.sha512",
  5921. "system.io.filesystem.nuspec"
  5922. ]
  5923. },
  5924. "System.IO.FileSystem.Primitives/4.3.0": {
  5925. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5926. "type": "package",
  5927. "path": "system.io.filesystem.primitives/4.3.0",
  5928. "files": [
  5929. ".nupkg.metadata",
  5930. ".signature.p7s",
  5931. "ThirdPartyNotices.txt",
  5932. "dotnet_library_license.txt",
  5933. "lib/MonoAndroid10/_._",
  5934. "lib/MonoTouch10/_._",
  5935. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5936. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5937. "lib/xamarinios10/_._",
  5938. "lib/xamarinmac20/_._",
  5939. "lib/xamarintvos10/_._",
  5940. "lib/xamarinwatchos10/_._",
  5941. "ref/MonoAndroid10/_._",
  5942. "ref/MonoTouch10/_._",
  5943. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5944. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5945. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5946. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5947. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5948. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5949. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5950. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5951. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5952. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5953. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5954. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5955. "ref/xamarinios10/_._",
  5956. "ref/xamarinmac20/_._",
  5957. "ref/xamarintvos10/_._",
  5958. "ref/xamarinwatchos10/_._",
  5959. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5960. "system.io.filesystem.primitives.nuspec"
  5961. ]
  5962. },
  5963. "System.IO.Ports/6.0.0": {
  5964. "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
  5965. "type": "package",
  5966. "path": "system.io.ports/6.0.0",
  5967. "files": [
  5968. ".nupkg.metadata",
  5969. ".signature.p7s",
  5970. "Icon.png",
  5971. "LICENSE.TXT",
  5972. "THIRD-PARTY-NOTICES.TXT",
  5973. "buildTransitive/netcoreapp2.0/System.IO.Ports.targets",
  5974. "buildTransitive/netcoreapp3.1/_._",
  5975. "lib/net461/System.IO.Ports.dll",
  5976. "lib/net461/System.IO.Ports.xml",
  5977. "lib/net6.0/System.IO.Ports.dll",
  5978. "lib/net6.0/System.IO.Ports.xml",
  5979. "lib/netstandard2.0/System.IO.Ports.dll",
  5980. "lib/netstandard2.0/System.IO.Ports.xml",
  5981. "runtimes/unix/lib/net6.0/System.IO.Ports.dll",
  5982. "runtimes/unix/lib/net6.0/System.IO.Ports.xml",
  5983. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll",
  5984. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml",
  5985. "runtimes/win/lib/net461/System.IO.Ports.dll",
  5986. "runtimes/win/lib/net461/System.IO.Ports.xml",
  5987. "runtimes/win/lib/net6.0/System.IO.Ports.dll",
  5988. "runtimes/win/lib/net6.0/System.IO.Ports.xml",
  5989. "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll",
  5990. "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml",
  5991. "system.io.ports.6.0.0.nupkg.sha512",
  5992. "system.io.ports.nuspec",
  5993. "useSharedDesignerContext.txt"
  5994. ]
  5995. },
  5996. "System.Linq/4.3.0": {
  5997. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5998. "type": "package",
  5999. "path": "system.linq/4.3.0",
  6000. "files": [
  6001. ".nupkg.metadata",
  6002. ".signature.p7s",
  6003. "ThirdPartyNotices.txt",
  6004. "dotnet_library_license.txt",
  6005. "lib/MonoAndroid10/_._",
  6006. "lib/MonoTouch10/_._",
  6007. "lib/net45/_._",
  6008. "lib/net463/System.Linq.dll",
  6009. "lib/netcore50/System.Linq.dll",
  6010. "lib/netstandard1.6/System.Linq.dll",
  6011. "lib/portable-net45+win8+wp8+wpa81/_._",
  6012. "lib/win8/_._",
  6013. "lib/wp80/_._",
  6014. "lib/wpa81/_._",
  6015. "lib/xamarinios10/_._",
  6016. "lib/xamarinmac20/_._",
  6017. "lib/xamarintvos10/_._",
  6018. "lib/xamarinwatchos10/_._",
  6019. "ref/MonoAndroid10/_._",
  6020. "ref/MonoTouch10/_._",
  6021. "ref/net45/_._",
  6022. "ref/net463/System.Linq.dll",
  6023. "ref/netcore50/System.Linq.dll",
  6024. "ref/netcore50/System.Linq.xml",
  6025. "ref/netcore50/de/System.Linq.xml",
  6026. "ref/netcore50/es/System.Linq.xml",
  6027. "ref/netcore50/fr/System.Linq.xml",
  6028. "ref/netcore50/it/System.Linq.xml",
  6029. "ref/netcore50/ja/System.Linq.xml",
  6030. "ref/netcore50/ko/System.Linq.xml",
  6031. "ref/netcore50/ru/System.Linq.xml",
  6032. "ref/netcore50/zh-hans/System.Linq.xml",
  6033. "ref/netcore50/zh-hant/System.Linq.xml",
  6034. "ref/netstandard1.0/System.Linq.dll",
  6035. "ref/netstandard1.0/System.Linq.xml",
  6036. "ref/netstandard1.0/de/System.Linq.xml",
  6037. "ref/netstandard1.0/es/System.Linq.xml",
  6038. "ref/netstandard1.0/fr/System.Linq.xml",
  6039. "ref/netstandard1.0/it/System.Linq.xml",
  6040. "ref/netstandard1.0/ja/System.Linq.xml",
  6041. "ref/netstandard1.0/ko/System.Linq.xml",
  6042. "ref/netstandard1.0/ru/System.Linq.xml",
  6043. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6044. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6045. "ref/netstandard1.6/System.Linq.dll",
  6046. "ref/netstandard1.6/System.Linq.xml",
  6047. "ref/netstandard1.6/de/System.Linq.xml",
  6048. "ref/netstandard1.6/es/System.Linq.xml",
  6049. "ref/netstandard1.6/fr/System.Linq.xml",
  6050. "ref/netstandard1.6/it/System.Linq.xml",
  6051. "ref/netstandard1.6/ja/System.Linq.xml",
  6052. "ref/netstandard1.6/ko/System.Linq.xml",
  6053. "ref/netstandard1.6/ru/System.Linq.xml",
  6054. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6055. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6056. "ref/portable-net45+win8+wp8+wpa81/_._",
  6057. "ref/win8/_._",
  6058. "ref/wp80/_._",
  6059. "ref/wpa81/_._",
  6060. "ref/xamarinios10/_._",
  6061. "ref/xamarinmac20/_._",
  6062. "ref/xamarintvos10/_._",
  6063. "ref/xamarinwatchos10/_._",
  6064. "system.linq.4.3.0.nupkg.sha512",
  6065. "system.linq.nuspec"
  6066. ]
  6067. },
  6068. "System.Linq.Expressions/4.1.0": {
  6069. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  6070. "type": "package",
  6071. "path": "system.linq.expressions/4.1.0",
  6072. "files": [
  6073. ".nupkg.metadata",
  6074. "ThirdPartyNotices.txt",
  6075. "dotnet_library_license.txt",
  6076. "lib/MonoAndroid10/_._",
  6077. "lib/MonoTouch10/_._",
  6078. "lib/net45/_._",
  6079. "lib/net463/System.Linq.Expressions.dll",
  6080. "lib/netcore50/System.Linq.Expressions.dll",
  6081. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6082. "lib/portable-net45+win8+wp8+wpa81/_._",
  6083. "lib/win8/_._",
  6084. "lib/wp80/_._",
  6085. "lib/wpa81/_._",
  6086. "lib/xamarinios10/_._",
  6087. "lib/xamarinmac20/_._",
  6088. "lib/xamarintvos10/_._",
  6089. "lib/xamarinwatchos10/_._",
  6090. "ref/MonoAndroid10/_._",
  6091. "ref/MonoTouch10/_._",
  6092. "ref/net45/_._",
  6093. "ref/net463/System.Linq.Expressions.dll",
  6094. "ref/netcore50/System.Linq.Expressions.dll",
  6095. "ref/netcore50/System.Linq.Expressions.xml",
  6096. "ref/netcore50/de/System.Linq.Expressions.xml",
  6097. "ref/netcore50/es/System.Linq.Expressions.xml",
  6098. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6099. "ref/netcore50/it/System.Linq.Expressions.xml",
  6100. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6101. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6102. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6103. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6104. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6105. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6106. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6107. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6108. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6109. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6110. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6111. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6112. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6113. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6114. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6115. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6116. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6117. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6118. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6119. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6120. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6121. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6122. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6123. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6124. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6125. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6126. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6127. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6128. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6129. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6130. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6131. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6132. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6133. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6134. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6135. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6136. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6137. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6138. "ref/portable-net45+win8+wp8+wpa81/_._",
  6139. "ref/win8/_._",
  6140. "ref/wp80/_._",
  6141. "ref/wpa81/_._",
  6142. "ref/xamarinios10/_._",
  6143. "ref/xamarinmac20/_._",
  6144. "ref/xamarintvos10/_._",
  6145. "ref/xamarinwatchos10/_._",
  6146. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6147. "system.linq.expressions.4.1.0.nupkg.sha512",
  6148. "system.linq.expressions.nuspec"
  6149. ]
  6150. },
  6151. "System.Memory/4.5.3": {
  6152. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  6153. "type": "package",
  6154. "path": "system.memory/4.5.3",
  6155. "files": [
  6156. ".nupkg.metadata",
  6157. ".signature.p7s",
  6158. "LICENSE.TXT",
  6159. "THIRD-PARTY-NOTICES.TXT",
  6160. "lib/netcoreapp2.1/_._",
  6161. "lib/netstandard1.1/System.Memory.dll",
  6162. "lib/netstandard1.1/System.Memory.xml",
  6163. "lib/netstandard2.0/System.Memory.dll",
  6164. "lib/netstandard2.0/System.Memory.xml",
  6165. "ref/netcoreapp2.1/_._",
  6166. "system.memory.4.5.3.nupkg.sha512",
  6167. "system.memory.nuspec",
  6168. "useSharedDesignerContext.txt",
  6169. "version.txt"
  6170. ]
  6171. },
  6172. "System.ObjectModel/4.0.12": {
  6173. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  6174. "type": "package",
  6175. "path": "system.objectmodel/4.0.12",
  6176. "files": [
  6177. ".nupkg.metadata",
  6178. "ThirdPartyNotices.txt",
  6179. "dotnet_library_license.txt",
  6180. "lib/MonoAndroid10/_._",
  6181. "lib/MonoTouch10/_._",
  6182. "lib/net45/_._",
  6183. "lib/netcore50/System.ObjectModel.dll",
  6184. "lib/netstandard1.3/System.ObjectModel.dll",
  6185. "lib/portable-net45+win8+wp8+wpa81/_._",
  6186. "lib/win8/_._",
  6187. "lib/wp80/_._",
  6188. "lib/wpa81/_._",
  6189. "lib/xamarinios10/_._",
  6190. "lib/xamarinmac20/_._",
  6191. "lib/xamarintvos10/_._",
  6192. "lib/xamarinwatchos10/_._",
  6193. "ref/MonoAndroid10/_._",
  6194. "ref/MonoTouch10/_._",
  6195. "ref/net45/_._",
  6196. "ref/netcore50/System.ObjectModel.dll",
  6197. "ref/netcore50/System.ObjectModel.xml",
  6198. "ref/netcore50/de/System.ObjectModel.xml",
  6199. "ref/netcore50/es/System.ObjectModel.xml",
  6200. "ref/netcore50/fr/System.ObjectModel.xml",
  6201. "ref/netcore50/it/System.ObjectModel.xml",
  6202. "ref/netcore50/ja/System.ObjectModel.xml",
  6203. "ref/netcore50/ko/System.ObjectModel.xml",
  6204. "ref/netcore50/ru/System.ObjectModel.xml",
  6205. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6206. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6207. "ref/netstandard1.0/System.ObjectModel.dll",
  6208. "ref/netstandard1.0/System.ObjectModel.xml",
  6209. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6210. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6211. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6212. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6213. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6214. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6215. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6216. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6217. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6218. "ref/netstandard1.3/System.ObjectModel.dll",
  6219. "ref/netstandard1.3/System.ObjectModel.xml",
  6220. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6221. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6222. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6223. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6224. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6225. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6226. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6227. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6228. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6229. "ref/portable-net45+win8+wp8+wpa81/_._",
  6230. "ref/win8/_._",
  6231. "ref/wp80/_._",
  6232. "ref/wpa81/_._",
  6233. "ref/xamarinios10/_._",
  6234. "ref/xamarinmac20/_._",
  6235. "ref/xamarintvos10/_._",
  6236. "ref/xamarinwatchos10/_._",
  6237. "system.objectmodel.4.0.12.nupkg.sha512",
  6238. "system.objectmodel.nuspec"
  6239. ]
  6240. },
  6241. "System.Reflection/4.3.0": {
  6242. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6243. "type": "package",
  6244. "path": "system.reflection/4.3.0",
  6245. "files": [
  6246. ".nupkg.metadata",
  6247. ".signature.p7s",
  6248. "ThirdPartyNotices.txt",
  6249. "dotnet_library_license.txt",
  6250. "lib/MonoAndroid10/_._",
  6251. "lib/MonoTouch10/_._",
  6252. "lib/net45/_._",
  6253. "lib/net462/System.Reflection.dll",
  6254. "lib/portable-net45+win8+wp8+wpa81/_._",
  6255. "lib/win8/_._",
  6256. "lib/wp80/_._",
  6257. "lib/wpa81/_._",
  6258. "lib/xamarinios10/_._",
  6259. "lib/xamarinmac20/_._",
  6260. "lib/xamarintvos10/_._",
  6261. "lib/xamarinwatchos10/_._",
  6262. "ref/MonoAndroid10/_._",
  6263. "ref/MonoTouch10/_._",
  6264. "ref/net45/_._",
  6265. "ref/net462/System.Reflection.dll",
  6266. "ref/netcore50/System.Reflection.dll",
  6267. "ref/netcore50/System.Reflection.xml",
  6268. "ref/netcore50/de/System.Reflection.xml",
  6269. "ref/netcore50/es/System.Reflection.xml",
  6270. "ref/netcore50/fr/System.Reflection.xml",
  6271. "ref/netcore50/it/System.Reflection.xml",
  6272. "ref/netcore50/ja/System.Reflection.xml",
  6273. "ref/netcore50/ko/System.Reflection.xml",
  6274. "ref/netcore50/ru/System.Reflection.xml",
  6275. "ref/netcore50/zh-hans/System.Reflection.xml",
  6276. "ref/netcore50/zh-hant/System.Reflection.xml",
  6277. "ref/netstandard1.0/System.Reflection.dll",
  6278. "ref/netstandard1.0/System.Reflection.xml",
  6279. "ref/netstandard1.0/de/System.Reflection.xml",
  6280. "ref/netstandard1.0/es/System.Reflection.xml",
  6281. "ref/netstandard1.0/fr/System.Reflection.xml",
  6282. "ref/netstandard1.0/it/System.Reflection.xml",
  6283. "ref/netstandard1.0/ja/System.Reflection.xml",
  6284. "ref/netstandard1.0/ko/System.Reflection.xml",
  6285. "ref/netstandard1.0/ru/System.Reflection.xml",
  6286. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6287. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6288. "ref/netstandard1.3/System.Reflection.dll",
  6289. "ref/netstandard1.3/System.Reflection.xml",
  6290. "ref/netstandard1.3/de/System.Reflection.xml",
  6291. "ref/netstandard1.3/es/System.Reflection.xml",
  6292. "ref/netstandard1.3/fr/System.Reflection.xml",
  6293. "ref/netstandard1.3/it/System.Reflection.xml",
  6294. "ref/netstandard1.3/ja/System.Reflection.xml",
  6295. "ref/netstandard1.3/ko/System.Reflection.xml",
  6296. "ref/netstandard1.3/ru/System.Reflection.xml",
  6297. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6298. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6299. "ref/netstandard1.5/System.Reflection.dll",
  6300. "ref/netstandard1.5/System.Reflection.xml",
  6301. "ref/netstandard1.5/de/System.Reflection.xml",
  6302. "ref/netstandard1.5/es/System.Reflection.xml",
  6303. "ref/netstandard1.5/fr/System.Reflection.xml",
  6304. "ref/netstandard1.5/it/System.Reflection.xml",
  6305. "ref/netstandard1.5/ja/System.Reflection.xml",
  6306. "ref/netstandard1.5/ko/System.Reflection.xml",
  6307. "ref/netstandard1.5/ru/System.Reflection.xml",
  6308. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6309. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6310. "ref/portable-net45+win8+wp8+wpa81/_._",
  6311. "ref/win8/_._",
  6312. "ref/wp80/_._",
  6313. "ref/wpa81/_._",
  6314. "ref/xamarinios10/_._",
  6315. "ref/xamarinmac20/_._",
  6316. "ref/xamarintvos10/_._",
  6317. "ref/xamarinwatchos10/_._",
  6318. "system.reflection.4.3.0.nupkg.sha512",
  6319. "system.reflection.nuspec"
  6320. ]
  6321. },
  6322. "System.Reflection.Emit/4.3.0": {
  6323. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6324. "type": "package",
  6325. "path": "system.reflection.emit/4.3.0",
  6326. "files": [
  6327. ".nupkg.metadata",
  6328. ".signature.p7s",
  6329. "ThirdPartyNotices.txt",
  6330. "dotnet_library_license.txt",
  6331. "lib/MonoAndroid10/_._",
  6332. "lib/monotouch10/_._",
  6333. "lib/net45/_._",
  6334. "lib/netcore50/System.Reflection.Emit.dll",
  6335. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6336. "lib/xamarinios10/_._",
  6337. "lib/xamarinmac20/_._",
  6338. "lib/xamarintvos10/_._",
  6339. "lib/xamarinwatchos10/_._",
  6340. "ref/MonoAndroid10/_._",
  6341. "ref/net45/_._",
  6342. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6343. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6344. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6345. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6346. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6347. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6348. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6349. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6350. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6351. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6352. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6353. "ref/xamarinmac20/_._",
  6354. "system.reflection.emit.4.3.0.nupkg.sha512",
  6355. "system.reflection.emit.nuspec"
  6356. ]
  6357. },
  6358. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6359. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6360. "type": "package",
  6361. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6362. "files": [
  6363. ".nupkg.metadata",
  6364. ".signature.p7s",
  6365. "ThirdPartyNotices.txt",
  6366. "dotnet_library_license.txt",
  6367. "lib/MonoAndroid10/_._",
  6368. "lib/MonoTouch10/_._",
  6369. "lib/net45/_._",
  6370. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6371. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6372. "lib/portable-net45+wp8/_._",
  6373. "lib/wp80/_._",
  6374. "lib/xamarinios10/_._",
  6375. "lib/xamarinmac20/_._",
  6376. "lib/xamarintvos10/_._",
  6377. "lib/xamarinwatchos10/_._",
  6378. "ref/MonoAndroid10/_._",
  6379. "ref/MonoTouch10/_._",
  6380. "ref/net45/_._",
  6381. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6382. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6383. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6384. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6385. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6386. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6387. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6388. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6389. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6390. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6391. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6392. "ref/portable-net45+wp8/_._",
  6393. "ref/wp80/_._",
  6394. "ref/xamarinios10/_._",
  6395. "ref/xamarinmac20/_._",
  6396. "ref/xamarintvos10/_._",
  6397. "ref/xamarinwatchos10/_._",
  6398. "runtimes/aot/lib/netcore50/_._",
  6399. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6400. "system.reflection.emit.ilgeneration.nuspec"
  6401. ]
  6402. },
  6403. "System.Reflection.Emit.Lightweight/4.0.1": {
  6404. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  6405. "type": "package",
  6406. "path": "system.reflection.emit.lightweight/4.0.1",
  6407. "files": [
  6408. ".nupkg.metadata",
  6409. "ThirdPartyNotices.txt",
  6410. "dotnet_library_license.txt",
  6411. "lib/net45/_._",
  6412. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6413. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6414. "lib/portable-net45+wp8/_._",
  6415. "lib/wp80/_._",
  6416. "ref/net45/_._",
  6417. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6418. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6419. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6420. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6421. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6422. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6423. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6424. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6425. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6426. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6427. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6428. "ref/portable-net45+wp8/_._",
  6429. "ref/wp80/_._",
  6430. "runtimes/aot/lib/netcore50/_._",
  6431. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  6432. "system.reflection.emit.lightweight.nuspec"
  6433. ]
  6434. },
  6435. "System.Reflection.Extensions/4.3.0": {
  6436. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6437. "type": "package",
  6438. "path": "system.reflection.extensions/4.3.0",
  6439. "files": [
  6440. ".nupkg.metadata",
  6441. ".signature.p7s",
  6442. "ThirdPartyNotices.txt",
  6443. "dotnet_library_license.txt",
  6444. "lib/MonoAndroid10/_._",
  6445. "lib/MonoTouch10/_._",
  6446. "lib/net45/_._",
  6447. "lib/portable-net45+win8+wp8+wpa81/_._",
  6448. "lib/win8/_._",
  6449. "lib/wp80/_._",
  6450. "lib/wpa81/_._",
  6451. "lib/xamarinios10/_._",
  6452. "lib/xamarinmac20/_._",
  6453. "lib/xamarintvos10/_._",
  6454. "lib/xamarinwatchos10/_._",
  6455. "ref/MonoAndroid10/_._",
  6456. "ref/MonoTouch10/_._",
  6457. "ref/net45/_._",
  6458. "ref/netcore50/System.Reflection.Extensions.dll",
  6459. "ref/netcore50/System.Reflection.Extensions.xml",
  6460. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6461. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6462. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6463. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6464. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6465. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6466. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6467. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6468. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6469. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6470. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6471. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6472. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6473. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6474. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6475. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6476. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6477. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6478. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6479. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6480. "ref/portable-net45+win8+wp8+wpa81/_._",
  6481. "ref/win8/_._",
  6482. "ref/wp80/_._",
  6483. "ref/wpa81/_._",
  6484. "ref/xamarinios10/_._",
  6485. "ref/xamarinmac20/_._",
  6486. "ref/xamarintvos10/_._",
  6487. "ref/xamarinwatchos10/_._",
  6488. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6489. "system.reflection.extensions.nuspec"
  6490. ]
  6491. },
  6492. "System.Reflection.Primitives/4.3.0": {
  6493. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6494. "type": "package",
  6495. "path": "system.reflection.primitives/4.3.0",
  6496. "files": [
  6497. ".nupkg.metadata",
  6498. ".signature.p7s",
  6499. "ThirdPartyNotices.txt",
  6500. "dotnet_library_license.txt",
  6501. "lib/MonoAndroid10/_._",
  6502. "lib/MonoTouch10/_._",
  6503. "lib/net45/_._",
  6504. "lib/portable-net45+win8+wp8+wpa81/_._",
  6505. "lib/win8/_._",
  6506. "lib/wp80/_._",
  6507. "lib/wpa81/_._",
  6508. "lib/xamarinios10/_._",
  6509. "lib/xamarinmac20/_._",
  6510. "lib/xamarintvos10/_._",
  6511. "lib/xamarinwatchos10/_._",
  6512. "ref/MonoAndroid10/_._",
  6513. "ref/MonoTouch10/_._",
  6514. "ref/net45/_._",
  6515. "ref/netcore50/System.Reflection.Primitives.dll",
  6516. "ref/netcore50/System.Reflection.Primitives.xml",
  6517. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6518. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6519. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6520. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6521. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6522. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6523. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6524. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6525. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6526. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6527. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6528. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6529. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6530. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6531. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6532. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6533. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6534. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6535. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6536. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6537. "ref/portable-net45+win8+wp8+wpa81/_._",
  6538. "ref/win8/_._",
  6539. "ref/wp80/_._",
  6540. "ref/wpa81/_._",
  6541. "ref/xamarinios10/_._",
  6542. "ref/xamarinmac20/_._",
  6543. "ref/xamarintvos10/_._",
  6544. "ref/xamarinwatchos10/_._",
  6545. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6546. "system.reflection.primitives.nuspec"
  6547. ]
  6548. },
  6549. "System.Reflection.TypeExtensions/4.3.0": {
  6550. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6551. "type": "package",
  6552. "path": "system.reflection.typeextensions/4.3.0",
  6553. "files": [
  6554. ".nupkg.metadata",
  6555. ".signature.p7s",
  6556. "ThirdPartyNotices.txt",
  6557. "dotnet_library_license.txt",
  6558. "lib/MonoAndroid10/_._",
  6559. "lib/MonoTouch10/_._",
  6560. "lib/net46/System.Reflection.TypeExtensions.dll",
  6561. "lib/net462/System.Reflection.TypeExtensions.dll",
  6562. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6563. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6564. "lib/xamarinios10/_._",
  6565. "lib/xamarinmac20/_._",
  6566. "lib/xamarintvos10/_._",
  6567. "lib/xamarinwatchos10/_._",
  6568. "ref/MonoAndroid10/_._",
  6569. "ref/MonoTouch10/_._",
  6570. "ref/net46/System.Reflection.TypeExtensions.dll",
  6571. "ref/net462/System.Reflection.TypeExtensions.dll",
  6572. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6573. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6574. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6575. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6576. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6577. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6578. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6579. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6580. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6581. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6582. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6583. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6584. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6585. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6586. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6587. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6588. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6589. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6590. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6591. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6592. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6593. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6594. "ref/xamarinios10/_._",
  6595. "ref/xamarinmac20/_._",
  6596. "ref/xamarintvos10/_._",
  6597. "ref/xamarinwatchos10/_._",
  6598. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6599. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6600. "system.reflection.typeextensions.nuspec"
  6601. ]
  6602. },
  6603. "System.Resources.ResourceManager/4.3.0": {
  6604. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6605. "type": "package",
  6606. "path": "system.resources.resourcemanager/4.3.0",
  6607. "files": [
  6608. ".nupkg.metadata",
  6609. ".signature.p7s",
  6610. "ThirdPartyNotices.txt",
  6611. "dotnet_library_license.txt",
  6612. "lib/MonoAndroid10/_._",
  6613. "lib/MonoTouch10/_._",
  6614. "lib/net45/_._",
  6615. "lib/portable-net45+win8+wp8+wpa81/_._",
  6616. "lib/win8/_._",
  6617. "lib/wp80/_._",
  6618. "lib/wpa81/_._",
  6619. "lib/xamarinios10/_._",
  6620. "lib/xamarinmac20/_._",
  6621. "lib/xamarintvos10/_._",
  6622. "lib/xamarinwatchos10/_._",
  6623. "ref/MonoAndroid10/_._",
  6624. "ref/MonoTouch10/_._",
  6625. "ref/net45/_._",
  6626. "ref/netcore50/System.Resources.ResourceManager.dll",
  6627. "ref/netcore50/System.Resources.ResourceManager.xml",
  6628. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6629. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6630. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6631. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6632. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6633. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6634. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6635. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6636. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6637. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6638. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6639. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6640. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6641. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6642. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6643. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6644. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6645. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6646. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6647. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6648. "ref/portable-net45+win8+wp8+wpa81/_._",
  6649. "ref/win8/_._",
  6650. "ref/wp80/_._",
  6651. "ref/wpa81/_._",
  6652. "ref/xamarinios10/_._",
  6653. "ref/xamarinmac20/_._",
  6654. "ref/xamarintvos10/_._",
  6655. "ref/xamarinwatchos10/_._",
  6656. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6657. "system.resources.resourcemanager.nuspec"
  6658. ]
  6659. },
  6660. "System.Runtime/4.3.0": {
  6661. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6662. "type": "package",
  6663. "path": "system.runtime/4.3.0",
  6664. "files": [
  6665. ".nupkg.metadata",
  6666. ".signature.p7s",
  6667. "ThirdPartyNotices.txt",
  6668. "dotnet_library_license.txt",
  6669. "lib/MonoAndroid10/_._",
  6670. "lib/MonoTouch10/_._",
  6671. "lib/net45/_._",
  6672. "lib/net462/System.Runtime.dll",
  6673. "lib/portable-net45+win8+wp80+wpa81/_._",
  6674. "lib/win8/_._",
  6675. "lib/wp80/_._",
  6676. "lib/wpa81/_._",
  6677. "lib/xamarinios10/_._",
  6678. "lib/xamarinmac20/_._",
  6679. "lib/xamarintvos10/_._",
  6680. "lib/xamarinwatchos10/_._",
  6681. "ref/MonoAndroid10/_._",
  6682. "ref/MonoTouch10/_._",
  6683. "ref/net45/_._",
  6684. "ref/net462/System.Runtime.dll",
  6685. "ref/netcore50/System.Runtime.dll",
  6686. "ref/netcore50/System.Runtime.xml",
  6687. "ref/netcore50/de/System.Runtime.xml",
  6688. "ref/netcore50/es/System.Runtime.xml",
  6689. "ref/netcore50/fr/System.Runtime.xml",
  6690. "ref/netcore50/it/System.Runtime.xml",
  6691. "ref/netcore50/ja/System.Runtime.xml",
  6692. "ref/netcore50/ko/System.Runtime.xml",
  6693. "ref/netcore50/ru/System.Runtime.xml",
  6694. "ref/netcore50/zh-hans/System.Runtime.xml",
  6695. "ref/netcore50/zh-hant/System.Runtime.xml",
  6696. "ref/netstandard1.0/System.Runtime.dll",
  6697. "ref/netstandard1.0/System.Runtime.xml",
  6698. "ref/netstandard1.0/de/System.Runtime.xml",
  6699. "ref/netstandard1.0/es/System.Runtime.xml",
  6700. "ref/netstandard1.0/fr/System.Runtime.xml",
  6701. "ref/netstandard1.0/it/System.Runtime.xml",
  6702. "ref/netstandard1.0/ja/System.Runtime.xml",
  6703. "ref/netstandard1.0/ko/System.Runtime.xml",
  6704. "ref/netstandard1.0/ru/System.Runtime.xml",
  6705. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6706. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6707. "ref/netstandard1.2/System.Runtime.dll",
  6708. "ref/netstandard1.2/System.Runtime.xml",
  6709. "ref/netstandard1.2/de/System.Runtime.xml",
  6710. "ref/netstandard1.2/es/System.Runtime.xml",
  6711. "ref/netstandard1.2/fr/System.Runtime.xml",
  6712. "ref/netstandard1.2/it/System.Runtime.xml",
  6713. "ref/netstandard1.2/ja/System.Runtime.xml",
  6714. "ref/netstandard1.2/ko/System.Runtime.xml",
  6715. "ref/netstandard1.2/ru/System.Runtime.xml",
  6716. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6717. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6718. "ref/netstandard1.3/System.Runtime.dll",
  6719. "ref/netstandard1.3/System.Runtime.xml",
  6720. "ref/netstandard1.3/de/System.Runtime.xml",
  6721. "ref/netstandard1.3/es/System.Runtime.xml",
  6722. "ref/netstandard1.3/fr/System.Runtime.xml",
  6723. "ref/netstandard1.3/it/System.Runtime.xml",
  6724. "ref/netstandard1.3/ja/System.Runtime.xml",
  6725. "ref/netstandard1.3/ko/System.Runtime.xml",
  6726. "ref/netstandard1.3/ru/System.Runtime.xml",
  6727. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6728. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6729. "ref/netstandard1.5/System.Runtime.dll",
  6730. "ref/netstandard1.5/System.Runtime.xml",
  6731. "ref/netstandard1.5/de/System.Runtime.xml",
  6732. "ref/netstandard1.5/es/System.Runtime.xml",
  6733. "ref/netstandard1.5/fr/System.Runtime.xml",
  6734. "ref/netstandard1.5/it/System.Runtime.xml",
  6735. "ref/netstandard1.5/ja/System.Runtime.xml",
  6736. "ref/netstandard1.5/ko/System.Runtime.xml",
  6737. "ref/netstandard1.5/ru/System.Runtime.xml",
  6738. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6739. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6740. "ref/portable-net45+win8+wp80+wpa81/_._",
  6741. "ref/win8/_._",
  6742. "ref/wp80/_._",
  6743. "ref/wpa81/_._",
  6744. "ref/xamarinios10/_._",
  6745. "ref/xamarinmac20/_._",
  6746. "ref/xamarintvos10/_._",
  6747. "ref/xamarinwatchos10/_._",
  6748. "system.runtime.4.3.0.nupkg.sha512",
  6749. "system.runtime.nuspec"
  6750. ]
  6751. },
  6752. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6753. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6754. "type": "package",
  6755. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6756. "files": [
  6757. ".nupkg.metadata",
  6758. ".signature.p7s",
  6759. "Icon.png",
  6760. "LICENSE.TXT",
  6761. "THIRD-PARTY-NOTICES.TXT",
  6762. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6763. "buildTransitive/netcoreapp3.1/_._",
  6764. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6765. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6766. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6767. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6768. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6769. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6770. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6771. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6772. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6773. "system.runtime.compilerservices.unsafe.nuspec",
  6774. "useSharedDesignerContext.txt"
  6775. ]
  6776. },
  6777. "System.Runtime.Extensions/4.3.0": {
  6778. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6779. "type": "package",
  6780. "path": "system.runtime.extensions/4.3.0",
  6781. "files": [
  6782. ".nupkg.metadata",
  6783. ".signature.p7s",
  6784. "ThirdPartyNotices.txt",
  6785. "dotnet_library_license.txt",
  6786. "lib/MonoAndroid10/_._",
  6787. "lib/MonoTouch10/_._",
  6788. "lib/net45/_._",
  6789. "lib/net462/System.Runtime.Extensions.dll",
  6790. "lib/portable-net45+win8+wp8+wpa81/_._",
  6791. "lib/win8/_._",
  6792. "lib/wp80/_._",
  6793. "lib/wpa81/_._",
  6794. "lib/xamarinios10/_._",
  6795. "lib/xamarinmac20/_._",
  6796. "lib/xamarintvos10/_._",
  6797. "lib/xamarinwatchos10/_._",
  6798. "ref/MonoAndroid10/_._",
  6799. "ref/MonoTouch10/_._",
  6800. "ref/net45/_._",
  6801. "ref/net462/System.Runtime.Extensions.dll",
  6802. "ref/netcore50/System.Runtime.Extensions.dll",
  6803. "ref/netcore50/System.Runtime.Extensions.xml",
  6804. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6805. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6806. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6807. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6808. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6809. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6810. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6811. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6812. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6813. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6814. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6815. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6816. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6817. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6818. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6819. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6820. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6821. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6822. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6823. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6824. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6825. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6826. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6827. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6828. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6829. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6830. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6831. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6832. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6833. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6834. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6835. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6836. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6837. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6838. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6839. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6840. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6841. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6842. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6843. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6844. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6845. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6846. "ref/portable-net45+win8+wp8+wpa81/_._",
  6847. "ref/win8/_._",
  6848. "ref/wp80/_._",
  6849. "ref/wpa81/_._",
  6850. "ref/xamarinios10/_._",
  6851. "ref/xamarinmac20/_._",
  6852. "ref/xamarintvos10/_._",
  6853. "ref/xamarinwatchos10/_._",
  6854. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6855. "system.runtime.extensions.nuspec"
  6856. ]
  6857. },
  6858. "System.Runtime.Handles/4.3.0": {
  6859. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6860. "type": "package",
  6861. "path": "system.runtime.handles/4.3.0",
  6862. "files": [
  6863. ".nupkg.metadata",
  6864. ".signature.p7s",
  6865. "ThirdPartyNotices.txt",
  6866. "dotnet_library_license.txt",
  6867. "lib/MonoAndroid10/_._",
  6868. "lib/MonoTouch10/_._",
  6869. "lib/net46/_._",
  6870. "lib/xamarinios10/_._",
  6871. "lib/xamarinmac20/_._",
  6872. "lib/xamarintvos10/_._",
  6873. "lib/xamarinwatchos10/_._",
  6874. "ref/MonoAndroid10/_._",
  6875. "ref/MonoTouch10/_._",
  6876. "ref/net46/_._",
  6877. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6878. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6879. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6880. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6881. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6882. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6883. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6884. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6885. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6886. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6887. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6888. "ref/xamarinios10/_._",
  6889. "ref/xamarinmac20/_._",
  6890. "ref/xamarintvos10/_._",
  6891. "ref/xamarinwatchos10/_._",
  6892. "system.runtime.handles.4.3.0.nupkg.sha512",
  6893. "system.runtime.handles.nuspec"
  6894. ]
  6895. },
  6896. "System.Runtime.InteropServices/4.3.0": {
  6897. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6898. "type": "package",
  6899. "path": "system.runtime.interopservices/4.3.0",
  6900. "files": [
  6901. ".nupkg.metadata",
  6902. ".signature.p7s",
  6903. "ThirdPartyNotices.txt",
  6904. "dotnet_library_license.txt",
  6905. "lib/MonoAndroid10/_._",
  6906. "lib/MonoTouch10/_._",
  6907. "lib/net45/_._",
  6908. "lib/net462/System.Runtime.InteropServices.dll",
  6909. "lib/net463/System.Runtime.InteropServices.dll",
  6910. "lib/portable-net45+win8+wpa81/_._",
  6911. "lib/win8/_._",
  6912. "lib/wpa81/_._",
  6913. "lib/xamarinios10/_._",
  6914. "lib/xamarinmac20/_._",
  6915. "lib/xamarintvos10/_._",
  6916. "lib/xamarinwatchos10/_._",
  6917. "ref/MonoAndroid10/_._",
  6918. "ref/MonoTouch10/_._",
  6919. "ref/net45/_._",
  6920. "ref/net462/System.Runtime.InteropServices.dll",
  6921. "ref/net463/System.Runtime.InteropServices.dll",
  6922. "ref/netcore50/System.Runtime.InteropServices.dll",
  6923. "ref/netcore50/System.Runtime.InteropServices.xml",
  6924. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6925. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6926. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6927. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6928. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6929. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6930. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6931. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6932. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6933. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6934. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6935. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6936. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6937. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6938. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6939. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6940. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6941. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6942. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6943. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6944. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6945. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6946. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6947. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6948. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6949. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6950. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6951. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6952. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6953. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6954. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6955. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6956. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6957. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6958. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6959. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6960. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6961. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6962. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6963. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6964. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6965. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6966. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6967. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6968. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6969. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6970. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6971. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6972. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6973. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6974. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6975. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6976. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6977. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6978. "ref/portable-net45+win8+wpa81/_._",
  6979. "ref/win8/_._",
  6980. "ref/wpa81/_._",
  6981. "ref/xamarinios10/_._",
  6982. "ref/xamarinmac20/_._",
  6983. "ref/xamarintvos10/_._",
  6984. "ref/xamarinwatchos10/_._",
  6985. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6986. "system.runtime.interopservices.nuspec"
  6987. ]
  6988. },
  6989. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6990. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6991. "type": "package",
  6992. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6993. "files": [
  6994. ".nupkg.metadata",
  6995. ".signature.p7s",
  6996. "ThirdPartyNotices.txt",
  6997. "dotnet_library_license.txt",
  6998. "lib/MonoAndroid10/_._",
  6999. "lib/MonoTouch10/_._",
  7000. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7001. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7002. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7003. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7004. "lib/xamarinios10/_._",
  7005. "lib/xamarinmac20/_._",
  7006. "lib/xamarintvos10/_._",
  7007. "lib/xamarinwatchos10/_._",
  7008. "ref/MonoAndroid10/_._",
  7009. "ref/MonoTouch10/_._",
  7010. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7011. "ref/xamarinios10/_._",
  7012. "ref/xamarinmac20/_._",
  7013. "ref/xamarintvos10/_._",
  7014. "ref/xamarinwatchos10/_._",
  7015. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7016. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7017. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7018. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7019. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7020. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7021. "system.runtime.interopservices.runtimeinformation.nuspec"
  7022. ]
  7023. },
  7024. "System.Runtime.Numerics/4.3.0": {
  7025. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7026. "type": "package",
  7027. "path": "system.runtime.numerics/4.3.0",
  7028. "files": [
  7029. ".nupkg.metadata",
  7030. ".signature.p7s",
  7031. "ThirdPartyNotices.txt",
  7032. "dotnet_library_license.txt",
  7033. "lib/MonoAndroid10/_._",
  7034. "lib/MonoTouch10/_._",
  7035. "lib/net45/_._",
  7036. "lib/netcore50/System.Runtime.Numerics.dll",
  7037. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7038. "lib/portable-net45+win8+wpa81/_._",
  7039. "lib/win8/_._",
  7040. "lib/wpa81/_._",
  7041. "lib/xamarinios10/_._",
  7042. "lib/xamarinmac20/_._",
  7043. "lib/xamarintvos10/_._",
  7044. "lib/xamarinwatchos10/_._",
  7045. "ref/MonoAndroid10/_._",
  7046. "ref/MonoTouch10/_._",
  7047. "ref/net45/_._",
  7048. "ref/netcore50/System.Runtime.Numerics.dll",
  7049. "ref/netcore50/System.Runtime.Numerics.xml",
  7050. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7051. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7052. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7053. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7054. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7055. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7056. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7057. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7058. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7059. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7060. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7061. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7062. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7063. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7064. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7065. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7066. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7067. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7068. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7069. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7070. "ref/portable-net45+win8+wpa81/_._",
  7071. "ref/win8/_._",
  7072. "ref/wpa81/_._",
  7073. "ref/xamarinios10/_._",
  7074. "ref/xamarinmac20/_._",
  7075. "ref/xamarintvos10/_._",
  7076. "ref/xamarinwatchos10/_._",
  7077. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7078. "system.runtime.numerics.nuspec"
  7079. ]
  7080. },
  7081. "System.Runtime.Serialization.Primitives/4.1.1": {
  7082. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  7083. "type": "package",
  7084. "path": "system.runtime.serialization.primitives/4.1.1",
  7085. "files": [
  7086. ".nupkg.metadata",
  7087. ".signature.p7s",
  7088. "ThirdPartyNotices.txt",
  7089. "dotnet_library_license.txt",
  7090. "lib/MonoAndroid10/_._",
  7091. "lib/MonoTouch10/_._",
  7092. "lib/net45/_._",
  7093. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7094. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7095. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7096. "lib/portable-net45+win8+wp8+wpa81/_._",
  7097. "lib/win8/_._",
  7098. "lib/wp80/_._",
  7099. "lib/wpa81/_._",
  7100. "lib/xamarinios10/_._",
  7101. "lib/xamarinmac20/_._",
  7102. "lib/xamarintvos10/_._",
  7103. "lib/xamarinwatchos10/_._",
  7104. "ref/MonoAndroid10/_._",
  7105. "ref/MonoTouch10/_._",
  7106. "ref/net45/_._",
  7107. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7108. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7109. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7110. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7111. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7112. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7113. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7114. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7115. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7116. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7117. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7118. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7119. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7120. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7121. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7122. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7123. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7124. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7125. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7126. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7127. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7128. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7129. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7130. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7131. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7132. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7133. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7134. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7135. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7136. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7137. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7138. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7139. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7140. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7141. "ref/portable-net45+win8+wp8+wpa81/_._",
  7142. "ref/win8/_._",
  7143. "ref/wp80/_._",
  7144. "ref/wpa81/_._",
  7145. "ref/xamarinios10/_._",
  7146. "ref/xamarinmac20/_._",
  7147. "ref/xamarintvos10/_._",
  7148. "ref/xamarinwatchos10/_._",
  7149. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7150. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  7151. "system.runtime.serialization.primitives.nuspec"
  7152. ]
  7153. },
  7154. "System.Security.AccessControl/5.0.0": {
  7155. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  7156. "type": "package",
  7157. "path": "system.security.accesscontrol/5.0.0",
  7158. "files": [
  7159. ".nupkg.metadata",
  7160. ".signature.p7s",
  7161. "Icon.png",
  7162. "LICENSE.TXT",
  7163. "THIRD-PARTY-NOTICES.TXT",
  7164. "lib/net46/System.Security.AccessControl.dll",
  7165. "lib/net461/System.Security.AccessControl.dll",
  7166. "lib/net461/System.Security.AccessControl.xml",
  7167. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7168. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7169. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7170. "lib/uap10.0.16299/_._",
  7171. "ref/net46/System.Security.AccessControl.dll",
  7172. "ref/net461/System.Security.AccessControl.dll",
  7173. "ref/net461/System.Security.AccessControl.xml",
  7174. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7175. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7176. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7177. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7178. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7179. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7180. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7181. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7182. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7183. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7184. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7185. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7186. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7187. "ref/uap10.0.16299/_._",
  7188. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7189. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7190. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7191. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7192. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7193. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7194. "runtimes/win/lib/uap10.0.16299/_._",
  7195. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  7196. "system.security.accesscontrol.nuspec",
  7197. "useSharedDesignerContext.txt",
  7198. "version.txt"
  7199. ]
  7200. },
  7201. "System.Security.Claims/4.3.0": {
  7202. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7203. "type": "package",
  7204. "path": "system.security.claims/4.3.0",
  7205. "files": [
  7206. ".nupkg.metadata",
  7207. ".signature.p7s",
  7208. "ThirdPartyNotices.txt",
  7209. "dotnet_library_license.txt",
  7210. "lib/MonoAndroid10/_._",
  7211. "lib/MonoTouch10/_._",
  7212. "lib/net46/System.Security.Claims.dll",
  7213. "lib/netstandard1.3/System.Security.Claims.dll",
  7214. "lib/xamarinios10/_._",
  7215. "lib/xamarinmac20/_._",
  7216. "lib/xamarintvos10/_._",
  7217. "lib/xamarinwatchos10/_._",
  7218. "ref/MonoAndroid10/_._",
  7219. "ref/MonoTouch10/_._",
  7220. "ref/net46/System.Security.Claims.dll",
  7221. "ref/netstandard1.3/System.Security.Claims.dll",
  7222. "ref/netstandard1.3/System.Security.Claims.xml",
  7223. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7224. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7225. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7226. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7227. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7228. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7229. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7230. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7231. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7232. "ref/xamarinios10/_._",
  7233. "ref/xamarinmac20/_._",
  7234. "ref/xamarintvos10/_._",
  7235. "ref/xamarinwatchos10/_._",
  7236. "system.security.claims.4.3.0.nupkg.sha512",
  7237. "system.security.claims.nuspec"
  7238. ]
  7239. },
  7240. "System.Security.Cryptography.Algorithms/4.3.0": {
  7241. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7242. "type": "package",
  7243. "path": "system.security.cryptography.algorithms/4.3.0",
  7244. "files": [
  7245. ".nupkg.metadata",
  7246. ".signature.p7s",
  7247. "ThirdPartyNotices.txt",
  7248. "dotnet_library_license.txt",
  7249. "lib/MonoAndroid10/_._",
  7250. "lib/MonoTouch10/_._",
  7251. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7252. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7253. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7254. "lib/xamarinios10/_._",
  7255. "lib/xamarinmac20/_._",
  7256. "lib/xamarintvos10/_._",
  7257. "lib/xamarinwatchos10/_._",
  7258. "ref/MonoAndroid10/_._",
  7259. "ref/MonoTouch10/_._",
  7260. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7261. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7262. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7263. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7264. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7265. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7266. "ref/xamarinios10/_._",
  7267. "ref/xamarinmac20/_._",
  7268. "ref/xamarintvos10/_._",
  7269. "ref/xamarinwatchos10/_._",
  7270. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7271. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7272. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7273. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7274. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7275. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7276. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7277. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7278. "system.security.cryptography.algorithms.nuspec"
  7279. ]
  7280. },
  7281. "System.Security.Cryptography.Cng/5.0.0": {
  7282. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  7283. "type": "package",
  7284. "path": "system.security.cryptography.cng/5.0.0",
  7285. "files": [
  7286. ".nupkg.metadata",
  7287. ".signature.p7s",
  7288. "Icon.png",
  7289. "LICENSE.TXT",
  7290. "THIRD-PARTY-NOTICES.TXT",
  7291. "lib/MonoAndroid10/_._",
  7292. "lib/MonoTouch10/_._",
  7293. "lib/net46/System.Security.Cryptography.Cng.dll",
  7294. "lib/net461/System.Security.Cryptography.Cng.dll",
  7295. "lib/net461/System.Security.Cryptography.Cng.xml",
  7296. "lib/net462/System.Security.Cryptography.Cng.dll",
  7297. "lib/net462/System.Security.Cryptography.Cng.xml",
  7298. "lib/net47/System.Security.Cryptography.Cng.dll",
  7299. "lib/net47/System.Security.Cryptography.Cng.xml",
  7300. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7301. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7302. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7303. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7304. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7305. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7306. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7307. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7308. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7309. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7310. "lib/uap10.0.16299/_._",
  7311. "lib/xamarinios10/_._",
  7312. "lib/xamarinmac20/_._",
  7313. "lib/xamarintvos10/_._",
  7314. "lib/xamarinwatchos10/_._",
  7315. "ref/MonoAndroid10/_._",
  7316. "ref/MonoTouch10/_._",
  7317. "ref/net46/System.Security.Cryptography.Cng.dll",
  7318. "ref/net461/System.Security.Cryptography.Cng.dll",
  7319. "ref/net461/System.Security.Cryptography.Cng.xml",
  7320. "ref/net462/System.Security.Cryptography.Cng.dll",
  7321. "ref/net462/System.Security.Cryptography.Cng.xml",
  7322. "ref/net47/System.Security.Cryptography.Cng.dll",
  7323. "ref/net47/System.Security.Cryptography.Cng.xml",
  7324. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7325. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7326. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7327. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7328. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7329. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7330. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7331. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7332. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7333. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7334. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7335. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7336. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7337. "ref/uap10.0.16299/_._",
  7338. "ref/xamarinios10/_._",
  7339. "ref/xamarinmac20/_._",
  7340. "ref/xamarintvos10/_._",
  7341. "ref/xamarinwatchos10/_._",
  7342. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7343. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7344. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  7345. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7346. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  7347. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7348. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  7349. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7350. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7351. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7352. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7353. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7354. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7355. "runtimes/win/lib/uap10.0.16299/_._",
  7356. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  7357. "system.security.cryptography.cng.nuspec",
  7358. "useSharedDesignerContext.txt",
  7359. "version.txt"
  7360. ]
  7361. },
  7362. "System.Security.Cryptography.Csp/4.3.0": {
  7363. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7364. "type": "package",
  7365. "path": "system.security.cryptography.csp/4.3.0",
  7366. "files": [
  7367. ".nupkg.metadata",
  7368. ".signature.p7s",
  7369. "ThirdPartyNotices.txt",
  7370. "dotnet_library_license.txt",
  7371. "lib/MonoAndroid10/_._",
  7372. "lib/MonoTouch10/_._",
  7373. "lib/net46/System.Security.Cryptography.Csp.dll",
  7374. "lib/xamarinios10/_._",
  7375. "lib/xamarinmac20/_._",
  7376. "lib/xamarintvos10/_._",
  7377. "lib/xamarinwatchos10/_._",
  7378. "ref/MonoAndroid10/_._",
  7379. "ref/MonoTouch10/_._",
  7380. "ref/net46/System.Security.Cryptography.Csp.dll",
  7381. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7382. "ref/xamarinios10/_._",
  7383. "ref/xamarinmac20/_._",
  7384. "ref/xamarintvos10/_._",
  7385. "ref/xamarinwatchos10/_._",
  7386. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7387. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7388. "runtimes/win/lib/netcore50/_._",
  7389. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7390. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7391. "system.security.cryptography.csp.nuspec"
  7392. ]
  7393. },
  7394. "System.Security.Cryptography.Encoding/4.3.0": {
  7395. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7396. "type": "package",
  7397. "path": "system.security.cryptography.encoding/4.3.0",
  7398. "files": [
  7399. ".nupkg.metadata",
  7400. ".signature.p7s",
  7401. "ThirdPartyNotices.txt",
  7402. "dotnet_library_license.txt",
  7403. "lib/MonoAndroid10/_._",
  7404. "lib/MonoTouch10/_._",
  7405. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7406. "lib/xamarinios10/_._",
  7407. "lib/xamarinmac20/_._",
  7408. "lib/xamarintvos10/_._",
  7409. "lib/xamarinwatchos10/_._",
  7410. "ref/MonoAndroid10/_._",
  7411. "ref/MonoTouch10/_._",
  7412. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7413. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7414. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7415. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7416. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7417. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7418. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7419. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7420. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7421. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7422. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7423. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7424. "ref/xamarinios10/_._",
  7425. "ref/xamarinmac20/_._",
  7426. "ref/xamarintvos10/_._",
  7427. "ref/xamarinwatchos10/_._",
  7428. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7429. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7430. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7431. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7432. "system.security.cryptography.encoding.nuspec"
  7433. ]
  7434. },
  7435. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7436. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7437. "type": "package",
  7438. "path": "system.security.cryptography.openssl/4.3.0",
  7439. "files": [
  7440. ".nupkg.metadata",
  7441. ".signature.p7s",
  7442. "ThirdPartyNotices.txt",
  7443. "dotnet_library_license.txt",
  7444. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7445. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7446. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7447. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7448. "system.security.cryptography.openssl.nuspec"
  7449. ]
  7450. },
  7451. "System.Security.Cryptography.Pkcs/5.0.0": {
  7452. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  7453. "type": "package",
  7454. "path": "system.security.cryptography.pkcs/5.0.0",
  7455. "files": [
  7456. ".nupkg.metadata",
  7457. ".signature.p7s",
  7458. "Icon.png",
  7459. "LICENSE.TXT",
  7460. "THIRD-PARTY-NOTICES.TXT",
  7461. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  7462. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7463. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7464. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7465. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7466. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7467. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7468. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7469. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7470. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7471. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7472. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  7473. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  7474. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  7475. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7476. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  7477. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7478. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7479. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7480. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7481. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7482. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7483. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7484. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  7485. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7486. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7487. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7488. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7489. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7490. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7491. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7492. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7493. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7494. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7495. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  7496. "system.security.cryptography.pkcs.nuspec",
  7497. "useSharedDesignerContext.txt",
  7498. "version.txt"
  7499. ]
  7500. },
  7501. "System.Security.Cryptography.Primitives/4.3.0": {
  7502. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7503. "type": "package",
  7504. "path": "system.security.cryptography.primitives/4.3.0",
  7505. "files": [
  7506. ".nupkg.metadata",
  7507. ".signature.p7s",
  7508. "ThirdPartyNotices.txt",
  7509. "dotnet_library_license.txt",
  7510. "lib/MonoAndroid10/_._",
  7511. "lib/MonoTouch10/_._",
  7512. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7513. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7514. "lib/xamarinios10/_._",
  7515. "lib/xamarinmac20/_._",
  7516. "lib/xamarintvos10/_._",
  7517. "lib/xamarinwatchos10/_._",
  7518. "ref/MonoAndroid10/_._",
  7519. "ref/MonoTouch10/_._",
  7520. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7521. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7522. "ref/xamarinios10/_._",
  7523. "ref/xamarinmac20/_._",
  7524. "ref/xamarintvos10/_._",
  7525. "ref/xamarinwatchos10/_._",
  7526. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7527. "system.security.cryptography.primitives.nuspec"
  7528. ]
  7529. },
  7530. "System.Security.Cryptography.X509Certificates/4.3.2": {
  7531. "sha512": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
  7532. "type": "package",
  7533. "path": "system.security.cryptography.x509certificates/4.3.2",
  7534. "files": [
  7535. ".nupkg.metadata",
  7536. ".signature.p7s",
  7537. "ThirdPartyNotices.txt",
  7538. "dotnet_library_license.txt",
  7539. "lib/MonoAndroid10/_._",
  7540. "lib/MonoTouch10/_._",
  7541. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7542. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7543. "lib/xamarinios10/_._",
  7544. "lib/xamarinmac20/_._",
  7545. "lib/xamarintvos10/_._",
  7546. "lib/xamarinwatchos10/_._",
  7547. "ref/MonoAndroid10/_._",
  7548. "ref/MonoTouch10/_._",
  7549. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7550. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7551. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7552. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7553. "ref/xamarinios10/_._",
  7554. "ref/xamarinmac20/_._",
  7555. "ref/xamarintvos10/_._",
  7556. "ref/xamarinwatchos10/_._",
  7557. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7558. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7559. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7560. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7561. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7562. "system.security.cryptography.x509certificates.4.3.2.nupkg.sha512",
  7563. "system.security.cryptography.x509certificates.nuspec"
  7564. ]
  7565. },
  7566. "System.Security.Principal/4.3.0": {
  7567. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  7568. "type": "package",
  7569. "path": "system.security.principal/4.3.0",
  7570. "files": [
  7571. ".nupkg.metadata",
  7572. ".signature.p7s",
  7573. "ThirdPartyNotices.txt",
  7574. "dotnet_library_license.txt",
  7575. "lib/MonoAndroid10/_._",
  7576. "lib/MonoTouch10/_._",
  7577. "lib/net45/_._",
  7578. "lib/netcore50/System.Security.Principal.dll",
  7579. "lib/netstandard1.0/System.Security.Principal.dll",
  7580. "lib/portable-net45+win8+wp8+wpa81/_._",
  7581. "lib/win8/_._",
  7582. "lib/wp80/_._",
  7583. "lib/wpa81/_._",
  7584. "lib/xamarinios10/_._",
  7585. "lib/xamarinmac20/_._",
  7586. "lib/xamarintvos10/_._",
  7587. "lib/xamarinwatchos10/_._",
  7588. "ref/MonoAndroid10/_._",
  7589. "ref/MonoTouch10/_._",
  7590. "ref/net45/_._",
  7591. "ref/netcore50/System.Security.Principal.dll",
  7592. "ref/netcore50/System.Security.Principal.xml",
  7593. "ref/netcore50/de/System.Security.Principal.xml",
  7594. "ref/netcore50/es/System.Security.Principal.xml",
  7595. "ref/netcore50/fr/System.Security.Principal.xml",
  7596. "ref/netcore50/it/System.Security.Principal.xml",
  7597. "ref/netcore50/ja/System.Security.Principal.xml",
  7598. "ref/netcore50/ko/System.Security.Principal.xml",
  7599. "ref/netcore50/ru/System.Security.Principal.xml",
  7600. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  7601. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  7602. "ref/netstandard1.0/System.Security.Principal.dll",
  7603. "ref/netstandard1.0/System.Security.Principal.xml",
  7604. "ref/netstandard1.0/de/System.Security.Principal.xml",
  7605. "ref/netstandard1.0/es/System.Security.Principal.xml",
  7606. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  7607. "ref/netstandard1.0/it/System.Security.Principal.xml",
  7608. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  7609. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  7610. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  7611. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  7612. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  7613. "ref/portable-net45+win8+wp8+wpa81/_._",
  7614. "ref/win8/_._",
  7615. "ref/wp80/_._",
  7616. "ref/wpa81/_._",
  7617. "ref/xamarinios10/_._",
  7618. "ref/xamarinmac20/_._",
  7619. "ref/xamarintvos10/_._",
  7620. "ref/xamarinwatchos10/_._",
  7621. "system.security.principal.4.3.0.nupkg.sha512",
  7622. "system.security.principal.nuspec"
  7623. ]
  7624. },
  7625. "System.Security.Principal.Windows/5.0.0": {
  7626. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7627. "type": "package",
  7628. "path": "system.security.principal.windows/5.0.0",
  7629. "files": [
  7630. ".nupkg.metadata",
  7631. ".signature.p7s",
  7632. "Icon.png",
  7633. "LICENSE.TXT",
  7634. "THIRD-PARTY-NOTICES.TXT",
  7635. "lib/net46/System.Security.Principal.Windows.dll",
  7636. "lib/net461/System.Security.Principal.Windows.dll",
  7637. "lib/net461/System.Security.Principal.Windows.xml",
  7638. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7639. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7640. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7641. "lib/uap10.0.16299/_._",
  7642. "ref/net46/System.Security.Principal.Windows.dll",
  7643. "ref/net461/System.Security.Principal.Windows.dll",
  7644. "ref/net461/System.Security.Principal.Windows.xml",
  7645. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7646. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7647. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7648. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7649. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7650. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7651. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7652. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7653. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7654. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7655. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7656. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7657. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7658. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7659. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7660. "ref/uap10.0.16299/_._",
  7661. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7662. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7663. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7664. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7665. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7666. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7667. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7668. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7669. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7670. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7671. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7672. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7673. "runtimes/win/lib/uap10.0.16299/_._",
  7674. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7675. "system.security.principal.windows.nuspec",
  7676. "useSharedDesignerContext.txt",
  7677. "version.txt"
  7678. ]
  7679. },
  7680. "System.Text.Encoding/4.3.0": {
  7681. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7682. "type": "package",
  7683. "path": "system.text.encoding/4.3.0",
  7684. "files": [
  7685. ".nupkg.metadata",
  7686. ".signature.p7s",
  7687. "ThirdPartyNotices.txt",
  7688. "dotnet_library_license.txt",
  7689. "lib/MonoAndroid10/_._",
  7690. "lib/MonoTouch10/_._",
  7691. "lib/net45/_._",
  7692. "lib/portable-net45+win8+wp8+wpa81/_._",
  7693. "lib/win8/_._",
  7694. "lib/wp80/_._",
  7695. "lib/wpa81/_._",
  7696. "lib/xamarinios10/_._",
  7697. "lib/xamarinmac20/_._",
  7698. "lib/xamarintvos10/_._",
  7699. "lib/xamarinwatchos10/_._",
  7700. "ref/MonoAndroid10/_._",
  7701. "ref/MonoTouch10/_._",
  7702. "ref/net45/_._",
  7703. "ref/netcore50/System.Text.Encoding.dll",
  7704. "ref/netcore50/System.Text.Encoding.xml",
  7705. "ref/netcore50/de/System.Text.Encoding.xml",
  7706. "ref/netcore50/es/System.Text.Encoding.xml",
  7707. "ref/netcore50/fr/System.Text.Encoding.xml",
  7708. "ref/netcore50/it/System.Text.Encoding.xml",
  7709. "ref/netcore50/ja/System.Text.Encoding.xml",
  7710. "ref/netcore50/ko/System.Text.Encoding.xml",
  7711. "ref/netcore50/ru/System.Text.Encoding.xml",
  7712. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7713. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7714. "ref/netstandard1.0/System.Text.Encoding.dll",
  7715. "ref/netstandard1.0/System.Text.Encoding.xml",
  7716. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7717. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7718. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7719. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7720. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7721. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7722. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7723. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7724. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7725. "ref/netstandard1.3/System.Text.Encoding.dll",
  7726. "ref/netstandard1.3/System.Text.Encoding.xml",
  7727. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7728. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7729. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7730. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7731. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7732. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7733. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7734. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7735. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7736. "ref/portable-net45+win8+wp8+wpa81/_._",
  7737. "ref/win8/_._",
  7738. "ref/wp80/_._",
  7739. "ref/wpa81/_._",
  7740. "ref/xamarinios10/_._",
  7741. "ref/xamarinmac20/_._",
  7742. "ref/xamarintvos10/_._",
  7743. "ref/xamarinwatchos10/_._",
  7744. "system.text.encoding.4.3.0.nupkg.sha512",
  7745. "system.text.encoding.nuspec"
  7746. ]
  7747. },
  7748. "System.Text.Encoding.CodePages/5.0.0": {
  7749. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  7750. "type": "package",
  7751. "path": "system.text.encoding.codepages/5.0.0",
  7752. "files": [
  7753. ".nupkg.metadata",
  7754. ".signature.p7s",
  7755. "Icon.png",
  7756. "LICENSE.TXT",
  7757. "THIRD-PARTY-NOTICES.TXT",
  7758. "lib/MonoAndroid10/_._",
  7759. "lib/MonoTouch10/_._",
  7760. "lib/net46/System.Text.Encoding.CodePages.dll",
  7761. "lib/net461/System.Text.Encoding.CodePages.dll",
  7762. "lib/net461/System.Text.Encoding.CodePages.xml",
  7763. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7764. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7765. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7766. "lib/xamarinios10/_._",
  7767. "lib/xamarinmac20/_._",
  7768. "lib/xamarintvos10/_._",
  7769. "lib/xamarinwatchos10/_._",
  7770. "ref/MonoAndroid10/_._",
  7771. "ref/MonoTouch10/_._",
  7772. "ref/xamarinios10/_._",
  7773. "ref/xamarinmac20/_._",
  7774. "ref/xamarintvos10/_._",
  7775. "ref/xamarinwatchos10/_._",
  7776. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7777. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7778. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7779. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7780. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7781. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7782. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7783. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  7784. "system.text.encoding.codepages.nuspec",
  7785. "useSharedDesignerContext.txt",
  7786. "version.txt"
  7787. ]
  7788. },
  7789. "System.Text.Encoding.Extensions/4.3.0": {
  7790. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7791. "type": "package",
  7792. "path": "system.text.encoding.extensions/4.3.0",
  7793. "files": [
  7794. ".nupkg.metadata",
  7795. ".signature.p7s",
  7796. "ThirdPartyNotices.txt",
  7797. "dotnet_library_license.txt",
  7798. "lib/MonoAndroid10/_._",
  7799. "lib/MonoTouch10/_._",
  7800. "lib/net45/_._",
  7801. "lib/portable-net45+win8+wp8+wpa81/_._",
  7802. "lib/win8/_._",
  7803. "lib/wp80/_._",
  7804. "lib/wpa81/_._",
  7805. "lib/xamarinios10/_._",
  7806. "lib/xamarinmac20/_._",
  7807. "lib/xamarintvos10/_._",
  7808. "lib/xamarinwatchos10/_._",
  7809. "ref/MonoAndroid10/_._",
  7810. "ref/MonoTouch10/_._",
  7811. "ref/net45/_._",
  7812. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7813. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7814. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7815. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7816. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7817. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7818. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7819. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7820. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7821. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7822. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7823. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7824. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7825. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7826. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7827. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7828. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7829. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7830. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7831. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7832. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7833. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7834. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7835. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7836. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7837. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7838. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7839. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7840. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7841. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7842. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7845. "ref/portable-net45+win8+wp8+wpa81/_._",
  7846. "ref/win8/_._",
  7847. "ref/wp80/_._",
  7848. "ref/wpa81/_._",
  7849. "ref/xamarinios10/_._",
  7850. "ref/xamarinmac20/_._",
  7851. "ref/xamarintvos10/_._",
  7852. "ref/xamarinwatchos10/_._",
  7853. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7854. "system.text.encoding.extensions.nuspec"
  7855. ]
  7856. },
  7857. "System.Text.Json/4.7.2": {
  7858. "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
  7859. "type": "package",
  7860. "path": "system.text.json/4.7.2",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. ".signature.p7s",
  7864. "Icon.png",
  7865. "LICENSE.TXT",
  7866. "THIRD-PARTY-NOTICES.TXT",
  7867. "lib/net461/System.Text.Json.dll",
  7868. "lib/net461/System.Text.Json.xml",
  7869. "lib/netcoreapp3.0/System.Text.Json.dll",
  7870. "lib/netcoreapp3.0/System.Text.Json.xml",
  7871. "lib/netstandard2.0/System.Text.Json.dll",
  7872. "lib/netstandard2.0/System.Text.Json.xml",
  7873. "system.text.json.4.7.2.nupkg.sha512",
  7874. "system.text.json.nuspec",
  7875. "useSharedDesignerContext.txt",
  7876. "version.txt"
  7877. ]
  7878. },
  7879. "System.Text.RegularExpressions/4.3.0": {
  7880. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7881. "type": "package",
  7882. "path": "system.text.regularexpressions/4.3.0",
  7883. "files": [
  7884. ".nupkg.metadata",
  7885. ".signature.p7s",
  7886. "ThirdPartyNotices.txt",
  7887. "dotnet_library_license.txt",
  7888. "lib/MonoAndroid10/_._",
  7889. "lib/MonoTouch10/_._",
  7890. "lib/net45/_._",
  7891. "lib/net463/System.Text.RegularExpressions.dll",
  7892. "lib/netcore50/System.Text.RegularExpressions.dll",
  7893. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7894. "lib/portable-net45+win8+wp8+wpa81/_._",
  7895. "lib/win8/_._",
  7896. "lib/wp80/_._",
  7897. "lib/wpa81/_._",
  7898. "lib/xamarinios10/_._",
  7899. "lib/xamarinmac20/_._",
  7900. "lib/xamarintvos10/_._",
  7901. "lib/xamarinwatchos10/_._",
  7902. "ref/MonoAndroid10/_._",
  7903. "ref/MonoTouch10/_._",
  7904. "ref/net45/_._",
  7905. "ref/net463/System.Text.RegularExpressions.dll",
  7906. "ref/netcore50/System.Text.RegularExpressions.dll",
  7907. "ref/netcore50/System.Text.RegularExpressions.xml",
  7908. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7909. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7910. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7911. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7912. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7913. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7914. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7915. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7916. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7917. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7918. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7919. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7920. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7921. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7922. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7923. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7924. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7925. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7926. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7927. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7928. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7929. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7930. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7931. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7932. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7933. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7934. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7935. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7936. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7937. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7938. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7939. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7940. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7941. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7942. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7943. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7944. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7945. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7946. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7947. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7948. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7949. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7950. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7951. "ref/portable-net45+win8+wp8+wpa81/_._",
  7952. "ref/win8/_._",
  7953. "ref/wp80/_._",
  7954. "ref/wpa81/_._",
  7955. "ref/xamarinios10/_._",
  7956. "ref/xamarinmac20/_._",
  7957. "ref/xamarintvos10/_._",
  7958. "ref/xamarinwatchos10/_._",
  7959. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7960. "system.text.regularexpressions.nuspec"
  7961. ]
  7962. },
  7963. "System.Threading/4.3.0": {
  7964. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7965. "type": "package",
  7966. "path": "system.threading/4.3.0",
  7967. "files": [
  7968. ".nupkg.metadata",
  7969. ".signature.p7s",
  7970. "ThirdPartyNotices.txt",
  7971. "dotnet_library_license.txt",
  7972. "lib/MonoAndroid10/_._",
  7973. "lib/MonoTouch10/_._",
  7974. "lib/net45/_._",
  7975. "lib/netcore50/System.Threading.dll",
  7976. "lib/netstandard1.3/System.Threading.dll",
  7977. "lib/portable-net45+win8+wp8+wpa81/_._",
  7978. "lib/win8/_._",
  7979. "lib/wp80/_._",
  7980. "lib/wpa81/_._",
  7981. "lib/xamarinios10/_._",
  7982. "lib/xamarinmac20/_._",
  7983. "lib/xamarintvos10/_._",
  7984. "lib/xamarinwatchos10/_._",
  7985. "ref/MonoAndroid10/_._",
  7986. "ref/MonoTouch10/_._",
  7987. "ref/net45/_._",
  7988. "ref/netcore50/System.Threading.dll",
  7989. "ref/netcore50/System.Threading.xml",
  7990. "ref/netcore50/de/System.Threading.xml",
  7991. "ref/netcore50/es/System.Threading.xml",
  7992. "ref/netcore50/fr/System.Threading.xml",
  7993. "ref/netcore50/it/System.Threading.xml",
  7994. "ref/netcore50/ja/System.Threading.xml",
  7995. "ref/netcore50/ko/System.Threading.xml",
  7996. "ref/netcore50/ru/System.Threading.xml",
  7997. "ref/netcore50/zh-hans/System.Threading.xml",
  7998. "ref/netcore50/zh-hant/System.Threading.xml",
  7999. "ref/netstandard1.0/System.Threading.dll",
  8000. "ref/netstandard1.0/System.Threading.xml",
  8001. "ref/netstandard1.0/de/System.Threading.xml",
  8002. "ref/netstandard1.0/es/System.Threading.xml",
  8003. "ref/netstandard1.0/fr/System.Threading.xml",
  8004. "ref/netstandard1.0/it/System.Threading.xml",
  8005. "ref/netstandard1.0/ja/System.Threading.xml",
  8006. "ref/netstandard1.0/ko/System.Threading.xml",
  8007. "ref/netstandard1.0/ru/System.Threading.xml",
  8008. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8009. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8010. "ref/netstandard1.3/System.Threading.dll",
  8011. "ref/netstandard1.3/System.Threading.xml",
  8012. "ref/netstandard1.3/de/System.Threading.xml",
  8013. "ref/netstandard1.3/es/System.Threading.xml",
  8014. "ref/netstandard1.3/fr/System.Threading.xml",
  8015. "ref/netstandard1.3/it/System.Threading.xml",
  8016. "ref/netstandard1.3/ja/System.Threading.xml",
  8017. "ref/netstandard1.3/ko/System.Threading.xml",
  8018. "ref/netstandard1.3/ru/System.Threading.xml",
  8019. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8020. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8021. "ref/portable-net45+win8+wp8+wpa81/_._",
  8022. "ref/win8/_._",
  8023. "ref/wp80/_._",
  8024. "ref/wpa81/_._",
  8025. "ref/xamarinios10/_._",
  8026. "ref/xamarinmac20/_._",
  8027. "ref/xamarintvos10/_._",
  8028. "ref/xamarinwatchos10/_._",
  8029. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8030. "system.threading.4.3.0.nupkg.sha512",
  8031. "system.threading.nuspec"
  8032. ]
  8033. },
  8034. "System.Threading.Tasks/4.3.0": {
  8035. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8036. "type": "package",
  8037. "path": "system.threading.tasks/4.3.0",
  8038. "files": [
  8039. ".nupkg.metadata",
  8040. ".signature.p7s",
  8041. "ThirdPartyNotices.txt",
  8042. "dotnet_library_license.txt",
  8043. "lib/MonoAndroid10/_._",
  8044. "lib/MonoTouch10/_._",
  8045. "lib/net45/_._",
  8046. "lib/portable-net45+win8+wp8+wpa81/_._",
  8047. "lib/win8/_._",
  8048. "lib/wp80/_._",
  8049. "lib/wpa81/_._",
  8050. "lib/xamarinios10/_._",
  8051. "lib/xamarinmac20/_._",
  8052. "lib/xamarintvos10/_._",
  8053. "lib/xamarinwatchos10/_._",
  8054. "ref/MonoAndroid10/_._",
  8055. "ref/MonoTouch10/_._",
  8056. "ref/net45/_._",
  8057. "ref/netcore50/System.Threading.Tasks.dll",
  8058. "ref/netcore50/System.Threading.Tasks.xml",
  8059. "ref/netcore50/de/System.Threading.Tasks.xml",
  8060. "ref/netcore50/es/System.Threading.Tasks.xml",
  8061. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8062. "ref/netcore50/it/System.Threading.Tasks.xml",
  8063. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8064. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8065. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8066. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8067. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8068. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8069. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8070. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8071. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8072. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8073. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8074. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8075. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8076. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8077. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8078. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8079. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8080. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8081. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8082. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8083. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8084. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8085. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8086. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8087. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8088. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8089. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8090. "ref/portable-net45+win8+wp8+wpa81/_._",
  8091. "ref/win8/_._",
  8092. "ref/wp80/_._",
  8093. "ref/wpa81/_._",
  8094. "ref/xamarinios10/_._",
  8095. "ref/xamarinmac20/_._",
  8096. "ref/xamarintvos10/_._",
  8097. "ref/xamarinwatchos10/_._",
  8098. "system.threading.tasks.4.3.0.nupkg.sha512",
  8099. "system.threading.tasks.nuspec"
  8100. ]
  8101. },
  8102. "System.Threading.Tasks.Extensions/4.5.2": {
  8103. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  8104. "type": "package",
  8105. "path": "system.threading.tasks.extensions/4.5.2",
  8106. "files": [
  8107. ".nupkg.metadata",
  8108. ".signature.p7s",
  8109. "LICENSE.TXT",
  8110. "THIRD-PARTY-NOTICES.TXT",
  8111. "lib/MonoAndroid10/_._",
  8112. "lib/MonoTouch10/_._",
  8113. "lib/netcoreapp2.1/_._",
  8114. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8115. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8116. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8117. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8118. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8119. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8120. "lib/xamarinios10/_._",
  8121. "lib/xamarinmac20/_._",
  8122. "lib/xamarintvos10/_._",
  8123. "lib/xamarinwatchos10/_._",
  8124. "ref/MonoAndroid10/_._",
  8125. "ref/MonoTouch10/_._",
  8126. "ref/netcoreapp2.1/_._",
  8127. "ref/xamarinios10/_._",
  8128. "ref/xamarinmac20/_._",
  8129. "ref/xamarintvos10/_._",
  8130. "ref/xamarinwatchos10/_._",
  8131. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  8132. "system.threading.tasks.extensions.nuspec",
  8133. "useSharedDesignerContext.txt",
  8134. "version.txt"
  8135. ]
  8136. },
  8137. "System.Threading.Timer/4.0.1": {
  8138. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  8139. "type": "package",
  8140. "path": "system.threading.timer/4.0.1",
  8141. "files": [
  8142. ".nupkg.metadata",
  8143. "ThirdPartyNotices.txt",
  8144. "dotnet_library_license.txt",
  8145. "lib/MonoAndroid10/_._",
  8146. "lib/MonoTouch10/_._",
  8147. "lib/net451/_._",
  8148. "lib/portable-net451+win81+wpa81/_._",
  8149. "lib/win81/_._",
  8150. "lib/wpa81/_._",
  8151. "lib/xamarinios10/_._",
  8152. "lib/xamarinmac20/_._",
  8153. "lib/xamarintvos10/_._",
  8154. "lib/xamarinwatchos10/_._",
  8155. "ref/MonoAndroid10/_._",
  8156. "ref/MonoTouch10/_._",
  8157. "ref/net451/_._",
  8158. "ref/netcore50/System.Threading.Timer.dll",
  8159. "ref/netcore50/System.Threading.Timer.xml",
  8160. "ref/netcore50/de/System.Threading.Timer.xml",
  8161. "ref/netcore50/es/System.Threading.Timer.xml",
  8162. "ref/netcore50/fr/System.Threading.Timer.xml",
  8163. "ref/netcore50/it/System.Threading.Timer.xml",
  8164. "ref/netcore50/ja/System.Threading.Timer.xml",
  8165. "ref/netcore50/ko/System.Threading.Timer.xml",
  8166. "ref/netcore50/ru/System.Threading.Timer.xml",
  8167. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8168. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8169. "ref/netstandard1.2/System.Threading.Timer.dll",
  8170. "ref/netstandard1.2/System.Threading.Timer.xml",
  8171. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8172. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8173. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8174. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8175. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8176. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8177. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8178. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8179. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8180. "ref/portable-net451+win81+wpa81/_._",
  8181. "ref/win81/_._",
  8182. "ref/wpa81/_._",
  8183. "ref/xamarinios10/_._",
  8184. "ref/xamarinmac20/_._",
  8185. "ref/xamarintvos10/_._",
  8186. "ref/xamarinwatchos10/_._",
  8187. "system.threading.timer.4.0.1.nupkg.sha512",
  8188. "system.threading.timer.nuspec"
  8189. ]
  8190. },
  8191. "System.Xml.ReaderWriter/4.3.0": {
  8192. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8193. "type": "package",
  8194. "path": "system.xml.readerwriter/4.3.0",
  8195. "files": [
  8196. ".nupkg.metadata",
  8197. ".signature.p7s",
  8198. "ThirdPartyNotices.txt",
  8199. "dotnet_library_license.txt",
  8200. "lib/MonoAndroid10/_._",
  8201. "lib/MonoTouch10/_._",
  8202. "lib/net45/_._",
  8203. "lib/net46/System.Xml.ReaderWriter.dll",
  8204. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8205. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8206. "lib/portable-net45+win8+wp8+wpa81/_._",
  8207. "lib/win8/_._",
  8208. "lib/wp80/_._",
  8209. "lib/wpa81/_._",
  8210. "lib/xamarinios10/_._",
  8211. "lib/xamarinmac20/_._",
  8212. "lib/xamarintvos10/_._",
  8213. "lib/xamarinwatchos10/_._",
  8214. "ref/MonoAndroid10/_._",
  8215. "ref/MonoTouch10/_._",
  8216. "ref/net45/_._",
  8217. "ref/net46/System.Xml.ReaderWriter.dll",
  8218. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8219. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8220. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8221. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8222. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8223. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8224. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8225. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8226. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8227. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8228. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8229. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8230. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8231. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8232. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8233. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8234. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8235. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8236. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8237. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8238. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8239. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8240. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8241. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8242. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8243. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8244. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8245. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8246. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8247. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8248. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8249. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8250. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8251. "ref/portable-net45+win8+wp8+wpa81/_._",
  8252. "ref/win8/_._",
  8253. "ref/wp80/_._",
  8254. "ref/wpa81/_._",
  8255. "ref/xamarinios10/_._",
  8256. "ref/xamarinmac20/_._",
  8257. "ref/xamarintvos10/_._",
  8258. "ref/xamarinwatchos10/_._",
  8259. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8260. "system.xml.readerwriter.nuspec"
  8261. ]
  8262. },
  8263. "System.Xml.XDocument/4.0.11": {
  8264. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  8265. "type": "package",
  8266. "path": "system.xml.xdocument/4.0.11",
  8267. "files": [
  8268. ".nupkg.metadata",
  8269. "ThirdPartyNotices.txt",
  8270. "dotnet_library_license.txt",
  8271. "lib/MonoAndroid10/_._",
  8272. "lib/MonoTouch10/_._",
  8273. "lib/net45/_._",
  8274. "lib/netcore50/System.Xml.XDocument.dll",
  8275. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8276. "lib/portable-net45+win8+wp8+wpa81/_._",
  8277. "lib/win8/_._",
  8278. "lib/wp80/_._",
  8279. "lib/wpa81/_._",
  8280. "lib/xamarinios10/_._",
  8281. "lib/xamarinmac20/_._",
  8282. "lib/xamarintvos10/_._",
  8283. "lib/xamarinwatchos10/_._",
  8284. "ref/MonoAndroid10/_._",
  8285. "ref/MonoTouch10/_._",
  8286. "ref/net45/_._",
  8287. "ref/netcore50/System.Xml.XDocument.dll",
  8288. "ref/netcore50/System.Xml.XDocument.xml",
  8289. "ref/netcore50/de/System.Xml.XDocument.xml",
  8290. "ref/netcore50/es/System.Xml.XDocument.xml",
  8291. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8292. "ref/netcore50/it/System.Xml.XDocument.xml",
  8293. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8294. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8295. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8296. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8297. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8298. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8299. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8300. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8301. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8302. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8303. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8304. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8305. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8306. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8307. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8308. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8309. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8310. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8311. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8312. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8313. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8314. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8315. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8316. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8317. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8318. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8319. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8320. "ref/portable-net45+win8+wp8+wpa81/_._",
  8321. "ref/win8/_._",
  8322. "ref/wp80/_._",
  8323. "ref/wpa81/_._",
  8324. "ref/xamarinios10/_._",
  8325. "ref/xamarinmac20/_._",
  8326. "ref/xamarintvos10/_._",
  8327. "ref/xamarinwatchos10/_._",
  8328. "system.xml.xdocument.4.0.11.nupkg.sha512",
  8329. "system.xml.xdocument.nuspec"
  8330. ]
  8331. },
  8332. "System.Xml.XmlDocument/4.3.0": {
  8333. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8334. "type": "package",
  8335. "path": "system.xml.xmldocument/4.3.0",
  8336. "files": [
  8337. ".nupkg.metadata",
  8338. ".signature.p7s",
  8339. "ThirdPartyNotices.txt",
  8340. "dotnet_library_license.txt",
  8341. "lib/MonoAndroid10/_._",
  8342. "lib/MonoTouch10/_._",
  8343. "lib/net46/System.Xml.XmlDocument.dll",
  8344. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8345. "lib/xamarinios10/_._",
  8346. "lib/xamarinmac20/_._",
  8347. "lib/xamarintvos10/_._",
  8348. "lib/xamarinwatchos10/_._",
  8349. "ref/MonoAndroid10/_._",
  8350. "ref/MonoTouch10/_._",
  8351. "ref/net46/System.Xml.XmlDocument.dll",
  8352. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8353. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8354. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8355. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8356. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8357. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8358. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8359. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8360. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8361. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8362. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8363. "ref/xamarinios10/_._",
  8364. "ref/xamarinmac20/_._",
  8365. "ref/xamarintvos10/_._",
  8366. "ref/xamarinwatchos10/_._",
  8367. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8368. "system.xml.xmldocument.nuspec"
  8369. ]
  8370. },
  8371. "System.Xml.XPath/4.3.0": {
  8372. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  8373. "type": "package",
  8374. "path": "system.xml.xpath/4.3.0",
  8375. "files": [
  8376. ".nupkg.metadata",
  8377. ".signature.p7s",
  8378. "ThirdPartyNotices.txt",
  8379. "dotnet_library_license.txt",
  8380. "lib/MonoAndroid10/_._",
  8381. "lib/MonoTouch10/_._",
  8382. "lib/net46/System.Xml.XPath.dll",
  8383. "lib/netstandard1.3/System.Xml.XPath.dll",
  8384. "lib/xamarinios10/_._",
  8385. "lib/xamarinmac20/_._",
  8386. "lib/xamarintvos10/_._",
  8387. "lib/xamarinwatchos10/_._",
  8388. "ref/MonoAndroid10/_._",
  8389. "ref/MonoTouch10/_._",
  8390. "ref/net46/System.Xml.XPath.dll",
  8391. "ref/netstandard1.3/System.Xml.XPath.dll",
  8392. "ref/netstandard1.3/System.Xml.XPath.xml",
  8393. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8394. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8395. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8396. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8397. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8398. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8399. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8400. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8401. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8402. "ref/xamarinios10/_._",
  8403. "ref/xamarinmac20/_._",
  8404. "ref/xamarintvos10/_._",
  8405. "ref/xamarinwatchos10/_._",
  8406. "system.xml.xpath.4.3.0.nupkg.sha512",
  8407. "system.xml.xpath.nuspec"
  8408. ]
  8409. },
  8410. "System.Xml.XPath.XmlDocument/4.3.0": {
  8411. "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
  8412. "type": "package",
  8413. "path": "system.xml.xpath.xmldocument/4.3.0",
  8414. "files": [
  8415. ".nupkg.metadata",
  8416. ".signature.p7s",
  8417. "ThirdPartyNotices.txt",
  8418. "dotnet_library_license.txt",
  8419. "lib/MonoAndroid10/_._",
  8420. "lib/MonoTouch10/_._",
  8421. "lib/net46/System.Xml.XPath.XmlDocument.dll",
  8422. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8423. "lib/xamarinios10/_._",
  8424. "lib/xamarinmac20/_._",
  8425. "lib/xamarintvos10/_._",
  8426. "lib/xamarinwatchos10/_._",
  8427. "ref/MonoAndroid10/_._",
  8428. "ref/MonoTouch10/_._",
  8429. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  8430. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  8431. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  8432. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  8433. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  8434. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  8435. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  8436. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  8437. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  8438. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  8439. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  8440. "ref/xamarinios10/_._",
  8441. "ref/xamarinmac20/_._",
  8442. "ref/xamarintvos10/_._",
  8443. "ref/xamarinwatchos10/_._",
  8444. "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
  8445. "system.xml.xpath.xmldocument.nuspec"
  8446. ]
  8447. },
  8448. "Unity.Abstractions/5.11.7": {
  8449. "sha512": "3ztwGEpe35UJlCUswXoi4uVDp8bJsgPsOmO71nZnNXh51II7t54AbezDbS6sR2z4QnMOpNGDaXbsEkyg6dIfOQ==",
  8450. "type": "package",
  8451. "path": "unity.abstractions/5.11.7",
  8452. "files": [
  8453. ".nupkg.metadata",
  8454. ".signature.p7s",
  8455. "lib/net40/Unity.Abstractions.dll",
  8456. "lib/net40/Unity.Abstractions.pdb",
  8457. "lib/net45/Unity.Abstractions.dll",
  8458. "lib/net45/Unity.Abstractions.pdb",
  8459. "lib/net46/Unity.Abstractions.dll",
  8460. "lib/net46/Unity.Abstractions.pdb",
  8461. "lib/net47/Unity.Abstractions.dll",
  8462. "lib/net47/Unity.Abstractions.pdb",
  8463. "lib/net48/Unity.Abstractions.dll",
  8464. "lib/net48/Unity.Abstractions.pdb",
  8465. "lib/netcoreapp1.0/Unity.Abstractions.dll",
  8466. "lib/netcoreapp1.0/Unity.Abstractions.pdb",
  8467. "lib/netcoreapp2.0/Unity.Abstractions.dll",
  8468. "lib/netcoreapp2.0/Unity.Abstractions.pdb",
  8469. "lib/netcoreapp3.0/Unity.Abstractions.dll",
  8470. "lib/netcoreapp3.0/Unity.Abstractions.pdb",
  8471. "lib/netstandard1.0/Unity.Abstractions.dll",
  8472. "lib/netstandard1.0/Unity.Abstractions.pdb",
  8473. "lib/netstandard2.0/Unity.Abstractions.dll",
  8474. "lib/netstandard2.0/Unity.Abstractions.pdb",
  8475. "unity.abstractions.5.11.7.nupkg.sha512",
  8476. "unity.abstractions.nuspec"
  8477. ]
  8478. },
  8479. "Unity.Container/5.11.11": {
  8480. "sha512": "47u4MBG8hxV2ZBUK7LlXcZQW8yWSqUSCRG+2/TBA2CSkxkQlMfVUJ0RJODJsZgsiSgy4N0M8HIr7J88drYR/OQ==",
  8481. "type": "package",
  8482. "path": "unity.container/5.11.11",
  8483. "files": [
  8484. ".nupkg.metadata",
  8485. ".signature.p7s",
  8486. "lib/net40/Unity.Container.dll",
  8487. "lib/net40/Unity.Container.pdb",
  8488. "lib/net45/Unity.Container.dll",
  8489. "lib/net45/Unity.Container.pdb",
  8490. "lib/net46/Unity.Container.dll",
  8491. "lib/net46/Unity.Container.pdb",
  8492. "lib/net47/Unity.Container.dll",
  8493. "lib/net47/Unity.Container.pdb",
  8494. "lib/net48/Unity.Container.dll",
  8495. "lib/net48/Unity.Container.pdb",
  8496. "lib/netcoreapp1.0/Unity.Container.dll",
  8497. "lib/netcoreapp1.0/Unity.Container.pdb",
  8498. "lib/netcoreapp2.0/Unity.Container.dll",
  8499. "lib/netcoreapp2.0/Unity.Container.pdb",
  8500. "lib/netcoreapp3.0/Unity.Container.dll",
  8501. "lib/netcoreapp3.0/Unity.Container.pdb",
  8502. "lib/netstandard1.0/Unity.Container.dll",
  8503. "lib/netstandard1.0/Unity.Container.pdb",
  8504. "lib/netstandard2.0/Unity.Container.dll",
  8505. "lib/netstandard2.0/Unity.Container.pdb",
  8506. "unity.container.5.11.11.nupkg.sha512",
  8507. "unity.container.nuspec"
  8508. ]
  8509. },
  8510. "Unity.Interception/5.11.1": {
  8511. "sha512": "q2SDcnfy3q6NrYANnV0E2XFPPQ9L+k+Rk3iztJF4vH5QPOeWQ8ooX26BbACPj5DAKUkUMeAdUdiobDkcpFZjBg==",
  8512. "type": "package",
  8513. "path": "unity.interception/5.11.1",
  8514. "files": [
  8515. ".nupkg.metadata",
  8516. ".signature.p7s",
  8517. "lib/net45/Unity.Interception.dll",
  8518. "lib/net45/Unity.Interception.pdb",
  8519. "lib/net46/Unity.Interception.dll",
  8520. "lib/net46/Unity.Interception.pdb",
  8521. "lib/net47/Unity.Interception.dll",
  8522. "lib/net47/Unity.Interception.pdb",
  8523. "lib/netcoreapp2.0/Unity.Interception.dll",
  8524. "lib/netcoreapp2.0/Unity.Interception.pdb",
  8525. "lib/netstandard2.0/Unity.Interception.dll",
  8526. "lib/netstandard2.0/Unity.Interception.pdb",
  8527. "unity.interception.5.11.1.nupkg.sha512",
  8528. "unity.interception.nuspec"
  8529. ]
  8530. },
  8531. "YamlDotNet/11.2.1": {
  8532. "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==",
  8533. "type": "package",
  8534. "path": "yamldotnet/11.2.1",
  8535. "files": [
  8536. ".nupkg.metadata",
  8537. ".signature.p7s",
  8538. "LICENSE.txt",
  8539. "images/yamldotnet.png",
  8540. "lib/net20/YamlDotNet.dll",
  8541. "lib/net20/YamlDotNet.xml",
  8542. "lib/net35-client/YamlDotNet.dll",
  8543. "lib/net35-client/YamlDotNet.xml",
  8544. "lib/net35/YamlDotNet.dll",
  8545. "lib/net35/YamlDotNet.xml",
  8546. "lib/net45/YamlDotNet.dll",
  8547. "lib/net45/YamlDotNet.xml",
  8548. "lib/netstandard1.3/YamlDotNet.dll",
  8549. "lib/netstandard1.3/YamlDotNet.xml",
  8550. "lib/netstandard2.1/YamlDotNet.dll",
  8551. "lib/netstandard2.1/YamlDotNet.xml",
  8552. "yamldotnet.11.2.1.nupkg.sha512",
  8553. "yamldotnet.nuspec"
  8554. ]
  8555. },
  8556. "SHJX.Service.Common/1.0.0": {
  8557. "type": "project",
  8558. "path": "../SHJX.Service.Common/SHJX.Service.Common.csproj",
  8559. "msbuildProject": "../SHJX.Service.Common/SHJX.Service.Common.csproj"
  8560. },
  8561. "SHJX.Service.Model/1.0.0": {
  8562. "type": "project",
  8563. "path": "../SHJX.Service.Model/SHJX.Service.Model.csproj",
  8564. "msbuildProject": "../SHJX.Service.Model/SHJX.Service.Model.csproj"
  8565. },
  8566. "shjxCamera/1.0.0": {
  8567. "type": "project",
  8568. "path": "../SHJXCamera/SHJXCamera/shjxCamera.csproj",
  8569. "msbuildProject": "../SHJXCamera/SHJXCamera/shjxCamera.csproj"
  8570. }
  8571. },
  8572. "projectFileDependencyGroups": {
  8573. "net6.0-windows7.0": [
  8574. "NModbus4.NetCore >= 2.0.1",
  8575. "SHJX.Service.Common >= 1.0.0"
  8576. ]
  8577. },
  8578. "packageFolders": {
  8579. "C:\\Users\\25109\\.nuget\\packages\\": {}
  8580. },
  8581. "project": {
  8582. "version": "1.0.0",
  8583. "restore": {
  8584. "projectUniqueName": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.PortClient\\SHJX.Service.PortClient.csproj",
  8585. "projectName": "SHJX.Service.PortClient",
  8586. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.PortClient\\SHJX.Service.PortClient.csproj",
  8587. "packagesPath": "C:\\Users\\25109\\.nuget\\packages\\",
  8588. "outputPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.PortClient\\obj\\",
  8589. "projectStyle": "PackageReference",
  8590. "configFilePaths": [
  8591. "C:\\Users\\25109\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8592. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8593. ],
  8594. "originalTargetFrameworks": [
  8595. "net6.0-windows"
  8596. ],
  8597. "sources": {
  8598. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8599. "https://api.nuget.org/v3/index.json": {}
  8600. },
  8601. "frameworks": {
  8602. "net6.0-windows7.0": {
  8603. "targetAlias": "net6.0-windows",
  8604. "projectReferences": {
  8605. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj": {
  8606. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj"
  8607. }
  8608. }
  8609. }
  8610. },
  8611. "warningProperties": {
  8612. "warnAsError": [
  8613. "NU1605"
  8614. ]
  8615. },
  8616. "restoreAuditProperties": {
  8617. "enableAudit": "true",
  8618. "auditLevel": "low",
  8619. "auditMode": "direct"
  8620. }
  8621. },
  8622. "frameworks": {
  8623. "net6.0-windows7.0": {
  8624. "targetAlias": "net6.0-windows",
  8625. "dependencies": {
  8626. "NModbus4.NetCore": {
  8627. "target": "Package",
  8628. "version": "[2.0.1, )"
  8629. }
  8630. },
  8631. "imports": [
  8632. "net461",
  8633. "net462",
  8634. "net47",
  8635. "net471",
  8636. "net472",
  8637. "net48",
  8638. "net481"
  8639. ],
  8640. "assetTargetFallback": true,
  8641. "warn": true,
  8642. "downloadDependencies": [
  8643. {
  8644. "name": "Microsoft.AspNetCore.App.Ref",
  8645. "version": "[6.0.27, 6.0.27]"
  8646. },
  8647. {
  8648. "name": "Microsoft.NETCore.App.Ref",
  8649. "version": "[6.0.27, 6.0.27]"
  8650. },
  8651. {
  8652. "name": "Microsoft.WindowsDesktop.App.Ref",
  8653. "version": "[6.0.27, 6.0.27]"
  8654. }
  8655. ],
  8656. "frameworkReferences": {
  8657. "Microsoft.NETCore.App": {
  8658. "privateAssets": "all"
  8659. },
  8660. "Microsoft.WindowsDesktop.App.WPF": {
  8661. "privateAssets": "none"
  8662. }
  8663. },
  8664. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300-preview.24203.14\\RuntimeIdentifierGraph.json"
  8665. }
  8666. }
  8667. },
  8668. "logs": [
  8669. {
  8670. "code": "NU1701",
  8671. "level": "Warning",
  8672. "warningLevel": 1,
  8673. "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”。此包可能与项目不完全兼容。",
  8674. "libraryId": "AForge",
  8675. "targetGraphs": [
  8676. "net6.0-windows7.0"
  8677. ]
  8678. },
  8679. {
  8680. "code": "NU1701",
  8681. "level": "Warning",
  8682. "warningLevel": 1,
  8683. "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”。此包可能与项目不完全兼容。",
  8684. "libraryId": "LiveCharts",
  8685. "targetGraphs": [
  8686. "net6.0-windows7.0"
  8687. ]
  8688. },
  8689. {
  8690. "code": "NU1701",
  8691. "level": "Warning",
  8692. "warningLevel": 1,
  8693. "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”。此包可能与项目不完全兼容。",
  8694. "libraryId": "LiveCharts.Wpf",
  8695. "targetGraphs": [
  8696. "net6.0-windows7.0"
  8697. ]
  8698. }
  8699. ]
  8700. }