project.assets.json 426 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0-windows7.0": {
  5. "AForge/2.2.5": {
  6. "type": "package",
  7. "compile": {
  8. "lib/AForge.dll": {}
  9. },
  10. "runtime": {
  11. "lib/AForge.dll": {}
  12. }
  13. },
  14. "Autofac/6.3.0": {
  15. "type": "package",
  16. "dependencies": {
  17. "System.Diagnostics.DiagnosticSource": "4.7.1"
  18. },
  19. "compile": {
  20. "lib/net5.0/Autofac.dll": {
  21. "related": ".pdb;.xml"
  22. }
  23. },
  24. "runtime": {
  25. "lib/net5.0/Autofac.dll": {
  26. "related": ".pdb;.xml"
  27. }
  28. }
  29. },
  30. "Autofac.Extensions.DependencyInjection/7.2.0": {
  31. "type": "package",
  32. "dependencies": {
  33. "Autofac": "6.0.0",
  34. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  35. },
  36. "compile": {
  37. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  38. "related": ".pdb;.xml"
  39. }
  40. },
  41. "runtime": {
  42. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  43. "related": ".pdb;.xml"
  44. }
  45. }
  46. },
  47. "Autofac.Extras.DynamicProxy/6.0.0": {
  48. "type": "package",
  49. "dependencies": {
  50. "Autofac": "6.0.0",
  51. "Castle.Core": "4.4.0"
  52. },
  53. "compile": {
  54. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  55. "related": ".pdb;.xml"
  56. }
  57. },
  58. "runtime": {
  59. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  60. "related": ".pdb;.xml"
  61. }
  62. }
  63. },
  64. "BouncyCastle.NetCore/1.8.5": {
  65. "type": "package",
  66. "compile": {
  67. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  68. "related": ".xml"
  69. }
  70. },
  71. "runtime": {
  72. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  73. "related": ".xml"
  74. }
  75. }
  76. },
  77. "Castle.Core/4.4.1": {
  78. "type": "package",
  79. "dependencies": {
  80. "NETStandard.Library": "1.6.1",
  81. "System.Collections.Specialized": "4.3.0",
  82. "System.ComponentModel": "4.3.0",
  83. "System.ComponentModel.TypeConverter": "4.3.0",
  84. "System.Diagnostics.TraceSource": "4.3.0",
  85. "System.Dynamic.Runtime": "4.3.0",
  86. "System.Reflection": "4.3.0",
  87. "System.Reflection.Emit": "4.3.0",
  88. "System.Reflection.TypeExtensions": "4.3.0",
  89. "System.Xml.XmlDocument": "4.3.0"
  90. },
  91. "compile": {
  92. "lib/netstandard1.5/Castle.Core.dll": {
  93. "related": ".xml"
  94. }
  95. },
  96. "runtime": {
  97. "lib/netstandard1.5/Castle.Core.dll": {
  98. "related": ".xml"
  99. }
  100. }
  101. },
  102. "ControlzEx/4.4.0": {
  103. "type": "package",
  104. "dependencies": {
  105. "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
  106. "System.Text.Json": "4.7.2"
  107. },
  108. "compile": {
  109. "lib/netcoreapp3.1/ControlzEx.dll": {
  110. "related": ".pdb;.xml"
  111. }
  112. },
  113. "runtime": {
  114. "lib/netcoreapp3.1/ControlzEx.dll": {
  115. "related": ".pdb;.xml"
  116. }
  117. },
  118. "frameworkReferences": [
  119. "Microsoft.WindowsDesktop.App.WPF"
  120. ]
  121. },
  122. "Dapper/2.0.123": {
  123. "type": "package",
  124. "compile": {
  125. "lib/net5.0/Dapper.dll": {
  126. "related": ".xml"
  127. }
  128. },
  129. "runtime": {
  130. "lib/net5.0/Dapper.dll": {
  131. "related": ".xml"
  132. }
  133. }
  134. },
  135. "EaseDapper/0.1.4.18": {
  136. "type": "package",
  137. "dependencies": {
  138. "Dapper": "2.0.123",
  139. "Microsoft.Data.Sqlite.Core": "6.0.0",
  140. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  141. "MySql.Data": "8.0.27",
  142. "System.Data.SqlClient": "4.8.3"
  143. },
  144. "compile": {
  145. "lib/netcoreapp3.1/EaseDapper.dll": {}
  146. },
  147. "runtime": {
  148. "lib/netcoreapp3.1/EaseDapper.dll": {}
  149. }
  150. },
  151. "EaseScheduler/0.0.0.6": {
  152. "type": "package",
  153. "dependencies": {
  154. "Autofac": "6.2.0",
  155. "Prism.Core": "8.1.97"
  156. },
  157. "compile": {
  158. "lib/net6.0/EaseScheduler.dll": {}
  159. },
  160. "runtime": {
  161. "lib/net6.0/EaseScheduler.dll": {}
  162. }
  163. },
  164. "EPPlus/5.6.4": {
  165. "type": "package",
  166. "dependencies": {
  167. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  168. "Microsoft.IO.RecyclableMemoryStream": "1.4.1",
  169. "System.ComponentModel.Annotations": "5.0.0",
  170. "System.ComponentModel.TypeConverter": "4.3.0",
  171. "System.Data.Common": "4.3.0",
  172. "System.Drawing.Common": "5.0.0",
  173. "System.Reflection": "4.3.0",
  174. "System.Security.Claims": "4.3.0",
  175. "System.Security.Cryptography.Pkcs": "5.0.0",
  176. "System.Security.Cryptography.X509Certificates": "4.3.2",
  177. "System.Text.Encoding.CodePages": "5.0.0",
  178. "System.Xml.XPath.XmlDocument": "4.3.0",
  179. "System.Xml.XmlDocument": "4.3.0"
  180. },
  181. "compile": {
  182. "lib/net5.0/EPPlus.dll": {
  183. "related": ".xml"
  184. }
  185. },
  186. "runtime": {
  187. "lib/net5.0/EPPlus.dll": {
  188. "related": ".xml"
  189. }
  190. }
  191. },
  192. "Google.Protobuf/3.14.0": {
  193. "type": "package",
  194. "dependencies": {
  195. "System.Memory": "4.5.3",
  196. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/Google.Protobuf.dll": {
  200. "related": ".pdb;.xml"
  201. }
  202. },
  203. "runtime": {
  204. "lib/netstandard2.0/Google.Protobuf.dll": {
  205. "related": ".pdb;.xml"
  206. }
  207. }
  208. },
  209. "K4os.Compression.LZ4/1.2.6": {
  210. "type": "package",
  211. "dependencies": {
  212. "System.Memory": "4.5.4"
  213. },
  214. "compile": {
  215. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  216. "related": ".xml"
  217. }
  218. },
  219. "runtime": {
  220. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  221. "related": ".xml"
  222. }
  223. }
  224. },
  225. "K4os.Compression.LZ4.Streams/1.2.6": {
  226. "type": "package",
  227. "dependencies": {
  228. "K4os.Compression.LZ4": "1.2.6",
  229. "K4os.Hash.xxHash": "1.0.6"
  230. },
  231. "compile": {
  232. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  233. "related": ".xml"
  234. }
  235. },
  236. "runtime": {
  237. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  238. "related": ".xml"
  239. }
  240. }
  241. },
  242. "K4os.Hash.xxHash/1.0.6": {
  243. "type": "package",
  244. "dependencies": {
  245. "System.Memory": "4.5.3"
  246. },
  247. "compile": {
  248. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  249. "related": ".xml"
  250. }
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  254. "related": ".xml"
  255. }
  256. }
  257. },
  258. "LiveCharts/0.9.7": {
  259. "type": "package",
  260. "compile": {
  261. "lib/net45/LiveCharts.dll": {
  262. "related": ".pdb;.xml"
  263. }
  264. },
  265. "runtime": {
  266. "lib/net45/LiveCharts.dll": {
  267. "related": ".pdb;.xml"
  268. }
  269. }
  270. },
  271. "LiveCharts.Wpf/0.9.7": {
  272. "type": "package",
  273. "dependencies": {
  274. "LiveCharts": "0.9.7"
  275. },
  276. "compile": {
  277. "lib/net45/LiveCharts.Wpf.dll": {
  278. "related": ".pdb;.XML"
  279. }
  280. },
  281. "runtime": {
  282. "lib/net45/LiveCharts.Wpf.dll": {
  283. "related": ".pdb;.XML"
  284. }
  285. }
  286. },
  287. "LiveCharts.Wpf.NetCore3/0.9.7": {
  288. "type": "package",
  289. "dependencies": {
  290. "System.Data.DataSetExtensions": "4.5.0"
  291. },
  292. "compile": {
  293. "lib/netcoreapp3.1/LiveCharts.Wpf.dll": {},
  294. "lib/netcoreapp3.1/LiveCharts.dll": {
  295. "related": ".xml"
  296. }
  297. },
  298. "runtime": {
  299. "lib/netcoreapp3.1/LiveCharts.Wpf.dll": {},
  300. "lib/netcoreapp3.1/LiveCharts.dll": {
  301. "related": ".xml"
  302. }
  303. },
  304. "frameworkReferences": [
  305. "Microsoft.WindowsDesktop.App.WPF"
  306. ]
  307. },
  308. "MahApps.Metro/2.4.9": {
  309. "type": "package",
  310. "dependencies": {
  311. "ControlzEx": "[4.4.0, 6.0.0)"
  312. },
  313. "compile": {
  314. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  315. "related": ".pdb;.xml"
  316. }
  317. },
  318. "runtime": {
  319. "lib/netcoreapp3.1/MahApps.Metro.dll": {
  320. "related": ".pdb;.xml"
  321. }
  322. },
  323. "frameworkReferences": [
  324. "Microsoft.WindowsDesktop.App.WPF"
  325. ],
  326. "resource": {
  327. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll": {
  328. "locale": "de"
  329. }
  330. }
  331. },
  332. "Mapster/7.2.0": {
  333. "type": "package",
  334. "dependencies": {
  335. "Mapster.Core": "1.2.0",
  336. "Microsoft.CSharp": "4.3.0",
  337. "System.Reflection.Emit": "4.3.0"
  338. },
  339. "compile": {
  340. "lib/netstandard2.0/Mapster.dll": {}
  341. },
  342. "runtime": {
  343. "lib/netstandard2.0/Mapster.dll": {}
  344. }
  345. },
  346. "Mapster.Core/1.2.0": {
  347. "type": "package",
  348. "compile": {
  349. "lib/netstandard2.0/Mapster.Core.dll": {}
  350. },
  351. "runtime": {
  352. "lib/netstandard2.0/Mapster.Core.dll": {}
  353. }
  354. },
  355. "Microsoft.CSharp/4.3.0": {
  356. "type": "package",
  357. "dependencies": {
  358. "System.Collections": "4.3.0",
  359. "System.Diagnostics.Debug": "4.3.0",
  360. "System.Dynamic.Runtime": "4.3.0",
  361. "System.Globalization": "4.3.0",
  362. "System.Linq": "4.3.0",
  363. "System.Linq.Expressions": "4.3.0",
  364. "System.ObjectModel": "4.3.0",
  365. "System.Reflection": "4.3.0",
  366. "System.Reflection.Extensions": "4.3.0",
  367. "System.Reflection.Primitives": "4.3.0",
  368. "System.Reflection.TypeExtensions": "4.3.0",
  369. "System.Resources.ResourceManager": "4.3.0",
  370. "System.Runtime": "4.3.0",
  371. "System.Runtime.Extensions": "4.3.0",
  372. "System.Runtime.InteropServices": "4.3.0",
  373. "System.Threading": "4.3.0"
  374. },
  375. "compile": {
  376. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "runtime": {
  381. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  382. }
  383. },
  384. "Microsoft.Data.Sqlite.Core/6.0.1": {
  385. "type": "package",
  386. "dependencies": {
  387. "SQLitePCLRaw.core": "2.0.6"
  388. },
  389. "compile": {
  390. "lib/net6.0/Microsoft.Data.Sqlite.dll": {
  391. "related": ".xml"
  392. }
  393. },
  394. "runtime": {
  395. "lib/net6.0/Microsoft.Data.Sqlite.dll": {
  396. "related": ".xml"
  397. }
  398. }
  399. },
  400. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  401. "type": "package",
  402. "dependencies": {
  403. "System.AppContext": "4.1.0",
  404. "System.Collections": "4.0.11",
  405. "System.IO": "4.1.0",
  406. "System.IO.FileSystem": "4.0.1",
  407. "System.Reflection.TypeExtensions": "4.1.0",
  408. "System.Runtime.Extensions": "4.1.0",
  409. "System.Runtime.InteropServices": "4.1.0",
  410. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  411. },
  412. "compile": {
  413. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  414. },
  415. "runtime": {
  416. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  417. }
  418. },
  419. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.Extensions.Primitives": "6.0.0"
  423. },
  424. "compile": {
  425. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  431. "related": ".xml"
  432. }
  433. }
  434. },
  435. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  436. "type": "package",
  437. "dependencies": {
  438. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  439. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  440. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  441. "Microsoft.Extensions.Options": "6.0.0",
  442. "Microsoft.Extensions.Primitives": "6.0.0"
  443. },
  444. "compile": {
  445. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  446. "related": ".xml"
  447. }
  448. },
  449. "runtime": {
  450. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  451. "related": ".xml"
  452. }
  453. }
  454. },
  455. "Microsoft.Extensions.Configuration/5.0.0": {
  456. "type": "package",
  457. "dependencies": {
  458. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  459. "Microsoft.Extensions.Primitives": "5.0.0"
  460. },
  461. "compile": {
  462. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  463. "related": ".xml"
  464. }
  465. },
  466. "runtime": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  468. "related": ".xml"
  469. }
  470. }
  471. },
  472. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  473. "type": "package",
  474. "dependencies": {
  475. "Microsoft.Extensions.Primitives": "5.0.0"
  476. },
  477. "compile": {
  478. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. },
  482. "runtime": {
  483. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  484. "related": ".xml"
  485. }
  486. }
  487. },
  488. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  489. "type": "package",
  490. "dependencies": {
  491. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  492. },
  493. "compile": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "runtime": {
  499. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  500. "related": ".xml"
  501. }
  502. }
  503. },
  504. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  505. "type": "package",
  506. "dependencies": {
  507. "Microsoft.Extensions.Configuration": "5.0.0",
  508. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  509. },
  510. "compile": {
  511. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  512. "related": ".xml"
  513. }
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  517. "related": ".xml"
  518. }
  519. }
  520. },
  521. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  522. "type": "package",
  523. "dependencies": {
  524. "Microsoft.Extensions.Configuration": "5.0.0",
  525. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  526. },
  527. "compile": {
  528. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  529. "related": ".xml"
  530. }
  531. },
  532. "runtime": {
  533. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  534. "related": ".xml"
  535. }
  536. }
  537. },
  538. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.Extensions.Configuration": "5.0.0",
  542. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  543. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  544. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  545. "Microsoft.Extensions.Primitives": "5.0.0"
  546. },
  547. "compile": {
  548. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  549. "related": ".xml"
  550. }
  551. },
  552. "runtime": {
  553. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  554. "related": ".xml"
  555. }
  556. }
  557. },
  558. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  559. "type": "package",
  560. "dependencies": {
  561. "Microsoft.Extensions.Configuration": "5.0.0",
  562. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  563. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  564. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  565. },
  566. "compile": {
  567. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  568. "related": ".xml"
  569. }
  570. },
  571. "runtime": {
  572. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  573. "related": ".xml"
  574. }
  575. }
  576. },
  577. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  578. "type": "package",
  579. "dependencies": {
  580. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  581. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  582. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  583. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  584. },
  585. "compile": {
  586. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  587. "related": ".xml"
  588. }
  589. },
  590. "runtime": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "build": {
  596. "build/netstandard2.0/_._": {}
  597. }
  598. },
  599. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  603. },
  604. "compile": {
  605. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  606. "related": ".xml"
  607. }
  608. },
  609. "runtime": {
  610. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  611. "related": ".xml"
  612. }
  613. },
  614. "build": {
  615. "buildTransitive/net6.0/_._": {}
  616. }
  617. },
  618. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  619. "type": "package",
  620. "compile": {
  621. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  622. "related": ".xml"
  623. }
  624. },
  625. "runtime": {
  626. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  627. "related": ".xml"
  628. }
  629. },
  630. "build": {
  631. "buildTransitive/net6.0/_._": {}
  632. }
  633. },
  634. "Microsoft.Extensions.DependencyModel/2.0.4": {
  635. "type": "package",
  636. "dependencies": {
  637. "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
  638. "Newtonsoft.Json": "9.0.1",
  639. "System.Diagnostics.Debug": "4.0.11",
  640. "System.Dynamic.Runtime": "4.0.11",
  641. "System.Linq": "4.1.0"
  642. },
  643. "compile": {
  644. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  645. },
  646. "runtime": {
  647. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  648. }
  649. },
  650. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  651. "type": "package",
  652. "dependencies": {
  653. "Microsoft.Extensions.Primitives": "5.0.0"
  654. },
  655. "compile": {
  656. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  657. "related": ".xml"
  658. }
  659. },
  660. "runtime": {
  661. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  662. "related": ".xml"
  663. }
  664. }
  665. },
  666. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  667. "type": "package",
  668. "dependencies": {
  669. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  670. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  671. "Microsoft.Extensions.Primitives": "5.0.0"
  672. },
  673. "compile": {
  674. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  675. "related": ".xml"
  676. }
  677. },
  678. "runtime": {
  679. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  680. "related": ".xml"
  681. }
  682. }
  683. },
  684. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  685. "type": "package",
  686. "compile": {
  687. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  688. "related": ".xml"
  689. }
  690. },
  691. "runtime": {
  692. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  693. "related": ".xml"
  694. }
  695. }
  696. },
  697. "Microsoft.Extensions.Hosting/5.0.0": {
  698. "type": "package",
  699. "dependencies": {
  700. "Microsoft.Extensions.Configuration": "5.0.0",
  701. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  702. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  703. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  704. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  705. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  706. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  707. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  708. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  709. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  710. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  711. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  712. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  713. "Microsoft.Extensions.Logging": "5.0.0",
  714. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  715. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  716. "Microsoft.Extensions.Logging.Console": "5.0.0",
  717. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  718. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  719. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  720. "Microsoft.Extensions.Options": "5.0.0"
  721. },
  722. "compile": {
  723. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  724. "related": ".xml"
  725. }
  726. },
  727. "runtime": {
  728. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  729. "related": ".xml"
  730. }
  731. }
  732. },
  733. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  734. "type": "package",
  735. "dependencies": {
  736. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  737. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  738. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  739. },
  740. "compile": {
  741. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "Microsoft.Extensions.Logging/7.0.0": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  755. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  756. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  757. "Microsoft.Extensions.Options": "7.0.0"
  758. },
  759. "compile": {
  760. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  761. "related": ".xml"
  762. }
  763. },
  764. "runtime": {
  765. "lib/net6.0/Microsoft.Extensions.Logging.dll": {
  766. "related": ".xml"
  767. }
  768. },
  769. "build": {
  770. "buildTransitive/net6.0/_._": {}
  771. }
  772. },
  773. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  774. "type": "package",
  775. "compile": {
  776. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  782. "related": ".xml"
  783. }
  784. },
  785. "build": {
  786. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  787. }
  788. },
  789. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  790. "type": "package",
  791. "dependencies": {
  792. "Microsoft.Extensions.Configuration": "5.0.0",
  793. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  794. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  795. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  796. "Microsoft.Extensions.Logging": "5.0.0",
  797. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  798. "Microsoft.Extensions.Options": "5.0.0",
  799. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  800. },
  801. "compile": {
  802. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  803. "related": ".xml"
  804. }
  805. },
  806. "runtime": {
  807. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  808. "related": ".xml"
  809. }
  810. }
  811. },
  812. "Microsoft.Extensions.Logging.Console/5.0.0": {
  813. "type": "package",
  814. "dependencies": {
  815. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  816. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  817. "Microsoft.Extensions.Logging": "5.0.0",
  818. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  819. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  820. "Microsoft.Extensions.Options": "5.0.0",
  821. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  822. },
  823. "compile": {
  824. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  825. "related": ".xml"
  826. }
  827. },
  828. "runtime": {
  829. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {
  830. "related": ".xml"
  831. }
  832. }
  833. },
  834. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  835. "type": "package",
  836. "dependencies": {
  837. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  838. "Microsoft.Extensions.Logging": "5.0.0",
  839. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  840. },
  841. "compile": {
  842. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  843. "related": ".xml"
  844. }
  845. },
  846. "runtime": {
  847. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  848. "related": ".xml"
  849. }
  850. }
  851. },
  852. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  853. "type": "package",
  854. "dependencies": {
  855. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  856. "Microsoft.Extensions.Logging": "5.0.0",
  857. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  858. "Microsoft.Extensions.Options": "5.0.0",
  859. "System.Diagnostics.EventLog": "5.0.0"
  860. },
  861. "compile": {
  862. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  863. "related": ".xml"
  864. }
  865. },
  866. "runtime": {
  867. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  868. "related": ".xml"
  869. }
  870. }
  871. },
  872. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  873. "type": "package",
  874. "dependencies": {
  875. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  876. "Microsoft.Extensions.Logging": "5.0.0",
  877. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  878. "Microsoft.Extensions.Options": "5.0.0",
  879. "Microsoft.Extensions.Primitives": "5.0.0"
  880. },
  881. "compile": {
  882. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  883. "related": ".xml"
  884. }
  885. },
  886. "runtime": {
  887. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {
  888. "related": ".xml"
  889. }
  890. }
  891. },
  892. "Microsoft.Extensions.Options/7.0.0": {
  893. "type": "package",
  894. "dependencies": {
  895. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  896. "Microsoft.Extensions.Primitives": "7.0.0"
  897. },
  898. "compile": {
  899. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  900. "related": ".xml"
  901. }
  902. },
  903. "runtime": {
  904. "lib/net6.0/Microsoft.Extensions.Options.dll": {
  905. "related": ".xml"
  906. }
  907. },
  908. "build": {
  909. "buildTransitive/net6.0/_._": {}
  910. }
  911. },
  912. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  913. "type": "package",
  914. "dependencies": {
  915. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  916. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  917. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  918. "Microsoft.Extensions.Options": "5.0.0",
  919. "Microsoft.Extensions.Primitives": "5.0.0"
  920. },
  921. "compile": {
  922. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "runtime": {
  927. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  928. "related": ".xml"
  929. }
  930. }
  931. },
  932. "Microsoft.Extensions.Primitives/7.0.0": {
  933. "type": "package",
  934. "dependencies": {
  935. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  936. },
  937. "compile": {
  938. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  939. "related": ".xml"
  940. }
  941. },
  942. "runtime": {
  943. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  944. "related": ".xml"
  945. }
  946. },
  947. "build": {
  948. "buildTransitive/net6.0/_._": {}
  949. }
  950. },
  951. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  952. "type": "package",
  953. "compile": {
  954. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  955. "related": ".xml"
  956. }
  957. },
  958. "runtime": {
  959. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll": {
  960. "related": ".xml"
  961. }
  962. }
  963. },
  964. "Microsoft.NETCore.Platforms/5.0.0": {
  965. "type": "package",
  966. "compile": {
  967. "lib/netstandard1.0/_._": {}
  968. },
  969. "runtime": {
  970. "lib/netstandard1.0/_._": {}
  971. }
  972. },
  973. "Microsoft.NETCore.Targets/1.1.0": {
  974. "type": "package",
  975. "compile": {
  976. "lib/netstandard1.0/_._": {}
  977. },
  978. "runtime": {
  979. "lib/netstandard1.0/_._": {}
  980. }
  981. },
  982. "Microsoft.Win32.Primitives/4.3.0": {
  983. "type": "package",
  984. "dependencies": {
  985. "Microsoft.NETCore.Platforms": "1.1.0",
  986. "Microsoft.NETCore.Targets": "1.1.0",
  987. "System.Runtime": "4.3.0"
  988. },
  989. "compile": {
  990. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  991. "related": ".xml"
  992. }
  993. }
  994. },
  995. "Microsoft.Win32.Registry/5.0.0": {
  996. "type": "package",
  997. "dependencies": {
  998. "System.Security.AccessControl": "5.0.0",
  999. "System.Security.Principal.Windows": "5.0.0"
  1000. },
  1001. "compile": {
  1002. "ref/netstandard2.0/_._": {
  1003. "related": ".xml"
  1004. }
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1008. "related": ".xml"
  1009. }
  1010. },
  1011. "runtimeTargets": {
  1012. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1013. "assetType": "runtime",
  1014. "rid": "win"
  1015. }
  1016. }
  1017. },
  1018. "Microsoft.Win32.SystemEvents/8.0.0": {
  1019. "type": "package",
  1020. "compile": {
  1021. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1022. "related": ".xml"
  1023. }
  1024. },
  1025. "runtime": {
  1026. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1027. "related": ".xml"
  1028. }
  1029. },
  1030. "build": {
  1031. "buildTransitive/net6.0/_._": {}
  1032. },
  1033. "runtimeTargets": {
  1034. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1035. "assetType": "runtime",
  1036. "rid": "win"
  1037. }
  1038. }
  1039. },
  1040. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  1041. "type": "package",
  1042. "compile": {
  1043. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  1044. "related": ".pdb;.xml"
  1045. }
  1046. },
  1047. "runtime": {
  1048. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
  1049. "related": ".pdb;.xml"
  1050. }
  1051. },
  1052. "frameworkReferences": [
  1053. "Microsoft.WindowsDesktop.App.WPF"
  1054. ]
  1055. },
  1056. "MySql.Data/8.0.27": {
  1057. "type": "package",
  1058. "dependencies": {
  1059. "BouncyCastle.NetCore": "1.8.5",
  1060. "Google.Protobuf": "3.14.0",
  1061. "K4os.Compression.LZ4.Streams": "1.2.6",
  1062. "System.Buffers": "4.5.1",
  1063. "System.Configuration.ConfigurationManager": "4.4.1",
  1064. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1065. "System.Security.Permissions": "4.7.0",
  1066. "System.Text.Encoding.CodePages": "4.4.0"
  1067. },
  1068. "compile": {
  1069. "lib/net5.0/MySql.Data.dll": {
  1070. "related": ".xml"
  1071. },
  1072. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1073. "lib/net5.0/ZstdNet.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/net5.0/MySql.Data.dll": {
  1077. "related": ".xml"
  1078. },
  1079. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1080. "lib/net5.0/ZstdNet.dll": {}
  1081. }
  1082. },
  1083. "NETStandard.Library/1.6.1": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.NETCore.Platforms": "1.1.0",
  1087. "Microsoft.Win32.Primitives": "4.3.0",
  1088. "System.AppContext": "4.3.0",
  1089. "System.Collections": "4.3.0",
  1090. "System.Collections.Concurrent": "4.3.0",
  1091. "System.Console": "4.3.0",
  1092. "System.Diagnostics.Debug": "4.3.0",
  1093. "System.Diagnostics.Tools": "4.3.0",
  1094. "System.Diagnostics.Tracing": "4.3.0",
  1095. "System.Globalization": "4.3.0",
  1096. "System.Globalization.Calendars": "4.3.0",
  1097. "System.IO": "4.3.0",
  1098. "System.IO.Compression": "4.3.0",
  1099. "System.IO.Compression.ZipFile": "4.3.0",
  1100. "System.IO.FileSystem": "4.3.0",
  1101. "System.IO.FileSystem.Primitives": "4.3.0",
  1102. "System.Linq": "4.3.0",
  1103. "System.Linq.Expressions": "4.3.0",
  1104. "System.Net.Http": "4.3.0",
  1105. "System.Net.Primitives": "4.3.0",
  1106. "System.Net.Sockets": "4.3.0",
  1107. "System.ObjectModel": "4.3.0",
  1108. "System.Reflection": "4.3.0",
  1109. "System.Reflection.Extensions": "4.3.0",
  1110. "System.Reflection.Primitives": "4.3.0",
  1111. "System.Resources.ResourceManager": "4.3.0",
  1112. "System.Runtime": "4.3.0",
  1113. "System.Runtime.Extensions": "4.3.0",
  1114. "System.Runtime.Handles": "4.3.0",
  1115. "System.Runtime.InteropServices": "4.3.0",
  1116. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1117. "System.Runtime.Numerics": "4.3.0",
  1118. "System.Security.Cryptography.Algorithms": "4.3.0",
  1119. "System.Security.Cryptography.Encoding": "4.3.0",
  1120. "System.Security.Cryptography.Primitives": "4.3.0",
  1121. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1122. "System.Text.Encoding": "4.3.0",
  1123. "System.Text.Encoding.Extensions": "4.3.0",
  1124. "System.Text.RegularExpressions": "4.3.0",
  1125. "System.Threading": "4.3.0",
  1126. "System.Threading.Tasks": "4.3.0",
  1127. "System.Threading.Timer": "4.3.0",
  1128. "System.Xml.ReaderWriter": "4.3.0",
  1129. "System.Xml.XDocument": "4.3.0"
  1130. }
  1131. },
  1132. "Newtonsoft.Json/9.0.1": {
  1133. "type": "package",
  1134. "dependencies": {
  1135. "Microsoft.CSharp": "4.0.1",
  1136. "System.Collections": "4.0.11",
  1137. "System.Diagnostics.Debug": "4.0.11",
  1138. "System.Dynamic.Runtime": "4.0.11",
  1139. "System.Globalization": "4.0.11",
  1140. "System.IO": "4.1.0",
  1141. "System.Linq": "4.1.0",
  1142. "System.Linq.Expressions": "4.1.0",
  1143. "System.ObjectModel": "4.0.12",
  1144. "System.Reflection": "4.1.0",
  1145. "System.Reflection.Extensions": "4.0.1",
  1146. "System.Resources.ResourceManager": "4.0.1",
  1147. "System.Runtime": "4.1.0",
  1148. "System.Runtime.Extensions": "4.1.0",
  1149. "System.Runtime.Serialization.Primitives": "4.1.1",
  1150. "System.Text.Encoding": "4.0.11",
  1151. "System.Text.Encoding.Extensions": "4.0.11",
  1152. "System.Text.RegularExpressions": "4.1.0",
  1153. "System.Threading": "4.0.11",
  1154. "System.Threading.Tasks": "4.0.11",
  1155. "System.Xml.ReaderWriter": "4.0.11",
  1156. "System.Xml.XDocument": "4.0.11"
  1157. },
  1158. "compile": {
  1159. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  1160. "related": ".xml"
  1161. }
  1162. },
  1163. "runtime": {
  1164. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  1165. "related": ".xml"
  1166. }
  1167. }
  1168. },
  1169. "NModbus4.NetCore/2.0.1": {
  1170. "type": "package",
  1171. "dependencies": {
  1172. "System.IO.Ports": "6.0.0"
  1173. },
  1174. "compile": {
  1175. "lib/net6.0/Modbus.dll": {}
  1176. },
  1177. "runtime": {
  1178. "lib/net6.0/Modbus.dll": {}
  1179. }
  1180. },
  1181. "NPOI/2.5.6": {
  1182. "type": "package",
  1183. "dependencies": {
  1184. "Portable.BouncyCastle": "1.8.9",
  1185. "SharpZipLib": "1.3.3",
  1186. "System.Configuration.ConfigurationManager": "4.5.0",
  1187. "System.Drawing.Common": "4.5.0"
  1188. },
  1189. "compile": {
  1190. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1191. "related": ".pdb;.xml"
  1192. },
  1193. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1194. "related": ".pdb"
  1195. },
  1196. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1197. "related": ".pdb"
  1198. },
  1199. "lib/netstandard2.1/NPOI.dll": {
  1200. "related": ".OOXML.pdb;.OOXML.xml;.OpenXml4Net.pdb;.OpenXmlFormats.pdb;.pdb;.xml"
  1201. }
  1202. },
  1203. "runtime": {
  1204. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1205. "related": ".pdb;.xml"
  1206. },
  1207. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1208. "related": ".pdb"
  1209. },
  1210. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1211. "related": ".pdb"
  1212. },
  1213. "lib/netstandard2.1/NPOI.dll": {
  1214. "related": ".OOXML.pdb;.OOXML.xml;.OpenXml4Net.pdb;.OpenXmlFormats.pdb;.pdb;.xml"
  1215. }
  1216. }
  1217. },
  1218. "Panuon.UI.Silver/1.1.3.4": {
  1219. "type": "package",
  1220. "dependencies": {
  1221. "System.Drawing.Common": "5.0.0"
  1222. },
  1223. "compile": {
  1224. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  1225. },
  1226. "runtime": {
  1227. "lib/netcoreapp3.1/Panuon.UI.Silver.dll": {}
  1228. },
  1229. "frameworkReferences": [
  1230. "Microsoft.WindowsDesktop.App.WPF"
  1231. ]
  1232. },
  1233. "Polly/7.2.2": {
  1234. "type": "package",
  1235. "compile": {
  1236. "lib/netstandard2.0/Polly.dll": {
  1237. "related": ".pdb;.xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Polly.dll": {
  1242. "related": ".pdb;.xml"
  1243. }
  1244. }
  1245. },
  1246. "Portable.BouncyCastle/1.8.9": {
  1247. "type": "package",
  1248. "compile": {
  1249. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1250. "related": ".xml"
  1251. }
  1252. },
  1253. "runtime": {
  1254. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1255. "related": ".xml"
  1256. }
  1257. }
  1258. },
  1259. "Prism.Core/8.1.97": {
  1260. "type": "package",
  1261. "compile": {
  1262. "lib/net5.0/Prism.dll": {
  1263. "related": ".pdb;.xml"
  1264. }
  1265. },
  1266. "runtime": {
  1267. "lib/net5.0/Prism.dll": {
  1268. "related": ".pdb;.xml"
  1269. }
  1270. }
  1271. },
  1272. "Prism.Unity/8.1.97": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Prism.Wpf": "8.1.97",
  1276. "Unity.Container": "5.11.11"
  1277. },
  1278. "compile": {
  1279. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  1280. "related": ".pdb;.xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll": {
  1285. "related": ".pdb;.xml"
  1286. }
  1287. },
  1288. "frameworkReferences": [
  1289. "Microsoft.WindowsDesktop.App.WPF"
  1290. ]
  1291. },
  1292. "Prism.Wpf/8.1.97": {
  1293. "type": "package",
  1294. "dependencies": {
  1295. "Microsoft.Xaml.Behaviors.Wpf": "1.1.31",
  1296. "Prism.Core": "8.1.97"
  1297. },
  1298. "compile": {
  1299. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  1300. "related": ".pdb;.xml"
  1301. }
  1302. },
  1303. "runtime": {
  1304. "lib/net5.0-windows7.0/Prism.Wpf.dll": {
  1305. "related": ".pdb;.xml"
  1306. }
  1307. },
  1308. "frameworkReferences": [
  1309. "Microsoft.WindowsDesktop.App.WPF"
  1310. ]
  1311. },
  1312. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1313. "type": "package",
  1314. "runtimeTargets": {
  1315. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1316. "assetType": "native",
  1317. "rid": "debian.8-x64"
  1318. }
  1319. }
  1320. },
  1321. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1322. "type": "package",
  1323. "runtimeTargets": {
  1324. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1325. "assetType": "native",
  1326. "rid": "fedora.23-x64"
  1327. }
  1328. }
  1329. },
  1330. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1331. "type": "package",
  1332. "runtimeTargets": {
  1333. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1334. "assetType": "native",
  1335. "rid": "fedora.24-x64"
  1336. }
  1337. }
  1338. },
  1339. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  1340. "type": "package",
  1341. "runtimeTargets": {
  1342. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": {
  1343. "assetType": "native",
  1344. "rid": "linux-arm"
  1345. }
  1346. }
  1347. },
  1348. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  1349. "type": "package",
  1350. "runtimeTargets": {
  1351. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": {
  1352. "assetType": "native",
  1353. "rid": "linux-arm64"
  1354. }
  1355. }
  1356. },
  1357. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  1358. "type": "package",
  1359. "runtimeTargets": {
  1360. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {
  1361. "assetType": "native",
  1362. "rid": "linux-x64"
  1363. }
  1364. }
  1365. },
  1366. "runtime.native.System/4.3.0": {
  1367. "type": "package",
  1368. "dependencies": {
  1369. "Microsoft.NETCore.Platforms": "1.1.0",
  1370. "Microsoft.NETCore.Targets": "1.1.0"
  1371. },
  1372. "compile": {
  1373. "lib/netstandard1.0/_._": {}
  1374. },
  1375. "runtime": {
  1376. "lib/netstandard1.0/_._": {}
  1377. }
  1378. },
  1379. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1383. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1384. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1385. }
  1386. },
  1387. "runtime.native.System.IO.Compression/4.3.0": {
  1388. "type": "package",
  1389. "dependencies": {
  1390. "Microsoft.NETCore.Platforms": "1.1.0",
  1391. "Microsoft.NETCore.Targets": "1.1.0"
  1392. },
  1393. "compile": {
  1394. "lib/netstandard1.0/_._": {}
  1395. },
  1396. "runtime": {
  1397. "lib/netstandard1.0/_._": {}
  1398. }
  1399. },
  1400. "runtime.native.System.IO.Ports/6.0.0": {
  1401. "type": "package",
  1402. "dependencies": {
  1403. "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0",
  1404. "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1405. "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0",
  1406. "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0",
  1407. "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0"
  1408. }
  1409. },
  1410. "runtime.native.System.Net.Http/4.3.0": {
  1411. "type": "package",
  1412. "dependencies": {
  1413. "Microsoft.NETCore.Platforms": "1.1.0",
  1414. "Microsoft.NETCore.Targets": "1.1.0"
  1415. },
  1416. "compile": {
  1417. "lib/netstandard1.0/_._": {}
  1418. },
  1419. "runtime": {
  1420. "lib/netstandard1.0/_._": {}
  1421. }
  1422. },
  1423. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1427. },
  1428. "compile": {
  1429. "lib/netstandard1.0/_._": {}
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard1.0/_._": {}
  1433. }
  1434. },
  1435. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1436. "type": "package",
  1437. "dependencies": {
  1438. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1439. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1440. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1441. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1442. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1443. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1444. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1445. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1446. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1447. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1448. },
  1449. "compile": {
  1450. "lib/netstandard1.0/_._": {}
  1451. },
  1452. "runtime": {
  1453. "lib/netstandard1.0/_._": {}
  1454. }
  1455. },
  1456. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1457. "type": "package",
  1458. "runtimeTargets": {
  1459. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1460. "assetType": "native",
  1461. "rid": "opensuse.13.2-x64"
  1462. }
  1463. }
  1464. },
  1465. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1466. "type": "package",
  1467. "runtimeTargets": {
  1468. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1469. "assetType": "native",
  1470. "rid": "opensuse.42.1-x64"
  1471. }
  1472. }
  1473. },
  1474. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  1475. "type": "package",
  1476. "runtimeTargets": {
  1477. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": {
  1478. "assetType": "native",
  1479. "rid": "osx-arm64"
  1480. }
  1481. }
  1482. },
  1483. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  1484. "type": "package",
  1485. "runtimeTargets": {
  1486. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": {
  1487. "assetType": "native",
  1488. "rid": "osx-x64"
  1489. }
  1490. }
  1491. },
  1492. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1493. "type": "package",
  1494. "runtimeTargets": {
  1495. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1496. "assetType": "native",
  1497. "rid": "osx.10.10-x64"
  1498. }
  1499. }
  1500. },
  1501. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1502. "type": "package",
  1503. "runtimeTargets": {
  1504. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1505. "assetType": "native",
  1506. "rid": "osx.10.10-x64"
  1507. }
  1508. }
  1509. },
  1510. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1511. "type": "package",
  1512. "runtimeTargets": {
  1513. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1514. "assetType": "native",
  1515. "rid": "rhel.7-x64"
  1516. }
  1517. }
  1518. },
  1519. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1520. "type": "package",
  1521. "runtimeTargets": {
  1522. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1523. "assetType": "native",
  1524. "rid": "ubuntu.14.04-x64"
  1525. }
  1526. }
  1527. },
  1528. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1529. "type": "package",
  1530. "runtimeTargets": {
  1531. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1532. "assetType": "native",
  1533. "rid": "ubuntu.16.04-x64"
  1534. }
  1535. }
  1536. },
  1537. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1538. "type": "package",
  1539. "runtimeTargets": {
  1540. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1541. "assetType": "native",
  1542. "rid": "ubuntu.16.10-x64"
  1543. }
  1544. }
  1545. },
  1546. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1547. "type": "package",
  1548. "runtimeTargets": {
  1549. "runtimes/win-arm64/native/sni.dll": {
  1550. "assetType": "native",
  1551. "rid": "win-arm64"
  1552. }
  1553. }
  1554. },
  1555. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1556. "type": "package",
  1557. "runtimeTargets": {
  1558. "runtimes/win-x64/native/sni.dll": {
  1559. "assetType": "native",
  1560. "rid": "win-x64"
  1561. }
  1562. }
  1563. },
  1564. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1565. "type": "package",
  1566. "runtimeTargets": {
  1567. "runtimes/win-x86/native/sni.dll": {
  1568. "assetType": "native",
  1569. "rid": "win-x86"
  1570. }
  1571. }
  1572. },
  1573. "Serilog/2.10.0": {
  1574. "type": "package",
  1575. "compile": {
  1576. "lib/netstandard2.1/Serilog.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.1/Serilog.dll": {
  1582. "related": ".xml"
  1583. }
  1584. }
  1585. },
  1586. "Serilog.Enrichers.Thread/3.1.0": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "Serilog": "2.3.0"
  1590. },
  1591. "compile": {
  1592. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1593. "related": ".xml"
  1594. }
  1595. },
  1596. "runtime": {
  1597. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
  1598. "related": ".xml"
  1599. }
  1600. }
  1601. },
  1602. "Serilog.Extensions.Logging/3.0.1": {
  1603. "type": "package",
  1604. "dependencies": {
  1605. "Microsoft.Extensions.Logging": "2.0.0",
  1606. "Serilog": "2.8.0"
  1607. },
  1608. "compile": {
  1609. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1610. "related": ".xml"
  1611. }
  1612. },
  1613. "runtime": {
  1614. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1615. "related": ".xml"
  1616. }
  1617. }
  1618. },
  1619. "Serilog.Formatting.Compact/1.1.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "Serilog": "2.8.0"
  1623. },
  1624. "compile": {
  1625. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1626. "related": ".xml"
  1627. }
  1628. },
  1629. "runtime": {
  1630. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1631. "related": ".xml"
  1632. }
  1633. }
  1634. },
  1635. "Serilog.Settings.Configuration/3.1.0": {
  1636. "type": "package",
  1637. "dependencies": {
  1638. "Microsoft.Extensions.DependencyModel": "2.0.4",
  1639. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1640. "Serilog": "2.6.0"
  1641. },
  1642. "compile": {
  1643. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1644. "related": ".xml"
  1645. }
  1646. },
  1647. "runtime": {
  1648. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1649. "related": ".xml"
  1650. }
  1651. }
  1652. },
  1653. "Serilog.Sinks.Console/3.1.1": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Serilog": "2.5.0",
  1657. "System.Console": "4.3.0",
  1658. "System.Runtime.InteropServices": "4.3.0",
  1659. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1660. },
  1661. "compile": {
  1662. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1663. "related": ".xml"
  1664. }
  1665. },
  1666. "runtime": {
  1667. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1668. "related": ".xml"
  1669. }
  1670. }
  1671. },
  1672. "Serilog.Sinks.File/4.1.0": {
  1673. "type": "package",
  1674. "dependencies": {
  1675. "Serilog": "2.5.0",
  1676. "System.IO.FileSystem": "4.0.1",
  1677. "System.Text.Encoding.Extensions": "4.0.11",
  1678. "System.Threading.Timer": "4.0.1"
  1679. },
  1680. "compile": {
  1681. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1682. "related": ".pdb;.xml"
  1683. }
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1687. "related": ".pdb;.xml"
  1688. }
  1689. }
  1690. },
  1691. "SharpZipLib/1.3.3": {
  1692. "type": "package",
  1693. "compile": {
  1694. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1695. "related": ".pdb;.xml"
  1696. }
  1697. },
  1698. "runtime": {
  1699. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1700. "related": ".pdb;.xml"
  1701. }
  1702. }
  1703. },
  1704. "SQLitePCLRaw.core/2.0.6": {
  1705. "type": "package",
  1706. "dependencies": {
  1707. "System.Memory": "4.5.3"
  1708. },
  1709. "compile": {
  1710. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1711. },
  1712. "runtime": {
  1713. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1714. }
  1715. },
  1716. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  1717. "type": "package",
  1718. "compile": {
  1719. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1720. "related": ".dll.altconfig;.xml"
  1721. }
  1722. },
  1723. "runtime": {
  1724. "lib/netstandard2.1/System.Data.SQLite.dll": {
  1725. "related": ".dll.altconfig;.xml"
  1726. }
  1727. },
  1728. "runtimeTargets": {
  1729. "runtimes/linux-x64/native/SQLite.Interop.dll": {
  1730. "assetType": "native",
  1731. "rid": "linux-x64"
  1732. },
  1733. "runtimes/osx-x64/native/SQLite.Interop.dll": {
  1734. "assetType": "native",
  1735. "rid": "osx-x64"
  1736. },
  1737. "runtimes/win-x64/native/SQLite.Interop.dll": {
  1738. "assetType": "native",
  1739. "rid": "win-x64"
  1740. },
  1741. "runtimes/win-x86/native/SQLite.Interop.dll": {
  1742. "assetType": "native",
  1743. "rid": "win-x86"
  1744. }
  1745. }
  1746. },
  1747. "System.AppContext/4.3.0": {
  1748. "type": "package",
  1749. "dependencies": {
  1750. "System.Runtime": "4.3.0"
  1751. },
  1752. "compile": {
  1753. "ref/netstandard1.6/System.AppContext.dll": {
  1754. "related": ".xml"
  1755. }
  1756. },
  1757. "runtime": {
  1758. "lib/netstandard1.6/System.AppContext.dll": {}
  1759. }
  1760. },
  1761. "System.Buffers/4.5.1": {
  1762. "type": "package",
  1763. "compile": {
  1764. "ref/netcoreapp2.0/_._": {}
  1765. },
  1766. "runtime": {
  1767. "lib/netcoreapp2.0/_._": {}
  1768. }
  1769. },
  1770. "System.Collections/4.3.0": {
  1771. "type": "package",
  1772. "dependencies": {
  1773. "Microsoft.NETCore.Platforms": "1.1.0",
  1774. "Microsoft.NETCore.Targets": "1.1.0",
  1775. "System.Runtime": "4.3.0"
  1776. },
  1777. "compile": {
  1778. "ref/netstandard1.3/System.Collections.dll": {
  1779. "related": ".xml"
  1780. }
  1781. }
  1782. },
  1783. "System.Collections.Concurrent/4.3.0": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "System.Collections": "4.3.0",
  1787. "System.Diagnostics.Debug": "4.3.0",
  1788. "System.Diagnostics.Tracing": "4.3.0",
  1789. "System.Globalization": "4.3.0",
  1790. "System.Reflection": "4.3.0",
  1791. "System.Resources.ResourceManager": "4.3.0",
  1792. "System.Runtime": "4.3.0",
  1793. "System.Runtime.Extensions": "4.3.0",
  1794. "System.Threading": "4.3.0",
  1795. "System.Threading.Tasks": "4.3.0"
  1796. },
  1797. "compile": {
  1798. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1799. "related": ".xml"
  1800. }
  1801. },
  1802. "runtime": {
  1803. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1804. }
  1805. },
  1806. "System.Collections.NonGeneric/4.3.0": {
  1807. "type": "package",
  1808. "dependencies": {
  1809. "System.Diagnostics.Debug": "4.3.0",
  1810. "System.Globalization": "4.3.0",
  1811. "System.Resources.ResourceManager": "4.3.0",
  1812. "System.Runtime": "4.3.0",
  1813. "System.Runtime.Extensions": "4.3.0",
  1814. "System.Threading": "4.3.0"
  1815. },
  1816. "compile": {
  1817. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1818. "related": ".xml"
  1819. }
  1820. },
  1821. "runtime": {
  1822. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1823. }
  1824. },
  1825. "System.Collections.Specialized/4.3.0": {
  1826. "type": "package",
  1827. "dependencies": {
  1828. "System.Collections.NonGeneric": "4.3.0",
  1829. "System.Globalization": "4.3.0",
  1830. "System.Globalization.Extensions": "4.3.0",
  1831. "System.Resources.ResourceManager": "4.3.0",
  1832. "System.Runtime": "4.3.0",
  1833. "System.Runtime.Extensions": "4.3.0",
  1834. "System.Threading": "4.3.0"
  1835. },
  1836. "compile": {
  1837. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1838. "related": ".xml"
  1839. }
  1840. },
  1841. "runtime": {
  1842. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1843. }
  1844. },
  1845. "System.ComponentModel/4.3.0": {
  1846. "type": "package",
  1847. "dependencies": {
  1848. "System.Runtime": "4.3.0"
  1849. },
  1850. "compile": {
  1851. "ref/netstandard1.0/System.ComponentModel.dll": {
  1852. "related": ".xml"
  1853. }
  1854. },
  1855. "runtime": {
  1856. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1857. }
  1858. },
  1859. "System.ComponentModel.Annotations/5.0.0": {
  1860. "type": "package",
  1861. "compile": {
  1862. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1863. "related": ".xml"
  1864. }
  1865. },
  1866. "runtime": {
  1867. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1868. "related": ".xml"
  1869. }
  1870. }
  1871. },
  1872. "System.ComponentModel.Primitives/4.3.0": {
  1873. "type": "package",
  1874. "dependencies": {
  1875. "System.ComponentModel": "4.3.0",
  1876. "System.Resources.ResourceManager": "4.3.0",
  1877. "System.Runtime": "4.3.0"
  1878. },
  1879. "compile": {
  1880. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1881. "related": ".xml"
  1882. }
  1883. },
  1884. "runtime": {
  1885. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1886. }
  1887. },
  1888. "System.ComponentModel.TypeConverter/4.3.0": {
  1889. "type": "package",
  1890. "dependencies": {
  1891. "System.Collections": "4.3.0",
  1892. "System.Collections.NonGeneric": "4.3.0",
  1893. "System.Collections.Specialized": "4.3.0",
  1894. "System.ComponentModel": "4.3.0",
  1895. "System.ComponentModel.Primitives": "4.3.0",
  1896. "System.Globalization": "4.3.0",
  1897. "System.Linq": "4.3.0",
  1898. "System.Reflection": "4.3.0",
  1899. "System.Reflection.Extensions": "4.3.0",
  1900. "System.Reflection.Primitives": "4.3.0",
  1901. "System.Reflection.TypeExtensions": "4.3.0",
  1902. "System.Resources.ResourceManager": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Extensions": "4.3.0",
  1905. "System.Threading": "4.3.0"
  1906. },
  1907. "compile": {
  1908. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1909. "related": ".xml"
  1910. }
  1911. },
  1912. "runtime": {
  1913. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1914. }
  1915. },
  1916. "System.Configuration.ConfigurationManager/4.5.0": {
  1917. "type": "package",
  1918. "dependencies": {
  1919. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1920. "System.Security.Permissions": "4.5.0"
  1921. },
  1922. "compile": {
  1923. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1924. "related": ".xml"
  1925. }
  1926. },
  1927. "runtime": {
  1928. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1929. }
  1930. },
  1931. "System.Console/4.3.0": {
  1932. "type": "package",
  1933. "dependencies": {
  1934. "Microsoft.NETCore.Platforms": "1.1.0",
  1935. "Microsoft.NETCore.Targets": "1.1.0",
  1936. "System.IO": "4.3.0",
  1937. "System.Runtime": "4.3.0",
  1938. "System.Text.Encoding": "4.3.0"
  1939. },
  1940. "compile": {
  1941. "ref/netstandard1.3/System.Console.dll": {
  1942. "related": ".xml"
  1943. }
  1944. }
  1945. },
  1946. "System.Data.Common/4.3.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "System.Collections": "4.3.0",
  1950. "System.Globalization": "4.3.0",
  1951. "System.IO": "4.3.0",
  1952. "System.Resources.ResourceManager": "4.3.0",
  1953. "System.Runtime": "4.3.0",
  1954. "System.Runtime.Extensions": "4.3.0",
  1955. "System.Text.RegularExpressions": "4.3.0",
  1956. "System.Threading.Tasks": "4.3.0"
  1957. },
  1958. "compile": {
  1959. "ref/netstandard1.2/System.Data.Common.dll": {
  1960. "related": ".xml"
  1961. }
  1962. },
  1963. "runtime": {
  1964. "lib/netstandard1.2/System.Data.Common.dll": {}
  1965. }
  1966. },
  1967. "System.Data.DataSetExtensions/4.5.0": {
  1968. "type": "package",
  1969. "compile": {
  1970. "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  1971. },
  1972. "runtime": {
  1973. "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {}
  1974. }
  1975. },
  1976. "System.Data.SqlClient/4.8.3": {
  1977. "type": "package",
  1978. "dependencies": {
  1979. "Microsoft.Win32.Registry": "4.7.0",
  1980. "System.Security.Principal.Windows": "4.7.0",
  1981. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1982. },
  1983. "compile": {
  1984. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  1985. "related": ".xml"
  1986. }
  1987. },
  1988. "runtime": {
  1989. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1990. "related": ".xml"
  1991. }
  1992. },
  1993. "runtimeTargets": {
  1994. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1995. "assetType": "runtime",
  1996. "rid": "unix"
  1997. },
  1998. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1999. "assetType": "runtime",
  2000. "rid": "win"
  2001. }
  2002. }
  2003. },
  2004. "System.Data.SQLite.Core/1.0.114": {
  2005. "type": "package",
  2006. "dependencies": {
  2007. "Stub.System.Data.SQLite.Core.NetStandard": "1.0.114"
  2008. }
  2009. },
  2010. "System.Diagnostics.Debug/4.3.0": {
  2011. "type": "package",
  2012. "dependencies": {
  2013. "Microsoft.NETCore.Platforms": "1.1.0",
  2014. "Microsoft.NETCore.Targets": "1.1.0",
  2015. "System.Runtime": "4.3.0"
  2016. },
  2017. "compile": {
  2018. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2019. "related": ".xml"
  2020. }
  2021. }
  2022. },
  2023. "System.Diagnostics.DiagnosticSource/7.0.2": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2027. },
  2028. "compile": {
  2029. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2030. "related": ".xml"
  2031. }
  2032. },
  2033. "runtime": {
  2034. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2035. "related": ".xml"
  2036. }
  2037. },
  2038. "build": {
  2039. "buildTransitive/net6.0/_._": {}
  2040. }
  2041. },
  2042. "System.Diagnostics.EventLog/5.0.0": {
  2043. "type": "package",
  2044. "dependencies": {
  2045. "Microsoft.NETCore.Platforms": "5.0.0",
  2046. "Microsoft.Win32.Registry": "5.0.0",
  2047. "System.Security.Principal.Windows": "5.0.0"
  2048. },
  2049. "compile": {
  2050. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {
  2051. "related": ".xml"
  2052. }
  2053. },
  2054. "runtime": {
  2055. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  2056. "related": ".xml"
  2057. }
  2058. },
  2059. "runtimeTargets": {
  2060. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  2061. "assetType": "runtime",
  2062. "rid": "win"
  2063. }
  2064. }
  2065. },
  2066. "System.Diagnostics.Tools/4.3.0": {
  2067. "type": "package",
  2068. "dependencies": {
  2069. "Microsoft.NETCore.Platforms": "1.1.0",
  2070. "Microsoft.NETCore.Targets": "1.1.0",
  2071. "System.Runtime": "4.3.0"
  2072. },
  2073. "compile": {
  2074. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2075. "related": ".xml"
  2076. }
  2077. }
  2078. },
  2079. "System.Diagnostics.TraceSource/4.3.0": {
  2080. "type": "package",
  2081. "dependencies": {
  2082. "Microsoft.NETCore.Platforms": "1.1.0",
  2083. "System.Collections": "4.3.0",
  2084. "System.Diagnostics.Debug": "4.3.0",
  2085. "System.Globalization": "4.3.0",
  2086. "System.Resources.ResourceManager": "4.3.0",
  2087. "System.Runtime": "4.3.0",
  2088. "System.Runtime.Extensions": "4.3.0",
  2089. "System.Threading": "4.3.0",
  2090. "runtime.native.System": "4.3.0"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtimeTargets": {
  2098. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2099. "assetType": "runtime",
  2100. "rid": "unix"
  2101. },
  2102. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2103. "assetType": "runtime",
  2104. "rid": "win"
  2105. }
  2106. }
  2107. },
  2108. "System.Diagnostics.Tracing/4.3.0": {
  2109. "type": "package",
  2110. "dependencies": {
  2111. "Microsoft.NETCore.Platforms": "1.1.0",
  2112. "Microsoft.NETCore.Targets": "1.1.0",
  2113. "System.Runtime": "4.3.0"
  2114. },
  2115. "compile": {
  2116. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2117. "related": ".xml"
  2118. }
  2119. }
  2120. },
  2121. "System.Drawing.Common/8.0.4": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.Win32.SystemEvents": "8.0.0"
  2125. },
  2126. "compile": {
  2127. "lib/net6.0/System.Drawing.Common.dll": {
  2128. "related": ".pdb;.xml"
  2129. }
  2130. },
  2131. "runtime": {
  2132. "lib/net6.0/System.Drawing.Common.dll": {
  2133. "related": ".pdb;.xml"
  2134. }
  2135. },
  2136. "build": {
  2137. "buildTransitive/net6.0/_._": {}
  2138. }
  2139. },
  2140. "System.Dynamic.Runtime/4.3.0": {
  2141. "type": "package",
  2142. "dependencies": {
  2143. "System.Collections": "4.3.0",
  2144. "System.Diagnostics.Debug": "4.3.0",
  2145. "System.Linq": "4.3.0",
  2146. "System.Linq.Expressions": "4.3.0",
  2147. "System.ObjectModel": "4.3.0",
  2148. "System.Reflection": "4.3.0",
  2149. "System.Reflection.Emit": "4.3.0",
  2150. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2151. "System.Reflection.Primitives": "4.3.0",
  2152. "System.Reflection.TypeExtensions": "4.3.0",
  2153. "System.Resources.ResourceManager": "4.3.0",
  2154. "System.Runtime": "4.3.0",
  2155. "System.Runtime.Extensions": "4.3.0",
  2156. "System.Threading": "4.3.0"
  2157. },
  2158. "compile": {
  2159. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2160. "related": ".xml"
  2161. }
  2162. },
  2163. "runtime": {
  2164. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2165. }
  2166. },
  2167. "System.Formats.Asn1/5.0.0": {
  2168. "type": "package",
  2169. "compile": {
  2170. "lib/netstandard2.0/_._": {
  2171. "related": ".xml"
  2172. }
  2173. },
  2174. "runtime": {
  2175. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2176. "related": ".xml"
  2177. }
  2178. }
  2179. },
  2180. "System.Globalization/4.3.0": {
  2181. "type": "package",
  2182. "dependencies": {
  2183. "Microsoft.NETCore.Platforms": "1.1.0",
  2184. "Microsoft.NETCore.Targets": "1.1.0",
  2185. "System.Runtime": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/System.Globalization.dll": {
  2189. "related": ".xml"
  2190. }
  2191. }
  2192. },
  2193. "System.Globalization.Calendars/4.3.0": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "Microsoft.NETCore.Platforms": "1.1.0",
  2197. "Microsoft.NETCore.Targets": "1.1.0",
  2198. "System.Globalization": "4.3.0",
  2199. "System.Runtime": "4.3.0"
  2200. },
  2201. "compile": {
  2202. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2203. "related": ".xml"
  2204. }
  2205. }
  2206. },
  2207. "System.Globalization.Extensions/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "Microsoft.NETCore.Platforms": "1.1.0",
  2211. "System.Globalization": "4.3.0",
  2212. "System.Resources.ResourceManager": "4.3.0",
  2213. "System.Runtime": "4.3.0",
  2214. "System.Runtime.Extensions": "4.3.0",
  2215. "System.Runtime.InteropServices": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.3/_._": {
  2219. "related": ".xml"
  2220. }
  2221. },
  2222. "runtimeTargets": {
  2223. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2224. "assetType": "runtime",
  2225. "rid": "unix"
  2226. },
  2227. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2228. "assetType": "runtime",
  2229. "rid": "win"
  2230. }
  2231. }
  2232. },
  2233. "System.IO/4.3.0": {
  2234. "type": "package",
  2235. "dependencies": {
  2236. "Microsoft.NETCore.Platforms": "1.1.0",
  2237. "Microsoft.NETCore.Targets": "1.1.0",
  2238. "System.Runtime": "4.3.0",
  2239. "System.Text.Encoding": "4.3.0",
  2240. "System.Threading.Tasks": "4.3.0"
  2241. },
  2242. "compile": {
  2243. "ref/netstandard1.5/System.IO.dll": {
  2244. "related": ".xml"
  2245. }
  2246. }
  2247. },
  2248. "System.IO.Compression/4.3.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "Microsoft.NETCore.Platforms": "1.1.0",
  2252. "System.Buffers": "4.3.0",
  2253. "System.Collections": "4.3.0",
  2254. "System.Diagnostics.Debug": "4.3.0",
  2255. "System.IO": "4.3.0",
  2256. "System.Resources.ResourceManager": "4.3.0",
  2257. "System.Runtime": "4.3.0",
  2258. "System.Runtime.Extensions": "4.3.0",
  2259. "System.Runtime.Handles": "4.3.0",
  2260. "System.Runtime.InteropServices": "4.3.0",
  2261. "System.Text.Encoding": "4.3.0",
  2262. "System.Threading": "4.3.0",
  2263. "System.Threading.Tasks": "4.3.0",
  2264. "runtime.native.System": "4.3.0",
  2265. "runtime.native.System.IO.Compression": "4.3.0"
  2266. },
  2267. "compile": {
  2268. "ref/netstandard1.3/System.IO.Compression.dll": {
  2269. "related": ".xml"
  2270. }
  2271. },
  2272. "runtimeTargets": {
  2273. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2274. "assetType": "runtime",
  2275. "rid": "unix"
  2276. },
  2277. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2278. "assetType": "runtime",
  2279. "rid": "win"
  2280. }
  2281. }
  2282. },
  2283. "System.IO.Compression.ZipFile/4.3.0": {
  2284. "type": "package",
  2285. "dependencies": {
  2286. "System.Buffers": "4.3.0",
  2287. "System.IO": "4.3.0",
  2288. "System.IO.Compression": "4.3.0",
  2289. "System.IO.FileSystem": "4.3.0",
  2290. "System.IO.FileSystem.Primitives": "4.3.0",
  2291. "System.Resources.ResourceManager": "4.3.0",
  2292. "System.Runtime": "4.3.0",
  2293. "System.Runtime.Extensions": "4.3.0",
  2294. "System.Text.Encoding": "4.3.0"
  2295. },
  2296. "compile": {
  2297. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2298. "related": ".xml"
  2299. }
  2300. },
  2301. "runtime": {
  2302. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2303. }
  2304. },
  2305. "System.IO.FileSystem/4.3.0": {
  2306. "type": "package",
  2307. "dependencies": {
  2308. "Microsoft.NETCore.Platforms": "1.1.0",
  2309. "Microsoft.NETCore.Targets": "1.1.0",
  2310. "System.IO": "4.3.0",
  2311. "System.IO.FileSystem.Primitives": "4.3.0",
  2312. "System.Runtime": "4.3.0",
  2313. "System.Runtime.Handles": "4.3.0",
  2314. "System.Text.Encoding": "4.3.0",
  2315. "System.Threading.Tasks": "4.3.0"
  2316. },
  2317. "compile": {
  2318. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2319. "related": ".xml"
  2320. }
  2321. }
  2322. },
  2323. "System.IO.FileSystem.Primitives/4.3.0": {
  2324. "type": "package",
  2325. "dependencies": {
  2326. "System.Runtime": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2330. "related": ".xml"
  2331. }
  2332. },
  2333. "runtime": {
  2334. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2335. }
  2336. },
  2337. "System.IO.Ports/6.0.0": {
  2338. "type": "package",
  2339. "dependencies": {
  2340. "runtime.native.System.IO.Ports": "6.0.0"
  2341. },
  2342. "compile": {
  2343. "lib/net6.0/System.IO.Ports.dll": {
  2344. "related": ".xml"
  2345. }
  2346. },
  2347. "runtime": {
  2348. "lib/net6.0/System.IO.Ports.dll": {
  2349. "related": ".xml"
  2350. }
  2351. },
  2352. "build": {
  2353. "buildTransitive/netcoreapp3.1/_._": {}
  2354. },
  2355. "runtimeTargets": {
  2356. "runtimes/unix/lib/net6.0/System.IO.Ports.dll": {
  2357. "assetType": "runtime",
  2358. "rid": "unix"
  2359. },
  2360. "runtimes/win/lib/net6.0/System.IO.Ports.dll": {
  2361. "assetType": "runtime",
  2362. "rid": "win"
  2363. }
  2364. }
  2365. },
  2366. "System.Linq/4.3.0": {
  2367. "type": "package",
  2368. "dependencies": {
  2369. "System.Collections": "4.3.0",
  2370. "System.Diagnostics.Debug": "4.3.0",
  2371. "System.Resources.ResourceManager": "4.3.0",
  2372. "System.Runtime": "4.3.0",
  2373. "System.Runtime.Extensions": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.6/System.Linq.dll": {
  2377. "related": ".xml"
  2378. }
  2379. },
  2380. "runtime": {
  2381. "lib/netstandard1.6/System.Linq.dll": {}
  2382. }
  2383. },
  2384. "System.Linq.Expressions/4.3.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "System.Collections": "4.3.0",
  2388. "System.Diagnostics.Debug": "4.3.0",
  2389. "System.Globalization": "4.3.0",
  2390. "System.IO": "4.3.0",
  2391. "System.Linq": "4.3.0",
  2392. "System.ObjectModel": "4.3.0",
  2393. "System.Reflection": "4.3.0",
  2394. "System.Reflection.Emit": "4.3.0",
  2395. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2396. "System.Reflection.Emit.Lightweight": "4.3.0",
  2397. "System.Reflection.Extensions": "4.3.0",
  2398. "System.Reflection.Primitives": "4.3.0",
  2399. "System.Reflection.TypeExtensions": "4.3.0",
  2400. "System.Resources.ResourceManager": "4.3.0",
  2401. "System.Runtime": "4.3.0",
  2402. "System.Runtime.Extensions": "4.3.0",
  2403. "System.Threading": "4.3.0"
  2404. },
  2405. "compile": {
  2406. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2407. "related": ".xml"
  2408. }
  2409. },
  2410. "runtime": {
  2411. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2412. }
  2413. },
  2414. "System.Memory/4.5.4": {
  2415. "type": "package",
  2416. "compile": {
  2417. "ref/netcoreapp2.1/_._": {}
  2418. },
  2419. "runtime": {
  2420. "lib/netcoreapp2.1/_._": {}
  2421. }
  2422. },
  2423. "System.Net.Http/4.3.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "Microsoft.NETCore.Platforms": "1.1.0",
  2427. "System.Collections": "4.3.0",
  2428. "System.Diagnostics.Debug": "4.3.0",
  2429. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2430. "System.Diagnostics.Tracing": "4.3.0",
  2431. "System.Globalization": "4.3.0",
  2432. "System.Globalization.Extensions": "4.3.0",
  2433. "System.IO": "4.3.0",
  2434. "System.IO.FileSystem": "4.3.0",
  2435. "System.Net.Primitives": "4.3.0",
  2436. "System.Resources.ResourceManager": "4.3.0",
  2437. "System.Runtime": "4.3.0",
  2438. "System.Runtime.Extensions": "4.3.0",
  2439. "System.Runtime.Handles": "4.3.0",
  2440. "System.Runtime.InteropServices": "4.3.0",
  2441. "System.Security.Cryptography.Algorithms": "4.3.0",
  2442. "System.Security.Cryptography.Encoding": "4.3.0",
  2443. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2444. "System.Security.Cryptography.Primitives": "4.3.0",
  2445. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2446. "System.Text.Encoding": "4.3.0",
  2447. "System.Threading": "4.3.0",
  2448. "System.Threading.Tasks": "4.3.0",
  2449. "runtime.native.System": "4.3.0",
  2450. "runtime.native.System.Net.Http": "4.3.0",
  2451. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2452. },
  2453. "compile": {
  2454. "ref/netstandard1.3/System.Net.Http.dll": {
  2455. "related": ".xml"
  2456. }
  2457. },
  2458. "runtimeTargets": {
  2459. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2460. "assetType": "runtime",
  2461. "rid": "unix"
  2462. },
  2463. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2464. "assetType": "runtime",
  2465. "rid": "win"
  2466. }
  2467. }
  2468. },
  2469. "System.Net.Primitives/4.3.0": {
  2470. "type": "package",
  2471. "dependencies": {
  2472. "Microsoft.NETCore.Platforms": "1.1.0",
  2473. "Microsoft.NETCore.Targets": "1.1.0",
  2474. "System.Runtime": "4.3.0",
  2475. "System.Runtime.Handles": "4.3.0"
  2476. },
  2477. "compile": {
  2478. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2479. "related": ".xml"
  2480. }
  2481. }
  2482. },
  2483. "System.Net.Sockets/4.3.0": {
  2484. "type": "package",
  2485. "dependencies": {
  2486. "Microsoft.NETCore.Platforms": "1.1.0",
  2487. "Microsoft.NETCore.Targets": "1.1.0",
  2488. "System.IO": "4.3.0",
  2489. "System.Net.Primitives": "4.3.0",
  2490. "System.Runtime": "4.3.0",
  2491. "System.Threading.Tasks": "4.3.0"
  2492. },
  2493. "compile": {
  2494. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2495. "related": ".xml"
  2496. }
  2497. }
  2498. },
  2499. "System.ObjectModel/4.3.0": {
  2500. "type": "package",
  2501. "dependencies": {
  2502. "System.Collections": "4.3.0",
  2503. "System.Diagnostics.Debug": "4.3.0",
  2504. "System.Resources.ResourceManager": "4.3.0",
  2505. "System.Runtime": "4.3.0",
  2506. "System.Threading": "4.3.0"
  2507. },
  2508. "compile": {
  2509. "ref/netstandard1.3/System.ObjectModel.dll": {
  2510. "related": ".xml"
  2511. }
  2512. },
  2513. "runtime": {
  2514. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2515. }
  2516. },
  2517. "System.Reflection/4.3.0": {
  2518. "type": "package",
  2519. "dependencies": {
  2520. "Microsoft.NETCore.Platforms": "1.1.0",
  2521. "Microsoft.NETCore.Targets": "1.1.0",
  2522. "System.IO": "4.3.0",
  2523. "System.Reflection.Primitives": "4.3.0",
  2524. "System.Runtime": "4.3.0"
  2525. },
  2526. "compile": {
  2527. "ref/netstandard1.5/System.Reflection.dll": {
  2528. "related": ".xml"
  2529. }
  2530. }
  2531. },
  2532. "System.Reflection.Emit/4.3.0": {
  2533. "type": "package",
  2534. "dependencies": {
  2535. "System.IO": "4.3.0",
  2536. "System.Reflection": "4.3.0",
  2537. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2538. "System.Reflection.Primitives": "4.3.0",
  2539. "System.Runtime": "4.3.0"
  2540. },
  2541. "compile": {
  2542. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2543. "related": ".xml"
  2544. }
  2545. },
  2546. "runtime": {
  2547. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2548. }
  2549. },
  2550. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2551. "type": "package",
  2552. "dependencies": {
  2553. "System.Reflection": "4.3.0",
  2554. "System.Reflection.Primitives": "4.3.0",
  2555. "System.Runtime": "4.3.0"
  2556. },
  2557. "compile": {
  2558. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2559. "related": ".xml"
  2560. }
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2564. }
  2565. },
  2566. "System.Reflection.Emit.Lightweight/4.3.0": {
  2567. "type": "package",
  2568. "dependencies": {
  2569. "System.Reflection": "4.3.0",
  2570. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2571. "System.Reflection.Primitives": "4.3.0",
  2572. "System.Runtime": "4.3.0"
  2573. },
  2574. "compile": {
  2575. "ref/netstandard1.0/_._": {
  2576. "related": ".xml"
  2577. }
  2578. },
  2579. "runtime": {
  2580. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2581. }
  2582. },
  2583. "System.Reflection.Extensions/4.3.0": {
  2584. "type": "package",
  2585. "dependencies": {
  2586. "Microsoft.NETCore.Platforms": "1.1.0",
  2587. "Microsoft.NETCore.Targets": "1.1.0",
  2588. "System.Reflection": "4.3.0",
  2589. "System.Runtime": "4.3.0"
  2590. },
  2591. "compile": {
  2592. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2593. "related": ".xml"
  2594. }
  2595. }
  2596. },
  2597. "System.Reflection.Primitives/4.3.0": {
  2598. "type": "package",
  2599. "dependencies": {
  2600. "Microsoft.NETCore.Platforms": "1.1.0",
  2601. "Microsoft.NETCore.Targets": "1.1.0",
  2602. "System.Runtime": "4.3.0"
  2603. },
  2604. "compile": {
  2605. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2606. "related": ".xml"
  2607. }
  2608. }
  2609. },
  2610. "System.Reflection.TypeExtensions/4.3.0": {
  2611. "type": "package",
  2612. "dependencies": {
  2613. "System.Reflection": "4.3.0",
  2614. "System.Runtime": "4.3.0"
  2615. },
  2616. "compile": {
  2617. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2618. "related": ".xml"
  2619. }
  2620. },
  2621. "runtime": {
  2622. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2623. }
  2624. },
  2625. "System.Resources.ResourceManager/4.3.0": {
  2626. "type": "package",
  2627. "dependencies": {
  2628. "Microsoft.NETCore.Platforms": "1.1.0",
  2629. "Microsoft.NETCore.Targets": "1.1.0",
  2630. "System.Globalization": "4.3.0",
  2631. "System.Reflection": "4.3.0",
  2632. "System.Runtime": "4.3.0"
  2633. },
  2634. "compile": {
  2635. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2636. "related": ".xml"
  2637. }
  2638. }
  2639. },
  2640. "System.Runtime/4.3.0": {
  2641. "type": "package",
  2642. "dependencies": {
  2643. "Microsoft.NETCore.Platforms": "1.1.0",
  2644. "Microsoft.NETCore.Targets": "1.1.0"
  2645. },
  2646. "compile": {
  2647. "ref/netstandard1.5/System.Runtime.dll": {
  2648. "related": ".xml"
  2649. }
  2650. }
  2651. },
  2652. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2653. "type": "package",
  2654. "compile": {
  2655. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2656. "related": ".xml"
  2657. }
  2658. },
  2659. "runtime": {
  2660. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2661. "related": ".xml"
  2662. }
  2663. },
  2664. "build": {
  2665. "buildTransitive/netcoreapp3.1/_._": {}
  2666. }
  2667. },
  2668. "System.Runtime.Extensions/4.3.0": {
  2669. "type": "package",
  2670. "dependencies": {
  2671. "Microsoft.NETCore.Platforms": "1.1.0",
  2672. "Microsoft.NETCore.Targets": "1.1.0",
  2673. "System.Runtime": "4.3.0"
  2674. },
  2675. "compile": {
  2676. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2677. "related": ".xml"
  2678. }
  2679. }
  2680. },
  2681. "System.Runtime.Handles/4.3.0": {
  2682. "type": "package",
  2683. "dependencies": {
  2684. "Microsoft.NETCore.Platforms": "1.1.0",
  2685. "Microsoft.NETCore.Targets": "1.1.0",
  2686. "System.Runtime": "4.3.0"
  2687. },
  2688. "compile": {
  2689. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2690. "related": ".xml"
  2691. }
  2692. }
  2693. },
  2694. "System.Runtime.InteropServices/4.3.0": {
  2695. "type": "package",
  2696. "dependencies": {
  2697. "Microsoft.NETCore.Platforms": "1.1.0",
  2698. "Microsoft.NETCore.Targets": "1.1.0",
  2699. "System.Reflection": "4.3.0",
  2700. "System.Reflection.Primitives": "4.3.0",
  2701. "System.Runtime": "4.3.0",
  2702. "System.Runtime.Handles": "4.3.0"
  2703. },
  2704. "compile": {
  2705. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2706. }
  2707. },
  2708. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2709. "type": "package",
  2710. "dependencies": {
  2711. "System.Reflection": "4.3.0",
  2712. "System.Reflection.Extensions": "4.3.0",
  2713. "System.Resources.ResourceManager": "4.3.0",
  2714. "System.Runtime": "4.3.0",
  2715. "System.Runtime.InteropServices": "4.3.0",
  2716. "System.Threading": "4.3.0",
  2717. "runtime.native.System": "4.3.0"
  2718. },
  2719. "compile": {
  2720. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2721. },
  2722. "runtime": {
  2723. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2724. },
  2725. "runtimeTargets": {
  2726. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2727. "assetType": "runtime",
  2728. "rid": "unix"
  2729. },
  2730. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2731. "assetType": "runtime",
  2732. "rid": "win"
  2733. }
  2734. }
  2735. },
  2736. "System.Runtime.Numerics/4.3.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "System.Globalization": "4.3.0",
  2740. "System.Resources.ResourceManager": "4.3.0",
  2741. "System.Runtime": "4.3.0",
  2742. "System.Runtime.Extensions": "4.3.0"
  2743. },
  2744. "compile": {
  2745. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2746. "related": ".xml"
  2747. }
  2748. },
  2749. "runtime": {
  2750. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2751. }
  2752. },
  2753. "System.Runtime.Serialization.Primitives/4.1.1": {
  2754. "type": "package",
  2755. "dependencies": {
  2756. "System.Resources.ResourceManager": "4.0.1",
  2757. "System.Runtime": "4.1.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2761. "related": ".xml"
  2762. }
  2763. },
  2764. "runtime": {
  2765. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2766. }
  2767. },
  2768. "System.Security.AccessControl/5.0.0": {
  2769. "type": "package",
  2770. "dependencies": {
  2771. "Microsoft.NETCore.Platforms": "5.0.0",
  2772. "System.Security.Principal.Windows": "5.0.0"
  2773. },
  2774. "compile": {
  2775. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtime": {
  2780. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2781. "related": ".xml"
  2782. }
  2783. },
  2784. "runtimeTargets": {
  2785. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2786. "assetType": "runtime",
  2787. "rid": "win"
  2788. }
  2789. }
  2790. },
  2791. "System.Security.Claims/4.3.0": {
  2792. "type": "package",
  2793. "dependencies": {
  2794. "System.Collections": "4.3.0",
  2795. "System.Globalization": "4.3.0",
  2796. "System.IO": "4.3.0",
  2797. "System.Resources.ResourceManager": "4.3.0",
  2798. "System.Runtime": "4.3.0",
  2799. "System.Runtime.Extensions": "4.3.0",
  2800. "System.Security.Principal": "4.3.0"
  2801. },
  2802. "compile": {
  2803. "ref/netstandard1.3/System.Security.Claims.dll": {
  2804. "related": ".xml"
  2805. }
  2806. },
  2807. "runtime": {
  2808. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2809. }
  2810. },
  2811. "System.Security.Cryptography.Algorithms/4.3.0": {
  2812. "type": "package",
  2813. "dependencies": {
  2814. "Microsoft.NETCore.Platforms": "1.1.0",
  2815. "System.Collections": "4.3.0",
  2816. "System.IO": "4.3.0",
  2817. "System.Resources.ResourceManager": "4.3.0",
  2818. "System.Runtime": "4.3.0",
  2819. "System.Runtime.Extensions": "4.3.0",
  2820. "System.Runtime.Handles": "4.3.0",
  2821. "System.Runtime.InteropServices": "4.3.0",
  2822. "System.Runtime.Numerics": "4.3.0",
  2823. "System.Security.Cryptography.Encoding": "4.3.0",
  2824. "System.Security.Cryptography.Primitives": "4.3.0",
  2825. "System.Text.Encoding": "4.3.0",
  2826. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2827. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2831. },
  2832. "runtimeTargets": {
  2833. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2834. "assetType": "runtime",
  2835. "rid": "osx"
  2836. },
  2837. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2838. "assetType": "runtime",
  2839. "rid": "unix"
  2840. },
  2841. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2842. "assetType": "runtime",
  2843. "rid": "win"
  2844. }
  2845. }
  2846. },
  2847. "System.Security.Cryptography.Cng/5.0.0": {
  2848. "type": "package",
  2849. "dependencies": {
  2850. "System.Formats.Asn1": "5.0.0"
  2851. },
  2852. "compile": {
  2853. "ref/netcoreapp3.0/_._": {
  2854. "related": ".xml"
  2855. }
  2856. },
  2857. "runtime": {
  2858. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2859. "related": ".xml"
  2860. }
  2861. },
  2862. "runtimeTargets": {
  2863. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2864. "assetType": "runtime",
  2865. "rid": "win"
  2866. }
  2867. }
  2868. },
  2869. "System.Security.Cryptography.Csp/4.3.0": {
  2870. "type": "package",
  2871. "dependencies": {
  2872. "Microsoft.NETCore.Platforms": "1.1.0",
  2873. "System.IO": "4.3.0",
  2874. "System.Reflection": "4.3.0",
  2875. "System.Resources.ResourceManager": "4.3.0",
  2876. "System.Runtime": "4.3.0",
  2877. "System.Runtime.Extensions": "4.3.0",
  2878. "System.Runtime.Handles": "4.3.0",
  2879. "System.Runtime.InteropServices": "4.3.0",
  2880. "System.Security.Cryptography.Algorithms": "4.3.0",
  2881. "System.Security.Cryptography.Encoding": "4.3.0",
  2882. "System.Security.Cryptography.Primitives": "4.3.0",
  2883. "System.Text.Encoding": "4.3.0",
  2884. "System.Threading": "4.3.0"
  2885. },
  2886. "compile": {
  2887. "ref/netstandard1.3/_._": {}
  2888. },
  2889. "runtimeTargets": {
  2890. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2891. "assetType": "runtime",
  2892. "rid": "unix"
  2893. },
  2894. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2895. "assetType": "runtime",
  2896. "rid": "win"
  2897. }
  2898. }
  2899. },
  2900. "System.Security.Cryptography.Encoding/4.3.0": {
  2901. "type": "package",
  2902. "dependencies": {
  2903. "Microsoft.NETCore.Platforms": "1.1.0",
  2904. "System.Collections": "4.3.0",
  2905. "System.Collections.Concurrent": "4.3.0",
  2906. "System.Linq": "4.3.0",
  2907. "System.Resources.ResourceManager": "4.3.0",
  2908. "System.Runtime": "4.3.0",
  2909. "System.Runtime.Extensions": "4.3.0",
  2910. "System.Runtime.Handles": "4.3.0",
  2911. "System.Runtime.InteropServices": "4.3.0",
  2912. "System.Security.Cryptography.Primitives": "4.3.0",
  2913. "System.Text.Encoding": "4.3.0",
  2914. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2915. },
  2916. "compile": {
  2917. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2918. "related": ".xml"
  2919. }
  2920. },
  2921. "runtimeTargets": {
  2922. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2923. "assetType": "runtime",
  2924. "rid": "unix"
  2925. },
  2926. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2927. "assetType": "runtime",
  2928. "rid": "win"
  2929. }
  2930. }
  2931. },
  2932. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2933. "type": "package",
  2934. "dependencies": {
  2935. "System.Collections": "4.3.0",
  2936. "System.IO": "4.3.0",
  2937. "System.Resources.ResourceManager": "4.3.0",
  2938. "System.Runtime": "4.3.0",
  2939. "System.Runtime.Extensions": "4.3.0",
  2940. "System.Runtime.Handles": "4.3.0",
  2941. "System.Runtime.InteropServices": "4.3.0",
  2942. "System.Runtime.Numerics": "4.3.0",
  2943. "System.Security.Cryptography.Algorithms": "4.3.0",
  2944. "System.Security.Cryptography.Encoding": "4.3.0",
  2945. "System.Security.Cryptography.Primitives": "4.3.0",
  2946. "System.Text.Encoding": "4.3.0",
  2947. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2948. },
  2949. "compile": {
  2950. "ref/netstandard1.6/_._": {}
  2951. },
  2952. "runtime": {
  2953. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2954. },
  2955. "runtimeTargets": {
  2956. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2957. "assetType": "runtime",
  2958. "rid": "unix"
  2959. }
  2960. }
  2961. },
  2962. "System.Security.Cryptography.Pkcs/5.0.0": {
  2963. "type": "package",
  2964. "dependencies": {
  2965. "System.Formats.Asn1": "5.0.0",
  2966. "System.Security.Cryptography.Cng": "5.0.0"
  2967. },
  2968. "compile": {
  2969. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2970. "related": ".xml"
  2971. }
  2972. },
  2973. "runtime": {
  2974. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2975. "related": ".xml"
  2976. }
  2977. },
  2978. "runtimeTargets": {
  2979. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2980. "assetType": "runtime",
  2981. "rid": "win"
  2982. }
  2983. }
  2984. },
  2985. "System.Security.Cryptography.Primitives/4.3.0": {
  2986. "type": "package",
  2987. "dependencies": {
  2988. "System.Diagnostics.Debug": "4.3.0",
  2989. "System.Globalization": "4.3.0",
  2990. "System.IO": "4.3.0",
  2991. "System.Resources.ResourceManager": "4.3.0",
  2992. "System.Runtime": "4.3.0",
  2993. "System.Threading": "4.3.0",
  2994. "System.Threading.Tasks": "4.3.0"
  2995. },
  2996. "compile": {
  2997. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2998. },
  2999. "runtime": {
  3000. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3001. }
  3002. },
  3003. "System.Security.Cryptography.ProtectedData/4.5.0": {
  3004. "type": "package",
  3005. "compile": {
  3006. "ref/netstandard2.0/_._": {
  3007. "related": ".xml"
  3008. }
  3009. },
  3010. "runtime": {
  3011. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  3012. },
  3013. "runtimeTargets": {
  3014. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3015. "assetType": "runtime",
  3016. "rid": "win"
  3017. }
  3018. }
  3019. },
  3020. "System.Security.Cryptography.X509Certificates/4.3.2": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "Microsoft.NETCore.Platforms": "1.1.0",
  3024. "System.Collections": "4.3.0",
  3025. "System.Diagnostics.Debug": "4.3.0",
  3026. "System.Globalization": "4.3.0",
  3027. "System.Globalization.Calendars": "4.3.0",
  3028. "System.IO": "4.3.0",
  3029. "System.IO.FileSystem": "4.3.0",
  3030. "System.IO.FileSystem.Primitives": "4.3.0",
  3031. "System.Resources.ResourceManager": "4.3.0",
  3032. "System.Runtime": "4.3.0",
  3033. "System.Runtime.Extensions": "4.3.0",
  3034. "System.Runtime.Handles": "4.3.0",
  3035. "System.Runtime.InteropServices": "4.3.0",
  3036. "System.Runtime.Numerics": "4.3.0",
  3037. "System.Security.Cryptography.Algorithms": "4.3.0",
  3038. "System.Security.Cryptography.Cng": "4.3.0",
  3039. "System.Security.Cryptography.Csp": "4.3.0",
  3040. "System.Security.Cryptography.Encoding": "4.3.0",
  3041. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3042. "System.Security.Cryptography.Primitives": "4.3.0",
  3043. "System.Text.Encoding": "4.3.0",
  3044. "System.Threading": "4.3.0",
  3045. "runtime.native.System": "4.3.0",
  3046. "runtime.native.System.Net.Http": "4.3.0",
  3047. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  3048. },
  3049. "compile": {
  3050. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3051. },
  3052. "runtimeTargets": {
  3053. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3054. "assetType": "runtime",
  3055. "rid": "unix"
  3056. },
  3057. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3058. "assetType": "runtime",
  3059. "rid": "win"
  3060. }
  3061. }
  3062. },
  3063. "System.Security.Permissions/4.7.0": {
  3064. "type": "package",
  3065. "dependencies": {
  3066. "System.Security.AccessControl": "4.7.0",
  3067. "System.Windows.Extensions": "4.7.0"
  3068. },
  3069. "compile": {
  3070. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3071. "related": ".xml"
  3072. }
  3073. },
  3074. "runtime": {
  3075. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3076. "related": ".xml"
  3077. }
  3078. }
  3079. },
  3080. "System.Security.Principal/4.3.0": {
  3081. "type": "package",
  3082. "dependencies": {
  3083. "System.Runtime": "4.3.0"
  3084. },
  3085. "compile": {
  3086. "ref/netstandard1.0/System.Security.Principal.dll": {
  3087. "related": ".xml"
  3088. }
  3089. },
  3090. "runtime": {
  3091. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3092. }
  3093. },
  3094. "System.Security.Principal.Windows/5.0.0": {
  3095. "type": "package",
  3096. "compile": {
  3097. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3098. "related": ".xml"
  3099. }
  3100. },
  3101. "runtime": {
  3102. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3103. "related": ".xml"
  3104. }
  3105. },
  3106. "runtimeTargets": {
  3107. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3108. "assetType": "runtime",
  3109. "rid": "unix"
  3110. },
  3111. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3112. "assetType": "runtime",
  3113. "rid": "win"
  3114. }
  3115. }
  3116. },
  3117. "System.Text.Encoding/4.3.0": {
  3118. "type": "package",
  3119. "dependencies": {
  3120. "Microsoft.NETCore.Platforms": "1.1.0",
  3121. "Microsoft.NETCore.Targets": "1.1.0",
  3122. "System.Runtime": "4.3.0"
  3123. },
  3124. "compile": {
  3125. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3126. "related": ".xml"
  3127. }
  3128. }
  3129. },
  3130. "System.Text.Encoding.CodePages/5.0.0": {
  3131. "type": "package",
  3132. "dependencies": {
  3133. "Microsoft.NETCore.Platforms": "5.0.0"
  3134. },
  3135. "compile": {
  3136. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3137. "related": ".xml"
  3138. }
  3139. },
  3140. "runtime": {
  3141. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3142. "related": ".xml"
  3143. }
  3144. },
  3145. "runtimeTargets": {
  3146. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3147. "assetType": "runtime",
  3148. "rid": "win"
  3149. }
  3150. }
  3151. },
  3152. "System.Text.Encoding.Extensions/4.3.0": {
  3153. "type": "package",
  3154. "dependencies": {
  3155. "Microsoft.NETCore.Platforms": "1.1.0",
  3156. "Microsoft.NETCore.Targets": "1.1.0",
  3157. "System.Runtime": "4.3.0",
  3158. "System.Text.Encoding": "4.3.0"
  3159. },
  3160. "compile": {
  3161. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3162. "related": ".xml"
  3163. }
  3164. }
  3165. },
  3166. "System.Text.Json/4.7.2": {
  3167. "type": "package",
  3168. "compile": {
  3169. "lib/netcoreapp3.0/System.Text.Json.dll": {
  3170. "related": ".xml"
  3171. }
  3172. },
  3173. "runtime": {
  3174. "lib/netcoreapp3.0/System.Text.Json.dll": {
  3175. "related": ".xml"
  3176. }
  3177. }
  3178. },
  3179. "System.Text.RegularExpressions/4.3.0": {
  3180. "type": "package",
  3181. "dependencies": {
  3182. "System.Runtime": "4.3.0"
  3183. },
  3184. "compile": {
  3185. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3186. },
  3187. "runtime": {
  3188. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3189. }
  3190. },
  3191. "System.Threading/4.3.0": {
  3192. "type": "package",
  3193. "dependencies": {
  3194. "System.Runtime": "4.3.0",
  3195. "System.Threading.Tasks": "4.3.0"
  3196. },
  3197. "compile": {
  3198. "ref/netstandard1.3/System.Threading.dll": {
  3199. "related": ".xml"
  3200. }
  3201. },
  3202. "runtime": {
  3203. "lib/netstandard1.3/System.Threading.dll": {}
  3204. }
  3205. },
  3206. "System.Threading.Tasks/4.3.0": {
  3207. "type": "package",
  3208. "dependencies": {
  3209. "Microsoft.NETCore.Platforms": "1.1.0",
  3210. "Microsoft.NETCore.Targets": "1.1.0",
  3211. "System.Runtime": "4.3.0"
  3212. },
  3213. "compile": {
  3214. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3215. "related": ".xml"
  3216. }
  3217. }
  3218. },
  3219. "System.Threading.Tasks.Extensions/4.5.2": {
  3220. "type": "package",
  3221. "compile": {
  3222. "ref/netcoreapp2.1/_._": {}
  3223. },
  3224. "runtime": {
  3225. "lib/netcoreapp2.1/_._": {}
  3226. }
  3227. },
  3228. "System.Threading.Timer/4.3.0": {
  3229. "type": "package",
  3230. "dependencies": {
  3231. "Microsoft.NETCore.Platforms": "1.1.0",
  3232. "Microsoft.NETCore.Targets": "1.1.0",
  3233. "System.Runtime": "4.3.0"
  3234. },
  3235. "compile": {
  3236. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3237. "related": ".xml"
  3238. }
  3239. }
  3240. },
  3241. "System.Windows.Extensions/4.7.0": {
  3242. "type": "package",
  3243. "dependencies": {
  3244. "System.Drawing.Common": "4.7.0"
  3245. },
  3246. "compile": {
  3247. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3248. "related": ".xml"
  3249. }
  3250. },
  3251. "runtime": {
  3252. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3253. "related": ".xml"
  3254. }
  3255. },
  3256. "runtimeTargets": {
  3257. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3258. "assetType": "runtime",
  3259. "rid": "win"
  3260. }
  3261. }
  3262. },
  3263. "System.Xml.ReaderWriter/4.3.0": {
  3264. "type": "package",
  3265. "dependencies": {
  3266. "System.Collections": "4.3.0",
  3267. "System.Diagnostics.Debug": "4.3.0",
  3268. "System.Globalization": "4.3.0",
  3269. "System.IO": "4.3.0",
  3270. "System.IO.FileSystem": "4.3.0",
  3271. "System.IO.FileSystem.Primitives": "4.3.0",
  3272. "System.Resources.ResourceManager": "4.3.0",
  3273. "System.Runtime": "4.3.0",
  3274. "System.Runtime.Extensions": "4.3.0",
  3275. "System.Runtime.InteropServices": "4.3.0",
  3276. "System.Text.Encoding": "4.3.0",
  3277. "System.Text.Encoding.Extensions": "4.3.0",
  3278. "System.Text.RegularExpressions": "4.3.0",
  3279. "System.Threading.Tasks": "4.3.0",
  3280. "System.Threading.Tasks.Extensions": "4.3.0"
  3281. },
  3282. "compile": {
  3283. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3284. "related": ".xml"
  3285. }
  3286. },
  3287. "runtime": {
  3288. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3289. }
  3290. },
  3291. "System.Xml.XDocument/4.3.0": {
  3292. "type": "package",
  3293. "dependencies": {
  3294. "System.Collections": "4.3.0",
  3295. "System.Diagnostics.Debug": "4.3.0",
  3296. "System.Diagnostics.Tools": "4.3.0",
  3297. "System.Globalization": "4.3.0",
  3298. "System.IO": "4.3.0",
  3299. "System.Reflection": "4.3.0",
  3300. "System.Resources.ResourceManager": "4.3.0",
  3301. "System.Runtime": "4.3.0",
  3302. "System.Runtime.Extensions": "4.3.0",
  3303. "System.Text.Encoding": "4.3.0",
  3304. "System.Threading": "4.3.0",
  3305. "System.Xml.ReaderWriter": "4.3.0"
  3306. },
  3307. "compile": {
  3308. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3309. "related": ".xml"
  3310. }
  3311. },
  3312. "runtime": {
  3313. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3314. }
  3315. },
  3316. "System.Xml.XmlDocument/4.3.0": {
  3317. "type": "package",
  3318. "dependencies": {
  3319. "System.Collections": "4.3.0",
  3320. "System.Diagnostics.Debug": "4.3.0",
  3321. "System.Globalization": "4.3.0",
  3322. "System.IO": "4.3.0",
  3323. "System.Resources.ResourceManager": "4.3.0",
  3324. "System.Runtime": "4.3.0",
  3325. "System.Runtime.Extensions": "4.3.0",
  3326. "System.Text.Encoding": "4.3.0",
  3327. "System.Threading": "4.3.0",
  3328. "System.Xml.ReaderWriter": "4.3.0"
  3329. },
  3330. "compile": {
  3331. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3332. "related": ".xml"
  3333. }
  3334. },
  3335. "runtime": {
  3336. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3337. }
  3338. },
  3339. "System.Xml.XPath/4.3.0": {
  3340. "type": "package",
  3341. "dependencies": {
  3342. "System.Collections": "4.3.0",
  3343. "System.Diagnostics.Debug": "4.3.0",
  3344. "System.Globalization": "4.3.0",
  3345. "System.IO": "4.3.0",
  3346. "System.Resources.ResourceManager": "4.3.0",
  3347. "System.Runtime": "4.3.0",
  3348. "System.Runtime.Extensions": "4.3.0",
  3349. "System.Threading": "4.3.0",
  3350. "System.Xml.ReaderWriter": "4.3.0"
  3351. },
  3352. "compile": {
  3353. "ref/netstandard1.3/System.Xml.XPath.dll": {
  3354. "related": ".xml"
  3355. }
  3356. },
  3357. "runtime": {
  3358. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3359. }
  3360. },
  3361. "System.Xml.XPath.XmlDocument/4.3.0": {
  3362. "type": "package",
  3363. "dependencies": {
  3364. "System.Collections": "4.3.0",
  3365. "System.Globalization": "4.3.0",
  3366. "System.IO": "4.3.0",
  3367. "System.Resources.ResourceManager": "4.3.0",
  3368. "System.Runtime": "4.3.0",
  3369. "System.Runtime.Extensions": "4.3.0",
  3370. "System.Threading": "4.3.0",
  3371. "System.Xml.ReaderWriter": "4.3.0",
  3372. "System.Xml.XPath": "4.3.0",
  3373. "System.Xml.XmlDocument": "4.3.0"
  3374. },
  3375. "compile": {
  3376. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  3377. "related": ".xml"
  3378. }
  3379. },
  3380. "runtime": {
  3381. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  3382. }
  3383. },
  3384. "Unity.Abstractions/5.11.7": {
  3385. "type": "package",
  3386. "dependencies": {
  3387. "System.Threading.Tasks.Extensions": "4.5.2"
  3388. },
  3389. "compile": {
  3390. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  3391. "related": ".pdb"
  3392. }
  3393. },
  3394. "runtime": {
  3395. "lib/netcoreapp3.0/Unity.Abstractions.dll": {
  3396. "related": ".pdb"
  3397. }
  3398. }
  3399. },
  3400. "Unity.Container/5.11.11": {
  3401. "type": "package",
  3402. "dependencies": {
  3403. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  3404. "Unity.Abstractions": "5.11.7"
  3405. },
  3406. "compile": {
  3407. "lib/netcoreapp3.0/Unity.Container.dll": {
  3408. "related": ".pdb"
  3409. }
  3410. },
  3411. "runtime": {
  3412. "lib/netcoreapp3.0/Unity.Container.dll": {
  3413. "related": ".pdb"
  3414. }
  3415. }
  3416. },
  3417. "Unity.Interception/5.11.1": {
  3418. "type": "package",
  3419. "dependencies": {
  3420. "System.Reflection.Emit": "4.3.0",
  3421. "Unity.Container": "5.11.1"
  3422. },
  3423. "compile": {
  3424. "lib/netcoreapp2.0/Unity.Interception.dll": {
  3425. "related": ".pdb"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netcoreapp2.0/Unity.Interception.dll": {
  3430. "related": ".pdb"
  3431. }
  3432. }
  3433. },
  3434. "WpfAnimatedGif/2.0.0": {
  3435. "type": "package",
  3436. "compile": {
  3437. "lib/netcoreapp3.0/WpfAnimatedGif.dll": {
  3438. "related": ".pdb;.xml"
  3439. }
  3440. },
  3441. "runtime": {
  3442. "lib/netcoreapp3.0/WpfAnimatedGif.dll": {
  3443. "related": ".pdb;.xml"
  3444. }
  3445. },
  3446. "frameworkReferences": [
  3447. "Microsoft.WindowsDesktop.App.WPF"
  3448. ]
  3449. },
  3450. "YamlDotNet/11.2.1": {
  3451. "type": "package",
  3452. "compile": {
  3453. "lib/netstandard2.1/YamlDotNet.dll": {
  3454. "related": ".xml"
  3455. }
  3456. },
  3457. "runtime": {
  3458. "lib/netstandard2.1/YamlDotNet.dll": {
  3459. "related": ".xml"
  3460. }
  3461. }
  3462. },
  3463. "SHJX.Service.Common/1.0.0": {
  3464. "type": "project",
  3465. "framework": ".NETCoreApp,Version=v6.0",
  3466. "dependencies": {
  3467. "EPPlus": "5.6.4",
  3468. "LiveCharts": "0.9.7",
  3469. "LiveCharts.Wpf": "0.9.7",
  3470. "MahApps.Metro": "2.4.5",
  3471. "Microsoft.Data.Sqlite.Core": "5.0.6",
  3472. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3473. "Microsoft.Extensions.Configuration": "5.0.0",
  3474. "Microsoft.Extensions.Hosting": "5.0.0",
  3475. "Microsoft.Extensions.Logging": "7.0.0",
  3476. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  3477. "Microsoft.Extensions.Logging.Console": "5.0.0",
  3478. "Panuon.UI.Silver": "1.1.3.4",
  3479. "Prism.Core": "8.1.97",
  3480. "Prism.Unity": "8.1.97",
  3481. "SHJX.Service.Model": "1.0.0",
  3482. "Serilog": "2.10.0",
  3483. "Serilog.Enrichers.Thread": "3.1.0",
  3484. "Serilog.Extensions.Logging": "3.0.1",
  3485. "Serilog.Formatting.Compact": "1.1.0",
  3486. "Serilog.Settings.Configuration": "3.1.0",
  3487. "Serilog.Sinks.Console": "3.1.1",
  3488. "Serilog.Sinks.File": "4.1.0",
  3489. "System.Data.SQLite.Core": "1.0.114",
  3490. "System.Data.SqlClient": "4.8.2",
  3491. "System.Drawing.Common": "7.0.0",
  3492. "Unity.Interception": "5.11.1",
  3493. "YamlDotNet": "11.2.1",
  3494. "shjxCamera": "1.0.0"
  3495. },
  3496. "compile": {
  3497. "bin/placeholder/SHJX.Service.Common.dll": {}
  3498. },
  3499. "runtime": {
  3500. "bin/placeholder/SHJX.Service.Common.dll": {}
  3501. },
  3502. "frameworkReferences": [
  3503. "Microsoft.WindowsDesktop.App.WPF"
  3504. ]
  3505. },
  3506. "SHJX.Service.Control/1.0.0": {
  3507. "type": "project",
  3508. "framework": ".NETCoreApp,Version=v6.0",
  3509. "dependencies": {
  3510. "Autofac": "6.3.0",
  3511. "Autofac.Extensions.DependencyInjection": "7.2.0",
  3512. "Autofac.Extras.DynamicProxy": "6.0.0",
  3513. "Castle.Core": "4.4.1",
  3514. "EaseDapper": "0.1.4.18",
  3515. "EaseScheduler": "0.0.0.6",
  3516. "Mapster": "7.2.0",
  3517. "Microsoft.Data.Sqlite.Core": "6.0.1",
  3518. "Microsoft.Extensions.Caching.Memory": "6.0.0",
  3519. "Microsoft.Extensions.Logging": "7.0.0",
  3520. "NPOI": "2.5.6",
  3521. "Polly": "7.2.2",
  3522. "SHJX.Service.PortClient": "1.0.0",
  3523. "System.Drawing.Common": "8.0.4",
  3524. "shjxCamera": "1.0.0"
  3525. },
  3526. "compile": {
  3527. "bin/placeholder/SHJX.Service.Control.dll": {}
  3528. },
  3529. "runtime": {
  3530. "bin/placeholder/SHJX.Service.Control.dll": {}
  3531. }
  3532. },
  3533. "SHJX.Service.Library/1.0.0": {
  3534. "type": "project",
  3535. "framework": ".NETCoreApp,Version=v6.0",
  3536. "dependencies": {
  3537. "SHJX.Service.Common": "1.0.0",
  3538. "SHJX.Service.Control": "1.0.0",
  3539. "SHJX.Service.Model": "1.0.0",
  3540. "SHJX.Service.Resource": "1.0.0"
  3541. },
  3542. "compile": {
  3543. "bin/placeholder/SHJX.Service.Library.dll": {}
  3544. },
  3545. "runtime": {
  3546. "bin/placeholder/SHJX.Service.Library.dll": {}
  3547. },
  3548. "frameworkReferences": [
  3549. "Microsoft.WindowsDesktop.App.WPF"
  3550. ]
  3551. },
  3552. "SHJX.Service.Main/1.0.0": {
  3553. "type": "project",
  3554. "framework": ".NETCoreApp,Version=v6.0",
  3555. "dependencies": {
  3556. "Panuon.UI.Silver": "1.1.3.4",
  3557. "Prism.Unity": "8.1.97",
  3558. "SHJX.Service.Common": "1.0.0",
  3559. "SHJX.Service.Control": "1.0.0",
  3560. "SHJX.Service.Library": "1.0.0",
  3561. "SHJX.Service.Model": "1.0.0"
  3562. },
  3563. "compile": {
  3564. "bin/placeholder/SHJX.Service.Main.dll": {}
  3565. },
  3566. "runtime": {
  3567. "bin/placeholder/SHJX.Service.Main.dll": {}
  3568. },
  3569. "frameworkReferences": [
  3570. "Microsoft.WindowsDesktop.App.WPF"
  3571. ]
  3572. },
  3573. "SHJX.Service.Model/1.0.0": {
  3574. "type": "project",
  3575. "framework": ".NETCoreApp,Version=v6.0",
  3576. "dependencies": {
  3577. "Panuon.UI.Silver": "1.1.3.4",
  3578. "Prism.Core": "8.1.97"
  3579. },
  3580. "compile": {
  3581. "bin/placeholder/SHJX.Service.Model.dll": {}
  3582. },
  3583. "runtime": {
  3584. "bin/placeholder/SHJX.Service.Model.dll": {}
  3585. },
  3586. "frameworkReferences": [
  3587. "Microsoft.WindowsDesktop.App.WPF"
  3588. ]
  3589. },
  3590. "SHJX.Service.PortClient/1.0.0": {
  3591. "type": "project",
  3592. "framework": ".NETCoreApp,Version=v6.0",
  3593. "dependencies": {
  3594. "NModbus4.NetCore": "2.0.1",
  3595. "SHJX.Service.Common": "1.0.0"
  3596. },
  3597. "compile": {
  3598. "bin/placeholder/SHJX.Service.PortClient.dll": {}
  3599. },
  3600. "runtime": {
  3601. "bin/placeholder/SHJX.Service.PortClient.dll": {}
  3602. },
  3603. "frameworkReferences": [
  3604. "Microsoft.WindowsDesktop.App.WPF"
  3605. ]
  3606. },
  3607. "SHJX.Service.Resource/1.0.0": {
  3608. "type": "project",
  3609. "framework": ".NETCoreApp,Version=v6.0",
  3610. "dependencies": {
  3611. "WpfAnimatedGif": "2.0.0"
  3612. },
  3613. "compile": {
  3614. "bin/placeholder/SHJX.Service.Resource.dll": {}
  3615. },
  3616. "runtime": {
  3617. "bin/placeholder/SHJX.Service.Resource.dll": {}
  3618. },
  3619. "frameworkReferences": [
  3620. "Microsoft.WindowsDesktop.App.WPF"
  3621. ]
  3622. },
  3623. "SHJX.Service.WorkFlowEdit/1.0.0": {
  3624. "type": "project",
  3625. "compile": {
  3626. "bin/placeholder/SHJX.Service.WorkFlowEdit.dll": {}
  3627. },
  3628. "runtime": {
  3629. "bin/placeholder/SHJX.Service.WorkFlowEdit.dll": {}
  3630. }
  3631. },
  3632. "shjxCamera/1.0.0": {
  3633. "type": "project",
  3634. "framework": ".NETCoreApp,Version=v6.0",
  3635. "dependencies": {
  3636. "AForge": "2.2.5",
  3637. "Microsoft.Extensions.Logging": "7.0.0",
  3638. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  3639. "System.Diagnostics.DiagnosticSource": "7.0.2",
  3640. "System.Drawing.Common": "7.0.0"
  3641. },
  3642. "compile": {
  3643. "bin/placeholder/shjxCamera.dll": {}
  3644. },
  3645. "runtime": {
  3646. "bin/placeholder/shjxCamera.dll": {}
  3647. }
  3648. }
  3649. }
  3650. },
  3651. "libraries": {
  3652. "AForge/2.2.5": {
  3653. "sha512": "clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==",
  3654. "type": "package",
  3655. "path": "aforge/2.2.5",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "aforge.2.2.5.nupkg.sha512",
  3660. "aforge.nuspec",
  3661. "lib/AForge.dll",
  3662. "lib/AForge.xml"
  3663. ]
  3664. },
  3665. "Autofac/6.3.0": {
  3666. "sha512": "gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==",
  3667. "type": "package",
  3668. "path": "autofac/6.3.0",
  3669. "files": [
  3670. ".nupkg.metadata",
  3671. ".signature.p7s",
  3672. "autofac.6.3.0.nupkg.sha512",
  3673. "autofac.nuspec",
  3674. "icon.png",
  3675. "lib/net5.0/Autofac.dll",
  3676. "lib/net5.0/Autofac.pdb",
  3677. "lib/net5.0/Autofac.xml",
  3678. "lib/netstandard2.0/Autofac.dll",
  3679. "lib/netstandard2.0/Autofac.pdb",
  3680. "lib/netstandard2.0/Autofac.xml",
  3681. "lib/netstandard2.1/Autofac.dll",
  3682. "lib/netstandard2.1/Autofac.pdb",
  3683. "lib/netstandard2.1/Autofac.xml"
  3684. ]
  3685. },
  3686. "Autofac.Extensions.DependencyInjection/7.2.0": {
  3687. "sha512": "S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==",
  3688. "type": "package",
  3689. "path": "autofac.extensions.dependencyinjection/7.2.0",
  3690. "files": [
  3691. ".nupkg.metadata",
  3692. ".signature.p7s",
  3693. "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512",
  3694. "autofac.extensions.dependencyinjection.nuspec",
  3695. "icon.png",
  3696. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  3697. "lib/net5.0/Autofac.Extensions.DependencyInjection.pdb",
  3698. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  3699. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  3700. "lib/net6.0/Autofac.Extensions.DependencyInjection.pdb",
  3701. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  3702. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3703. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3704. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3705. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3706. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3707. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3708. ]
  3709. },
  3710. "Autofac.Extras.DynamicProxy/6.0.0": {
  3711. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3712. "type": "package",
  3713. "path": "autofac.extras.dynamicproxy/6.0.0",
  3714. "files": [
  3715. ".nupkg.metadata",
  3716. ".signature.p7s",
  3717. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3718. "autofac.extras.dynamicproxy.nuspec",
  3719. "icon.png",
  3720. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3721. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3722. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3723. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3724. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3725. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3726. ]
  3727. },
  3728. "BouncyCastle.NetCore/1.8.5": {
  3729. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3730. "type": "package",
  3731. "path": "bouncycastle.netcore/1.8.5",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3736. "bouncycastle.netcore.nuspec",
  3737. "lib/Mono/BouncyCastle.Crypto.dll",
  3738. "lib/Mono/BouncyCastle.Crypto.xml",
  3739. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3740. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3741. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3742. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3743. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3744. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3745. "lib/net20/BouncyCastle.Crypto.dll",
  3746. "lib/net20/BouncyCastle.Crypto.xml",
  3747. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3748. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3749. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3750. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3751. ]
  3752. },
  3753. "Castle.Core/4.4.1": {
  3754. "sha512": "zanbjWC0Y05gbx4eGXkzVycOQqVOFVeCjVsDSyuao9P4mtN1w3WxxTo193NGC7j3o2u3AJRswaoC6hEbnGACnQ==",
  3755. "type": "package",
  3756. "path": "castle.core/4.4.1",
  3757. "files": [
  3758. ".nupkg.metadata",
  3759. ".signature.p7s",
  3760. "ASL - Apache Software Foundation License.txt",
  3761. "CHANGELOG.md",
  3762. "LICENSE",
  3763. "castle.core.4.4.1.nupkg.sha512",
  3764. "castle.core.nuspec",
  3765. "lib/net35/Castle.Core.dll",
  3766. "lib/net35/Castle.Core.xml",
  3767. "lib/net40/Castle.Core.dll",
  3768. "lib/net40/Castle.Core.xml",
  3769. "lib/net45/Castle.Core.dll",
  3770. "lib/net45/Castle.Core.xml",
  3771. "lib/netstandard1.3/Castle.Core.dll",
  3772. "lib/netstandard1.3/Castle.Core.xml",
  3773. "lib/netstandard1.5/Castle.Core.dll",
  3774. "lib/netstandard1.5/Castle.Core.xml",
  3775. "readme.txt"
  3776. ]
  3777. },
  3778. "ControlzEx/4.4.0": {
  3779. "sha512": "pZ5z4hYWwE4R13UMCVs6vII//nL7hz+Nwn4oJlnsZJRGqJNy6Z9KnJiTZfly6lKFu0pMc1aWBZpx+VqFTQKP1Q==",
  3780. "type": "package",
  3781. "path": "controlzex/4.4.0",
  3782. "files": [
  3783. ".nupkg.metadata",
  3784. ".signature.p7s",
  3785. "controlzex.4.4.0.nupkg.sha512",
  3786. "controlzex.nuspec",
  3787. "lib/net45/ControlzEx.dll",
  3788. "lib/net45/ControlzEx.pdb",
  3789. "lib/net45/ControlzEx.xml",
  3790. "lib/net462/ControlzEx.dll",
  3791. "lib/net462/ControlzEx.pdb",
  3792. "lib/net462/ControlzEx.xml",
  3793. "lib/netcoreapp3.0/ControlzEx.dll",
  3794. "lib/netcoreapp3.0/ControlzEx.pdb",
  3795. "lib/netcoreapp3.0/ControlzEx.xml",
  3796. "lib/netcoreapp3.1/ControlzEx.dll",
  3797. "lib/netcoreapp3.1/ControlzEx.pdb",
  3798. "lib/netcoreapp3.1/ControlzEx.xml",
  3799. "logo-mini.png"
  3800. ]
  3801. },
  3802. "Dapper/2.0.123": {
  3803. "sha512": "RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==",
  3804. "type": "package",
  3805. "path": "dapper/2.0.123",
  3806. "files": [
  3807. ".nupkg.metadata",
  3808. ".signature.p7s",
  3809. "Dapper.png",
  3810. "dapper.2.0.123.nupkg.sha512",
  3811. "dapper.nuspec",
  3812. "lib/net461/Dapper.dll",
  3813. "lib/net461/Dapper.xml",
  3814. "lib/net5.0/Dapper.dll",
  3815. "lib/net5.0/Dapper.xml",
  3816. "lib/netstandard2.0/Dapper.dll",
  3817. "lib/netstandard2.0/Dapper.xml"
  3818. ]
  3819. },
  3820. "EaseDapper/0.1.4.18": {
  3821. "sha512": "6uznqEd+roUxWzZjc9POUosA0v+/u/jTC15l9P/PnN/nfFaty9DfAJhRu5+yMB5upCRbyQbpvdHbnVgMIJNpRg==",
  3822. "type": "package",
  3823. "path": "easedapper/0.1.4.18",
  3824. "files": [
  3825. ".nupkg.metadata",
  3826. ".signature.p7s",
  3827. "easedapper.0.1.4.18.nupkg.sha512",
  3828. "easedapper.nuspec",
  3829. "lib/netcoreapp3.1/EaseDapper.dll"
  3830. ]
  3831. },
  3832. "EaseScheduler/0.0.0.6": {
  3833. "sha512": "jIcjRoceKuhHWzYGYZRnj9ybN00VW0ITreUuNBV2zxxr7FVGOeSoBYBJXkCE8SdR1ya7xdUUBoFCv7K+j8/A8w==",
  3834. "type": "package",
  3835. "path": "easescheduler/0.0.0.6",
  3836. "files": [
  3837. ".nupkg.metadata",
  3838. ".signature.p7s",
  3839. "easescheduler.0.0.0.6.nupkg.sha512",
  3840. "easescheduler.nuspec",
  3841. "lib/net6.0/EaseScheduler.dll"
  3842. ]
  3843. },
  3844. "EPPlus/5.6.4": {
  3845. "sha512": "JpkTI30hZnNcXis/EEbVE0dflVQD8MXrEMEt2HGZsmdIKnMw1ezqeHlbCIpvyWGNjFLizpZKd3nMoFuJWtrNIw==",
  3846. "type": "package",
  3847. "path": "epplus/5.6.4",
  3848. "files": [
  3849. ".nupkg.metadata",
  3850. ".signature.p7s",
  3851. "EPPlusLogo.png",
  3852. "epplus.5.6.4.nupkg.sha512",
  3853. "epplus.nuspec",
  3854. "lib/net35/EPPlus.dll",
  3855. "lib/net35/EPPlus.xml",
  3856. "lib/net40/EPPlus.dll",
  3857. "lib/net40/EPPlus.xml",
  3858. "lib/net45/EPPlus.dll",
  3859. "lib/net45/EPPlus.xml",
  3860. "lib/net5.0/EPPlus.dll",
  3861. "lib/net5.0/EPPlus.xml",
  3862. "lib/netstandard2.0/EPPlus.dll",
  3863. "lib/netstandard2.0/EPPlus.xml",
  3864. "lib/netstandard2.1/EPPlus.dll",
  3865. "lib/netstandard2.1/EPPlus.xml",
  3866. "license.md",
  3867. "readme.txt"
  3868. ]
  3869. },
  3870. "Google.Protobuf/3.14.0": {
  3871. "sha512": "9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==",
  3872. "type": "package",
  3873. "path": "google.protobuf/3.14.0",
  3874. "files": [
  3875. ".nupkg.metadata",
  3876. ".signature.p7s",
  3877. "google.protobuf.3.14.0.nupkg.sha512",
  3878. "google.protobuf.nuspec",
  3879. "lib/net45/Google.Protobuf.dll",
  3880. "lib/net45/Google.Protobuf.pdb",
  3881. "lib/net45/Google.Protobuf.xml",
  3882. "lib/netstandard1.1/Google.Protobuf.dll",
  3883. "lib/netstandard1.1/Google.Protobuf.pdb",
  3884. "lib/netstandard1.1/Google.Protobuf.xml",
  3885. "lib/netstandard2.0/Google.Protobuf.dll",
  3886. "lib/netstandard2.0/Google.Protobuf.pdb",
  3887. "lib/netstandard2.0/Google.Protobuf.xml"
  3888. ]
  3889. },
  3890. "K4os.Compression.LZ4/1.2.6": {
  3891. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  3892. "type": "package",
  3893. "path": "k4os.compression.lz4/1.2.6",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  3898. "k4os.compression.lz4.nuspec",
  3899. "lib/net45/K4os.Compression.LZ4.dll",
  3900. "lib/net45/K4os.Compression.LZ4.xml",
  3901. "lib/net46/K4os.Compression.LZ4.dll",
  3902. "lib/net46/K4os.Compression.LZ4.xml",
  3903. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3904. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3905. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3906. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3907. ]
  3908. },
  3909. "K4os.Compression.LZ4.Streams/1.2.6": {
  3910. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  3911. "type": "package",
  3912. "path": "k4os.compression.lz4.streams/1.2.6",
  3913. "files": [
  3914. ".nupkg.metadata",
  3915. ".signature.p7s",
  3916. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  3917. "k4os.compression.lz4.streams.nuspec",
  3918. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3919. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3920. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3921. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3922. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3923. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3924. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3925. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  3926. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  3927. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  3928. ]
  3929. },
  3930. "K4os.Hash.xxHash/1.0.6": {
  3931. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3932. "type": "package",
  3933. "path": "k4os.hash.xxhash/1.0.6",
  3934. "files": [
  3935. ".nupkg.metadata",
  3936. ".signature.p7s",
  3937. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3938. "k4os.hash.xxhash.nuspec",
  3939. "lib/net45/K4os.Hash.xxHash.dll",
  3940. "lib/net45/K4os.Hash.xxHash.xml",
  3941. "lib/net46/K4os.Hash.xxHash.dll",
  3942. "lib/net46/K4os.Hash.xxHash.xml",
  3943. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3944. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3945. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3946. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3947. ]
  3948. },
  3949. "LiveCharts/0.9.7": {
  3950. "sha512": "p4xyBrUaNNfkWZSNsIle0r51cyVyFg0Yi0uBRZM5GQtdFiA/7guZHlffFyNUILIdux10Ch2hUaJpcZENVU9aaQ==",
  3951. "type": "package",
  3952. "path": "livecharts/0.9.7",
  3953. "files": [
  3954. ".nupkg.metadata",
  3955. ".signature.p7s",
  3956. "lib/net40/LiveCharts.dll",
  3957. "lib/net40/LiveCharts.pdb",
  3958. "lib/net40/LiveCharts.xml",
  3959. "lib/net45/LiveCharts.dll",
  3960. "lib/net45/LiveCharts.pdb",
  3961. "lib/net45/LiveCharts.xml",
  3962. "lib/portable-net45+win8+wp8/LiveCharts.XML",
  3963. "lib/portable-net45+win8+wp8/LiveCharts.dll",
  3964. "lib/portable-net45+win8+wp8/LiveCharts.pdb",
  3965. "livecharts.0.9.7.nupkg.sha512",
  3966. "livecharts.nuspec",
  3967. "readme.txt"
  3968. ]
  3969. },
  3970. "LiveCharts.Wpf/0.9.7": {
  3971. "sha512": "lv6YZoK0B4yWykMq5b9grZXtIbTj+OWu4sVN9GDpdgV6zffu64m4d5CW8KSjfSl9rB8VU649x1NZvhoU67hCDg==",
  3972. "type": "package",
  3973. "path": "livecharts.wpf/0.9.7",
  3974. "hasTools": true,
  3975. "files": [
  3976. ".nupkg.metadata",
  3977. ".signature.p7s",
  3978. "lib/net40/LiveCharts.Wpf.XML",
  3979. "lib/net40/LiveCharts.Wpf.dll",
  3980. "lib/net40/LiveCharts.Wpf.pdb",
  3981. "lib/net45/LiveCharts.Wpf.XML",
  3982. "lib/net45/LiveCharts.Wpf.dll",
  3983. "lib/net45/LiveCharts.Wpf.pdb",
  3984. "livecharts.wpf.0.9.7.nupkg.sha512",
  3985. "livecharts.wpf.nuspec",
  3986. "tools/install.ps1"
  3987. ]
  3988. },
  3989. "LiveCharts.Wpf.NetCore3/0.9.7": {
  3990. "sha512": "d0HkmjLi+HifeXyD+E14aOMPDRmwkkiqPYW4GDbUS8Z1m6eQPGCShcDcbWwP4tBoWzGEkkSsy+XSHvaoW50b0Q==",
  3991. "type": "package",
  3992. "path": "livecharts.wpf.netcore3/0.9.7",
  3993. "files": [
  3994. ".nupkg.metadata",
  3995. ".signature.p7s",
  3996. "lib/net40/LiveCharts.Wpf.dll",
  3997. "lib/net40/LiveCharts.dll",
  3998. "lib/net40/LiveCharts.xml",
  3999. "lib/netcoreapp3.1/LiveCharts.Wpf.dll",
  4000. "lib/netcoreapp3.1/LiveCharts.dll",
  4001. "lib/netcoreapp3.1/LiveCharts.xml",
  4002. "livecharts.wpf.netcore3.0.9.7.nupkg.sha512",
  4003. "livecharts.wpf.netcore3.nuspec"
  4004. ]
  4005. },
  4006. "MahApps.Metro/2.4.9": {
  4007. "sha512": "eMTkg6TBnCwHzszw7CP+pxsBeB4ZMsJFiTJJoifUVBysRyEenzzR+TKQJuMvvKK6KzvLxwHmJsFhi9o5p4vxhQ==",
  4008. "type": "package",
  4009. "path": "mahapps.metro/2.4.9",
  4010. "hasTools": true,
  4011. "files": [
  4012. ".nupkg.metadata",
  4013. ".signature.p7s",
  4014. "lib/net452/MahApps.Metro.dll",
  4015. "lib/net452/MahApps.Metro.pdb",
  4016. "lib/net452/MahApps.Metro.xml",
  4017. "lib/net452/de/MahApps.Metro.resources.dll",
  4018. "lib/net46/MahApps.Metro.dll",
  4019. "lib/net46/MahApps.Metro.pdb",
  4020. "lib/net46/MahApps.Metro.xml",
  4021. "lib/net46/de/MahApps.Metro.resources.dll",
  4022. "lib/net47/MahApps.Metro.dll",
  4023. "lib/net47/MahApps.Metro.pdb",
  4024. "lib/net47/MahApps.Metro.xml",
  4025. "lib/net47/de/MahApps.Metro.resources.dll",
  4026. "lib/netcoreapp3.0/MahApps.Metro.dll",
  4027. "lib/netcoreapp3.0/MahApps.Metro.pdb",
  4028. "lib/netcoreapp3.0/MahApps.Metro.xml",
  4029. "lib/netcoreapp3.0/de/MahApps.Metro.resources.dll",
  4030. "lib/netcoreapp3.1/MahApps.Metro.dll",
  4031. "lib/netcoreapp3.1/MahApps.Metro.pdb",
  4032. "lib/netcoreapp3.1/MahApps.Metro.xml",
  4033. "lib/netcoreapp3.1/de/MahApps.Metro.resources.dll",
  4034. "mahapps.metro.2.4.9.nupkg.sha512",
  4035. "mahapps.metro.logo.png",
  4036. "mahapps.metro.nuspec",
  4037. "tools/VisualStudioToolsManifest.xml"
  4038. ]
  4039. },
  4040. "Mapster/7.2.0": {
  4041. "sha512": "dIXWyCPHrzcQ7Aeblz/bKxsP9ZxGMMbHZTyywZS7/cGa9elPcJiTNeJ4OahzLtATzL13xC4MF8NRNcj49cCIng==",
  4042. "type": "package",
  4043. "path": "mapster/7.2.0",
  4044. "files": [
  4045. ".nupkg.metadata",
  4046. ".signature.p7s",
  4047. "icon.png",
  4048. "lib/net40/Mapster.dll",
  4049. "lib/net45/Mapster.dll",
  4050. "lib/netstandard1.3/Mapster.dll",
  4051. "lib/netstandard2.0/Mapster.dll",
  4052. "mapster.7.2.0.nupkg.sha512",
  4053. "mapster.nuspec"
  4054. ]
  4055. },
  4056. "Mapster.Core/1.2.0": {
  4057. "sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==",
  4058. "type": "package",
  4059. "path": "mapster.core/1.2.0",
  4060. "files": [
  4061. ".nupkg.metadata",
  4062. ".signature.p7s",
  4063. "icon.png",
  4064. "lib/net40/Mapster.Core.dll",
  4065. "lib/net45/Mapster.Core.dll",
  4066. "lib/netstandard1.3/Mapster.Core.dll",
  4067. "lib/netstandard2.0/Mapster.Core.dll",
  4068. "mapster.core.1.2.0.nupkg.sha512",
  4069. "mapster.core.nuspec"
  4070. ]
  4071. },
  4072. "Microsoft.CSharp/4.3.0": {
  4073. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  4074. "type": "package",
  4075. "path": "microsoft.csharp/4.3.0",
  4076. "files": [
  4077. ".nupkg.metadata",
  4078. ".signature.p7s",
  4079. "ThirdPartyNotices.txt",
  4080. "dotnet_library_license.txt",
  4081. "lib/MonoAndroid10/_._",
  4082. "lib/MonoTouch10/_._",
  4083. "lib/net45/_._",
  4084. "lib/netcore50/Microsoft.CSharp.dll",
  4085. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4086. "lib/portable-net45+win8+wp8+wpa81/_._",
  4087. "lib/win8/_._",
  4088. "lib/wp80/_._",
  4089. "lib/wpa81/_._",
  4090. "lib/xamarinios10/_._",
  4091. "lib/xamarinmac20/_._",
  4092. "lib/xamarintvos10/_._",
  4093. "lib/xamarinwatchos10/_._",
  4094. "microsoft.csharp.4.3.0.nupkg.sha512",
  4095. "microsoft.csharp.nuspec",
  4096. "ref/MonoAndroid10/_._",
  4097. "ref/MonoTouch10/_._",
  4098. "ref/net45/_._",
  4099. "ref/netcore50/Microsoft.CSharp.dll",
  4100. "ref/netcore50/Microsoft.CSharp.xml",
  4101. "ref/netcore50/de/Microsoft.CSharp.xml",
  4102. "ref/netcore50/es/Microsoft.CSharp.xml",
  4103. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4104. "ref/netcore50/it/Microsoft.CSharp.xml",
  4105. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4106. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4107. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4108. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4109. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4110. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4111. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4112. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4113. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4114. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4115. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4116. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4117. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4118. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4119. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4120. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4121. "ref/portable-net45+win8+wp8+wpa81/_._",
  4122. "ref/win8/_._",
  4123. "ref/wp80/_._",
  4124. "ref/wpa81/_._",
  4125. "ref/xamarinios10/_._",
  4126. "ref/xamarinmac20/_._",
  4127. "ref/xamarintvos10/_._",
  4128. "ref/xamarinwatchos10/_._"
  4129. ]
  4130. },
  4131. "Microsoft.Data.Sqlite.Core/6.0.1": {
  4132. "sha512": "Z8MIjWmzxUjcc2HKTKFHfo7jqqVeVftkigrojGY4zEN8OwjLgJNb5/BqW3J2FiIiCrPBDGNkiVlOERazGfLizg==",
  4133. "type": "package",
  4134. "path": "microsoft.data.sqlite.core/6.0.1",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "Icon.png",
  4139. "lib/net6.0/Microsoft.Data.Sqlite.dll",
  4140. "lib/net6.0/Microsoft.Data.Sqlite.xml",
  4141. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  4142. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  4143. "microsoft.data.sqlite.core.6.0.1.nupkg.sha512",
  4144. "microsoft.data.sqlite.core.nuspec"
  4145. ]
  4146. },
  4147. "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
  4148. "sha512": "2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
  4149. "type": "package",
  4150. "path": "microsoft.dotnet.platformabstractions/2.0.4",
  4151. "files": [
  4152. ".nupkg.metadata",
  4153. ".signature.p7s",
  4154. "LICENSE.TXT",
  4155. "THIRD-PARTY-NOTICES.TXT",
  4156. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  4157. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  4158. "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512",
  4159. "microsoft.dotnet.platformabstractions.nuspec"
  4160. ]
  4161. },
  4162. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  4163. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  4164. "type": "package",
  4165. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "Icon.png",
  4170. "LICENSE.TXT",
  4171. "THIRD-PARTY-NOTICES.TXT",
  4172. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4173. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4174. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4175. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4176. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  4177. "microsoft.extensions.caching.abstractions.nuspec",
  4178. "useSharedDesignerContext.txt"
  4179. ]
  4180. },
  4181. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  4182. "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==",
  4183. "type": "package",
  4184. "path": "microsoft.extensions.caching.memory/6.0.0",
  4185. "files": [
  4186. ".nupkg.metadata",
  4187. ".signature.p7s",
  4188. "Icon.png",
  4189. "LICENSE.TXT",
  4190. "THIRD-PARTY-NOTICES.TXT",
  4191. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4192. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4193. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4194. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4195. "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512",
  4196. "microsoft.extensions.caching.memory.nuspec",
  4197. "useSharedDesignerContext.txt"
  4198. ]
  4199. },
  4200. "Microsoft.Extensions.Configuration/5.0.0": {
  4201. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4202. "type": "package",
  4203. "path": "microsoft.extensions.configuration/5.0.0",
  4204. "files": [
  4205. ".nupkg.metadata",
  4206. ".signature.p7s",
  4207. "Icon.png",
  4208. "LICENSE.TXT",
  4209. "THIRD-PARTY-NOTICES.TXT",
  4210. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4211. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4212. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4213. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4214. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4215. "microsoft.extensions.configuration.nuspec",
  4216. "useSharedDesignerContext.txt",
  4217. "version.txt"
  4218. ]
  4219. },
  4220. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4221. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4222. "type": "package",
  4223. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4224. "files": [
  4225. ".nupkg.metadata",
  4226. ".signature.p7s",
  4227. "Icon.png",
  4228. "LICENSE.TXT",
  4229. "THIRD-PARTY-NOTICES.TXT",
  4230. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4231. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4232. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4233. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4234. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4235. "microsoft.extensions.configuration.abstractions.nuspec",
  4236. "useSharedDesignerContext.txt",
  4237. "version.txt"
  4238. ]
  4239. },
  4240. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4241. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4242. "type": "package",
  4243. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4244. "files": [
  4245. ".nupkg.metadata",
  4246. ".signature.p7s",
  4247. "Icon.png",
  4248. "LICENSE.TXT",
  4249. "THIRD-PARTY-NOTICES.TXT",
  4250. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4251. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4252. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4254. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4255. "microsoft.extensions.configuration.binder.nuspec",
  4256. "useSharedDesignerContext.txt",
  4257. "version.txt"
  4258. ]
  4259. },
  4260. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  4261. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  4262. "type": "package",
  4263. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  4264. "files": [
  4265. ".nupkg.metadata",
  4266. ".signature.p7s",
  4267. "Icon.png",
  4268. "LICENSE.TXT",
  4269. "THIRD-PARTY-NOTICES.TXT",
  4270. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  4271. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  4272. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  4273. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  4274. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  4275. "microsoft.extensions.configuration.commandline.nuspec",
  4276. "useSharedDesignerContext.txt",
  4277. "version.txt"
  4278. ]
  4279. },
  4280. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  4281. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  4282. "type": "package",
  4283. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  4284. "files": [
  4285. ".nupkg.metadata",
  4286. ".signature.p7s",
  4287. "Icon.png",
  4288. "LICENSE.TXT",
  4289. "THIRD-PARTY-NOTICES.TXT",
  4290. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4291. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4292. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4293. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4294. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  4295. "microsoft.extensions.configuration.environmentvariables.nuspec",
  4296. "useSharedDesignerContext.txt",
  4297. "version.txt"
  4298. ]
  4299. },
  4300. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4301. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4302. "type": "package",
  4303. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4304. "files": [
  4305. ".nupkg.metadata",
  4306. ".signature.p7s",
  4307. "Icon.png",
  4308. "LICENSE.TXT",
  4309. "THIRD-PARTY-NOTICES.TXT",
  4310. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4311. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4312. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4313. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4314. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4315. "microsoft.extensions.configuration.fileextensions.nuspec",
  4316. "useSharedDesignerContext.txt",
  4317. "version.txt"
  4318. ]
  4319. },
  4320. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4321. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4322. "type": "package",
  4323. "path": "microsoft.extensions.configuration.json/5.0.0",
  4324. "files": [
  4325. ".nupkg.metadata",
  4326. ".signature.p7s",
  4327. "Icon.png",
  4328. "LICENSE.TXT",
  4329. "THIRD-PARTY-NOTICES.TXT",
  4330. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4331. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4332. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4333. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4334. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4335. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4336. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4337. "microsoft.extensions.configuration.json.nuspec",
  4338. "useSharedDesignerContext.txt",
  4339. "version.txt"
  4340. ]
  4341. },
  4342. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  4343. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  4344. "type": "package",
  4345. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "Icon.png",
  4350. "LICENSE.TXT",
  4351. "THIRD-PARTY-NOTICES.TXT",
  4352. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  4353. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  4354. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4355. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4356. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4357. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4358. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  4359. "microsoft.extensions.configuration.usersecrets.nuspec",
  4360. "useSharedDesignerContext.txt",
  4361. "version.txt"
  4362. ]
  4363. },
  4364. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  4365. "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  4366. "type": "package",
  4367. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  4368. "files": [
  4369. ".nupkg.metadata",
  4370. ".signature.p7s",
  4371. "Icon.png",
  4372. "LICENSE.TXT",
  4373. "THIRD-PARTY-NOTICES.TXT",
  4374. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  4375. "buildTransitive/net462/_._",
  4376. "buildTransitive/net6.0/_._",
  4377. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4378. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  4379. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  4380. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  4381. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  4382. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  4383. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  4384. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4385. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4386. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4387. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4388. "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
  4389. "microsoft.extensions.dependencyinjection.nuspec",
  4390. "useSharedDesignerContext.txt"
  4391. ]
  4392. },
  4393. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  4394. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  4395. "type": "package",
  4396. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  4397. "files": [
  4398. ".nupkg.metadata",
  4399. ".signature.p7s",
  4400. "Icon.png",
  4401. "LICENSE.TXT",
  4402. "THIRD-PARTY-NOTICES.TXT",
  4403. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4404. "buildTransitive/net462/_._",
  4405. "buildTransitive/net6.0/_._",
  4406. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4407. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4408. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4409. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4410. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4411. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4412. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4413. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4414. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4415. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4416. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4417. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  4418. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4419. "useSharedDesignerContext.txt"
  4420. ]
  4421. },
  4422. "Microsoft.Extensions.DependencyModel/2.0.4": {
  4423. "sha512": "jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
  4424. "type": "package",
  4425. "path": "microsoft.extensions.dependencymodel/2.0.4",
  4426. "files": [
  4427. ".nupkg.metadata",
  4428. ".signature.p7s",
  4429. "LICENSE.TXT",
  4430. "THIRD-PARTY-NOTICES.TXT",
  4431. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4432. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4433. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  4434. "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512",
  4435. "microsoft.extensions.dependencymodel.nuspec"
  4436. ]
  4437. },
  4438. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4439. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4440. "type": "package",
  4441. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4442. "files": [
  4443. ".nupkg.metadata",
  4444. ".signature.p7s",
  4445. "Icon.png",
  4446. "LICENSE.TXT",
  4447. "THIRD-PARTY-NOTICES.TXT",
  4448. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4449. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4450. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4451. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4452. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4453. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4454. "useSharedDesignerContext.txt",
  4455. "version.txt"
  4456. ]
  4457. },
  4458. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4459. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4460. "type": "package",
  4461. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4462. "files": [
  4463. ".nupkg.metadata",
  4464. ".signature.p7s",
  4465. "Icon.png",
  4466. "LICENSE.TXT",
  4467. "THIRD-PARTY-NOTICES.TXT",
  4468. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4469. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4470. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4471. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4472. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4473. "microsoft.extensions.fileproviders.physical.nuspec",
  4474. "useSharedDesignerContext.txt",
  4475. "version.txt"
  4476. ]
  4477. },
  4478. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4479. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4480. "type": "package",
  4481. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4482. "files": [
  4483. ".nupkg.metadata",
  4484. ".signature.p7s",
  4485. "Icon.png",
  4486. "LICENSE.TXT",
  4487. "THIRD-PARTY-NOTICES.TXT",
  4488. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4489. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4490. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4491. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4492. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4493. "microsoft.extensions.filesystemglobbing.nuspec",
  4494. "useSharedDesignerContext.txt",
  4495. "version.txt"
  4496. ]
  4497. },
  4498. "Microsoft.Extensions.Hosting/5.0.0": {
  4499. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  4500. "type": "package",
  4501. "path": "microsoft.extensions.hosting/5.0.0",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "Icon.png",
  4506. "LICENSE.TXT",
  4507. "THIRD-PARTY-NOTICES.TXT",
  4508. "lib/net461/Microsoft.Extensions.Hosting.dll",
  4509. "lib/net461/Microsoft.Extensions.Hosting.xml",
  4510. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4511. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4512. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  4513. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  4514. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  4515. "microsoft.extensions.hosting.nuspec",
  4516. "useSharedDesignerContext.txt",
  4517. "version.txt"
  4518. ]
  4519. },
  4520. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  4521. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  4522. "type": "package",
  4523. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  4524. "files": [
  4525. ".nupkg.metadata",
  4526. ".signature.p7s",
  4527. "Icon.png",
  4528. "LICENSE.TXT",
  4529. "THIRD-PARTY-NOTICES.TXT",
  4530. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  4531. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  4532. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4533. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4534. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4535. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4536. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  4537. "microsoft.extensions.hosting.abstractions.nuspec",
  4538. "useSharedDesignerContext.txt",
  4539. "version.txt"
  4540. ]
  4541. },
  4542. "Microsoft.Extensions.Logging/7.0.0": {
  4543. "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  4544. "type": "package",
  4545. "path": "microsoft.extensions.logging/7.0.0",
  4546. "files": [
  4547. ".nupkg.metadata",
  4548. ".signature.p7s",
  4549. "Icon.png",
  4550. "LICENSE.TXT",
  4551. "THIRD-PARTY-NOTICES.TXT",
  4552. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  4553. "buildTransitive/net462/_._",
  4554. "buildTransitive/net6.0/_._",
  4555. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  4556. "lib/net462/Microsoft.Extensions.Logging.dll",
  4557. "lib/net462/Microsoft.Extensions.Logging.xml",
  4558. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  4559. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  4560. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  4561. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  4562. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4563. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4564. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4565. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4566. "microsoft.extensions.logging.7.0.0.nupkg.sha512",
  4567. "microsoft.extensions.logging.nuspec",
  4568. "useSharedDesignerContext.txt"
  4569. ]
  4570. },
  4571. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  4572. "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  4573. "type": "package",
  4574. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  4575. "files": [
  4576. ".nupkg.metadata",
  4577. ".signature.p7s",
  4578. "Icon.png",
  4579. "LICENSE.TXT",
  4580. "THIRD-PARTY-NOTICES.TXT",
  4581. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  4582. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4583. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4584. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4585. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4586. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4587. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4588. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4589. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4590. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4591. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4592. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4593. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4594. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4595. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  4596. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4597. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4598. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4599. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4600. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4601. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4602. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4603. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4604. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4605. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4606. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4607. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4608. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4609. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  4610. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4611. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4612. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4613. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4614. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4615. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4616. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4617. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4618. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4619. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4620. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4621. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4622. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4623. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  4624. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  4625. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4626. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4627. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4628. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  4629. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  4630. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4631. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4632. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4633. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4634. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4635. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4636. "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
  4637. "microsoft.extensions.logging.abstractions.nuspec",
  4638. "useSharedDesignerContext.txt"
  4639. ]
  4640. },
  4641. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  4642. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  4643. "type": "package",
  4644. "path": "microsoft.extensions.logging.configuration/5.0.0",
  4645. "files": [
  4646. ".nupkg.metadata",
  4647. ".signature.p7s",
  4648. "Icon.png",
  4649. "LICENSE.TXT",
  4650. "THIRD-PARTY-NOTICES.TXT",
  4651. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  4652. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  4653. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4654. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4655. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  4656. "microsoft.extensions.logging.configuration.nuspec",
  4657. "useSharedDesignerContext.txt",
  4658. "version.txt"
  4659. ]
  4660. },
  4661. "Microsoft.Extensions.Logging.Console/5.0.0": {
  4662. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  4663. "type": "package",
  4664. "path": "microsoft.extensions.logging.console/5.0.0",
  4665. "files": [
  4666. ".nupkg.metadata",
  4667. ".signature.p7s",
  4668. "Icon.png",
  4669. "LICENSE.TXT",
  4670. "THIRD-PARTY-NOTICES.TXT",
  4671. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  4672. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  4673. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  4674. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  4675. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4676. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4677. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  4678. "microsoft.extensions.logging.console.nuspec",
  4679. "useSharedDesignerContext.txt",
  4680. "version.txt"
  4681. ]
  4682. },
  4683. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  4684. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  4685. "type": "package",
  4686. "path": "microsoft.extensions.logging.debug/5.0.0",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "Icon.png",
  4691. "LICENSE.TXT",
  4692. "THIRD-PARTY-NOTICES.TXT",
  4693. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  4694. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  4695. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  4696. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  4697. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  4698. "microsoft.extensions.logging.debug.nuspec",
  4699. "useSharedDesignerContext.txt",
  4700. "version.txt"
  4701. ]
  4702. },
  4703. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  4704. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  4705. "type": "package",
  4706. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  4707. "files": [
  4708. ".nupkg.metadata",
  4709. ".signature.p7s",
  4710. "Icon.png",
  4711. "LICENSE.TXT",
  4712. "THIRD-PARTY-NOTICES.TXT",
  4713. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  4714. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  4715. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  4716. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  4717. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  4718. "microsoft.extensions.logging.eventlog.nuspec",
  4719. "useSharedDesignerContext.txt",
  4720. "version.txt"
  4721. ]
  4722. },
  4723. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  4724. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  4725. "type": "package",
  4726. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  4727. "files": [
  4728. ".nupkg.metadata",
  4729. ".signature.p7s",
  4730. "Icon.png",
  4731. "LICENSE.TXT",
  4732. "THIRD-PARTY-NOTICES.TXT",
  4733. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  4734. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  4735. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  4736. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  4737. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  4738. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  4739. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  4740. "microsoft.extensions.logging.eventsource.nuspec",
  4741. "useSharedDesignerContext.txt",
  4742. "version.txt"
  4743. ]
  4744. },
  4745. "Microsoft.Extensions.Options/7.0.0": {
  4746. "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  4747. "type": "package",
  4748. "path": "microsoft.extensions.options/7.0.0",
  4749. "files": [
  4750. ".nupkg.metadata",
  4751. ".signature.p7s",
  4752. "Icon.png",
  4753. "LICENSE.TXT",
  4754. "THIRD-PARTY-NOTICES.TXT",
  4755. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  4756. "buildTransitive/net462/_._",
  4757. "buildTransitive/net6.0/_._",
  4758. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  4759. "lib/net462/Microsoft.Extensions.Options.dll",
  4760. "lib/net462/Microsoft.Extensions.Options.xml",
  4761. "lib/net6.0/Microsoft.Extensions.Options.dll",
  4762. "lib/net6.0/Microsoft.Extensions.Options.xml",
  4763. "lib/net7.0/Microsoft.Extensions.Options.dll",
  4764. "lib/net7.0/Microsoft.Extensions.Options.xml",
  4765. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4766. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4767. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4768. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4769. "microsoft.extensions.options.7.0.0.nupkg.sha512",
  4770. "microsoft.extensions.options.nuspec",
  4771. "useSharedDesignerContext.txt"
  4772. ]
  4773. },
  4774. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  4775. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  4776. "type": "package",
  4777. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  4778. "files": [
  4779. ".nupkg.metadata",
  4780. ".signature.p7s",
  4781. "Icon.png",
  4782. "LICENSE.TXT",
  4783. "THIRD-PARTY-NOTICES.TXT",
  4784. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4785. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4786. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4787. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4788. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  4789. "microsoft.extensions.options.configurationextensions.nuspec",
  4790. "useSharedDesignerContext.txt",
  4791. "version.txt"
  4792. ]
  4793. },
  4794. "Microsoft.Extensions.Primitives/7.0.0": {
  4795. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  4796. "type": "package",
  4797. "path": "microsoft.extensions.primitives/7.0.0",
  4798. "files": [
  4799. ".nupkg.metadata",
  4800. ".signature.p7s",
  4801. "Icon.png",
  4802. "LICENSE.TXT",
  4803. "THIRD-PARTY-NOTICES.TXT",
  4804. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  4805. "buildTransitive/net462/_._",
  4806. "buildTransitive/net6.0/_._",
  4807. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4808. "lib/net462/Microsoft.Extensions.Primitives.dll",
  4809. "lib/net462/Microsoft.Extensions.Primitives.xml",
  4810. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  4811. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  4812. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  4813. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  4814. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4815. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4816. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  4817. "microsoft.extensions.primitives.nuspec",
  4818. "useSharedDesignerContext.txt"
  4819. ]
  4820. },
  4821. "Microsoft.IO.RecyclableMemoryStream/1.4.1": {
  4822. "sha512": "6A0fyZkxoUUj1dpXzLAWwI89YmKZ+ZSp1DCg+gN6llcXJwfYo1IIQZoCkuo6T7vUxw/w1CSk/Pl04NQ4fno+DQ==",
  4823. "type": "package",
  4824. "path": "microsoft.io.recyclablememorystream/1.4.1",
  4825. "files": [
  4826. ".nupkg.metadata",
  4827. ".signature.p7s",
  4828. "lib/net40/Microsoft.IO.RecyclableMemoryStream.dll",
  4829. "lib/net40/Microsoft.IO.RecyclableMemoryStream.xml",
  4830. "lib/net45/Microsoft.IO.RecyclableMemoryStream.dll",
  4831. "lib/net45/Microsoft.IO.RecyclableMemoryStream.xml",
  4832. "lib/net46/Microsoft.IO.RecyclableMemoryStream.dll",
  4833. "lib/net46/Microsoft.IO.RecyclableMemoryStream.xml",
  4834. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4835. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4836. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.dll",
  4837. "lib/netstandard1.4/Microsoft.IO.RecyclableMemoryStream.xml",
  4838. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  4839. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  4840. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  4841. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  4842. "microsoft.io.recyclablememorystream.1.4.1.nupkg.sha512",
  4843. "microsoft.io.recyclablememorystream.nuspec"
  4844. ]
  4845. },
  4846. "Microsoft.NETCore.Platforms/5.0.0": {
  4847. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4848. "type": "package",
  4849. "path": "microsoft.netcore.platforms/5.0.0",
  4850. "files": [
  4851. ".nupkg.metadata",
  4852. ".signature.p7s",
  4853. "Icon.png",
  4854. "LICENSE.TXT",
  4855. "THIRD-PARTY-NOTICES.TXT",
  4856. "lib/netstandard1.0/_._",
  4857. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4858. "microsoft.netcore.platforms.nuspec",
  4859. "runtime.json",
  4860. "useSharedDesignerContext.txt",
  4861. "version.txt"
  4862. ]
  4863. },
  4864. "Microsoft.NETCore.Targets/1.1.0": {
  4865. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4866. "type": "package",
  4867. "path": "microsoft.netcore.targets/1.1.0",
  4868. "files": [
  4869. ".nupkg.metadata",
  4870. ".signature.p7s",
  4871. "ThirdPartyNotices.txt",
  4872. "dotnet_library_license.txt",
  4873. "lib/netstandard1.0/_._",
  4874. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4875. "microsoft.netcore.targets.nuspec",
  4876. "runtime.json"
  4877. ]
  4878. },
  4879. "Microsoft.Win32.Primitives/4.3.0": {
  4880. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4881. "type": "package",
  4882. "path": "microsoft.win32.primitives/4.3.0",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. ".signature.p7s",
  4886. "ThirdPartyNotices.txt",
  4887. "dotnet_library_license.txt",
  4888. "lib/MonoAndroid10/_._",
  4889. "lib/MonoTouch10/_._",
  4890. "lib/net46/Microsoft.Win32.Primitives.dll",
  4891. "lib/xamarinios10/_._",
  4892. "lib/xamarinmac20/_._",
  4893. "lib/xamarintvos10/_._",
  4894. "lib/xamarinwatchos10/_._",
  4895. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4896. "microsoft.win32.primitives.nuspec",
  4897. "ref/MonoAndroid10/_._",
  4898. "ref/MonoTouch10/_._",
  4899. "ref/net46/Microsoft.Win32.Primitives.dll",
  4900. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4901. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4902. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4903. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4904. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4905. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4906. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4907. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4908. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4909. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4910. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4911. "ref/xamarinios10/_._",
  4912. "ref/xamarinmac20/_._",
  4913. "ref/xamarintvos10/_._",
  4914. "ref/xamarinwatchos10/_._"
  4915. ]
  4916. },
  4917. "Microsoft.Win32.Registry/5.0.0": {
  4918. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  4919. "type": "package",
  4920. "path": "microsoft.win32.registry/5.0.0",
  4921. "files": [
  4922. ".nupkg.metadata",
  4923. ".signature.p7s",
  4924. "Icon.png",
  4925. "LICENSE.TXT",
  4926. "THIRD-PARTY-NOTICES.TXT",
  4927. "lib/net46/Microsoft.Win32.Registry.dll",
  4928. "lib/net461/Microsoft.Win32.Registry.dll",
  4929. "lib/net461/Microsoft.Win32.Registry.xml",
  4930. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4931. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4932. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4933. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  4934. "microsoft.win32.registry.nuspec",
  4935. "ref/net46/Microsoft.Win32.Registry.dll",
  4936. "ref/net461/Microsoft.Win32.Registry.dll",
  4937. "ref/net461/Microsoft.Win32.Registry.xml",
  4938. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4939. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4940. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4941. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4942. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4943. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4944. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4945. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4946. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4947. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4948. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4949. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4950. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4951. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4952. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4953. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4954. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4955. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4956. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4957. "useSharedDesignerContext.txt",
  4958. "version.txt"
  4959. ]
  4960. },
  4961. "Microsoft.Win32.SystemEvents/8.0.0": {
  4962. "sha512": "9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==",
  4963. "type": "package",
  4964. "path": "microsoft.win32.systemevents/8.0.0",
  4965. "files": [
  4966. ".nupkg.metadata",
  4967. ".signature.p7s",
  4968. "Icon.png",
  4969. "LICENSE.TXT",
  4970. "THIRD-PARTY-NOTICES.TXT",
  4971. "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
  4972. "buildTransitive/net462/_._",
  4973. "buildTransitive/net6.0/_._",
  4974. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  4975. "lib/net462/Microsoft.Win32.SystemEvents.dll",
  4976. "lib/net462/Microsoft.Win32.SystemEvents.xml",
  4977. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4978. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4979. "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  4980. "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  4981. "lib/net8.0/Microsoft.Win32.SystemEvents.dll",
  4982. "lib/net8.0/Microsoft.Win32.SystemEvents.xml",
  4983. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4984. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4985. "microsoft.win32.systemevents.8.0.0.nupkg.sha512",
  4986. "microsoft.win32.systemevents.nuspec",
  4987. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  4988. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  4989. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
  4990. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
  4991. "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll",
  4992. "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.xml",
  4993. "useSharedDesignerContext.txt"
  4994. ]
  4995. },
  4996. "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
  4997. "sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
  4998. "type": "package",
  4999. "path": "microsoft.xaml.behaviors.wpf/1.1.31",
  5000. "hasTools": true,
  5001. "files": [
  5002. ".nupkg.metadata",
  5003. ".signature.p7s",
  5004. "lib/net45/Design/Microsoft.Xaml.Behaviors.Design.dll",
  5005. "lib/net45/Microsoft.Xaml.Behaviors.dll",
  5006. "lib/net45/Microsoft.Xaml.Behaviors.pdb",
  5007. "lib/net45/Microsoft.Xaml.Behaviors.xml",
  5008. "lib/net5.0-windows7.0/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  5009. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll",
  5010. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.pdb",
  5011. "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.xml",
  5012. "lib/netcoreapp3.1/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
  5013. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
  5014. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
  5015. "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
  5016. "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
  5017. "microsoft.xaml.behaviors.wpf.nuspec",
  5018. "tools/Install.ps1"
  5019. ]
  5020. },
  5021. "MySql.Data/8.0.27": {
  5022. "sha512": "Ef+sH12/nGAiF9yLZFkuXh7vtVvEPiLKyZNJiDk+VBULzLcXj0lmfU7qcmWNCSVX5n6zu5jMV+JaNf1C+a+T8g==",
  5023. "type": "package",
  5024. "path": "mysql.data/8.0.27",
  5025. "files": [
  5026. ".nupkg.metadata",
  5027. ".signature.p7s",
  5028. "lib/net452/MySql.Data.dll",
  5029. "lib/net452/MySql.Data.xml",
  5030. "lib/net452/Ubiety.Dns.Core.dll",
  5031. "lib/net452/ZstdNet.dll",
  5032. "lib/net48/MySql.Data.dll",
  5033. "lib/net48/MySql.Data.xml",
  5034. "lib/net48/Ubiety.Dns.Core.dll",
  5035. "lib/net48/ZstdNet.dll",
  5036. "lib/net5.0/MySql.Data.dll",
  5037. "lib/net5.0/MySql.Data.xml",
  5038. "lib/net5.0/Ubiety.Dns.Core.dll",
  5039. "lib/net5.0/ZstdNet.dll",
  5040. "lib/netstandard2.0/MySql.Data.dll",
  5041. "lib/netstandard2.0/MySql.Data.xml",
  5042. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5043. "lib/netstandard2.0/ZstdNet.dll",
  5044. "lib/netstandard2.1/MySql.Data.dll",
  5045. "lib/netstandard2.1/MySql.Data.xml",
  5046. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5047. "lib/netstandard2.1/ZstdNet.dll",
  5048. "mysql.data.8.0.27.nupkg.sha512",
  5049. "mysql.data.nuspec"
  5050. ]
  5051. },
  5052. "NETStandard.Library/1.6.1": {
  5053. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5054. "type": "package",
  5055. "path": "netstandard.library/1.6.1",
  5056. "files": [
  5057. ".nupkg.metadata",
  5058. ".signature.p7s",
  5059. "ThirdPartyNotices.txt",
  5060. "dotnet_library_license.txt",
  5061. "netstandard.library.1.6.1.nupkg.sha512",
  5062. "netstandard.library.nuspec"
  5063. ]
  5064. },
  5065. "Newtonsoft.Json/9.0.1": {
  5066. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  5067. "type": "package",
  5068. "path": "newtonsoft.json/9.0.1",
  5069. "hasTools": true,
  5070. "files": [
  5071. ".nupkg.metadata",
  5072. ".signature.p7s",
  5073. "lib/net20/Newtonsoft.Json.dll",
  5074. "lib/net20/Newtonsoft.Json.xml",
  5075. "lib/net35/Newtonsoft.Json.dll",
  5076. "lib/net35/Newtonsoft.Json.xml",
  5077. "lib/net40/Newtonsoft.Json.dll",
  5078. "lib/net40/Newtonsoft.Json.xml",
  5079. "lib/net45/Newtonsoft.Json.dll",
  5080. "lib/net45/Newtonsoft.Json.xml",
  5081. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5082. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5083. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5084. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5085. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5086. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5087. "newtonsoft.json.9.0.1.nupkg.sha512",
  5088. "newtonsoft.json.nuspec",
  5089. "tools/install.ps1"
  5090. ]
  5091. },
  5092. "NModbus4.NetCore/2.0.1": {
  5093. "sha512": "+utot9E9UOwBq3zSzHaDn9n+J4gpaGgAXYTTZyXIkdeUJlVrogXLQlz7H2za4GeJziGvanzGAl6n3fdyULMqSw==",
  5094. "type": "package",
  5095. "path": "nmodbus4.netcore/2.0.1",
  5096. "files": [
  5097. ".nupkg.metadata",
  5098. ".signature.p7s",
  5099. "LICENSE",
  5100. "README.md",
  5101. "lib/net6.0/Modbus.dll",
  5102. "nmodbus4.netcore.2.0.1.nupkg.sha512",
  5103. "nmodbus4.netcore.nuspec"
  5104. ]
  5105. },
  5106. "NPOI/2.5.6": {
  5107. "sha512": "xQfr09LZN3fr4rjSuV3li+WJUo2LiSg00IUtnomzrKO51zhhavyIgvbZ1f8c8zwHXvRbFc1JB4PNZpxqyxizWw==",
  5108. "type": "package",
  5109. "path": "npoi/2.5.6",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "LICENSE",
  5114. "Read Me.txt",
  5115. "lib/net45/NPOI.OOXML.XML",
  5116. "lib/net45/NPOI.OOXML.dll",
  5117. "lib/net45/NPOI.OOXML.pdb",
  5118. "lib/net45/NPOI.OpenXml4Net.XML",
  5119. "lib/net45/NPOI.OpenXml4Net.dll",
  5120. "lib/net45/NPOI.OpenXml4Net.pdb",
  5121. "lib/net45/NPOI.OpenXmlFormats.dll",
  5122. "lib/net45/NPOI.OpenXmlFormats.pdb",
  5123. "lib/net45/NPOI.XML",
  5124. "lib/net45/NPOI.dll",
  5125. "lib/net45/NPOI.pdb",
  5126. "lib/netstandard2.0/NPOI.OOXML.dll",
  5127. "lib/netstandard2.0/NPOI.OOXML.pdb",
  5128. "lib/netstandard2.0/NPOI.OOXML.xml",
  5129. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  5130. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  5131. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  5132. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  5133. "lib/netstandard2.0/NPOI.dll",
  5134. "lib/netstandard2.0/NPOI.pdb",
  5135. "lib/netstandard2.0/NPOI.xml",
  5136. "lib/netstandard2.1/NPOI.OOXML.dll",
  5137. "lib/netstandard2.1/NPOI.OOXML.pdb",
  5138. "lib/netstandard2.1/NPOI.OOXML.xml",
  5139. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  5140. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  5141. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  5142. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  5143. "lib/netstandard2.1/NPOI.dll",
  5144. "lib/netstandard2.1/NPOI.pdb",
  5145. "lib/netstandard2.1/NPOI.xml",
  5146. "logo/120_120.jpg",
  5147. "logo/240_240.png",
  5148. "logo/32_32.jpg",
  5149. "logo/60_60.jpg",
  5150. "npoi.2.5.6.nupkg.sha512",
  5151. "npoi.nuspec"
  5152. ]
  5153. },
  5154. "Panuon.UI.Silver/1.1.3.4": {
  5155. "sha512": "KURGslfhVctESnoAUAvzYntfVRMBjo2CBfwCx8jG/FAV1UZPRqU3CzxYDboZ93/5S4smFab+emLtCEAxpV0zAQ==",
  5156. "type": "package",
  5157. "path": "panuon.ui.silver/1.1.3.4",
  5158. "files": [
  5159. ".nupkg.metadata",
  5160. ".signature.p7s",
  5161. "lib/net40/Panuon.UI.Silver.dll",
  5162. "lib/net45/Panuon.UI.Silver.dll",
  5163. "lib/netcoreapp3.1/Panuon.UI.Silver.dll",
  5164. "panuon.ui.silver.1.1.3.4.nupkg.sha512",
  5165. "panuon.ui.silver.nuspec"
  5166. ]
  5167. },
  5168. "Polly/7.2.2": {
  5169. "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==",
  5170. "type": "package",
  5171. "path": "polly/7.2.2",
  5172. "files": [
  5173. ".nupkg.metadata",
  5174. ".signature.p7s",
  5175. "lib/net461/Polly.dll",
  5176. "lib/net461/Polly.pdb",
  5177. "lib/net461/Polly.xml",
  5178. "lib/net472/Polly.dll",
  5179. "lib/net472/Polly.pdb",
  5180. "lib/net472/Polly.xml",
  5181. "lib/netstandard1.1/Polly.dll",
  5182. "lib/netstandard1.1/Polly.pdb",
  5183. "lib/netstandard1.1/Polly.xml",
  5184. "lib/netstandard2.0/Polly.dll",
  5185. "lib/netstandard2.0/Polly.pdb",
  5186. "lib/netstandard2.0/Polly.xml",
  5187. "polly.7.2.2.nupkg.sha512",
  5188. "polly.nuspec"
  5189. ]
  5190. },
  5191. "Portable.BouncyCastle/1.8.9": {
  5192. "sha512": "wlJo8aFoeyl+W93iFXTK5ShzDYk5WBqoUPjTNEM0Xv9kn1H+4hmuCjF0/n8HLm9Nnp1aY6KNndWqQTNk+NGgRQ==",
  5193. "type": "package",
  5194. "path": "portable.bouncycastle/1.8.9",
  5195. "files": [
  5196. ".nupkg.metadata",
  5197. ".signature.p7s",
  5198. "lib/net40/BouncyCastle.Crypto.dll",
  5199. "lib/net40/BouncyCastle.Crypto.xml",
  5200. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  5201. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  5202. "portable.bouncycastle.1.8.9.nupkg.sha512",
  5203. "portable.bouncycastle.nuspec"
  5204. ]
  5205. },
  5206. "Prism.Core/8.1.97": {
  5207. "sha512": "EP5zrvWddw3eSq25Y7hHnDYdmLZEC2Z/gMrvmHzUuLbitmA1UaS7wQUlSwNr9Km8lzJNCvytFnaGBEFukHgoHg==",
  5208. "type": "package",
  5209. "path": "prism.core/8.1.97",
  5210. "files": [
  5211. ".nupkg.metadata",
  5212. ".signature.p7s",
  5213. "LICENSE",
  5214. "lib/net461/Prism.dll",
  5215. "lib/net461/Prism.pdb",
  5216. "lib/net461/Prism.xml",
  5217. "lib/net47/Prism.dll",
  5218. "lib/net47/Prism.pdb",
  5219. "lib/net47/Prism.xml",
  5220. "lib/net5.0/Prism.dll",
  5221. "lib/net5.0/Prism.pdb",
  5222. "lib/net5.0/Prism.xml",
  5223. "lib/netstandard2.0/Prism.dll",
  5224. "lib/netstandard2.0/Prism.pdb",
  5225. "lib/netstandard2.0/Prism.xml",
  5226. "prism-logo.png",
  5227. "prism.core.8.1.97.nupkg.sha512",
  5228. "prism.core.nuspec",
  5229. "readme.txt"
  5230. ]
  5231. },
  5232. "Prism.Unity/8.1.97": {
  5233. "sha512": "PDKDjC9HAFmCEoP8bgCwoGup0Lm0NyvYmN/kLbfO0Q4zmL/sZBDbP2KNC/UguXWOy0iH6fWiH9JYQYCGFZ4oBw==",
  5234. "type": "package",
  5235. "path": "prism.unity/8.1.97",
  5236. "files": [
  5237. ".nupkg.metadata",
  5238. ".signature.p7s",
  5239. "LICENSE",
  5240. "lib/net461/Prism.Unity.Wpf.dll",
  5241. "lib/net461/Prism.Unity.Wpf.pdb",
  5242. "lib/net461/Prism.Unity.Wpf.xml",
  5243. "lib/net47/Prism.Unity.Wpf.dll",
  5244. "lib/net47/Prism.Unity.Wpf.pdb",
  5245. "lib/net47/Prism.Unity.Wpf.xml",
  5246. "lib/net5.0-windows7.0/Prism.Unity.Wpf.dll",
  5247. "lib/net5.0-windows7.0/Prism.Unity.Wpf.pdb",
  5248. "lib/net5.0-windows7.0/Prism.Unity.Wpf.xml",
  5249. "lib/netcoreapp3.1/Prism.Unity.Wpf.dll",
  5250. "lib/netcoreapp3.1/Prism.Unity.Wpf.pdb",
  5251. "lib/netcoreapp3.1/Prism.Unity.Wpf.xml",
  5252. "prism-logo.png",
  5253. "prism.unity.8.1.97.nupkg.sha512",
  5254. "prism.unity.nuspec",
  5255. "readme.txt"
  5256. ]
  5257. },
  5258. "Prism.Wpf/8.1.97": {
  5259. "sha512": "ZEa6S1mK35h8/blyb0uR0ed3wkpHtPdhB4eniXINJnTiJMWlGl/As6SVlFFdOPD+qsEdWNYV3xgyQD/ue5cvBA==",
  5260. "type": "package",
  5261. "path": "prism.wpf/8.1.97",
  5262. "files": [
  5263. ".nupkg.metadata",
  5264. ".signature.p7s",
  5265. "LICENSE",
  5266. "lib/net461/Prism.Wpf.dll",
  5267. "lib/net461/Prism.Wpf.pdb",
  5268. "lib/net461/Prism.Wpf.xml",
  5269. "lib/net47/Prism.Wpf.dll",
  5270. "lib/net47/Prism.Wpf.pdb",
  5271. "lib/net47/Prism.Wpf.xml",
  5272. "lib/net5.0-windows7.0/Prism.Wpf.dll",
  5273. "lib/net5.0-windows7.0/Prism.Wpf.pdb",
  5274. "lib/net5.0-windows7.0/Prism.Wpf.xml",
  5275. "lib/netcoreapp3.1/Prism.Wpf.dll",
  5276. "lib/netcoreapp3.1/Prism.Wpf.pdb",
  5277. "lib/netcoreapp3.1/Prism.Wpf.xml",
  5278. "prism-logo.png",
  5279. "prism.wpf.8.1.97.nupkg.sha512",
  5280. "prism.wpf.nuspec",
  5281. "readme.txt"
  5282. ]
  5283. },
  5284. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5285. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  5286. "type": "package",
  5287. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5288. "files": [
  5289. ".nupkg.metadata",
  5290. ".signature.p7s",
  5291. "ThirdPartyNotices.txt",
  5292. "dotnet_library_license.txt",
  5293. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5294. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5295. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5296. ]
  5297. },
  5298. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5299. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  5300. "type": "package",
  5301. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5302. "files": [
  5303. ".nupkg.metadata",
  5304. ".signature.p7s",
  5305. "ThirdPartyNotices.txt",
  5306. "dotnet_library_license.txt",
  5307. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5308. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5309. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5310. ]
  5311. },
  5312. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5313. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  5314. "type": "package",
  5315. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5316. "files": [
  5317. ".nupkg.metadata",
  5318. ".signature.p7s",
  5319. "ThirdPartyNotices.txt",
  5320. "dotnet_library_license.txt",
  5321. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5322. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5323. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5324. ]
  5325. },
  5326. "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": {
  5327. "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==",
  5328. "type": "package",
  5329. "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0",
  5330. "files": [
  5331. ".nupkg.metadata",
  5332. ".signature.p7s",
  5333. "Icon.png",
  5334. "LICENSE.TXT",
  5335. "THIRD-PARTY-NOTICES.TXT",
  5336. "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5337. "runtime.linux-arm.runtime.native.system.io.ports.nuspec",
  5338. "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so",
  5339. "useSharedDesignerContext.txt"
  5340. ]
  5341. },
  5342. "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": {
  5343. "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==",
  5344. "type": "package",
  5345. "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0",
  5346. "files": [
  5347. ".nupkg.metadata",
  5348. ".signature.p7s",
  5349. "Icon.png",
  5350. "LICENSE.TXT",
  5351. "THIRD-PARTY-NOTICES.TXT",
  5352. "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5353. "runtime.linux-arm64.runtime.native.system.io.ports.nuspec",
  5354. "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so",
  5355. "useSharedDesignerContext.txt"
  5356. ]
  5357. },
  5358. "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": {
  5359. "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==",
  5360. "type": "package",
  5361. "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0",
  5362. "files": [
  5363. ".nupkg.metadata",
  5364. ".signature.p7s",
  5365. "Icon.png",
  5366. "LICENSE.TXT",
  5367. "THIRD-PARTY-NOTICES.TXT",
  5368. "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5369. "runtime.linux-x64.runtime.native.system.io.ports.nuspec",
  5370. "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so",
  5371. "useSharedDesignerContext.txt"
  5372. ]
  5373. },
  5374. "runtime.native.System/4.3.0": {
  5375. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5376. "type": "package",
  5377. "path": "runtime.native.system/4.3.0",
  5378. "files": [
  5379. ".nupkg.metadata",
  5380. ".signature.p7s",
  5381. "ThirdPartyNotices.txt",
  5382. "dotnet_library_license.txt",
  5383. "lib/netstandard1.0/_._",
  5384. "runtime.native.system.4.3.0.nupkg.sha512",
  5385. "runtime.native.system.nuspec"
  5386. ]
  5387. },
  5388. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  5389. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  5390. "type": "package",
  5391. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  5392. "files": [
  5393. ".nupkg.metadata",
  5394. ".signature.p7s",
  5395. "LICENSE.TXT",
  5396. "THIRD-PARTY-NOTICES.TXT",
  5397. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  5398. "runtime.native.system.data.sqlclient.sni.nuspec",
  5399. "useSharedDesignerContext.txt",
  5400. "version.txt"
  5401. ]
  5402. },
  5403. "runtime.native.System.IO.Compression/4.3.0": {
  5404. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5405. "type": "package",
  5406. "path": "runtime.native.system.io.compression/4.3.0",
  5407. "files": [
  5408. ".nupkg.metadata",
  5409. ".signature.p7s",
  5410. "ThirdPartyNotices.txt",
  5411. "dotnet_library_license.txt",
  5412. "lib/netstandard1.0/_._",
  5413. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5414. "runtime.native.system.io.compression.nuspec"
  5415. ]
  5416. },
  5417. "runtime.native.System.IO.Ports/6.0.0": {
  5418. "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==",
  5419. "type": "package",
  5420. "path": "runtime.native.system.io.ports/6.0.0",
  5421. "files": [
  5422. ".nupkg.metadata",
  5423. ".signature.p7s",
  5424. "Icon.png",
  5425. "LICENSE.TXT",
  5426. "THIRD-PARTY-NOTICES.TXT",
  5427. "runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5428. "runtime.native.system.io.ports.nuspec",
  5429. "useSharedDesignerContext.txt"
  5430. ]
  5431. },
  5432. "runtime.native.System.Net.Http/4.3.0": {
  5433. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5434. "type": "package",
  5435. "path": "runtime.native.system.net.http/4.3.0",
  5436. "files": [
  5437. ".nupkg.metadata",
  5438. ".signature.p7s",
  5439. "ThirdPartyNotices.txt",
  5440. "dotnet_library_license.txt",
  5441. "lib/netstandard1.0/_._",
  5442. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5443. "runtime.native.system.net.http.nuspec"
  5444. ]
  5445. },
  5446. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5447. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5448. "type": "package",
  5449. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5450. "files": [
  5451. ".nupkg.metadata",
  5452. ".signature.p7s",
  5453. "ThirdPartyNotices.txt",
  5454. "dotnet_library_license.txt",
  5455. "lib/netstandard1.0/_._",
  5456. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5457. "runtime.native.system.security.cryptography.apple.nuspec"
  5458. ]
  5459. },
  5460. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5461. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  5462. "type": "package",
  5463. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  5464. "files": [
  5465. ".nupkg.metadata",
  5466. ".signature.p7s",
  5467. "ThirdPartyNotices.txt",
  5468. "dotnet_library_license.txt",
  5469. "lib/netstandard1.0/_._",
  5470. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5471. "runtime.native.system.security.cryptography.openssl.nuspec"
  5472. ]
  5473. },
  5474. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5475. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  5476. "type": "package",
  5477. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "ThirdPartyNotices.txt",
  5482. "dotnet_library_license.txt",
  5483. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5484. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5485. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5486. ]
  5487. },
  5488. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5489. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  5490. "type": "package",
  5491. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5492. "files": [
  5493. ".nupkg.metadata",
  5494. ".signature.p7s",
  5495. "ThirdPartyNotices.txt",
  5496. "dotnet_library_license.txt",
  5497. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5498. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5499. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5500. ]
  5501. },
  5502. "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": {
  5503. "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==",
  5504. "type": "package",
  5505. "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0",
  5506. "files": [
  5507. ".nupkg.metadata",
  5508. ".signature.p7s",
  5509. "Icon.png",
  5510. "LICENSE.TXT",
  5511. "THIRD-PARTY-NOTICES.TXT",
  5512. "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5513. "runtime.osx-arm64.runtime.native.system.io.ports.nuspec",
  5514. "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib",
  5515. "useSharedDesignerContext.txt"
  5516. ]
  5517. },
  5518. "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": {
  5519. "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==",
  5520. "type": "package",
  5521. "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0",
  5522. "files": [
  5523. ".nupkg.metadata",
  5524. ".signature.p7s",
  5525. "Icon.png",
  5526. "LICENSE.TXT",
  5527. "THIRD-PARTY-NOTICES.TXT",
  5528. "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
  5529. "runtime.osx-x64.runtime.native.system.io.ports.nuspec",
  5530. "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib",
  5531. "useSharedDesignerContext.txt"
  5532. ]
  5533. },
  5534. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5535. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5536. "type": "package",
  5537. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5538. "files": [
  5539. ".nupkg.metadata",
  5540. ".signature.p7s",
  5541. "ThirdPartyNotices.txt",
  5542. "dotnet_library_license.txt",
  5543. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5544. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5545. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5546. ]
  5547. },
  5548. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5549. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  5550. "type": "package",
  5551. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5552. "files": [
  5553. ".nupkg.metadata",
  5554. ".signature.p7s",
  5555. "ThirdPartyNotices.txt",
  5556. "dotnet_library_license.txt",
  5557. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5558. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5559. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5560. ]
  5561. },
  5562. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5563. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  5564. "type": "package",
  5565. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5566. "files": [
  5567. ".nupkg.metadata",
  5568. ".signature.p7s",
  5569. "ThirdPartyNotices.txt",
  5570. "dotnet_library_license.txt",
  5571. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5572. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5573. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5574. ]
  5575. },
  5576. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5577. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  5578. "type": "package",
  5579. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5580. "files": [
  5581. ".nupkg.metadata",
  5582. ".signature.p7s",
  5583. "ThirdPartyNotices.txt",
  5584. "dotnet_library_license.txt",
  5585. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5586. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5587. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5588. ]
  5589. },
  5590. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5591. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  5592. "type": "package",
  5593. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5594. "files": [
  5595. ".nupkg.metadata",
  5596. ".signature.p7s",
  5597. "ThirdPartyNotices.txt",
  5598. "dotnet_library_license.txt",
  5599. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5600. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5601. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5602. ]
  5603. },
  5604. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5605. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  5606. "type": "package",
  5607. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5608. "files": [
  5609. ".nupkg.metadata",
  5610. ".signature.p7s",
  5611. "ThirdPartyNotices.txt",
  5612. "dotnet_library_license.txt",
  5613. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5614. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5615. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5616. ]
  5617. },
  5618. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5619. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  5620. "type": "package",
  5621. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  5622. "files": [
  5623. ".nupkg.metadata",
  5624. ".signature.p7s",
  5625. "ThirdPartyNotices.txt",
  5626. "dotnet_library_license.txt",
  5627. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5628. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  5629. "runtimes/win-arm64/native/sni.dll",
  5630. "useSharedDesignerContext.txt",
  5631. "version.txt"
  5632. ]
  5633. },
  5634. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5635. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  5636. "type": "package",
  5637. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  5638. "files": [
  5639. ".nupkg.metadata",
  5640. ".signature.p7s",
  5641. "ThirdPartyNotices.txt",
  5642. "dotnet_library_license.txt",
  5643. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5644. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  5645. "runtimes/win-x64/native/sni.dll",
  5646. "useSharedDesignerContext.txt",
  5647. "version.txt"
  5648. ]
  5649. },
  5650. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  5651. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  5652. "type": "package",
  5653. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  5654. "files": [
  5655. ".nupkg.metadata",
  5656. ".signature.p7s",
  5657. "ThirdPartyNotices.txt",
  5658. "dotnet_library_license.txt",
  5659. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  5660. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  5661. "runtimes/win-x86/native/sni.dll",
  5662. "useSharedDesignerContext.txt",
  5663. "version.txt"
  5664. ]
  5665. },
  5666. "Serilog/2.10.0": {
  5667. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  5668. "type": "package",
  5669. "path": "serilog/2.10.0",
  5670. "files": [
  5671. ".nupkg.metadata",
  5672. ".signature.p7s",
  5673. "icon.png",
  5674. "lib/net45/Serilog.dll",
  5675. "lib/net45/Serilog.xml",
  5676. "lib/net46/Serilog.dll",
  5677. "lib/net46/Serilog.xml",
  5678. "lib/netstandard1.0/Serilog.dll",
  5679. "lib/netstandard1.0/Serilog.xml",
  5680. "lib/netstandard1.3/Serilog.dll",
  5681. "lib/netstandard1.3/Serilog.xml",
  5682. "lib/netstandard2.0/Serilog.dll",
  5683. "lib/netstandard2.0/Serilog.xml",
  5684. "lib/netstandard2.1/Serilog.dll",
  5685. "lib/netstandard2.1/Serilog.xml",
  5686. "serilog.2.10.0.nupkg.sha512",
  5687. "serilog.nuspec"
  5688. ]
  5689. },
  5690. "Serilog.Enrichers.Thread/3.1.0": {
  5691. "sha512": "85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
  5692. "type": "package",
  5693. "path": "serilog.enrichers.thread/3.1.0",
  5694. "files": [
  5695. ".nupkg.metadata",
  5696. ".signature.p7s",
  5697. "lib/net45/Serilog.Enrichers.Thread.dll",
  5698. "lib/net45/Serilog.Enrichers.Thread.xml",
  5699. "lib/netstandard1.0/Serilog.Enrichers.Thread.dll",
  5700. "lib/netstandard1.0/Serilog.Enrichers.Thread.xml",
  5701. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll",
  5702. "lib/netstandard2.0/Serilog.Enrichers.Thread.xml",
  5703. "serilog.enrichers.thread.3.1.0.nupkg.sha512",
  5704. "serilog.enrichers.thread.nuspec"
  5705. ]
  5706. },
  5707. "Serilog.Extensions.Logging/3.0.1": {
  5708. "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
  5709. "type": "package",
  5710. "path": "serilog.extensions.logging/3.0.1",
  5711. "files": [
  5712. ".nupkg.metadata",
  5713. ".signature.p7s",
  5714. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  5715. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  5716. "serilog.extensions.logging.3.0.1.nupkg.sha512",
  5717. "serilog.extensions.logging.nuspec"
  5718. ]
  5719. },
  5720. "Serilog.Formatting.Compact/1.1.0": {
  5721. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  5722. "type": "package",
  5723. "path": "serilog.formatting.compact/1.1.0",
  5724. "files": [
  5725. ".nupkg.metadata",
  5726. ".signature.p7s",
  5727. "lib/net452/Serilog.Formatting.Compact.dll",
  5728. "lib/net452/Serilog.Formatting.Compact.xml",
  5729. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  5730. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  5731. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  5732. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  5733. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  5734. "serilog.formatting.compact.nuspec"
  5735. ]
  5736. },
  5737. "Serilog.Settings.Configuration/3.1.0": {
  5738. "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
  5739. "type": "package",
  5740. "path": "serilog.settings.configuration/3.1.0",
  5741. "files": [
  5742. ".nupkg.metadata",
  5743. ".signature.p7s",
  5744. "lib/net451/Serilog.Settings.Configuration.dll",
  5745. "lib/net451/Serilog.Settings.Configuration.xml",
  5746. "lib/net461/Serilog.Settings.Configuration.dll",
  5747. "lib/net461/Serilog.Settings.Configuration.xml",
  5748. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  5749. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  5750. "serilog.settings.configuration.3.1.0.nupkg.sha512",
  5751. "serilog.settings.configuration.nuspec"
  5752. ]
  5753. },
  5754. "Serilog.Sinks.Console/3.1.1": {
  5755. "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
  5756. "type": "package",
  5757. "path": "serilog.sinks.console/3.1.1",
  5758. "files": [
  5759. ".nupkg.metadata",
  5760. ".signature.p7s",
  5761. "lib/net45/Serilog.Sinks.Console.dll",
  5762. "lib/net45/Serilog.Sinks.Console.xml",
  5763. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll",
  5764. "lib/netcoreapp1.1/Serilog.Sinks.Console.xml",
  5765. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  5766. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  5767. "serilog.sinks.console.3.1.1.nupkg.sha512",
  5768. "serilog.sinks.console.nuspec"
  5769. ]
  5770. },
  5771. "Serilog.Sinks.File/4.1.0": {
  5772. "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
  5773. "type": "package",
  5774. "path": "serilog.sinks.file/4.1.0",
  5775. "files": [
  5776. ".nupkg.metadata",
  5777. ".signature.p7s",
  5778. "lib/net45/Serilog.Sinks.File.dll",
  5779. "lib/net45/Serilog.Sinks.File.pdb",
  5780. "lib/net45/Serilog.Sinks.File.xml",
  5781. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  5782. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  5783. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  5784. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  5785. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  5786. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  5787. "serilog.sinks.file.4.1.0.nupkg.sha512",
  5788. "serilog.sinks.file.nuspec"
  5789. ]
  5790. },
  5791. "SharpZipLib/1.3.3": {
  5792. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  5793. "type": "package",
  5794. "path": "sharpziplib/1.3.3",
  5795. "files": [
  5796. ".nupkg.metadata",
  5797. ".signature.p7s",
  5798. "images/sharpziplib-nuget-256x256.png",
  5799. "lib/net45/ICSharpCode.SharpZipLib.dll",
  5800. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  5801. "lib/net45/ICSharpCode.SharpZipLib.xml",
  5802. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  5803. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  5804. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  5805. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  5806. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  5807. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  5808. "sharpziplib.1.3.3.nupkg.sha512",
  5809. "sharpziplib.nuspec"
  5810. ]
  5811. },
  5812. "SQLitePCLRaw.core/2.0.6": {
  5813. "sha512": "Vh8n0dTvwXkCGur2WqQTITvk4BUO8i8h9ucSx3wwuaej3s2S6ZC0R7vqCTf9TfS/I4QkXO6g3W2YQIRFkOcijA==",
  5814. "type": "package",
  5815. "path": "sqlitepclraw.core/2.0.6",
  5816. "files": [
  5817. ".nupkg.metadata",
  5818. ".signature.p7s",
  5819. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  5820. "sqlitepclraw.core.2.0.6.nupkg.sha512",
  5821. "sqlitepclraw.core.nuspec"
  5822. ]
  5823. },
  5824. "Stub.System.Data.SQLite.Core.NetStandard/1.0.114": {
  5825. "sha512": "ZQU6AdbxWAqS8sEhrF+PhOV5I5mHx04YI3uu/c1gTNs86wPu6F3/D/kcMyArg2hm3G2U1/8aMGFICMC9iBzJTA==",
  5826. "type": "package",
  5827. "path": "stub.system.data.sqlite.core.netstandard/1.0.114",
  5828. "files": [
  5829. ".nupkg.metadata",
  5830. ".signature.p7s",
  5831. "lib/netstandard2.0/System.Data.SQLite.dll",
  5832. "lib/netstandard2.0/System.Data.SQLite.dll.altconfig",
  5833. "lib/netstandard2.0/System.Data.SQLite.xml",
  5834. "lib/netstandard2.1/System.Data.SQLite.dll",
  5835. "lib/netstandard2.1/System.Data.SQLite.dll.altconfig",
  5836. "lib/netstandard2.1/System.Data.SQLite.xml",
  5837. "runtimes/linux-x64/native/SQLite.Interop.dll",
  5838. "runtimes/osx-x64/native/SQLite.Interop.dll",
  5839. "runtimes/win-x64/native/SQLite.Interop.dll",
  5840. "runtimes/win-x86/native/SQLite.Interop.dll",
  5841. "stub.system.data.sqlite.core.netstandard.1.0.114.nupkg.sha512",
  5842. "stub.system.data.sqlite.core.netstandard.nuspec"
  5843. ]
  5844. },
  5845. "System.AppContext/4.3.0": {
  5846. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5847. "type": "package",
  5848. "path": "system.appcontext/4.3.0",
  5849. "files": [
  5850. ".nupkg.metadata",
  5851. ".signature.p7s",
  5852. "ThirdPartyNotices.txt",
  5853. "dotnet_library_license.txt",
  5854. "lib/MonoAndroid10/_._",
  5855. "lib/MonoTouch10/_._",
  5856. "lib/net46/System.AppContext.dll",
  5857. "lib/net463/System.AppContext.dll",
  5858. "lib/netcore50/System.AppContext.dll",
  5859. "lib/netstandard1.6/System.AppContext.dll",
  5860. "lib/xamarinios10/_._",
  5861. "lib/xamarinmac20/_._",
  5862. "lib/xamarintvos10/_._",
  5863. "lib/xamarinwatchos10/_._",
  5864. "ref/MonoAndroid10/_._",
  5865. "ref/MonoTouch10/_._",
  5866. "ref/net46/System.AppContext.dll",
  5867. "ref/net463/System.AppContext.dll",
  5868. "ref/netstandard/_._",
  5869. "ref/netstandard1.3/System.AppContext.dll",
  5870. "ref/netstandard1.3/System.AppContext.xml",
  5871. "ref/netstandard1.3/de/System.AppContext.xml",
  5872. "ref/netstandard1.3/es/System.AppContext.xml",
  5873. "ref/netstandard1.3/fr/System.AppContext.xml",
  5874. "ref/netstandard1.3/it/System.AppContext.xml",
  5875. "ref/netstandard1.3/ja/System.AppContext.xml",
  5876. "ref/netstandard1.3/ko/System.AppContext.xml",
  5877. "ref/netstandard1.3/ru/System.AppContext.xml",
  5878. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5879. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5880. "ref/netstandard1.6/System.AppContext.dll",
  5881. "ref/netstandard1.6/System.AppContext.xml",
  5882. "ref/netstandard1.6/de/System.AppContext.xml",
  5883. "ref/netstandard1.6/es/System.AppContext.xml",
  5884. "ref/netstandard1.6/fr/System.AppContext.xml",
  5885. "ref/netstandard1.6/it/System.AppContext.xml",
  5886. "ref/netstandard1.6/ja/System.AppContext.xml",
  5887. "ref/netstandard1.6/ko/System.AppContext.xml",
  5888. "ref/netstandard1.6/ru/System.AppContext.xml",
  5889. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5890. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5891. "ref/xamarinios10/_._",
  5892. "ref/xamarinmac20/_._",
  5893. "ref/xamarintvos10/_._",
  5894. "ref/xamarinwatchos10/_._",
  5895. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5896. "system.appcontext.4.3.0.nupkg.sha512",
  5897. "system.appcontext.nuspec"
  5898. ]
  5899. },
  5900. "System.Buffers/4.5.1": {
  5901. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5902. "type": "package",
  5903. "path": "system.buffers/4.5.1",
  5904. "files": [
  5905. ".nupkg.metadata",
  5906. ".signature.p7s",
  5907. "LICENSE.TXT",
  5908. "THIRD-PARTY-NOTICES.TXT",
  5909. "lib/net461/System.Buffers.dll",
  5910. "lib/net461/System.Buffers.xml",
  5911. "lib/netcoreapp2.0/_._",
  5912. "lib/netstandard1.1/System.Buffers.dll",
  5913. "lib/netstandard1.1/System.Buffers.xml",
  5914. "lib/netstandard2.0/System.Buffers.dll",
  5915. "lib/netstandard2.0/System.Buffers.xml",
  5916. "lib/uap10.0.16299/_._",
  5917. "ref/net45/System.Buffers.dll",
  5918. "ref/net45/System.Buffers.xml",
  5919. "ref/netcoreapp2.0/_._",
  5920. "ref/netstandard1.1/System.Buffers.dll",
  5921. "ref/netstandard1.1/System.Buffers.xml",
  5922. "ref/netstandard2.0/System.Buffers.dll",
  5923. "ref/netstandard2.0/System.Buffers.xml",
  5924. "ref/uap10.0.16299/_._",
  5925. "system.buffers.4.5.1.nupkg.sha512",
  5926. "system.buffers.nuspec",
  5927. "useSharedDesignerContext.txt",
  5928. "version.txt"
  5929. ]
  5930. },
  5931. "System.Collections/4.3.0": {
  5932. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5933. "type": "package",
  5934. "path": "system.collections/4.3.0",
  5935. "files": [
  5936. ".nupkg.metadata",
  5937. ".signature.p7s",
  5938. "ThirdPartyNotices.txt",
  5939. "dotnet_library_license.txt",
  5940. "lib/MonoAndroid10/_._",
  5941. "lib/MonoTouch10/_._",
  5942. "lib/net45/_._",
  5943. "lib/portable-net45+win8+wp8+wpa81/_._",
  5944. "lib/win8/_._",
  5945. "lib/wp80/_._",
  5946. "lib/wpa81/_._",
  5947. "lib/xamarinios10/_._",
  5948. "lib/xamarinmac20/_._",
  5949. "lib/xamarintvos10/_._",
  5950. "lib/xamarinwatchos10/_._",
  5951. "ref/MonoAndroid10/_._",
  5952. "ref/MonoTouch10/_._",
  5953. "ref/net45/_._",
  5954. "ref/netcore50/System.Collections.dll",
  5955. "ref/netcore50/System.Collections.xml",
  5956. "ref/netcore50/de/System.Collections.xml",
  5957. "ref/netcore50/es/System.Collections.xml",
  5958. "ref/netcore50/fr/System.Collections.xml",
  5959. "ref/netcore50/it/System.Collections.xml",
  5960. "ref/netcore50/ja/System.Collections.xml",
  5961. "ref/netcore50/ko/System.Collections.xml",
  5962. "ref/netcore50/ru/System.Collections.xml",
  5963. "ref/netcore50/zh-hans/System.Collections.xml",
  5964. "ref/netcore50/zh-hant/System.Collections.xml",
  5965. "ref/netstandard1.0/System.Collections.dll",
  5966. "ref/netstandard1.0/System.Collections.xml",
  5967. "ref/netstandard1.0/de/System.Collections.xml",
  5968. "ref/netstandard1.0/es/System.Collections.xml",
  5969. "ref/netstandard1.0/fr/System.Collections.xml",
  5970. "ref/netstandard1.0/it/System.Collections.xml",
  5971. "ref/netstandard1.0/ja/System.Collections.xml",
  5972. "ref/netstandard1.0/ko/System.Collections.xml",
  5973. "ref/netstandard1.0/ru/System.Collections.xml",
  5974. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5975. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5976. "ref/netstandard1.3/System.Collections.dll",
  5977. "ref/netstandard1.3/System.Collections.xml",
  5978. "ref/netstandard1.3/de/System.Collections.xml",
  5979. "ref/netstandard1.3/es/System.Collections.xml",
  5980. "ref/netstandard1.3/fr/System.Collections.xml",
  5981. "ref/netstandard1.3/it/System.Collections.xml",
  5982. "ref/netstandard1.3/ja/System.Collections.xml",
  5983. "ref/netstandard1.3/ko/System.Collections.xml",
  5984. "ref/netstandard1.3/ru/System.Collections.xml",
  5985. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5986. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5987. "ref/portable-net45+win8+wp8+wpa81/_._",
  5988. "ref/win8/_._",
  5989. "ref/wp80/_._",
  5990. "ref/wpa81/_._",
  5991. "ref/xamarinios10/_._",
  5992. "ref/xamarinmac20/_._",
  5993. "ref/xamarintvos10/_._",
  5994. "ref/xamarinwatchos10/_._",
  5995. "system.collections.4.3.0.nupkg.sha512",
  5996. "system.collections.nuspec"
  5997. ]
  5998. },
  5999. "System.Collections.Concurrent/4.3.0": {
  6000. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6001. "type": "package",
  6002. "path": "system.collections.concurrent/4.3.0",
  6003. "files": [
  6004. ".nupkg.metadata",
  6005. ".signature.p7s",
  6006. "ThirdPartyNotices.txt",
  6007. "dotnet_library_license.txt",
  6008. "lib/MonoAndroid10/_._",
  6009. "lib/MonoTouch10/_._",
  6010. "lib/net45/_._",
  6011. "lib/netcore50/System.Collections.Concurrent.dll",
  6012. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6013. "lib/portable-net45+win8+wpa81/_._",
  6014. "lib/win8/_._",
  6015. "lib/wpa81/_._",
  6016. "lib/xamarinios10/_._",
  6017. "lib/xamarinmac20/_._",
  6018. "lib/xamarintvos10/_._",
  6019. "lib/xamarinwatchos10/_._",
  6020. "ref/MonoAndroid10/_._",
  6021. "ref/MonoTouch10/_._",
  6022. "ref/net45/_._",
  6023. "ref/netcore50/System.Collections.Concurrent.dll",
  6024. "ref/netcore50/System.Collections.Concurrent.xml",
  6025. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6026. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6027. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6028. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6029. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6030. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6031. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6032. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6033. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6034. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6035. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6036. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6037. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6038. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6039. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6040. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6041. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6042. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6043. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6044. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6045. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6046. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6047. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6048. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6049. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6050. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6051. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6052. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6053. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6054. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6055. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6056. "ref/portable-net45+win8+wpa81/_._",
  6057. "ref/win8/_._",
  6058. "ref/wpa81/_._",
  6059. "ref/xamarinios10/_._",
  6060. "ref/xamarinmac20/_._",
  6061. "ref/xamarintvos10/_._",
  6062. "ref/xamarinwatchos10/_._",
  6063. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6064. "system.collections.concurrent.nuspec"
  6065. ]
  6066. },
  6067. "System.Collections.NonGeneric/4.3.0": {
  6068. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6069. "type": "package",
  6070. "path": "system.collections.nongeneric/4.3.0",
  6071. "files": [
  6072. ".nupkg.metadata",
  6073. ".signature.p7s",
  6074. "ThirdPartyNotices.txt",
  6075. "dotnet_library_license.txt",
  6076. "lib/MonoAndroid10/_._",
  6077. "lib/MonoTouch10/_._",
  6078. "lib/net46/System.Collections.NonGeneric.dll",
  6079. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6080. "lib/xamarinios10/_._",
  6081. "lib/xamarinmac20/_._",
  6082. "lib/xamarintvos10/_._",
  6083. "lib/xamarinwatchos10/_._",
  6084. "ref/MonoAndroid10/_._",
  6085. "ref/MonoTouch10/_._",
  6086. "ref/net46/System.Collections.NonGeneric.dll",
  6087. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6088. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6089. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6090. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6091. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6092. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6093. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6094. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6095. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6096. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6097. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6098. "ref/xamarinios10/_._",
  6099. "ref/xamarinmac20/_._",
  6100. "ref/xamarintvos10/_._",
  6101. "ref/xamarinwatchos10/_._",
  6102. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6103. "system.collections.nongeneric.nuspec"
  6104. ]
  6105. },
  6106. "System.Collections.Specialized/4.3.0": {
  6107. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6108. "type": "package",
  6109. "path": "system.collections.specialized/4.3.0",
  6110. "files": [
  6111. ".nupkg.metadata",
  6112. ".signature.p7s",
  6113. "ThirdPartyNotices.txt",
  6114. "dotnet_library_license.txt",
  6115. "lib/MonoAndroid10/_._",
  6116. "lib/MonoTouch10/_._",
  6117. "lib/net46/System.Collections.Specialized.dll",
  6118. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6119. "lib/xamarinios10/_._",
  6120. "lib/xamarinmac20/_._",
  6121. "lib/xamarintvos10/_._",
  6122. "lib/xamarinwatchos10/_._",
  6123. "ref/MonoAndroid10/_._",
  6124. "ref/MonoTouch10/_._",
  6125. "ref/net46/System.Collections.Specialized.dll",
  6126. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6127. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6128. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6129. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6130. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6131. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6132. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6133. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6134. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6135. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6136. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6137. "ref/xamarinios10/_._",
  6138. "ref/xamarinmac20/_._",
  6139. "ref/xamarintvos10/_._",
  6140. "ref/xamarinwatchos10/_._",
  6141. "system.collections.specialized.4.3.0.nupkg.sha512",
  6142. "system.collections.specialized.nuspec"
  6143. ]
  6144. },
  6145. "System.ComponentModel/4.3.0": {
  6146. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6147. "type": "package",
  6148. "path": "system.componentmodel/4.3.0",
  6149. "files": [
  6150. ".nupkg.metadata",
  6151. ".signature.p7s",
  6152. "ThirdPartyNotices.txt",
  6153. "dotnet_library_license.txt",
  6154. "lib/MonoAndroid10/_._",
  6155. "lib/MonoTouch10/_._",
  6156. "lib/net45/_._",
  6157. "lib/netcore50/System.ComponentModel.dll",
  6158. "lib/netstandard1.3/System.ComponentModel.dll",
  6159. "lib/portable-net45+win8+wp8+wpa81/_._",
  6160. "lib/win8/_._",
  6161. "lib/wp80/_._",
  6162. "lib/wpa81/_._",
  6163. "lib/xamarinios10/_._",
  6164. "lib/xamarinmac20/_._",
  6165. "lib/xamarintvos10/_._",
  6166. "lib/xamarinwatchos10/_._",
  6167. "ref/MonoAndroid10/_._",
  6168. "ref/MonoTouch10/_._",
  6169. "ref/net45/_._",
  6170. "ref/netcore50/System.ComponentModel.dll",
  6171. "ref/netcore50/System.ComponentModel.xml",
  6172. "ref/netcore50/de/System.ComponentModel.xml",
  6173. "ref/netcore50/es/System.ComponentModel.xml",
  6174. "ref/netcore50/fr/System.ComponentModel.xml",
  6175. "ref/netcore50/it/System.ComponentModel.xml",
  6176. "ref/netcore50/ja/System.ComponentModel.xml",
  6177. "ref/netcore50/ko/System.ComponentModel.xml",
  6178. "ref/netcore50/ru/System.ComponentModel.xml",
  6179. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6180. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6181. "ref/netstandard1.0/System.ComponentModel.dll",
  6182. "ref/netstandard1.0/System.ComponentModel.xml",
  6183. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6184. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6185. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6186. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6187. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6188. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6189. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6190. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6191. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6192. "ref/portable-net45+win8+wp8+wpa81/_._",
  6193. "ref/win8/_._",
  6194. "ref/wp80/_._",
  6195. "ref/wpa81/_._",
  6196. "ref/xamarinios10/_._",
  6197. "ref/xamarinmac20/_._",
  6198. "ref/xamarintvos10/_._",
  6199. "ref/xamarinwatchos10/_._",
  6200. "system.componentmodel.4.3.0.nupkg.sha512",
  6201. "system.componentmodel.nuspec"
  6202. ]
  6203. },
  6204. "System.ComponentModel.Annotations/5.0.0": {
  6205. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6206. "type": "package",
  6207. "path": "system.componentmodel.annotations/5.0.0",
  6208. "files": [
  6209. ".nupkg.metadata",
  6210. ".signature.p7s",
  6211. "Icon.png",
  6212. "LICENSE.TXT",
  6213. "THIRD-PARTY-NOTICES.TXT",
  6214. "lib/MonoAndroid10/_._",
  6215. "lib/MonoTouch10/_._",
  6216. "lib/net45/_._",
  6217. "lib/net461/System.ComponentModel.Annotations.dll",
  6218. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6219. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6220. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6221. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6222. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6223. "lib/portable-net45+win8/_._",
  6224. "lib/win8/_._",
  6225. "lib/xamarinios10/_._",
  6226. "lib/xamarinmac20/_._",
  6227. "lib/xamarintvos10/_._",
  6228. "lib/xamarinwatchos10/_._",
  6229. "ref/MonoAndroid10/_._",
  6230. "ref/MonoTouch10/_._",
  6231. "ref/net45/_._",
  6232. "ref/net461/System.ComponentModel.Annotations.dll",
  6233. "ref/net461/System.ComponentModel.Annotations.xml",
  6234. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6235. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6236. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6237. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6238. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6239. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6240. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6241. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6242. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6243. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6244. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6245. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6246. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6247. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6248. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6249. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6250. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6251. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6252. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6253. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6254. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6255. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6256. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6257. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6258. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6259. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6260. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6261. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6262. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6263. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6264. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6265. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6266. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6267. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6268. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6269. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6270. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6271. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6272. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6273. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6274. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6275. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6276. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6277. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6278. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6279. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6280. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6281. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6282. "ref/portable-net45+win8/_._",
  6283. "ref/win8/_._",
  6284. "ref/xamarinios10/_._",
  6285. "ref/xamarinmac20/_._",
  6286. "ref/xamarintvos10/_._",
  6287. "ref/xamarinwatchos10/_._",
  6288. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6289. "system.componentmodel.annotations.nuspec",
  6290. "useSharedDesignerContext.txt",
  6291. "version.txt"
  6292. ]
  6293. },
  6294. "System.ComponentModel.Primitives/4.3.0": {
  6295. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6296. "type": "package",
  6297. "path": "system.componentmodel.primitives/4.3.0",
  6298. "files": [
  6299. ".nupkg.metadata",
  6300. ".signature.p7s",
  6301. "ThirdPartyNotices.txt",
  6302. "dotnet_library_license.txt",
  6303. "lib/MonoAndroid10/_._",
  6304. "lib/MonoTouch10/_._",
  6305. "lib/net45/System.ComponentModel.Primitives.dll",
  6306. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6307. "lib/xamarinios10/_._",
  6308. "lib/xamarinmac20/_._",
  6309. "lib/xamarintvos10/_._",
  6310. "lib/xamarinwatchos10/_._",
  6311. "ref/MonoAndroid10/_._",
  6312. "ref/MonoTouch10/_._",
  6313. "ref/net45/System.ComponentModel.Primitives.dll",
  6314. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6315. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6316. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6317. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6318. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6319. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6320. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6321. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6322. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6323. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6324. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6325. "ref/xamarinios10/_._",
  6326. "ref/xamarinmac20/_._",
  6327. "ref/xamarintvos10/_._",
  6328. "ref/xamarinwatchos10/_._",
  6329. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6330. "system.componentmodel.primitives.nuspec"
  6331. ]
  6332. },
  6333. "System.ComponentModel.TypeConverter/4.3.0": {
  6334. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6335. "type": "package",
  6336. "path": "system.componentmodel.typeconverter/4.3.0",
  6337. "files": [
  6338. ".nupkg.metadata",
  6339. ".signature.p7s",
  6340. "ThirdPartyNotices.txt",
  6341. "dotnet_library_license.txt",
  6342. "lib/MonoAndroid10/_._",
  6343. "lib/MonoTouch10/_._",
  6344. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6345. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6346. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6347. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6348. "lib/xamarinios10/_._",
  6349. "lib/xamarinmac20/_._",
  6350. "lib/xamarintvos10/_._",
  6351. "lib/xamarinwatchos10/_._",
  6352. "ref/MonoAndroid10/_._",
  6353. "ref/MonoTouch10/_._",
  6354. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6355. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6356. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6357. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6358. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6359. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6360. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6361. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6362. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6363. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6364. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6365. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6366. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6367. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6368. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6369. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6370. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6371. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6372. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6373. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6374. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6375. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6376. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6377. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6378. "ref/xamarinios10/_._",
  6379. "ref/xamarinmac20/_._",
  6380. "ref/xamarintvos10/_._",
  6381. "ref/xamarinwatchos10/_._",
  6382. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6383. "system.componentmodel.typeconverter.nuspec"
  6384. ]
  6385. },
  6386. "System.Configuration.ConfigurationManager/4.5.0": {
  6387. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  6388. "type": "package",
  6389. "path": "system.configuration.configurationmanager/4.5.0",
  6390. "files": [
  6391. ".nupkg.metadata",
  6392. ".signature.p7s",
  6393. "LICENSE.TXT",
  6394. "THIRD-PARTY-NOTICES.TXT",
  6395. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6396. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6397. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6398. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6399. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6400. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6401. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  6402. "system.configuration.configurationmanager.nuspec",
  6403. "useSharedDesignerContext.txt",
  6404. "version.txt"
  6405. ]
  6406. },
  6407. "System.Console/4.3.0": {
  6408. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6409. "type": "package",
  6410. "path": "system.console/4.3.0",
  6411. "files": [
  6412. ".nupkg.metadata",
  6413. ".signature.p7s",
  6414. "ThirdPartyNotices.txt",
  6415. "dotnet_library_license.txt",
  6416. "lib/MonoAndroid10/_._",
  6417. "lib/MonoTouch10/_._",
  6418. "lib/net46/System.Console.dll",
  6419. "lib/xamarinios10/_._",
  6420. "lib/xamarinmac20/_._",
  6421. "lib/xamarintvos10/_._",
  6422. "lib/xamarinwatchos10/_._",
  6423. "ref/MonoAndroid10/_._",
  6424. "ref/MonoTouch10/_._",
  6425. "ref/net46/System.Console.dll",
  6426. "ref/netstandard1.3/System.Console.dll",
  6427. "ref/netstandard1.3/System.Console.xml",
  6428. "ref/netstandard1.3/de/System.Console.xml",
  6429. "ref/netstandard1.3/es/System.Console.xml",
  6430. "ref/netstandard1.3/fr/System.Console.xml",
  6431. "ref/netstandard1.3/it/System.Console.xml",
  6432. "ref/netstandard1.3/ja/System.Console.xml",
  6433. "ref/netstandard1.3/ko/System.Console.xml",
  6434. "ref/netstandard1.3/ru/System.Console.xml",
  6435. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6436. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6437. "ref/xamarinios10/_._",
  6438. "ref/xamarinmac20/_._",
  6439. "ref/xamarintvos10/_._",
  6440. "ref/xamarinwatchos10/_._",
  6441. "system.console.4.3.0.nupkg.sha512",
  6442. "system.console.nuspec"
  6443. ]
  6444. },
  6445. "System.Data.Common/4.3.0": {
  6446. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  6447. "type": "package",
  6448. "path": "system.data.common/4.3.0",
  6449. "files": [
  6450. ".nupkg.metadata",
  6451. ".signature.p7s",
  6452. "ThirdPartyNotices.txt",
  6453. "dotnet_library_license.txt",
  6454. "lib/MonoAndroid10/_._",
  6455. "lib/MonoTouch10/_._",
  6456. "lib/net451/System.Data.Common.dll",
  6457. "lib/netstandard1.2/System.Data.Common.dll",
  6458. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6459. "lib/xamarinios10/_._",
  6460. "lib/xamarinmac20/_._",
  6461. "lib/xamarintvos10/_._",
  6462. "lib/xamarinwatchos10/_._",
  6463. "ref/MonoAndroid10/_._",
  6464. "ref/MonoTouch10/_._",
  6465. "ref/net451/System.Data.Common.dll",
  6466. "ref/netstandard1.2/System.Data.Common.dll",
  6467. "ref/netstandard1.2/System.Data.Common.xml",
  6468. "ref/netstandard1.2/de/System.Data.Common.xml",
  6469. "ref/netstandard1.2/es/System.Data.Common.xml",
  6470. "ref/netstandard1.2/fr/System.Data.Common.xml",
  6471. "ref/netstandard1.2/it/System.Data.Common.xml",
  6472. "ref/netstandard1.2/ja/System.Data.Common.xml",
  6473. "ref/netstandard1.2/ko/System.Data.Common.xml",
  6474. "ref/netstandard1.2/ru/System.Data.Common.xml",
  6475. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  6476. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  6477. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6478. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  6479. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  6480. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  6481. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  6482. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  6483. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  6484. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  6485. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  6486. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  6487. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  6488. "ref/xamarinios10/_._",
  6489. "ref/xamarinmac20/_._",
  6490. "ref/xamarintvos10/_._",
  6491. "ref/xamarinwatchos10/_._",
  6492. "system.data.common.4.3.0.nupkg.sha512",
  6493. "system.data.common.nuspec"
  6494. ]
  6495. },
  6496. "System.Data.DataSetExtensions/4.5.0": {
  6497. "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
  6498. "type": "package",
  6499. "path": "system.data.datasetextensions/4.5.0",
  6500. "files": [
  6501. ".nupkg.metadata",
  6502. ".signature.p7s",
  6503. "LICENSE.TXT",
  6504. "THIRD-PARTY-NOTICES.TXT",
  6505. "lib/net45/_._",
  6506. "lib/netstandard2.0/System.Data.DataSetExtensions.dll",
  6507. "ref/net45/_._",
  6508. "ref/netstandard2.0/System.Data.DataSetExtensions.dll",
  6509. "system.data.datasetextensions.4.5.0.nupkg.sha512",
  6510. "system.data.datasetextensions.nuspec",
  6511. "useSharedDesignerContext.txt",
  6512. "version.txt"
  6513. ]
  6514. },
  6515. "System.Data.SqlClient/4.8.3": {
  6516. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  6517. "type": "package",
  6518. "path": "system.data.sqlclient/4.8.3",
  6519. "files": [
  6520. ".nupkg.metadata",
  6521. ".signature.p7s",
  6522. "Icon.png",
  6523. "LICENSE.TXT",
  6524. "THIRD-PARTY-NOTICES.TXT",
  6525. "lib/MonoAndroid10/_._",
  6526. "lib/MonoTouch10/_._",
  6527. "lib/net451/System.Data.SqlClient.dll",
  6528. "lib/net46/System.Data.SqlClient.dll",
  6529. "lib/net461/System.Data.SqlClient.dll",
  6530. "lib/net461/System.Data.SqlClient.xml",
  6531. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6532. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6533. "lib/netstandard1.2/System.Data.SqlClient.dll",
  6534. "lib/netstandard1.2/System.Data.SqlClient.xml",
  6535. "lib/netstandard1.3/System.Data.SqlClient.dll",
  6536. "lib/netstandard1.3/System.Data.SqlClient.xml",
  6537. "lib/netstandard2.0/System.Data.SqlClient.dll",
  6538. "lib/netstandard2.0/System.Data.SqlClient.xml",
  6539. "lib/xamarinios10/_._",
  6540. "lib/xamarinmac20/_._",
  6541. "lib/xamarintvos10/_._",
  6542. "lib/xamarinwatchos10/_._",
  6543. "ref/MonoAndroid10/_._",
  6544. "ref/MonoTouch10/_._",
  6545. "ref/net451/System.Data.SqlClient.dll",
  6546. "ref/net46/System.Data.SqlClient.dll",
  6547. "ref/net461/System.Data.SqlClient.dll",
  6548. "ref/net461/System.Data.SqlClient.xml",
  6549. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  6550. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  6551. "ref/netstandard1.2/System.Data.SqlClient.dll",
  6552. "ref/netstandard1.2/System.Data.SqlClient.xml",
  6553. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  6554. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  6555. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  6556. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  6557. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  6558. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  6559. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  6560. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  6561. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  6562. "ref/netstandard1.3/System.Data.SqlClient.dll",
  6563. "ref/netstandard1.3/System.Data.SqlClient.xml",
  6564. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  6565. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  6566. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  6567. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  6568. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  6569. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  6570. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  6571. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  6572. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  6573. "ref/netstandard2.0/System.Data.SqlClient.dll",
  6574. "ref/netstandard2.0/System.Data.SqlClient.xml",
  6575. "ref/xamarinios10/_._",
  6576. "ref/xamarinmac20/_._",
  6577. "ref/xamarintvos10/_._",
  6578. "ref/xamarinwatchos10/_._",
  6579. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6580. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6581. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  6582. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  6583. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  6584. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  6585. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  6586. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  6587. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  6588. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  6589. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  6590. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  6591. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  6592. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  6593. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  6594. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  6595. "system.data.sqlclient.4.8.3.nupkg.sha512",
  6596. "system.data.sqlclient.nuspec",
  6597. "useSharedDesignerContext.txt",
  6598. "version.txt"
  6599. ]
  6600. },
  6601. "System.Data.SQLite.Core/1.0.114": {
  6602. "sha512": "yfUkYTTeTwhXMs+TC6BCbh/XZ/Db3EBC4OkujgzmkM5qf/b8HxdwukXwLh5mRC0PHmp70w52cDTkfqoQsPeyCw==",
  6603. "type": "package",
  6604. "path": "system.data.sqlite.core/1.0.114",
  6605. "files": [
  6606. ".nupkg.metadata",
  6607. ".signature.p7s",
  6608. "system.data.sqlite.core.1.0.114.nupkg.sha512",
  6609. "system.data.sqlite.core.nuspec"
  6610. ]
  6611. },
  6612. "System.Diagnostics.Debug/4.3.0": {
  6613. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6614. "type": "package",
  6615. "path": "system.diagnostics.debug/4.3.0",
  6616. "files": [
  6617. ".nupkg.metadata",
  6618. ".signature.p7s",
  6619. "ThirdPartyNotices.txt",
  6620. "dotnet_library_license.txt",
  6621. "lib/MonoAndroid10/_._",
  6622. "lib/MonoTouch10/_._",
  6623. "lib/net45/_._",
  6624. "lib/portable-net45+win8+wp8+wpa81/_._",
  6625. "lib/win8/_._",
  6626. "lib/wp80/_._",
  6627. "lib/wpa81/_._",
  6628. "lib/xamarinios10/_._",
  6629. "lib/xamarinmac20/_._",
  6630. "lib/xamarintvos10/_._",
  6631. "lib/xamarinwatchos10/_._",
  6632. "ref/MonoAndroid10/_._",
  6633. "ref/MonoTouch10/_._",
  6634. "ref/net45/_._",
  6635. "ref/netcore50/System.Diagnostics.Debug.dll",
  6636. "ref/netcore50/System.Diagnostics.Debug.xml",
  6637. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6638. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6639. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6640. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6641. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6642. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6643. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6644. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6645. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6646. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6647. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6648. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6649. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6650. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6651. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6652. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6653. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6654. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6655. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6656. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6657. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6658. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6659. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6660. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6661. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6662. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6663. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6664. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6665. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6666. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6667. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6668. "ref/portable-net45+win8+wp8+wpa81/_._",
  6669. "ref/win8/_._",
  6670. "ref/wp80/_._",
  6671. "ref/wpa81/_._",
  6672. "ref/xamarinios10/_._",
  6673. "ref/xamarinmac20/_._",
  6674. "ref/xamarintvos10/_._",
  6675. "ref/xamarinwatchos10/_._",
  6676. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6677. "system.diagnostics.debug.nuspec"
  6678. ]
  6679. },
  6680. "System.Diagnostics.DiagnosticSource/7.0.2": {
  6681. "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  6682. "type": "package",
  6683. "path": "system.diagnostics.diagnosticsource/7.0.2",
  6684. "files": [
  6685. ".nupkg.metadata",
  6686. ".signature.p7s",
  6687. "Icon.png",
  6688. "LICENSE.TXT",
  6689. "THIRD-PARTY-NOTICES.TXT",
  6690. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  6691. "buildTransitive/net462/_._",
  6692. "buildTransitive/net6.0/_._",
  6693. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6694. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  6695. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  6696. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6697. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6698. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  6699. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  6700. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6701. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6702. "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
  6703. "system.diagnostics.diagnosticsource.nuspec",
  6704. "useSharedDesignerContext.txt"
  6705. ]
  6706. },
  6707. "System.Diagnostics.EventLog/5.0.0": {
  6708. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  6709. "type": "package",
  6710. "path": "system.diagnostics.eventlog/5.0.0",
  6711. "files": [
  6712. ".nupkg.metadata",
  6713. ".signature.p7s",
  6714. "Icon.png",
  6715. "LICENSE.TXT",
  6716. "THIRD-PARTY-NOTICES.TXT",
  6717. "lib/net461/System.Diagnostics.EventLog.dll",
  6718. "lib/net461/System.Diagnostics.EventLog.xml",
  6719. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  6720. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  6721. "ref/net461/System.Diagnostics.EventLog.dll",
  6722. "ref/net461/System.Diagnostics.EventLog.xml",
  6723. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  6724. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  6725. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  6726. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  6727. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  6728. "system.diagnostics.eventlog.nuspec",
  6729. "useSharedDesignerContext.txt",
  6730. "version.txt"
  6731. ]
  6732. },
  6733. "System.Diagnostics.Tools/4.3.0": {
  6734. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6735. "type": "package",
  6736. "path": "system.diagnostics.tools/4.3.0",
  6737. "files": [
  6738. ".nupkg.metadata",
  6739. ".signature.p7s",
  6740. "ThirdPartyNotices.txt",
  6741. "dotnet_library_license.txt",
  6742. "lib/MonoAndroid10/_._",
  6743. "lib/MonoTouch10/_._",
  6744. "lib/net45/_._",
  6745. "lib/portable-net45+win8+wp8+wpa81/_._",
  6746. "lib/win8/_._",
  6747. "lib/wp80/_._",
  6748. "lib/wpa81/_._",
  6749. "lib/xamarinios10/_._",
  6750. "lib/xamarinmac20/_._",
  6751. "lib/xamarintvos10/_._",
  6752. "lib/xamarinwatchos10/_._",
  6753. "ref/MonoAndroid10/_._",
  6754. "ref/MonoTouch10/_._",
  6755. "ref/net45/_._",
  6756. "ref/netcore50/System.Diagnostics.Tools.dll",
  6757. "ref/netcore50/System.Diagnostics.Tools.xml",
  6758. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6759. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6760. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6761. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6762. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6763. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6764. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6765. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6766. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6767. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6768. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6769. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6770. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6771. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6772. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6773. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6774. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6775. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6776. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6777. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6778. "ref/portable-net45+win8+wp8+wpa81/_._",
  6779. "ref/win8/_._",
  6780. "ref/wp80/_._",
  6781. "ref/wpa81/_._",
  6782. "ref/xamarinios10/_._",
  6783. "ref/xamarinmac20/_._",
  6784. "ref/xamarintvos10/_._",
  6785. "ref/xamarinwatchos10/_._",
  6786. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6787. "system.diagnostics.tools.nuspec"
  6788. ]
  6789. },
  6790. "System.Diagnostics.TraceSource/4.3.0": {
  6791. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6792. "type": "package",
  6793. "path": "system.diagnostics.tracesource/4.3.0",
  6794. "files": [
  6795. ".nupkg.metadata",
  6796. ".signature.p7s",
  6797. "ThirdPartyNotices.txt",
  6798. "dotnet_library_license.txt",
  6799. "lib/MonoAndroid10/_._",
  6800. "lib/MonoTouch10/_._",
  6801. "lib/net46/System.Diagnostics.TraceSource.dll",
  6802. "lib/xamarinios10/_._",
  6803. "lib/xamarinmac20/_._",
  6804. "lib/xamarintvos10/_._",
  6805. "lib/xamarinwatchos10/_._",
  6806. "ref/MonoAndroid10/_._",
  6807. "ref/MonoTouch10/_._",
  6808. "ref/net46/System.Diagnostics.TraceSource.dll",
  6809. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6810. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6811. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6812. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6813. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6814. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6815. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6816. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6817. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6818. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6819. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6820. "ref/xamarinios10/_._",
  6821. "ref/xamarinmac20/_._",
  6822. "ref/xamarintvos10/_._",
  6823. "ref/xamarinwatchos10/_._",
  6824. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6825. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6826. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6827. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6828. "system.diagnostics.tracesource.nuspec"
  6829. ]
  6830. },
  6831. "System.Diagnostics.Tracing/4.3.0": {
  6832. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6833. "type": "package",
  6834. "path": "system.diagnostics.tracing/4.3.0",
  6835. "files": [
  6836. ".nupkg.metadata",
  6837. ".signature.p7s",
  6838. "ThirdPartyNotices.txt",
  6839. "dotnet_library_license.txt",
  6840. "lib/MonoAndroid10/_._",
  6841. "lib/MonoTouch10/_._",
  6842. "lib/net45/_._",
  6843. "lib/net462/System.Diagnostics.Tracing.dll",
  6844. "lib/portable-net45+win8+wpa81/_._",
  6845. "lib/win8/_._",
  6846. "lib/wpa81/_._",
  6847. "lib/xamarinios10/_._",
  6848. "lib/xamarinmac20/_._",
  6849. "lib/xamarintvos10/_._",
  6850. "lib/xamarinwatchos10/_._",
  6851. "ref/MonoAndroid10/_._",
  6852. "ref/MonoTouch10/_._",
  6853. "ref/net45/_._",
  6854. "ref/net462/System.Diagnostics.Tracing.dll",
  6855. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6856. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6857. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6858. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6859. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6860. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6861. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6862. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6863. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6864. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6865. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6866. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6867. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6868. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6869. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6870. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6871. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6872. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6873. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6874. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6875. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6876. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6877. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6878. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6879. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6880. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6881. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6882. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6883. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6884. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6885. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6886. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6887. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6888. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6889. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6890. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6891. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6892. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6893. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6894. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6895. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6896. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6897. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6898. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6899. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6900. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6901. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6902. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6903. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6904. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6905. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6906. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6907. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6908. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6909. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6910. "ref/portable-net45+win8+wpa81/_._",
  6911. "ref/win8/_._",
  6912. "ref/wpa81/_._",
  6913. "ref/xamarinios10/_._",
  6914. "ref/xamarinmac20/_._",
  6915. "ref/xamarintvos10/_._",
  6916. "ref/xamarinwatchos10/_._",
  6917. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6918. "system.diagnostics.tracing.nuspec"
  6919. ]
  6920. },
  6921. "System.Drawing.Common/8.0.4": {
  6922. "sha512": "3G4xpa8mUYGzEF0HlswlBArAFywHJIzsZoB5hU4yMlnYHaabj/lg019BwbyyYBxj0aoM7Cz+jdlgUemeno9LOQ==",
  6923. "type": "package",
  6924. "path": "system.drawing.common/8.0.4",
  6925. "files": [
  6926. ".nupkg.metadata",
  6927. ".signature.p7s",
  6928. "Icon.png",
  6929. "LICENSE.TXT",
  6930. "THIRD-PARTY-NOTICES.TXT",
  6931. "buildTransitive/net461/System.Drawing.Common.targets",
  6932. "buildTransitive/net462/_._",
  6933. "buildTransitive/net6.0/_._",
  6934. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  6935. "lib/MonoAndroid10/_._",
  6936. "lib/MonoTouch10/_._",
  6937. "lib/net462/System.Drawing.Common.dll",
  6938. "lib/net462/System.Drawing.Common.pdb",
  6939. "lib/net462/System.Drawing.Common.xml",
  6940. "lib/net6.0/System.Drawing.Common.dll",
  6941. "lib/net6.0/System.Drawing.Common.pdb",
  6942. "lib/net6.0/System.Drawing.Common.xml",
  6943. "lib/net7.0/System.Drawing.Common.dll",
  6944. "lib/net7.0/System.Drawing.Common.pdb",
  6945. "lib/net7.0/System.Drawing.Common.xml",
  6946. "lib/net8.0/System.Drawing.Common.dll",
  6947. "lib/net8.0/System.Drawing.Common.pdb",
  6948. "lib/net8.0/System.Drawing.Common.xml",
  6949. "lib/netstandard2.0/System.Drawing.Common.dll",
  6950. "lib/netstandard2.0/System.Drawing.Common.pdb",
  6951. "lib/netstandard2.0/System.Drawing.Common.xml",
  6952. "lib/xamarinios10/_._",
  6953. "lib/xamarinmac20/_._",
  6954. "lib/xamarintvos10/_._",
  6955. "lib/xamarinwatchos10/_._",
  6956. "system.drawing.common.8.0.4.nupkg.sha512",
  6957. "system.drawing.common.nuspec",
  6958. "useSharedDesignerContext.txt"
  6959. ]
  6960. },
  6961. "System.Dynamic.Runtime/4.3.0": {
  6962. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6963. "type": "package",
  6964. "path": "system.dynamic.runtime/4.3.0",
  6965. "files": [
  6966. ".nupkg.metadata",
  6967. ".signature.p7s",
  6968. "ThirdPartyNotices.txt",
  6969. "dotnet_library_license.txt",
  6970. "lib/MonoAndroid10/_._",
  6971. "lib/MonoTouch10/_._",
  6972. "lib/net45/_._",
  6973. "lib/netcore50/System.Dynamic.Runtime.dll",
  6974. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6975. "lib/portable-net45+win8+wp8+wpa81/_._",
  6976. "lib/win8/_._",
  6977. "lib/wp80/_._",
  6978. "lib/wpa81/_._",
  6979. "lib/xamarinios10/_._",
  6980. "lib/xamarinmac20/_._",
  6981. "lib/xamarintvos10/_._",
  6982. "lib/xamarinwatchos10/_._",
  6983. "ref/MonoAndroid10/_._",
  6984. "ref/MonoTouch10/_._",
  6985. "ref/net45/_._",
  6986. "ref/netcore50/System.Dynamic.Runtime.dll",
  6987. "ref/netcore50/System.Dynamic.Runtime.xml",
  6988. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6989. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6990. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6991. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6992. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6993. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6994. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6995. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6996. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6997. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6998. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6999. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7000. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7001. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7002. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7003. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7004. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7005. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7006. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7007. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7008. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7009. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7010. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7011. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7012. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7013. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7014. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7015. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7016. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7017. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7018. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7019. "ref/portable-net45+win8+wp8+wpa81/_._",
  7020. "ref/win8/_._",
  7021. "ref/wp80/_._",
  7022. "ref/wpa81/_._",
  7023. "ref/xamarinios10/_._",
  7024. "ref/xamarinmac20/_._",
  7025. "ref/xamarintvos10/_._",
  7026. "ref/xamarinwatchos10/_._",
  7027. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7028. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7029. "system.dynamic.runtime.nuspec"
  7030. ]
  7031. },
  7032. "System.Formats.Asn1/5.0.0": {
  7033. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  7034. "type": "package",
  7035. "path": "system.formats.asn1/5.0.0",
  7036. "files": [
  7037. ".nupkg.metadata",
  7038. ".signature.p7s",
  7039. "Icon.png",
  7040. "LICENSE.TXT",
  7041. "THIRD-PARTY-NOTICES.TXT",
  7042. "lib/net461/System.Formats.Asn1.dll",
  7043. "lib/net461/System.Formats.Asn1.xml",
  7044. "lib/netstandard2.0/System.Formats.Asn1.dll",
  7045. "lib/netstandard2.0/System.Formats.Asn1.xml",
  7046. "system.formats.asn1.5.0.0.nupkg.sha512",
  7047. "system.formats.asn1.nuspec",
  7048. "useSharedDesignerContext.txt",
  7049. "version.txt"
  7050. ]
  7051. },
  7052. "System.Globalization/4.3.0": {
  7053. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7054. "type": "package",
  7055. "path": "system.globalization/4.3.0",
  7056. "files": [
  7057. ".nupkg.metadata",
  7058. ".signature.p7s",
  7059. "ThirdPartyNotices.txt",
  7060. "dotnet_library_license.txt",
  7061. "lib/MonoAndroid10/_._",
  7062. "lib/MonoTouch10/_._",
  7063. "lib/net45/_._",
  7064. "lib/portable-net45+win8+wp8+wpa81/_._",
  7065. "lib/win8/_._",
  7066. "lib/wp80/_._",
  7067. "lib/wpa81/_._",
  7068. "lib/xamarinios10/_._",
  7069. "lib/xamarinmac20/_._",
  7070. "lib/xamarintvos10/_._",
  7071. "lib/xamarinwatchos10/_._",
  7072. "ref/MonoAndroid10/_._",
  7073. "ref/MonoTouch10/_._",
  7074. "ref/net45/_._",
  7075. "ref/netcore50/System.Globalization.dll",
  7076. "ref/netcore50/System.Globalization.xml",
  7077. "ref/netcore50/de/System.Globalization.xml",
  7078. "ref/netcore50/es/System.Globalization.xml",
  7079. "ref/netcore50/fr/System.Globalization.xml",
  7080. "ref/netcore50/it/System.Globalization.xml",
  7081. "ref/netcore50/ja/System.Globalization.xml",
  7082. "ref/netcore50/ko/System.Globalization.xml",
  7083. "ref/netcore50/ru/System.Globalization.xml",
  7084. "ref/netcore50/zh-hans/System.Globalization.xml",
  7085. "ref/netcore50/zh-hant/System.Globalization.xml",
  7086. "ref/netstandard1.0/System.Globalization.dll",
  7087. "ref/netstandard1.0/System.Globalization.xml",
  7088. "ref/netstandard1.0/de/System.Globalization.xml",
  7089. "ref/netstandard1.0/es/System.Globalization.xml",
  7090. "ref/netstandard1.0/fr/System.Globalization.xml",
  7091. "ref/netstandard1.0/it/System.Globalization.xml",
  7092. "ref/netstandard1.0/ja/System.Globalization.xml",
  7093. "ref/netstandard1.0/ko/System.Globalization.xml",
  7094. "ref/netstandard1.0/ru/System.Globalization.xml",
  7095. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7096. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7097. "ref/netstandard1.3/System.Globalization.dll",
  7098. "ref/netstandard1.3/System.Globalization.xml",
  7099. "ref/netstandard1.3/de/System.Globalization.xml",
  7100. "ref/netstandard1.3/es/System.Globalization.xml",
  7101. "ref/netstandard1.3/fr/System.Globalization.xml",
  7102. "ref/netstandard1.3/it/System.Globalization.xml",
  7103. "ref/netstandard1.3/ja/System.Globalization.xml",
  7104. "ref/netstandard1.3/ko/System.Globalization.xml",
  7105. "ref/netstandard1.3/ru/System.Globalization.xml",
  7106. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7107. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7108. "ref/portable-net45+win8+wp8+wpa81/_._",
  7109. "ref/win8/_._",
  7110. "ref/wp80/_._",
  7111. "ref/wpa81/_._",
  7112. "ref/xamarinios10/_._",
  7113. "ref/xamarinmac20/_._",
  7114. "ref/xamarintvos10/_._",
  7115. "ref/xamarinwatchos10/_._",
  7116. "system.globalization.4.3.0.nupkg.sha512",
  7117. "system.globalization.nuspec"
  7118. ]
  7119. },
  7120. "System.Globalization.Calendars/4.3.0": {
  7121. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7122. "type": "package",
  7123. "path": "system.globalization.calendars/4.3.0",
  7124. "files": [
  7125. ".nupkg.metadata",
  7126. ".signature.p7s",
  7127. "ThirdPartyNotices.txt",
  7128. "dotnet_library_license.txt",
  7129. "lib/MonoAndroid10/_._",
  7130. "lib/MonoTouch10/_._",
  7131. "lib/net46/System.Globalization.Calendars.dll",
  7132. "lib/xamarinios10/_._",
  7133. "lib/xamarinmac20/_._",
  7134. "lib/xamarintvos10/_._",
  7135. "lib/xamarinwatchos10/_._",
  7136. "ref/MonoAndroid10/_._",
  7137. "ref/MonoTouch10/_._",
  7138. "ref/net46/System.Globalization.Calendars.dll",
  7139. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7140. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7141. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7142. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7143. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7144. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7145. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7146. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7147. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7148. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7149. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7150. "ref/xamarinios10/_._",
  7151. "ref/xamarinmac20/_._",
  7152. "ref/xamarintvos10/_._",
  7153. "ref/xamarinwatchos10/_._",
  7154. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7155. "system.globalization.calendars.nuspec"
  7156. ]
  7157. },
  7158. "System.Globalization.Extensions/4.3.0": {
  7159. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7160. "type": "package",
  7161. "path": "system.globalization.extensions/4.3.0",
  7162. "files": [
  7163. ".nupkg.metadata",
  7164. ".signature.p7s",
  7165. "ThirdPartyNotices.txt",
  7166. "dotnet_library_license.txt",
  7167. "lib/MonoAndroid10/_._",
  7168. "lib/MonoTouch10/_._",
  7169. "lib/net46/System.Globalization.Extensions.dll",
  7170. "lib/xamarinios10/_._",
  7171. "lib/xamarinmac20/_._",
  7172. "lib/xamarintvos10/_._",
  7173. "lib/xamarinwatchos10/_._",
  7174. "ref/MonoAndroid10/_._",
  7175. "ref/MonoTouch10/_._",
  7176. "ref/net46/System.Globalization.Extensions.dll",
  7177. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7178. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7179. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7180. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7181. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7182. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7183. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7184. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7185. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7186. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7187. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7188. "ref/xamarinios10/_._",
  7189. "ref/xamarinmac20/_._",
  7190. "ref/xamarintvos10/_._",
  7191. "ref/xamarinwatchos10/_._",
  7192. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7193. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7194. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7195. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7196. "system.globalization.extensions.nuspec"
  7197. ]
  7198. },
  7199. "System.IO/4.3.0": {
  7200. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7201. "type": "package",
  7202. "path": "system.io/4.3.0",
  7203. "files": [
  7204. ".nupkg.metadata",
  7205. ".signature.p7s",
  7206. "ThirdPartyNotices.txt",
  7207. "dotnet_library_license.txt",
  7208. "lib/MonoAndroid10/_._",
  7209. "lib/MonoTouch10/_._",
  7210. "lib/net45/_._",
  7211. "lib/net462/System.IO.dll",
  7212. "lib/portable-net45+win8+wp8+wpa81/_._",
  7213. "lib/win8/_._",
  7214. "lib/wp80/_._",
  7215. "lib/wpa81/_._",
  7216. "lib/xamarinios10/_._",
  7217. "lib/xamarinmac20/_._",
  7218. "lib/xamarintvos10/_._",
  7219. "lib/xamarinwatchos10/_._",
  7220. "ref/MonoAndroid10/_._",
  7221. "ref/MonoTouch10/_._",
  7222. "ref/net45/_._",
  7223. "ref/net462/System.IO.dll",
  7224. "ref/netcore50/System.IO.dll",
  7225. "ref/netcore50/System.IO.xml",
  7226. "ref/netcore50/de/System.IO.xml",
  7227. "ref/netcore50/es/System.IO.xml",
  7228. "ref/netcore50/fr/System.IO.xml",
  7229. "ref/netcore50/it/System.IO.xml",
  7230. "ref/netcore50/ja/System.IO.xml",
  7231. "ref/netcore50/ko/System.IO.xml",
  7232. "ref/netcore50/ru/System.IO.xml",
  7233. "ref/netcore50/zh-hans/System.IO.xml",
  7234. "ref/netcore50/zh-hant/System.IO.xml",
  7235. "ref/netstandard1.0/System.IO.dll",
  7236. "ref/netstandard1.0/System.IO.xml",
  7237. "ref/netstandard1.0/de/System.IO.xml",
  7238. "ref/netstandard1.0/es/System.IO.xml",
  7239. "ref/netstandard1.0/fr/System.IO.xml",
  7240. "ref/netstandard1.0/it/System.IO.xml",
  7241. "ref/netstandard1.0/ja/System.IO.xml",
  7242. "ref/netstandard1.0/ko/System.IO.xml",
  7243. "ref/netstandard1.0/ru/System.IO.xml",
  7244. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7245. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7246. "ref/netstandard1.3/System.IO.dll",
  7247. "ref/netstandard1.3/System.IO.xml",
  7248. "ref/netstandard1.3/de/System.IO.xml",
  7249. "ref/netstandard1.3/es/System.IO.xml",
  7250. "ref/netstandard1.3/fr/System.IO.xml",
  7251. "ref/netstandard1.3/it/System.IO.xml",
  7252. "ref/netstandard1.3/ja/System.IO.xml",
  7253. "ref/netstandard1.3/ko/System.IO.xml",
  7254. "ref/netstandard1.3/ru/System.IO.xml",
  7255. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7256. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7257. "ref/netstandard1.5/System.IO.dll",
  7258. "ref/netstandard1.5/System.IO.xml",
  7259. "ref/netstandard1.5/de/System.IO.xml",
  7260. "ref/netstandard1.5/es/System.IO.xml",
  7261. "ref/netstandard1.5/fr/System.IO.xml",
  7262. "ref/netstandard1.5/it/System.IO.xml",
  7263. "ref/netstandard1.5/ja/System.IO.xml",
  7264. "ref/netstandard1.5/ko/System.IO.xml",
  7265. "ref/netstandard1.5/ru/System.IO.xml",
  7266. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7267. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7268. "ref/portable-net45+win8+wp8+wpa81/_._",
  7269. "ref/win8/_._",
  7270. "ref/wp80/_._",
  7271. "ref/wpa81/_._",
  7272. "ref/xamarinios10/_._",
  7273. "ref/xamarinmac20/_._",
  7274. "ref/xamarintvos10/_._",
  7275. "ref/xamarinwatchos10/_._",
  7276. "system.io.4.3.0.nupkg.sha512",
  7277. "system.io.nuspec"
  7278. ]
  7279. },
  7280. "System.IO.Compression/4.3.0": {
  7281. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7282. "type": "package",
  7283. "path": "system.io.compression/4.3.0",
  7284. "files": [
  7285. ".nupkg.metadata",
  7286. ".signature.p7s",
  7287. "ThirdPartyNotices.txt",
  7288. "dotnet_library_license.txt",
  7289. "lib/MonoAndroid10/_._",
  7290. "lib/MonoTouch10/_._",
  7291. "lib/net45/_._",
  7292. "lib/net46/System.IO.Compression.dll",
  7293. "lib/portable-net45+win8+wpa81/_._",
  7294. "lib/win8/_._",
  7295. "lib/wpa81/_._",
  7296. "lib/xamarinios10/_._",
  7297. "lib/xamarinmac20/_._",
  7298. "lib/xamarintvos10/_._",
  7299. "lib/xamarinwatchos10/_._",
  7300. "ref/MonoAndroid10/_._",
  7301. "ref/MonoTouch10/_._",
  7302. "ref/net45/_._",
  7303. "ref/net46/System.IO.Compression.dll",
  7304. "ref/netcore50/System.IO.Compression.dll",
  7305. "ref/netcore50/System.IO.Compression.xml",
  7306. "ref/netcore50/de/System.IO.Compression.xml",
  7307. "ref/netcore50/es/System.IO.Compression.xml",
  7308. "ref/netcore50/fr/System.IO.Compression.xml",
  7309. "ref/netcore50/it/System.IO.Compression.xml",
  7310. "ref/netcore50/ja/System.IO.Compression.xml",
  7311. "ref/netcore50/ko/System.IO.Compression.xml",
  7312. "ref/netcore50/ru/System.IO.Compression.xml",
  7313. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7314. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7315. "ref/netstandard1.1/System.IO.Compression.dll",
  7316. "ref/netstandard1.1/System.IO.Compression.xml",
  7317. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7318. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7319. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7320. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7321. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7322. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7323. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7324. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7325. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7326. "ref/netstandard1.3/System.IO.Compression.dll",
  7327. "ref/netstandard1.3/System.IO.Compression.xml",
  7328. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7329. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7330. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7331. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7332. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7333. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7334. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7335. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7336. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7337. "ref/portable-net45+win8+wpa81/_._",
  7338. "ref/win8/_._",
  7339. "ref/wpa81/_._",
  7340. "ref/xamarinios10/_._",
  7341. "ref/xamarinmac20/_._",
  7342. "ref/xamarintvos10/_._",
  7343. "ref/xamarinwatchos10/_._",
  7344. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7345. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7346. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7347. "system.io.compression.4.3.0.nupkg.sha512",
  7348. "system.io.compression.nuspec"
  7349. ]
  7350. },
  7351. "System.IO.Compression.ZipFile/4.3.0": {
  7352. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7353. "type": "package",
  7354. "path": "system.io.compression.zipfile/4.3.0",
  7355. "files": [
  7356. ".nupkg.metadata",
  7357. ".signature.p7s",
  7358. "ThirdPartyNotices.txt",
  7359. "dotnet_library_license.txt",
  7360. "lib/MonoAndroid10/_._",
  7361. "lib/MonoTouch10/_._",
  7362. "lib/net46/System.IO.Compression.ZipFile.dll",
  7363. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7364. "lib/xamarinios10/_._",
  7365. "lib/xamarinmac20/_._",
  7366. "lib/xamarintvos10/_._",
  7367. "lib/xamarinwatchos10/_._",
  7368. "ref/MonoAndroid10/_._",
  7369. "ref/MonoTouch10/_._",
  7370. "ref/net46/System.IO.Compression.ZipFile.dll",
  7371. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7372. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7373. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7374. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7375. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7376. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7377. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7378. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7379. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7380. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7381. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7382. "ref/xamarinios10/_._",
  7383. "ref/xamarinmac20/_._",
  7384. "ref/xamarintvos10/_._",
  7385. "ref/xamarinwatchos10/_._",
  7386. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7387. "system.io.compression.zipfile.nuspec"
  7388. ]
  7389. },
  7390. "System.IO.FileSystem/4.3.0": {
  7391. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7392. "type": "package",
  7393. "path": "system.io.filesystem/4.3.0",
  7394. "files": [
  7395. ".nupkg.metadata",
  7396. ".signature.p7s",
  7397. "ThirdPartyNotices.txt",
  7398. "dotnet_library_license.txt",
  7399. "lib/MonoAndroid10/_._",
  7400. "lib/MonoTouch10/_._",
  7401. "lib/net46/System.IO.FileSystem.dll",
  7402. "lib/xamarinios10/_._",
  7403. "lib/xamarinmac20/_._",
  7404. "lib/xamarintvos10/_._",
  7405. "lib/xamarinwatchos10/_._",
  7406. "ref/MonoAndroid10/_._",
  7407. "ref/MonoTouch10/_._",
  7408. "ref/net46/System.IO.FileSystem.dll",
  7409. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7410. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7411. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7412. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7413. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7414. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7415. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7416. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7417. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7418. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7419. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7420. "ref/xamarinios10/_._",
  7421. "ref/xamarinmac20/_._",
  7422. "ref/xamarintvos10/_._",
  7423. "ref/xamarinwatchos10/_._",
  7424. "system.io.filesystem.4.3.0.nupkg.sha512",
  7425. "system.io.filesystem.nuspec"
  7426. ]
  7427. },
  7428. "System.IO.FileSystem.Primitives/4.3.0": {
  7429. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7430. "type": "package",
  7431. "path": "system.io.filesystem.primitives/4.3.0",
  7432. "files": [
  7433. ".nupkg.metadata",
  7434. ".signature.p7s",
  7435. "ThirdPartyNotices.txt",
  7436. "dotnet_library_license.txt",
  7437. "lib/MonoAndroid10/_._",
  7438. "lib/MonoTouch10/_._",
  7439. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7440. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7441. "lib/xamarinios10/_._",
  7442. "lib/xamarinmac20/_._",
  7443. "lib/xamarintvos10/_._",
  7444. "lib/xamarinwatchos10/_._",
  7445. "ref/MonoAndroid10/_._",
  7446. "ref/MonoTouch10/_._",
  7447. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7448. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7449. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7450. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7451. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7452. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7453. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7454. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7455. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7456. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7457. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7458. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7459. "ref/xamarinios10/_._",
  7460. "ref/xamarinmac20/_._",
  7461. "ref/xamarintvos10/_._",
  7462. "ref/xamarinwatchos10/_._",
  7463. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7464. "system.io.filesystem.primitives.nuspec"
  7465. ]
  7466. },
  7467. "System.IO.Ports/6.0.0": {
  7468. "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==",
  7469. "type": "package",
  7470. "path": "system.io.ports/6.0.0",
  7471. "files": [
  7472. ".nupkg.metadata",
  7473. ".signature.p7s",
  7474. "Icon.png",
  7475. "LICENSE.TXT",
  7476. "THIRD-PARTY-NOTICES.TXT",
  7477. "buildTransitive/netcoreapp2.0/System.IO.Ports.targets",
  7478. "buildTransitive/netcoreapp3.1/_._",
  7479. "lib/net461/System.IO.Ports.dll",
  7480. "lib/net461/System.IO.Ports.xml",
  7481. "lib/net6.0/System.IO.Ports.dll",
  7482. "lib/net6.0/System.IO.Ports.xml",
  7483. "lib/netstandard2.0/System.IO.Ports.dll",
  7484. "lib/netstandard2.0/System.IO.Ports.xml",
  7485. "runtimes/unix/lib/net6.0/System.IO.Ports.dll",
  7486. "runtimes/unix/lib/net6.0/System.IO.Ports.xml",
  7487. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll",
  7488. "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml",
  7489. "runtimes/win/lib/net461/System.IO.Ports.dll",
  7490. "runtimes/win/lib/net461/System.IO.Ports.xml",
  7491. "runtimes/win/lib/net6.0/System.IO.Ports.dll",
  7492. "runtimes/win/lib/net6.0/System.IO.Ports.xml",
  7493. "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll",
  7494. "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml",
  7495. "system.io.ports.6.0.0.nupkg.sha512",
  7496. "system.io.ports.nuspec",
  7497. "useSharedDesignerContext.txt"
  7498. ]
  7499. },
  7500. "System.Linq/4.3.0": {
  7501. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7502. "type": "package",
  7503. "path": "system.linq/4.3.0",
  7504. "files": [
  7505. ".nupkg.metadata",
  7506. ".signature.p7s",
  7507. "ThirdPartyNotices.txt",
  7508. "dotnet_library_license.txt",
  7509. "lib/MonoAndroid10/_._",
  7510. "lib/MonoTouch10/_._",
  7511. "lib/net45/_._",
  7512. "lib/net463/System.Linq.dll",
  7513. "lib/netcore50/System.Linq.dll",
  7514. "lib/netstandard1.6/System.Linq.dll",
  7515. "lib/portable-net45+win8+wp8+wpa81/_._",
  7516. "lib/win8/_._",
  7517. "lib/wp80/_._",
  7518. "lib/wpa81/_._",
  7519. "lib/xamarinios10/_._",
  7520. "lib/xamarinmac20/_._",
  7521. "lib/xamarintvos10/_._",
  7522. "lib/xamarinwatchos10/_._",
  7523. "ref/MonoAndroid10/_._",
  7524. "ref/MonoTouch10/_._",
  7525. "ref/net45/_._",
  7526. "ref/net463/System.Linq.dll",
  7527. "ref/netcore50/System.Linq.dll",
  7528. "ref/netcore50/System.Linq.xml",
  7529. "ref/netcore50/de/System.Linq.xml",
  7530. "ref/netcore50/es/System.Linq.xml",
  7531. "ref/netcore50/fr/System.Linq.xml",
  7532. "ref/netcore50/it/System.Linq.xml",
  7533. "ref/netcore50/ja/System.Linq.xml",
  7534. "ref/netcore50/ko/System.Linq.xml",
  7535. "ref/netcore50/ru/System.Linq.xml",
  7536. "ref/netcore50/zh-hans/System.Linq.xml",
  7537. "ref/netcore50/zh-hant/System.Linq.xml",
  7538. "ref/netstandard1.0/System.Linq.dll",
  7539. "ref/netstandard1.0/System.Linq.xml",
  7540. "ref/netstandard1.0/de/System.Linq.xml",
  7541. "ref/netstandard1.0/es/System.Linq.xml",
  7542. "ref/netstandard1.0/fr/System.Linq.xml",
  7543. "ref/netstandard1.0/it/System.Linq.xml",
  7544. "ref/netstandard1.0/ja/System.Linq.xml",
  7545. "ref/netstandard1.0/ko/System.Linq.xml",
  7546. "ref/netstandard1.0/ru/System.Linq.xml",
  7547. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7548. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7549. "ref/netstandard1.6/System.Linq.dll",
  7550. "ref/netstandard1.6/System.Linq.xml",
  7551. "ref/netstandard1.6/de/System.Linq.xml",
  7552. "ref/netstandard1.6/es/System.Linq.xml",
  7553. "ref/netstandard1.6/fr/System.Linq.xml",
  7554. "ref/netstandard1.6/it/System.Linq.xml",
  7555. "ref/netstandard1.6/ja/System.Linq.xml",
  7556. "ref/netstandard1.6/ko/System.Linq.xml",
  7557. "ref/netstandard1.6/ru/System.Linq.xml",
  7558. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7559. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7560. "ref/portable-net45+win8+wp8+wpa81/_._",
  7561. "ref/win8/_._",
  7562. "ref/wp80/_._",
  7563. "ref/wpa81/_._",
  7564. "ref/xamarinios10/_._",
  7565. "ref/xamarinmac20/_._",
  7566. "ref/xamarintvos10/_._",
  7567. "ref/xamarinwatchos10/_._",
  7568. "system.linq.4.3.0.nupkg.sha512",
  7569. "system.linq.nuspec"
  7570. ]
  7571. },
  7572. "System.Linq.Expressions/4.3.0": {
  7573. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7574. "type": "package",
  7575. "path": "system.linq.expressions/4.3.0",
  7576. "files": [
  7577. ".nupkg.metadata",
  7578. ".signature.p7s",
  7579. "ThirdPartyNotices.txt",
  7580. "dotnet_library_license.txt",
  7581. "lib/MonoAndroid10/_._",
  7582. "lib/MonoTouch10/_._",
  7583. "lib/net45/_._",
  7584. "lib/net463/System.Linq.Expressions.dll",
  7585. "lib/netcore50/System.Linq.Expressions.dll",
  7586. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7587. "lib/portable-net45+win8+wp8+wpa81/_._",
  7588. "lib/win8/_._",
  7589. "lib/wp80/_._",
  7590. "lib/wpa81/_._",
  7591. "lib/xamarinios10/_._",
  7592. "lib/xamarinmac20/_._",
  7593. "lib/xamarintvos10/_._",
  7594. "lib/xamarinwatchos10/_._",
  7595. "ref/MonoAndroid10/_._",
  7596. "ref/MonoTouch10/_._",
  7597. "ref/net45/_._",
  7598. "ref/net463/System.Linq.Expressions.dll",
  7599. "ref/netcore50/System.Linq.Expressions.dll",
  7600. "ref/netcore50/System.Linq.Expressions.xml",
  7601. "ref/netcore50/de/System.Linq.Expressions.xml",
  7602. "ref/netcore50/es/System.Linq.Expressions.xml",
  7603. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7604. "ref/netcore50/it/System.Linq.Expressions.xml",
  7605. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7606. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7607. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7608. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7609. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7610. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7611. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7612. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7613. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7614. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7615. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7616. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7617. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7618. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7619. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7620. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7621. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7622. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7623. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7624. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7625. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7626. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7627. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7628. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7629. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7630. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7631. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7632. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7633. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7634. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7635. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7636. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7637. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7638. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7639. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7640. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7641. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7642. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7643. "ref/portable-net45+win8+wp8+wpa81/_._",
  7644. "ref/win8/_._",
  7645. "ref/wp80/_._",
  7646. "ref/wpa81/_._",
  7647. "ref/xamarinios10/_._",
  7648. "ref/xamarinmac20/_._",
  7649. "ref/xamarintvos10/_._",
  7650. "ref/xamarinwatchos10/_._",
  7651. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7652. "system.linq.expressions.4.3.0.nupkg.sha512",
  7653. "system.linq.expressions.nuspec"
  7654. ]
  7655. },
  7656. "System.Memory/4.5.4": {
  7657. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7658. "type": "package",
  7659. "path": "system.memory/4.5.4",
  7660. "files": [
  7661. ".nupkg.metadata",
  7662. ".signature.p7s",
  7663. "LICENSE.TXT",
  7664. "THIRD-PARTY-NOTICES.TXT",
  7665. "lib/net461/System.Memory.dll",
  7666. "lib/net461/System.Memory.xml",
  7667. "lib/netcoreapp2.1/_._",
  7668. "lib/netstandard1.1/System.Memory.dll",
  7669. "lib/netstandard1.1/System.Memory.xml",
  7670. "lib/netstandard2.0/System.Memory.dll",
  7671. "lib/netstandard2.0/System.Memory.xml",
  7672. "ref/netcoreapp2.1/_._",
  7673. "system.memory.4.5.4.nupkg.sha512",
  7674. "system.memory.nuspec",
  7675. "useSharedDesignerContext.txt",
  7676. "version.txt"
  7677. ]
  7678. },
  7679. "System.Net.Http/4.3.0": {
  7680. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  7681. "type": "package",
  7682. "path": "system.net.http/4.3.0",
  7683. "files": [
  7684. ".nupkg.metadata",
  7685. ".signature.p7s",
  7686. "ThirdPartyNotices.txt",
  7687. "dotnet_library_license.txt",
  7688. "lib/Xamarinmac20/_._",
  7689. "lib/monoandroid10/_._",
  7690. "lib/monotouch10/_._",
  7691. "lib/net45/_._",
  7692. "lib/net46/System.Net.Http.dll",
  7693. "lib/portable-net45+win8+wpa81/_._",
  7694. "lib/win8/_._",
  7695. "lib/wpa81/_._",
  7696. "lib/xamarinios10/_._",
  7697. "lib/xamarintvos10/_._",
  7698. "lib/xamarinwatchos10/_._",
  7699. "ref/Xamarinmac20/_._",
  7700. "ref/monoandroid10/_._",
  7701. "ref/monotouch10/_._",
  7702. "ref/net45/_._",
  7703. "ref/net46/System.Net.Http.dll",
  7704. "ref/net46/System.Net.Http.xml",
  7705. "ref/net46/de/System.Net.Http.xml",
  7706. "ref/net46/es/System.Net.Http.xml",
  7707. "ref/net46/fr/System.Net.Http.xml",
  7708. "ref/net46/it/System.Net.Http.xml",
  7709. "ref/net46/ja/System.Net.Http.xml",
  7710. "ref/net46/ko/System.Net.Http.xml",
  7711. "ref/net46/ru/System.Net.Http.xml",
  7712. "ref/net46/zh-hans/System.Net.Http.xml",
  7713. "ref/net46/zh-hant/System.Net.Http.xml",
  7714. "ref/netcore50/System.Net.Http.dll",
  7715. "ref/netcore50/System.Net.Http.xml",
  7716. "ref/netcore50/de/System.Net.Http.xml",
  7717. "ref/netcore50/es/System.Net.Http.xml",
  7718. "ref/netcore50/fr/System.Net.Http.xml",
  7719. "ref/netcore50/it/System.Net.Http.xml",
  7720. "ref/netcore50/ja/System.Net.Http.xml",
  7721. "ref/netcore50/ko/System.Net.Http.xml",
  7722. "ref/netcore50/ru/System.Net.Http.xml",
  7723. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7724. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7725. "ref/netstandard1.1/System.Net.Http.dll",
  7726. "ref/netstandard1.1/System.Net.Http.xml",
  7727. "ref/netstandard1.1/de/System.Net.Http.xml",
  7728. "ref/netstandard1.1/es/System.Net.Http.xml",
  7729. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7730. "ref/netstandard1.1/it/System.Net.Http.xml",
  7731. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7732. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7733. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7734. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7735. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7736. "ref/netstandard1.3/System.Net.Http.dll",
  7737. "ref/netstandard1.3/System.Net.Http.xml",
  7738. "ref/netstandard1.3/de/System.Net.Http.xml",
  7739. "ref/netstandard1.3/es/System.Net.Http.xml",
  7740. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7741. "ref/netstandard1.3/it/System.Net.Http.xml",
  7742. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7743. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7744. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7745. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7746. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7747. "ref/portable-net45+win8+wpa81/_._",
  7748. "ref/win8/_._",
  7749. "ref/wpa81/_._",
  7750. "ref/xamarinios10/_._",
  7751. "ref/xamarintvos10/_._",
  7752. "ref/xamarinwatchos10/_._",
  7753. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7754. "runtimes/win/lib/net46/System.Net.Http.dll",
  7755. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7756. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7757. "system.net.http.4.3.0.nupkg.sha512",
  7758. "system.net.http.nuspec"
  7759. ]
  7760. },
  7761. "System.Net.Primitives/4.3.0": {
  7762. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7763. "type": "package",
  7764. "path": "system.net.primitives/4.3.0",
  7765. "files": [
  7766. ".nupkg.metadata",
  7767. ".signature.p7s",
  7768. "ThirdPartyNotices.txt",
  7769. "dotnet_library_license.txt",
  7770. "lib/MonoAndroid10/_._",
  7771. "lib/MonoTouch10/_._",
  7772. "lib/net45/_._",
  7773. "lib/portable-net45+win8+wp8+wpa81/_._",
  7774. "lib/win8/_._",
  7775. "lib/wp80/_._",
  7776. "lib/wpa81/_._",
  7777. "lib/xamarinios10/_._",
  7778. "lib/xamarinmac20/_._",
  7779. "lib/xamarintvos10/_._",
  7780. "lib/xamarinwatchos10/_._",
  7781. "ref/MonoAndroid10/_._",
  7782. "ref/MonoTouch10/_._",
  7783. "ref/net45/_._",
  7784. "ref/netcore50/System.Net.Primitives.dll",
  7785. "ref/netcore50/System.Net.Primitives.xml",
  7786. "ref/netcore50/de/System.Net.Primitives.xml",
  7787. "ref/netcore50/es/System.Net.Primitives.xml",
  7788. "ref/netcore50/fr/System.Net.Primitives.xml",
  7789. "ref/netcore50/it/System.Net.Primitives.xml",
  7790. "ref/netcore50/ja/System.Net.Primitives.xml",
  7791. "ref/netcore50/ko/System.Net.Primitives.xml",
  7792. "ref/netcore50/ru/System.Net.Primitives.xml",
  7793. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7794. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7795. "ref/netstandard1.0/System.Net.Primitives.dll",
  7796. "ref/netstandard1.0/System.Net.Primitives.xml",
  7797. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7798. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7799. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7800. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7801. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7802. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7803. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7804. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7805. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7806. "ref/netstandard1.1/System.Net.Primitives.dll",
  7807. "ref/netstandard1.1/System.Net.Primitives.xml",
  7808. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7809. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7810. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7811. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7812. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7813. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7814. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7815. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7816. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7817. "ref/netstandard1.3/System.Net.Primitives.dll",
  7818. "ref/netstandard1.3/System.Net.Primitives.xml",
  7819. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7820. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7821. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7822. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7823. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7824. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7825. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7826. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7827. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7828. "ref/portable-net45+win8+wp8+wpa81/_._",
  7829. "ref/win8/_._",
  7830. "ref/wp80/_._",
  7831. "ref/wpa81/_._",
  7832. "ref/xamarinios10/_._",
  7833. "ref/xamarinmac20/_._",
  7834. "ref/xamarintvos10/_._",
  7835. "ref/xamarinwatchos10/_._",
  7836. "system.net.primitives.4.3.0.nupkg.sha512",
  7837. "system.net.primitives.nuspec"
  7838. ]
  7839. },
  7840. "System.Net.Sockets/4.3.0": {
  7841. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7842. "type": "package",
  7843. "path": "system.net.sockets/4.3.0",
  7844. "files": [
  7845. ".nupkg.metadata",
  7846. ".signature.p7s",
  7847. "ThirdPartyNotices.txt",
  7848. "dotnet_library_license.txt",
  7849. "lib/MonoAndroid10/_._",
  7850. "lib/MonoTouch10/_._",
  7851. "lib/net46/System.Net.Sockets.dll",
  7852. "lib/xamarinios10/_._",
  7853. "lib/xamarinmac20/_._",
  7854. "lib/xamarintvos10/_._",
  7855. "lib/xamarinwatchos10/_._",
  7856. "ref/MonoAndroid10/_._",
  7857. "ref/MonoTouch10/_._",
  7858. "ref/net46/System.Net.Sockets.dll",
  7859. "ref/netstandard1.3/System.Net.Sockets.dll",
  7860. "ref/netstandard1.3/System.Net.Sockets.xml",
  7861. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7862. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7863. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7864. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7865. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7866. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7867. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7868. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7869. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7870. "ref/xamarinios10/_._",
  7871. "ref/xamarinmac20/_._",
  7872. "ref/xamarintvos10/_._",
  7873. "ref/xamarinwatchos10/_._",
  7874. "system.net.sockets.4.3.0.nupkg.sha512",
  7875. "system.net.sockets.nuspec"
  7876. ]
  7877. },
  7878. "System.ObjectModel/4.3.0": {
  7879. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7880. "type": "package",
  7881. "path": "system.objectmodel/4.3.0",
  7882. "files": [
  7883. ".nupkg.metadata",
  7884. ".signature.p7s",
  7885. "ThirdPartyNotices.txt",
  7886. "dotnet_library_license.txt",
  7887. "lib/MonoAndroid10/_._",
  7888. "lib/MonoTouch10/_._",
  7889. "lib/net45/_._",
  7890. "lib/netcore50/System.ObjectModel.dll",
  7891. "lib/netstandard1.3/System.ObjectModel.dll",
  7892. "lib/portable-net45+win8+wp8+wpa81/_._",
  7893. "lib/win8/_._",
  7894. "lib/wp80/_._",
  7895. "lib/wpa81/_._",
  7896. "lib/xamarinios10/_._",
  7897. "lib/xamarinmac20/_._",
  7898. "lib/xamarintvos10/_._",
  7899. "lib/xamarinwatchos10/_._",
  7900. "ref/MonoAndroid10/_._",
  7901. "ref/MonoTouch10/_._",
  7902. "ref/net45/_._",
  7903. "ref/netcore50/System.ObjectModel.dll",
  7904. "ref/netcore50/System.ObjectModel.xml",
  7905. "ref/netcore50/de/System.ObjectModel.xml",
  7906. "ref/netcore50/es/System.ObjectModel.xml",
  7907. "ref/netcore50/fr/System.ObjectModel.xml",
  7908. "ref/netcore50/it/System.ObjectModel.xml",
  7909. "ref/netcore50/ja/System.ObjectModel.xml",
  7910. "ref/netcore50/ko/System.ObjectModel.xml",
  7911. "ref/netcore50/ru/System.ObjectModel.xml",
  7912. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7913. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7914. "ref/netstandard1.0/System.ObjectModel.dll",
  7915. "ref/netstandard1.0/System.ObjectModel.xml",
  7916. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7917. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7918. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7919. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7920. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7921. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7922. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7923. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7924. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7925. "ref/netstandard1.3/System.ObjectModel.dll",
  7926. "ref/netstandard1.3/System.ObjectModel.xml",
  7927. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7928. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7929. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7930. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7931. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7932. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7933. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7934. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7935. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7936. "ref/portable-net45+win8+wp8+wpa81/_._",
  7937. "ref/win8/_._",
  7938. "ref/wp80/_._",
  7939. "ref/wpa81/_._",
  7940. "ref/xamarinios10/_._",
  7941. "ref/xamarinmac20/_._",
  7942. "ref/xamarintvos10/_._",
  7943. "ref/xamarinwatchos10/_._",
  7944. "system.objectmodel.4.3.0.nupkg.sha512",
  7945. "system.objectmodel.nuspec"
  7946. ]
  7947. },
  7948. "System.Reflection/4.3.0": {
  7949. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7950. "type": "package",
  7951. "path": "system.reflection/4.3.0",
  7952. "files": [
  7953. ".nupkg.metadata",
  7954. ".signature.p7s",
  7955. "ThirdPartyNotices.txt",
  7956. "dotnet_library_license.txt",
  7957. "lib/MonoAndroid10/_._",
  7958. "lib/MonoTouch10/_._",
  7959. "lib/net45/_._",
  7960. "lib/net462/System.Reflection.dll",
  7961. "lib/portable-net45+win8+wp8+wpa81/_._",
  7962. "lib/win8/_._",
  7963. "lib/wp80/_._",
  7964. "lib/wpa81/_._",
  7965. "lib/xamarinios10/_._",
  7966. "lib/xamarinmac20/_._",
  7967. "lib/xamarintvos10/_._",
  7968. "lib/xamarinwatchos10/_._",
  7969. "ref/MonoAndroid10/_._",
  7970. "ref/MonoTouch10/_._",
  7971. "ref/net45/_._",
  7972. "ref/net462/System.Reflection.dll",
  7973. "ref/netcore50/System.Reflection.dll",
  7974. "ref/netcore50/System.Reflection.xml",
  7975. "ref/netcore50/de/System.Reflection.xml",
  7976. "ref/netcore50/es/System.Reflection.xml",
  7977. "ref/netcore50/fr/System.Reflection.xml",
  7978. "ref/netcore50/it/System.Reflection.xml",
  7979. "ref/netcore50/ja/System.Reflection.xml",
  7980. "ref/netcore50/ko/System.Reflection.xml",
  7981. "ref/netcore50/ru/System.Reflection.xml",
  7982. "ref/netcore50/zh-hans/System.Reflection.xml",
  7983. "ref/netcore50/zh-hant/System.Reflection.xml",
  7984. "ref/netstandard1.0/System.Reflection.dll",
  7985. "ref/netstandard1.0/System.Reflection.xml",
  7986. "ref/netstandard1.0/de/System.Reflection.xml",
  7987. "ref/netstandard1.0/es/System.Reflection.xml",
  7988. "ref/netstandard1.0/fr/System.Reflection.xml",
  7989. "ref/netstandard1.0/it/System.Reflection.xml",
  7990. "ref/netstandard1.0/ja/System.Reflection.xml",
  7991. "ref/netstandard1.0/ko/System.Reflection.xml",
  7992. "ref/netstandard1.0/ru/System.Reflection.xml",
  7993. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7994. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7995. "ref/netstandard1.3/System.Reflection.dll",
  7996. "ref/netstandard1.3/System.Reflection.xml",
  7997. "ref/netstandard1.3/de/System.Reflection.xml",
  7998. "ref/netstandard1.3/es/System.Reflection.xml",
  7999. "ref/netstandard1.3/fr/System.Reflection.xml",
  8000. "ref/netstandard1.3/it/System.Reflection.xml",
  8001. "ref/netstandard1.3/ja/System.Reflection.xml",
  8002. "ref/netstandard1.3/ko/System.Reflection.xml",
  8003. "ref/netstandard1.3/ru/System.Reflection.xml",
  8004. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8005. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8006. "ref/netstandard1.5/System.Reflection.dll",
  8007. "ref/netstandard1.5/System.Reflection.xml",
  8008. "ref/netstandard1.5/de/System.Reflection.xml",
  8009. "ref/netstandard1.5/es/System.Reflection.xml",
  8010. "ref/netstandard1.5/fr/System.Reflection.xml",
  8011. "ref/netstandard1.5/it/System.Reflection.xml",
  8012. "ref/netstandard1.5/ja/System.Reflection.xml",
  8013. "ref/netstandard1.5/ko/System.Reflection.xml",
  8014. "ref/netstandard1.5/ru/System.Reflection.xml",
  8015. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8016. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8017. "ref/portable-net45+win8+wp8+wpa81/_._",
  8018. "ref/win8/_._",
  8019. "ref/wp80/_._",
  8020. "ref/wpa81/_._",
  8021. "ref/xamarinios10/_._",
  8022. "ref/xamarinmac20/_._",
  8023. "ref/xamarintvos10/_._",
  8024. "ref/xamarinwatchos10/_._",
  8025. "system.reflection.4.3.0.nupkg.sha512",
  8026. "system.reflection.nuspec"
  8027. ]
  8028. },
  8029. "System.Reflection.Emit/4.3.0": {
  8030. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  8031. "type": "package",
  8032. "path": "system.reflection.emit/4.3.0",
  8033. "files": [
  8034. ".nupkg.metadata",
  8035. ".signature.p7s",
  8036. "ThirdPartyNotices.txt",
  8037. "dotnet_library_license.txt",
  8038. "lib/MonoAndroid10/_._",
  8039. "lib/monotouch10/_._",
  8040. "lib/net45/_._",
  8041. "lib/netcore50/System.Reflection.Emit.dll",
  8042. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8043. "lib/xamarinios10/_._",
  8044. "lib/xamarinmac20/_._",
  8045. "lib/xamarintvos10/_._",
  8046. "lib/xamarinwatchos10/_._",
  8047. "ref/MonoAndroid10/_._",
  8048. "ref/net45/_._",
  8049. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8050. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8051. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8052. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8053. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8054. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8055. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8056. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8057. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8058. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8059. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8060. "ref/xamarinmac20/_._",
  8061. "system.reflection.emit.4.3.0.nupkg.sha512",
  8062. "system.reflection.emit.nuspec"
  8063. ]
  8064. },
  8065. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8066. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8067. "type": "package",
  8068. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8069. "files": [
  8070. ".nupkg.metadata",
  8071. ".signature.p7s",
  8072. "ThirdPartyNotices.txt",
  8073. "dotnet_library_license.txt",
  8074. "lib/MonoAndroid10/_._",
  8075. "lib/MonoTouch10/_._",
  8076. "lib/net45/_._",
  8077. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8078. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8079. "lib/portable-net45+wp8/_._",
  8080. "lib/wp80/_._",
  8081. "lib/xamarinios10/_._",
  8082. "lib/xamarinmac20/_._",
  8083. "lib/xamarintvos10/_._",
  8084. "lib/xamarinwatchos10/_._",
  8085. "ref/MonoAndroid10/_._",
  8086. "ref/MonoTouch10/_._",
  8087. "ref/net45/_._",
  8088. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8089. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8090. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8091. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8092. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8093. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8094. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8095. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8096. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8097. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8098. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8099. "ref/portable-net45+wp8/_._",
  8100. "ref/wp80/_._",
  8101. "ref/xamarinios10/_._",
  8102. "ref/xamarinmac20/_._",
  8103. "ref/xamarintvos10/_._",
  8104. "ref/xamarinwatchos10/_._",
  8105. "runtimes/aot/lib/netcore50/_._",
  8106. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8107. "system.reflection.emit.ilgeneration.nuspec"
  8108. ]
  8109. },
  8110. "System.Reflection.Emit.Lightweight/4.3.0": {
  8111. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8112. "type": "package",
  8113. "path": "system.reflection.emit.lightweight/4.3.0",
  8114. "files": [
  8115. ".nupkg.metadata",
  8116. ".signature.p7s",
  8117. "ThirdPartyNotices.txt",
  8118. "dotnet_library_license.txt",
  8119. "lib/MonoAndroid10/_._",
  8120. "lib/MonoTouch10/_._",
  8121. "lib/net45/_._",
  8122. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8123. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8124. "lib/portable-net45+wp8/_._",
  8125. "lib/wp80/_._",
  8126. "lib/xamarinios10/_._",
  8127. "lib/xamarinmac20/_._",
  8128. "lib/xamarintvos10/_._",
  8129. "lib/xamarinwatchos10/_._",
  8130. "ref/MonoAndroid10/_._",
  8131. "ref/MonoTouch10/_._",
  8132. "ref/net45/_._",
  8133. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8134. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8135. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8136. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8137. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8138. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8139. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8140. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8141. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8142. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8143. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8144. "ref/portable-net45+wp8/_._",
  8145. "ref/wp80/_._",
  8146. "ref/xamarinios10/_._",
  8147. "ref/xamarinmac20/_._",
  8148. "ref/xamarintvos10/_._",
  8149. "ref/xamarinwatchos10/_._",
  8150. "runtimes/aot/lib/netcore50/_._",
  8151. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8152. "system.reflection.emit.lightweight.nuspec"
  8153. ]
  8154. },
  8155. "System.Reflection.Extensions/4.3.0": {
  8156. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8157. "type": "package",
  8158. "path": "system.reflection.extensions/4.3.0",
  8159. "files": [
  8160. ".nupkg.metadata",
  8161. ".signature.p7s",
  8162. "ThirdPartyNotices.txt",
  8163. "dotnet_library_license.txt",
  8164. "lib/MonoAndroid10/_._",
  8165. "lib/MonoTouch10/_._",
  8166. "lib/net45/_._",
  8167. "lib/portable-net45+win8+wp8+wpa81/_._",
  8168. "lib/win8/_._",
  8169. "lib/wp80/_._",
  8170. "lib/wpa81/_._",
  8171. "lib/xamarinios10/_._",
  8172. "lib/xamarinmac20/_._",
  8173. "lib/xamarintvos10/_._",
  8174. "lib/xamarinwatchos10/_._",
  8175. "ref/MonoAndroid10/_._",
  8176. "ref/MonoTouch10/_._",
  8177. "ref/net45/_._",
  8178. "ref/netcore50/System.Reflection.Extensions.dll",
  8179. "ref/netcore50/System.Reflection.Extensions.xml",
  8180. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8181. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8182. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8183. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8184. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8185. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8186. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8187. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8188. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8189. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8190. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8191. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8192. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8193. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8194. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8195. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8196. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8197. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8198. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8199. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8200. "ref/portable-net45+win8+wp8+wpa81/_._",
  8201. "ref/win8/_._",
  8202. "ref/wp80/_._",
  8203. "ref/wpa81/_._",
  8204. "ref/xamarinios10/_._",
  8205. "ref/xamarinmac20/_._",
  8206. "ref/xamarintvos10/_._",
  8207. "ref/xamarinwatchos10/_._",
  8208. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8209. "system.reflection.extensions.nuspec"
  8210. ]
  8211. },
  8212. "System.Reflection.Primitives/4.3.0": {
  8213. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8214. "type": "package",
  8215. "path": "system.reflection.primitives/4.3.0",
  8216. "files": [
  8217. ".nupkg.metadata",
  8218. ".signature.p7s",
  8219. "ThirdPartyNotices.txt",
  8220. "dotnet_library_license.txt",
  8221. "lib/MonoAndroid10/_._",
  8222. "lib/MonoTouch10/_._",
  8223. "lib/net45/_._",
  8224. "lib/portable-net45+win8+wp8+wpa81/_._",
  8225. "lib/win8/_._",
  8226. "lib/wp80/_._",
  8227. "lib/wpa81/_._",
  8228. "lib/xamarinios10/_._",
  8229. "lib/xamarinmac20/_._",
  8230. "lib/xamarintvos10/_._",
  8231. "lib/xamarinwatchos10/_._",
  8232. "ref/MonoAndroid10/_._",
  8233. "ref/MonoTouch10/_._",
  8234. "ref/net45/_._",
  8235. "ref/netcore50/System.Reflection.Primitives.dll",
  8236. "ref/netcore50/System.Reflection.Primitives.xml",
  8237. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8238. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8239. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8240. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8241. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8242. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8243. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8244. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8245. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8246. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8247. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8248. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8249. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8250. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8251. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8252. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8253. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8254. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8255. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8256. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8257. "ref/portable-net45+win8+wp8+wpa81/_._",
  8258. "ref/win8/_._",
  8259. "ref/wp80/_._",
  8260. "ref/wpa81/_._",
  8261. "ref/xamarinios10/_._",
  8262. "ref/xamarinmac20/_._",
  8263. "ref/xamarintvos10/_._",
  8264. "ref/xamarinwatchos10/_._",
  8265. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8266. "system.reflection.primitives.nuspec"
  8267. ]
  8268. },
  8269. "System.Reflection.TypeExtensions/4.3.0": {
  8270. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8271. "type": "package",
  8272. "path": "system.reflection.typeextensions/4.3.0",
  8273. "files": [
  8274. ".nupkg.metadata",
  8275. ".signature.p7s",
  8276. "ThirdPartyNotices.txt",
  8277. "dotnet_library_license.txt",
  8278. "lib/MonoAndroid10/_._",
  8279. "lib/MonoTouch10/_._",
  8280. "lib/net46/System.Reflection.TypeExtensions.dll",
  8281. "lib/net462/System.Reflection.TypeExtensions.dll",
  8282. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8283. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8284. "lib/xamarinios10/_._",
  8285. "lib/xamarinmac20/_._",
  8286. "lib/xamarintvos10/_._",
  8287. "lib/xamarinwatchos10/_._",
  8288. "ref/MonoAndroid10/_._",
  8289. "ref/MonoTouch10/_._",
  8290. "ref/net46/System.Reflection.TypeExtensions.dll",
  8291. "ref/net462/System.Reflection.TypeExtensions.dll",
  8292. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8293. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8294. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8295. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8296. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8297. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8298. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8299. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8300. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8301. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8302. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8303. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8304. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8305. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8306. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8307. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8308. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8309. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8310. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8311. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8312. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8313. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8314. "ref/xamarinios10/_._",
  8315. "ref/xamarinmac20/_._",
  8316. "ref/xamarintvos10/_._",
  8317. "ref/xamarinwatchos10/_._",
  8318. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8319. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8320. "system.reflection.typeextensions.nuspec"
  8321. ]
  8322. },
  8323. "System.Resources.ResourceManager/4.3.0": {
  8324. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8325. "type": "package",
  8326. "path": "system.resources.resourcemanager/4.3.0",
  8327. "files": [
  8328. ".nupkg.metadata",
  8329. ".signature.p7s",
  8330. "ThirdPartyNotices.txt",
  8331. "dotnet_library_license.txt",
  8332. "lib/MonoAndroid10/_._",
  8333. "lib/MonoTouch10/_._",
  8334. "lib/net45/_._",
  8335. "lib/portable-net45+win8+wp8+wpa81/_._",
  8336. "lib/win8/_._",
  8337. "lib/wp80/_._",
  8338. "lib/wpa81/_._",
  8339. "lib/xamarinios10/_._",
  8340. "lib/xamarinmac20/_._",
  8341. "lib/xamarintvos10/_._",
  8342. "lib/xamarinwatchos10/_._",
  8343. "ref/MonoAndroid10/_._",
  8344. "ref/MonoTouch10/_._",
  8345. "ref/net45/_._",
  8346. "ref/netcore50/System.Resources.ResourceManager.dll",
  8347. "ref/netcore50/System.Resources.ResourceManager.xml",
  8348. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8349. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8350. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8351. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8352. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8353. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8354. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8355. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8356. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8357. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8358. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8359. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8360. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8361. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8362. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8363. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8364. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8365. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8366. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8367. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8368. "ref/portable-net45+win8+wp8+wpa81/_._",
  8369. "ref/win8/_._",
  8370. "ref/wp80/_._",
  8371. "ref/wpa81/_._",
  8372. "ref/xamarinios10/_._",
  8373. "ref/xamarinmac20/_._",
  8374. "ref/xamarintvos10/_._",
  8375. "ref/xamarinwatchos10/_._",
  8376. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8377. "system.resources.resourcemanager.nuspec"
  8378. ]
  8379. },
  8380. "System.Runtime/4.3.0": {
  8381. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8382. "type": "package",
  8383. "path": "system.runtime/4.3.0",
  8384. "files": [
  8385. ".nupkg.metadata",
  8386. ".signature.p7s",
  8387. "ThirdPartyNotices.txt",
  8388. "dotnet_library_license.txt",
  8389. "lib/MonoAndroid10/_._",
  8390. "lib/MonoTouch10/_._",
  8391. "lib/net45/_._",
  8392. "lib/net462/System.Runtime.dll",
  8393. "lib/portable-net45+win8+wp80+wpa81/_._",
  8394. "lib/win8/_._",
  8395. "lib/wp80/_._",
  8396. "lib/wpa81/_._",
  8397. "lib/xamarinios10/_._",
  8398. "lib/xamarinmac20/_._",
  8399. "lib/xamarintvos10/_._",
  8400. "lib/xamarinwatchos10/_._",
  8401. "ref/MonoAndroid10/_._",
  8402. "ref/MonoTouch10/_._",
  8403. "ref/net45/_._",
  8404. "ref/net462/System.Runtime.dll",
  8405. "ref/netcore50/System.Runtime.dll",
  8406. "ref/netcore50/System.Runtime.xml",
  8407. "ref/netcore50/de/System.Runtime.xml",
  8408. "ref/netcore50/es/System.Runtime.xml",
  8409. "ref/netcore50/fr/System.Runtime.xml",
  8410. "ref/netcore50/it/System.Runtime.xml",
  8411. "ref/netcore50/ja/System.Runtime.xml",
  8412. "ref/netcore50/ko/System.Runtime.xml",
  8413. "ref/netcore50/ru/System.Runtime.xml",
  8414. "ref/netcore50/zh-hans/System.Runtime.xml",
  8415. "ref/netcore50/zh-hant/System.Runtime.xml",
  8416. "ref/netstandard1.0/System.Runtime.dll",
  8417. "ref/netstandard1.0/System.Runtime.xml",
  8418. "ref/netstandard1.0/de/System.Runtime.xml",
  8419. "ref/netstandard1.0/es/System.Runtime.xml",
  8420. "ref/netstandard1.0/fr/System.Runtime.xml",
  8421. "ref/netstandard1.0/it/System.Runtime.xml",
  8422. "ref/netstandard1.0/ja/System.Runtime.xml",
  8423. "ref/netstandard1.0/ko/System.Runtime.xml",
  8424. "ref/netstandard1.0/ru/System.Runtime.xml",
  8425. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8426. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8427. "ref/netstandard1.2/System.Runtime.dll",
  8428. "ref/netstandard1.2/System.Runtime.xml",
  8429. "ref/netstandard1.2/de/System.Runtime.xml",
  8430. "ref/netstandard1.2/es/System.Runtime.xml",
  8431. "ref/netstandard1.2/fr/System.Runtime.xml",
  8432. "ref/netstandard1.2/it/System.Runtime.xml",
  8433. "ref/netstandard1.2/ja/System.Runtime.xml",
  8434. "ref/netstandard1.2/ko/System.Runtime.xml",
  8435. "ref/netstandard1.2/ru/System.Runtime.xml",
  8436. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8437. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8438. "ref/netstandard1.3/System.Runtime.dll",
  8439. "ref/netstandard1.3/System.Runtime.xml",
  8440. "ref/netstandard1.3/de/System.Runtime.xml",
  8441. "ref/netstandard1.3/es/System.Runtime.xml",
  8442. "ref/netstandard1.3/fr/System.Runtime.xml",
  8443. "ref/netstandard1.3/it/System.Runtime.xml",
  8444. "ref/netstandard1.3/ja/System.Runtime.xml",
  8445. "ref/netstandard1.3/ko/System.Runtime.xml",
  8446. "ref/netstandard1.3/ru/System.Runtime.xml",
  8447. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8448. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8449. "ref/netstandard1.5/System.Runtime.dll",
  8450. "ref/netstandard1.5/System.Runtime.xml",
  8451. "ref/netstandard1.5/de/System.Runtime.xml",
  8452. "ref/netstandard1.5/es/System.Runtime.xml",
  8453. "ref/netstandard1.5/fr/System.Runtime.xml",
  8454. "ref/netstandard1.5/it/System.Runtime.xml",
  8455. "ref/netstandard1.5/ja/System.Runtime.xml",
  8456. "ref/netstandard1.5/ko/System.Runtime.xml",
  8457. "ref/netstandard1.5/ru/System.Runtime.xml",
  8458. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8459. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8460. "ref/portable-net45+win8+wp80+wpa81/_._",
  8461. "ref/win8/_._",
  8462. "ref/wp80/_._",
  8463. "ref/wpa81/_._",
  8464. "ref/xamarinios10/_._",
  8465. "ref/xamarinmac20/_._",
  8466. "ref/xamarintvos10/_._",
  8467. "ref/xamarinwatchos10/_._",
  8468. "system.runtime.4.3.0.nupkg.sha512",
  8469. "system.runtime.nuspec"
  8470. ]
  8471. },
  8472. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8473. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8474. "type": "package",
  8475. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8476. "files": [
  8477. ".nupkg.metadata",
  8478. ".signature.p7s",
  8479. "Icon.png",
  8480. "LICENSE.TXT",
  8481. "THIRD-PARTY-NOTICES.TXT",
  8482. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8483. "buildTransitive/netcoreapp3.1/_._",
  8484. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8485. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8486. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8487. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8488. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8489. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8490. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8491. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8492. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8493. "system.runtime.compilerservices.unsafe.nuspec",
  8494. "useSharedDesignerContext.txt"
  8495. ]
  8496. },
  8497. "System.Runtime.Extensions/4.3.0": {
  8498. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8499. "type": "package",
  8500. "path": "system.runtime.extensions/4.3.0",
  8501. "files": [
  8502. ".nupkg.metadata",
  8503. ".signature.p7s",
  8504. "ThirdPartyNotices.txt",
  8505. "dotnet_library_license.txt",
  8506. "lib/MonoAndroid10/_._",
  8507. "lib/MonoTouch10/_._",
  8508. "lib/net45/_._",
  8509. "lib/net462/System.Runtime.Extensions.dll",
  8510. "lib/portable-net45+win8+wp8+wpa81/_._",
  8511. "lib/win8/_._",
  8512. "lib/wp80/_._",
  8513. "lib/wpa81/_._",
  8514. "lib/xamarinios10/_._",
  8515. "lib/xamarinmac20/_._",
  8516. "lib/xamarintvos10/_._",
  8517. "lib/xamarinwatchos10/_._",
  8518. "ref/MonoAndroid10/_._",
  8519. "ref/MonoTouch10/_._",
  8520. "ref/net45/_._",
  8521. "ref/net462/System.Runtime.Extensions.dll",
  8522. "ref/netcore50/System.Runtime.Extensions.dll",
  8523. "ref/netcore50/System.Runtime.Extensions.xml",
  8524. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8525. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8526. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8527. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8528. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8529. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8530. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8531. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8532. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8533. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8534. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8535. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8536. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8537. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8538. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8539. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8540. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8541. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8542. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8543. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8544. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8545. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8546. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8547. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8548. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8549. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8550. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8551. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8552. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8553. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8554. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8555. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8556. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8557. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8558. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8559. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8560. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8561. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8562. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8563. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8564. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8565. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8566. "ref/portable-net45+win8+wp8+wpa81/_._",
  8567. "ref/win8/_._",
  8568. "ref/wp80/_._",
  8569. "ref/wpa81/_._",
  8570. "ref/xamarinios10/_._",
  8571. "ref/xamarinmac20/_._",
  8572. "ref/xamarintvos10/_._",
  8573. "ref/xamarinwatchos10/_._",
  8574. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8575. "system.runtime.extensions.nuspec"
  8576. ]
  8577. },
  8578. "System.Runtime.Handles/4.3.0": {
  8579. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8580. "type": "package",
  8581. "path": "system.runtime.handles/4.3.0",
  8582. "files": [
  8583. ".nupkg.metadata",
  8584. ".signature.p7s",
  8585. "ThirdPartyNotices.txt",
  8586. "dotnet_library_license.txt",
  8587. "lib/MonoAndroid10/_._",
  8588. "lib/MonoTouch10/_._",
  8589. "lib/net46/_._",
  8590. "lib/xamarinios10/_._",
  8591. "lib/xamarinmac20/_._",
  8592. "lib/xamarintvos10/_._",
  8593. "lib/xamarinwatchos10/_._",
  8594. "ref/MonoAndroid10/_._",
  8595. "ref/MonoTouch10/_._",
  8596. "ref/net46/_._",
  8597. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8598. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8599. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8600. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8601. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8602. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8603. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8604. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8605. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8606. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8607. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8608. "ref/xamarinios10/_._",
  8609. "ref/xamarinmac20/_._",
  8610. "ref/xamarintvos10/_._",
  8611. "ref/xamarinwatchos10/_._",
  8612. "system.runtime.handles.4.3.0.nupkg.sha512",
  8613. "system.runtime.handles.nuspec"
  8614. ]
  8615. },
  8616. "System.Runtime.InteropServices/4.3.0": {
  8617. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8618. "type": "package",
  8619. "path": "system.runtime.interopservices/4.3.0",
  8620. "files": [
  8621. ".nupkg.metadata",
  8622. ".signature.p7s",
  8623. "ThirdPartyNotices.txt",
  8624. "dotnet_library_license.txt",
  8625. "lib/MonoAndroid10/_._",
  8626. "lib/MonoTouch10/_._",
  8627. "lib/net45/_._",
  8628. "lib/net462/System.Runtime.InteropServices.dll",
  8629. "lib/net463/System.Runtime.InteropServices.dll",
  8630. "lib/portable-net45+win8+wpa81/_._",
  8631. "lib/win8/_._",
  8632. "lib/wpa81/_._",
  8633. "lib/xamarinios10/_._",
  8634. "lib/xamarinmac20/_._",
  8635. "lib/xamarintvos10/_._",
  8636. "lib/xamarinwatchos10/_._",
  8637. "ref/MonoAndroid10/_._",
  8638. "ref/MonoTouch10/_._",
  8639. "ref/net45/_._",
  8640. "ref/net462/System.Runtime.InteropServices.dll",
  8641. "ref/net463/System.Runtime.InteropServices.dll",
  8642. "ref/netcore50/System.Runtime.InteropServices.dll",
  8643. "ref/netcore50/System.Runtime.InteropServices.xml",
  8644. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8645. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8646. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8647. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8648. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8649. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8650. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8651. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8652. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8653. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8654. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8655. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8656. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8657. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8658. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8659. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8660. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8661. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8662. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8663. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8664. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8665. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8666. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8667. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8668. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8669. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8670. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8671. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8672. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8673. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8674. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8675. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8676. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8677. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8678. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8679. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8680. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8681. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8682. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8683. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8684. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8685. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8686. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8687. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8688. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8689. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8690. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8691. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8692. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8693. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8694. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8695. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8696. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8697. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8698. "ref/portable-net45+win8+wpa81/_._",
  8699. "ref/win8/_._",
  8700. "ref/wpa81/_._",
  8701. "ref/xamarinios10/_._",
  8702. "ref/xamarinmac20/_._",
  8703. "ref/xamarintvos10/_._",
  8704. "ref/xamarinwatchos10/_._",
  8705. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8706. "system.runtime.interopservices.nuspec"
  8707. ]
  8708. },
  8709. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8710. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8711. "type": "package",
  8712. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8713. "files": [
  8714. ".nupkg.metadata",
  8715. ".signature.p7s",
  8716. "ThirdPartyNotices.txt",
  8717. "dotnet_library_license.txt",
  8718. "lib/MonoAndroid10/_._",
  8719. "lib/MonoTouch10/_._",
  8720. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8721. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8722. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8723. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8724. "lib/xamarinios10/_._",
  8725. "lib/xamarinmac20/_._",
  8726. "lib/xamarintvos10/_._",
  8727. "lib/xamarinwatchos10/_._",
  8728. "ref/MonoAndroid10/_._",
  8729. "ref/MonoTouch10/_._",
  8730. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8731. "ref/xamarinios10/_._",
  8732. "ref/xamarinmac20/_._",
  8733. "ref/xamarintvos10/_._",
  8734. "ref/xamarinwatchos10/_._",
  8735. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8736. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8737. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8738. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8739. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8740. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8741. "system.runtime.interopservices.runtimeinformation.nuspec"
  8742. ]
  8743. },
  8744. "System.Runtime.Numerics/4.3.0": {
  8745. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8746. "type": "package",
  8747. "path": "system.runtime.numerics/4.3.0",
  8748. "files": [
  8749. ".nupkg.metadata",
  8750. ".signature.p7s",
  8751. "ThirdPartyNotices.txt",
  8752. "dotnet_library_license.txt",
  8753. "lib/MonoAndroid10/_._",
  8754. "lib/MonoTouch10/_._",
  8755. "lib/net45/_._",
  8756. "lib/netcore50/System.Runtime.Numerics.dll",
  8757. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8758. "lib/portable-net45+win8+wpa81/_._",
  8759. "lib/win8/_._",
  8760. "lib/wpa81/_._",
  8761. "lib/xamarinios10/_._",
  8762. "lib/xamarinmac20/_._",
  8763. "lib/xamarintvos10/_._",
  8764. "lib/xamarinwatchos10/_._",
  8765. "ref/MonoAndroid10/_._",
  8766. "ref/MonoTouch10/_._",
  8767. "ref/net45/_._",
  8768. "ref/netcore50/System.Runtime.Numerics.dll",
  8769. "ref/netcore50/System.Runtime.Numerics.xml",
  8770. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8771. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8772. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8773. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8774. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8775. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8776. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8777. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8778. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8779. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8780. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8781. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8782. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8783. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8784. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8785. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8786. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8787. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8788. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8789. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8790. "ref/portable-net45+win8+wpa81/_._",
  8791. "ref/win8/_._",
  8792. "ref/wpa81/_._",
  8793. "ref/xamarinios10/_._",
  8794. "ref/xamarinmac20/_._",
  8795. "ref/xamarintvos10/_._",
  8796. "ref/xamarinwatchos10/_._",
  8797. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8798. "system.runtime.numerics.nuspec"
  8799. ]
  8800. },
  8801. "System.Runtime.Serialization.Primitives/4.1.1": {
  8802. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  8803. "type": "package",
  8804. "path": "system.runtime.serialization.primitives/4.1.1",
  8805. "files": [
  8806. ".nupkg.metadata",
  8807. ".signature.p7s",
  8808. "ThirdPartyNotices.txt",
  8809. "dotnet_library_license.txt",
  8810. "lib/MonoAndroid10/_._",
  8811. "lib/MonoTouch10/_._",
  8812. "lib/net45/_._",
  8813. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8814. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8815. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8816. "lib/portable-net45+win8+wp8+wpa81/_._",
  8817. "lib/win8/_._",
  8818. "lib/wp80/_._",
  8819. "lib/wpa81/_._",
  8820. "lib/xamarinios10/_._",
  8821. "lib/xamarinmac20/_._",
  8822. "lib/xamarintvos10/_._",
  8823. "lib/xamarinwatchos10/_._",
  8824. "ref/MonoAndroid10/_._",
  8825. "ref/MonoTouch10/_._",
  8826. "ref/net45/_._",
  8827. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8828. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8829. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8830. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8831. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8832. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8833. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8834. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8835. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8836. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8837. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8838. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8839. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8840. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8841. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8842. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8843. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8844. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8845. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8846. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8847. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8848. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8849. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8850. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8851. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8852. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8853. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8854. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8855. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8856. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8857. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8858. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8859. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8860. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8861. "ref/portable-net45+win8+wp8+wpa81/_._",
  8862. "ref/win8/_._",
  8863. "ref/wp80/_._",
  8864. "ref/wpa81/_._",
  8865. "ref/xamarinios10/_._",
  8866. "ref/xamarinmac20/_._",
  8867. "ref/xamarintvos10/_._",
  8868. "ref/xamarinwatchos10/_._",
  8869. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8870. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  8871. "system.runtime.serialization.primitives.nuspec"
  8872. ]
  8873. },
  8874. "System.Security.AccessControl/5.0.0": {
  8875. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  8876. "type": "package",
  8877. "path": "system.security.accesscontrol/5.0.0",
  8878. "files": [
  8879. ".nupkg.metadata",
  8880. ".signature.p7s",
  8881. "Icon.png",
  8882. "LICENSE.TXT",
  8883. "THIRD-PARTY-NOTICES.TXT",
  8884. "lib/net46/System.Security.AccessControl.dll",
  8885. "lib/net461/System.Security.AccessControl.dll",
  8886. "lib/net461/System.Security.AccessControl.xml",
  8887. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8888. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8889. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8890. "lib/uap10.0.16299/_._",
  8891. "ref/net46/System.Security.AccessControl.dll",
  8892. "ref/net461/System.Security.AccessControl.dll",
  8893. "ref/net461/System.Security.AccessControl.xml",
  8894. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8895. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8896. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8897. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8898. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8899. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8900. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8901. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8902. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8903. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8904. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8905. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8906. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8907. "ref/uap10.0.16299/_._",
  8908. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8909. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8910. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8911. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8912. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8913. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8914. "runtimes/win/lib/uap10.0.16299/_._",
  8915. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  8916. "system.security.accesscontrol.nuspec",
  8917. "useSharedDesignerContext.txt",
  8918. "version.txt"
  8919. ]
  8920. },
  8921. "System.Security.Claims/4.3.0": {
  8922. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8923. "type": "package",
  8924. "path": "system.security.claims/4.3.0",
  8925. "files": [
  8926. ".nupkg.metadata",
  8927. ".signature.p7s",
  8928. "ThirdPartyNotices.txt",
  8929. "dotnet_library_license.txt",
  8930. "lib/MonoAndroid10/_._",
  8931. "lib/MonoTouch10/_._",
  8932. "lib/net46/System.Security.Claims.dll",
  8933. "lib/netstandard1.3/System.Security.Claims.dll",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net46/System.Security.Claims.dll",
  8941. "ref/netstandard1.3/System.Security.Claims.dll",
  8942. "ref/netstandard1.3/System.Security.Claims.xml",
  8943. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8944. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8945. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8946. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8947. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8948. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8949. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8950. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8951. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8952. "ref/xamarinios10/_._",
  8953. "ref/xamarinmac20/_._",
  8954. "ref/xamarintvos10/_._",
  8955. "ref/xamarinwatchos10/_._",
  8956. "system.security.claims.4.3.0.nupkg.sha512",
  8957. "system.security.claims.nuspec"
  8958. ]
  8959. },
  8960. "System.Security.Cryptography.Algorithms/4.3.0": {
  8961. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8962. "type": "package",
  8963. "path": "system.security.cryptography.algorithms/4.3.0",
  8964. "files": [
  8965. ".nupkg.metadata",
  8966. ".signature.p7s",
  8967. "ThirdPartyNotices.txt",
  8968. "dotnet_library_license.txt",
  8969. "lib/MonoAndroid10/_._",
  8970. "lib/MonoTouch10/_._",
  8971. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8972. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8973. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8974. "lib/xamarinios10/_._",
  8975. "lib/xamarinmac20/_._",
  8976. "lib/xamarintvos10/_._",
  8977. "lib/xamarinwatchos10/_._",
  8978. "ref/MonoAndroid10/_._",
  8979. "ref/MonoTouch10/_._",
  8980. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8981. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8982. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8983. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8984. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8985. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8986. "ref/xamarinios10/_._",
  8987. "ref/xamarinmac20/_._",
  8988. "ref/xamarintvos10/_._",
  8989. "ref/xamarinwatchos10/_._",
  8990. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8991. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8992. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8993. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8994. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8995. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8996. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8997. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8998. "system.security.cryptography.algorithms.nuspec"
  8999. ]
  9000. },
  9001. "System.Security.Cryptography.Cng/5.0.0": {
  9002. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  9003. "type": "package",
  9004. "path": "system.security.cryptography.cng/5.0.0",
  9005. "files": [
  9006. ".nupkg.metadata",
  9007. ".signature.p7s",
  9008. "Icon.png",
  9009. "LICENSE.TXT",
  9010. "THIRD-PARTY-NOTICES.TXT",
  9011. "lib/MonoAndroid10/_._",
  9012. "lib/MonoTouch10/_._",
  9013. "lib/net46/System.Security.Cryptography.Cng.dll",
  9014. "lib/net461/System.Security.Cryptography.Cng.dll",
  9015. "lib/net461/System.Security.Cryptography.Cng.xml",
  9016. "lib/net462/System.Security.Cryptography.Cng.dll",
  9017. "lib/net462/System.Security.Cryptography.Cng.xml",
  9018. "lib/net47/System.Security.Cryptography.Cng.dll",
  9019. "lib/net47/System.Security.Cryptography.Cng.xml",
  9020. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9021. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9022. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9023. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9024. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9025. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9026. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9027. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  9028. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  9029. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  9030. "lib/uap10.0.16299/_._",
  9031. "lib/xamarinios10/_._",
  9032. "lib/xamarinmac20/_._",
  9033. "lib/xamarintvos10/_._",
  9034. "lib/xamarinwatchos10/_._",
  9035. "ref/MonoAndroid10/_._",
  9036. "ref/MonoTouch10/_._",
  9037. "ref/net46/System.Security.Cryptography.Cng.dll",
  9038. "ref/net461/System.Security.Cryptography.Cng.dll",
  9039. "ref/net461/System.Security.Cryptography.Cng.xml",
  9040. "ref/net462/System.Security.Cryptography.Cng.dll",
  9041. "ref/net462/System.Security.Cryptography.Cng.xml",
  9042. "ref/net47/System.Security.Cryptography.Cng.dll",
  9043. "ref/net47/System.Security.Cryptography.Cng.xml",
  9044. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9045. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  9046. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9047. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  9048. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9049. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9050. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9051. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9052. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9053. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9054. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  9055. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  9056. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  9057. "ref/uap10.0.16299/_._",
  9058. "ref/xamarinios10/_._",
  9059. "ref/xamarinmac20/_._",
  9060. "ref/xamarintvos10/_._",
  9061. "ref/xamarinwatchos10/_._",
  9062. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9063. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9064. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  9065. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  9066. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  9067. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  9068. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  9069. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9070. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9071. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9072. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9073. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9074. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9075. "runtimes/win/lib/uap10.0.16299/_._",
  9076. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  9077. "system.security.cryptography.cng.nuspec",
  9078. "useSharedDesignerContext.txt",
  9079. "version.txt"
  9080. ]
  9081. },
  9082. "System.Security.Cryptography.Csp/4.3.0": {
  9083. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9084. "type": "package",
  9085. "path": "system.security.cryptography.csp/4.3.0",
  9086. "files": [
  9087. ".nupkg.metadata",
  9088. ".signature.p7s",
  9089. "ThirdPartyNotices.txt",
  9090. "dotnet_library_license.txt",
  9091. "lib/MonoAndroid10/_._",
  9092. "lib/MonoTouch10/_._",
  9093. "lib/net46/System.Security.Cryptography.Csp.dll",
  9094. "lib/xamarinios10/_._",
  9095. "lib/xamarinmac20/_._",
  9096. "lib/xamarintvos10/_._",
  9097. "lib/xamarinwatchos10/_._",
  9098. "ref/MonoAndroid10/_._",
  9099. "ref/MonoTouch10/_._",
  9100. "ref/net46/System.Security.Cryptography.Csp.dll",
  9101. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9102. "ref/xamarinios10/_._",
  9103. "ref/xamarinmac20/_._",
  9104. "ref/xamarintvos10/_._",
  9105. "ref/xamarinwatchos10/_._",
  9106. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9107. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9108. "runtimes/win/lib/netcore50/_._",
  9109. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9110. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9111. "system.security.cryptography.csp.nuspec"
  9112. ]
  9113. },
  9114. "System.Security.Cryptography.Encoding/4.3.0": {
  9115. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9116. "type": "package",
  9117. "path": "system.security.cryptography.encoding/4.3.0",
  9118. "files": [
  9119. ".nupkg.metadata",
  9120. ".signature.p7s",
  9121. "ThirdPartyNotices.txt",
  9122. "dotnet_library_license.txt",
  9123. "lib/MonoAndroid10/_._",
  9124. "lib/MonoTouch10/_._",
  9125. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9126. "lib/xamarinios10/_._",
  9127. "lib/xamarinmac20/_._",
  9128. "lib/xamarintvos10/_._",
  9129. "lib/xamarinwatchos10/_._",
  9130. "ref/MonoAndroid10/_._",
  9131. "ref/MonoTouch10/_._",
  9132. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9133. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9134. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9135. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9136. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9137. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9138. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9139. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9140. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9141. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9142. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9143. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9144. "ref/xamarinios10/_._",
  9145. "ref/xamarinmac20/_._",
  9146. "ref/xamarintvos10/_._",
  9147. "ref/xamarinwatchos10/_._",
  9148. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9149. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9150. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9151. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9152. "system.security.cryptography.encoding.nuspec"
  9153. ]
  9154. },
  9155. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9156. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9157. "type": "package",
  9158. "path": "system.security.cryptography.openssl/4.3.0",
  9159. "files": [
  9160. ".nupkg.metadata",
  9161. ".signature.p7s",
  9162. "ThirdPartyNotices.txt",
  9163. "dotnet_library_license.txt",
  9164. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9165. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9166. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9167. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9168. "system.security.cryptography.openssl.nuspec"
  9169. ]
  9170. },
  9171. "System.Security.Cryptography.Pkcs/5.0.0": {
  9172. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  9173. "type": "package",
  9174. "path": "system.security.cryptography.pkcs/5.0.0",
  9175. "files": [
  9176. ".nupkg.metadata",
  9177. ".signature.p7s",
  9178. "Icon.png",
  9179. "LICENSE.TXT",
  9180. "THIRD-PARTY-NOTICES.TXT",
  9181. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  9182. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  9183. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  9184. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9185. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9186. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9187. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9188. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9189. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9190. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9191. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9192. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  9193. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  9194. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  9195. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9196. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  9197. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9198. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9199. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9200. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9201. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9202. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9203. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9204. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  9205. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  9206. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  9207. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  9208. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  9209. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  9210. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  9211. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9212. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9213. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9214. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9215. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  9216. "system.security.cryptography.pkcs.nuspec",
  9217. "useSharedDesignerContext.txt",
  9218. "version.txt"
  9219. ]
  9220. },
  9221. "System.Security.Cryptography.Primitives/4.3.0": {
  9222. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9223. "type": "package",
  9224. "path": "system.security.cryptography.primitives/4.3.0",
  9225. "files": [
  9226. ".nupkg.metadata",
  9227. ".signature.p7s",
  9228. "ThirdPartyNotices.txt",
  9229. "dotnet_library_license.txt",
  9230. "lib/MonoAndroid10/_._",
  9231. "lib/MonoTouch10/_._",
  9232. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9233. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9234. "lib/xamarinios10/_._",
  9235. "lib/xamarinmac20/_._",
  9236. "lib/xamarintvos10/_._",
  9237. "lib/xamarinwatchos10/_._",
  9238. "ref/MonoAndroid10/_._",
  9239. "ref/MonoTouch10/_._",
  9240. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9241. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9242. "ref/xamarinios10/_._",
  9243. "ref/xamarinmac20/_._",
  9244. "ref/xamarintvos10/_._",
  9245. "ref/xamarinwatchos10/_._",
  9246. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9247. "system.security.cryptography.primitives.nuspec"
  9248. ]
  9249. },
  9250. "System.Security.Cryptography.ProtectedData/4.5.0": {
  9251. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  9252. "type": "package",
  9253. "path": "system.security.cryptography.protecteddata/4.5.0",
  9254. "files": [
  9255. ".nupkg.metadata",
  9256. ".signature.p7s",
  9257. "LICENSE.TXT",
  9258. "THIRD-PARTY-NOTICES.TXT",
  9259. "lib/MonoAndroid10/_._",
  9260. "lib/MonoTouch10/_._",
  9261. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9262. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9263. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9264. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9265. "lib/xamarinios10/_._",
  9266. "lib/xamarinmac20/_._",
  9267. "lib/xamarintvos10/_._",
  9268. "lib/xamarinwatchos10/_._",
  9269. "ref/MonoAndroid10/_._",
  9270. "ref/MonoTouch10/_._",
  9271. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9272. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9273. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9274. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9275. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9276. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9277. "ref/xamarinios10/_._",
  9278. "ref/xamarinmac20/_._",
  9279. "ref/xamarintvos10/_._",
  9280. "ref/xamarinwatchos10/_._",
  9281. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9282. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9283. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9284. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9285. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  9286. "system.security.cryptography.protecteddata.nuspec",
  9287. "useSharedDesignerContext.txt",
  9288. "version.txt"
  9289. ]
  9290. },
  9291. "System.Security.Cryptography.X509Certificates/4.3.2": {
  9292. "sha512": "uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
  9293. "type": "package",
  9294. "path": "system.security.cryptography.x509certificates/4.3.2",
  9295. "files": [
  9296. ".nupkg.metadata",
  9297. ".signature.p7s",
  9298. "ThirdPartyNotices.txt",
  9299. "dotnet_library_license.txt",
  9300. "lib/MonoAndroid10/_._",
  9301. "lib/MonoTouch10/_._",
  9302. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9303. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9304. "lib/xamarinios10/_._",
  9305. "lib/xamarinmac20/_._",
  9306. "lib/xamarintvos10/_._",
  9307. "lib/xamarinwatchos10/_._",
  9308. "ref/MonoAndroid10/_._",
  9309. "ref/MonoTouch10/_._",
  9310. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9311. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9312. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9313. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9314. "ref/xamarinios10/_._",
  9315. "ref/xamarinmac20/_._",
  9316. "ref/xamarintvos10/_._",
  9317. "ref/xamarinwatchos10/_._",
  9318. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9319. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9320. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9321. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9322. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9323. "system.security.cryptography.x509certificates.4.3.2.nupkg.sha512",
  9324. "system.security.cryptography.x509certificates.nuspec"
  9325. ]
  9326. },
  9327. "System.Security.Permissions/4.7.0": {
  9328. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9329. "type": "package",
  9330. "path": "system.security.permissions/4.7.0",
  9331. "files": [
  9332. ".nupkg.metadata",
  9333. ".signature.p7s",
  9334. "LICENSE.TXT",
  9335. "THIRD-PARTY-NOTICES.TXT",
  9336. "lib/net461/System.Security.Permissions.dll",
  9337. "lib/net461/System.Security.Permissions.xml",
  9338. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9339. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9340. "lib/netstandard2.0/System.Security.Permissions.dll",
  9341. "lib/netstandard2.0/System.Security.Permissions.xml",
  9342. "ref/net461/System.Security.Permissions.dll",
  9343. "ref/net461/System.Security.Permissions.xml",
  9344. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9345. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9346. "ref/netstandard2.0/System.Security.Permissions.dll",
  9347. "ref/netstandard2.0/System.Security.Permissions.xml",
  9348. "system.security.permissions.4.7.0.nupkg.sha512",
  9349. "system.security.permissions.nuspec",
  9350. "useSharedDesignerContext.txt",
  9351. "version.txt"
  9352. ]
  9353. },
  9354. "System.Security.Principal/4.3.0": {
  9355. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9356. "type": "package",
  9357. "path": "system.security.principal/4.3.0",
  9358. "files": [
  9359. ".nupkg.metadata",
  9360. ".signature.p7s",
  9361. "ThirdPartyNotices.txt",
  9362. "dotnet_library_license.txt",
  9363. "lib/MonoAndroid10/_._",
  9364. "lib/MonoTouch10/_._",
  9365. "lib/net45/_._",
  9366. "lib/netcore50/System.Security.Principal.dll",
  9367. "lib/netstandard1.0/System.Security.Principal.dll",
  9368. "lib/portable-net45+win8+wp8+wpa81/_._",
  9369. "lib/win8/_._",
  9370. "lib/wp80/_._",
  9371. "lib/wpa81/_._",
  9372. "lib/xamarinios10/_._",
  9373. "lib/xamarinmac20/_._",
  9374. "lib/xamarintvos10/_._",
  9375. "lib/xamarinwatchos10/_._",
  9376. "ref/MonoAndroid10/_._",
  9377. "ref/MonoTouch10/_._",
  9378. "ref/net45/_._",
  9379. "ref/netcore50/System.Security.Principal.dll",
  9380. "ref/netcore50/System.Security.Principal.xml",
  9381. "ref/netcore50/de/System.Security.Principal.xml",
  9382. "ref/netcore50/es/System.Security.Principal.xml",
  9383. "ref/netcore50/fr/System.Security.Principal.xml",
  9384. "ref/netcore50/it/System.Security.Principal.xml",
  9385. "ref/netcore50/ja/System.Security.Principal.xml",
  9386. "ref/netcore50/ko/System.Security.Principal.xml",
  9387. "ref/netcore50/ru/System.Security.Principal.xml",
  9388. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9389. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9390. "ref/netstandard1.0/System.Security.Principal.dll",
  9391. "ref/netstandard1.0/System.Security.Principal.xml",
  9392. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9393. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9394. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9395. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9396. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9397. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9398. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9399. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9400. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9401. "ref/portable-net45+win8+wp8+wpa81/_._",
  9402. "ref/win8/_._",
  9403. "ref/wp80/_._",
  9404. "ref/wpa81/_._",
  9405. "ref/xamarinios10/_._",
  9406. "ref/xamarinmac20/_._",
  9407. "ref/xamarintvos10/_._",
  9408. "ref/xamarinwatchos10/_._",
  9409. "system.security.principal.4.3.0.nupkg.sha512",
  9410. "system.security.principal.nuspec"
  9411. ]
  9412. },
  9413. "System.Security.Principal.Windows/5.0.0": {
  9414. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  9415. "type": "package",
  9416. "path": "system.security.principal.windows/5.0.0",
  9417. "files": [
  9418. ".nupkg.metadata",
  9419. ".signature.p7s",
  9420. "Icon.png",
  9421. "LICENSE.TXT",
  9422. "THIRD-PARTY-NOTICES.TXT",
  9423. "lib/net46/System.Security.Principal.Windows.dll",
  9424. "lib/net461/System.Security.Principal.Windows.dll",
  9425. "lib/net461/System.Security.Principal.Windows.xml",
  9426. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9427. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9428. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9429. "lib/uap10.0.16299/_._",
  9430. "ref/net46/System.Security.Principal.Windows.dll",
  9431. "ref/net461/System.Security.Principal.Windows.dll",
  9432. "ref/net461/System.Security.Principal.Windows.xml",
  9433. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9434. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9435. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9436. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9437. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9438. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9439. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9440. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9441. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9442. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9443. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9444. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9445. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9446. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9447. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9448. "ref/uap10.0.16299/_._",
  9449. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9450. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9451. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9452. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9453. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9454. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9455. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9456. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9457. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9458. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9459. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9460. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9461. "runtimes/win/lib/uap10.0.16299/_._",
  9462. "system.security.principal.windows.5.0.0.nupkg.sha512",
  9463. "system.security.principal.windows.nuspec",
  9464. "useSharedDesignerContext.txt",
  9465. "version.txt"
  9466. ]
  9467. },
  9468. "System.Text.Encoding/4.3.0": {
  9469. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9470. "type": "package",
  9471. "path": "system.text.encoding/4.3.0",
  9472. "files": [
  9473. ".nupkg.metadata",
  9474. ".signature.p7s",
  9475. "ThirdPartyNotices.txt",
  9476. "dotnet_library_license.txt",
  9477. "lib/MonoAndroid10/_._",
  9478. "lib/MonoTouch10/_._",
  9479. "lib/net45/_._",
  9480. "lib/portable-net45+win8+wp8+wpa81/_._",
  9481. "lib/win8/_._",
  9482. "lib/wp80/_._",
  9483. "lib/wpa81/_._",
  9484. "lib/xamarinios10/_._",
  9485. "lib/xamarinmac20/_._",
  9486. "lib/xamarintvos10/_._",
  9487. "lib/xamarinwatchos10/_._",
  9488. "ref/MonoAndroid10/_._",
  9489. "ref/MonoTouch10/_._",
  9490. "ref/net45/_._",
  9491. "ref/netcore50/System.Text.Encoding.dll",
  9492. "ref/netcore50/System.Text.Encoding.xml",
  9493. "ref/netcore50/de/System.Text.Encoding.xml",
  9494. "ref/netcore50/es/System.Text.Encoding.xml",
  9495. "ref/netcore50/fr/System.Text.Encoding.xml",
  9496. "ref/netcore50/it/System.Text.Encoding.xml",
  9497. "ref/netcore50/ja/System.Text.Encoding.xml",
  9498. "ref/netcore50/ko/System.Text.Encoding.xml",
  9499. "ref/netcore50/ru/System.Text.Encoding.xml",
  9500. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9501. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9502. "ref/netstandard1.0/System.Text.Encoding.dll",
  9503. "ref/netstandard1.0/System.Text.Encoding.xml",
  9504. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9505. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9506. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9507. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9508. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9509. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9510. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9511. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9512. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9513. "ref/netstandard1.3/System.Text.Encoding.dll",
  9514. "ref/netstandard1.3/System.Text.Encoding.xml",
  9515. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9516. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9517. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9518. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9519. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9520. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9521. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9522. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9523. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9524. "ref/portable-net45+win8+wp8+wpa81/_._",
  9525. "ref/win8/_._",
  9526. "ref/wp80/_._",
  9527. "ref/wpa81/_._",
  9528. "ref/xamarinios10/_._",
  9529. "ref/xamarinmac20/_._",
  9530. "ref/xamarintvos10/_._",
  9531. "ref/xamarinwatchos10/_._",
  9532. "system.text.encoding.4.3.0.nupkg.sha512",
  9533. "system.text.encoding.nuspec"
  9534. ]
  9535. },
  9536. "System.Text.Encoding.CodePages/5.0.0": {
  9537. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9538. "type": "package",
  9539. "path": "system.text.encoding.codepages/5.0.0",
  9540. "files": [
  9541. ".nupkg.metadata",
  9542. ".signature.p7s",
  9543. "Icon.png",
  9544. "LICENSE.TXT",
  9545. "THIRD-PARTY-NOTICES.TXT",
  9546. "lib/MonoAndroid10/_._",
  9547. "lib/MonoTouch10/_._",
  9548. "lib/net46/System.Text.Encoding.CodePages.dll",
  9549. "lib/net461/System.Text.Encoding.CodePages.dll",
  9550. "lib/net461/System.Text.Encoding.CodePages.xml",
  9551. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9552. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9553. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9554. "lib/xamarinios10/_._",
  9555. "lib/xamarinmac20/_._",
  9556. "lib/xamarintvos10/_._",
  9557. "lib/xamarinwatchos10/_._",
  9558. "ref/MonoAndroid10/_._",
  9559. "ref/MonoTouch10/_._",
  9560. "ref/xamarinios10/_._",
  9561. "ref/xamarinmac20/_._",
  9562. "ref/xamarintvos10/_._",
  9563. "ref/xamarinwatchos10/_._",
  9564. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9565. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9566. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9567. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9568. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9569. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9570. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9571. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9572. "system.text.encoding.codepages.nuspec",
  9573. "useSharedDesignerContext.txt",
  9574. "version.txt"
  9575. ]
  9576. },
  9577. "System.Text.Encoding.Extensions/4.3.0": {
  9578. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9579. "type": "package",
  9580. "path": "system.text.encoding.extensions/4.3.0",
  9581. "files": [
  9582. ".nupkg.metadata",
  9583. ".signature.p7s",
  9584. "ThirdPartyNotices.txt",
  9585. "dotnet_library_license.txt",
  9586. "lib/MonoAndroid10/_._",
  9587. "lib/MonoTouch10/_._",
  9588. "lib/net45/_._",
  9589. "lib/portable-net45+win8+wp8+wpa81/_._",
  9590. "lib/win8/_._",
  9591. "lib/wp80/_._",
  9592. "lib/wpa81/_._",
  9593. "lib/xamarinios10/_._",
  9594. "lib/xamarinmac20/_._",
  9595. "lib/xamarintvos10/_._",
  9596. "lib/xamarinwatchos10/_._",
  9597. "ref/MonoAndroid10/_._",
  9598. "ref/MonoTouch10/_._",
  9599. "ref/net45/_._",
  9600. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9601. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9602. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9603. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9604. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9605. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9606. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9607. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9608. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9609. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9610. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9611. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9612. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9613. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9614. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9615. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9616. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9617. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9618. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9619. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9620. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9621. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9622. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9623. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9624. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9625. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9626. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9627. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9628. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9629. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9630. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9631. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9632. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9633. "ref/portable-net45+win8+wp8+wpa81/_._",
  9634. "ref/win8/_._",
  9635. "ref/wp80/_._",
  9636. "ref/wpa81/_._",
  9637. "ref/xamarinios10/_._",
  9638. "ref/xamarinmac20/_._",
  9639. "ref/xamarintvos10/_._",
  9640. "ref/xamarinwatchos10/_._",
  9641. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9642. "system.text.encoding.extensions.nuspec"
  9643. ]
  9644. },
  9645. "System.Text.Json/4.7.2": {
  9646. "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
  9647. "type": "package",
  9648. "path": "system.text.json/4.7.2",
  9649. "files": [
  9650. ".nupkg.metadata",
  9651. ".signature.p7s",
  9652. "Icon.png",
  9653. "LICENSE.TXT",
  9654. "THIRD-PARTY-NOTICES.TXT",
  9655. "lib/net461/System.Text.Json.dll",
  9656. "lib/net461/System.Text.Json.xml",
  9657. "lib/netcoreapp3.0/System.Text.Json.dll",
  9658. "lib/netcoreapp3.0/System.Text.Json.xml",
  9659. "lib/netstandard2.0/System.Text.Json.dll",
  9660. "lib/netstandard2.0/System.Text.Json.xml",
  9661. "system.text.json.4.7.2.nupkg.sha512",
  9662. "system.text.json.nuspec",
  9663. "useSharedDesignerContext.txt",
  9664. "version.txt"
  9665. ]
  9666. },
  9667. "System.Text.RegularExpressions/4.3.0": {
  9668. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9669. "type": "package",
  9670. "path": "system.text.regularexpressions/4.3.0",
  9671. "files": [
  9672. ".nupkg.metadata",
  9673. ".signature.p7s",
  9674. "ThirdPartyNotices.txt",
  9675. "dotnet_library_license.txt",
  9676. "lib/MonoAndroid10/_._",
  9677. "lib/MonoTouch10/_._",
  9678. "lib/net45/_._",
  9679. "lib/net463/System.Text.RegularExpressions.dll",
  9680. "lib/netcore50/System.Text.RegularExpressions.dll",
  9681. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9682. "lib/portable-net45+win8+wp8+wpa81/_._",
  9683. "lib/win8/_._",
  9684. "lib/wp80/_._",
  9685. "lib/wpa81/_._",
  9686. "lib/xamarinios10/_._",
  9687. "lib/xamarinmac20/_._",
  9688. "lib/xamarintvos10/_._",
  9689. "lib/xamarinwatchos10/_._",
  9690. "ref/MonoAndroid10/_._",
  9691. "ref/MonoTouch10/_._",
  9692. "ref/net45/_._",
  9693. "ref/net463/System.Text.RegularExpressions.dll",
  9694. "ref/netcore50/System.Text.RegularExpressions.dll",
  9695. "ref/netcore50/System.Text.RegularExpressions.xml",
  9696. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9697. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9698. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9699. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9700. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9701. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9702. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9703. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9704. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9705. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9706. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9707. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9708. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9709. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9710. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9711. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9712. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9713. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9714. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9715. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9716. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9717. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9718. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9719. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9720. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9721. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9722. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9723. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9724. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9725. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9726. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9727. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9728. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9729. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9730. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9731. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9732. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9733. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9734. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9735. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9736. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9737. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9738. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9739. "ref/portable-net45+win8+wp8+wpa81/_._",
  9740. "ref/win8/_._",
  9741. "ref/wp80/_._",
  9742. "ref/wpa81/_._",
  9743. "ref/xamarinios10/_._",
  9744. "ref/xamarinmac20/_._",
  9745. "ref/xamarintvos10/_._",
  9746. "ref/xamarinwatchos10/_._",
  9747. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9748. "system.text.regularexpressions.nuspec"
  9749. ]
  9750. },
  9751. "System.Threading/4.3.0": {
  9752. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9753. "type": "package",
  9754. "path": "system.threading/4.3.0",
  9755. "files": [
  9756. ".nupkg.metadata",
  9757. ".signature.p7s",
  9758. "ThirdPartyNotices.txt",
  9759. "dotnet_library_license.txt",
  9760. "lib/MonoAndroid10/_._",
  9761. "lib/MonoTouch10/_._",
  9762. "lib/net45/_._",
  9763. "lib/netcore50/System.Threading.dll",
  9764. "lib/netstandard1.3/System.Threading.dll",
  9765. "lib/portable-net45+win8+wp8+wpa81/_._",
  9766. "lib/win8/_._",
  9767. "lib/wp80/_._",
  9768. "lib/wpa81/_._",
  9769. "lib/xamarinios10/_._",
  9770. "lib/xamarinmac20/_._",
  9771. "lib/xamarintvos10/_._",
  9772. "lib/xamarinwatchos10/_._",
  9773. "ref/MonoAndroid10/_._",
  9774. "ref/MonoTouch10/_._",
  9775. "ref/net45/_._",
  9776. "ref/netcore50/System.Threading.dll",
  9777. "ref/netcore50/System.Threading.xml",
  9778. "ref/netcore50/de/System.Threading.xml",
  9779. "ref/netcore50/es/System.Threading.xml",
  9780. "ref/netcore50/fr/System.Threading.xml",
  9781. "ref/netcore50/it/System.Threading.xml",
  9782. "ref/netcore50/ja/System.Threading.xml",
  9783. "ref/netcore50/ko/System.Threading.xml",
  9784. "ref/netcore50/ru/System.Threading.xml",
  9785. "ref/netcore50/zh-hans/System.Threading.xml",
  9786. "ref/netcore50/zh-hant/System.Threading.xml",
  9787. "ref/netstandard1.0/System.Threading.dll",
  9788. "ref/netstandard1.0/System.Threading.xml",
  9789. "ref/netstandard1.0/de/System.Threading.xml",
  9790. "ref/netstandard1.0/es/System.Threading.xml",
  9791. "ref/netstandard1.0/fr/System.Threading.xml",
  9792. "ref/netstandard1.0/it/System.Threading.xml",
  9793. "ref/netstandard1.0/ja/System.Threading.xml",
  9794. "ref/netstandard1.0/ko/System.Threading.xml",
  9795. "ref/netstandard1.0/ru/System.Threading.xml",
  9796. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9797. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9798. "ref/netstandard1.3/System.Threading.dll",
  9799. "ref/netstandard1.3/System.Threading.xml",
  9800. "ref/netstandard1.3/de/System.Threading.xml",
  9801. "ref/netstandard1.3/es/System.Threading.xml",
  9802. "ref/netstandard1.3/fr/System.Threading.xml",
  9803. "ref/netstandard1.3/it/System.Threading.xml",
  9804. "ref/netstandard1.3/ja/System.Threading.xml",
  9805. "ref/netstandard1.3/ko/System.Threading.xml",
  9806. "ref/netstandard1.3/ru/System.Threading.xml",
  9807. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9808. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9809. "ref/portable-net45+win8+wp8+wpa81/_._",
  9810. "ref/win8/_._",
  9811. "ref/wp80/_._",
  9812. "ref/wpa81/_._",
  9813. "ref/xamarinios10/_._",
  9814. "ref/xamarinmac20/_._",
  9815. "ref/xamarintvos10/_._",
  9816. "ref/xamarinwatchos10/_._",
  9817. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9818. "system.threading.4.3.0.nupkg.sha512",
  9819. "system.threading.nuspec"
  9820. ]
  9821. },
  9822. "System.Threading.Tasks/4.3.0": {
  9823. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9824. "type": "package",
  9825. "path": "system.threading.tasks/4.3.0",
  9826. "files": [
  9827. ".nupkg.metadata",
  9828. ".signature.p7s",
  9829. "ThirdPartyNotices.txt",
  9830. "dotnet_library_license.txt",
  9831. "lib/MonoAndroid10/_._",
  9832. "lib/MonoTouch10/_._",
  9833. "lib/net45/_._",
  9834. "lib/portable-net45+win8+wp8+wpa81/_._",
  9835. "lib/win8/_._",
  9836. "lib/wp80/_._",
  9837. "lib/wpa81/_._",
  9838. "lib/xamarinios10/_._",
  9839. "lib/xamarinmac20/_._",
  9840. "lib/xamarintvos10/_._",
  9841. "lib/xamarinwatchos10/_._",
  9842. "ref/MonoAndroid10/_._",
  9843. "ref/MonoTouch10/_._",
  9844. "ref/net45/_._",
  9845. "ref/netcore50/System.Threading.Tasks.dll",
  9846. "ref/netcore50/System.Threading.Tasks.xml",
  9847. "ref/netcore50/de/System.Threading.Tasks.xml",
  9848. "ref/netcore50/es/System.Threading.Tasks.xml",
  9849. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9850. "ref/netcore50/it/System.Threading.Tasks.xml",
  9851. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9852. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9853. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9854. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9855. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9856. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9857. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9858. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9859. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9860. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9861. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9862. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9863. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9864. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9865. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9866. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9867. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9868. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9869. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9870. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9871. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9872. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9873. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9874. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9875. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9876. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9877. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9878. "ref/portable-net45+win8+wp8+wpa81/_._",
  9879. "ref/win8/_._",
  9880. "ref/wp80/_._",
  9881. "ref/wpa81/_._",
  9882. "ref/xamarinios10/_._",
  9883. "ref/xamarinmac20/_._",
  9884. "ref/xamarintvos10/_._",
  9885. "ref/xamarinwatchos10/_._",
  9886. "system.threading.tasks.4.3.0.nupkg.sha512",
  9887. "system.threading.tasks.nuspec"
  9888. ]
  9889. },
  9890. "System.Threading.Tasks.Extensions/4.5.2": {
  9891. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  9892. "type": "package",
  9893. "path": "system.threading.tasks.extensions/4.5.2",
  9894. "files": [
  9895. ".nupkg.metadata",
  9896. ".signature.p7s",
  9897. "LICENSE.TXT",
  9898. "THIRD-PARTY-NOTICES.TXT",
  9899. "lib/MonoAndroid10/_._",
  9900. "lib/MonoTouch10/_._",
  9901. "lib/netcoreapp2.1/_._",
  9902. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9903. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9904. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9905. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9906. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9907. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9908. "lib/xamarinios10/_._",
  9909. "lib/xamarinmac20/_._",
  9910. "lib/xamarintvos10/_._",
  9911. "lib/xamarinwatchos10/_._",
  9912. "ref/MonoAndroid10/_._",
  9913. "ref/MonoTouch10/_._",
  9914. "ref/netcoreapp2.1/_._",
  9915. "ref/xamarinios10/_._",
  9916. "ref/xamarinmac20/_._",
  9917. "ref/xamarintvos10/_._",
  9918. "ref/xamarinwatchos10/_._",
  9919. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  9920. "system.threading.tasks.extensions.nuspec",
  9921. "useSharedDesignerContext.txt",
  9922. "version.txt"
  9923. ]
  9924. },
  9925. "System.Threading.Timer/4.3.0": {
  9926. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9927. "type": "package",
  9928. "path": "system.threading.timer/4.3.0",
  9929. "files": [
  9930. ".nupkg.metadata",
  9931. ".signature.p7s",
  9932. "ThirdPartyNotices.txt",
  9933. "dotnet_library_license.txt",
  9934. "lib/MonoAndroid10/_._",
  9935. "lib/MonoTouch10/_._",
  9936. "lib/net451/_._",
  9937. "lib/portable-net451+win81+wpa81/_._",
  9938. "lib/win81/_._",
  9939. "lib/wpa81/_._",
  9940. "lib/xamarinios10/_._",
  9941. "lib/xamarinmac20/_._",
  9942. "lib/xamarintvos10/_._",
  9943. "lib/xamarinwatchos10/_._",
  9944. "ref/MonoAndroid10/_._",
  9945. "ref/MonoTouch10/_._",
  9946. "ref/net451/_._",
  9947. "ref/netcore50/System.Threading.Timer.dll",
  9948. "ref/netcore50/System.Threading.Timer.xml",
  9949. "ref/netcore50/de/System.Threading.Timer.xml",
  9950. "ref/netcore50/es/System.Threading.Timer.xml",
  9951. "ref/netcore50/fr/System.Threading.Timer.xml",
  9952. "ref/netcore50/it/System.Threading.Timer.xml",
  9953. "ref/netcore50/ja/System.Threading.Timer.xml",
  9954. "ref/netcore50/ko/System.Threading.Timer.xml",
  9955. "ref/netcore50/ru/System.Threading.Timer.xml",
  9956. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9957. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9958. "ref/netstandard1.2/System.Threading.Timer.dll",
  9959. "ref/netstandard1.2/System.Threading.Timer.xml",
  9960. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9961. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9962. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9963. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9964. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9965. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9966. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9967. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9968. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9969. "ref/portable-net451+win81+wpa81/_._",
  9970. "ref/win81/_._",
  9971. "ref/wpa81/_._",
  9972. "ref/xamarinios10/_._",
  9973. "ref/xamarinmac20/_._",
  9974. "ref/xamarintvos10/_._",
  9975. "ref/xamarinwatchos10/_._",
  9976. "system.threading.timer.4.3.0.nupkg.sha512",
  9977. "system.threading.timer.nuspec"
  9978. ]
  9979. },
  9980. "System.Windows.Extensions/4.7.0": {
  9981. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9982. "type": "package",
  9983. "path": "system.windows.extensions/4.7.0",
  9984. "files": [
  9985. ".nupkg.metadata",
  9986. ".signature.p7s",
  9987. "LICENSE.TXT",
  9988. "THIRD-PARTY-NOTICES.TXT",
  9989. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9990. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9991. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9992. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9993. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9994. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9995. "system.windows.extensions.4.7.0.nupkg.sha512",
  9996. "system.windows.extensions.nuspec",
  9997. "useSharedDesignerContext.txt",
  9998. "version.txt"
  9999. ]
  10000. },
  10001. "System.Xml.ReaderWriter/4.3.0": {
  10002. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10003. "type": "package",
  10004. "path": "system.xml.readerwriter/4.3.0",
  10005. "files": [
  10006. ".nupkg.metadata",
  10007. ".signature.p7s",
  10008. "ThirdPartyNotices.txt",
  10009. "dotnet_library_license.txt",
  10010. "lib/MonoAndroid10/_._",
  10011. "lib/MonoTouch10/_._",
  10012. "lib/net45/_._",
  10013. "lib/net46/System.Xml.ReaderWriter.dll",
  10014. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10015. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10016. "lib/portable-net45+win8+wp8+wpa81/_._",
  10017. "lib/win8/_._",
  10018. "lib/wp80/_._",
  10019. "lib/wpa81/_._",
  10020. "lib/xamarinios10/_._",
  10021. "lib/xamarinmac20/_._",
  10022. "lib/xamarintvos10/_._",
  10023. "lib/xamarinwatchos10/_._",
  10024. "ref/MonoAndroid10/_._",
  10025. "ref/MonoTouch10/_._",
  10026. "ref/net45/_._",
  10027. "ref/net46/System.Xml.ReaderWriter.dll",
  10028. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10029. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10030. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10031. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10032. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10033. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10034. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10035. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10036. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10037. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10038. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10039. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10040. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10041. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10042. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10043. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10044. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10045. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10046. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10047. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10048. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10049. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10050. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10051. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10052. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10053. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10054. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10055. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10056. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10057. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10058. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10059. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10060. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10061. "ref/portable-net45+win8+wp8+wpa81/_._",
  10062. "ref/win8/_._",
  10063. "ref/wp80/_._",
  10064. "ref/wpa81/_._",
  10065. "ref/xamarinios10/_._",
  10066. "ref/xamarinmac20/_._",
  10067. "ref/xamarintvos10/_._",
  10068. "ref/xamarinwatchos10/_._",
  10069. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10070. "system.xml.readerwriter.nuspec"
  10071. ]
  10072. },
  10073. "System.Xml.XDocument/4.3.0": {
  10074. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10075. "type": "package",
  10076. "path": "system.xml.xdocument/4.3.0",
  10077. "files": [
  10078. ".nupkg.metadata",
  10079. ".signature.p7s",
  10080. "ThirdPartyNotices.txt",
  10081. "dotnet_library_license.txt",
  10082. "lib/MonoAndroid10/_._",
  10083. "lib/MonoTouch10/_._",
  10084. "lib/net45/_._",
  10085. "lib/netcore50/System.Xml.XDocument.dll",
  10086. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10087. "lib/portable-net45+win8+wp8+wpa81/_._",
  10088. "lib/win8/_._",
  10089. "lib/wp80/_._",
  10090. "lib/wpa81/_._",
  10091. "lib/xamarinios10/_._",
  10092. "lib/xamarinmac20/_._",
  10093. "lib/xamarintvos10/_._",
  10094. "lib/xamarinwatchos10/_._",
  10095. "ref/MonoAndroid10/_._",
  10096. "ref/MonoTouch10/_._",
  10097. "ref/net45/_._",
  10098. "ref/netcore50/System.Xml.XDocument.dll",
  10099. "ref/netcore50/System.Xml.XDocument.xml",
  10100. "ref/netcore50/de/System.Xml.XDocument.xml",
  10101. "ref/netcore50/es/System.Xml.XDocument.xml",
  10102. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10103. "ref/netcore50/it/System.Xml.XDocument.xml",
  10104. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10105. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10106. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10107. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10108. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10109. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10110. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10111. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10112. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10113. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10114. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10115. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10116. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10117. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10118. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10119. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10120. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10121. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10122. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10123. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10124. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10125. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10126. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10127. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10128. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10129. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10130. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10131. "ref/portable-net45+win8+wp8+wpa81/_._",
  10132. "ref/win8/_._",
  10133. "ref/wp80/_._",
  10134. "ref/wpa81/_._",
  10135. "ref/xamarinios10/_._",
  10136. "ref/xamarinmac20/_._",
  10137. "ref/xamarintvos10/_._",
  10138. "ref/xamarinwatchos10/_._",
  10139. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10140. "system.xml.xdocument.nuspec"
  10141. ]
  10142. },
  10143. "System.Xml.XmlDocument/4.3.0": {
  10144. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10145. "type": "package",
  10146. "path": "system.xml.xmldocument/4.3.0",
  10147. "files": [
  10148. ".nupkg.metadata",
  10149. ".signature.p7s",
  10150. "ThirdPartyNotices.txt",
  10151. "dotnet_library_license.txt",
  10152. "lib/MonoAndroid10/_._",
  10153. "lib/MonoTouch10/_._",
  10154. "lib/net46/System.Xml.XmlDocument.dll",
  10155. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10156. "lib/xamarinios10/_._",
  10157. "lib/xamarinmac20/_._",
  10158. "lib/xamarintvos10/_._",
  10159. "lib/xamarinwatchos10/_._",
  10160. "ref/MonoAndroid10/_._",
  10161. "ref/MonoTouch10/_._",
  10162. "ref/net46/System.Xml.XmlDocument.dll",
  10163. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10164. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10165. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10166. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10167. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10168. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10169. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10170. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10171. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10172. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10173. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10174. "ref/xamarinios10/_._",
  10175. "ref/xamarinmac20/_._",
  10176. "ref/xamarintvos10/_._",
  10177. "ref/xamarinwatchos10/_._",
  10178. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10179. "system.xml.xmldocument.nuspec"
  10180. ]
  10181. },
  10182. "System.Xml.XPath/4.3.0": {
  10183. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  10184. "type": "package",
  10185. "path": "system.xml.xpath/4.3.0",
  10186. "files": [
  10187. ".nupkg.metadata",
  10188. ".signature.p7s",
  10189. "ThirdPartyNotices.txt",
  10190. "dotnet_library_license.txt",
  10191. "lib/MonoAndroid10/_._",
  10192. "lib/MonoTouch10/_._",
  10193. "lib/net46/System.Xml.XPath.dll",
  10194. "lib/netstandard1.3/System.Xml.XPath.dll",
  10195. "lib/xamarinios10/_._",
  10196. "lib/xamarinmac20/_._",
  10197. "lib/xamarintvos10/_._",
  10198. "lib/xamarinwatchos10/_._",
  10199. "ref/MonoAndroid10/_._",
  10200. "ref/MonoTouch10/_._",
  10201. "ref/net46/System.Xml.XPath.dll",
  10202. "ref/netstandard1.3/System.Xml.XPath.dll",
  10203. "ref/netstandard1.3/System.Xml.XPath.xml",
  10204. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  10205. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  10206. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  10207. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  10208. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  10209. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  10210. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  10211. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  10212. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  10213. "ref/xamarinios10/_._",
  10214. "ref/xamarinmac20/_._",
  10215. "ref/xamarintvos10/_._",
  10216. "ref/xamarinwatchos10/_._",
  10217. "system.xml.xpath.4.3.0.nupkg.sha512",
  10218. "system.xml.xpath.nuspec"
  10219. ]
  10220. },
  10221. "System.Xml.XPath.XmlDocument/4.3.0": {
  10222. "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
  10223. "type": "package",
  10224. "path": "system.xml.xpath.xmldocument/4.3.0",
  10225. "files": [
  10226. ".nupkg.metadata",
  10227. ".signature.p7s",
  10228. "ThirdPartyNotices.txt",
  10229. "dotnet_library_license.txt",
  10230. "lib/MonoAndroid10/_._",
  10231. "lib/MonoTouch10/_._",
  10232. "lib/net46/System.Xml.XPath.XmlDocument.dll",
  10233. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  10234. "lib/xamarinios10/_._",
  10235. "lib/xamarinmac20/_._",
  10236. "lib/xamarintvos10/_._",
  10237. "lib/xamarinwatchos10/_._",
  10238. "ref/MonoAndroid10/_._",
  10239. "ref/MonoTouch10/_._",
  10240. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  10241. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  10242. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  10243. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  10244. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  10245. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  10246. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  10247. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  10248. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  10249. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  10250. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  10251. "ref/xamarinios10/_._",
  10252. "ref/xamarinmac20/_._",
  10253. "ref/xamarintvos10/_._",
  10254. "ref/xamarinwatchos10/_._",
  10255. "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
  10256. "system.xml.xpath.xmldocument.nuspec"
  10257. ]
  10258. },
  10259. "Unity.Abstractions/5.11.7": {
  10260. "sha512": "3ztwGEpe35UJlCUswXoi4uVDp8bJsgPsOmO71nZnNXh51II7t54AbezDbS6sR2z4QnMOpNGDaXbsEkyg6dIfOQ==",
  10261. "type": "package",
  10262. "path": "unity.abstractions/5.11.7",
  10263. "files": [
  10264. ".nupkg.metadata",
  10265. ".signature.p7s",
  10266. "lib/net40/Unity.Abstractions.dll",
  10267. "lib/net40/Unity.Abstractions.pdb",
  10268. "lib/net45/Unity.Abstractions.dll",
  10269. "lib/net45/Unity.Abstractions.pdb",
  10270. "lib/net46/Unity.Abstractions.dll",
  10271. "lib/net46/Unity.Abstractions.pdb",
  10272. "lib/net47/Unity.Abstractions.dll",
  10273. "lib/net47/Unity.Abstractions.pdb",
  10274. "lib/net48/Unity.Abstractions.dll",
  10275. "lib/net48/Unity.Abstractions.pdb",
  10276. "lib/netcoreapp1.0/Unity.Abstractions.dll",
  10277. "lib/netcoreapp1.0/Unity.Abstractions.pdb",
  10278. "lib/netcoreapp2.0/Unity.Abstractions.dll",
  10279. "lib/netcoreapp2.0/Unity.Abstractions.pdb",
  10280. "lib/netcoreapp3.0/Unity.Abstractions.dll",
  10281. "lib/netcoreapp3.0/Unity.Abstractions.pdb",
  10282. "lib/netstandard1.0/Unity.Abstractions.dll",
  10283. "lib/netstandard1.0/Unity.Abstractions.pdb",
  10284. "lib/netstandard2.0/Unity.Abstractions.dll",
  10285. "lib/netstandard2.0/Unity.Abstractions.pdb",
  10286. "unity.abstractions.5.11.7.nupkg.sha512",
  10287. "unity.abstractions.nuspec"
  10288. ]
  10289. },
  10290. "Unity.Container/5.11.11": {
  10291. "sha512": "47u4MBG8hxV2ZBUK7LlXcZQW8yWSqUSCRG+2/TBA2CSkxkQlMfVUJ0RJODJsZgsiSgy4N0M8HIr7J88drYR/OQ==",
  10292. "type": "package",
  10293. "path": "unity.container/5.11.11",
  10294. "files": [
  10295. ".nupkg.metadata",
  10296. ".signature.p7s",
  10297. "lib/net40/Unity.Container.dll",
  10298. "lib/net40/Unity.Container.pdb",
  10299. "lib/net45/Unity.Container.dll",
  10300. "lib/net45/Unity.Container.pdb",
  10301. "lib/net46/Unity.Container.dll",
  10302. "lib/net46/Unity.Container.pdb",
  10303. "lib/net47/Unity.Container.dll",
  10304. "lib/net47/Unity.Container.pdb",
  10305. "lib/net48/Unity.Container.dll",
  10306. "lib/net48/Unity.Container.pdb",
  10307. "lib/netcoreapp1.0/Unity.Container.dll",
  10308. "lib/netcoreapp1.0/Unity.Container.pdb",
  10309. "lib/netcoreapp2.0/Unity.Container.dll",
  10310. "lib/netcoreapp2.0/Unity.Container.pdb",
  10311. "lib/netcoreapp3.0/Unity.Container.dll",
  10312. "lib/netcoreapp3.0/Unity.Container.pdb",
  10313. "lib/netstandard1.0/Unity.Container.dll",
  10314. "lib/netstandard1.0/Unity.Container.pdb",
  10315. "lib/netstandard2.0/Unity.Container.dll",
  10316. "lib/netstandard2.0/Unity.Container.pdb",
  10317. "unity.container.5.11.11.nupkg.sha512",
  10318. "unity.container.nuspec"
  10319. ]
  10320. },
  10321. "Unity.Interception/5.11.1": {
  10322. "sha512": "q2SDcnfy3q6NrYANnV0E2XFPPQ9L+k+Rk3iztJF4vH5QPOeWQ8ooX26BbACPj5DAKUkUMeAdUdiobDkcpFZjBg==",
  10323. "type": "package",
  10324. "path": "unity.interception/5.11.1",
  10325. "files": [
  10326. ".nupkg.metadata",
  10327. ".signature.p7s",
  10328. "lib/net45/Unity.Interception.dll",
  10329. "lib/net45/Unity.Interception.pdb",
  10330. "lib/net46/Unity.Interception.dll",
  10331. "lib/net46/Unity.Interception.pdb",
  10332. "lib/net47/Unity.Interception.dll",
  10333. "lib/net47/Unity.Interception.pdb",
  10334. "lib/netcoreapp2.0/Unity.Interception.dll",
  10335. "lib/netcoreapp2.0/Unity.Interception.pdb",
  10336. "lib/netstandard2.0/Unity.Interception.dll",
  10337. "lib/netstandard2.0/Unity.Interception.pdb",
  10338. "unity.interception.5.11.1.nupkg.sha512",
  10339. "unity.interception.nuspec"
  10340. ]
  10341. },
  10342. "WpfAnimatedGif/2.0.0": {
  10343. "sha512": "Z468xEqg+MSSW30BkbIcwoCQ9E0GiRQxU6L9qYCUmP28fQ79Dq4QSakWm3Dfw8CoRY3xLl3gf1xRfqILSs6/mw==",
  10344. "type": "package",
  10345. "path": "wpfanimatedgif/2.0.0",
  10346. "files": [
  10347. ".nupkg.metadata",
  10348. ".signature.p7s",
  10349. "lib/net35/WpfAnimatedGif.dll",
  10350. "lib/net35/WpfAnimatedGif.pdb",
  10351. "lib/net35/WpfAnimatedGif.xml",
  10352. "lib/net40/WpfAnimatedGif.dll",
  10353. "lib/net40/WpfAnimatedGif.pdb",
  10354. "lib/net40/WpfAnimatedGif.xml",
  10355. "lib/netcoreapp3.0/WpfAnimatedGif.dll",
  10356. "lib/netcoreapp3.0/WpfAnimatedGif.pdb",
  10357. "lib/netcoreapp3.0/WpfAnimatedGif.xml",
  10358. "wpfanimatedgif.2.0.0.nupkg.sha512",
  10359. "wpfanimatedgif.nuspec"
  10360. ]
  10361. },
  10362. "YamlDotNet/11.2.1": {
  10363. "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==",
  10364. "type": "package",
  10365. "path": "yamldotnet/11.2.1",
  10366. "files": [
  10367. ".nupkg.metadata",
  10368. ".signature.p7s",
  10369. "LICENSE.txt",
  10370. "images/yamldotnet.png",
  10371. "lib/net20/YamlDotNet.dll",
  10372. "lib/net20/YamlDotNet.xml",
  10373. "lib/net35-client/YamlDotNet.dll",
  10374. "lib/net35-client/YamlDotNet.xml",
  10375. "lib/net35/YamlDotNet.dll",
  10376. "lib/net35/YamlDotNet.xml",
  10377. "lib/net45/YamlDotNet.dll",
  10378. "lib/net45/YamlDotNet.xml",
  10379. "lib/netstandard1.3/YamlDotNet.dll",
  10380. "lib/netstandard1.3/YamlDotNet.xml",
  10381. "lib/netstandard2.1/YamlDotNet.dll",
  10382. "lib/netstandard2.1/YamlDotNet.xml",
  10383. "yamldotnet.11.2.1.nupkg.sha512",
  10384. "yamldotnet.nuspec"
  10385. ]
  10386. },
  10387. "SHJX.Service.Common/1.0.0": {
  10388. "type": "project",
  10389. "path": "../SHJX.Service.Common/SHJX.Service.Common.csproj",
  10390. "msbuildProject": "../SHJX.Service.Common/SHJX.Service.Common.csproj"
  10391. },
  10392. "SHJX.Service.Control/1.0.0": {
  10393. "type": "project",
  10394. "path": "../SHJX.Service.Control/SHJX.Service.Control.csproj",
  10395. "msbuildProject": "../SHJX.Service.Control/SHJX.Service.Control.csproj"
  10396. },
  10397. "SHJX.Service.Library/1.0.0": {
  10398. "type": "project",
  10399. "path": "../SHJX.Service.Library/SHJX.Service.Library.csproj",
  10400. "msbuildProject": "../SHJX.Service.Library/SHJX.Service.Library.csproj"
  10401. },
  10402. "SHJX.Service.Main/1.0.0": {
  10403. "type": "project",
  10404. "path": "../SHJX.Service.Main/SHJX.Service.Main.csproj",
  10405. "msbuildProject": "../SHJX.Service.Main/SHJX.Service.Main.csproj"
  10406. },
  10407. "SHJX.Service.Model/1.0.0": {
  10408. "type": "project",
  10409. "path": "../SHJX.Service.Model/SHJX.Service.Model.csproj",
  10410. "msbuildProject": "../SHJX.Service.Model/SHJX.Service.Model.csproj"
  10411. },
  10412. "SHJX.Service.PortClient/1.0.0": {
  10413. "type": "project",
  10414. "path": "../SHJX.Service.PortClient/SHJX.Service.PortClient.csproj",
  10415. "msbuildProject": "../SHJX.Service.PortClient/SHJX.Service.PortClient.csproj"
  10416. },
  10417. "SHJX.Service.Resource/1.0.0": {
  10418. "type": "project",
  10419. "path": "../SHJX.Service.Resource/SHJX.Service.Resource.csproj",
  10420. "msbuildProject": "../SHJX.Service.Resource/SHJX.Service.Resource.csproj"
  10421. },
  10422. "SHJX.Service.WorkFlowEdit/1.0.0": {
  10423. "type": "project",
  10424. "path": "../SHJX.Service.WorkFlowEdit/SHJX.Service.WorkFlowEdit.csproj",
  10425. "msbuildProject": "../SHJX.Service.WorkFlowEdit/SHJX.Service.WorkFlowEdit.csproj"
  10426. },
  10427. "shjxCamera/1.0.0": {
  10428. "type": "project",
  10429. "path": "../SHJXCamera/SHJXCamera/shjxCamera.csproj",
  10430. "msbuildProject": "../SHJXCamera/SHJXCamera/shjxCamera.csproj"
  10431. }
  10432. },
  10433. "projectFileDependencyGroups": {
  10434. "net6.0-windows7.0": [
  10435. "EaseScheduler >= 0.0.0.6",
  10436. "LiveCharts.Wpf.NetCore3 >= 0.9.7",
  10437. "MahApps.Metro >= 2.4.9",
  10438. "Prism.Unity >= 8.1.97",
  10439. "SHJX.Service.Common >= 1.0.0",
  10440. "SHJX.Service.Control >= 1.0.0",
  10441. "SHJX.Service.Main >= 1.0.0",
  10442. "SHJX.Service.WorkFlowEdit >= 1.0.0",
  10443. "Unity.Interception >= 5.11.1"
  10444. ]
  10445. },
  10446. "packageFolders": {
  10447. "C:\\Users\\25109\\.nuget\\packages\\": {}
  10448. },
  10449. "project": {
  10450. "version": "24.8.23.151",
  10451. "restore": {
  10452. "projectUniqueName": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Shell\\SHJX.Service.Shell.csproj",
  10453. "projectName": "Hypermanganate Robot",
  10454. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Shell\\SHJX.Service.Shell.csproj",
  10455. "packagesPath": "C:\\Users\\25109\\.nuget\\packages\\",
  10456. "outputPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Shell\\obj\\",
  10457. "projectStyle": "PackageReference",
  10458. "configFilePaths": [
  10459. "C:\\Users\\25109\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10460. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10461. ],
  10462. "originalTargetFrameworks": [
  10463. "net6.0-windows"
  10464. ],
  10465. "sources": {
  10466. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10467. "https://api.nuget.org/v3/index.json": {}
  10468. },
  10469. "frameworks": {
  10470. "net6.0-windows7.0": {
  10471. "targetAlias": "net6.0-windows",
  10472. "projectReferences": {
  10473. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj": {
  10474. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Common\\SHJX.Service.Common.csproj"
  10475. },
  10476. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Control\\SHJX.Service.Control.csproj": {
  10477. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Control\\SHJX.Service.Control.csproj"
  10478. },
  10479. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Main\\SHJX.Service.Main.csproj": {
  10480. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.Main\\SHJX.Service.Main.csproj"
  10481. },
  10482. "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.WorkFlowEdit\\SHJX.Service.WorkFlowEdit.csproj": {
  10483. "projectPath": "C:\\Users\\25109\\Desktop\\新建文件夹 (2)\\高锰老流程周工滴定版本\\GMSYcode\\SHJX.Service.WorkFlowEdit\\SHJX.Service.WorkFlowEdit.csproj"
  10484. }
  10485. }
  10486. }
  10487. },
  10488. "warningProperties": {
  10489. "warnAsError": [
  10490. "NU1605"
  10491. ]
  10492. },
  10493. "restoreAuditProperties": {
  10494. "enableAudit": "true",
  10495. "auditLevel": "low",
  10496. "auditMode": "direct"
  10497. }
  10498. },
  10499. "frameworks": {
  10500. "net6.0-windows7.0": {
  10501. "targetAlias": "net6.0-windows",
  10502. "dependencies": {
  10503. "EaseScheduler": {
  10504. "target": "Package",
  10505. "version": "[0.0.0.6, )"
  10506. },
  10507. "LiveCharts.Wpf.NetCore3": {
  10508. "target": "Package",
  10509. "version": "[0.9.7, )"
  10510. },
  10511. "MahApps.Metro": {
  10512. "target": "Package",
  10513. "version": "[2.4.9, )"
  10514. },
  10515. "Prism.Unity": {
  10516. "target": "Package",
  10517. "version": "[8.1.97, )"
  10518. },
  10519. "Unity.Interception": {
  10520. "target": "Package",
  10521. "version": "[5.11.1, )"
  10522. }
  10523. },
  10524. "imports": [
  10525. "net461",
  10526. "net462",
  10527. "net47",
  10528. "net471",
  10529. "net472",
  10530. "net48",
  10531. "net481"
  10532. ],
  10533. "assetTargetFallback": true,
  10534. "warn": true,
  10535. "downloadDependencies": [
  10536. {
  10537. "name": "Microsoft.AspNetCore.App.Ref",
  10538. "version": "[6.0.27, 6.0.27]"
  10539. },
  10540. {
  10541. "name": "Microsoft.NETCore.App.Host.win-x64",
  10542. "version": "[6.0.27, 6.0.27]"
  10543. },
  10544. {
  10545. "name": "Microsoft.NETCore.App.Ref",
  10546. "version": "[6.0.27, 6.0.27]"
  10547. },
  10548. {
  10549. "name": "Microsoft.WindowsDesktop.App.Ref",
  10550. "version": "[6.0.27, 6.0.27]"
  10551. }
  10552. ],
  10553. "frameworkReferences": {
  10554. "Microsoft.NETCore.App": {
  10555. "privateAssets": "all"
  10556. },
  10557. "Microsoft.WindowsDesktop.App": {
  10558. "privateAssets": "none"
  10559. }
  10560. },
  10561. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300-preview.24203.14\\RuntimeIdentifierGraph.json"
  10562. }
  10563. }
  10564. },
  10565. "logs": [
  10566. {
  10567. "code": "NU1701",
  10568. "level": "Warning",
  10569. "warningLevel": 1,
  10570. "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”。此包可能与项目不完全兼容。",
  10571. "libraryId": "AForge",
  10572. "targetGraphs": [
  10573. "net6.0-windows7.0"
  10574. ]
  10575. },
  10576. {
  10577. "code": "NU1701",
  10578. "level": "Warning",
  10579. "warningLevel": 1,
  10580. "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”。此包可能与项目不完全兼容。",
  10581. "libraryId": "LiveCharts",
  10582. "targetGraphs": [
  10583. "net6.0-windows7.0"
  10584. ]
  10585. },
  10586. {
  10587. "code": "NU1701",
  10588. "level": "Warning",
  10589. "warningLevel": 1,
  10590. "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”。此包可能与项目不完全兼容。",
  10591. "libraryId": "LiveCharts.Wpf",
  10592. "targetGraphs": [
  10593. "net6.0-windows7.0"
  10594. ]
  10595. }
  10596. ]
  10597. }