project.assets.json 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.0.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/netstandard2.1/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/netstandard2.1/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "BouncyCastle.NetCore/1.8.5": {
  52. "type": "package",
  53. "compile": {
  54. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  55. "related": ".xml"
  56. }
  57. },
  58. "runtime": {
  59. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  60. "related": ".xml"
  61. }
  62. }
  63. },
  64. "Coravel/4.2.1": {
  65. "type": "package",
  66. "dependencies": {
  67. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  68. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  69. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  70. },
  71. "compile": {
  72. "lib/netstandard2.0/Coravel.dll": {
  73. "related": ".xml"
  74. }
  75. },
  76. "runtime": {
  77. "lib/netstandard2.0/Coravel.dll": {
  78. "related": ".xml"
  79. }
  80. }
  81. },
  82. "FBoxClientDriver/1.2.0": {
  83. "type": "package",
  84. "dependencies": {
  85. "FBoxClientDriver.Contract": "1.2.0",
  86. "IdentityModel": "4.3.1",
  87. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  88. "Microsoft.CSharp": "4.5.0",
  89. "Microsoft.Extensions.Logging": "3.1.5",
  90. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  91. "Newtonsoft.Json": "12.0.3",
  92. "Nito.AsyncEx.Coordination": "5.0.0",
  93. "NodaTime": "2.4.7",
  94. "System.ComponentModel.EventBasedAsync": "4.3.0",
  95. "System.IO.FileSystem": "4.3.0",
  96. "System.Net.Http": "4.3.2",
  97. "System.Reactive": "4.4.1",
  98. "System.Runtime.Serialization.Primitives": "4.3.0",
  99. "System.Threading.Thread": "4.3.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FBoxClientDriver.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/FBoxClientDriver.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "FBoxClientDriver.Contract/1.2.0": {
  113. "type": "package",
  114. "dependencies": {
  115. "Newtonsoft.Json": "12.0.3",
  116. "System.ComponentModel.Primitives": "4.3.0"
  117. },
  118. "compile": {
  119. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "FluentEmail.Core/3.0.2": {
  130. "type": "package",
  131. "dependencies": {
  132. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  133. },
  134. "compile": {
  135. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  136. },
  137. "runtime": {
  138. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  139. }
  140. },
  141. "FluentEmail.Smtp/3.0.2": {
  142. "type": "package",
  143. "dependencies": {
  144. "FluentEmail.Core": "3.0.2"
  145. },
  146. "compile": {
  147. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  148. },
  149. "runtime": {
  150. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  151. }
  152. },
  153. "Google.Protobuf/3.11.4": {
  154. "type": "package",
  155. "dependencies": {
  156. "System.Memory": "4.5.2"
  157. },
  158. "compile": {
  159. "lib/netstandard2.0/Google.Protobuf.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. },
  163. "runtime": {
  164. "lib/netstandard2.0/Google.Protobuf.dll": {
  165. "related": ".pdb;.xml"
  166. }
  167. }
  168. },
  169. "IdentityModel/4.3.1": {
  170. "type": "package",
  171. "dependencies": {
  172. "Newtonsoft.Json": "11.0.2",
  173. "System.Text.Encodings.Web": "4.7.0"
  174. },
  175. "compile": {
  176. "lib/netstandard2.0/IdentityModel.dll": {
  177. "related": ".pdb;.xml"
  178. }
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/IdentityModel.dll": {
  182. "related": ".pdb;.xml"
  183. }
  184. }
  185. },
  186. "InfluxData.Net/8.0.1": {
  187. "type": "package",
  188. "dependencies": {
  189. "Newtonsoft.Json": "10.0.3",
  190. "System.Net.Http": "4.3.2"
  191. },
  192. "compile": {
  193. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  194. "related": ".dll.config;.pdb"
  195. },
  196. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  197. "related": ".dll.config;.pdb"
  198. },
  199. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  200. "related": ".dll.config;.pdb"
  201. },
  202. "lib/netstandard2.0/InfluxData.Net.dll": {
  203. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  204. }
  205. },
  206. "runtime": {
  207. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  208. "related": ".dll.config;.pdb"
  209. },
  210. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  211. "related": ".dll.config;.pdb"
  212. },
  213. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  214. "related": ".dll.config;.pdb"
  215. },
  216. "lib/netstandard2.0/InfluxData.Net.dll": {
  217. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  218. }
  219. }
  220. },
  221. "InitQ/1.0.0.14": {
  222. "type": "package",
  223. "dependencies": {
  224. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  225. "Microsoft.Extensions.Hosting": "2.1.0",
  226. "Newtonsoft.Json": "13.0.1",
  227. "StackExchange.Redis": "1.2.4"
  228. },
  229. "compile": {
  230. "lib/netcoreapp2.1/InitQ.dll": {}
  231. },
  232. "runtime": {
  233. "lib/netcoreapp2.1/InitQ.dll": {}
  234. }
  235. },
  236. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  237. "type": "package",
  238. "dependencies": {
  239. "AdvancedStringBuilder": "0.1.0",
  240. "JavaScriptEngineSwitcher.Core": "3.21.0"
  241. },
  242. "compile": {
  243. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  244. "related": ".xml"
  245. }
  246. },
  247. "runtime": {
  248. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  249. "related": ".xml"
  250. }
  251. },
  252. "resource": {
  253. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  254. "locale": "ru-RU"
  255. }
  256. }
  257. },
  258. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  259. "type": "package",
  260. "runtimeTargets": {
  261. "runtimes/linux-x64/native/libChakraCore.so": {
  262. "assetType": "native",
  263. "rid": "linux-x64"
  264. }
  265. }
  266. },
  267. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  268. "type": "package",
  269. "build": {
  270. "build/_._": {}
  271. },
  272. "runtimeTargets": {
  273. "runtimes/win-x64/native/ChakraCore.dll": {
  274. "assetType": "native",
  275. "rid": "win-x64"
  276. }
  277. }
  278. },
  279. "JavaScriptEngineSwitcher.Core/3.21.0": {
  280. "type": "package",
  281. "dependencies": {
  282. "AdvancedStringBuilder": "0.1.0"
  283. },
  284. "compile": {
  285. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  286. "related": ".xml"
  287. }
  288. },
  289. "runtime": {
  290. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  291. "related": ".xml"
  292. }
  293. },
  294. "resource": {
  295. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  296. "locale": "ru-RU"
  297. }
  298. }
  299. },
  300. "K4os.Compression.LZ4/1.1.11": {
  301. "type": "package",
  302. "dependencies": {
  303. "System.Memory": "4.5.3"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "K4os.Compression.LZ4.Streams/1.1.11": {
  317. "type": "package",
  318. "dependencies": {
  319. "K4os.Compression.LZ4": "1.1.11",
  320. "K4os.Hash.xxHash": "1.0.6"
  321. },
  322. "compile": {
  323. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  324. "related": ".xml"
  325. }
  326. },
  327. "runtime": {
  328. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  329. "related": ".xml"
  330. }
  331. }
  332. },
  333. "K4os.Hash.xxHash/1.0.6": {
  334. "type": "package",
  335. "dependencies": {
  336. "System.Memory": "4.5.3"
  337. },
  338. "compile": {
  339. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  340. "related": ".xml"
  341. }
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  345. "related": ".xml"
  346. }
  347. }
  348. },
  349. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.EntityFrameworkCore": "5.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  361. "related": ".xml"
  362. }
  363. }
  364. },
  365. "log4net/2.0.17": {
  366. "type": "package",
  367. "dependencies": {
  368. "System.Configuration.ConfigurationManager": "4.5.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/log4net.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/log4net.dll": {
  377. "related": ".xml"
  378. }
  379. }
  380. },
  381. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  382. "type": "package",
  383. "dependencies": {
  384. "Newtonsoft.Json": "11.0.2"
  385. },
  386. "compile": {
  387. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  388. "related": ".pdb;.xml"
  389. }
  390. },
  391. "runtime": {
  392. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  393. "related": ".pdb;.xml"
  394. }
  395. }
  396. },
  397. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  398. "type": "package",
  399. "dependencies": {
  400. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  401. "System.Text.Encodings.Web": "4.5.0"
  402. },
  403. "compile": {
  404. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  405. "related": ".xml"
  406. }
  407. },
  408. "runtime": {
  409. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  410. "related": ".xml"
  411. }
  412. }
  413. },
  414. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  415. "type": "package",
  416. "dependencies": {
  417. "Microsoft.Extensions.Primitives": "5.0.0",
  418. "System.IO.Pipelines": "5.0.0"
  419. },
  420. "compile": {
  421. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "runtime": {
  426. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  427. "related": ".xml"
  428. }
  429. }
  430. },
  431. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  432. "type": "package",
  433. "dependencies": {
  434. "Microsoft.Extensions.Logging.Console": "3.1.30",
  435. "Newtonsoft.Json": "13.0.1"
  436. },
  437. "compile": {
  438. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  439. },
  440. "runtime": {
  441. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  442. },
  443. "frameworkReferences": [
  444. "Microsoft.AspNetCore.App"
  445. ]
  446. },
  447. "Microsoft.CSharp/4.5.0": {
  448. "type": "package",
  449. "compile": {
  450. "ref/netcoreapp2.0/_._": {}
  451. },
  452. "runtime": {
  453. "lib/netcoreapp2.0/_._": {}
  454. }
  455. },
  456. "Microsoft.EntityFrameworkCore/5.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  460. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  461. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  462. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  463. "Microsoft.Extensions.Logging": "5.0.0",
  464. "System.Collections.Immutable": "5.0.0",
  465. "System.ComponentModel.Annotations": "5.0.0",
  466. "System.Diagnostics.DiagnosticSource": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  470. "related": ".xml"
  471. }
  472. },
  473. "runtime": {
  474. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  475. "related": ".xml"
  476. }
  477. }
  478. },
  479. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  480. "type": "package",
  481. "compile": {
  482. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  483. "related": ".xml"
  484. }
  485. },
  486. "runtime": {
  487. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  488. "related": ".xml"
  489. }
  490. }
  491. },
  492. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  493. "type": "package",
  494. "compile": {
  495. "lib/netstandard2.0/_._": {}
  496. },
  497. "runtime": {
  498. "lib/netstandard2.0/_._": {}
  499. }
  500. },
  501. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  502. "type": "package",
  503. "dependencies": {
  504. "Microsoft.EntityFrameworkCore": "5.0.0",
  505. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  506. },
  507. "compile": {
  508. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  509. "related": ".xml"
  510. }
  511. },
  512. "runtime": {
  513. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  514. "related": ".xml"
  515. }
  516. }
  517. },
  518. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  519. "type": "package",
  520. "build": {
  521. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  522. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  523. },
  524. "buildMultiTargeting": {
  525. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  526. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  527. }
  528. },
  529. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  530. "type": "package",
  531. "dependencies": {
  532. "Microsoft.Extensions.Primitives": "5.0.0"
  533. },
  534. "compile": {
  535. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  536. "related": ".xml"
  537. }
  538. },
  539. "runtime": {
  540. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  541. "related": ".xml"
  542. }
  543. }
  544. },
  545. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  546. "type": "package",
  547. "dependencies": {
  548. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  549. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  550. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  551. "Microsoft.Extensions.Options": "5.0.0",
  552. "Microsoft.Extensions.Primitives": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.Configuration/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  569. "Microsoft.Extensions.Primitives": "5.0.0"
  570. },
  571. "compile": {
  572. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  573. "related": ".xml"
  574. }
  575. },
  576. "runtime": {
  577. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  578. "related": ".xml"
  579. }
  580. }
  581. },
  582. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  583. "type": "package",
  584. "dependencies": {
  585. "Microsoft.Extensions.Primitives": "5.0.0"
  586. },
  587. "compile": {
  588. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  589. "related": ".xml"
  590. }
  591. },
  592. "runtime": {
  593. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  594. "related": ".xml"
  595. }
  596. }
  597. },
  598. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  599. "type": "package",
  600. "dependencies": {
  601. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  602. },
  603. "compile": {
  604. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Extensions.Configuration": "5.0.0",
  618. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  619. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  620. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  621. "Microsoft.Extensions.Primitives": "5.0.0"
  622. },
  623. "compile": {
  624. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  625. "related": ".xml"
  626. }
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  630. "related": ".xml"
  631. }
  632. }
  633. },
  634. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  635. "type": "package",
  636. "dependencies": {
  637. "Microsoft.Extensions.Configuration": "5.0.0",
  638. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  639. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  640. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  641. },
  642. "compile": {
  643. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  644. "related": ".xml"
  645. }
  646. },
  647. "runtime": {
  648. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  649. "related": ".xml"
  650. }
  651. }
  652. },
  653. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  657. },
  658. "compile": {
  659. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  660. "related": ".xml"
  661. }
  662. },
  663. "runtime": {
  664. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  665. "related": ".xml"
  666. }
  667. }
  668. },
  669. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  670. "type": "package",
  671. "compile": {
  672. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  683. "type": "package",
  684. "dependencies": {
  685. "Microsoft.Extensions.Primitives": "5.0.0"
  686. },
  687. "compile": {
  688. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  689. "related": ".xml"
  690. }
  691. },
  692. "runtime": {
  693. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  694. "related": ".xml"
  695. }
  696. }
  697. },
  698. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  699. "type": "package",
  700. "dependencies": {
  701. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  702. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  703. "Microsoft.Extensions.Primitives": "5.0.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  717. "type": "package",
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  725. "related": ".xml"
  726. }
  727. }
  728. },
  729. "Microsoft.Extensions.Hosting/2.1.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.Extensions.Configuration": "2.1.0",
  733. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  734. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  735. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  736. "Microsoft.Extensions.Logging": "2.1.0"
  737. },
  738. "compile": {
  739. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  740. "related": ".xml"
  741. }
  742. },
  743. "runtime": {
  744. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  745. "related": ".xml"
  746. }
  747. }
  748. },
  749. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  750. "type": "package",
  751. "dependencies": {
  752. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  753. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  754. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  755. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  756. },
  757. "compile": {
  758. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.Extensions.Http/5.0.0": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  772. "Microsoft.Extensions.Logging": "5.0.0",
  773. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  774. "Microsoft.Extensions.Options": "5.0.0"
  775. },
  776. "compile": {
  777. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  778. "related": ".xml"
  779. }
  780. },
  781. "runtime": {
  782. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  783. "related": ".xml"
  784. }
  785. }
  786. },
  787. "Microsoft.Extensions.Logging/5.0.0": {
  788. "type": "package",
  789. "dependencies": {
  790. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  791. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  792. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  793. "Microsoft.Extensions.Options": "5.0.0"
  794. },
  795. "compile": {
  796. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  797. "related": ".xml"
  798. }
  799. },
  800. "runtime": {
  801. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  802. "related": ".xml"
  803. }
  804. }
  805. },
  806. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  807. "type": "package",
  808. "compile": {
  809. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  810. "related": ".xml"
  811. }
  812. },
  813. "runtime": {
  814. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  815. "related": ".xml"
  816. }
  817. }
  818. },
  819. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  820. "type": "package",
  821. "dependencies": {
  822. "Microsoft.Extensions.Logging": "3.1.30",
  823. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  824. },
  825. "compile": {
  826. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  827. "related": ".xml"
  828. }
  829. },
  830. "runtime": {
  831. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  832. "related": ".xml"
  833. }
  834. }
  835. },
  836. "Microsoft.Extensions.Logging.Console/3.1.30": {
  837. "type": "package",
  838. "dependencies": {
  839. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  840. "Microsoft.Extensions.Logging": "3.1.30",
  841. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  842. },
  843. "compile": {
  844. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  850. "related": ".xml"
  851. }
  852. }
  853. },
  854. "Microsoft.Extensions.Options/5.0.0": {
  855. "type": "package",
  856. "dependencies": {
  857. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  858. "Microsoft.Extensions.Primitives": "5.0.0"
  859. },
  860. "compile": {
  861. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  862. "related": ".xml"
  863. }
  864. },
  865. "runtime": {
  866. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  867. "related": ".xml"
  868. }
  869. }
  870. },
  871. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  872. "type": "package",
  873. "dependencies": {
  874. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  875. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  876. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  877. "Microsoft.Extensions.Options": "3.1.30"
  878. },
  879. "compile": {
  880. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "Microsoft.Extensions.Primitives/5.0.0": {
  891. "type": "package",
  892. "compile": {
  893. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  894. "related": ".xml"
  895. }
  896. },
  897. "runtime": {
  898. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  899. "related": ".xml"
  900. }
  901. }
  902. },
  903. "Microsoft.NETCore.Platforms/5.0.0": {
  904. "type": "package",
  905. "compile": {
  906. "lib/netstandard1.0/_._": {}
  907. },
  908. "runtime": {
  909. "lib/netstandard1.0/_._": {}
  910. }
  911. },
  912. "Microsoft.NETCore.Targets/1.1.0": {
  913. "type": "package",
  914. "compile": {
  915. "lib/netstandard1.0/_._": {}
  916. },
  917. "runtime": {
  918. "lib/netstandard1.0/_._": {}
  919. }
  920. },
  921. "Microsoft.OpenApi/1.2.3": {
  922. "type": "package",
  923. "compile": {
  924. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  925. "related": ".pdb;.xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  930. "related": ".pdb;.xml"
  931. }
  932. }
  933. },
  934. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  935. "type": "package",
  936. "build": {
  937. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  938. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  939. }
  940. },
  941. "Microsoft.Win32.Primitives/4.3.0": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.NETCore.Platforms": "1.1.0",
  945. "Microsoft.NETCore.Targets": "1.1.0",
  946. "System.Runtime": "4.3.0"
  947. },
  948. "compile": {
  949. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  950. "related": ".xml"
  951. }
  952. }
  953. },
  954. "Microsoft.Win32.SystemEvents/5.0.0": {
  955. "type": "package",
  956. "dependencies": {
  957. "Microsoft.NETCore.Platforms": "5.0.0"
  958. },
  959. "compile": {
  960. "ref/netstandard2.0/_._": {
  961. "related": ".xml"
  962. }
  963. },
  964. "runtime": {
  965. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtimeTargets": {
  970. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  971. "assetType": "runtime",
  972. "rid": "win"
  973. }
  974. }
  975. },
  976. "MySql.Data/8.0.23": {
  977. "type": "package",
  978. "dependencies": {
  979. "BouncyCastle.NetCore": "1.8.5",
  980. "Google.Protobuf": "3.11.4",
  981. "K4os.Compression.LZ4": "1.1.11",
  982. "K4os.Compression.LZ4.Streams": "1.1.11",
  983. "K4os.Hash.xxHash": "1.0.6",
  984. "SSH.NET": "2020.0.0-beta1",
  985. "System.Buffers": "4.5.1",
  986. "System.Configuration.ConfigurationManager": "4.4.1",
  987. "System.Security.Permissions": "4.7.0",
  988. "System.Text.Encoding.CodePages": "4.4.0"
  989. },
  990. "compile": {
  991. "lib/net5.0/MySql.Data.dll": {
  992. "related": ".xml"
  993. },
  994. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  995. "lib/net5.0/Zstandard.Net.dll": {}
  996. },
  997. "runtime": {
  998. "lib/net5.0/MySql.Data.dll": {
  999. "related": ".xml"
  1000. },
  1001. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1002. "lib/net5.0/Zstandard.Net.dll": {}
  1003. }
  1004. },
  1005. "MySqlConnector/1.1.0": {
  1006. "type": "package",
  1007. "compile": {
  1008. "lib/net5.0/MySqlConnector.dll": {
  1009. "related": ".xml"
  1010. }
  1011. },
  1012. "runtime": {
  1013. "lib/net5.0/MySqlConnector.dll": {
  1014. "related": ".xml"
  1015. }
  1016. }
  1017. },
  1018. "NETStandard.Library/1.6.1": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "Microsoft.NETCore.Platforms": "1.1.0",
  1022. "Microsoft.Win32.Primitives": "4.3.0",
  1023. "System.AppContext": "4.3.0",
  1024. "System.Collections": "4.3.0",
  1025. "System.Collections.Concurrent": "4.3.0",
  1026. "System.Console": "4.3.0",
  1027. "System.Diagnostics.Debug": "4.3.0",
  1028. "System.Diagnostics.Tools": "4.3.0",
  1029. "System.Diagnostics.Tracing": "4.3.0",
  1030. "System.Globalization": "4.3.0",
  1031. "System.Globalization.Calendars": "4.3.0",
  1032. "System.IO": "4.3.0",
  1033. "System.IO.Compression": "4.3.0",
  1034. "System.IO.Compression.ZipFile": "4.3.0",
  1035. "System.IO.FileSystem": "4.3.0",
  1036. "System.IO.FileSystem.Primitives": "4.3.0",
  1037. "System.Linq": "4.3.0",
  1038. "System.Linq.Expressions": "4.3.0",
  1039. "System.Net.Http": "4.3.0",
  1040. "System.Net.Primitives": "4.3.0",
  1041. "System.Net.Sockets": "4.3.0",
  1042. "System.ObjectModel": "4.3.0",
  1043. "System.Reflection": "4.3.0",
  1044. "System.Reflection.Extensions": "4.3.0",
  1045. "System.Reflection.Primitives": "4.3.0",
  1046. "System.Resources.ResourceManager": "4.3.0",
  1047. "System.Runtime": "4.3.0",
  1048. "System.Runtime.Extensions": "4.3.0",
  1049. "System.Runtime.Handles": "4.3.0",
  1050. "System.Runtime.InteropServices": "4.3.0",
  1051. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1052. "System.Runtime.Numerics": "4.3.0",
  1053. "System.Security.Cryptography.Algorithms": "4.3.0",
  1054. "System.Security.Cryptography.Encoding": "4.3.0",
  1055. "System.Security.Cryptography.Primitives": "4.3.0",
  1056. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1057. "System.Text.Encoding": "4.3.0",
  1058. "System.Text.Encoding.Extensions": "4.3.0",
  1059. "System.Text.RegularExpressions": "4.3.0",
  1060. "System.Threading": "4.3.0",
  1061. "System.Threading.Tasks": "4.3.0",
  1062. "System.Threading.Timer": "4.3.0",
  1063. "System.Xml.ReaderWriter": "4.3.0",
  1064. "System.Xml.XDocument": "4.3.0"
  1065. }
  1066. },
  1067. "Newtonsoft.Json/13.0.3": {
  1068. "type": "package",
  1069. "compile": {
  1070. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1071. "related": ".xml"
  1072. }
  1073. },
  1074. "runtime": {
  1075. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1076. "related": ".xml"
  1077. }
  1078. }
  1079. },
  1080. "Nito.AsyncEx.Coordination/5.0.0": {
  1081. "type": "package",
  1082. "dependencies": {
  1083. "Nito.AsyncEx.Tasks": "5.0.0",
  1084. "Nito.Collections.Deque": "1.0.4",
  1085. "Nito.Disposables": "2.0.0"
  1086. },
  1087. "compile": {
  1088. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1094. "related": ".xml"
  1095. }
  1096. }
  1097. },
  1098. "Nito.AsyncEx.Tasks/5.0.0": {
  1099. "type": "package",
  1100. "dependencies": {
  1101. "Nito.Disposables": "2.0.0"
  1102. },
  1103. "compile": {
  1104. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1105. "related": ".xml"
  1106. }
  1107. },
  1108. "runtime": {
  1109. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1110. "related": ".xml"
  1111. }
  1112. }
  1113. },
  1114. "Nito.Collections.Deque/1.0.4": {
  1115. "type": "package",
  1116. "compile": {
  1117. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1118. "related": ".xml"
  1119. }
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1123. "related": ".xml"
  1124. }
  1125. }
  1126. },
  1127. "Nito.Disposables/2.0.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "System.Collections.Immutable": "1.4.0"
  1131. },
  1132. "compile": {
  1133. "lib/netstandard2.0/Nito.Disposables.dll": {
  1134. "related": ".pdb;.xml"
  1135. }
  1136. },
  1137. "runtime": {
  1138. "lib/netstandard2.0/Nito.Disposables.dll": {
  1139. "related": ".pdb;.xml"
  1140. }
  1141. }
  1142. },
  1143. "NodaTime/2.4.7": {
  1144. "type": "package",
  1145. "compile": {
  1146. "lib/netstandard2.0/NodaTime.dll": {
  1147. "related": ".pdb;.xml"
  1148. }
  1149. },
  1150. "runtime": {
  1151. "lib/netstandard2.0/NodaTime.dll": {
  1152. "related": ".pdb;.xml"
  1153. }
  1154. }
  1155. },
  1156. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1157. "type": "package",
  1158. "dependencies": {
  1159. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1160. "MySqlConnector": "1.1.0"
  1161. },
  1162. "compile": {
  1163. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1164. "related": ".xml"
  1165. }
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1169. "related": ".xml"
  1170. }
  1171. }
  1172. },
  1173. "QRCoder/1.4.3": {
  1174. "type": "package",
  1175. "dependencies": {
  1176. "System.Drawing.Common": "5.0.3"
  1177. },
  1178. "compile": {
  1179. "lib/net5.0/QRCoder.dll": {}
  1180. },
  1181. "runtime": {
  1182. "lib/net5.0/QRCoder.dll": {}
  1183. }
  1184. },
  1185. "RabbitMQ.Client/6.8.1": {
  1186. "type": "package",
  1187. "dependencies": {
  1188. "System.Memory": "4.5.5",
  1189. "System.Threading.Channels": "7.0.0"
  1190. },
  1191. "compile": {
  1192. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1193. "related": ".xml"
  1194. }
  1195. },
  1196. "runtime": {
  1197. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1198. "related": ".xml"
  1199. }
  1200. }
  1201. },
  1202. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1203. "type": "package",
  1204. "runtimeTargets": {
  1205. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1206. "assetType": "native",
  1207. "rid": "debian.8-x64"
  1208. }
  1209. }
  1210. },
  1211. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1212. "type": "package",
  1213. "runtimeTargets": {
  1214. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1215. "assetType": "native",
  1216. "rid": "fedora.23-x64"
  1217. }
  1218. }
  1219. },
  1220. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1221. "type": "package",
  1222. "runtimeTargets": {
  1223. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1224. "assetType": "native",
  1225. "rid": "fedora.24-x64"
  1226. }
  1227. }
  1228. },
  1229. "runtime.native.System/4.3.0": {
  1230. "type": "package",
  1231. "dependencies": {
  1232. "Microsoft.NETCore.Platforms": "1.1.0",
  1233. "Microsoft.NETCore.Targets": "1.1.0"
  1234. },
  1235. "compile": {
  1236. "lib/netstandard1.0/_._": {}
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard1.0/_._": {}
  1240. }
  1241. },
  1242. "runtime.native.System.IO.Compression/4.3.0": {
  1243. "type": "package",
  1244. "dependencies": {
  1245. "Microsoft.NETCore.Platforms": "1.1.0",
  1246. "Microsoft.NETCore.Targets": "1.1.0"
  1247. },
  1248. "compile": {
  1249. "lib/netstandard1.0/_._": {}
  1250. },
  1251. "runtime": {
  1252. "lib/netstandard1.0/_._": {}
  1253. }
  1254. },
  1255. "runtime.native.System.Net.Http/4.3.0": {
  1256. "type": "package",
  1257. "dependencies": {
  1258. "Microsoft.NETCore.Platforms": "1.1.0",
  1259. "Microsoft.NETCore.Targets": "1.1.0"
  1260. },
  1261. "compile": {
  1262. "lib/netstandard1.0/_._": {}
  1263. },
  1264. "runtime": {
  1265. "lib/netstandard1.0/_._": {}
  1266. }
  1267. },
  1268. "runtime.native.System.Net.Security/4.3.0": {
  1269. "type": "package",
  1270. "dependencies": {
  1271. "Microsoft.NETCore.Platforms": "1.1.0",
  1272. "Microsoft.NETCore.Targets": "1.1.0"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard1.0/_._": {}
  1276. },
  1277. "runtime": {
  1278. "lib/netstandard1.0/_._": {}
  1279. }
  1280. },
  1281. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1282. "type": "package",
  1283. "dependencies": {
  1284. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1285. },
  1286. "compile": {
  1287. "lib/netstandard1.0/_._": {}
  1288. },
  1289. "runtime": {
  1290. "lib/netstandard1.0/_._": {}
  1291. }
  1292. },
  1293. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1294. "type": "package",
  1295. "dependencies": {
  1296. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1297. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1298. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1299. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1300. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1301. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1302. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1303. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1304. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1305. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1306. },
  1307. "compile": {
  1308. "lib/netstandard1.0/_._": {}
  1309. },
  1310. "runtime": {
  1311. "lib/netstandard1.0/_._": {}
  1312. }
  1313. },
  1314. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1315. "type": "package",
  1316. "runtimeTargets": {
  1317. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1318. "assetType": "native",
  1319. "rid": "opensuse.13.2-x64"
  1320. }
  1321. }
  1322. },
  1323. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1324. "type": "package",
  1325. "runtimeTargets": {
  1326. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1327. "assetType": "native",
  1328. "rid": "opensuse.42.1-x64"
  1329. }
  1330. }
  1331. },
  1332. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1333. "type": "package",
  1334. "runtimeTargets": {
  1335. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1336. "assetType": "native",
  1337. "rid": "osx.10.10-x64"
  1338. }
  1339. }
  1340. },
  1341. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1342. "type": "package",
  1343. "runtimeTargets": {
  1344. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1345. "assetType": "native",
  1346. "rid": "osx.10.10-x64"
  1347. }
  1348. }
  1349. },
  1350. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1351. "type": "package",
  1352. "runtimeTargets": {
  1353. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1354. "assetType": "native",
  1355. "rid": "rhel.7-x64"
  1356. }
  1357. }
  1358. },
  1359. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1360. "type": "package",
  1361. "runtimeTargets": {
  1362. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1363. "assetType": "native",
  1364. "rid": "ubuntu.14.04-x64"
  1365. }
  1366. }
  1367. },
  1368. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1369. "type": "package",
  1370. "runtimeTargets": {
  1371. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1372. "assetType": "native",
  1373. "rid": "ubuntu.16.04-x64"
  1374. }
  1375. }
  1376. },
  1377. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1378. "type": "package",
  1379. "runtimeTargets": {
  1380. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1381. "assetType": "native",
  1382. "rid": "ubuntu.16.10-x64"
  1383. }
  1384. }
  1385. },
  1386. "SixLabors.ImageSharp/2.1.6": {
  1387. "type": "package",
  1388. "dependencies": {
  1389. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1390. "System.Text.Encoding.CodePages": "5.0.0"
  1391. },
  1392. "compile": {
  1393. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1394. "related": ".xml"
  1395. }
  1396. },
  1397. "runtime": {
  1398. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1399. "related": ".xml"
  1400. }
  1401. }
  1402. },
  1403. "SSH.NET/2020.0.0-beta1": {
  1404. "type": "package",
  1405. "dependencies": {
  1406. "SshNet.Security.Cryptography": "[1.3.0]"
  1407. },
  1408. "compile": {
  1409. "lib/netstandard2.0/Renci.SshNet.dll": {
  1410. "related": ".xml"
  1411. }
  1412. },
  1413. "runtime": {
  1414. "lib/netstandard2.0/Renci.SshNet.dll": {
  1415. "related": ".xml"
  1416. }
  1417. }
  1418. },
  1419. "SshNet.Security.Cryptography/1.3.0": {
  1420. "type": "package",
  1421. "compile": {
  1422. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtime": {
  1427. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1428. "related": ".xml"
  1429. }
  1430. }
  1431. },
  1432. "StackExchange.Redis/1.2.4": {
  1433. "type": "package",
  1434. "dependencies": {
  1435. "NETStandard.Library": "1.6.1",
  1436. "System.Collections": "4.3.0",
  1437. "System.Collections.Concurrent": "4.3.0",
  1438. "System.Collections.NonGeneric": "4.3.0",
  1439. "System.Diagnostics.Tools": "4.3.0",
  1440. "System.IO.Compression": "4.3.0",
  1441. "System.IO.FileSystem": "4.3.0",
  1442. "System.Linq": "4.3.0",
  1443. "System.Net.NameResolution": "4.3.0",
  1444. "System.Net.Security": "4.3.0",
  1445. "System.Net.Sockets": "4.3.0",
  1446. "System.Reflection.Emit": "4.3.0",
  1447. "System.Reflection.Emit.Lightweight": "4.3.0",
  1448. "System.Reflection.TypeExtensions": "4.3.0",
  1449. "System.Runtime.Extensions": "4.3.0",
  1450. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1451. "System.Security.Cryptography.Algorithms": "4.3.0",
  1452. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1453. "System.Text.RegularExpressions": "4.3.0",
  1454. "System.Threading": "4.3.0",
  1455. "System.Threading.Thread": "4.3.0",
  1456. "System.Threading.ThreadPool": "4.3.0",
  1457. "System.Threading.Timer": "4.3.0"
  1458. },
  1459. "compile": {
  1460. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1461. "related": ".xml"
  1462. }
  1463. },
  1464. "runtime": {
  1465. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1466. "related": ".xml"
  1467. }
  1468. }
  1469. },
  1470. "Swashbuckle.AspNetCore/5.6.3": {
  1471. "type": "package",
  1472. "dependencies": {
  1473. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1474. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1475. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1476. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1477. },
  1478. "build": {
  1479. "build/Swashbuckle.AspNetCore.props": {}
  1480. }
  1481. },
  1482. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "Microsoft.OpenApi": "1.2.3"
  1486. },
  1487. "compile": {
  1488. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1489. "related": ".pdb;.xml"
  1490. }
  1491. },
  1492. "runtime": {
  1493. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1494. "related": ".pdb;.xml"
  1495. }
  1496. },
  1497. "frameworkReferences": [
  1498. "Microsoft.AspNetCore.App"
  1499. ]
  1500. },
  1501. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1502. "type": "package",
  1503. "dependencies": {
  1504. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1505. },
  1506. "compile": {
  1507. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1508. "related": ".pdb;.xml"
  1509. }
  1510. },
  1511. "runtime": {
  1512. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1513. "related": ".pdb;.xml"
  1514. }
  1515. },
  1516. "frameworkReferences": [
  1517. "Microsoft.AspNetCore.App"
  1518. ]
  1519. },
  1520. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1521. "type": "package",
  1522. "compile": {
  1523. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1524. "related": ".pdb;.xml"
  1525. }
  1526. },
  1527. "runtime": {
  1528. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1529. "related": ".pdb;.xml"
  1530. }
  1531. },
  1532. "frameworkReferences": [
  1533. "Microsoft.AspNetCore.App"
  1534. ]
  1535. },
  1536. "System.AppContext/4.3.0": {
  1537. "type": "package",
  1538. "dependencies": {
  1539. "System.Runtime": "4.3.0"
  1540. },
  1541. "compile": {
  1542. "ref/netstandard1.6/System.AppContext.dll": {
  1543. "related": ".xml"
  1544. }
  1545. },
  1546. "runtime": {
  1547. "lib/netstandard1.6/System.AppContext.dll": {}
  1548. }
  1549. },
  1550. "System.Buffers/4.5.1": {
  1551. "type": "package",
  1552. "compile": {
  1553. "ref/netcoreapp2.0/_._": {}
  1554. },
  1555. "runtime": {
  1556. "lib/netcoreapp2.0/_._": {}
  1557. }
  1558. },
  1559. "System.Collections/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "Microsoft.NETCore.Platforms": "1.1.0",
  1563. "Microsoft.NETCore.Targets": "1.1.0",
  1564. "System.Runtime": "4.3.0"
  1565. },
  1566. "compile": {
  1567. "ref/netstandard1.3/System.Collections.dll": {
  1568. "related": ".xml"
  1569. }
  1570. }
  1571. },
  1572. "System.Collections.Concurrent/4.3.0": {
  1573. "type": "package",
  1574. "dependencies": {
  1575. "System.Collections": "4.3.0",
  1576. "System.Diagnostics.Debug": "4.3.0",
  1577. "System.Diagnostics.Tracing": "4.3.0",
  1578. "System.Globalization": "4.3.0",
  1579. "System.Reflection": "4.3.0",
  1580. "System.Resources.ResourceManager": "4.3.0",
  1581. "System.Runtime": "4.3.0",
  1582. "System.Runtime.Extensions": "4.3.0",
  1583. "System.Threading": "4.3.0",
  1584. "System.Threading.Tasks": "4.3.0"
  1585. },
  1586. "compile": {
  1587. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1588. "related": ".xml"
  1589. }
  1590. },
  1591. "runtime": {
  1592. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1593. }
  1594. },
  1595. "System.Collections.Immutable/5.0.0": {
  1596. "type": "package",
  1597. "compile": {
  1598. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1599. "related": ".xml"
  1600. }
  1601. },
  1602. "runtime": {
  1603. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1604. "related": ".xml"
  1605. }
  1606. }
  1607. },
  1608. "System.Collections.NonGeneric/4.3.0": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "System.Diagnostics.Debug": "4.3.0",
  1612. "System.Globalization": "4.3.0",
  1613. "System.Resources.ResourceManager": "4.3.0",
  1614. "System.Runtime": "4.3.0",
  1615. "System.Runtime.Extensions": "4.3.0",
  1616. "System.Threading": "4.3.0"
  1617. },
  1618. "compile": {
  1619. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "runtime": {
  1624. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1625. }
  1626. },
  1627. "System.ComponentModel/4.3.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Runtime": "4.3.0"
  1631. },
  1632. "compile": {
  1633. "ref/netstandard1.0/System.ComponentModel.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1639. }
  1640. },
  1641. "System.ComponentModel.Annotations/5.0.0": {
  1642. "type": "package",
  1643. "compile": {
  1644. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1645. "related": ".xml"
  1646. }
  1647. },
  1648. "runtime": {
  1649. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1650. "related": ".xml"
  1651. }
  1652. }
  1653. },
  1654. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1655. "type": "package",
  1656. "dependencies": {
  1657. "System.Resources.ResourceManager": "4.3.0",
  1658. "System.Runtime": "4.3.0",
  1659. "System.Threading": "4.3.0",
  1660. "System.Threading.Tasks": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1664. "related": ".xml"
  1665. }
  1666. },
  1667. "runtime": {
  1668. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1669. }
  1670. },
  1671. "System.ComponentModel.Primitives/4.3.0": {
  1672. "type": "package",
  1673. "dependencies": {
  1674. "System.ComponentModel": "4.3.0",
  1675. "System.Resources.ResourceManager": "4.3.0",
  1676. "System.Runtime": "4.3.0"
  1677. },
  1678. "compile": {
  1679. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtime": {
  1684. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1685. }
  1686. },
  1687. "System.Configuration.ConfigurationManager/4.5.0": {
  1688. "type": "package",
  1689. "dependencies": {
  1690. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1691. "System.Security.Permissions": "4.5.0"
  1692. },
  1693. "compile": {
  1694. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1695. "related": ".xml"
  1696. }
  1697. },
  1698. "runtime": {
  1699. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1700. }
  1701. },
  1702. "System.Console/4.3.0": {
  1703. "type": "package",
  1704. "dependencies": {
  1705. "Microsoft.NETCore.Platforms": "1.1.0",
  1706. "Microsoft.NETCore.Targets": "1.1.0",
  1707. "System.IO": "4.3.0",
  1708. "System.Runtime": "4.3.0",
  1709. "System.Text.Encoding": "4.3.0"
  1710. },
  1711. "compile": {
  1712. "ref/netstandard1.3/System.Console.dll": {
  1713. "related": ".xml"
  1714. }
  1715. }
  1716. },
  1717. "System.Diagnostics.Debug/4.3.0": {
  1718. "type": "package",
  1719. "dependencies": {
  1720. "Microsoft.NETCore.Platforms": "1.1.0",
  1721. "Microsoft.NETCore.Targets": "1.1.0",
  1722. "System.Runtime": "4.3.0"
  1723. },
  1724. "compile": {
  1725. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1726. "related": ".xml"
  1727. }
  1728. }
  1729. },
  1730. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1731. "type": "package",
  1732. "compile": {
  1733. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1734. "related": ".xml"
  1735. }
  1736. },
  1737. "runtime": {
  1738. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Diagnostics.Tools/4.3.0": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.1.0",
  1747. "Microsoft.NETCore.Targets": "1.1.0",
  1748. "System.Runtime": "4.3.0"
  1749. },
  1750. "compile": {
  1751. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1752. "related": ".xml"
  1753. }
  1754. }
  1755. },
  1756. "System.Diagnostics.Tracing/4.3.0": {
  1757. "type": "package",
  1758. "dependencies": {
  1759. "Microsoft.NETCore.Platforms": "1.1.0",
  1760. "Microsoft.NETCore.Targets": "1.1.0",
  1761. "System.Runtime": "4.3.0"
  1762. },
  1763. "compile": {
  1764. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1765. "related": ".xml"
  1766. }
  1767. }
  1768. },
  1769. "System.Drawing.Common/5.0.3": {
  1770. "type": "package",
  1771. "dependencies": {
  1772. "Microsoft.Win32.SystemEvents": "5.0.0"
  1773. },
  1774. "compile": {
  1775. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1776. "related": ".xml"
  1777. }
  1778. },
  1779. "runtime": {
  1780. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1781. "related": ".xml"
  1782. }
  1783. },
  1784. "runtimeTargets": {
  1785. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1786. "assetType": "runtime",
  1787. "rid": "unix"
  1788. },
  1789. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1790. "assetType": "runtime",
  1791. "rid": "win"
  1792. }
  1793. }
  1794. },
  1795. "System.Globalization/4.3.0": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "1.1.0",
  1799. "Microsoft.NETCore.Targets": "1.1.0",
  1800. "System.Runtime": "4.3.0"
  1801. },
  1802. "compile": {
  1803. "ref/netstandard1.3/System.Globalization.dll": {
  1804. "related": ".xml"
  1805. }
  1806. }
  1807. },
  1808. "System.Globalization.Calendars/4.3.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "Microsoft.NETCore.Platforms": "1.1.0",
  1812. "Microsoft.NETCore.Targets": "1.1.0",
  1813. "System.Globalization": "4.3.0",
  1814. "System.Runtime": "4.3.0"
  1815. },
  1816. "compile": {
  1817. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1818. "related": ".xml"
  1819. }
  1820. }
  1821. },
  1822. "System.Globalization.Extensions/4.3.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.NETCore.Platforms": "1.1.0",
  1826. "System.Globalization": "4.3.0",
  1827. "System.Resources.ResourceManager": "4.3.0",
  1828. "System.Runtime": "4.3.0",
  1829. "System.Runtime.Extensions": "4.3.0",
  1830. "System.Runtime.InteropServices": "4.3.0"
  1831. },
  1832. "compile": {
  1833. "ref/netstandard1.3/_._": {
  1834. "related": ".xml"
  1835. }
  1836. },
  1837. "runtimeTargets": {
  1838. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1839. "assetType": "runtime",
  1840. "rid": "unix"
  1841. },
  1842. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1843. "assetType": "runtime",
  1844. "rid": "win"
  1845. }
  1846. }
  1847. },
  1848. "System.IO/4.3.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "1.1.0",
  1852. "Microsoft.NETCore.Targets": "1.1.0",
  1853. "System.Runtime": "4.3.0",
  1854. "System.Text.Encoding": "4.3.0",
  1855. "System.Threading.Tasks": "4.3.0"
  1856. },
  1857. "compile": {
  1858. "ref/netstandard1.5/System.IO.dll": {
  1859. "related": ".xml"
  1860. }
  1861. }
  1862. },
  1863. "System.IO.Compression/4.3.0": {
  1864. "type": "package",
  1865. "dependencies": {
  1866. "Microsoft.NETCore.Platforms": "1.1.0",
  1867. "System.Buffers": "4.3.0",
  1868. "System.Collections": "4.3.0",
  1869. "System.Diagnostics.Debug": "4.3.0",
  1870. "System.IO": "4.3.0",
  1871. "System.Resources.ResourceManager": "4.3.0",
  1872. "System.Runtime": "4.3.0",
  1873. "System.Runtime.Extensions": "4.3.0",
  1874. "System.Runtime.Handles": "4.3.0",
  1875. "System.Runtime.InteropServices": "4.3.0",
  1876. "System.Text.Encoding": "4.3.0",
  1877. "System.Threading": "4.3.0",
  1878. "System.Threading.Tasks": "4.3.0",
  1879. "runtime.native.System": "4.3.0",
  1880. "runtime.native.System.IO.Compression": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.IO.Compression.dll": {
  1884. "related": ".xml"
  1885. }
  1886. },
  1887. "runtimeTargets": {
  1888. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "unix"
  1891. },
  1892. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.IO.Compression.ZipFile/4.3.0": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "System.Buffers": "4.3.0",
  1902. "System.IO": "4.3.0",
  1903. "System.IO.Compression": "4.3.0",
  1904. "System.IO.FileSystem": "4.3.0",
  1905. "System.IO.FileSystem.Primitives": "4.3.0",
  1906. "System.Resources.ResourceManager": "4.3.0",
  1907. "System.Runtime": "4.3.0",
  1908. "System.Runtime.Extensions": "4.3.0",
  1909. "System.Text.Encoding": "4.3.0"
  1910. },
  1911. "compile": {
  1912. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1913. "related": ".xml"
  1914. }
  1915. },
  1916. "runtime": {
  1917. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1918. }
  1919. },
  1920. "System.IO.FileSystem/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "Microsoft.NETCore.Platforms": "1.1.0",
  1924. "Microsoft.NETCore.Targets": "1.1.0",
  1925. "System.IO": "4.3.0",
  1926. "System.IO.FileSystem.Primitives": "4.3.0",
  1927. "System.Runtime": "4.3.0",
  1928. "System.Runtime.Handles": "4.3.0",
  1929. "System.Text.Encoding": "4.3.0",
  1930. "System.Threading.Tasks": "4.3.0"
  1931. },
  1932. "compile": {
  1933. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1934. "related": ".xml"
  1935. }
  1936. }
  1937. },
  1938. "System.IO.FileSystem.Primitives/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.Runtime": "4.3.0"
  1942. },
  1943. "compile": {
  1944. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1945. "related": ".xml"
  1946. }
  1947. },
  1948. "runtime": {
  1949. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1950. }
  1951. },
  1952. "System.IO.Pipelines/5.0.0": {
  1953. "type": "package",
  1954. "compile": {
  1955. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1956. "related": ".xml"
  1957. }
  1958. },
  1959. "runtime": {
  1960. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1961. "related": ".xml"
  1962. }
  1963. }
  1964. },
  1965. "System.Linq/4.3.0": {
  1966. "type": "package",
  1967. "dependencies": {
  1968. "System.Collections": "4.3.0",
  1969. "System.Diagnostics.Debug": "4.3.0",
  1970. "System.Resources.ResourceManager": "4.3.0",
  1971. "System.Runtime": "4.3.0",
  1972. "System.Runtime.Extensions": "4.3.0"
  1973. },
  1974. "compile": {
  1975. "ref/netstandard1.6/System.Linq.dll": {
  1976. "related": ".xml"
  1977. }
  1978. },
  1979. "runtime": {
  1980. "lib/netstandard1.6/System.Linq.dll": {}
  1981. }
  1982. },
  1983. "System.Linq.Expressions/4.3.0": {
  1984. "type": "package",
  1985. "dependencies": {
  1986. "System.Collections": "4.3.0",
  1987. "System.Diagnostics.Debug": "4.3.0",
  1988. "System.Globalization": "4.3.0",
  1989. "System.IO": "4.3.0",
  1990. "System.Linq": "4.3.0",
  1991. "System.ObjectModel": "4.3.0",
  1992. "System.Reflection": "4.3.0",
  1993. "System.Reflection.Emit": "4.3.0",
  1994. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1995. "System.Reflection.Emit.Lightweight": "4.3.0",
  1996. "System.Reflection.Extensions": "4.3.0",
  1997. "System.Reflection.Primitives": "4.3.0",
  1998. "System.Reflection.TypeExtensions": "4.3.0",
  1999. "System.Resources.ResourceManager": "4.3.0",
  2000. "System.Runtime": "4.3.0",
  2001. "System.Runtime.Extensions": "4.3.0",
  2002. "System.Threading": "4.3.0"
  2003. },
  2004. "compile": {
  2005. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2006. "related": ".xml"
  2007. }
  2008. },
  2009. "runtime": {
  2010. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2011. }
  2012. },
  2013. "System.Memory/4.5.5": {
  2014. "type": "package",
  2015. "compile": {
  2016. "ref/netcoreapp2.1/_._": {}
  2017. },
  2018. "runtime": {
  2019. "lib/netcoreapp2.1/_._": {}
  2020. }
  2021. },
  2022. "System.Net.Http/4.3.2": {
  2023. "type": "package",
  2024. "dependencies": {
  2025. "Microsoft.NETCore.Platforms": "1.1.0",
  2026. "System.Collections": "4.3.0",
  2027. "System.Diagnostics.Debug": "4.3.0",
  2028. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2029. "System.Diagnostics.Tracing": "4.3.0",
  2030. "System.Globalization": "4.3.0",
  2031. "System.Globalization.Extensions": "4.3.0",
  2032. "System.IO": "4.3.0",
  2033. "System.IO.FileSystem": "4.3.0",
  2034. "System.Net.Primitives": "4.3.0",
  2035. "System.Resources.ResourceManager": "4.3.0",
  2036. "System.Runtime": "4.3.0",
  2037. "System.Runtime.Extensions": "4.3.0",
  2038. "System.Runtime.Handles": "4.3.0",
  2039. "System.Runtime.InteropServices": "4.3.0",
  2040. "System.Security.Cryptography.Algorithms": "4.3.0",
  2041. "System.Security.Cryptography.Encoding": "4.3.0",
  2042. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2043. "System.Security.Cryptography.Primitives": "4.3.0",
  2044. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2045. "System.Text.Encoding": "4.3.0",
  2046. "System.Threading": "4.3.0",
  2047. "System.Threading.Tasks": "4.3.0",
  2048. "runtime.native.System": "4.3.0",
  2049. "runtime.native.System.Net.Http": "4.3.0",
  2050. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.3/System.Net.Http.dll": {}
  2054. },
  2055. "runtimeTargets": {
  2056. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2057. "assetType": "runtime",
  2058. "rid": "unix"
  2059. },
  2060. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2061. "assetType": "runtime",
  2062. "rid": "win"
  2063. }
  2064. }
  2065. },
  2066. "System.Net.NameResolution/4.3.0": {
  2067. "type": "package",
  2068. "dependencies": {
  2069. "Microsoft.NETCore.Platforms": "1.1.0",
  2070. "System.Collections": "4.3.0",
  2071. "System.Diagnostics.Tracing": "4.3.0",
  2072. "System.Globalization": "4.3.0",
  2073. "System.Net.Primitives": "4.3.0",
  2074. "System.Resources.ResourceManager": "4.3.0",
  2075. "System.Runtime": "4.3.0",
  2076. "System.Runtime.Extensions": "4.3.0",
  2077. "System.Runtime.Handles": "4.3.0",
  2078. "System.Runtime.InteropServices": "4.3.0",
  2079. "System.Security.Principal.Windows": "4.3.0",
  2080. "System.Threading": "4.3.0",
  2081. "System.Threading.Tasks": "4.3.0",
  2082. "runtime.native.System": "4.3.0"
  2083. },
  2084. "compile": {
  2085. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2086. "related": ".xml"
  2087. }
  2088. },
  2089. "runtimeTargets": {
  2090. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "unix"
  2093. },
  2094. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2095. "assetType": "runtime",
  2096. "rid": "win"
  2097. }
  2098. }
  2099. },
  2100. "System.Net.Primitives/4.3.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "1.1.0",
  2104. "Microsoft.NETCore.Targets": "1.1.0",
  2105. "System.Runtime": "4.3.0",
  2106. "System.Runtime.Handles": "4.3.0"
  2107. },
  2108. "compile": {
  2109. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2110. "related": ".xml"
  2111. }
  2112. }
  2113. },
  2114. "System.Net.Security/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "Microsoft.NETCore.Platforms": "1.1.0",
  2118. "Microsoft.Win32.Primitives": "4.3.0",
  2119. "System.Collections": "4.3.0",
  2120. "System.Collections.Concurrent": "4.3.0",
  2121. "System.Diagnostics.Tracing": "4.3.0",
  2122. "System.Globalization": "4.3.0",
  2123. "System.Globalization.Extensions": "4.3.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Net.Primitives": "4.3.0",
  2126. "System.Resources.ResourceManager": "4.3.0",
  2127. "System.Runtime": "4.3.0",
  2128. "System.Runtime.Extensions": "4.3.0",
  2129. "System.Runtime.Handles": "4.3.0",
  2130. "System.Runtime.InteropServices": "4.3.0",
  2131. "System.Security.Claims": "4.3.0",
  2132. "System.Security.Cryptography.Algorithms": "4.3.0",
  2133. "System.Security.Cryptography.Encoding": "4.3.0",
  2134. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2135. "System.Security.Cryptography.Primitives": "4.3.0",
  2136. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2137. "System.Security.Principal": "4.3.0",
  2138. "System.Text.Encoding": "4.3.0",
  2139. "System.Threading": "4.3.0",
  2140. "System.Threading.Tasks": "4.3.0",
  2141. "System.Threading.ThreadPool": "4.3.0",
  2142. "runtime.native.System": "4.3.0",
  2143. "runtime.native.System.Net.Security": "4.3.0",
  2144. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2145. },
  2146. "compile": {
  2147. "ref/netstandard1.3/System.Net.Security.dll": {
  2148. "related": ".xml"
  2149. }
  2150. },
  2151. "runtimeTargets": {
  2152. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2153. "assetType": "runtime",
  2154. "rid": "unix"
  2155. },
  2156. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2157. "assetType": "runtime",
  2158. "rid": "win"
  2159. }
  2160. }
  2161. },
  2162. "System.Net.Sockets/4.3.0": {
  2163. "type": "package",
  2164. "dependencies": {
  2165. "Microsoft.NETCore.Platforms": "1.1.0",
  2166. "Microsoft.NETCore.Targets": "1.1.0",
  2167. "System.IO": "4.3.0",
  2168. "System.Net.Primitives": "4.3.0",
  2169. "System.Runtime": "4.3.0",
  2170. "System.Threading.Tasks": "4.3.0"
  2171. },
  2172. "compile": {
  2173. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2174. "related": ".xml"
  2175. }
  2176. }
  2177. },
  2178. "System.ObjectModel/4.3.0": {
  2179. "type": "package",
  2180. "dependencies": {
  2181. "System.Collections": "4.3.0",
  2182. "System.Diagnostics.Debug": "4.3.0",
  2183. "System.Resources.ResourceManager": "4.3.0",
  2184. "System.Runtime": "4.3.0",
  2185. "System.Threading": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/System.ObjectModel.dll": {
  2189. "related": ".xml"
  2190. }
  2191. },
  2192. "runtime": {
  2193. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2194. }
  2195. },
  2196. "System.Reactive/4.4.1": {
  2197. "type": "package",
  2198. "compile": {
  2199. "lib/netcoreapp3.0/_._": {}
  2200. },
  2201. "runtime": {
  2202. "lib/netcoreapp3.0/_._": {}
  2203. },
  2204. "build": {
  2205. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2206. }
  2207. },
  2208. "System.Reflection/4.3.0": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "Microsoft.NETCore.Platforms": "1.1.0",
  2212. "Microsoft.NETCore.Targets": "1.1.0",
  2213. "System.IO": "4.3.0",
  2214. "System.Reflection.Primitives": "4.3.0",
  2215. "System.Runtime": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.5/System.Reflection.dll": {
  2219. "related": ".xml"
  2220. }
  2221. }
  2222. },
  2223. "System.Reflection.Emit/4.3.0": {
  2224. "type": "package",
  2225. "dependencies": {
  2226. "System.IO": "4.3.0",
  2227. "System.Reflection": "4.3.0",
  2228. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2229. "System.Reflection.Primitives": "4.3.0",
  2230. "System.Runtime": "4.3.0"
  2231. },
  2232. "compile": {
  2233. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2234. "related": ".xml"
  2235. }
  2236. },
  2237. "runtime": {
  2238. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2239. }
  2240. },
  2241. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2242. "type": "package",
  2243. "dependencies": {
  2244. "System.Reflection": "4.3.0",
  2245. "System.Reflection.Primitives": "4.3.0",
  2246. "System.Runtime": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2250. "related": ".xml"
  2251. }
  2252. },
  2253. "runtime": {
  2254. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2255. }
  2256. },
  2257. "System.Reflection.Emit.Lightweight/4.3.0": {
  2258. "type": "package",
  2259. "dependencies": {
  2260. "System.Reflection": "4.3.0",
  2261. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2262. "System.Reflection.Primitives": "4.3.0",
  2263. "System.Runtime": "4.3.0"
  2264. },
  2265. "compile": {
  2266. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2267. "related": ".xml"
  2268. }
  2269. },
  2270. "runtime": {
  2271. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2272. }
  2273. },
  2274. "System.Reflection.Extensions/4.3.0": {
  2275. "type": "package",
  2276. "dependencies": {
  2277. "Microsoft.NETCore.Platforms": "1.1.0",
  2278. "Microsoft.NETCore.Targets": "1.1.0",
  2279. "System.Reflection": "4.3.0",
  2280. "System.Runtime": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2284. "related": ".xml"
  2285. }
  2286. }
  2287. },
  2288. "System.Reflection.Primitives/4.3.0": {
  2289. "type": "package",
  2290. "dependencies": {
  2291. "Microsoft.NETCore.Platforms": "1.1.0",
  2292. "Microsoft.NETCore.Targets": "1.1.0",
  2293. "System.Runtime": "4.3.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2297. "related": ".xml"
  2298. }
  2299. }
  2300. },
  2301. "System.Reflection.TypeExtensions/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "System.Reflection": "4.3.0",
  2305. "System.Runtime": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2309. "related": ".xml"
  2310. }
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2314. }
  2315. },
  2316. "System.Resources.ResourceManager/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "Microsoft.NETCore.Platforms": "1.1.0",
  2320. "Microsoft.NETCore.Targets": "1.1.0",
  2321. "System.Globalization": "4.3.0",
  2322. "System.Reflection": "4.3.0",
  2323. "System.Runtime": "4.3.0"
  2324. },
  2325. "compile": {
  2326. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2327. "related": ".xml"
  2328. }
  2329. }
  2330. },
  2331. "System.Runtime/4.3.0": {
  2332. "type": "package",
  2333. "dependencies": {
  2334. "Microsoft.NETCore.Platforms": "1.1.0",
  2335. "Microsoft.NETCore.Targets": "1.1.0"
  2336. },
  2337. "compile": {
  2338. "ref/netstandard1.5/System.Runtime.dll": {
  2339. "related": ".xml"
  2340. }
  2341. }
  2342. },
  2343. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2344. "type": "package",
  2345. "compile": {
  2346. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2347. "related": ".xml"
  2348. }
  2349. },
  2350. "runtime": {
  2351. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2352. "related": ".xml"
  2353. }
  2354. }
  2355. },
  2356. "System.Runtime.Extensions/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "Microsoft.NETCore.Platforms": "1.1.0",
  2360. "Microsoft.NETCore.Targets": "1.1.0",
  2361. "System.Runtime": "4.3.0"
  2362. },
  2363. "compile": {
  2364. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2365. "related": ".xml"
  2366. }
  2367. }
  2368. },
  2369. "System.Runtime.Handles/4.3.0": {
  2370. "type": "package",
  2371. "dependencies": {
  2372. "Microsoft.NETCore.Platforms": "1.1.0",
  2373. "Microsoft.NETCore.Targets": "1.1.0",
  2374. "System.Runtime": "4.3.0"
  2375. },
  2376. "compile": {
  2377. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2378. "related": ".xml"
  2379. }
  2380. }
  2381. },
  2382. "System.Runtime.InteropServices/4.3.0": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "Microsoft.NETCore.Platforms": "1.1.0",
  2386. "Microsoft.NETCore.Targets": "1.1.0",
  2387. "System.Reflection": "4.3.0",
  2388. "System.Reflection.Primitives": "4.3.0",
  2389. "System.Runtime": "4.3.0",
  2390. "System.Runtime.Handles": "4.3.0"
  2391. },
  2392. "compile": {
  2393. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2394. }
  2395. },
  2396. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2397. "type": "package",
  2398. "dependencies": {
  2399. "System.Reflection": "4.3.0",
  2400. "System.Reflection.Extensions": "4.3.0",
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0",
  2403. "System.Runtime.InteropServices": "4.3.0",
  2404. "System.Threading": "4.3.0",
  2405. "runtime.native.System": "4.3.0"
  2406. },
  2407. "compile": {
  2408. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2409. },
  2410. "runtime": {
  2411. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2412. },
  2413. "runtimeTargets": {
  2414. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2415. "assetType": "runtime",
  2416. "rid": "unix"
  2417. },
  2418. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2419. "assetType": "runtime",
  2420. "rid": "win"
  2421. }
  2422. }
  2423. },
  2424. "System.Runtime.Numerics/4.3.0": {
  2425. "type": "package",
  2426. "dependencies": {
  2427. "System.Globalization": "4.3.0",
  2428. "System.Resources.ResourceManager": "4.3.0",
  2429. "System.Runtime": "4.3.0",
  2430. "System.Runtime.Extensions": "4.3.0"
  2431. },
  2432. "compile": {
  2433. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2434. "related": ".xml"
  2435. }
  2436. },
  2437. "runtime": {
  2438. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2439. }
  2440. },
  2441. "System.Runtime.Serialization.Primitives/4.3.0": {
  2442. "type": "package",
  2443. "dependencies": {
  2444. "System.Resources.ResourceManager": "4.3.0",
  2445. "System.Runtime": "4.3.0"
  2446. },
  2447. "compile": {
  2448. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2449. "related": ".xml"
  2450. }
  2451. },
  2452. "runtime": {
  2453. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2454. }
  2455. },
  2456. "System.Security.AccessControl/4.7.0": {
  2457. "type": "package",
  2458. "dependencies": {
  2459. "Microsoft.NETCore.Platforms": "3.1.0",
  2460. "System.Security.Principal.Windows": "4.7.0"
  2461. },
  2462. "compile": {
  2463. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2469. "related": ".xml"
  2470. }
  2471. },
  2472. "runtimeTargets": {
  2473. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2474. "assetType": "runtime",
  2475. "rid": "win"
  2476. }
  2477. }
  2478. },
  2479. "System.Security.Claims/4.3.0": {
  2480. "type": "package",
  2481. "dependencies": {
  2482. "System.Collections": "4.3.0",
  2483. "System.Globalization": "4.3.0",
  2484. "System.IO": "4.3.0",
  2485. "System.Resources.ResourceManager": "4.3.0",
  2486. "System.Runtime": "4.3.0",
  2487. "System.Runtime.Extensions": "4.3.0",
  2488. "System.Security.Principal": "4.3.0"
  2489. },
  2490. "compile": {
  2491. "ref/netstandard1.3/_._": {
  2492. "related": ".xml"
  2493. }
  2494. },
  2495. "runtime": {
  2496. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2497. }
  2498. },
  2499. "System.Security.Cryptography.Algorithms/4.3.0": {
  2500. "type": "package",
  2501. "dependencies": {
  2502. "Microsoft.NETCore.Platforms": "1.1.0",
  2503. "System.Collections": "4.3.0",
  2504. "System.IO": "4.3.0",
  2505. "System.Resources.ResourceManager": "4.3.0",
  2506. "System.Runtime": "4.3.0",
  2507. "System.Runtime.Extensions": "4.3.0",
  2508. "System.Runtime.Handles": "4.3.0",
  2509. "System.Runtime.InteropServices": "4.3.0",
  2510. "System.Runtime.Numerics": "4.3.0",
  2511. "System.Security.Cryptography.Encoding": "4.3.0",
  2512. "System.Security.Cryptography.Primitives": "4.3.0",
  2513. "System.Text.Encoding": "4.3.0",
  2514. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2515. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2516. },
  2517. "compile": {
  2518. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2519. },
  2520. "runtimeTargets": {
  2521. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "osx"
  2524. },
  2525. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2526. "assetType": "runtime",
  2527. "rid": "unix"
  2528. },
  2529. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2530. "assetType": "runtime",
  2531. "rid": "win"
  2532. }
  2533. }
  2534. },
  2535. "System.Security.Cryptography.Cng/4.3.0": {
  2536. "type": "package",
  2537. "dependencies": {
  2538. "Microsoft.NETCore.Platforms": "1.1.0",
  2539. "System.IO": "4.3.0",
  2540. "System.Resources.ResourceManager": "4.3.0",
  2541. "System.Runtime": "4.3.0",
  2542. "System.Runtime.Extensions": "4.3.0",
  2543. "System.Runtime.Handles": "4.3.0",
  2544. "System.Runtime.InteropServices": "4.3.0",
  2545. "System.Security.Cryptography.Algorithms": "4.3.0",
  2546. "System.Security.Cryptography.Encoding": "4.3.0",
  2547. "System.Security.Cryptography.Primitives": "4.3.0",
  2548. "System.Text.Encoding": "4.3.0"
  2549. },
  2550. "compile": {
  2551. "ref/netstandard1.6/_._": {}
  2552. },
  2553. "runtimeTargets": {
  2554. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2555. "assetType": "runtime",
  2556. "rid": "unix"
  2557. },
  2558. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2559. "assetType": "runtime",
  2560. "rid": "win"
  2561. }
  2562. }
  2563. },
  2564. "System.Security.Cryptography.Csp/4.3.0": {
  2565. "type": "package",
  2566. "dependencies": {
  2567. "Microsoft.NETCore.Platforms": "1.1.0",
  2568. "System.IO": "4.3.0",
  2569. "System.Reflection": "4.3.0",
  2570. "System.Resources.ResourceManager": "4.3.0",
  2571. "System.Runtime": "4.3.0",
  2572. "System.Runtime.Extensions": "4.3.0",
  2573. "System.Runtime.Handles": "4.3.0",
  2574. "System.Runtime.InteropServices": "4.3.0",
  2575. "System.Security.Cryptography.Algorithms": "4.3.0",
  2576. "System.Security.Cryptography.Encoding": "4.3.0",
  2577. "System.Security.Cryptography.Primitives": "4.3.0",
  2578. "System.Text.Encoding": "4.3.0",
  2579. "System.Threading": "4.3.0"
  2580. },
  2581. "compile": {
  2582. "ref/netstandard1.3/_._": {}
  2583. },
  2584. "runtimeTargets": {
  2585. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2586. "assetType": "runtime",
  2587. "rid": "unix"
  2588. },
  2589. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2590. "assetType": "runtime",
  2591. "rid": "win"
  2592. }
  2593. }
  2594. },
  2595. "System.Security.Cryptography.Encoding/4.3.0": {
  2596. "type": "package",
  2597. "dependencies": {
  2598. "Microsoft.NETCore.Platforms": "1.1.0",
  2599. "System.Collections": "4.3.0",
  2600. "System.Collections.Concurrent": "4.3.0",
  2601. "System.Linq": "4.3.0",
  2602. "System.Resources.ResourceManager": "4.3.0",
  2603. "System.Runtime": "4.3.0",
  2604. "System.Runtime.Extensions": "4.3.0",
  2605. "System.Runtime.Handles": "4.3.0",
  2606. "System.Runtime.InteropServices": "4.3.0",
  2607. "System.Security.Cryptography.Primitives": "4.3.0",
  2608. "System.Text.Encoding": "4.3.0",
  2609. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2610. },
  2611. "compile": {
  2612. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2613. "related": ".xml"
  2614. }
  2615. },
  2616. "runtimeTargets": {
  2617. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2618. "assetType": "runtime",
  2619. "rid": "unix"
  2620. },
  2621. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2622. "assetType": "runtime",
  2623. "rid": "win"
  2624. }
  2625. }
  2626. },
  2627. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2628. "type": "package",
  2629. "dependencies": {
  2630. "System.Collections": "4.3.0",
  2631. "System.IO": "4.3.0",
  2632. "System.Resources.ResourceManager": "4.3.0",
  2633. "System.Runtime": "4.3.0",
  2634. "System.Runtime.Extensions": "4.3.0",
  2635. "System.Runtime.Handles": "4.3.0",
  2636. "System.Runtime.InteropServices": "4.3.0",
  2637. "System.Runtime.Numerics": "4.3.0",
  2638. "System.Security.Cryptography.Algorithms": "4.3.0",
  2639. "System.Security.Cryptography.Encoding": "4.3.0",
  2640. "System.Security.Cryptography.Primitives": "4.3.0",
  2641. "System.Text.Encoding": "4.3.0",
  2642. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2643. },
  2644. "compile": {
  2645. "ref/netstandard1.6/_._": {}
  2646. },
  2647. "runtime": {
  2648. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2649. },
  2650. "runtimeTargets": {
  2651. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2652. "assetType": "runtime",
  2653. "rid": "unix"
  2654. }
  2655. }
  2656. },
  2657. "System.Security.Cryptography.Primitives/4.3.0": {
  2658. "type": "package",
  2659. "dependencies": {
  2660. "System.Diagnostics.Debug": "4.3.0",
  2661. "System.Globalization": "4.3.0",
  2662. "System.IO": "4.3.0",
  2663. "System.Resources.ResourceManager": "4.3.0",
  2664. "System.Runtime": "4.3.0",
  2665. "System.Threading": "4.3.0",
  2666. "System.Threading.Tasks": "4.3.0"
  2667. },
  2668. "compile": {
  2669. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2670. },
  2671. "runtime": {
  2672. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2673. }
  2674. },
  2675. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2676. "type": "package",
  2677. "compile": {
  2678. "ref/netstandard2.0/_._": {
  2679. "related": ".xml"
  2680. }
  2681. },
  2682. "runtime": {
  2683. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2684. },
  2685. "runtimeTargets": {
  2686. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2687. "assetType": "runtime",
  2688. "rid": "win"
  2689. }
  2690. }
  2691. },
  2692. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2693. "type": "package",
  2694. "dependencies": {
  2695. "Microsoft.NETCore.Platforms": "1.1.0",
  2696. "System.Collections": "4.3.0",
  2697. "System.Diagnostics.Debug": "4.3.0",
  2698. "System.Globalization": "4.3.0",
  2699. "System.Globalization.Calendars": "4.3.0",
  2700. "System.IO": "4.3.0",
  2701. "System.IO.FileSystem": "4.3.0",
  2702. "System.IO.FileSystem.Primitives": "4.3.0",
  2703. "System.Resources.ResourceManager": "4.3.0",
  2704. "System.Runtime": "4.3.0",
  2705. "System.Runtime.Extensions": "4.3.0",
  2706. "System.Runtime.Handles": "4.3.0",
  2707. "System.Runtime.InteropServices": "4.3.0",
  2708. "System.Runtime.Numerics": "4.3.0",
  2709. "System.Security.Cryptography.Algorithms": "4.3.0",
  2710. "System.Security.Cryptography.Cng": "4.3.0",
  2711. "System.Security.Cryptography.Csp": "4.3.0",
  2712. "System.Security.Cryptography.Encoding": "4.3.0",
  2713. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2714. "System.Security.Cryptography.Primitives": "4.3.0",
  2715. "System.Text.Encoding": "4.3.0",
  2716. "System.Threading": "4.3.0",
  2717. "runtime.native.System": "4.3.0",
  2718. "runtime.native.System.Net.Http": "4.3.0",
  2719. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2720. },
  2721. "compile": {
  2722. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2723. "related": ".xml"
  2724. }
  2725. },
  2726. "runtimeTargets": {
  2727. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2728. "assetType": "runtime",
  2729. "rid": "unix"
  2730. },
  2731. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2732. "assetType": "runtime",
  2733. "rid": "win"
  2734. }
  2735. }
  2736. },
  2737. "System.Security.Permissions/4.7.0": {
  2738. "type": "package",
  2739. "dependencies": {
  2740. "System.Security.AccessControl": "4.7.0",
  2741. "System.Windows.Extensions": "4.7.0"
  2742. },
  2743. "compile": {
  2744. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2745. "related": ".xml"
  2746. }
  2747. },
  2748. "runtime": {
  2749. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2750. "related": ".xml"
  2751. }
  2752. }
  2753. },
  2754. "System.Security.Principal/4.3.0": {
  2755. "type": "package",
  2756. "dependencies": {
  2757. "System.Runtime": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.0/System.Security.Principal.dll": {
  2761. "related": ".xml"
  2762. }
  2763. },
  2764. "runtime": {
  2765. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2766. }
  2767. },
  2768. "System.Security.Principal.Windows/4.7.0": {
  2769. "type": "package",
  2770. "compile": {
  2771. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2772. "related": ".xml"
  2773. }
  2774. },
  2775. "runtime": {
  2776. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2777. "related": ".xml"
  2778. }
  2779. },
  2780. "runtimeTargets": {
  2781. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2782. "assetType": "runtime",
  2783. "rid": "unix"
  2784. },
  2785. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2786. "assetType": "runtime",
  2787. "rid": "win"
  2788. }
  2789. }
  2790. },
  2791. "System.Text.Encoding/4.3.0": {
  2792. "type": "package",
  2793. "dependencies": {
  2794. "Microsoft.NETCore.Platforms": "1.1.0",
  2795. "Microsoft.NETCore.Targets": "1.1.0",
  2796. "System.Runtime": "4.3.0"
  2797. },
  2798. "compile": {
  2799. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2800. "related": ".xml"
  2801. }
  2802. }
  2803. },
  2804. "System.Text.Encoding.CodePages/5.0.0": {
  2805. "type": "package",
  2806. "dependencies": {
  2807. "Microsoft.NETCore.Platforms": "5.0.0"
  2808. },
  2809. "compile": {
  2810. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2811. "related": ".xml"
  2812. }
  2813. },
  2814. "runtime": {
  2815. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2816. "related": ".xml"
  2817. }
  2818. },
  2819. "runtimeTargets": {
  2820. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2821. "assetType": "runtime",
  2822. "rid": "win"
  2823. }
  2824. }
  2825. },
  2826. "System.Text.Encoding.Extensions/4.3.0": {
  2827. "type": "package",
  2828. "dependencies": {
  2829. "Microsoft.NETCore.Platforms": "1.1.0",
  2830. "Microsoft.NETCore.Targets": "1.1.0",
  2831. "System.Runtime": "4.3.0",
  2832. "System.Text.Encoding": "4.3.0"
  2833. },
  2834. "compile": {
  2835. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2836. "related": ".xml"
  2837. }
  2838. }
  2839. },
  2840. "System.Text.Encodings.Web/4.7.0": {
  2841. "type": "package",
  2842. "compile": {
  2843. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2844. "related": ".xml"
  2845. }
  2846. },
  2847. "runtime": {
  2848. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2849. "related": ".xml"
  2850. }
  2851. }
  2852. },
  2853. "System.Text.RegularExpressions/4.3.0": {
  2854. "type": "package",
  2855. "dependencies": {
  2856. "System.Runtime": "4.3.0"
  2857. },
  2858. "compile": {
  2859. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2860. },
  2861. "runtime": {
  2862. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2863. }
  2864. },
  2865. "System.Threading/4.3.0": {
  2866. "type": "package",
  2867. "dependencies": {
  2868. "System.Runtime": "4.3.0",
  2869. "System.Threading.Tasks": "4.3.0"
  2870. },
  2871. "compile": {
  2872. "ref/netstandard1.3/System.Threading.dll": {
  2873. "related": ".xml"
  2874. }
  2875. },
  2876. "runtime": {
  2877. "lib/netstandard1.3/System.Threading.dll": {}
  2878. }
  2879. },
  2880. "System.Threading.Channels/7.0.0": {
  2881. "type": "package",
  2882. "compile": {
  2883. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2884. "related": ".xml"
  2885. }
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2889. "related": ".xml"
  2890. }
  2891. },
  2892. "build": {
  2893. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2894. }
  2895. },
  2896. "System.Threading.Tasks/4.3.0": {
  2897. "type": "package",
  2898. "dependencies": {
  2899. "Microsoft.NETCore.Platforms": "1.1.0",
  2900. "Microsoft.NETCore.Targets": "1.1.0",
  2901. "System.Runtime": "4.3.0"
  2902. },
  2903. "compile": {
  2904. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2905. "related": ".xml"
  2906. }
  2907. }
  2908. },
  2909. "System.Threading.Tasks.Extensions/4.3.0": {
  2910. "type": "package",
  2911. "dependencies": {
  2912. "System.Collections": "4.3.0",
  2913. "System.Runtime": "4.3.0",
  2914. "System.Threading.Tasks": "4.3.0"
  2915. },
  2916. "compile": {
  2917. "lib/netstandard1.0/_._": {
  2918. "related": ".xml"
  2919. }
  2920. },
  2921. "runtime": {
  2922. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2923. "related": ".xml"
  2924. }
  2925. }
  2926. },
  2927. "System.Threading.Thread/4.3.0": {
  2928. "type": "package",
  2929. "dependencies": {
  2930. "System.Runtime": "4.3.0"
  2931. },
  2932. "compile": {
  2933. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2934. "related": ".xml"
  2935. }
  2936. },
  2937. "runtime": {
  2938. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2939. }
  2940. },
  2941. "System.Threading.ThreadPool/4.3.0": {
  2942. "type": "package",
  2943. "dependencies": {
  2944. "System.Runtime": "4.3.0",
  2945. "System.Runtime.Handles": "4.3.0"
  2946. },
  2947. "compile": {
  2948. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2949. "related": ".xml"
  2950. }
  2951. },
  2952. "runtime": {
  2953. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2954. }
  2955. },
  2956. "System.Threading.Timer/4.3.0": {
  2957. "type": "package",
  2958. "dependencies": {
  2959. "Microsoft.NETCore.Platforms": "1.1.0",
  2960. "Microsoft.NETCore.Targets": "1.1.0",
  2961. "System.Runtime": "4.3.0"
  2962. },
  2963. "compile": {
  2964. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2965. "related": ".xml"
  2966. }
  2967. }
  2968. },
  2969. "System.Windows.Extensions/4.7.0": {
  2970. "type": "package",
  2971. "dependencies": {
  2972. "System.Drawing.Common": "4.7.0"
  2973. },
  2974. "compile": {
  2975. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2976. "related": ".xml"
  2977. }
  2978. },
  2979. "runtime": {
  2980. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2981. "related": ".xml"
  2982. }
  2983. },
  2984. "runtimeTargets": {
  2985. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2986. "assetType": "runtime",
  2987. "rid": "win"
  2988. }
  2989. }
  2990. },
  2991. "System.Xml.ReaderWriter/4.3.0": {
  2992. "type": "package",
  2993. "dependencies": {
  2994. "System.Collections": "4.3.0",
  2995. "System.Diagnostics.Debug": "4.3.0",
  2996. "System.Globalization": "4.3.0",
  2997. "System.IO": "4.3.0",
  2998. "System.IO.FileSystem": "4.3.0",
  2999. "System.IO.FileSystem.Primitives": "4.3.0",
  3000. "System.Resources.ResourceManager": "4.3.0",
  3001. "System.Runtime": "4.3.0",
  3002. "System.Runtime.Extensions": "4.3.0",
  3003. "System.Runtime.InteropServices": "4.3.0",
  3004. "System.Text.Encoding": "4.3.0",
  3005. "System.Text.Encoding.Extensions": "4.3.0",
  3006. "System.Text.RegularExpressions": "4.3.0",
  3007. "System.Threading.Tasks": "4.3.0",
  3008. "System.Threading.Tasks.Extensions": "4.3.0"
  3009. },
  3010. "compile": {
  3011. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3012. "related": ".xml"
  3013. }
  3014. },
  3015. "runtime": {
  3016. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3017. }
  3018. },
  3019. "System.Xml.XDocument/4.3.0": {
  3020. "type": "package",
  3021. "dependencies": {
  3022. "System.Collections": "4.3.0",
  3023. "System.Diagnostics.Debug": "4.3.0",
  3024. "System.Diagnostics.Tools": "4.3.0",
  3025. "System.Globalization": "4.3.0",
  3026. "System.IO": "4.3.0",
  3027. "System.Reflection": "4.3.0",
  3028. "System.Resources.ResourceManager": "4.3.0",
  3029. "System.Runtime": "4.3.0",
  3030. "System.Runtime.Extensions": "4.3.0",
  3031. "System.Text.Encoding": "4.3.0",
  3032. "System.Threading": "4.3.0",
  3033. "System.Xml.ReaderWriter": "4.3.0"
  3034. },
  3035. "compile": {
  3036. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3037. "related": ".xml"
  3038. }
  3039. },
  3040. "runtime": {
  3041. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3042. }
  3043. },
  3044. "ToolGood.Words/3.1.0.2": {
  3045. "type": "package",
  3046. "compile": {
  3047. "lib/netstandard2.1/ToolGood.Words.dll": {
  3048. "related": ".xml"
  3049. }
  3050. },
  3051. "runtime": {
  3052. "lib/netstandard2.1/ToolGood.Words.dll": {
  3053. "related": ".xml"
  3054. }
  3055. }
  3056. },
  3057. "ZXing.Net/0.16.9": {
  3058. "type": "package",
  3059. "compile": {
  3060. "lib/net5.0/zxing.dll": {
  3061. "related": ".XML"
  3062. }
  3063. },
  3064. "runtime": {
  3065. "lib/net5.0/zxing.dll": {
  3066. "related": ".XML"
  3067. }
  3068. }
  3069. },
  3070. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3071. "type": "package",
  3072. "dependencies": {
  3073. "SixLabors.ImageSharp": "2.1.3",
  3074. "ZXing.Net": "0.16.9"
  3075. },
  3076. "compile": {
  3077. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3078. "related": ".pdb;.xml"
  3079. }
  3080. },
  3081. "runtime": {
  3082. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3083. "related": ".pdb;.xml"
  3084. }
  3085. }
  3086. },
  3087. "Ropin.Core.Common/1.0.0": {
  3088. "type": "project",
  3089. "framework": ".NETCoreApp,Version=v5.0",
  3090. "dependencies": {
  3091. "Coravel": "4.2.1",
  3092. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3093. "Newtonsoft.Json": "13.0.1",
  3094. "QRCoder": "1.4.3",
  3095. "SixLabors.ImageSharp": "2.1.6",
  3096. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3097. },
  3098. "compile": {
  3099. "bin/placeholder/Ropin.Core.Common.dll": {}
  3100. },
  3101. "runtime": {
  3102. "bin/placeholder/Ropin.Core.Common.dll": {}
  3103. }
  3104. },
  3105. "Ropin.Inspection.Common/1.0.0": {
  3106. "type": "project",
  3107. "framework": ".NETCoreApp,Version=v5.0",
  3108. "dependencies": {
  3109. "FluentEmail.Smtp": "3.0.2",
  3110. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3111. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3112. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3113. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3114. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3115. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3116. "Microsoft.Extensions.Configuration": "5.0.0",
  3117. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3118. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3119. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3120. "Microsoft.Extensions.Http": "5.0.0",
  3121. "Newtonsoft.Json": "13.0.1",
  3122. "RabbitMQ.Client": "6.8.1",
  3123. "ToolGood.Words": "3.1.0.2",
  3124. "log4net": "2.0.17"
  3125. },
  3126. "compile": {
  3127. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3128. },
  3129. "runtime": {
  3130. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3131. }
  3132. },
  3133. "Ropin.Inspection.Model/1.0.0": {
  3134. "type": "project",
  3135. "framework": ".NETCoreApp,Version=v5.0",
  3136. "dependencies": {
  3137. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3138. "Microsoft.EntityFrameworkCore": "5.0.0",
  3139. "MySql.Data": "8.0.23",
  3140. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3141. "Ropin.Inspection.Common": "1.0.0"
  3142. },
  3143. "compile": {
  3144. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3145. },
  3146. "runtime": {
  3147. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3148. }
  3149. },
  3150. "Ropin.Inspection.Repository/1.0.0": {
  3151. "type": "project",
  3152. "framework": ".NETCoreApp,Version=v5.0",
  3153. "dependencies": {
  3154. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3155. "Microsoft.EntityFrameworkCore": "5.0.0",
  3156. "Ropin.Inspection.Model": "1.0.0"
  3157. },
  3158. "compile": {
  3159. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3160. },
  3161. "runtime": {
  3162. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3163. }
  3164. }
  3165. }
  3166. },
  3167. "libraries": {
  3168. "AdvancedStringBuilder/0.1.0": {
  3169. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3170. "type": "package",
  3171. "path": "advancedstringbuilder/0.1.0",
  3172. "files": [
  3173. ".nupkg.metadata",
  3174. ".signature.p7s",
  3175. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3176. "advancedstringbuilder.nuspec",
  3177. "lib/net40-client/AdvancedStringBuilder.dll",
  3178. "lib/net40-client/AdvancedStringBuilder.xml",
  3179. "lib/net45/AdvancedStringBuilder.dll",
  3180. "lib/net45/AdvancedStringBuilder.xml",
  3181. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3182. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3183. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3184. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3185. ]
  3186. },
  3187. "Autofac/6.0.0": {
  3188. "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==",
  3189. "type": "package",
  3190. "path": "autofac/6.0.0",
  3191. "files": [
  3192. ".nupkg.metadata",
  3193. ".signature.p7s",
  3194. "autofac.6.0.0.nupkg.sha512",
  3195. "autofac.nuspec",
  3196. "icon.png",
  3197. "lib/netstandard2.0/Autofac.dll",
  3198. "lib/netstandard2.0/Autofac.pdb",
  3199. "lib/netstandard2.0/Autofac.xml",
  3200. "lib/netstandard2.1/Autofac.dll",
  3201. "lib/netstandard2.1/Autofac.pdb",
  3202. "lib/netstandard2.1/Autofac.xml"
  3203. ]
  3204. },
  3205. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3206. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3207. "type": "package",
  3208. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3209. "files": [
  3210. ".nupkg.metadata",
  3211. ".signature.p7s",
  3212. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3213. "autofac.extensions.dependencyinjection.nuspec",
  3214. "icon.png",
  3215. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3216. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3217. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3218. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3219. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3220. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3221. ]
  3222. },
  3223. "BouncyCastle.NetCore/1.8.5": {
  3224. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3225. "type": "package",
  3226. "path": "bouncycastle.netcore/1.8.5",
  3227. "files": [
  3228. ".nupkg.metadata",
  3229. ".signature.p7s",
  3230. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3231. "bouncycastle.netcore.nuspec",
  3232. "lib/Mono/BouncyCastle.Crypto.dll",
  3233. "lib/Mono/BouncyCastle.Crypto.xml",
  3234. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3235. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3236. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3237. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3238. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3239. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3240. "lib/net20/BouncyCastle.Crypto.dll",
  3241. "lib/net20/BouncyCastle.Crypto.xml",
  3242. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3243. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3244. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3245. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3246. ]
  3247. },
  3248. "Coravel/4.2.1": {
  3249. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3250. "type": "package",
  3251. "path": "coravel/4.2.1",
  3252. "files": [
  3253. ".nupkg.metadata",
  3254. ".signature.p7s",
  3255. "coravel.4.2.1.nupkg.sha512",
  3256. "coravel.nuspec",
  3257. "lib/netstandard2.0/Coravel.dll",
  3258. "lib/netstandard2.0/Coravel.xml",
  3259. "logo.png",
  3260. "readme.md"
  3261. ]
  3262. },
  3263. "FBoxClientDriver/1.2.0": {
  3264. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3265. "type": "package",
  3266. "path": "fboxclientdriver/1.2.0",
  3267. "files": [
  3268. ".nupkg.metadata",
  3269. ".signature.p7s",
  3270. "fboxclientdriver.1.2.0.nupkg.sha512",
  3271. "fboxclientdriver.nuspec",
  3272. "lib/netstandard2.0/FBoxClientDriver.dll",
  3273. "lib/netstandard2.0/FBoxClientDriver.xml"
  3274. ]
  3275. },
  3276. "FBoxClientDriver.Contract/1.2.0": {
  3277. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3278. "type": "package",
  3279. "path": "fboxclientdriver.contract/1.2.0",
  3280. "files": [
  3281. ".nupkg.metadata",
  3282. ".signature.p7s",
  3283. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3284. "fboxclientdriver.contract.nuspec",
  3285. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3286. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3287. ]
  3288. },
  3289. "FluentEmail.Core/3.0.2": {
  3290. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3291. "type": "package",
  3292. "path": "fluentemail.core/3.0.2",
  3293. "files": [
  3294. ".nupkg.metadata",
  3295. ".signature.p7s",
  3296. "fluentemail.core.3.0.2.nupkg.sha512",
  3297. "fluentemail.core.nuspec",
  3298. "fluentemail_logo_64x64.png",
  3299. "lib/netstandard2.0/FluentEmail.Core.dll"
  3300. ]
  3301. },
  3302. "FluentEmail.Smtp/3.0.2": {
  3303. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3304. "type": "package",
  3305. "path": "fluentemail.smtp/3.0.2",
  3306. "files": [
  3307. ".nupkg.metadata",
  3308. ".signature.p7s",
  3309. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3310. "fluentemail.smtp.nuspec",
  3311. "fluentemail_logo_64x64.png",
  3312. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3313. ]
  3314. },
  3315. "Google.Protobuf/3.11.4": {
  3316. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3317. "type": "package",
  3318. "path": "google.protobuf/3.11.4",
  3319. "files": [
  3320. ".nupkg.metadata",
  3321. ".signature.p7s",
  3322. "google.protobuf.3.11.4.nupkg.sha512",
  3323. "google.protobuf.nuspec",
  3324. "lib/net45/Google.Protobuf.dll",
  3325. "lib/net45/Google.Protobuf.pdb",
  3326. "lib/net45/Google.Protobuf.xml",
  3327. "lib/netstandard1.0/Google.Protobuf.dll",
  3328. "lib/netstandard1.0/Google.Protobuf.pdb",
  3329. "lib/netstandard1.0/Google.Protobuf.xml",
  3330. "lib/netstandard2.0/Google.Protobuf.dll",
  3331. "lib/netstandard2.0/Google.Protobuf.pdb",
  3332. "lib/netstandard2.0/Google.Protobuf.xml"
  3333. ]
  3334. },
  3335. "IdentityModel/4.3.1": {
  3336. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3337. "type": "package",
  3338. "path": "identitymodel/4.3.1",
  3339. "files": [
  3340. ".nupkg.metadata",
  3341. ".signature.p7s",
  3342. "icon.jpg",
  3343. "identitymodel.4.3.1.nupkg.sha512",
  3344. "identitymodel.nuspec",
  3345. "lib/net461/IdentityModel.dll",
  3346. "lib/net461/IdentityModel.pdb",
  3347. "lib/net461/IdentityModel.xml",
  3348. "lib/net472/IdentityModel.dll",
  3349. "lib/net472/IdentityModel.pdb",
  3350. "lib/net472/IdentityModel.xml",
  3351. "lib/netstandard2.0/IdentityModel.dll",
  3352. "lib/netstandard2.0/IdentityModel.pdb",
  3353. "lib/netstandard2.0/IdentityModel.xml"
  3354. ]
  3355. },
  3356. "InfluxData.Net/8.0.1": {
  3357. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3358. "type": "package",
  3359. "path": "influxdata.net/8.0.1",
  3360. "files": [
  3361. ".nupkg.metadata",
  3362. ".signature.p7s",
  3363. "influxdata.net.8.0.1.nupkg.sha512",
  3364. "influxdata.net.nuspec",
  3365. "lib/net461/InfluxData.Net.Common.dll",
  3366. "lib/net461/InfluxData.Net.Common.dll.config",
  3367. "lib/net461/InfluxData.Net.Common.pdb",
  3368. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3369. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3370. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3371. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3372. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3373. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3374. "lib/net461/InfluxData.Net.dll",
  3375. "lib/net461/InfluxData.Net.dll.config",
  3376. "lib/net461/InfluxData.Net.pdb",
  3377. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3378. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3379. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3380. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3381. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3382. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3383. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3384. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3385. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3386. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3387. "lib/netstandard2.0/InfluxData.Net.dll",
  3388. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3389. "lib/netstandard2.0/InfluxData.Net.pdb"
  3390. ]
  3391. },
  3392. "InitQ/1.0.0.14": {
  3393. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3394. "type": "package",
  3395. "path": "initq/1.0.0.14",
  3396. "files": [
  3397. ".nupkg.metadata",
  3398. ".signature.p7s",
  3399. "initq.1.0.0.14.nupkg.sha512",
  3400. "initq.nuspec",
  3401. "lib/netcoreapp2.1/InitQ.dll"
  3402. ]
  3403. },
  3404. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3405. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3406. "type": "package",
  3407. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3408. "files": [
  3409. ".nupkg.metadata",
  3410. ".signature.p7s",
  3411. "LICENSE.txt",
  3412. "advanced-string-builder-license.txt",
  3413. "chakra-samples-license.txt",
  3414. "icon.png",
  3415. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3416. "javascriptengineswitcher.chakracore.nuspec",
  3417. "jsrt-dotnet-license.txt",
  3418. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3419. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3420. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3421. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3422. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3423. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3424. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3425. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3426. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3427. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3428. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3429. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3430. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3431. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3432. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3433. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3434. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3435. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3436. "polyfills-for-old-dot-net-license.txt",
  3437. "readme.txt"
  3438. ]
  3439. },
  3440. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3441. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3442. "type": "package",
  3443. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3444. "files": [
  3445. ".nupkg.metadata",
  3446. ".signature.p7s",
  3447. "LICENSE.txt",
  3448. "chakra-core-license.txt",
  3449. "icon.png",
  3450. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3451. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3452. "readme.txt",
  3453. "runtimes/linux-x64/native/libChakraCore.so"
  3454. ]
  3455. },
  3456. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3457. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3458. "type": "package",
  3459. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3460. "hasTools": true,
  3461. "files": [
  3462. ".nupkg.metadata",
  3463. ".signature.p7s",
  3464. "LICENSE.txt",
  3465. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3466. "chakra-core-license.txt",
  3467. "icon.png",
  3468. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3469. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3470. "readme.txt",
  3471. "runtimes/win-x64/native/ChakraCore.dll",
  3472. "tools/Install.ps1",
  3473. "tools/Uninstall.ps1"
  3474. ]
  3475. },
  3476. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3477. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3478. "type": "package",
  3479. "path": "javascriptengineswitcher.core/3.21.0",
  3480. "files": [
  3481. ".nupkg.metadata",
  3482. ".signature.p7s",
  3483. "LICENSE.txt",
  3484. "advanced-string-builder-license.txt",
  3485. "icon.png",
  3486. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3487. "javascriptengineswitcher.core.nuspec",
  3488. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3489. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3490. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3491. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3492. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3493. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3494. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3495. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3496. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3497. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3498. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3499. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3500. "readme.txt"
  3501. ]
  3502. },
  3503. "K4os.Compression.LZ4/1.1.11": {
  3504. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3505. "type": "package",
  3506. "path": "k4os.compression.lz4/1.1.11",
  3507. "files": [
  3508. ".nupkg.metadata",
  3509. ".signature.p7s",
  3510. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3511. "k4os.compression.lz4.nuspec",
  3512. "lib/net45/K4os.Compression.LZ4.dll",
  3513. "lib/net45/K4os.Compression.LZ4.xml",
  3514. "lib/net46/K4os.Compression.LZ4.dll",
  3515. "lib/net46/K4os.Compression.LZ4.xml",
  3516. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3517. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3518. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3519. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3520. ]
  3521. },
  3522. "K4os.Compression.LZ4.Streams/1.1.11": {
  3523. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3524. "type": "package",
  3525. "path": "k4os.compression.lz4.streams/1.1.11",
  3526. "files": [
  3527. ".nupkg.metadata",
  3528. ".signature.p7s",
  3529. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3530. "k4os.compression.lz4.streams.nuspec",
  3531. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3532. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3533. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3534. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3535. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3536. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3537. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3538. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3539. ]
  3540. },
  3541. "K4os.Hash.xxHash/1.0.6": {
  3542. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3543. "type": "package",
  3544. "path": "k4os.hash.xxhash/1.0.6",
  3545. "files": [
  3546. ".nupkg.metadata",
  3547. ".signature.p7s",
  3548. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3549. "k4os.hash.xxhash.nuspec",
  3550. "lib/net45/K4os.Hash.xxHash.dll",
  3551. "lib/net45/K4os.Hash.xxHash.xml",
  3552. "lib/net46/K4os.Hash.xxHash.dll",
  3553. "lib/net46/K4os.Hash.xxHash.xml",
  3554. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3555. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3556. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3557. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3558. ]
  3559. },
  3560. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3561. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3562. "type": "package",
  3563. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3564. "files": [
  3565. ".nupkg.metadata",
  3566. ".signature.p7s",
  3567. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3568. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3569. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3570. "linqkit.microsoft.entityframeworkcore.nuspec"
  3571. ]
  3572. },
  3573. "log4net/2.0.17": {
  3574. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3575. "type": "package",
  3576. "path": "log4net/2.0.17",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "lib/net20/log4net.dll",
  3581. "lib/net20/log4net.xml",
  3582. "lib/net35/log4net.dll",
  3583. "lib/net35/log4net.xml",
  3584. "lib/net40-client/log4net.dll",
  3585. "lib/net40-client/log4net.xml",
  3586. "lib/net40/log4net.dll",
  3587. "lib/net40/log4net.xml",
  3588. "lib/net45/log4net.dll",
  3589. "lib/net45/log4net.xml",
  3590. "lib/netstandard1.3/log4net.dll",
  3591. "lib/netstandard1.3/log4net.xml",
  3592. "lib/netstandard2.0/log4net.dll",
  3593. "lib/netstandard2.0/log4net.xml",
  3594. "log4net.2.0.17.nupkg.sha512",
  3595. "log4net.nuspec",
  3596. "package-icon.png"
  3597. ]
  3598. },
  3599. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3600. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3601. "type": "package",
  3602. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3603. "files": [
  3604. ".nupkg.metadata",
  3605. ".signature.p7s",
  3606. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3607. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3608. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3609. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3610. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3611. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3612. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3613. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3614. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3615. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3616. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3617. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3618. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3619. "microsoft.aspnet.signalr.client.nuspec"
  3620. ]
  3621. },
  3622. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3623. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3624. "type": "package",
  3625. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3626. "files": [
  3627. ".nupkg.metadata",
  3628. ".signature.p7s",
  3629. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3630. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3631. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3632. "microsoft.aspnetcore.http.abstractions.nuspec"
  3633. ]
  3634. },
  3635. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3636. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3637. "type": "package",
  3638. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3639. "files": [
  3640. ".nupkg.metadata",
  3641. ".signature.p7s",
  3642. "Icon.png",
  3643. "THIRD-PARTY-NOTICES.TXT",
  3644. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3645. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3646. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3647. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3648. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3649. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3650. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3651. "microsoft.aspnetcore.http.features.nuspec"
  3652. ]
  3653. },
  3654. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3655. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3656. "type": "package",
  3657. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3658. "files": [
  3659. ".nupkg.metadata",
  3660. ".signature.p7s",
  3661. "Icon.png",
  3662. "THIRD-PARTY-NOTICES.TXT",
  3663. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3664. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3665. "microsoft.aspnetcore.nodeservices.nuspec"
  3666. ]
  3667. },
  3668. "Microsoft.CSharp/4.5.0": {
  3669. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3670. "type": "package",
  3671. "path": "microsoft.csharp/4.5.0",
  3672. "files": [
  3673. ".nupkg.metadata",
  3674. ".signature.p7s",
  3675. "LICENSE.TXT",
  3676. "THIRD-PARTY-NOTICES.TXT",
  3677. "lib/MonoAndroid10/_._",
  3678. "lib/MonoTouch10/_._",
  3679. "lib/net45/_._",
  3680. "lib/netcore50/Microsoft.CSharp.dll",
  3681. "lib/netcoreapp2.0/_._",
  3682. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3683. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3684. "lib/portable-net45+win8+wp8+wpa81/_._",
  3685. "lib/uap10.0.16299/_._",
  3686. "lib/win8/_._",
  3687. "lib/wp80/_._",
  3688. "lib/wpa81/_._",
  3689. "lib/xamarinios10/_._",
  3690. "lib/xamarinmac20/_._",
  3691. "lib/xamarintvos10/_._",
  3692. "lib/xamarinwatchos10/_._",
  3693. "microsoft.csharp.4.5.0.nupkg.sha512",
  3694. "microsoft.csharp.nuspec",
  3695. "ref/MonoAndroid10/_._",
  3696. "ref/MonoTouch10/_._",
  3697. "ref/net45/_._",
  3698. "ref/netcore50/Microsoft.CSharp.dll",
  3699. "ref/netcore50/Microsoft.CSharp.xml",
  3700. "ref/netcore50/de/Microsoft.CSharp.xml",
  3701. "ref/netcore50/es/Microsoft.CSharp.xml",
  3702. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3703. "ref/netcore50/it/Microsoft.CSharp.xml",
  3704. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3705. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3706. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3707. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3708. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3709. "ref/netcoreapp2.0/_._",
  3710. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3711. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3712. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3713. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3714. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3715. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3716. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3717. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3718. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3719. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3720. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3721. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3722. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3723. "ref/portable-net45+win8+wp8+wpa81/_._",
  3724. "ref/uap10.0.16299/_._",
  3725. "ref/win8/_._",
  3726. "ref/wp80/_._",
  3727. "ref/wpa81/_._",
  3728. "ref/xamarinios10/_._",
  3729. "ref/xamarinmac20/_._",
  3730. "ref/xamarintvos10/_._",
  3731. "ref/xamarinwatchos10/_._",
  3732. "useSharedDesignerContext.txt",
  3733. "version.txt"
  3734. ]
  3735. },
  3736. "Microsoft.EntityFrameworkCore/5.0.0": {
  3737. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3738. "type": "package",
  3739. "path": "microsoft.entityframeworkcore/5.0.0",
  3740. "files": [
  3741. ".nupkg.metadata",
  3742. ".signature.p7s",
  3743. "Icon.png",
  3744. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3745. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3746. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3747. "microsoft.entityframeworkcore.nuspec"
  3748. ]
  3749. },
  3750. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3751. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3752. "type": "package",
  3753. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3754. "files": [
  3755. ".nupkg.metadata",
  3756. ".signature.p7s",
  3757. "Icon.png",
  3758. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3759. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3760. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3761. "microsoft.entityframeworkcore.abstractions.nuspec"
  3762. ]
  3763. },
  3764. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3765. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3766. "type": "package",
  3767. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3768. "files": [
  3769. ".nupkg.metadata",
  3770. ".signature.p7s",
  3771. "Icon.png",
  3772. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3773. "lib/netstandard2.0/_._",
  3774. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3775. "microsoft.entityframeworkcore.analyzers.nuspec"
  3776. ]
  3777. },
  3778. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3779. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3780. "type": "package",
  3781. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3782. "files": [
  3783. ".nupkg.metadata",
  3784. ".signature.p7s",
  3785. "Icon.png",
  3786. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3787. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3788. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3789. "microsoft.entityframeworkcore.relational.nuspec"
  3790. ]
  3791. },
  3792. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3793. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3794. "type": "package",
  3795. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3796. "hasTools": true,
  3797. "files": [
  3798. ".nupkg.metadata",
  3799. ".signature.p7s",
  3800. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3801. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3802. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3803. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3804. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3805. "microsoft.extensions.apidescription.server.nuspec",
  3806. "tools/Newtonsoft.Json.dll",
  3807. "tools/dotnet-getdocument.deps.json",
  3808. "tools/dotnet-getdocument.dll",
  3809. "tools/dotnet-getdocument.runtimeconfig.json",
  3810. "tools/net461-x86/GetDocument.Insider.exe",
  3811. "tools/net461-x86/GetDocument.Insider.exe.config",
  3812. "tools/net461/GetDocument.Insider.exe",
  3813. "tools/net461/GetDocument.Insider.exe.config",
  3814. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3815. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3816. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3817. ]
  3818. },
  3819. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3820. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3821. "type": "package",
  3822. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3823. "files": [
  3824. ".nupkg.metadata",
  3825. ".signature.p7s",
  3826. "Icon.png",
  3827. "LICENSE.TXT",
  3828. "THIRD-PARTY-NOTICES.TXT",
  3829. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3830. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3831. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3832. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3833. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3834. "microsoft.extensions.caching.abstractions.nuspec",
  3835. "useSharedDesignerContext.txt",
  3836. "version.txt"
  3837. ]
  3838. },
  3839. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3840. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3841. "type": "package",
  3842. "path": "microsoft.extensions.caching.memory/5.0.0",
  3843. "files": [
  3844. ".nupkg.metadata",
  3845. ".signature.p7s",
  3846. "Icon.png",
  3847. "LICENSE.TXT",
  3848. "THIRD-PARTY-NOTICES.TXT",
  3849. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3850. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3851. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3852. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3853. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3854. "microsoft.extensions.caching.memory.nuspec",
  3855. "useSharedDesignerContext.txt",
  3856. "version.txt"
  3857. ]
  3858. },
  3859. "Microsoft.Extensions.Configuration/5.0.0": {
  3860. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3861. "type": "package",
  3862. "path": "microsoft.extensions.configuration/5.0.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "Icon.png",
  3867. "LICENSE.TXT",
  3868. "THIRD-PARTY-NOTICES.TXT",
  3869. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3870. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3871. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3872. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3873. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3874. "microsoft.extensions.configuration.nuspec",
  3875. "useSharedDesignerContext.txt",
  3876. "version.txt"
  3877. ]
  3878. },
  3879. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3880. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3881. "type": "package",
  3882. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3883. "files": [
  3884. ".nupkg.metadata",
  3885. ".signature.p7s",
  3886. "Icon.png",
  3887. "LICENSE.TXT",
  3888. "THIRD-PARTY-NOTICES.TXT",
  3889. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3890. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3891. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3892. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3893. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3894. "microsoft.extensions.configuration.abstractions.nuspec",
  3895. "useSharedDesignerContext.txt",
  3896. "version.txt"
  3897. ]
  3898. },
  3899. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3900. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3901. "type": "package",
  3902. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3903. "files": [
  3904. ".nupkg.metadata",
  3905. ".signature.p7s",
  3906. "Icon.png",
  3907. "LICENSE.TXT",
  3908. "THIRD-PARTY-NOTICES.TXT",
  3909. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3910. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3911. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3912. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3913. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3914. "microsoft.extensions.configuration.binder.nuspec",
  3915. "useSharedDesignerContext.txt",
  3916. "version.txt"
  3917. ]
  3918. },
  3919. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3920. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3921. "type": "package",
  3922. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3923. "files": [
  3924. ".nupkg.metadata",
  3925. ".signature.p7s",
  3926. "Icon.png",
  3927. "LICENSE.TXT",
  3928. "THIRD-PARTY-NOTICES.TXT",
  3929. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3930. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3931. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3932. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3933. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3934. "microsoft.extensions.configuration.fileextensions.nuspec",
  3935. "useSharedDesignerContext.txt",
  3936. "version.txt"
  3937. ]
  3938. },
  3939. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3940. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3941. "type": "package",
  3942. "path": "microsoft.extensions.configuration.json/5.0.0",
  3943. "files": [
  3944. ".nupkg.metadata",
  3945. ".signature.p7s",
  3946. "Icon.png",
  3947. "LICENSE.TXT",
  3948. "THIRD-PARTY-NOTICES.TXT",
  3949. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3950. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3951. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3952. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3953. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3954. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3955. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3956. "microsoft.extensions.configuration.json.nuspec",
  3957. "useSharedDesignerContext.txt",
  3958. "version.txt"
  3959. ]
  3960. },
  3961. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3962. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3963. "type": "package",
  3964. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3965. "files": [
  3966. ".nupkg.metadata",
  3967. ".signature.p7s",
  3968. "Icon.png",
  3969. "LICENSE.TXT",
  3970. "THIRD-PARTY-NOTICES.TXT",
  3971. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3972. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3973. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3974. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3975. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3976. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3977. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3978. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3979. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3980. "microsoft.extensions.dependencyinjection.nuspec",
  3981. "useSharedDesignerContext.txt",
  3982. "version.txt"
  3983. ]
  3984. },
  3985. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3986. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3987. "type": "package",
  3988. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3989. "files": [
  3990. ".nupkg.metadata",
  3991. ".signature.p7s",
  3992. "Icon.png",
  3993. "LICENSE.TXT",
  3994. "THIRD-PARTY-NOTICES.TXT",
  3995. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3996. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3997. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3998. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3999. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4000. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4001. "useSharedDesignerContext.txt",
  4002. "version.txt"
  4003. ]
  4004. },
  4005. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4006. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4007. "type": "package",
  4008. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4009. "files": [
  4010. ".nupkg.metadata",
  4011. ".signature.p7s",
  4012. "Icon.png",
  4013. "LICENSE.TXT",
  4014. "THIRD-PARTY-NOTICES.TXT",
  4015. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4016. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4017. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4018. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4019. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4020. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4021. "useSharedDesignerContext.txt",
  4022. "version.txt"
  4023. ]
  4024. },
  4025. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4026. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4027. "type": "package",
  4028. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4029. "files": [
  4030. ".nupkg.metadata",
  4031. ".signature.p7s",
  4032. "Icon.png",
  4033. "LICENSE.TXT",
  4034. "THIRD-PARTY-NOTICES.TXT",
  4035. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4036. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4037. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4038. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4039. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4040. "microsoft.extensions.fileproviders.physical.nuspec",
  4041. "useSharedDesignerContext.txt",
  4042. "version.txt"
  4043. ]
  4044. },
  4045. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4046. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4047. "type": "package",
  4048. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4049. "files": [
  4050. ".nupkg.metadata",
  4051. ".signature.p7s",
  4052. "Icon.png",
  4053. "LICENSE.TXT",
  4054. "THIRD-PARTY-NOTICES.TXT",
  4055. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4056. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4057. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4058. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4059. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4060. "microsoft.extensions.filesystemglobbing.nuspec",
  4061. "useSharedDesignerContext.txt",
  4062. "version.txt"
  4063. ]
  4064. },
  4065. "Microsoft.Extensions.Hosting/2.1.0": {
  4066. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4067. "type": "package",
  4068. "path": "microsoft.extensions.hosting/2.1.0",
  4069. "files": [
  4070. ".nupkg.metadata",
  4071. ".signature.p7s",
  4072. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4073. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4074. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4075. "microsoft.extensions.hosting.nuspec"
  4076. ]
  4077. },
  4078. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4079. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4080. "type": "package",
  4081. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4082. "files": [
  4083. ".nupkg.metadata",
  4084. ".signature.p7s",
  4085. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4086. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4087. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4088. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4089. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4090. "microsoft.extensions.hosting.abstractions.nuspec",
  4091. "packageIcon.png"
  4092. ]
  4093. },
  4094. "Microsoft.Extensions.Http/5.0.0": {
  4095. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4096. "type": "package",
  4097. "path": "microsoft.extensions.http/5.0.0",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "Icon.png",
  4102. "LICENSE.TXT",
  4103. "THIRD-PARTY-NOTICES.TXT",
  4104. "lib/net461/Microsoft.Extensions.Http.dll",
  4105. "lib/net461/Microsoft.Extensions.Http.xml",
  4106. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4107. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4108. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4109. "microsoft.extensions.http.nuspec",
  4110. "useSharedDesignerContext.txt",
  4111. "version.txt"
  4112. ]
  4113. },
  4114. "Microsoft.Extensions.Logging/5.0.0": {
  4115. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4116. "type": "package",
  4117. "path": "microsoft.extensions.logging/5.0.0",
  4118. "files": [
  4119. ".nupkg.metadata",
  4120. ".signature.p7s",
  4121. "Icon.png",
  4122. "LICENSE.TXT",
  4123. "THIRD-PARTY-NOTICES.TXT",
  4124. "lib/net461/Microsoft.Extensions.Logging.dll",
  4125. "lib/net461/Microsoft.Extensions.Logging.xml",
  4126. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4127. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4128. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4129. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4130. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4131. "microsoft.extensions.logging.nuspec",
  4132. "useSharedDesignerContext.txt",
  4133. "version.txt"
  4134. ]
  4135. },
  4136. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4137. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4138. "type": "package",
  4139. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "Icon.png",
  4144. "LICENSE.TXT",
  4145. "THIRD-PARTY-NOTICES.TXT",
  4146. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4147. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4148. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4149. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4150. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4151. "microsoft.extensions.logging.abstractions.nuspec",
  4152. "useSharedDesignerContext.txt",
  4153. "version.txt"
  4154. ]
  4155. },
  4156. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4157. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4158. "type": "package",
  4159. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4160. "files": [
  4161. ".nupkg.metadata",
  4162. ".signature.p7s",
  4163. "Icon.png",
  4164. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4165. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4166. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4167. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4168. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4169. "microsoft.extensions.logging.configuration.nuspec"
  4170. ]
  4171. },
  4172. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4173. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4174. "type": "package",
  4175. "path": "microsoft.extensions.logging.console/3.1.30",
  4176. "files": [
  4177. ".nupkg.metadata",
  4178. ".signature.p7s",
  4179. "Icon.png",
  4180. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4181. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4182. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4183. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4184. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4185. "microsoft.extensions.logging.console.nuspec"
  4186. ]
  4187. },
  4188. "Microsoft.Extensions.Options/5.0.0": {
  4189. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4190. "type": "package",
  4191. "path": "microsoft.extensions.options/5.0.0",
  4192. "files": [
  4193. ".nupkg.metadata",
  4194. ".signature.p7s",
  4195. "Icon.png",
  4196. "LICENSE.TXT",
  4197. "THIRD-PARTY-NOTICES.TXT",
  4198. "lib/net461/Microsoft.Extensions.Options.dll",
  4199. "lib/net461/Microsoft.Extensions.Options.xml",
  4200. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4201. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4202. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4203. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4204. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4205. "microsoft.extensions.options.nuspec",
  4206. "useSharedDesignerContext.txt",
  4207. "version.txt"
  4208. ]
  4209. },
  4210. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4211. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4212. "type": "package",
  4213. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4214. "files": [
  4215. ".nupkg.metadata",
  4216. ".signature.p7s",
  4217. "Icon.png",
  4218. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4219. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4220. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4221. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4222. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4223. "microsoft.extensions.options.configurationextensions.nuspec"
  4224. ]
  4225. },
  4226. "Microsoft.Extensions.Primitives/5.0.0": {
  4227. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4228. "type": "package",
  4229. "path": "microsoft.extensions.primitives/5.0.0",
  4230. "files": [
  4231. ".nupkg.metadata",
  4232. ".signature.p7s",
  4233. "Icon.png",
  4234. "LICENSE.TXT",
  4235. "THIRD-PARTY-NOTICES.TXT",
  4236. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4237. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4238. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4239. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4240. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4241. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4242. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4243. "microsoft.extensions.primitives.nuspec",
  4244. "useSharedDesignerContext.txt",
  4245. "version.txt"
  4246. ]
  4247. },
  4248. "Microsoft.NETCore.Platforms/5.0.0": {
  4249. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4250. "type": "package",
  4251. "path": "microsoft.netcore.platforms/5.0.0",
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "Icon.png",
  4256. "LICENSE.TXT",
  4257. "THIRD-PARTY-NOTICES.TXT",
  4258. "lib/netstandard1.0/_._",
  4259. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4260. "microsoft.netcore.platforms.nuspec",
  4261. "runtime.json",
  4262. "useSharedDesignerContext.txt",
  4263. "version.txt"
  4264. ]
  4265. },
  4266. "Microsoft.NETCore.Targets/1.1.0": {
  4267. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4268. "type": "package",
  4269. "path": "microsoft.netcore.targets/1.1.0",
  4270. "files": [
  4271. ".nupkg.metadata",
  4272. ".signature.p7s",
  4273. "ThirdPartyNotices.txt",
  4274. "dotnet_library_license.txt",
  4275. "lib/netstandard1.0/_._",
  4276. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4277. "microsoft.netcore.targets.nuspec",
  4278. "runtime.json"
  4279. ]
  4280. },
  4281. "Microsoft.OpenApi/1.2.3": {
  4282. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4283. "type": "package",
  4284. "path": "microsoft.openapi/1.2.3",
  4285. "files": [
  4286. ".nupkg.metadata",
  4287. ".signature.p7s",
  4288. "lib/net46/Microsoft.OpenApi.dll",
  4289. "lib/net46/Microsoft.OpenApi.pdb",
  4290. "lib/net46/Microsoft.OpenApi.xml",
  4291. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4292. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4293. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4294. "microsoft.openapi.1.2.3.nupkg.sha512",
  4295. "microsoft.openapi.nuspec"
  4296. ]
  4297. },
  4298. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4299. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4300. "type": "package",
  4301. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4302. "hasTools": true,
  4303. "files": [
  4304. ".nupkg.metadata",
  4305. ".signature.p7s",
  4306. "CHANGELOG.md",
  4307. "EULA.md",
  4308. "ThirdPartyNotices.txt",
  4309. "build/Container.props",
  4310. "build/Container.targets",
  4311. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4312. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4313. "build/Rules/GeneralBrowseObject.xaml",
  4314. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4315. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4316. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4317. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4318. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4319. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4320. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4321. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4322. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4323. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4324. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4325. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4326. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4327. "build/ToolsTarget.props",
  4328. "build/ToolsTarget.targets",
  4329. "icon.png",
  4330. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4331. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4332. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4333. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4334. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4335. "tools/Newtonsoft.Json.dll",
  4336. "tools/System.Security.Principal.Windows.dll",
  4337. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4338. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4339. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4340. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4341. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4342. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4343. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4344. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4345. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4346. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4347. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4348. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4349. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4350. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4351. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4352. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4353. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4354. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4355. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4356. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4357. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4358. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4359. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4360. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4361. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4362. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4363. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4364. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4365. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4366. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4367. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4368. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4369. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4370. "tools/utils/KillProcess.exe",
  4371. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4372. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4373. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4374. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4375. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4376. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4377. ]
  4378. },
  4379. "Microsoft.Win32.Primitives/4.3.0": {
  4380. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4381. "type": "package",
  4382. "path": "microsoft.win32.primitives/4.3.0",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "ThirdPartyNotices.txt",
  4387. "dotnet_library_license.txt",
  4388. "lib/MonoAndroid10/_._",
  4389. "lib/MonoTouch10/_._",
  4390. "lib/net46/Microsoft.Win32.Primitives.dll",
  4391. "lib/xamarinios10/_._",
  4392. "lib/xamarinmac20/_._",
  4393. "lib/xamarintvos10/_._",
  4394. "lib/xamarinwatchos10/_._",
  4395. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4396. "microsoft.win32.primitives.nuspec",
  4397. "ref/MonoAndroid10/_._",
  4398. "ref/MonoTouch10/_._",
  4399. "ref/net46/Microsoft.Win32.Primitives.dll",
  4400. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4401. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4402. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4403. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4404. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4405. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4406. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4407. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4408. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4409. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4410. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4411. "ref/xamarinios10/_._",
  4412. "ref/xamarinmac20/_._",
  4413. "ref/xamarintvos10/_._",
  4414. "ref/xamarinwatchos10/_._"
  4415. ]
  4416. },
  4417. "Microsoft.Win32.SystemEvents/5.0.0": {
  4418. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4419. "type": "package",
  4420. "path": "microsoft.win32.systemevents/5.0.0",
  4421. "files": [
  4422. ".nupkg.metadata",
  4423. ".signature.p7s",
  4424. "Icon.png",
  4425. "LICENSE.TXT",
  4426. "THIRD-PARTY-NOTICES.TXT",
  4427. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4428. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4429. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4430. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4431. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4432. "microsoft.win32.systemevents.nuspec",
  4433. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4434. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4435. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4436. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4437. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4438. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4439. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4440. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4441. "useSharedDesignerContext.txt",
  4442. "version.txt"
  4443. ]
  4444. },
  4445. "MySql.Data/8.0.23": {
  4446. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4447. "type": "package",
  4448. "path": "mysql.data/8.0.23",
  4449. "files": [
  4450. ".nupkg.metadata",
  4451. ".signature.p7s",
  4452. "lib/net452/MySql.Data.dll",
  4453. "lib/net452/MySql.Data.xml",
  4454. "lib/net452/Ubiety.Dns.Core.dll",
  4455. "lib/net452/Zstandard.Net.dll",
  4456. "lib/net48/MySql.Data.dll",
  4457. "lib/net48/MySql.Data.xml",
  4458. "lib/net48/Ubiety.Dns.Core.dll",
  4459. "lib/net48/Zstandard.Net.dll",
  4460. "lib/net5.0/MySql.Data.dll",
  4461. "lib/net5.0/MySql.Data.xml",
  4462. "lib/net5.0/Ubiety.Dns.Core.dll",
  4463. "lib/net5.0/Zstandard.Net.dll",
  4464. "lib/netstandard2.0/MySql.Data.dll",
  4465. "lib/netstandard2.0/MySql.Data.xml",
  4466. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4467. "lib/netstandard2.0/Zstandard.Net.dll",
  4468. "lib/netstandard2.1/MySql.Data.dll",
  4469. "lib/netstandard2.1/MySql.Data.xml",
  4470. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4471. "lib/netstandard2.1/Zstandard.Net.dll",
  4472. "mysql.data.8.0.23.nupkg.sha512",
  4473. "mysql.data.nuspec"
  4474. ]
  4475. },
  4476. "MySqlConnector/1.1.0": {
  4477. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4478. "type": "package",
  4479. "path": "mysqlconnector/1.1.0",
  4480. "files": [
  4481. ".nupkg.metadata",
  4482. ".signature.p7s",
  4483. "lib/net45/MySqlConnector.dll",
  4484. "lib/net45/MySqlConnector.xml",
  4485. "lib/net461/MySqlConnector.dll",
  4486. "lib/net461/MySqlConnector.xml",
  4487. "lib/net471/MySqlConnector.dll",
  4488. "lib/net471/MySqlConnector.xml",
  4489. "lib/net5.0/MySqlConnector.dll",
  4490. "lib/net5.0/MySqlConnector.xml",
  4491. "lib/netcoreapp2.1/MySqlConnector.dll",
  4492. "lib/netcoreapp2.1/MySqlConnector.xml",
  4493. "lib/netcoreapp3.1/MySqlConnector.dll",
  4494. "lib/netcoreapp3.1/MySqlConnector.xml",
  4495. "lib/netstandard1.3/MySqlConnector.dll",
  4496. "lib/netstandard1.3/MySqlConnector.xml",
  4497. "lib/netstandard2.0/MySqlConnector.dll",
  4498. "lib/netstandard2.0/MySqlConnector.xml",
  4499. "lib/netstandard2.1/MySqlConnector.dll",
  4500. "lib/netstandard2.1/MySqlConnector.xml",
  4501. "logo.png",
  4502. "mysqlconnector.1.1.0.nupkg.sha512",
  4503. "mysqlconnector.nuspec"
  4504. ]
  4505. },
  4506. "NETStandard.Library/1.6.1": {
  4507. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4508. "type": "package",
  4509. "path": "netstandard.library/1.6.1",
  4510. "files": [
  4511. ".nupkg.metadata",
  4512. ".signature.p7s",
  4513. "ThirdPartyNotices.txt",
  4514. "dotnet_library_license.txt",
  4515. "netstandard.library.1.6.1.nupkg.sha512",
  4516. "netstandard.library.nuspec"
  4517. ]
  4518. },
  4519. "Newtonsoft.Json/13.0.3": {
  4520. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4521. "type": "package",
  4522. "path": "newtonsoft.json/13.0.3",
  4523. "files": [
  4524. ".nupkg.metadata",
  4525. ".signature.p7s",
  4526. "LICENSE.md",
  4527. "README.md",
  4528. "lib/net20/Newtonsoft.Json.dll",
  4529. "lib/net20/Newtonsoft.Json.xml",
  4530. "lib/net35/Newtonsoft.Json.dll",
  4531. "lib/net35/Newtonsoft.Json.xml",
  4532. "lib/net40/Newtonsoft.Json.dll",
  4533. "lib/net40/Newtonsoft.Json.xml",
  4534. "lib/net45/Newtonsoft.Json.dll",
  4535. "lib/net45/Newtonsoft.Json.xml",
  4536. "lib/net6.0/Newtonsoft.Json.dll",
  4537. "lib/net6.0/Newtonsoft.Json.xml",
  4538. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4539. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4540. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4541. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4542. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4543. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4544. "newtonsoft.json.13.0.3.nupkg.sha512",
  4545. "newtonsoft.json.nuspec",
  4546. "packageIcon.png"
  4547. ]
  4548. },
  4549. "Nito.AsyncEx.Coordination/5.0.0": {
  4550. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4551. "type": "package",
  4552. "path": "nito.asyncex.coordination/5.0.0",
  4553. "files": [
  4554. ".nupkg.metadata",
  4555. ".signature.p7s",
  4556. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4557. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4558. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4559. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4560. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4561. "nito.asyncex.coordination.nuspec"
  4562. ]
  4563. },
  4564. "Nito.AsyncEx.Tasks/5.0.0": {
  4565. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4566. "type": "package",
  4567. "path": "nito.asyncex.tasks/5.0.0",
  4568. "files": [
  4569. ".nupkg.metadata",
  4570. ".signature.p7s",
  4571. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4572. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4573. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4574. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4575. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4576. "nito.asyncex.tasks.nuspec"
  4577. ]
  4578. },
  4579. "Nito.Collections.Deque/1.0.4": {
  4580. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4581. "type": "package",
  4582. "path": "nito.collections.deque/1.0.4",
  4583. "files": [
  4584. ".nupkg.metadata",
  4585. ".signature.p7s",
  4586. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4587. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4588. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4589. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4590. "nito.collections.deque.1.0.4.nupkg.sha512",
  4591. "nito.collections.deque.nuspec"
  4592. ]
  4593. },
  4594. "Nito.Disposables/2.0.0": {
  4595. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4596. "type": "package",
  4597. "path": "nito.disposables/2.0.0",
  4598. "files": [
  4599. ".nupkg.metadata",
  4600. ".signature.p7s",
  4601. "lib/netstandard1.0/Nito.Disposables.dll",
  4602. "lib/netstandard1.0/Nito.Disposables.pdb",
  4603. "lib/netstandard1.0/Nito.Disposables.xml",
  4604. "lib/netstandard2.0/Nito.Disposables.dll",
  4605. "lib/netstandard2.0/Nito.Disposables.pdb",
  4606. "lib/netstandard2.0/Nito.Disposables.xml",
  4607. "nito.disposables.2.0.0.nupkg.sha512",
  4608. "nito.disposables.nuspec"
  4609. ]
  4610. },
  4611. "NodaTime/2.4.7": {
  4612. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4613. "type": "package",
  4614. "path": "nodatime/2.4.7",
  4615. "files": [
  4616. ".nupkg.metadata",
  4617. ".signature.p7s",
  4618. "lib/net45/NodaTime.dll",
  4619. "lib/net45/NodaTime.pdb",
  4620. "lib/net45/NodaTime.xml",
  4621. "lib/netstandard1.3/NodaTime.dll",
  4622. "lib/netstandard1.3/NodaTime.pdb",
  4623. "lib/netstandard1.3/NodaTime.xml",
  4624. "lib/netstandard2.0/NodaTime.dll",
  4625. "lib/netstandard2.0/NodaTime.pdb",
  4626. "lib/netstandard2.0/NodaTime.xml",
  4627. "nodatime.2.4.7.nupkg.sha512",
  4628. "nodatime.nuspec"
  4629. ]
  4630. },
  4631. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4632. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4633. "type": "package",
  4634. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "icon.png",
  4639. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4640. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4641. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4642. "pomelo.entityframeworkcore.mysql.nuspec"
  4643. ]
  4644. },
  4645. "QRCoder/1.4.3": {
  4646. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4647. "type": "package",
  4648. "path": "qrcoder/1.4.3",
  4649. "files": [
  4650. ".nupkg.metadata",
  4651. ".signature.p7s",
  4652. "lib/net35/QRCoder.dll",
  4653. "lib/net40/QRCoder.dll",
  4654. "lib/net5.0-windows7.0/QRCoder.dll",
  4655. "lib/net5.0/QRCoder.dll",
  4656. "lib/net6.0-windows7.0/QRCoder.dll",
  4657. "lib/net6.0/QRCoder.dll",
  4658. "lib/netstandard1.3/QRCoder.dll",
  4659. "lib/netstandard2.0/QRCoder.dll",
  4660. "nuget-icon.png",
  4661. "nuget-readme.md",
  4662. "qrcoder.1.4.3.nupkg.sha512",
  4663. "qrcoder.nuspec"
  4664. ]
  4665. },
  4666. "RabbitMQ.Client/6.8.1": {
  4667. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4668. "type": "package",
  4669. "path": "rabbitmq.client/6.8.1",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "README.md",
  4674. "icon.png",
  4675. "lib/net462/RabbitMQ.Client.dll",
  4676. "lib/net462/RabbitMQ.Client.xml",
  4677. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4678. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4679. "rabbitmq.client.6.8.1.nupkg.sha512",
  4680. "rabbitmq.client.nuspec"
  4681. ]
  4682. },
  4683. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4684. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4685. "type": "package",
  4686. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "ThirdPartyNotices.txt",
  4691. "dotnet_library_license.txt",
  4692. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4693. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4694. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4695. ]
  4696. },
  4697. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4698. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4699. "type": "package",
  4700. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4701. "files": [
  4702. ".nupkg.metadata",
  4703. ".signature.p7s",
  4704. "ThirdPartyNotices.txt",
  4705. "dotnet_library_license.txt",
  4706. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4707. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4708. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4709. ]
  4710. },
  4711. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4712. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4713. "type": "package",
  4714. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "ThirdPartyNotices.txt",
  4719. "dotnet_library_license.txt",
  4720. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4721. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4722. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4723. ]
  4724. },
  4725. "runtime.native.System/4.3.0": {
  4726. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4727. "type": "package",
  4728. "path": "runtime.native.system/4.3.0",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "ThirdPartyNotices.txt",
  4733. "dotnet_library_license.txt",
  4734. "lib/netstandard1.0/_._",
  4735. "runtime.native.system.4.3.0.nupkg.sha512",
  4736. "runtime.native.system.nuspec"
  4737. ]
  4738. },
  4739. "runtime.native.System.IO.Compression/4.3.0": {
  4740. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4741. "type": "package",
  4742. "path": "runtime.native.system.io.compression/4.3.0",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "ThirdPartyNotices.txt",
  4747. "dotnet_library_license.txt",
  4748. "lib/netstandard1.0/_._",
  4749. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4750. "runtime.native.system.io.compression.nuspec"
  4751. ]
  4752. },
  4753. "runtime.native.System.Net.Http/4.3.0": {
  4754. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4755. "type": "package",
  4756. "path": "runtime.native.system.net.http/4.3.0",
  4757. "files": [
  4758. ".nupkg.metadata",
  4759. ".signature.p7s",
  4760. "ThirdPartyNotices.txt",
  4761. "dotnet_library_license.txt",
  4762. "lib/netstandard1.0/_._",
  4763. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4764. "runtime.native.system.net.http.nuspec"
  4765. ]
  4766. },
  4767. "runtime.native.System.Net.Security/4.3.0": {
  4768. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4769. "type": "package",
  4770. "path": "runtime.native.system.net.security/4.3.0",
  4771. "files": [
  4772. ".nupkg.metadata",
  4773. ".signature.p7s",
  4774. "ThirdPartyNotices.txt",
  4775. "dotnet_library_license.txt",
  4776. "lib/netstandard1.0/_._",
  4777. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4778. "runtime.native.system.net.security.nuspec"
  4779. ]
  4780. },
  4781. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4782. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4783. "type": "package",
  4784. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4785. "files": [
  4786. ".nupkg.metadata",
  4787. ".signature.p7s",
  4788. "ThirdPartyNotices.txt",
  4789. "dotnet_library_license.txt",
  4790. "lib/netstandard1.0/_._",
  4791. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4792. "runtime.native.system.security.cryptography.apple.nuspec"
  4793. ]
  4794. },
  4795. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4796. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4797. "type": "package",
  4798. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "ThirdPartyNotices.txt",
  4803. "dotnet_library_license.txt",
  4804. "lib/netstandard1.0/_._",
  4805. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4806. "runtime.native.system.security.cryptography.openssl.nuspec"
  4807. ]
  4808. },
  4809. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4810. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4811. "type": "package",
  4812. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "ThirdPartyNotices.txt",
  4817. "dotnet_library_license.txt",
  4818. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4819. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4820. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4821. ]
  4822. },
  4823. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4824. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4825. "type": "package",
  4826. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4827. "files": [
  4828. ".nupkg.metadata",
  4829. ".signature.p7s",
  4830. "ThirdPartyNotices.txt",
  4831. "dotnet_library_license.txt",
  4832. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4833. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4834. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4835. ]
  4836. },
  4837. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4838. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4839. "type": "package",
  4840. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4841. "files": [
  4842. ".nupkg.metadata",
  4843. ".signature.p7s",
  4844. "ThirdPartyNotices.txt",
  4845. "dotnet_library_license.txt",
  4846. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4847. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4848. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4849. ]
  4850. },
  4851. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4852. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4853. "type": "package",
  4854. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4855. "files": [
  4856. ".nupkg.metadata",
  4857. ".signature.p7s",
  4858. "ThirdPartyNotices.txt",
  4859. "dotnet_library_license.txt",
  4860. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4861. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4862. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4863. ]
  4864. },
  4865. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4866. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4867. "type": "package",
  4868. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "ThirdPartyNotices.txt",
  4873. "dotnet_library_license.txt",
  4874. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4875. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4876. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4877. ]
  4878. },
  4879. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4880. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4881. "type": "package",
  4882. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. ".signature.p7s",
  4886. "ThirdPartyNotices.txt",
  4887. "dotnet_library_license.txt",
  4888. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4889. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4890. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4891. ]
  4892. },
  4893. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4894. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4895. "type": "package",
  4896. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4897. "files": [
  4898. ".nupkg.metadata",
  4899. ".signature.p7s",
  4900. "ThirdPartyNotices.txt",
  4901. "dotnet_library_license.txt",
  4902. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4903. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4904. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4905. ]
  4906. },
  4907. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4908. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4909. "type": "package",
  4910. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4911. "files": [
  4912. ".nupkg.metadata",
  4913. ".signature.p7s",
  4914. "ThirdPartyNotices.txt",
  4915. "dotnet_library_license.txt",
  4916. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4917. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4918. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4919. ]
  4920. },
  4921. "SixLabors.ImageSharp/2.1.6": {
  4922. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4923. "type": "package",
  4924. "path": "sixlabors.imagesharp/2.1.6",
  4925. "files": [
  4926. ".nupkg.metadata",
  4927. ".signature.p7s",
  4928. "lib/net472/SixLabors.ImageSharp.dll",
  4929. "lib/net472/SixLabors.ImageSharp.xml",
  4930. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4931. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4932. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4933. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4934. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4935. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4936. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4937. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4938. "sixlabors.imagesharp.128.png",
  4939. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4940. "sixlabors.imagesharp.nuspec"
  4941. ]
  4942. },
  4943. "SSH.NET/2020.0.0-beta1": {
  4944. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4945. "type": "package",
  4946. "path": "ssh.net/2020.0.0-beta1",
  4947. "files": [
  4948. ".nupkg.metadata",
  4949. ".signature.p7s",
  4950. "lib/net35/Renci.SshNet.dll",
  4951. "lib/net35/Renci.SshNet.xml",
  4952. "lib/net40/Renci.SshNet.dll",
  4953. "lib/net40/Renci.SshNet.xml",
  4954. "lib/netstandard1.3/Renci.SshNet.dll",
  4955. "lib/netstandard1.3/Renci.SshNet.xml",
  4956. "lib/netstandard2.0/Renci.SshNet.dll",
  4957. "lib/netstandard2.0/Renci.SshNet.xml",
  4958. "lib/sl4/Renci.SshNet.dll",
  4959. "lib/sl4/Renci.SshNet.xml",
  4960. "lib/sl5/Renci.SshNet.dll",
  4961. "lib/sl5/Renci.SshNet.xml",
  4962. "lib/uap10/Renci.SshNet.dll",
  4963. "lib/uap10/Renci.SshNet.xml",
  4964. "lib/wp71/Renci.SshNet.dll",
  4965. "lib/wp71/Renci.SshNet.xml",
  4966. "lib/wp8/Renci.SshNet.dll",
  4967. "lib/wp8/Renci.SshNet.xml",
  4968. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4969. "ssh.net.nuspec"
  4970. ]
  4971. },
  4972. "SshNet.Security.Cryptography/1.3.0": {
  4973. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4974. "type": "package",
  4975. "path": "sshnet.security.cryptography/1.3.0",
  4976. "files": [
  4977. ".nupkg.metadata",
  4978. ".signature.p7s",
  4979. "lib/net20/SshNet.Security.Cryptography.dll",
  4980. "lib/net20/SshNet.Security.Cryptography.xml",
  4981. "lib/net40/SshNet.Security.Cryptography.dll",
  4982. "lib/net40/SshNet.Security.Cryptography.xml",
  4983. "lib/net45/SshNet.Security.Cryptography.dll",
  4984. "lib/net45/SshNet.Security.Cryptography.xml",
  4985. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4986. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4987. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4988. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4989. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4990. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4991. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4992. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4993. "lib/sl4/SshNet.Security.Cryptography.dll",
  4994. "lib/sl4/SshNet.Security.Cryptography.xml",
  4995. "lib/sl5/SshNet.Security.Cryptography.dll",
  4996. "lib/sl5/SshNet.Security.Cryptography.xml",
  4997. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4998. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4999. "lib/wp71/SshNet.Security.Cryptography.dll",
  5000. "lib/wp71/SshNet.Security.Cryptography.xml",
  5001. "lib/wp8/SshNet.Security.Cryptography.dll",
  5002. "lib/wp8/SshNet.Security.Cryptography.xml",
  5003. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5004. "sshnet.security.cryptography.nuspec"
  5005. ]
  5006. },
  5007. "StackExchange.Redis/1.2.4": {
  5008. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5009. "type": "package",
  5010. "path": "stackexchange.redis/1.2.4",
  5011. "files": [
  5012. ".nupkg.metadata",
  5013. ".signature.p7s",
  5014. "lib/net45/StackExchange.Redis.dll",
  5015. "lib/net45/StackExchange.Redis.xml",
  5016. "lib/net46/StackExchange.Redis.dll",
  5017. "lib/net46/StackExchange.Redis.xml",
  5018. "lib/netstandard1.5/StackExchange.Redis.dll",
  5019. "lib/netstandard1.5/StackExchange.Redis.xml",
  5020. "stackexchange.redis.1.2.4.nupkg.sha512",
  5021. "stackexchange.redis.nuspec"
  5022. ]
  5023. },
  5024. "Swashbuckle.AspNetCore/5.6.3": {
  5025. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5026. "type": "package",
  5027. "path": "swashbuckle.aspnetcore/5.6.3",
  5028. "files": [
  5029. ".nupkg.metadata",
  5030. ".signature.p7s",
  5031. "build/Swashbuckle.AspNetCore.props",
  5032. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5033. "swashbuckle.aspnetcore.nuspec"
  5034. ]
  5035. },
  5036. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5037. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5038. "type": "package",
  5039. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5040. "files": [
  5041. ".nupkg.metadata",
  5042. ".signature.p7s",
  5043. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5044. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5045. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5046. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5047. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5048. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5049. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5050. "swashbuckle.aspnetcore.swagger.nuspec"
  5051. ]
  5052. },
  5053. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5054. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5055. "type": "package",
  5056. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5061. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5062. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5063. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5064. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5065. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5066. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5067. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5068. ]
  5069. },
  5070. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5071. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5072. "type": "package",
  5073. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5074. "files": [
  5075. ".nupkg.metadata",
  5076. ".signature.p7s",
  5077. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5078. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5079. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5080. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5081. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5082. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5083. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5084. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5085. ]
  5086. },
  5087. "System.AppContext/4.3.0": {
  5088. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5089. "type": "package",
  5090. "path": "system.appcontext/4.3.0",
  5091. "files": [
  5092. ".nupkg.metadata",
  5093. ".signature.p7s",
  5094. "ThirdPartyNotices.txt",
  5095. "dotnet_library_license.txt",
  5096. "lib/MonoAndroid10/_._",
  5097. "lib/MonoTouch10/_._",
  5098. "lib/net46/System.AppContext.dll",
  5099. "lib/net463/System.AppContext.dll",
  5100. "lib/netcore50/System.AppContext.dll",
  5101. "lib/netstandard1.6/System.AppContext.dll",
  5102. "lib/xamarinios10/_._",
  5103. "lib/xamarinmac20/_._",
  5104. "lib/xamarintvos10/_._",
  5105. "lib/xamarinwatchos10/_._",
  5106. "ref/MonoAndroid10/_._",
  5107. "ref/MonoTouch10/_._",
  5108. "ref/net46/System.AppContext.dll",
  5109. "ref/net463/System.AppContext.dll",
  5110. "ref/netstandard/_._",
  5111. "ref/netstandard1.3/System.AppContext.dll",
  5112. "ref/netstandard1.3/System.AppContext.xml",
  5113. "ref/netstandard1.3/de/System.AppContext.xml",
  5114. "ref/netstandard1.3/es/System.AppContext.xml",
  5115. "ref/netstandard1.3/fr/System.AppContext.xml",
  5116. "ref/netstandard1.3/it/System.AppContext.xml",
  5117. "ref/netstandard1.3/ja/System.AppContext.xml",
  5118. "ref/netstandard1.3/ko/System.AppContext.xml",
  5119. "ref/netstandard1.3/ru/System.AppContext.xml",
  5120. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5121. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5122. "ref/netstandard1.6/System.AppContext.dll",
  5123. "ref/netstandard1.6/System.AppContext.xml",
  5124. "ref/netstandard1.6/de/System.AppContext.xml",
  5125. "ref/netstandard1.6/es/System.AppContext.xml",
  5126. "ref/netstandard1.6/fr/System.AppContext.xml",
  5127. "ref/netstandard1.6/it/System.AppContext.xml",
  5128. "ref/netstandard1.6/ja/System.AppContext.xml",
  5129. "ref/netstandard1.6/ko/System.AppContext.xml",
  5130. "ref/netstandard1.6/ru/System.AppContext.xml",
  5131. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5132. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5133. "ref/xamarinios10/_._",
  5134. "ref/xamarinmac20/_._",
  5135. "ref/xamarintvos10/_._",
  5136. "ref/xamarinwatchos10/_._",
  5137. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5138. "system.appcontext.4.3.0.nupkg.sha512",
  5139. "system.appcontext.nuspec"
  5140. ]
  5141. },
  5142. "System.Buffers/4.5.1": {
  5143. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5144. "type": "package",
  5145. "path": "system.buffers/4.5.1",
  5146. "files": [
  5147. ".nupkg.metadata",
  5148. ".signature.p7s",
  5149. "LICENSE.TXT",
  5150. "THIRD-PARTY-NOTICES.TXT",
  5151. "lib/net461/System.Buffers.dll",
  5152. "lib/net461/System.Buffers.xml",
  5153. "lib/netcoreapp2.0/_._",
  5154. "lib/netstandard1.1/System.Buffers.dll",
  5155. "lib/netstandard1.1/System.Buffers.xml",
  5156. "lib/netstandard2.0/System.Buffers.dll",
  5157. "lib/netstandard2.0/System.Buffers.xml",
  5158. "lib/uap10.0.16299/_._",
  5159. "ref/net45/System.Buffers.dll",
  5160. "ref/net45/System.Buffers.xml",
  5161. "ref/netcoreapp2.0/_._",
  5162. "ref/netstandard1.1/System.Buffers.dll",
  5163. "ref/netstandard1.1/System.Buffers.xml",
  5164. "ref/netstandard2.0/System.Buffers.dll",
  5165. "ref/netstandard2.0/System.Buffers.xml",
  5166. "ref/uap10.0.16299/_._",
  5167. "system.buffers.4.5.1.nupkg.sha512",
  5168. "system.buffers.nuspec",
  5169. "useSharedDesignerContext.txt",
  5170. "version.txt"
  5171. ]
  5172. },
  5173. "System.Collections/4.3.0": {
  5174. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5175. "type": "package",
  5176. "path": "system.collections/4.3.0",
  5177. "files": [
  5178. ".nupkg.metadata",
  5179. ".signature.p7s",
  5180. "ThirdPartyNotices.txt",
  5181. "dotnet_library_license.txt",
  5182. "lib/MonoAndroid10/_._",
  5183. "lib/MonoTouch10/_._",
  5184. "lib/net45/_._",
  5185. "lib/portable-net45+win8+wp8+wpa81/_._",
  5186. "lib/win8/_._",
  5187. "lib/wp80/_._",
  5188. "lib/wpa81/_._",
  5189. "lib/xamarinios10/_._",
  5190. "lib/xamarinmac20/_._",
  5191. "lib/xamarintvos10/_._",
  5192. "lib/xamarinwatchos10/_._",
  5193. "ref/MonoAndroid10/_._",
  5194. "ref/MonoTouch10/_._",
  5195. "ref/net45/_._",
  5196. "ref/netcore50/System.Collections.dll",
  5197. "ref/netcore50/System.Collections.xml",
  5198. "ref/netcore50/de/System.Collections.xml",
  5199. "ref/netcore50/es/System.Collections.xml",
  5200. "ref/netcore50/fr/System.Collections.xml",
  5201. "ref/netcore50/it/System.Collections.xml",
  5202. "ref/netcore50/ja/System.Collections.xml",
  5203. "ref/netcore50/ko/System.Collections.xml",
  5204. "ref/netcore50/ru/System.Collections.xml",
  5205. "ref/netcore50/zh-hans/System.Collections.xml",
  5206. "ref/netcore50/zh-hant/System.Collections.xml",
  5207. "ref/netstandard1.0/System.Collections.dll",
  5208. "ref/netstandard1.0/System.Collections.xml",
  5209. "ref/netstandard1.0/de/System.Collections.xml",
  5210. "ref/netstandard1.0/es/System.Collections.xml",
  5211. "ref/netstandard1.0/fr/System.Collections.xml",
  5212. "ref/netstandard1.0/it/System.Collections.xml",
  5213. "ref/netstandard1.0/ja/System.Collections.xml",
  5214. "ref/netstandard1.0/ko/System.Collections.xml",
  5215. "ref/netstandard1.0/ru/System.Collections.xml",
  5216. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5217. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5218. "ref/netstandard1.3/System.Collections.dll",
  5219. "ref/netstandard1.3/System.Collections.xml",
  5220. "ref/netstandard1.3/de/System.Collections.xml",
  5221. "ref/netstandard1.3/es/System.Collections.xml",
  5222. "ref/netstandard1.3/fr/System.Collections.xml",
  5223. "ref/netstandard1.3/it/System.Collections.xml",
  5224. "ref/netstandard1.3/ja/System.Collections.xml",
  5225. "ref/netstandard1.3/ko/System.Collections.xml",
  5226. "ref/netstandard1.3/ru/System.Collections.xml",
  5227. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5228. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5229. "ref/portable-net45+win8+wp8+wpa81/_._",
  5230. "ref/win8/_._",
  5231. "ref/wp80/_._",
  5232. "ref/wpa81/_._",
  5233. "ref/xamarinios10/_._",
  5234. "ref/xamarinmac20/_._",
  5235. "ref/xamarintvos10/_._",
  5236. "ref/xamarinwatchos10/_._",
  5237. "system.collections.4.3.0.nupkg.sha512",
  5238. "system.collections.nuspec"
  5239. ]
  5240. },
  5241. "System.Collections.Concurrent/4.3.0": {
  5242. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5243. "type": "package",
  5244. "path": "system.collections.concurrent/4.3.0",
  5245. "files": [
  5246. ".nupkg.metadata",
  5247. ".signature.p7s",
  5248. "ThirdPartyNotices.txt",
  5249. "dotnet_library_license.txt",
  5250. "lib/MonoAndroid10/_._",
  5251. "lib/MonoTouch10/_._",
  5252. "lib/net45/_._",
  5253. "lib/netcore50/System.Collections.Concurrent.dll",
  5254. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5255. "lib/portable-net45+win8+wpa81/_._",
  5256. "lib/win8/_._",
  5257. "lib/wpa81/_._",
  5258. "lib/xamarinios10/_._",
  5259. "lib/xamarinmac20/_._",
  5260. "lib/xamarintvos10/_._",
  5261. "lib/xamarinwatchos10/_._",
  5262. "ref/MonoAndroid10/_._",
  5263. "ref/MonoTouch10/_._",
  5264. "ref/net45/_._",
  5265. "ref/netcore50/System.Collections.Concurrent.dll",
  5266. "ref/netcore50/System.Collections.Concurrent.xml",
  5267. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5268. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5269. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5270. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5271. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5272. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5273. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5274. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5275. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5276. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5277. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5278. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5279. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5280. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5281. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5282. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5283. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5284. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5285. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5286. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5287. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5288. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5289. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5290. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5291. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5292. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5293. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5294. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5295. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5296. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5297. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5298. "ref/portable-net45+win8+wpa81/_._",
  5299. "ref/win8/_._",
  5300. "ref/wpa81/_._",
  5301. "ref/xamarinios10/_._",
  5302. "ref/xamarinmac20/_._",
  5303. "ref/xamarintvos10/_._",
  5304. "ref/xamarinwatchos10/_._",
  5305. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5306. "system.collections.concurrent.nuspec"
  5307. ]
  5308. },
  5309. "System.Collections.Immutable/5.0.0": {
  5310. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5311. "type": "package",
  5312. "path": "system.collections.immutable/5.0.0",
  5313. "files": [
  5314. ".nupkg.metadata",
  5315. ".signature.p7s",
  5316. "Icon.png",
  5317. "LICENSE.TXT",
  5318. "THIRD-PARTY-NOTICES.TXT",
  5319. "lib/net461/System.Collections.Immutable.dll",
  5320. "lib/net461/System.Collections.Immutable.xml",
  5321. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5322. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5323. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5324. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5325. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5326. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5327. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5328. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5329. "system.collections.immutable.5.0.0.nupkg.sha512",
  5330. "system.collections.immutable.nuspec",
  5331. "useSharedDesignerContext.txt",
  5332. "version.txt"
  5333. ]
  5334. },
  5335. "System.Collections.NonGeneric/4.3.0": {
  5336. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5337. "type": "package",
  5338. "path": "system.collections.nongeneric/4.3.0",
  5339. "files": [
  5340. ".nupkg.metadata",
  5341. ".signature.p7s",
  5342. "ThirdPartyNotices.txt",
  5343. "dotnet_library_license.txt",
  5344. "lib/MonoAndroid10/_._",
  5345. "lib/MonoTouch10/_._",
  5346. "lib/net46/System.Collections.NonGeneric.dll",
  5347. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5348. "lib/xamarinios10/_._",
  5349. "lib/xamarinmac20/_._",
  5350. "lib/xamarintvos10/_._",
  5351. "lib/xamarinwatchos10/_._",
  5352. "ref/MonoAndroid10/_._",
  5353. "ref/MonoTouch10/_._",
  5354. "ref/net46/System.Collections.NonGeneric.dll",
  5355. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5356. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5357. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5358. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5359. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5360. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5361. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5362. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5363. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5364. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5365. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5366. "ref/xamarinios10/_._",
  5367. "ref/xamarinmac20/_._",
  5368. "ref/xamarintvos10/_._",
  5369. "ref/xamarinwatchos10/_._",
  5370. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5371. "system.collections.nongeneric.nuspec"
  5372. ]
  5373. },
  5374. "System.ComponentModel/4.3.0": {
  5375. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5376. "type": "package",
  5377. "path": "system.componentmodel/4.3.0",
  5378. "files": [
  5379. ".nupkg.metadata",
  5380. ".signature.p7s",
  5381. "ThirdPartyNotices.txt",
  5382. "dotnet_library_license.txt",
  5383. "lib/MonoAndroid10/_._",
  5384. "lib/MonoTouch10/_._",
  5385. "lib/net45/_._",
  5386. "lib/netcore50/System.ComponentModel.dll",
  5387. "lib/netstandard1.3/System.ComponentModel.dll",
  5388. "lib/portable-net45+win8+wp8+wpa81/_._",
  5389. "lib/win8/_._",
  5390. "lib/wp80/_._",
  5391. "lib/wpa81/_._",
  5392. "lib/xamarinios10/_._",
  5393. "lib/xamarinmac20/_._",
  5394. "lib/xamarintvos10/_._",
  5395. "lib/xamarinwatchos10/_._",
  5396. "ref/MonoAndroid10/_._",
  5397. "ref/MonoTouch10/_._",
  5398. "ref/net45/_._",
  5399. "ref/netcore50/System.ComponentModel.dll",
  5400. "ref/netcore50/System.ComponentModel.xml",
  5401. "ref/netcore50/de/System.ComponentModel.xml",
  5402. "ref/netcore50/es/System.ComponentModel.xml",
  5403. "ref/netcore50/fr/System.ComponentModel.xml",
  5404. "ref/netcore50/it/System.ComponentModel.xml",
  5405. "ref/netcore50/ja/System.ComponentModel.xml",
  5406. "ref/netcore50/ko/System.ComponentModel.xml",
  5407. "ref/netcore50/ru/System.ComponentModel.xml",
  5408. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5409. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5410. "ref/netstandard1.0/System.ComponentModel.dll",
  5411. "ref/netstandard1.0/System.ComponentModel.xml",
  5412. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5413. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5414. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5415. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5416. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5417. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5418. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5419. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5420. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5421. "ref/portable-net45+win8+wp8+wpa81/_._",
  5422. "ref/win8/_._",
  5423. "ref/wp80/_._",
  5424. "ref/wpa81/_._",
  5425. "ref/xamarinios10/_._",
  5426. "ref/xamarinmac20/_._",
  5427. "ref/xamarintvos10/_._",
  5428. "ref/xamarinwatchos10/_._",
  5429. "system.componentmodel.4.3.0.nupkg.sha512",
  5430. "system.componentmodel.nuspec"
  5431. ]
  5432. },
  5433. "System.ComponentModel.Annotations/5.0.0": {
  5434. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5435. "type": "package",
  5436. "path": "system.componentmodel.annotations/5.0.0",
  5437. "files": [
  5438. ".nupkg.metadata",
  5439. ".signature.p7s",
  5440. "Icon.png",
  5441. "LICENSE.TXT",
  5442. "THIRD-PARTY-NOTICES.TXT",
  5443. "lib/MonoAndroid10/_._",
  5444. "lib/MonoTouch10/_._",
  5445. "lib/net45/_._",
  5446. "lib/net461/System.ComponentModel.Annotations.dll",
  5447. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5448. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5449. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5450. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5451. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5452. "lib/portable-net45+win8/_._",
  5453. "lib/win8/_._",
  5454. "lib/xamarinios10/_._",
  5455. "lib/xamarinmac20/_._",
  5456. "lib/xamarintvos10/_._",
  5457. "lib/xamarinwatchos10/_._",
  5458. "ref/MonoAndroid10/_._",
  5459. "ref/MonoTouch10/_._",
  5460. "ref/net45/_._",
  5461. "ref/net461/System.ComponentModel.Annotations.dll",
  5462. "ref/net461/System.ComponentModel.Annotations.xml",
  5463. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5464. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5465. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5466. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5467. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5468. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5469. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5470. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5471. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5472. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5473. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5474. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5475. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5476. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5477. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5478. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5479. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5480. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5481. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5482. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5483. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5484. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5485. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5486. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5487. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5488. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5489. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5490. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5491. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5492. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5493. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5494. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5495. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5496. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5497. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5498. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5499. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5500. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5501. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5502. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5503. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5504. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5505. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5506. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5507. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5508. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5509. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5510. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5511. "ref/portable-net45+win8/_._",
  5512. "ref/win8/_._",
  5513. "ref/xamarinios10/_._",
  5514. "ref/xamarinmac20/_._",
  5515. "ref/xamarintvos10/_._",
  5516. "ref/xamarinwatchos10/_._",
  5517. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5518. "system.componentmodel.annotations.nuspec",
  5519. "useSharedDesignerContext.txt",
  5520. "version.txt"
  5521. ]
  5522. },
  5523. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5524. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5525. "type": "package",
  5526. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5527. "files": [
  5528. ".nupkg.metadata",
  5529. ".signature.p7s",
  5530. "ThirdPartyNotices.txt",
  5531. "dotnet_library_license.txt",
  5532. "lib/MonoAndroid10/_._",
  5533. "lib/MonoTouch10/_._",
  5534. "lib/net45/_._",
  5535. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5536. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5537. "lib/portable-net45+win8+wp8+wpa81/_._",
  5538. "lib/win8/_._",
  5539. "lib/wp80/_._",
  5540. "lib/wpa81/_._",
  5541. "lib/xamarinios10/_._",
  5542. "lib/xamarinmac20/_._",
  5543. "lib/xamarintvos10/_._",
  5544. "lib/xamarinwatchos10/_._",
  5545. "ref/MonoAndroid10/_._",
  5546. "ref/MonoTouch10/_._",
  5547. "ref/net45/_._",
  5548. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5549. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5550. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5551. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5552. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5553. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5554. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5555. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5556. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5557. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5558. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5559. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5560. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5561. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5562. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5563. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5564. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5565. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5566. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5567. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5568. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5569. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5570. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5571. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5572. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5573. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5574. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5575. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5576. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5577. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5578. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5579. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5580. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5581. "ref/portable-net45+win8+wp8+wpa81/_._",
  5582. "ref/win8/_._",
  5583. "ref/wp80/_._",
  5584. "ref/wpa81/_._",
  5585. "ref/xamarinios10/_._",
  5586. "ref/xamarinmac20/_._",
  5587. "ref/xamarintvos10/_._",
  5588. "ref/xamarinwatchos10/_._",
  5589. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5590. "system.componentmodel.eventbasedasync.nuspec"
  5591. ]
  5592. },
  5593. "System.ComponentModel.Primitives/4.3.0": {
  5594. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5595. "type": "package",
  5596. "path": "system.componentmodel.primitives/4.3.0",
  5597. "files": [
  5598. ".nupkg.metadata",
  5599. ".signature.p7s",
  5600. "ThirdPartyNotices.txt",
  5601. "dotnet_library_license.txt",
  5602. "lib/MonoAndroid10/_._",
  5603. "lib/MonoTouch10/_._",
  5604. "lib/net45/System.ComponentModel.Primitives.dll",
  5605. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5606. "lib/xamarinios10/_._",
  5607. "lib/xamarinmac20/_._",
  5608. "lib/xamarintvos10/_._",
  5609. "lib/xamarinwatchos10/_._",
  5610. "ref/MonoAndroid10/_._",
  5611. "ref/MonoTouch10/_._",
  5612. "ref/net45/System.ComponentModel.Primitives.dll",
  5613. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5614. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5615. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5616. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5617. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5618. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5619. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5620. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5621. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5622. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5623. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5624. "ref/xamarinios10/_._",
  5625. "ref/xamarinmac20/_._",
  5626. "ref/xamarintvos10/_._",
  5627. "ref/xamarinwatchos10/_._",
  5628. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5629. "system.componentmodel.primitives.nuspec"
  5630. ]
  5631. },
  5632. "System.Configuration.ConfigurationManager/4.5.0": {
  5633. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5634. "type": "package",
  5635. "path": "system.configuration.configurationmanager/4.5.0",
  5636. "files": [
  5637. ".nupkg.metadata",
  5638. ".signature.p7s",
  5639. "LICENSE.TXT",
  5640. "THIRD-PARTY-NOTICES.TXT",
  5641. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5642. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5643. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5644. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5645. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5646. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5647. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5648. "system.configuration.configurationmanager.nuspec",
  5649. "useSharedDesignerContext.txt",
  5650. "version.txt"
  5651. ]
  5652. },
  5653. "System.Console/4.3.0": {
  5654. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5655. "type": "package",
  5656. "path": "system.console/4.3.0",
  5657. "files": [
  5658. ".nupkg.metadata",
  5659. ".signature.p7s",
  5660. "ThirdPartyNotices.txt",
  5661. "dotnet_library_license.txt",
  5662. "lib/MonoAndroid10/_._",
  5663. "lib/MonoTouch10/_._",
  5664. "lib/net46/System.Console.dll",
  5665. "lib/xamarinios10/_._",
  5666. "lib/xamarinmac20/_._",
  5667. "lib/xamarintvos10/_._",
  5668. "lib/xamarinwatchos10/_._",
  5669. "ref/MonoAndroid10/_._",
  5670. "ref/MonoTouch10/_._",
  5671. "ref/net46/System.Console.dll",
  5672. "ref/netstandard1.3/System.Console.dll",
  5673. "ref/netstandard1.3/System.Console.xml",
  5674. "ref/netstandard1.3/de/System.Console.xml",
  5675. "ref/netstandard1.3/es/System.Console.xml",
  5676. "ref/netstandard1.3/fr/System.Console.xml",
  5677. "ref/netstandard1.3/it/System.Console.xml",
  5678. "ref/netstandard1.3/ja/System.Console.xml",
  5679. "ref/netstandard1.3/ko/System.Console.xml",
  5680. "ref/netstandard1.3/ru/System.Console.xml",
  5681. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5682. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5683. "ref/xamarinios10/_._",
  5684. "ref/xamarinmac20/_._",
  5685. "ref/xamarintvos10/_._",
  5686. "ref/xamarinwatchos10/_._",
  5687. "system.console.4.3.0.nupkg.sha512",
  5688. "system.console.nuspec"
  5689. ]
  5690. },
  5691. "System.Diagnostics.Debug/4.3.0": {
  5692. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5693. "type": "package",
  5694. "path": "system.diagnostics.debug/4.3.0",
  5695. "files": [
  5696. ".nupkg.metadata",
  5697. ".signature.p7s",
  5698. "ThirdPartyNotices.txt",
  5699. "dotnet_library_license.txt",
  5700. "lib/MonoAndroid10/_._",
  5701. "lib/MonoTouch10/_._",
  5702. "lib/net45/_._",
  5703. "lib/portable-net45+win8+wp8+wpa81/_._",
  5704. "lib/win8/_._",
  5705. "lib/wp80/_._",
  5706. "lib/wpa81/_._",
  5707. "lib/xamarinios10/_._",
  5708. "lib/xamarinmac20/_._",
  5709. "lib/xamarintvos10/_._",
  5710. "lib/xamarinwatchos10/_._",
  5711. "ref/MonoAndroid10/_._",
  5712. "ref/MonoTouch10/_._",
  5713. "ref/net45/_._",
  5714. "ref/netcore50/System.Diagnostics.Debug.dll",
  5715. "ref/netcore50/System.Diagnostics.Debug.xml",
  5716. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5717. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5718. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5719. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5720. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5721. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5722. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5723. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5724. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5725. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5726. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5727. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5728. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5729. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5730. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5731. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5732. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5733. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5734. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5735. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5736. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5737. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5738. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5739. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5740. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5741. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5742. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5743. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5744. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5745. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5746. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5747. "ref/portable-net45+win8+wp8+wpa81/_._",
  5748. "ref/win8/_._",
  5749. "ref/wp80/_._",
  5750. "ref/wpa81/_._",
  5751. "ref/xamarinios10/_._",
  5752. "ref/xamarinmac20/_._",
  5753. "ref/xamarintvos10/_._",
  5754. "ref/xamarinwatchos10/_._",
  5755. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5756. "system.diagnostics.debug.nuspec"
  5757. ]
  5758. },
  5759. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5760. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5761. "type": "package",
  5762. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5763. "files": [
  5764. ".nupkg.metadata",
  5765. ".signature.p7s",
  5766. "Icon.png",
  5767. "LICENSE.TXT",
  5768. "THIRD-PARTY-NOTICES.TXT",
  5769. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5770. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5771. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5772. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5773. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5774. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5775. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5776. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5777. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5778. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5779. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5780. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5781. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5782. "system.diagnostics.diagnosticsource.nuspec",
  5783. "useSharedDesignerContext.txt",
  5784. "version.txt"
  5785. ]
  5786. },
  5787. "System.Diagnostics.Tools/4.3.0": {
  5788. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5789. "type": "package",
  5790. "path": "system.diagnostics.tools/4.3.0",
  5791. "files": [
  5792. ".nupkg.metadata",
  5793. ".signature.p7s",
  5794. "ThirdPartyNotices.txt",
  5795. "dotnet_library_license.txt",
  5796. "lib/MonoAndroid10/_._",
  5797. "lib/MonoTouch10/_._",
  5798. "lib/net45/_._",
  5799. "lib/portable-net45+win8+wp8+wpa81/_._",
  5800. "lib/win8/_._",
  5801. "lib/wp80/_._",
  5802. "lib/wpa81/_._",
  5803. "lib/xamarinios10/_._",
  5804. "lib/xamarinmac20/_._",
  5805. "lib/xamarintvos10/_._",
  5806. "lib/xamarinwatchos10/_._",
  5807. "ref/MonoAndroid10/_._",
  5808. "ref/MonoTouch10/_._",
  5809. "ref/net45/_._",
  5810. "ref/netcore50/System.Diagnostics.Tools.dll",
  5811. "ref/netcore50/System.Diagnostics.Tools.xml",
  5812. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5813. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5814. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5815. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5816. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5817. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5818. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5819. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5820. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5821. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5822. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5823. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5824. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5825. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5826. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5827. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5828. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5829. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5830. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5831. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5832. "ref/portable-net45+win8+wp8+wpa81/_._",
  5833. "ref/win8/_._",
  5834. "ref/wp80/_._",
  5835. "ref/wpa81/_._",
  5836. "ref/xamarinios10/_._",
  5837. "ref/xamarinmac20/_._",
  5838. "ref/xamarintvos10/_._",
  5839. "ref/xamarinwatchos10/_._",
  5840. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5841. "system.diagnostics.tools.nuspec"
  5842. ]
  5843. },
  5844. "System.Diagnostics.Tracing/4.3.0": {
  5845. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5846. "type": "package",
  5847. "path": "system.diagnostics.tracing/4.3.0",
  5848. "files": [
  5849. ".nupkg.metadata",
  5850. ".signature.p7s",
  5851. "ThirdPartyNotices.txt",
  5852. "dotnet_library_license.txt",
  5853. "lib/MonoAndroid10/_._",
  5854. "lib/MonoTouch10/_._",
  5855. "lib/net45/_._",
  5856. "lib/net462/System.Diagnostics.Tracing.dll",
  5857. "lib/portable-net45+win8+wpa81/_._",
  5858. "lib/win8/_._",
  5859. "lib/wpa81/_._",
  5860. "lib/xamarinios10/_._",
  5861. "lib/xamarinmac20/_._",
  5862. "lib/xamarintvos10/_._",
  5863. "lib/xamarinwatchos10/_._",
  5864. "ref/MonoAndroid10/_._",
  5865. "ref/MonoTouch10/_._",
  5866. "ref/net45/_._",
  5867. "ref/net462/System.Diagnostics.Tracing.dll",
  5868. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5869. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5870. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5871. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5872. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5873. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5874. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5875. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5876. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5877. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5878. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5879. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5880. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5881. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5882. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5883. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5885. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5887. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5888. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5890. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5891. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5896. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5899. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5902. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5907. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5909. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5910. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5911. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5912. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5913. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5914. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5916. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5917. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5918. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5919. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5920. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5921. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5922. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5923. "ref/portable-net45+win8+wpa81/_._",
  5924. "ref/win8/_._",
  5925. "ref/wpa81/_._",
  5926. "ref/xamarinios10/_._",
  5927. "ref/xamarinmac20/_._",
  5928. "ref/xamarintvos10/_._",
  5929. "ref/xamarinwatchos10/_._",
  5930. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5931. "system.diagnostics.tracing.nuspec"
  5932. ]
  5933. },
  5934. "System.Drawing.Common/5.0.3": {
  5935. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5936. "type": "package",
  5937. "path": "system.drawing.common/5.0.3",
  5938. "files": [
  5939. ".nupkg.metadata",
  5940. ".signature.p7s",
  5941. "Icon.png",
  5942. "LICENSE.TXT",
  5943. "THIRD-PARTY-NOTICES.TXT",
  5944. "lib/MonoAndroid10/_._",
  5945. "lib/MonoTouch10/_._",
  5946. "lib/net461/System.Drawing.Common.dll",
  5947. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5948. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5949. "lib/netstandard2.0/System.Drawing.Common.dll",
  5950. "lib/xamarinios10/_._",
  5951. "lib/xamarinmac20/_._",
  5952. "lib/xamarintvos10/_._",
  5953. "lib/xamarinwatchos10/_._",
  5954. "ref/MonoAndroid10/_._",
  5955. "ref/MonoTouch10/_._",
  5956. "ref/net461/System.Drawing.Common.dll",
  5957. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5958. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5959. "ref/netstandard2.0/System.Drawing.Common.dll",
  5960. "ref/xamarinios10/_._",
  5961. "ref/xamarinmac20/_._",
  5962. "ref/xamarintvos10/_._",
  5963. "ref/xamarinwatchos10/_._",
  5964. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5965. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5966. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5967. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5968. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5969. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5970. "system.drawing.common.5.0.3.nupkg.sha512",
  5971. "system.drawing.common.nuspec",
  5972. "useSharedDesignerContext.txt",
  5973. "version.txt"
  5974. ]
  5975. },
  5976. "System.Globalization/4.3.0": {
  5977. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5978. "type": "package",
  5979. "path": "system.globalization/4.3.0",
  5980. "files": [
  5981. ".nupkg.metadata",
  5982. ".signature.p7s",
  5983. "ThirdPartyNotices.txt",
  5984. "dotnet_library_license.txt",
  5985. "lib/MonoAndroid10/_._",
  5986. "lib/MonoTouch10/_._",
  5987. "lib/net45/_._",
  5988. "lib/portable-net45+win8+wp8+wpa81/_._",
  5989. "lib/win8/_._",
  5990. "lib/wp80/_._",
  5991. "lib/wpa81/_._",
  5992. "lib/xamarinios10/_._",
  5993. "lib/xamarinmac20/_._",
  5994. "lib/xamarintvos10/_._",
  5995. "lib/xamarinwatchos10/_._",
  5996. "ref/MonoAndroid10/_._",
  5997. "ref/MonoTouch10/_._",
  5998. "ref/net45/_._",
  5999. "ref/netcore50/System.Globalization.dll",
  6000. "ref/netcore50/System.Globalization.xml",
  6001. "ref/netcore50/de/System.Globalization.xml",
  6002. "ref/netcore50/es/System.Globalization.xml",
  6003. "ref/netcore50/fr/System.Globalization.xml",
  6004. "ref/netcore50/it/System.Globalization.xml",
  6005. "ref/netcore50/ja/System.Globalization.xml",
  6006. "ref/netcore50/ko/System.Globalization.xml",
  6007. "ref/netcore50/ru/System.Globalization.xml",
  6008. "ref/netcore50/zh-hans/System.Globalization.xml",
  6009. "ref/netcore50/zh-hant/System.Globalization.xml",
  6010. "ref/netstandard1.0/System.Globalization.dll",
  6011. "ref/netstandard1.0/System.Globalization.xml",
  6012. "ref/netstandard1.0/de/System.Globalization.xml",
  6013. "ref/netstandard1.0/es/System.Globalization.xml",
  6014. "ref/netstandard1.0/fr/System.Globalization.xml",
  6015. "ref/netstandard1.0/it/System.Globalization.xml",
  6016. "ref/netstandard1.0/ja/System.Globalization.xml",
  6017. "ref/netstandard1.0/ko/System.Globalization.xml",
  6018. "ref/netstandard1.0/ru/System.Globalization.xml",
  6019. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6020. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6021. "ref/netstandard1.3/System.Globalization.dll",
  6022. "ref/netstandard1.3/System.Globalization.xml",
  6023. "ref/netstandard1.3/de/System.Globalization.xml",
  6024. "ref/netstandard1.3/es/System.Globalization.xml",
  6025. "ref/netstandard1.3/fr/System.Globalization.xml",
  6026. "ref/netstandard1.3/it/System.Globalization.xml",
  6027. "ref/netstandard1.3/ja/System.Globalization.xml",
  6028. "ref/netstandard1.3/ko/System.Globalization.xml",
  6029. "ref/netstandard1.3/ru/System.Globalization.xml",
  6030. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6031. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6032. "ref/portable-net45+win8+wp8+wpa81/_._",
  6033. "ref/win8/_._",
  6034. "ref/wp80/_._",
  6035. "ref/wpa81/_._",
  6036. "ref/xamarinios10/_._",
  6037. "ref/xamarinmac20/_._",
  6038. "ref/xamarintvos10/_._",
  6039. "ref/xamarinwatchos10/_._",
  6040. "system.globalization.4.3.0.nupkg.sha512",
  6041. "system.globalization.nuspec"
  6042. ]
  6043. },
  6044. "System.Globalization.Calendars/4.3.0": {
  6045. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6046. "type": "package",
  6047. "path": "system.globalization.calendars/4.3.0",
  6048. "files": [
  6049. ".nupkg.metadata",
  6050. ".signature.p7s",
  6051. "ThirdPartyNotices.txt",
  6052. "dotnet_library_license.txt",
  6053. "lib/MonoAndroid10/_._",
  6054. "lib/MonoTouch10/_._",
  6055. "lib/net46/System.Globalization.Calendars.dll",
  6056. "lib/xamarinios10/_._",
  6057. "lib/xamarinmac20/_._",
  6058. "lib/xamarintvos10/_._",
  6059. "lib/xamarinwatchos10/_._",
  6060. "ref/MonoAndroid10/_._",
  6061. "ref/MonoTouch10/_._",
  6062. "ref/net46/System.Globalization.Calendars.dll",
  6063. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6064. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6065. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6066. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6067. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6068. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6069. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6070. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6071. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6072. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6073. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6074. "ref/xamarinios10/_._",
  6075. "ref/xamarinmac20/_._",
  6076. "ref/xamarintvos10/_._",
  6077. "ref/xamarinwatchos10/_._",
  6078. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6079. "system.globalization.calendars.nuspec"
  6080. ]
  6081. },
  6082. "System.Globalization.Extensions/4.3.0": {
  6083. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6084. "type": "package",
  6085. "path": "system.globalization.extensions/4.3.0",
  6086. "files": [
  6087. ".nupkg.metadata",
  6088. ".signature.p7s",
  6089. "ThirdPartyNotices.txt",
  6090. "dotnet_library_license.txt",
  6091. "lib/MonoAndroid10/_._",
  6092. "lib/MonoTouch10/_._",
  6093. "lib/net46/System.Globalization.Extensions.dll",
  6094. "lib/xamarinios10/_._",
  6095. "lib/xamarinmac20/_._",
  6096. "lib/xamarintvos10/_._",
  6097. "lib/xamarinwatchos10/_._",
  6098. "ref/MonoAndroid10/_._",
  6099. "ref/MonoTouch10/_._",
  6100. "ref/net46/System.Globalization.Extensions.dll",
  6101. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6102. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6103. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6104. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6105. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6106. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6107. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6108. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6109. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6110. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6111. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6112. "ref/xamarinios10/_._",
  6113. "ref/xamarinmac20/_._",
  6114. "ref/xamarintvos10/_._",
  6115. "ref/xamarinwatchos10/_._",
  6116. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6117. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6118. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6119. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6120. "system.globalization.extensions.nuspec"
  6121. ]
  6122. },
  6123. "System.IO/4.3.0": {
  6124. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6125. "type": "package",
  6126. "path": "system.io/4.3.0",
  6127. "files": [
  6128. ".nupkg.metadata",
  6129. ".signature.p7s",
  6130. "ThirdPartyNotices.txt",
  6131. "dotnet_library_license.txt",
  6132. "lib/MonoAndroid10/_._",
  6133. "lib/MonoTouch10/_._",
  6134. "lib/net45/_._",
  6135. "lib/net462/System.IO.dll",
  6136. "lib/portable-net45+win8+wp8+wpa81/_._",
  6137. "lib/win8/_._",
  6138. "lib/wp80/_._",
  6139. "lib/wpa81/_._",
  6140. "lib/xamarinios10/_._",
  6141. "lib/xamarinmac20/_._",
  6142. "lib/xamarintvos10/_._",
  6143. "lib/xamarinwatchos10/_._",
  6144. "ref/MonoAndroid10/_._",
  6145. "ref/MonoTouch10/_._",
  6146. "ref/net45/_._",
  6147. "ref/net462/System.IO.dll",
  6148. "ref/netcore50/System.IO.dll",
  6149. "ref/netcore50/System.IO.xml",
  6150. "ref/netcore50/de/System.IO.xml",
  6151. "ref/netcore50/es/System.IO.xml",
  6152. "ref/netcore50/fr/System.IO.xml",
  6153. "ref/netcore50/it/System.IO.xml",
  6154. "ref/netcore50/ja/System.IO.xml",
  6155. "ref/netcore50/ko/System.IO.xml",
  6156. "ref/netcore50/ru/System.IO.xml",
  6157. "ref/netcore50/zh-hans/System.IO.xml",
  6158. "ref/netcore50/zh-hant/System.IO.xml",
  6159. "ref/netstandard1.0/System.IO.dll",
  6160. "ref/netstandard1.0/System.IO.xml",
  6161. "ref/netstandard1.0/de/System.IO.xml",
  6162. "ref/netstandard1.0/es/System.IO.xml",
  6163. "ref/netstandard1.0/fr/System.IO.xml",
  6164. "ref/netstandard1.0/it/System.IO.xml",
  6165. "ref/netstandard1.0/ja/System.IO.xml",
  6166. "ref/netstandard1.0/ko/System.IO.xml",
  6167. "ref/netstandard1.0/ru/System.IO.xml",
  6168. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6169. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6170. "ref/netstandard1.3/System.IO.dll",
  6171. "ref/netstandard1.3/System.IO.xml",
  6172. "ref/netstandard1.3/de/System.IO.xml",
  6173. "ref/netstandard1.3/es/System.IO.xml",
  6174. "ref/netstandard1.3/fr/System.IO.xml",
  6175. "ref/netstandard1.3/it/System.IO.xml",
  6176. "ref/netstandard1.3/ja/System.IO.xml",
  6177. "ref/netstandard1.3/ko/System.IO.xml",
  6178. "ref/netstandard1.3/ru/System.IO.xml",
  6179. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6180. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6181. "ref/netstandard1.5/System.IO.dll",
  6182. "ref/netstandard1.5/System.IO.xml",
  6183. "ref/netstandard1.5/de/System.IO.xml",
  6184. "ref/netstandard1.5/es/System.IO.xml",
  6185. "ref/netstandard1.5/fr/System.IO.xml",
  6186. "ref/netstandard1.5/it/System.IO.xml",
  6187. "ref/netstandard1.5/ja/System.IO.xml",
  6188. "ref/netstandard1.5/ko/System.IO.xml",
  6189. "ref/netstandard1.5/ru/System.IO.xml",
  6190. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6191. "ref/netstandard1.5/zh-hant/System.IO.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.io.4.3.0.nupkg.sha512",
  6201. "system.io.nuspec"
  6202. ]
  6203. },
  6204. "System.IO.Compression/4.3.0": {
  6205. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6206. "type": "package",
  6207. "path": "system.io.compression/4.3.0",
  6208. "files": [
  6209. ".nupkg.metadata",
  6210. ".signature.p7s",
  6211. "ThirdPartyNotices.txt",
  6212. "dotnet_library_license.txt",
  6213. "lib/MonoAndroid10/_._",
  6214. "lib/MonoTouch10/_._",
  6215. "lib/net45/_._",
  6216. "lib/net46/System.IO.Compression.dll",
  6217. "lib/portable-net45+win8+wpa81/_._",
  6218. "lib/win8/_._",
  6219. "lib/wpa81/_._",
  6220. "lib/xamarinios10/_._",
  6221. "lib/xamarinmac20/_._",
  6222. "lib/xamarintvos10/_._",
  6223. "lib/xamarinwatchos10/_._",
  6224. "ref/MonoAndroid10/_._",
  6225. "ref/MonoTouch10/_._",
  6226. "ref/net45/_._",
  6227. "ref/net46/System.IO.Compression.dll",
  6228. "ref/netcore50/System.IO.Compression.dll",
  6229. "ref/netcore50/System.IO.Compression.xml",
  6230. "ref/netcore50/de/System.IO.Compression.xml",
  6231. "ref/netcore50/es/System.IO.Compression.xml",
  6232. "ref/netcore50/fr/System.IO.Compression.xml",
  6233. "ref/netcore50/it/System.IO.Compression.xml",
  6234. "ref/netcore50/ja/System.IO.Compression.xml",
  6235. "ref/netcore50/ko/System.IO.Compression.xml",
  6236. "ref/netcore50/ru/System.IO.Compression.xml",
  6237. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6238. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6239. "ref/netstandard1.1/System.IO.Compression.dll",
  6240. "ref/netstandard1.1/System.IO.Compression.xml",
  6241. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6242. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6243. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6244. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6245. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6246. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6247. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6248. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6249. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6250. "ref/netstandard1.3/System.IO.Compression.dll",
  6251. "ref/netstandard1.3/System.IO.Compression.xml",
  6252. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6253. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6254. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6255. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6256. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6257. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6258. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6259. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6260. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6261. "ref/portable-net45+win8+wpa81/_._",
  6262. "ref/win8/_._",
  6263. "ref/wpa81/_._",
  6264. "ref/xamarinios10/_._",
  6265. "ref/xamarinmac20/_._",
  6266. "ref/xamarintvos10/_._",
  6267. "ref/xamarinwatchos10/_._",
  6268. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6269. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6270. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6271. "system.io.compression.4.3.0.nupkg.sha512",
  6272. "system.io.compression.nuspec"
  6273. ]
  6274. },
  6275. "System.IO.Compression.ZipFile/4.3.0": {
  6276. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6277. "type": "package",
  6278. "path": "system.io.compression.zipfile/4.3.0",
  6279. "files": [
  6280. ".nupkg.metadata",
  6281. ".signature.p7s",
  6282. "ThirdPartyNotices.txt",
  6283. "dotnet_library_license.txt",
  6284. "lib/MonoAndroid10/_._",
  6285. "lib/MonoTouch10/_._",
  6286. "lib/net46/System.IO.Compression.ZipFile.dll",
  6287. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6288. "lib/xamarinios10/_._",
  6289. "lib/xamarinmac20/_._",
  6290. "lib/xamarintvos10/_._",
  6291. "lib/xamarinwatchos10/_._",
  6292. "ref/MonoAndroid10/_._",
  6293. "ref/MonoTouch10/_._",
  6294. "ref/net46/System.IO.Compression.ZipFile.dll",
  6295. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6296. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6297. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6298. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6299. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6300. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6301. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6302. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6303. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6304. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6305. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6306. "ref/xamarinios10/_._",
  6307. "ref/xamarinmac20/_._",
  6308. "ref/xamarintvos10/_._",
  6309. "ref/xamarinwatchos10/_._",
  6310. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6311. "system.io.compression.zipfile.nuspec"
  6312. ]
  6313. },
  6314. "System.IO.FileSystem/4.3.0": {
  6315. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6316. "type": "package",
  6317. "path": "system.io.filesystem/4.3.0",
  6318. "files": [
  6319. ".nupkg.metadata",
  6320. ".signature.p7s",
  6321. "ThirdPartyNotices.txt",
  6322. "dotnet_library_license.txt",
  6323. "lib/MonoAndroid10/_._",
  6324. "lib/MonoTouch10/_._",
  6325. "lib/net46/System.IO.FileSystem.dll",
  6326. "lib/xamarinios10/_._",
  6327. "lib/xamarinmac20/_._",
  6328. "lib/xamarintvos10/_._",
  6329. "lib/xamarinwatchos10/_._",
  6330. "ref/MonoAndroid10/_._",
  6331. "ref/MonoTouch10/_._",
  6332. "ref/net46/System.IO.FileSystem.dll",
  6333. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6334. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6335. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6336. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6337. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6338. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6339. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6340. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6341. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6342. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6343. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6344. "ref/xamarinios10/_._",
  6345. "ref/xamarinmac20/_._",
  6346. "ref/xamarintvos10/_._",
  6347. "ref/xamarinwatchos10/_._",
  6348. "system.io.filesystem.4.3.0.nupkg.sha512",
  6349. "system.io.filesystem.nuspec"
  6350. ]
  6351. },
  6352. "System.IO.FileSystem.Primitives/4.3.0": {
  6353. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6354. "type": "package",
  6355. "path": "system.io.filesystem.primitives/4.3.0",
  6356. "files": [
  6357. ".nupkg.metadata",
  6358. ".signature.p7s",
  6359. "ThirdPartyNotices.txt",
  6360. "dotnet_library_license.txt",
  6361. "lib/MonoAndroid10/_._",
  6362. "lib/MonoTouch10/_._",
  6363. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6364. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6365. "lib/xamarinios10/_._",
  6366. "lib/xamarinmac20/_._",
  6367. "lib/xamarintvos10/_._",
  6368. "lib/xamarinwatchos10/_._",
  6369. "ref/MonoAndroid10/_._",
  6370. "ref/MonoTouch10/_._",
  6371. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6372. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6373. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6374. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6375. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6376. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6377. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6378. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6379. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6380. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6381. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6382. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6383. "ref/xamarinios10/_._",
  6384. "ref/xamarinmac20/_._",
  6385. "ref/xamarintvos10/_._",
  6386. "ref/xamarinwatchos10/_._",
  6387. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6388. "system.io.filesystem.primitives.nuspec"
  6389. ]
  6390. },
  6391. "System.IO.Pipelines/5.0.0": {
  6392. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6393. "type": "package",
  6394. "path": "system.io.pipelines/5.0.0",
  6395. "files": [
  6396. ".nupkg.metadata",
  6397. ".signature.p7s",
  6398. "Icon.png",
  6399. "LICENSE.TXT",
  6400. "THIRD-PARTY-NOTICES.TXT",
  6401. "lib/net461/System.IO.Pipelines.dll",
  6402. "lib/net461/System.IO.Pipelines.xml",
  6403. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6404. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6405. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6406. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6407. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6408. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6409. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6410. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6411. "system.io.pipelines.5.0.0.nupkg.sha512",
  6412. "system.io.pipelines.nuspec",
  6413. "useSharedDesignerContext.txt",
  6414. "version.txt"
  6415. ]
  6416. },
  6417. "System.Linq/4.3.0": {
  6418. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6419. "type": "package",
  6420. "path": "system.linq/4.3.0",
  6421. "files": [
  6422. ".nupkg.metadata",
  6423. ".signature.p7s",
  6424. "ThirdPartyNotices.txt",
  6425. "dotnet_library_license.txt",
  6426. "lib/MonoAndroid10/_._",
  6427. "lib/MonoTouch10/_._",
  6428. "lib/net45/_._",
  6429. "lib/net463/System.Linq.dll",
  6430. "lib/netcore50/System.Linq.dll",
  6431. "lib/netstandard1.6/System.Linq.dll",
  6432. "lib/portable-net45+win8+wp8+wpa81/_._",
  6433. "lib/win8/_._",
  6434. "lib/wp80/_._",
  6435. "lib/wpa81/_._",
  6436. "lib/xamarinios10/_._",
  6437. "lib/xamarinmac20/_._",
  6438. "lib/xamarintvos10/_._",
  6439. "lib/xamarinwatchos10/_._",
  6440. "ref/MonoAndroid10/_._",
  6441. "ref/MonoTouch10/_._",
  6442. "ref/net45/_._",
  6443. "ref/net463/System.Linq.dll",
  6444. "ref/netcore50/System.Linq.dll",
  6445. "ref/netcore50/System.Linq.xml",
  6446. "ref/netcore50/de/System.Linq.xml",
  6447. "ref/netcore50/es/System.Linq.xml",
  6448. "ref/netcore50/fr/System.Linq.xml",
  6449. "ref/netcore50/it/System.Linq.xml",
  6450. "ref/netcore50/ja/System.Linq.xml",
  6451. "ref/netcore50/ko/System.Linq.xml",
  6452. "ref/netcore50/ru/System.Linq.xml",
  6453. "ref/netcore50/zh-hans/System.Linq.xml",
  6454. "ref/netcore50/zh-hant/System.Linq.xml",
  6455. "ref/netstandard1.0/System.Linq.dll",
  6456. "ref/netstandard1.0/System.Linq.xml",
  6457. "ref/netstandard1.0/de/System.Linq.xml",
  6458. "ref/netstandard1.0/es/System.Linq.xml",
  6459. "ref/netstandard1.0/fr/System.Linq.xml",
  6460. "ref/netstandard1.0/it/System.Linq.xml",
  6461. "ref/netstandard1.0/ja/System.Linq.xml",
  6462. "ref/netstandard1.0/ko/System.Linq.xml",
  6463. "ref/netstandard1.0/ru/System.Linq.xml",
  6464. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6465. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6466. "ref/netstandard1.6/System.Linq.dll",
  6467. "ref/netstandard1.6/System.Linq.xml",
  6468. "ref/netstandard1.6/de/System.Linq.xml",
  6469. "ref/netstandard1.6/es/System.Linq.xml",
  6470. "ref/netstandard1.6/fr/System.Linq.xml",
  6471. "ref/netstandard1.6/it/System.Linq.xml",
  6472. "ref/netstandard1.6/ja/System.Linq.xml",
  6473. "ref/netstandard1.6/ko/System.Linq.xml",
  6474. "ref/netstandard1.6/ru/System.Linq.xml",
  6475. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6476. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6477. "ref/portable-net45+win8+wp8+wpa81/_._",
  6478. "ref/win8/_._",
  6479. "ref/wp80/_._",
  6480. "ref/wpa81/_._",
  6481. "ref/xamarinios10/_._",
  6482. "ref/xamarinmac20/_._",
  6483. "ref/xamarintvos10/_._",
  6484. "ref/xamarinwatchos10/_._",
  6485. "system.linq.4.3.0.nupkg.sha512",
  6486. "system.linq.nuspec"
  6487. ]
  6488. },
  6489. "System.Linq.Expressions/4.3.0": {
  6490. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6491. "type": "package",
  6492. "path": "system.linq.expressions/4.3.0",
  6493. "files": [
  6494. ".nupkg.metadata",
  6495. ".signature.p7s",
  6496. "ThirdPartyNotices.txt",
  6497. "dotnet_library_license.txt",
  6498. "lib/MonoAndroid10/_._",
  6499. "lib/MonoTouch10/_._",
  6500. "lib/net45/_._",
  6501. "lib/net463/System.Linq.Expressions.dll",
  6502. "lib/netcore50/System.Linq.Expressions.dll",
  6503. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6504. "lib/portable-net45+win8+wp8+wpa81/_._",
  6505. "lib/win8/_._",
  6506. "lib/wp80/_._",
  6507. "lib/wpa81/_._",
  6508. "lib/xamarinios10/_._",
  6509. "lib/xamarinmac20/_._",
  6510. "lib/xamarintvos10/_._",
  6511. "lib/xamarinwatchos10/_._",
  6512. "ref/MonoAndroid10/_._",
  6513. "ref/MonoTouch10/_._",
  6514. "ref/net45/_._",
  6515. "ref/net463/System.Linq.Expressions.dll",
  6516. "ref/netcore50/System.Linq.Expressions.dll",
  6517. "ref/netcore50/System.Linq.Expressions.xml",
  6518. "ref/netcore50/de/System.Linq.Expressions.xml",
  6519. "ref/netcore50/es/System.Linq.Expressions.xml",
  6520. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6521. "ref/netcore50/it/System.Linq.Expressions.xml",
  6522. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6523. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6524. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6525. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6526. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6527. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6528. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6529. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6530. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6531. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6532. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6533. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6534. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6535. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6536. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6537. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6538. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6539. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6540. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6541. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6542. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6543. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6544. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6545. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6546. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6547. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6548. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6549. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6550. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6551. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6552. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6553. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6554. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6555. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6556. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6557. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6558. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6559. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6560. "ref/portable-net45+win8+wp8+wpa81/_._",
  6561. "ref/win8/_._",
  6562. "ref/wp80/_._",
  6563. "ref/wpa81/_._",
  6564. "ref/xamarinios10/_._",
  6565. "ref/xamarinmac20/_._",
  6566. "ref/xamarintvos10/_._",
  6567. "ref/xamarinwatchos10/_._",
  6568. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6569. "system.linq.expressions.4.3.0.nupkg.sha512",
  6570. "system.linq.expressions.nuspec"
  6571. ]
  6572. },
  6573. "System.Memory/4.5.5": {
  6574. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6575. "type": "package",
  6576. "path": "system.memory/4.5.5",
  6577. "files": [
  6578. ".nupkg.metadata",
  6579. ".signature.p7s",
  6580. "LICENSE.TXT",
  6581. "THIRD-PARTY-NOTICES.TXT",
  6582. "lib/net461/System.Memory.dll",
  6583. "lib/net461/System.Memory.xml",
  6584. "lib/netcoreapp2.1/_._",
  6585. "lib/netstandard1.1/System.Memory.dll",
  6586. "lib/netstandard1.1/System.Memory.xml",
  6587. "lib/netstandard2.0/System.Memory.dll",
  6588. "lib/netstandard2.0/System.Memory.xml",
  6589. "ref/netcoreapp2.1/_._",
  6590. "system.memory.4.5.5.nupkg.sha512",
  6591. "system.memory.nuspec",
  6592. "useSharedDesignerContext.txt",
  6593. "version.txt"
  6594. ]
  6595. },
  6596. "System.Net.Http/4.3.2": {
  6597. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6598. "type": "package",
  6599. "path": "system.net.http/4.3.2",
  6600. "files": [
  6601. ".nupkg.metadata",
  6602. ".signature.p7s",
  6603. "ThirdPartyNotices.txt",
  6604. "dotnet_library_license.txt",
  6605. "lib/Xamarinmac20/_._",
  6606. "lib/monoandroid10/_._",
  6607. "lib/monotouch10/_._",
  6608. "lib/net45/_._",
  6609. "lib/net46/System.Net.Http.dll",
  6610. "lib/portable-net45+win8+wpa81/_._",
  6611. "lib/win8/_._",
  6612. "lib/wpa81/_._",
  6613. "lib/xamarinios10/_._",
  6614. "lib/xamarintvos10/_._",
  6615. "lib/xamarinwatchos10/_._",
  6616. "ref/Xamarinmac20/_._",
  6617. "ref/monoandroid10/_._",
  6618. "ref/monotouch10/_._",
  6619. "ref/net45/_._",
  6620. "ref/net46/System.Net.Http.dll",
  6621. "ref/netcore50/System.Net.Http.dll",
  6622. "ref/netstandard1.1/System.Net.Http.dll",
  6623. "ref/netstandard1.3/System.Net.Http.dll",
  6624. "ref/portable-net45+win8+wpa81/_._",
  6625. "ref/win8/_._",
  6626. "ref/wpa81/_._",
  6627. "ref/xamarinios10/_._",
  6628. "ref/xamarintvos10/_._",
  6629. "ref/xamarinwatchos10/_._",
  6630. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6631. "runtimes/win/lib/net46/System.Net.Http.dll",
  6632. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6633. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6634. "system.net.http.4.3.2.nupkg.sha512",
  6635. "system.net.http.nuspec"
  6636. ]
  6637. },
  6638. "System.Net.NameResolution/4.3.0": {
  6639. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6640. "type": "package",
  6641. "path": "system.net.nameresolution/4.3.0",
  6642. "files": [
  6643. ".nupkg.metadata",
  6644. ".signature.p7s",
  6645. "ThirdPartyNotices.txt",
  6646. "dotnet_library_license.txt",
  6647. "lib/MonoAndroid10/_._",
  6648. "lib/MonoTouch10/_._",
  6649. "lib/net46/System.Net.NameResolution.dll",
  6650. "lib/xamarinios10/_._",
  6651. "lib/xamarinmac20/_._",
  6652. "lib/xamarintvos10/_._",
  6653. "lib/xamarinwatchos10/_._",
  6654. "ref/MonoAndroid10/_._",
  6655. "ref/MonoTouch10/_._",
  6656. "ref/net46/System.Net.NameResolution.dll",
  6657. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6658. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6659. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6660. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6661. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6662. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6663. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6664. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6665. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6666. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6667. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6668. "ref/xamarinios10/_._",
  6669. "ref/xamarinmac20/_._",
  6670. "ref/xamarintvos10/_._",
  6671. "ref/xamarinwatchos10/_._",
  6672. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6673. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6674. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6675. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6676. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6677. "system.net.nameresolution.nuspec"
  6678. ]
  6679. },
  6680. "System.Net.Primitives/4.3.0": {
  6681. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6682. "type": "package",
  6683. "path": "system.net.primitives/4.3.0",
  6684. "files": [
  6685. ".nupkg.metadata",
  6686. ".signature.p7s",
  6687. "ThirdPartyNotices.txt",
  6688. "dotnet_library_license.txt",
  6689. "lib/MonoAndroid10/_._",
  6690. "lib/MonoTouch10/_._",
  6691. "lib/net45/_._",
  6692. "lib/portable-net45+win8+wp8+wpa81/_._",
  6693. "lib/win8/_._",
  6694. "lib/wp80/_._",
  6695. "lib/wpa81/_._",
  6696. "lib/xamarinios10/_._",
  6697. "lib/xamarinmac20/_._",
  6698. "lib/xamarintvos10/_._",
  6699. "lib/xamarinwatchos10/_._",
  6700. "ref/MonoAndroid10/_._",
  6701. "ref/MonoTouch10/_._",
  6702. "ref/net45/_._",
  6703. "ref/netcore50/System.Net.Primitives.dll",
  6704. "ref/netcore50/System.Net.Primitives.xml",
  6705. "ref/netcore50/de/System.Net.Primitives.xml",
  6706. "ref/netcore50/es/System.Net.Primitives.xml",
  6707. "ref/netcore50/fr/System.Net.Primitives.xml",
  6708. "ref/netcore50/it/System.Net.Primitives.xml",
  6709. "ref/netcore50/ja/System.Net.Primitives.xml",
  6710. "ref/netcore50/ko/System.Net.Primitives.xml",
  6711. "ref/netcore50/ru/System.Net.Primitives.xml",
  6712. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6713. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6714. "ref/netstandard1.0/System.Net.Primitives.dll",
  6715. "ref/netstandard1.0/System.Net.Primitives.xml",
  6716. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6717. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6718. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6719. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6720. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6721. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6722. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6723. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6724. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6725. "ref/netstandard1.1/System.Net.Primitives.dll",
  6726. "ref/netstandard1.1/System.Net.Primitives.xml",
  6727. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6728. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6729. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6730. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6731. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6732. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6733. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6734. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6735. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6736. "ref/netstandard1.3/System.Net.Primitives.dll",
  6737. "ref/netstandard1.3/System.Net.Primitives.xml",
  6738. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6739. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6740. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6741. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6742. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6743. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6744. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6745. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6746. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6747. "ref/portable-net45+win8+wp8+wpa81/_._",
  6748. "ref/win8/_._",
  6749. "ref/wp80/_._",
  6750. "ref/wpa81/_._",
  6751. "ref/xamarinios10/_._",
  6752. "ref/xamarinmac20/_._",
  6753. "ref/xamarintvos10/_._",
  6754. "ref/xamarinwatchos10/_._",
  6755. "system.net.primitives.4.3.0.nupkg.sha512",
  6756. "system.net.primitives.nuspec"
  6757. ]
  6758. },
  6759. "System.Net.Security/4.3.0": {
  6760. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6761. "type": "package",
  6762. "path": "system.net.security/4.3.0",
  6763. "files": [
  6764. ".nupkg.metadata",
  6765. ".signature.p7s",
  6766. "ThirdPartyNotices.txt",
  6767. "dotnet_library_license.txt",
  6768. "lib/MonoAndroid10/_._",
  6769. "lib/MonoTouch10/_._",
  6770. "lib/net46/System.Net.Security.dll",
  6771. "lib/xamarinios10/_._",
  6772. "lib/xamarinmac20/_._",
  6773. "lib/xamarintvos10/_._",
  6774. "lib/xamarinwatchos10/_._",
  6775. "ref/MonoAndroid10/_._",
  6776. "ref/MonoTouch10/_._",
  6777. "ref/net46/System.Net.Security.dll",
  6778. "ref/netstandard1.3/System.Net.Security.dll",
  6779. "ref/netstandard1.3/System.Net.Security.xml",
  6780. "ref/netstandard1.3/de/System.Net.Security.xml",
  6781. "ref/netstandard1.3/es/System.Net.Security.xml",
  6782. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6783. "ref/netstandard1.3/it/System.Net.Security.xml",
  6784. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6785. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6786. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6787. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6788. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6789. "ref/xamarinios10/_._",
  6790. "ref/xamarinmac20/_._",
  6791. "ref/xamarintvos10/_._",
  6792. "ref/xamarinwatchos10/_._",
  6793. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6794. "runtimes/win/lib/net46/System.Net.Security.dll",
  6795. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6796. "runtimes/win7/lib/netcore50/_._",
  6797. "system.net.security.4.3.0.nupkg.sha512",
  6798. "system.net.security.nuspec"
  6799. ]
  6800. },
  6801. "System.Net.Sockets/4.3.0": {
  6802. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6803. "type": "package",
  6804. "path": "system.net.sockets/4.3.0",
  6805. "files": [
  6806. ".nupkg.metadata",
  6807. ".signature.p7s",
  6808. "ThirdPartyNotices.txt",
  6809. "dotnet_library_license.txt",
  6810. "lib/MonoAndroid10/_._",
  6811. "lib/MonoTouch10/_._",
  6812. "lib/net46/System.Net.Sockets.dll",
  6813. "lib/xamarinios10/_._",
  6814. "lib/xamarinmac20/_._",
  6815. "lib/xamarintvos10/_._",
  6816. "lib/xamarinwatchos10/_._",
  6817. "ref/MonoAndroid10/_._",
  6818. "ref/MonoTouch10/_._",
  6819. "ref/net46/System.Net.Sockets.dll",
  6820. "ref/netstandard1.3/System.Net.Sockets.dll",
  6821. "ref/netstandard1.3/System.Net.Sockets.xml",
  6822. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6823. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6824. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6825. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6826. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6827. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6828. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6829. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6830. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6831. "ref/xamarinios10/_._",
  6832. "ref/xamarinmac20/_._",
  6833. "ref/xamarintvos10/_._",
  6834. "ref/xamarinwatchos10/_._",
  6835. "system.net.sockets.4.3.0.nupkg.sha512",
  6836. "system.net.sockets.nuspec"
  6837. ]
  6838. },
  6839. "System.ObjectModel/4.3.0": {
  6840. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6841. "type": "package",
  6842. "path": "system.objectmodel/4.3.0",
  6843. "files": [
  6844. ".nupkg.metadata",
  6845. ".signature.p7s",
  6846. "ThirdPartyNotices.txt",
  6847. "dotnet_library_license.txt",
  6848. "lib/MonoAndroid10/_._",
  6849. "lib/MonoTouch10/_._",
  6850. "lib/net45/_._",
  6851. "lib/netcore50/System.ObjectModel.dll",
  6852. "lib/netstandard1.3/System.ObjectModel.dll",
  6853. "lib/portable-net45+win8+wp8+wpa81/_._",
  6854. "lib/win8/_._",
  6855. "lib/wp80/_._",
  6856. "lib/wpa81/_._",
  6857. "lib/xamarinios10/_._",
  6858. "lib/xamarinmac20/_._",
  6859. "lib/xamarintvos10/_._",
  6860. "lib/xamarinwatchos10/_._",
  6861. "ref/MonoAndroid10/_._",
  6862. "ref/MonoTouch10/_._",
  6863. "ref/net45/_._",
  6864. "ref/netcore50/System.ObjectModel.dll",
  6865. "ref/netcore50/System.ObjectModel.xml",
  6866. "ref/netcore50/de/System.ObjectModel.xml",
  6867. "ref/netcore50/es/System.ObjectModel.xml",
  6868. "ref/netcore50/fr/System.ObjectModel.xml",
  6869. "ref/netcore50/it/System.ObjectModel.xml",
  6870. "ref/netcore50/ja/System.ObjectModel.xml",
  6871. "ref/netcore50/ko/System.ObjectModel.xml",
  6872. "ref/netcore50/ru/System.ObjectModel.xml",
  6873. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6874. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6875. "ref/netstandard1.0/System.ObjectModel.dll",
  6876. "ref/netstandard1.0/System.ObjectModel.xml",
  6877. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6878. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6879. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6880. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6881. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6882. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6883. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6884. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6885. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6886. "ref/netstandard1.3/System.ObjectModel.dll",
  6887. "ref/netstandard1.3/System.ObjectModel.xml",
  6888. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6889. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6890. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6891. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6892. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6893. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6894. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6895. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6896. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6897. "ref/portable-net45+win8+wp8+wpa81/_._",
  6898. "ref/win8/_._",
  6899. "ref/wp80/_._",
  6900. "ref/wpa81/_._",
  6901. "ref/xamarinios10/_._",
  6902. "ref/xamarinmac20/_._",
  6903. "ref/xamarintvos10/_._",
  6904. "ref/xamarinwatchos10/_._",
  6905. "system.objectmodel.4.3.0.nupkg.sha512",
  6906. "system.objectmodel.nuspec"
  6907. ]
  6908. },
  6909. "System.Reactive/4.4.1": {
  6910. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6911. "type": "package",
  6912. "path": "system.reactive/4.4.1",
  6913. "files": [
  6914. ".nupkg.metadata",
  6915. ".signature.p7s",
  6916. "build/netcoreapp3.0/System.Reactive.dll",
  6917. "build/netcoreapp3.0/System.Reactive.targets",
  6918. "build/netcoreapp3.0/System.Reactive.xml",
  6919. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6920. "lib/net46/System.Reactive.dll",
  6921. "lib/net46/System.Reactive.xml",
  6922. "lib/netcoreapp3.0/_._",
  6923. "lib/netstandard2.0/System.Reactive.dll",
  6924. "lib/netstandard2.0/System.Reactive.xml",
  6925. "lib/uap10.0.16299/System.Reactive.dll",
  6926. "lib/uap10.0.16299/System.Reactive.pri",
  6927. "lib/uap10.0.16299/System.Reactive.xml",
  6928. "lib/uap10.0/System.Reactive.dll",
  6929. "lib/uap10.0/System.Reactive.pri",
  6930. "lib/uap10.0/System.Reactive.xml",
  6931. "system.reactive.4.4.1.nupkg.sha512",
  6932. "system.reactive.nuspec"
  6933. ]
  6934. },
  6935. "System.Reflection/4.3.0": {
  6936. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6937. "type": "package",
  6938. "path": "system.reflection/4.3.0",
  6939. "files": [
  6940. ".nupkg.metadata",
  6941. ".signature.p7s",
  6942. "ThirdPartyNotices.txt",
  6943. "dotnet_library_license.txt",
  6944. "lib/MonoAndroid10/_._",
  6945. "lib/MonoTouch10/_._",
  6946. "lib/net45/_._",
  6947. "lib/net462/System.Reflection.dll",
  6948. "lib/portable-net45+win8+wp8+wpa81/_._",
  6949. "lib/win8/_._",
  6950. "lib/wp80/_._",
  6951. "lib/wpa81/_._",
  6952. "lib/xamarinios10/_._",
  6953. "lib/xamarinmac20/_._",
  6954. "lib/xamarintvos10/_._",
  6955. "lib/xamarinwatchos10/_._",
  6956. "ref/MonoAndroid10/_._",
  6957. "ref/MonoTouch10/_._",
  6958. "ref/net45/_._",
  6959. "ref/net462/System.Reflection.dll",
  6960. "ref/netcore50/System.Reflection.dll",
  6961. "ref/netcore50/System.Reflection.xml",
  6962. "ref/netcore50/de/System.Reflection.xml",
  6963. "ref/netcore50/es/System.Reflection.xml",
  6964. "ref/netcore50/fr/System.Reflection.xml",
  6965. "ref/netcore50/it/System.Reflection.xml",
  6966. "ref/netcore50/ja/System.Reflection.xml",
  6967. "ref/netcore50/ko/System.Reflection.xml",
  6968. "ref/netcore50/ru/System.Reflection.xml",
  6969. "ref/netcore50/zh-hans/System.Reflection.xml",
  6970. "ref/netcore50/zh-hant/System.Reflection.xml",
  6971. "ref/netstandard1.0/System.Reflection.dll",
  6972. "ref/netstandard1.0/System.Reflection.xml",
  6973. "ref/netstandard1.0/de/System.Reflection.xml",
  6974. "ref/netstandard1.0/es/System.Reflection.xml",
  6975. "ref/netstandard1.0/fr/System.Reflection.xml",
  6976. "ref/netstandard1.0/it/System.Reflection.xml",
  6977. "ref/netstandard1.0/ja/System.Reflection.xml",
  6978. "ref/netstandard1.0/ko/System.Reflection.xml",
  6979. "ref/netstandard1.0/ru/System.Reflection.xml",
  6980. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6981. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6982. "ref/netstandard1.3/System.Reflection.dll",
  6983. "ref/netstandard1.3/System.Reflection.xml",
  6984. "ref/netstandard1.3/de/System.Reflection.xml",
  6985. "ref/netstandard1.3/es/System.Reflection.xml",
  6986. "ref/netstandard1.3/fr/System.Reflection.xml",
  6987. "ref/netstandard1.3/it/System.Reflection.xml",
  6988. "ref/netstandard1.3/ja/System.Reflection.xml",
  6989. "ref/netstandard1.3/ko/System.Reflection.xml",
  6990. "ref/netstandard1.3/ru/System.Reflection.xml",
  6991. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6992. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6993. "ref/netstandard1.5/System.Reflection.dll",
  6994. "ref/netstandard1.5/System.Reflection.xml",
  6995. "ref/netstandard1.5/de/System.Reflection.xml",
  6996. "ref/netstandard1.5/es/System.Reflection.xml",
  6997. "ref/netstandard1.5/fr/System.Reflection.xml",
  6998. "ref/netstandard1.5/it/System.Reflection.xml",
  6999. "ref/netstandard1.5/ja/System.Reflection.xml",
  7000. "ref/netstandard1.5/ko/System.Reflection.xml",
  7001. "ref/netstandard1.5/ru/System.Reflection.xml",
  7002. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7003. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7004. "ref/portable-net45+win8+wp8+wpa81/_._",
  7005. "ref/win8/_._",
  7006. "ref/wp80/_._",
  7007. "ref/wpa81/_._",
  7008. "ref/xamarinios10/_._",
  7009. "ref/xamarinmac20/_._",
  7010. "ref/xamarintvos10/_._",
  7011. "ref/xamarinwatchos10/_._",
  7012. "system.reflection.4.3.0.nupkg.sha512",
  7013. "system.reflection.nuspec"
  7014. ]
  7015. },
  7016. "System.Reflection.Emit/4.3.0": {
  7017. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7018. "type": "package",
  7019. "path": "system.reflection.emit/4.3.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "ThirdPartyNotices.txt",
  7024. "dotnet_library_license.txt",
  7025. "lib/MonoAndroid10/_._",
  7026. "lib/monotouch10/_._",
  7027. "lib/net45/_._",
  7028. "lib/netcore50/System.Reflection.Emit.dll",
  7029. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7030. "lib/xamarinios10/_._",
  7031. "lib/xamarinmac20/_._",
  7032. "lib/xamarintvos10/_._",
  7033. "lib/xamarinwatchos10/_._",
  7034. "ref/MonoAndroid10/_._",
  7035. "ref/net45/_._",
  7036. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7037. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7038. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7039. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7040. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7041. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7042. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7043. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7044. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7045. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7046. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7047. "ref/xamarinmac20/_._",
  7048. "system.reflection.emit.4.3.0.nupkg.sha512",
  7049. "system.reflection.emit.nuspec"
  7050. ]
  7051. },
  7052. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7053. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7054. "type": "package",
  7055. "path": "system.reflection.emit.ilgeneration/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/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7065. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7066. "lib/portable-net45+wp8/_._",
  7067. "lib/wp80/_._",
  7068. "lib/xamarinios10/_._",
  7069. "lib/xamarinmac20/_._",
  7070. "lib/xamarintvos10/_._",
  7071. "lib/xamarinwatchos10/_._",
  7072. "ref/MonoAndroid10/_._",
  7073. "ref/MonoTouch10/_._",
  7074. "ref/net45/_._",
  7075. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7076. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7077. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7078. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7079. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7080. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7081. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7082. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7083. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7084. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7085. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7086. "ref/portable-net45+wp8/_._",
  7087. "ref/wp80/_._",
  7088. "ref/xamarinios10/_._",
  7089. "ref/xamarinmac20/_._",
  7090. "ref/xamarintvos10/_._",
  7091. "ref/xamarinwatchos10/_._",
  7092. "runtimes/aot/lib/netcore50/_._",
  7093. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7094. "system.reflection.emit.ilgeneration.nuspec"
  7095. ]
  7096. },
  7097. "System.Reflection.Emit.Lightweight/4.3.0": {
  7098. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7099. "type": "package",
  7100. "path": "system.reflection.emit.lightweight/4.3.0",
  7101. "files": [
  7102. ".nupkg.metadata",
  7103. ".signature.p7s",
  7104. "ThirdPartyNotices.txt",
  7105. "dotnet_library_license.txt",
  7106. "lib/MonoAndroid10/_._",
  7107. "lib/MonoTouch10/_._",
  7108. "lib/net45/_._",
  7109. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7110. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7111. "lib/portable-net45+wp8/_._",
  7112. "lib/wp80/_._",
  7113. "lib/xamarinios10/_._",
  7114. "lib/xamarinmac20/_._",
  7115. "lib/xamarintvos10/_._",
  7116. "lib/xamarinwatchos10/_._",
  7117. "ref/MonoAndroid10/_._",
  7118. "ref/MonoTouch10/_._",
  7119. "ref/net45/_._",
  7120. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7121. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7122. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7123. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7124. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7125. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7126. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7127. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7128. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7129. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7130. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7131. "ref/portable-net45+wp8/_._",
  7132. "ref/wp80/_._",
  7133. "ref/xamarinios10/_._",
  7134. "ref/xamarinmac20/_._",
  7135. "ref/xamarintvos10/_._",
  7136. "ref/xamarinwatchos10/_._",
  7137. "runtimes/aot/lib/netcore50/_._",
  7138. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7139. "system.reflection.emit.lightweight.nuspec"
  7140. ]
  7141. },
  7142. "System.Reflection.Extensions/4.3.0": {
  7143. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7144. "type": "package",
  7145. "path": "system.reflection.extensions/4.3.0",
  7146. "files": [
  7147. ".nupkg.metadata",
  7148. ".signature.p7s",
  7149. "ThirdPartyNotices.txt",
  7150. "dotnet_library_license.txt",
  7151. "lib/MonoAndroid10/_._",
  7152. "lib/MonoTouch10/_._",
  7153. "lib/net45/_._",
  7154. "lib/portable-net45+win8+wp8+wpa81/_._",
  7155. "lib/win8/_._",
  7156. "lib/wp80/_._",
  7157. "lib/wpa81/_._",
  7158. "lib/xamarinios10/_._",
  7159. "lib/xamarinmac20/_._",
  7160. "lib/xamarintvos10/_._",
  7161. "lib/xamarinwatchos10/_._",
  7162. "ref/MonoAndroid10/_._",
  7163. "ref/MonoTouch10/_._",
  7164. "ref/net45/_._",
  7165. "ref/netcore50/System.Reflection.Extensions.dll",
  7166. "ref/netcore50/System.Reflection.Extensions.xml",
  7167. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7168. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7169. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7170. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7171. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7172. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7173. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7174. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7175. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7176. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7177. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7178. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7179. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7180. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7181. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7182. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7183. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7184. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7185. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7186. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7187. "ref/portable-net45+win8+wp8+wpa81/_._",
  7188. "ref/win8/_._",
  7189. "ref/wp80/_._",
  7190. "ref/wpa81/_._",
  7191. "ref/xamarinios10/_._",
  7192. "ref/xamarinmac20/_._",
  7193. "ref/xamarintvos10/_._",
  7194. "ref/xamarinwatchos10/_._",
  7195. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7196. "system.reflection.extensions.nuspec"
  7197. ]
  7198. },
  7199. "System.Reflection.Primitives/4.3.0": {
  7200. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7201. "type": "package",
  7202. "path": "system.reflection.primitives/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/portable-net45+win8+wp8+wpa81/_._",
  7212. "lib/win8/_._",
  7213. "lib/wp80/_._",
  7214. "lib/wpa81/_._",
  7215. "lib/xamarinios10/_._",
  7216. "lib/xamarinmac20/_._",
  7217. "lib/xamarintvos10/_._",
  7218. "lib/xamarinwatchos10/_._",
  7219. "ref/MonoAndroid10/_._",
  7220. "ref/MonoTouch10/_._",
  7221. "ref/net45/_._",
  7222. "ref/netcore50/System.Reflection.Primitives.dll",
  7223. "ref/netcore50/System.Reflection.Primitives.xml",
  7224. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7225. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7226. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7227. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7228. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7229. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7230. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7231. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7232. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7233. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7234. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7235. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7236. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7237. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7238. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7239. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7240. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7241. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7242. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7243. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7244. "ref/portable-net45+win8+wp8+wpa81/_._",
  7245. "ref/win8/_._",
  7246. "ref/wp80/_._",
  7247. "ref/wpa81/_._",
  7248. "ref/xamarinios10/_._",
  7249. "ref/xamarinmac20/_._",
  7250. "ref/xamarintvos10/_._",
  7251. "ref/xamarinwatchos10/_._",
  7252. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7253. "system.reflection.primitives.nuspec"
  7254. ]
  7255. },
  7256. "System.Reflection.TypeExtensions/4.3.0": {
  7257. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7258. "type": "package",
  7259. "path": "system.reflection.typeextensions/4.3.0",
  7260. "files": [
  7261. ".nupkg.metadata",
  7262. ".signature.p7s",
  7263. "ThirdPartyNotices.txt",
  7264. "dotnet_library_license.txt",
  7265. "lib/MonoAndroid10/_._",
  7266. "lib/MonoTouch10/_._",
  7267. "lib/net46/System.Reflection.TypeExtensions.dll",
  7268. "lib/net462/System.Reflection.TypeExtensions.dll",
  7269. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7270. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7271. "lib/xamarinios10/_._",
  7272. "lib/xamarinmac20/_._",
  7273. "lib/xamarintvos10/_._",
  7274. "lib/xamarinwatchos10/_._",
  7275. "ref/MonoAndroid10/_._",
  7276. "ref/MonoTouch10/_._",
  7277. "ref/net46/System.Reflection.TypeExtensions.dll",
  7278. "ref/net462/System.Reflection.TypeExtensions.dll",
  7279. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7280. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7281. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7282. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7283. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7284. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7285. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7286. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7287. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7288. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7289. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7290. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7291. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7292. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7293. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7294. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7295. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7296. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7297. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7298. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7299. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7300. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7301. "ref/xamarinios10/_._",
  7302. "ref/xamarinmac20/_._",
  7303. "ref/xamarintvos10/_._",
  7304. "ref/xamarinwatchos10/_._",
  7305. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7306. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7307. "system.reflection.typeextensions.nuspec"
  7308. ]
  7309. },
  7310. "System.Resources.ResourceManager/4.3.0": {
  7311. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7312. "type": "package",
  7313. "path": "system.resources.resourcemanager/4.3.0",
  7314. "files": [
  7315. ".nupkg.metadata",
  7316. ".signature.p7s",
  7317. "ThirdPartyNotices.txt",
  7318. "dotnet_library_license.txt",
  7319. "lib/MonoAndroid10/_._",
  7320. "lib/MonoTouch10/_._",
  7321. "lib/net45/_._",
  7322. "lib/portable-net45+win8+wp8+wpa81/_._",
  7323. "lib/win8/_._",
  7324. "lib/wp80/_._",
  7325. "lib/wpa81/_._",
  7326. "lib/xamarinios10/_._",
  7327. "lib/xamarinmac20/_._",
  7328. "lib/xamarintvos10/_._",
  7329. "lib/xamarinwatchos10/_._",
  7330. "ref/MonoAndroid10/_._",
  7331. "ref/MonoTouch10/_._",
  7332. "ref/net45/_._",
  7333. "ref/netcore50/System.Resources.ResourceManager.dll",
  7334. "ref/netcore50/System.Resources.ResourceManager.xml",
  7335. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7336. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7337. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7338. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7339. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7340. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7341. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7342. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7343. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7344. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7345. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7346. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7347. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7348. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7349. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7350. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7351. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7352. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7353. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7354. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7355. "ref/portable-net45+win8+wp8+wpa81/_._",
  7356. "ref/win8/_._",
  7357. "ref/wp80/_._",
  7358. "ref/wpa81/_._",
  7359. "ref/xamarinios10/_._",
  7360. "ref/xamarinmac20/_._",
  7361. "ref/xamarintvos10/_._",
  7362. "ref/xamarinwatchos10/_._",
  7363. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7364. "system.resources.resourcemanager.nuspec"
  7365. ]
  7366. },
  7367. "System.Runtime/4.3.0": {
  7368. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7369. "type": "package",
  7370. "path": "system.runtime/4.3.0",
  7371. "files": [
  7372. ".nupkg.metadata",
  7373. ".signature.p7s",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net45/_._",
  7379. "lib/net462/System.Runtime.dll",
  7380. "lib/portable-net45+win8+wp80+wpa81/_._",
  7381. "lib/win8/_._",
  7382. "lib/wp80/_._",
  7383. "lib/wpa81/_._",
  7384. "lib/xamarinios10/_._",
  7385. "lib/xamarinmac20/_._",
  7386. "lib/xamarintvos10/_._",
  7387. "lib/xamarinwatchos10/_._",
  7388. "ref/MonoAndroid10/_._",
  7389. "ref/MonoTouch10/_._",
  7390. "ref/net45/_._",
  7391. "ref/net462/System.Runtime.dll",
  7392. "ref/netcore50/System.Runtime.dll",
  7393. "ref/netcore50/System.Runtime.xml",
  7394. "ref/netcore50/de/System.Runtime.xml",
  7395. "ref/netcore50/es/System.Runtime.xml",
  7396. "ref/netcore50/fr/System.Runtime.xml",
  7397. "ref/netcore50/it/System.Runtime.xml",
  7398. "ref/netcore50/ja/System.Runtime.xml",
  7399. "ref/netcore50/ko/System.Runtime.xml",
  7400. "ref/netcore50/ru/System.Runtime.xml",
  7401. "ref/netcore50/zh-hans/System.Runtime.xml",
  7402. "ref/netcore50/zh-hant/System.Runtime.xml",
  7403. "ref/netstandard1.0/System.Runtime.dll",
  7404. "ref/netstandard1.0/System.Runtime.xml",
  7405. "ref/netstandard1.0/de/System.Runtime.xml",
  7406. "ref/netstandard1.0/es/System.Runtime.xml",
  7407. "ref/netstandard1.0/fr/System.Runtime.xml",
  7408. "ref/netstandard1.0/it/System.Runtime.xml",
  7409. "ref/netstandard1.0/ja/System.Runtime.xml",
  7410. "ref/netstandard1.0/ko/System.Runtime.xml",
  7411. "ref/netstandard1.0/ru/System.Runtime.xml",
  7412. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7413. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7414. "ref/netstandard1.2/System.Runtime.dll",
  7415. "ref/netstandard1.2/System.Runtime.xml",
  7416. "ref/netstandard1.2/de/System.Runtime.xml",
  7417. "ref/netstandard1.2/es/System.Runtime.xml",
  7418. "ref/netstandard1.2/fr/System.Runtime.xml",
  7419. "ref/netstandard1.2/it/System.Runtime.xml",
  7420. "ref/netstandard1.2/ja/System.Runtime.xml",
  7421. "ref/netstandard1.2/ko/System.Runtime.xml",
  7422. "ref/netstandard1.2/ru/System.Runtime.xml",
  7423. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7424. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7425. "ref/netstandard1.3/System.Runtime.dll",
  7426. "ref/netstandard1.3/System.Runtime.xml",
  7427. "ref/netstandard1.3/de/System.Runtime.xml",
  7428. "ref/netstandard1.3/es/System.Runtime.xml",
  7429. "ref/netstandard1.3/fr/System.Runtime.xml",
  7430. "ref/netstandard1.3/it/System.Runtime.xml",
  7431. "ref/netstandard1.3/ja/System.Runtime.xml",
  7432. "ref/netstandard1.3/ko/System.Runtime.xml",
  7433. "ref/netstandard1.3/ru/System.Runtime.xml",
  7434. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7435. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7436. "ref/netstandard1.5/System.Runtime.dll",
  7437. "ref/netstandard1.5/System.Runtime.xml",
  7438. "ref/netstandard1.5/de/System.Runtime.xml",
  7439. "ref/netstandard1.5/es/System.Runtime.xml",
  7440. "ref/netstandard1.5/fr/System.Runtime.xml",
  7441. "ref/netstandard1.5/it/System.Runtime.xml",
  7442. "ref/netstandard1.5/ja/System.Runtime.xml",
  7443. "ref/netstandard1.5/ko/System.Runtime.xml",
  7444. "ref/netstandard1.5/ru/System.Runtime.xml",
  7445. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7446. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7447. "ref/portable-net45+win8+wp80+wpa81/_._",
  7448. "ref/win8/_._",
  7449. "ref/wp80/_._",
  7450. "ref/wpa81/_._",
  7451. "ref/xamarinios10/_._",
  7452. "ref/xamarinmac20/_._",
  7453. "ref/xamarintvos10/_._",
  7454. "ref/xamarinwatchos10/_._",
  7455. "system.runtime.4.3.0.nupkg.sha512",
  7456. "system.runtime.nuspec"
  7457. ]
  7458. },
  7459. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7460. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7461. "type": "package",
  7462. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7463. "files": [
  7464. ".nupkg.metadata",
  7465. ".signature.p7s",
  7466. "Icon.png",
  7467. "LICENSE.TXT",
  7468. "THIRD-PARTY-NOTICES.TXT",
  7469. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7470. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7471. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7472. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7473. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7474. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7475. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7476. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7477. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7478. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7479. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7480. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7481. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7482. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7483. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7484. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7485. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7486. "system.runtime.compilerservices.unsafe.nuspec",
  7487. "useSharedDesignerContext.txt",
  7488. "version.txt"
  7489. ]
  7490. },
  7491. "System.Runtime.Extensions/4.3.0": {
  7492. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7493. "type": "package",
  7494. "path": "system.runtime.extensions/4.3.0",
  7495. "files": [
  7496. ".nupkg.metadata",
  7497. ".signature.p7s",
  7498. "ThirdPartyNotices.txt",
  7499. "dotnet_library_license.txt",
  7500. "lib/MonoAndroid10/_._",
  7501. "lib/MonoTouch10/_._",
  7502. "lib/net45/_._",
  7503. "lib/net462/System.Runtime.Extensions.dll",
  7504. "lib/portable-net45+win8+wp8+wpa81/_._",
  7505. "lib/win8/_._",
  7506. "lib/wp80/_._",
  7507. "lib/wpa81/_._",
  7508. "lib/xamarinios10/_._",
  7509. "lib/xamarinmac20/_._",
  7510. "lib/xamarintvos10/_._",
  7511. "lib/xamarinwatchos10/_._",
  7512. "ref/MonoAndroid10/_._",
  7513. "ref/MonoTouch10/_._",
  7514. "ref/net45/_._",
  7515. "ref/net462/System.Runtime.Extensions.dll",
  7516. "ref/netcore50/System.Runtime.Extensions.dll",
  7517. "ref/netcore50/System.Runtime.Extensions.xml",
  7518. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7519. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7520. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7521. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7522. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7523. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7524. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7525. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7526. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7527. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7528. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7529. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7530. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7531. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7532. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7533. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7534. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7535. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7536. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7537. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7538. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7539. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7540. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7541. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7542. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7543. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7544. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7545. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7546. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7547. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7548. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7549. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7550. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7551. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7552. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7553. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7554. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7555. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7556. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7557. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7558. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7559. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.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.runtime.extensions.4.3.0.nupkg.sha512",
  7569. "system.runtime.extensions.nuspec"
  7570. ]
  7571. },
  7572. "System.Runtime.Handles/4.3.0": {
  7573. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7574. "type": "package",
  7575. "path": "system.runtime.handles/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/net46/_._",
  7584. "lib/xamarinios10/_._",
  7585. "lib/xamarinmac20/_._",
  7586. "lib/xamarintvos10/_._",
  7587. "lib/xamarinwatchos10/_._",
  7588. "ref/MonoAndroid10/_._",
  7589. "ref/MonoTouch10/_._",
  7590. "ref/net46/_._",
  7591. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7592. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7593. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7594. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7595. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7596. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7597. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7598. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7599. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7600. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7601. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7602. "ref/xamarinios10/_._",
  7603. "ref/xamarinmac20/_._",
  7604. "ref/xamarintvos10/_._",
  7605. "ref/xamarinwatchos10/_._",
  7606. "system.runtime.handles.4.3.0.nupkg.sha512",
  7607. "system.runtime.handles.nuspec"
  7608. ]
  7609. },
  7610. "System.Runtime.InteropServices/4.3.0": {
  7611. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7612. "type": "package",
  7613. "path": "system.runtime.interopservices/4.3.0",
  7614. "files": [
  7615. ".nupkg.metadata",
  7616. ".signature.p7s",
  7617. "ThirdPartyNotices.txt",
  7618. "dotnet_library_license.txt",
  7619. "lib/MonoAndroid10/_._",
  7620. "lib/MonoTouch10/_._",
  7621. "lib/net45/_._",
  7622. "lib/net462/System.Runtime.InteropServices.dll",
  7623. "lib/net463/System.Runtime.InteropServices.dll",
  7624. "lib/portable-net45+win8+wpa81/_._",
  7625. "lib/win8/_._",
  7626. "lib/wpa81/_._",
  7627. "lib/xamarinios10/_._",
  7628. "lib/xamarinmac20/_._",
  7629. "lib/xamarintvos10/_._",
  7630. "lib/xamarinwatchos10/_._",
  7631. "ref/MonoAndroid10/_._",
  7632. "ref/MonoTouch10/_._",
  7633. "ref/net45/_._",
  7634. "ref/net462/System.Runtime.InteropServices.dll",
  7635. "ref/net463/System.Runtime.InteropServices.dll",
  7636. "ref/netcore50/System.Runtime.InteropServices.dll",
  7637. "ref/netcore50/System.Runtime.InteropServices.xml",
  7638. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7639. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7640. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7641. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7642. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7643. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7644. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7645. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7646. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7647. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7648. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7649. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7650. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7651. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7652. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7653. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7654. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7655. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7656. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7657. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7658. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7659. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7660. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7661. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7662. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7663. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7664. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7665. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7666. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7667. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7668. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7669. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7670. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7671. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7672. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7673. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7674. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7675. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7676. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7677. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7678. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7679. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7680. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7681. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7682. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7683. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7684. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7685. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7686. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7687. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7688. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7689. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7690. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7691. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7692. "ref/portable-net45+win8+wpa81/_._",
  7693. "ref/win8/_._",
  7694. "ref/wpa81/_._",
  7695. "ref/xamarinios10/_._",
  7696. "ref/xamarinmac20/_._",
  7697. "ref/xamarintvos10/_._",
  7698. "ref/xamarinwatchos10/_._",
  7699. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7700. "system.runtime.interopservices.nuspec"
  7701. ]
  7702. },
  7703. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7704. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7705. "type": "package",
  7706. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7707. "files": [
  7708. ".nupkg.metadata",
  7709. ".signature.p7s",
  7710. "ThirdPartyNotices.txt",
  7711. "dotnet_library_license.txt",
  7712. "lib/MonoAndroid10/_._",
  7713. "lib/MonoTouch10/_._",
  7714. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7715. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7716. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7717. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7718. "lib/xamarinios10/_._",
  7719. "lib/xamarinmac20/_._",
  7720. "lib/xamarintvos10/_._",
  7721. "lib/xamarinwatchos10/_._",
  7722. "ref/MonoAndroid10/_._",
  7723. "ref/MonoTouch10/_._",
  7724. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7730. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7731. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7732. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7733. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7734. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7735. "system.runtime.interopservices.runtimeinformation.nuspec"
  7736. ]
  7737. },
  7738. "System.Runtime.Numerics/4.3.0": {
  7739. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7740. "type": "package",
  7741. "path": "system.runtime.numerics/4.3.0",
  7742. "files": [
  7743. ".nupkg.metadata",
  7744. ".signature.p7s",
  7745. "ThirdPartyNotices.txt",
  7746. "dotnet_library_license.txt",
  7747. "lib/MonoAndroid10/_._",
  7748. "lib/MonoTouch10/_._",
  7749. "lib/net45/_._",
  7750. "lib/netcore50/System.Runtime.Numerics.dll",
  7751. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7752. "lib/portable-net45+win8+wpa81/_._",
  7753. "lib/win8/_._",
  7754. "lib/wpa81/_._",
  7755. "lib/xamarinios10/_._",
  7756. "lib/xamarinmac20/_._",
  7757. "lib/xamarintvos10/_._",
  7758. "lib/xamarinwatchos10/_._",
  7759. "ref/MonoAndroid10/_._",
  7760. "ref/MonoTouch10/_._",
  7761. "ref/net45/_._",
  7762. "ref/netcore50/System.Runtime.Numerics.dll",
  7763. "ref/netcore50/System.Runtime.Numerics.xml",
  7764. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7765. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7766. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7767. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7768. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7769. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7770. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7771. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7772. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7773. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7774. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7775. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7776. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7777. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7778. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7779. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7780. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7781. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7782. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7783. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7784. "ref/portable-net45+win8+wpa81/_._",
  7785. "ref/win8/_._",
  7786. "ref/wpa81/_._",
  7787. "ref/xamarinios10/_._",
  7788. "ref/xamarinmac20/_._",
  7789. "ref/xamarintvos10/_._",
  7790. "ref/xamarinwatchos10/_._",
  7791. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7792. "system.runtime.numerics.nuspec"
  7793. ]
  7794. },
  7795. "System.Runtime.Serialization.Primitives/4.3.0": {
  7796. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7797. "type": "package",
  7798. "path": "system.runtime.serialization.primitives/4.3.0",
  7799. "files": [
  7800. ".nupkg.metadata",
  7801. ".signature.p7s",
  7802. "ThirdPartyNotices.txt",
  7803. "dotnet_library_license.txt",
  7804. "lib/MonoAndroid10/_._",
  7805. "lib/MonoTouch10/_._",
  7806. "lib/net45/_._",
  7807. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7808. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7809. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7810. "lib/portable-net45+win8+wp8+wpa81/_._",
  7811. "lib/win8/_._",
  7812. "lib/wp80/_._",
  7813. "lib/wpa81/_._",
  7814. "lib/xamarinios10/_._",
  7815. "lib/xamarinmac20/_._",
  7816. "lib/xamarintvos10/_._",
  7817. "lib/xamarinwatchos10/_._",
  7818. "ref/MonoAndroid10/_._",
  7819. "ref/MonoTouch10/_._",
  7820. "ref/net45/_._",
  7821. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7822. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7823. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7824. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7825. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7826. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7827. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7828. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7829. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7830. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7831. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7832. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7833. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7834. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7835. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7836. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7837. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7838. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7839. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7840. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7841. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7842. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7843. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7844. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7845. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7846. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7847. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7848. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7849. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7850. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7851. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7852. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7853. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7854. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7855. "ref/portable-net45+win8+wp8+wpa81/_._",
  7856. "ref/win8/_._",
  7857. "ref/wp80/_._",
  7858. "ref/wpa81/_._",
  7859. "ref/xamarinios10/_._",
  7860. "ref/xamarinmac20/_._",
  7861. "ref/xamarintvos10/_._",
  7862. "ref/xamarinwatchos10/_._",
  7863. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7864. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7865. "system.runtime.serialization.primitives.nuspec"
  7866. ]
  7867. },
  7868. "System.Security.AccessControl/4.7.0": {
  7869. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7870. "type": "package",
  7871. "path": "system.security.accesscontrol/4.7.0",
  7872. "files": [
  7873. ".nupkg.metadata",
  7874. ".signature.p7s",
  7875. "LICENSE.TXT",
  7876. "THIRD-PARTY-NOTICES.TXT",
  7877. "lib/net46/System.Security.AccessControl.dll",
  7878. "lib/net461/System.Security.AccessControl.dll",
  7879. "lib/net461/System.Security.AccessControl.xml",
  7880. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7881. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7882. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7883. "lib/uap10.0.16299/_._",
  7884. "ref/net46/System.Security.AccessControl.dll",
  7885. "ref/net461/System.Security.AccessControl.dll",
  7886. "ref/net461/System.Security.AccessControl.xml",
  7887. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7888. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7889. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7890. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7891. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7892. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7893. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7894. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7895. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7896. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7897. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7898. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7899. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7900. "ref/uap10.0.16299/_._",
  7901. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7902. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7903. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7904. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7905. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7906. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7907. "runtimes/win/lib/uap10.0.16299/_._",
  7908. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7909. "system.security.accesscontrol.nuspec",
  7910. "useSharedDesignerContext.txt",
  7911. "version.txt"
  7912. ]
  7913. },
  7914. "System.Security.Claims/4.3.0": {
  7915. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7916. "type": "package",
  7917. "path": "system.security.claims/4.3.0",
  7918. "files": [
  7919. ".nupkg.metadata",
  7920. ".signature.p7s",
  7921. "ThirdPartyNotices.txt",
  7922. "dotnet_library_license.txt",
  7923. "lib/MonoAndroid10/_._",
  7924. "lib/MonoTouch10/_._",
  7925. "lib/net46/System.Security.Claims.dll",
  7926. "lib/netstandard1.3/System.Security.Claims.dll",
  7927. "lib/xamarinios10/_._",
  7928. "lib/xamarinmac20/_._",
  7929. "lib/xamarintvos10/_._",
  7930. "lib/xamarinwatchos10/_._",
  7931. "ref/MonoAndroid10/_._",
  7932. "ref/MonoTouch10/_._",
  7933. "ref/net46/System.Security.Claims.dll",
  7934. "ref/netstandard1.3/System.Security.Claims.dll",
  7935. "ref/netstandard1.3/System.Security.Claims.xml",
  7936. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7937. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7938. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7939. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7940. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7941. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7942. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7943. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7944. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7945. "ref/xamarinios10/_._",
  7946. "ref/xamarinmac20/_._",
  7947. "ref/xamarintvos10/_._",
  7948. "ref/xamarinwatchos10/_._",
  7949. "system.security.claims.4.3.0.nupkg.sha512",
  7950. "system.security.claims.nuspec"
  7951. ]
  7952. },
  7953. "System.Security.Cryptography.Algorithms/4.3.0": {
  7954. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7955. "type": "package",
  7956. "path": "system.security.cryptography.algorithms/4.3.0",
  7957. "files": [
  7958. ".nupkg.metadata",
  7959. ".signature.p7s",
  7960. "ThirdPartyNotices.txt",
  7961. "dotnet_library_license.txt",
  7962. "lib/MonoAndroid10/_._",
  7963. "lib/MonoTouch10/_._",
  7964. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7965. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7966. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7967. "lib/xamarinios10/_._",
  7968. "lib/xamarinmac20/_._",
  7969. "lib/xamarintvos10/_._",
  7970. "lib/xamarinwatchos10/_._",
  7971. "ref/MonoAndroid10/_._",
  7972. "ref/MonoTouch10/_._",
  7973. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7974. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7975. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7976. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7977. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7978. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7979. "ref/xamarinios10/_._",
  7980. "ref/xamarinmac20/_._",
  7981. "ref/xamarintvos10/_._",
  7982. "ref/xamarinwatchos10/_._",
  7983. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7984. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7985. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7986. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7987. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7988. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7989. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7990. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7991. "system.security.cryptography.algorithms.nuspec"
  7992. ]
  7993. },
  7994. "System.Security.Cryptography.Cng/4.3.0": {
  7995. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7996. "type": "package",
  7997. "path": "system.security.cryptography.cng/4.3.0",
  7998. "files": [
  7999. ".nupkg.metadata",
  8000. ".signature.p7s",
  8001. "ThirdPartyNotices.txt",
  8002. "dotnet_library_license.txt",
  8003. "lib/net46/System.Security.Cryptography.Cng.dll",
  8004. "lib/net461/System.Security.Cryptography.Cng.dll",
  8005. "lib/net463/System.Security.Cryptography.Cng.dll",
  8006. "ref/net46/System.Security.Cryptography.Cng.dll",
  8007. "ref/net461/System.Security.Cryptography.Cng.dll",
  8008. "ref/net463/System.Security.Cryptography.Cng.dll",
  8009. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8010. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8011. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8012. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8013. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8014. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8015. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8016. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8017. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8018. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8019. "system.security.cryptography.cng.nuspec"
  8020. ]
  8021. },
  8022. "System.Security.Cryptography.Csp/4.3.0": {
  8023. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8024. "type": "package",
  8025. "path": "system.security.cryptography.csp/4.3.0",
  8026. "files": [
  8027. ".nupkg.metadata",
  8028. ".signature.p7s",
  8029. "ThirdPartyNotices.txt",
  8030. "dotnet_library_license.txt",
  8031. "lib/MonoAndroid10/_._",
  8032. "lib/MonoTouch10/_._",
  8033. "lib/net46/System.Security.Cryptography.Csp.dll",
  8034. "lib/xamarinios10/_._",
  8035. "lib/xamarinmac20/_._",
  8036. "lib/xamarintvos10/_._",
  8037. "lib/xamarinwatchos10/_._",
  8038. "ref/MonoAndroid10/_._",
  8039. "ref/MonoTouch10/_._",
  8040. "ref/net46/System.Security.Cryptography.Csp.dll",
  8041. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8042. "ref/xamarinios10/_._",
  8043. "ref/xamarinmac20/_._",
  8044. "ref/xamarintvos10/_._",
  8045. "ref/xamarinwatchos10/_._",
  8046. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8047. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8048. "runtimes/win/lib/netcore50/_._",
  8049. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8050. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8051. "system.security.cryptography.csp.nuspec"
  8052. ]
  8053. },
  8054. "System.Security.Cryptography.Encoding/4.3.0": {
  8055. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8056. "type": "package",
  8057. "path": "system.security.cryptography.encoding/4.3.0",
  8058. "files": [
  8059. ".nupkg.metadata",
  8060. ".signature.p7s",
  8061. "ThirdPartyNotices.txt",
  8062. "dotnet_library_license.txt",
  8063. "lib/MonoAndroid10/_._",
  8064. "lib/MonoTouch10/_._",
  8065. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8066. "lib/xamarinios10/_._",
  8067. "lib/xamarinmac20/_._",
  8068. "lib/xamarintvos10/_._",
  8069. "lib/xamarinwatchos10/_._",
  8070. "ref/MonoAndroid10/_._",
  8071. "ref/MonoTouch10/_._",
  8072. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8073. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8074. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8075. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8076. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8077. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8078. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8079. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8080. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8081. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8082. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8083. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8084. "ref/xamarinios10/_._",
  8085. "ref/xamarinmac20/_._",
  8086. "ref/xamarintvos10/_._",
  8087. "ref/xamarinwatchos10/_._",
  8088. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8089. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8090. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8091. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8092. "system.security.cryptography.encoding.nuspec"
  8093. ]
  8094. },
  8095. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8096. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8097. "type": "package",
  8098. "path": "system.security.cryptography.openssl/4.3.0",
  8099. "files": [
  8100. ".nupkg.metadata",
  8101. ".signature.p7s",
  8102. "ThirdPartyNotices.txt",
  8103. "dotnet_library_license.txt",
  8104. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8105. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8106. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8107. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8108. "system.security.cryptography.openssl.nuspec"
  8109. ]
  8110. },
  8111. "System.Security.Cryptography.Primitives/4.3.0": {
  8112. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8113. "type": "package",
  8114. "path": "system.security.cryptography.primitives/4.3.0",
  8115. "files": [
  8116. ".nupkg.metadata",
  8117. ".signature.p7s",
  8118. "ThirdPartyNotices.txt",
  8119. "dotnet_library_license.txt",
  8120. "lib/MonoAndroid10/_._",
  8121. "lib/MonoTouch10/_._",
  8122. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8123. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8124. "lib/xamarinios10/_._",
  8125. "lib/xamarinmac20/_._",
  8126. "lib/xamarintvos10/_._",
  8127. "lib/xamarinwatchos10/_._",
  8128. "ref/MonoAndroid10/_._",
  8129. "ref/MonoTouch10/_._",
  8130. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8131. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8132. "ref/xamarinios10/_._",
  8133. "ref/xamarinmac20/_._",
  8134. "ref/xamarintvos10/_._",
  8135. "ref/xamarinwatchos10/_._",
  8136. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8137. "system.security.cryptography.primitives.nuspec"
  8138. ]
  8139. },
  8140. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8141. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8142. "type": "package",
  8143. "path": "system.security.cryptography.protecteddata/4.5.0",
  8144. "files": [
  8145. ".nupkg.metadata",
  8146. ".signature.p7s",
  8147. "LICENSE.TXT",
  8148. "THIRD-PARTY-NOTICES.TXT",
  8149. "lib/MonoAndroid10/_._",
  8150. "lib/MonoTouch10/_._",
  8151. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8152. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8153. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8154. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8155. "lib/xamarinios10/_._",
  8156. "lib/xamarinmac20/_._",
  8157. "lib/xamarintvos10/_._",
  8158. "lib/xamarinwatchos10/_._",
  8159. "ref/MonoAndroid10/_._",
  8160. "ref/MonoTouch10/_._",
  8161. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8162. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8163. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8164. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8165. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8166. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8167. "ref/xamarinios10/_._",
  8168. "ref/xamarinmac20/_._",
  8169. "ref/xamarintvos10/_._",
  8170. "ref/xamarinwatchos10/_._",
  8171. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8172. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8173. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8174. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8175. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8176. "system.security.cryptography.protecteddata.nuspec",
  8177. "useSharedDesignerContext.txt",
  8178. "version.txt"
  8179. ]
  8180. },
  8181. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8182. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8183. "type": "package",
  8184. "path": "system.security.cryptography.x509certificates/4.3.0",
  8185. "files": [
  8186. ".nupkg.metadata",
  8187. ".signature.p7s",
  8188. "ThirdPartyNotices.txt",
  8189. "dotnet_library_license.txt",
  8190. "lib/MonoAndroid10/_._",
  8191. "lib/MonoTouch10/_._",
  8192. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8193. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8194. "lib/xamarinios10/_._",
  8195. "lib/xamarinmac20/_._",
  8196. "lib/xamarintvos10/_._",
  8197. "lib/xamarinwatchos10/_._",
  8198. "ref/MonoAndroid10/_._",
  8199. "ref/MonoTouch10/_._",
  8200. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8201. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8202. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8203. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8204. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8205. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8206. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8207. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8208. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8209. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8210. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8211. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8212. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8213. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8214. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8215. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8216. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8217. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8218. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8219. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8220. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8221. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8222. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8223. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8224. "ref/xamarinios10/_._",
  8225. "ref/xamarinmac20/_._",
  8226. "ref/xamarintvos10/_._",
  8227. "ref/xamarinwatchos10/_._",
  8228. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8229. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8230. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8231. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8232. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8233. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8234. "system.security.cryptography.x509certificates.nuspec"
  8235. ]
  8236. },
  8237. "System.Security.Permissions/4.7.0": {
  8238. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8239. "type": "package",
  8240. "path": "system.security.permissions/4.7.0",
  8241. "files": [
  8242. ".nupkg.metadata",
  8243. ".signature.p7s",
  8244. "LICENSE.TXT",
  8245. "THIRD-PARTY-NOTICES.TXT",
  8246. "lib/net461/System.Security.Permissions.dll",
  8247. "lib/net461/System.Security.Permissions.xml",
  8248. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8249. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8250. "lib/netstandard2.0/System.Security.Permissions.dll",
  8251. "lib/netstandard2.0/System.Security.Permissions.xml",
  8252. "ref/net461/System.Security.Permissions.dll",
  8253. "ref/net461/System.Security.Permissions.xml",
  8254. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8255. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8256. "ref/netstandard2.0/System.Security.Permissions.dll",
  8257. "ref/netstandard2.0/System.Security.Permissions.xml",
  8258. "system.security.permissions.4.7.0.nupkg.sha512",
  8259. "system.security.permissions.nuspec",
  8260. "useSharedDesignerContext.txt",
  8261. "version.txt"
  8262. ]
  8263. },
  8264. "System.Security.Principal/4.3.0": {
  8265. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8266. "type": "package",
  8267. "path": "system.security.principal/4.3.0",
  8268. "files": [
  8269. ".nupkg.metadata",
  8270. ".signature.p7s",
  8271. "ThirdPartyNotices.txt",
  8272. "dotnet_library_license.txt",
  8273. "lib/MonoAndroid10/_._",
  8274. "lib/MonoTouch10/_._",
  8275. "lib/net45/_._",
  8276. "lib/netcore50/System.Security.Principal.dll",
  8277. "lib/netstandard1.0/System.Security.Principal.dll",
  8278. "lib/portable-net45+win8+wp8+wpa81/_._",
  8279. "lib/win8/_._",
  8280. "lib/wp80/_._",
  8281. "lib/wpa81/_._",
  8282. "lib/xamarinios10/_._",
  8283. "lib/xamarinmac20/_._",
  8284. "lib/xamarintvos10/_._",
  8285. "lib/xamarinwatchos10/_._",
  8286. "ref/MonoAndroid10/_._",
  8287. "ref/MonoTouch10/_._",
  8288. "ref/net45/_._",
  8289. "ref/netcore50/System.Security.Principal.dll",
  8290. "ref/netcore50/System.Security.Principal.xml",
  8291. "ref/netcore50/de/System.Security.Principal.xml",
  8292. "ref/netcore50/es/System.Security.Principal.xml",
  8293. "ref/netcore50/fr/System.Security.Principal.xml",
  8294. "ref/netcore50/it/System.Security.Principal.xml",
  8295. "ref/netcore50/ja/System.Security.Principal.xml",
  8296. "ref/netcore50/ko/System.Security.Principal.xml",
  8297. "ref/netcore50/ru/System.Security.Principal.xml",
  8298. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8299. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8300. "ref/netstandard1.0/System.Security.Principal.dll",
  8301. "ref/netstandard1.0/System.Security.Principal.xml",
  8302. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8303. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8304. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8305. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8306. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8307. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8308. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8309. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8310. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8311. "ref/portable-net45+win8+wp8+wpa81/_._",
  8312. "ref/win8/_._",
  8313. "ref/wp80/_._",
  8314. "ref/wpa81/_._",
  8315. "ref/xamarinios10/_._",
  8316. "ref/xamarinmac20/_._",
  8317. "ref/xamarintvos10/_._",
  8318. "ref/xamarinwatchos10/_._",
  8319. "system.security.principal.4.3.0.nupkg.sha512",
  8320. "system.security.principal.nuspec"
  8321. ]
  8322. },
  8323. "System.Security.Principal.Windows/4.7.0": {
  8324. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8325. "type": "package",
  8326. "path": "system.security.principal.windows/4.7.0",
  8327. "files": [
  8328. ".nupkg.metadata",
  8329. ".signature.p7s",
  8330. "LICENSE.TXT",
  8331. "THIRD-PARTY-NOTICES.TXT",
  8332. "lib/net46/System.Security.Principal.Windows.dll",
  8333. "lib/net461/System.Security.Principal.Windows.dll",
  8334. "lib/net461/System.Security.Principal.Windows.xml",
  8335. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8336. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8337. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8338. "lib/uap10.0.16299/_._",
  8339. "ref/net46/System.Security.Principal.Windows.dll",
  8340. "ref/net461/System.Security.Principal.Windows.dll",
  8341. "ref/net461/System.Security.Principal.Windows.xml",
  8342. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8343. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8344. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8345. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8346. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8347. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8348. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8349. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8350. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8351. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8352. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8353. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8354. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8355. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8356. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8357. "ref/uap10.0.16299/_._",
  8358. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8359. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8360. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8361. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8362. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8363. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8364. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8365. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8366. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8367. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8368. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8369. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8370. "runtimes/win/lib/uap10.0.16299/_._",
  8371. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8372. "system.security.principal.windows.nuspec",
  8373. "useSharedDesignerContext.txt",
  8374. "version.txt"
  8375. ]
  8376. },
  8377. "System.Text.Encoding/4.3.0": {
  8378. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8379. "type": "package",
  8380. "path": "system.text.encoding/4.3.0",
  8381. "files": [
  8382. ".nupkg.metadata",
  8383. ".signature.p7s",
  8384. "ThirdPartyNotices.txt",
  8385. "dotnet_library_license.txt",
  8386. "lib/MonoAndroid10/_._",
  8387. "lib/MonoTouch10/_._",
  8388. "lib/net45/_._",
  8389. "lib/portable-net45+win8+wp8+wpa81/_._",
  8390. "lib/win8/_._",
  8391. "lib/wp80/_._",
  8392. "lib/wpa81/_._",
  8393. "lib/xamarinios10/_._",
  8394. "lib/xamarinmac20/_._",
  8395. "lib/xamarintvos10/_._",
  8396. "lib/xamarinwatchos10/_._",
  8397. "ref/MonoAndroid10/_._",
  8398. "ref/MonoTouch10/_._",
  8399. "ref/net45/_._",
  8400. "ref/netcore50/System.Text.Encoding.dll",
  8401. "ref/netcore50/System.Text.Encoding.xml",
  8402. "ref/netcore50/de/System.Text.Encoding.xml",
  8403. "ref/netcore50/es/System.Text.Encoding.xml",
  8404. "ref/netcore50/fr/System.Text.Encoding.xml",
  8405. "ref/netcore50/it/System.Text.Encoding.xml",
  8406. "ref/netcore50/ja/System.Text.Encoding.xml",
  8407. "ref/netcore50/ko/System.Text.Encoding.xml",
  8408. "ref/netcore50/ru/System.Text.Encoding.xml",
  8409. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8410. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8411. "ref/netstandard1.0/System.Text.Encoding.dll",
  8412. "ref/netstandard1.0/System.Text.Encoding.xml",
  8413. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8414. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8415. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8416. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8417. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8418. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8419. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8420. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8421. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8422. "ref/netstandard1.3/System.Text.Encoding.dll",
  8423. "ref/netstandard1.3/System.Text.Encoding.xml",
  8424. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8425. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8426. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8427. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8428. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8429. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8430. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8431. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8432. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8433. "ref/portable-net45+win8+wp8+wpa81/_._",
  8434. "ref/win8/_._",
  8435. "ref/wp80/_._",
  8436. "ref/wpa81/_._",
  8437. "ref/xamarinios10/_._",
  8438. "ref/xamarinmac20/_._",
  8439. "ref/xamarintvos10/_._",
  8440. "ref/xamarinwatchos10/_._",
  8441. "system.text.encoding.4.3.0.nupkg.sha512",
  8442. "system.text.encoding.nuspec"
  8443. ]
  8444. },
  8445. "System.Text.Encoding.CodePages/5.0.0": {
  8446. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8447. "type": "package",
  8448. "path": "system.text.encoding.codepages/5.0.0",
  8449. "files": [
  8450. ".nupkg.metadata",
  8451. ".signature.p7s",
  8452. "Icon.png",
  8453. "LICENSE.TXT",
  8454. "THIRD-PARTY-NOTICES.TXT",
  8455. "lib/MonoAndroid10/_._",
  8456. "lib/MonoTouch10/_._",
  8457. "lib/net46/System.Text.Encoding.CodePages.dll",
  8458. "lib/net461/System.Text.Encoding.CodePages.dll",
  8459. "lib/net461/System.Text.Encoding.CodePages.xml",
  8460. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8461. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8462. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8463. "lib/xamarinios10/_._",
  8464. "lib/xamarinmac20/_._",
  8465. "lib/xamarintvos10/_._",
  8466. "lib/xamarinwatchos10/_._",
  8467. "ref/MonoAndroid10/_._",
  8468. "ref/MonoTouch10/_._",
  8469. "ref/xamarinios10/_._",
  8470. "ref/xamarinmac20/_._",
  8471. "ref/xamarintvos10/_._",
  8472. "ref/xamarinwatchos10/_._",
  8473. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8474. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8475. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8476. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8477. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8478. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8479. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8480. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8481. "system.text.encoding.codepages.nuspec",
  8482. "useSharedDesignerContext.txt",
  8483. "version.txt"
  8484. ]
  8485. },
  8486. "System.Text.Encoding.Extensions/4.3.0": {
  8487. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8488. "type": "package",
  8489. "path": "system.text.encoding.extensions/4.3.0",
  8490. "files": [
  8491. ".nupkg.metadata",
  8492. ".signature.p7s",
  8493. "ThirdPartyNotices.txt",
  8494. "dotnet_library_license.txt",
  8495. "lib/MonoAndroid10/_._",
  8496. "lib/MonoTouch10/_._",
  8497. "lib/net45/_._",
  8498. "lib/portable-net45+win8+wp8+wpa81/_._",
  8499. "lib/win8/_._",
  8500. "lib/wp80/_._",
  8501. "lib/wpa81/_._",
  8502. "lib/xamarinios10/_._",
  8503. "lib/xamarinmac20/_._",
  8504. "lib/xamarintvos10/_._",
  8505. "lib/xamarinwatchos10/_._",
  8506. "ref/MonoAndroid10/_._",
  8507. "ref/MonoTouch10/_._",
  8508. "ref/net45/_._",
  8509. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8510. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8511. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8512. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8513. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8514. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8515. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8516. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8517. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8518. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8519. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8520. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8521. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8522. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8523. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8524. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8525. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8526. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8527. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8528. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8529. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8530. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8531. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8532. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8533. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8534. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8535. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8536. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8537. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8538. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8539. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8540. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8541. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8542. "ref/portable-net45+win8+wp8+wpa81/_._",
  8543. "ref/win8/_._",
  8544. "ref/wp80/_._",
  8545. "ref/wpa81/_._",
  8546. "ref/xamarinios10/_._",
  8547. "ref/xamarinmac20/_._",
  8548. "ref/xamarintvos10/_._",
  8549. "ref/xamarinwatchos10/_._",
  8550. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8551. "system.text.encoding.extensions.nuspec"
  8552. ]
  8553. },
  8554. "System.Text.Encodings.Web/4.7.0": {
  8555. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8556. "type": "package",
  8557. "path": "system.text.encodings.web/4.7.0",
  8558. "files": [
  8559. ".nupkg.metadata",
  8560. ".signature.p7s",
  8561. "LICENSE.TXT",
  8562. "THIRD-PARTY-NOTICES.TXT",
  8563. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8564. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8565. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8566. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8567. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8568. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8569. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8570. "system.text.encodings.web.nuspec",
  8571. "useSharedDesignerContext.txt",
  8572. "version.txt"
  8573. ]
  8574. },
  8575. "System.Text.RegularExpressions/4.3.0": {
  8576. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8577. "type": "package",
  8578. "path": "system.text.regularexpressions/4.3.0",
  8579. "files": [
  8580. ".nupkg.metadata",
  8581. ".signature.p7s",
  8582. "ThirdPartyNotices.txt",
  8583. "dotnet_library_license.txt",
  8584. "lib/MonoAndroid10/_._",
  8585. "lib/MonoTouch10/_._",
  8586. "lib/net45/_._",
  8587. "lib/net463/System.Text.RegularExpressions.dll",
  8588. "lib/netcore50/System.Text.RegularExpressions.dll",
  8589. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8590. "lib/portable-net45+win8+wp8+wpa81/_._",
  8591. "lib/win8/_._",
  8592. "lib/wp80/_._",
  8593. "lib/wpa81/_._",
  8594. "lib/xamarinios10/_._",
  8595. "lib/xamarinmac20/_._",
  8596. "lib/xamarintvos10/_._",
  8597. "lib/xamarinwatchos10/_._",
  8598. "ref/MonoAndroid10/_._",
  8599. "ref/MonoTouch10/_._",
  8600. "ref/net45/_._",
  8601. "ref/net463/System.Text.RegularExpressions.dll",
  8602. "ref/netcore50/System.Text.RegularExpressions.dll",
  8603. "ref/netcore50/System.Text.RegularExpressions.xml",
  8604. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8605. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8606. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8607. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8608. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8609. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8610. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8611. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8612. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8613. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8614. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8615. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8616. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8617. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8618. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8619. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8620. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8621. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8622. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8623. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8624. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8625. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8626. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8627. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8628. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8629. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8630. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8631. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8632. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8633. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8634. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8635. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8636. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8637. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8638. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8639. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8640. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8641. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8642. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8643. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8644. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8645. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8646. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8647. "ref/portable-net45+win8+wp8+wpa81/_._",
  8648. "ref/win8/_._",
  8649. "ref/wp80/_._",
  8650. "ref/wpa81/_._",
  8651. "ref/xamarinios10/_._",
  8652. "ref/xamarinmac20/_._",
  8653. "ref/xamarintvos10/_._",
  8654. "ref/xamarinwatchos10/_._",
  8655. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8656. "system.text.regularexpressions.nuspec"
  8657. ]
  8658. },
  8659. "System.Threading/4.3.0": {
  8660. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8661. "type": "package",
  8662. "path": "system.threading/4.3.0",
  8663. "files": [
  8664. ".nupkg.metadata",
  8665. ".signature.p7s",
  8666. "ThirdPartyNotices.txt",
  8667. "dotnet_library_license.txt",
  8668. "lib/MonoAndroid10/_._",
  8669. "lib/MonoTouch10/_._",
  8670. "lib/net45/_._",
  8671. "lib/netcore50/System.Threading.dll",
  8672. "lib/netstandard1.3/System.Threading.dll",
  8673. "lib/portable-net45+win8+wp8+wpa81/_._",
  8674. "lib/win8/_._",
  8675. "lib/wp80/_._",
  8676. "lib/wpa81/_._",
  8677. "lib/xamarinios10/_._",
  8678. "lib/xamarinmac20/_._",
  8679. "lib/xamarintvos10/_._",
  8680. "lib/xamarinwatchos10/_._",
  8681. "ref/MonoAndroid10/_._",
  8682. "ref/MonoTouch10/_._",
  8683. "ref/net45/_._",
  8684. "ref/netcore50/System.Threading.dll",
  8685. "ref/netcore50/System.Threading.xml",
  8686. "ref/netcore50/de/System.Threading.xml",
  8687. "ref/netcore50/es/System.Threading.xml",
  8688. "ref/netcore50/fr/System.Threading.xml",
  8689. "ref/netcore50/it/System.Threading.xml",
  8690. "ref/netcore50/ja/System.Threading.xml",
  8691. "ref/netcore50/ko/System.Threading.xml",
  8692. "ref/netcore50/ru/System.Threading.xml",
  8693. "ref/netcore50/zh-hans/System.Threading.xml",
  8694. "ref/netcore50/zh-hant/System.Threading.xml",
  8695. "ref/netstandard1.0/System.Threading.dll",
  8696. "ref/netstandard1.0/System.Threading.xml",
  8697. "ref/netstandard1.0/de/System.Threading.xml",
  8698. "ref/netstandard1.0/es/System.Threading.xml",
  8699. "ref/netstandard1.0/fr/System.Threading.xml",
  8700. "ref/netstandard1.0/it/System.Threading.xml",
  8701. "ref/netstandard1.0/ja/System.Threading.xml",
  8702. "ref/netstandard1.0/ko/System.Threading.xml",
  8703. "ref/netstandard1.0/ru/System.Threading.xml",
  8704. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8705. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8706. "ref/netstandard1.3/System.Threading.dll",
  8707. "ref/netstandard1.3/System.Threading.xml",
  8708. "ref/netstandard1.3/de/System.Threading.xml",
  8709. "ref/netstandard1.3/es/System.Threading.xml",
  8710. "ref/netstandard1.3/fr/System.Threading.xml",
  8711. "ref/netstandard1.3/it/System.Threading.xml",
  8712. "ref/netstandard1.3/ja/System.Threading.xml",
  8713. "ref/netstandard1.3/ko/System.Threading.xml",
  8714. "ref/netstandard1.3/ru/System.Threading.xml",
  8715. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8716. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8717. "ref/portable-net45+win8+wp8+wpa81/_._",
  8718. "ref/win8/_._",
  8719. "ref/wp80/_._",
  8720. "ref/wpa81/_._",
  8721. "ref/xamarinios10/_._",
  8722. "ref/xamarinmac20/_._",
  8723. "ref/xamarintvos10/_._",
  8724. "ref/xamarinwatchos10/_._",
  8725. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8726. "system.threading.4.3.0.nupkg.sha512",
  8727. "system.threading.nuspec"
  8728. ]
  8729. },
  8730. "System.Threading.Channels/7.0.0": {
  8731. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8732. "type": "package",
  8733. "path": "system.threading.channels/7.0.0",
  8734. "files": [
  8735. ".nupkg.metadata",
  8736. ".signature.p7s",
  8737. "Icon.png",
  8738. "LICENSE.TXT",
  8739. "THIRD-PARTY-NOTICES.TXT",
  8740. "buildTransitive/net461/System.Threading.Channels.targets",
  8741. "buildTransitive/net462/_._",
  8742. "buildTransitive/net6.0/_._",
  8743. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8744. "lib/net462/System.Threading.Channels.dll",
  8745. "lib/net462/System.Threading.Channels.xml",
  8746. "lib/net6.0/System.Threading.Channels.dll",
  8747. "lib/net6.0/System.Threading.Channels.xml",
  8748. "lib/net7.0/System.Threading.Channels.dll",
  8749. "lib/net7.0/System.Threading.Channels.xml",
  8750. "lib/netstandard2.0/System.Threading.Channels.dll",
  8751. "lib/netstandard2.0/System.Threading.Channels.xml",
  8752. "lib/netstandard2.1/System.Threading.Channels.dll",
  8753. "lib/netstandard2.1/System.Threading.Channels.xml",
  8754. "system.threading.channels.7.0.0.nupkg.sha512",
  8755. "system.threading.channels.nuspec",
  8756. "useSharedDesignerContext.txt"
  8757. ]
  8758. },
  8759. "System.Threading.Tasks/4.3.0": {
  8760. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8761. "type": "package",
  8762. "path": "system.threading.tasks/4.3.0",
  8763. "files": [
  8764. ".nupkg.metadata",
  8765. ".signature.p7s",
  8766. "ThirdPartyNotices.txt",
  8767. "dotnet_library_license.txt",
  8768. "lib/MonoAndroid10/_._",
  8769. "lib/MonoTouch10/_._",
  8770. "lib/net45/_._",
  8771. "lib/portable-net45+win8+wp8+wpa81/_._",
  8772. "lib/win8/_._",
  8773. "lib/wp80/_._",
  8774. "lib/wpa81/_._",
  8775. "lib/xamarinios10/_._",
  8776. "lib/xamarinmac20/_._",
  8777. "lib/xamarintvos10/_._",
  8778. "lib/xamarinwatchos10/_._",
  8779. "ref/MonoAndroid10/_._",
  8780. "ref/MonoTouch10/_._",
  8781. "ref/net45/_._",
  8782. "ref/netcore50/System.Threading.Tasks.dll",
  8783. "ref/netcore50/System.Threading.Tasks.xml",
  8784. "ref/netcore50/de/System.Threading.Tasks.xml",
  8785. "ref/netcore50/es/System.Threading.Tasks.xml",
  8786. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8787. "ref/netcore50/it/System.Threading.Tasks.xml",
  8788. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8789. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8790. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8791. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8792. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8793. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8794. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8795. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8796. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8797. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8798. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8799. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8800. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8801. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8802. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8803. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8804. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8805. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8806. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8807. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8808. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8809. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8810. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8811. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8812. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8813. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8814. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8815. "ref/portable-net45+win8+wp8+wpa81/_._",
  8816. "ref/win8/_._",
  8817. "ref/wp80/_._",
  8818. "ref/wpa81/_._",
  8819. "ref/xamarinios10/_._",
  8820. "ref/xamarinmac20/_._",
  8821. "ref/xamarintvos10/_._",
  8822. "ref/xamarinwatchos10/_._",
  8823. "system.threading.tasks.4.3.0.nupkg.sha512",
  8824. "system.threading.tasks.nuspec"
  8825. ]
  8826. },
  8827. "System.Threading.Tasks.Extensions/4.3.0": {
  8828. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8829. "type": "package",
  8830. "path": "system.threading.tasks.extensions/4.3.0",
  8831. "files": [
  8832. ".nupkg.metadata",
  8833. ".signature.p7s",
  8834. "ThirdPartyNotices.txt",
  8835. "dotnet_library_license.txt",
  8836. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8837. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8838. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8839. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8840. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8841. "system.threading.tasks.extensions.nuspec"
  8842. ]
  8843. },
  8844. "System.Threading.Thread/4.3.0": {
  8845. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8846. "type": "package",
  8847. "path": "system.threading.thread/4.3.0",
  8848. "files": [
  8849. ".nupkg.metadata",
  8850. ".signature.p7s",
  8851. "ThirdPartyNotices.txt",
  8852. "dotnet_library_license.txt",
  8853. "lib/MonoAndroid10/_._",
  8854. "lib/MonoTouch10/_._",
  8855. "lib/net46/System.Threading.Thread.dll",
  8856. "lib/netcore50/_._",
  8857. "lib/netstandard1.3/System.Threading.Thread.dll",
  8858. "lib/xamarinios10/_._",
  8859. "lib/xamarinmac20/_._",
  8860. "lib/xamarintvos10/_._",
  8861. "lib/xamarinwatchos10/_._",
  8862. "ref/MonoAndroid10/_._",
  8863. "ref/MonoTouch10/_._",
  8864. "ref/net46/System.Threading.Thread.dll",
  8865. "ref/netstandard1.3/System.Threading.Thread.dll",
  8866. "ref/netstandard1.3/System.Threading.Thread.xml",
  8867. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8868. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8869. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8870. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8871. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8872. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8873. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8874. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8875. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8876. "ref/xamarinios10/_._",
  8877. "ref/xamarinmac20/_._",
  8878. "ref/xamarintvos10/_._",
  8879. "ref/xamarinwatchos10/_._",
  8880. "system.threading.thread.4.3.0.nupkg.sha512",
  8881. "system.threading.thread.nuspec"
  8882. ]
  8883. },
  8884. "System.Threading.ThreadPool/4.3.0": {
  8885. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8886. "type": "package",
  8887. "path": "system.threading.threadpool/4.3.0",
  8888. "files": [
  8889. ".nupkg.metadata",
  8890. ".signature.p7s",
  8891. "ThirdPartyNotices.txt",
  8892. "dotnet_library_license.txt",
  8893. "lib/MonoAndroid10/_._",
  8894. "lib/MonoTouch10/_._",
  8895. "lib/net46/System.Threading.ThreadPool.dll",
  8896. "lib/netcore50/_._",
  8897. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8898. "lib/xamarinios10/_._",
  8899. "lib/xamarinmac20/_._",
  8900. "lib/xamarintvos10/_._",
  8901. "lib/xamarinwatchos10/_._",
  8902. "ref/MonoAndroid10/_._",
  8903. "ref/MonoTouch10/_._",
  8904. "ref/net46/System.Threading.ThreadPool.dll",
  8905. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8906. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8907. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8908. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8909. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8910. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8911. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8912. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8913. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8914. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8915. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8916. "ref/xamarinios10/_._",
  8917. "ref/xamarinmac20/_._",
  8918. "ref/xamarintvos10/_._",
  8919. "ref/xamarinwatchos10/_._",
  8920. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8921. "system.threading.threadpool.nuspec"
  8922. ]
  8923. },
  8924. "System.Threading.Timer/4.3.0": {
  8925. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8926. "type": "package",
  8927. "path": "system.threading.timer/4.3.0",
  8928. "files": [
  8929. ".nupkg.metadata",
  8930. ".signature.p7s",
  8931. "ThirdPartyNotices.txt",
  8932. "dotnet_library_license.txt",
  8933. "lib/MonoAndroid10/_._",
  8934. "lib/MonoTouch10/_._",
  8935. "lib/net451/_._",
  8936. "lib/portable-net451+win81+wpa81/_._",
  8937. "lib/win81/_._",
  8938. "lib/wpa81/_._",
  8939. "lib/xamarinios10/_._",
  8940. "lib/xamarinmac20/_._",
  8941. "lib/xamarintvos10/_._",
  8942. "lib/xamarinwatchos10/_._",
  8943. "ref/MonoAndroid10/_._",
  8944. "ref/MonoTouch10/_._",
  8945. "ref/net451/_._",
  8946. "ref/netcore50/System.Threading.Timer.dll",
  8947. "ref/netcore50/System.Threading.Timer.xml",
  8948. "ref/netcore50/de/System.Threading.Timer.xml",
  8949. "ref/netcore50/es/System.Threading.Timer.xml",
  8950. "ref/netcore50/fr/System.Threading.Timer.xml",
  8951. "ref/netcore50/it/System.Threading.Timer.xml",
  8952. "ref/netcore50/ja/System.Threading.Timer.xml",
  8953. "ref/netcore50/ko/System.Threading.Timer.xml",
  8954. "ref/netcore50/ru/System.Threading.Timer.xml",
  8955. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8956. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8957. "ref/netstandard1.2/System.Threading.Timer.dll",
  8958. "ref/netstandard1.2/System.Threading.Timer.xml",
  8959. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8960. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8961. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8962. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8963. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8964. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8965. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8966. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8967. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8968. "ref/portable-net451+win81+wpa81/_._",
  8969. "ref/win81/_._",
  8970. "ref/wpa81/_._",
  8971. "ref/xamarinios10/_._",
  8972. "ref/xamarinmac20/_._",
  8973. "ref/xamarintvos10/_._",
  8974. "ref/xamarinwatchos10/_._",
  8975. "system.threading.timer.4.3.0.nupkg.sha512",
  8976. "system.threading.timer.nuspec"
  8977. ]
  8978. },
  8979. "System.Windows.Extensions/4.7.0": {
  8980. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8981. "type": "package",
  8982. "path": "system.windows.extensions/4.7.0",
  8983. "files": [
  8984. ".nupkg.metadata",
  8985. ".signature.p7s",
  8986. "LICENSE.TXT",
  8987. "THIRD-PARTY-NOTICES.TXT",
  8988. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8989. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8990. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8991. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8992. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8993. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8994. "system.windows.extensions.4.7.0.nupkg.sha512",
  8995. "system.windows.extensions.nuspec",
  8996. "useSharedDesignerContext.txt",
  8997. "version.txt"
  8998. ]
  8999. },
  9000. "System.Xml.ReaderWriter/4.3.0": {
  9001. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9002. "type": "package",
  9003. "path": "system.xml.readerwriter/4.3.0",
  9004. "files": [
  9005. ".nupkg.metadata",
  9006. ".signature.p7s",
  9007. "ThirdPartyNotices.txt",
  9008. "dotnet_library_license.txt",
  9009. "lib/MonoAndroid10/_._",
  9010. "lib/MonoTouch10/_._",
  9011. "lib/net45/_._",
  9012. "lib/net46/System.Xml.ReaderWriter.dll",
  9013. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9014. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9015. "lib/portable-net45+win8+wp8+wpa81/_._",
  9016. "lib/win8/_._",
  9017. "lib/wp80/_._",
  9018. "lib/wpa81/_._",
  9019. "lib/xamarinios10/_._",
  9020. "lib/xamarinmac20/_._",
  9021. "lib/xamarintvos10/_._",
  9022. "lib/xamarinwatchos10/_._",
  9023. "ref/MonoAndroid10/_._",
  9024. "ref/MonoTouch10/_._",
  9025. "ref/net45/_._",
  9026. "ref/net46/System.Xml.ReaderWriter.dll",
  9027. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9028. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9029. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9030. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9031. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9032. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9033. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9034. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9035. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9036. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9037. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9038. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9039. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9040. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9041. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9042. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9043. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9044. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9045. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9046. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9047. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9048. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9049. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9050. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9051. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9052. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9053. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9054. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9055. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9056. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9057. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9058. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9059. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9060. "ref/portable-net45+win8+wp8+wpa81/_._",
  9061. "ref/win8/_._",
  9062. "ref/wp80/_._",
  9063. "ref/wpa81/_._",
  9064. "ref/xamarinios10/_._",
  9065. "ref/xamarinmac20/_._",
  9066. "ref/xamarintvos10/_._",
  9067. "ref/xamarinwatchos10/_._",
  9068. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9069. "system.xml.readerwriter.nuspec"
  9070. ]
  9071. },
  9072. "System.Xml.XDocument/4.3.0": {
  9073. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9074. "type": "package",
  9075. "path": "system.xml.xdocument/4.3.0",
  9076. "files": [
  9077. ".nupkg.metadata",
  9078. ".signature.p7s",
  9079. "ThirdPartyNotices.txt",
  9080. "dotnet_library_license.txt",
  9081. "lib/MonoAndroid10/_._",
  9082. "lib/MonoTouch10/_._",
  9083. "lib/net45/_._",
  9084. "lib/netcore50/System.Xml.XDocument.dll",
  9085. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9086. "lib/portable-net45+win8+wp8+wpa81/_._",
  9087. "lib/win8/_._",
  9088. "lib/wp80/_._",
  9089. "lib/wpa81/_._",
  9090. "lib/xamarinios10/_._",
  9091. "lib/xamarinmac20/_._",
  9092. "lib/xamarintvos10/_._",
  9093. "lib/xamarinwatchos10/_._",
  9094. "ref/MonoAndroid10/_._",
  9095. "ref/MonoTouch10/_._",
  9096. "ref/net45/_._",
  9097. "ref/netcore50/System.Xml.XDocument.dll",
  9098. "ref/netcore50/System.Xml.XDocument.xml",
  9099. "ref/netcore50/de/System.Xml.XDocument.xml",
  9100. "ref/netcore50/es/System.Xml.XDocument.xml",
  9101. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9102. "ref/netcore50/it/System.Xml.XDocument.xml",
  9103. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9104. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9105. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9106. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9107. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9108. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9109. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9110. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9111. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9112. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9113. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9114. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9115. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9116. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9117. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9118. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9119. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9120. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9121. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9122. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9123. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9124. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9125. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9126. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9127. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9128. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9129. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9130. "ref/portable-net45+win8+wp8+wpa81/_._",
  9131. "ref/win8/_._",
  9132. "ref/wp80/_._",
  9133. "ref/wpa81/_._",
  9134. "ref/xamarinios10/_._",
  9135. "ref/xamarinmac20/_._",
  9136. "ref/xamarintvos10/_._",
  9137. "ref/xamarinwatchos10/_._",
  9138. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9139. "system.xml.xdocument.nuspec"
  9140. ]
  9141. },
  9142. "ToolGood.Words/3.1.0.2": {
  9143. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9144. "type": "package",
  9145. "path": "toolgood.words/3.1.0.2",
  9146. "files": [
  9147. ".nupkg.metadata",
  9148. ".signature.p7s",
  9149. "LICENSE",
  9150. "lib/net6.0/ToolGood.Words.dll",
  9151. "lib/net6.0/ToolGood.Words.xml",
  9152. "lib/net8.0/ToolGood.Words.dll",
  9153. "lib/net8.0/ToolGood.Words.xml",
  9154. "lib/net9.0/ToolGood.Words.dll",
  9155. "lib/net9.0/ToolGood.Words.xml",
  9156. "lib/netstandard2.1/ToolGood.Words.dll",
  9157. "lib/netstandard2.1/ToolGood.Words.xml",
  9158. "toolgood.words.3.1.0.2.nupkg.sha512",
  9159. "toolgood.words.nuspec"
  9160. ]
  9161. },
  9162. "ZXing.Net/0.16.9": {
  9163. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9164. "type": "package",
  9165. "path": "zxing.net/0.16.9",
  9166. "files": [
  9167. ".nupkg.metadata",
  9168. ".signature.p7s",
  9169. "lib/native/zxing.XML",
  9170. "lib/native/zxing.pri",
  9171. "lib/native/zxing.winmd",
  9172. "lib/net20-cf/zxing.ce2.0.dll",
  9173. "lib/net20-cf/zxing.ce2.0.xml",
  9174. "lib/net20/zxing.XML",
  9175. "lib/net20/zxing.dll",
  9176. "lib/net35-cf/zxing.ce3.5.dll",
  9177. "lib/net35-cf/zxing.ce3.5.xml",
  9178. "lib/net35/zxing.XML",
  9179. "lib/net35/zxing.dll",
  9180. "lib/net40/zxing.XML",
  9181. "lib/net40/zxing.dll",
  9182. "lib/net40/zxing.presentation.XML",
  9183. "lib/net40/zxing.presentation.dll",
  9184. "lib/net45/zxing.XML",
  9185. "lib/net45/zxing.dll",
  9186. "lib/net45/zxing.presentation.XML",
  9187. "lib/net45/zxing.presentation.dll",
  9188. "lib/net461/zxing.XML",
  9189. "lib/net461/zxing.dll",
  9190. "lib/net461/zxing.presentation.XML",
  9191. "lib/net461/zxing.presentation.dll",
  9192. "lib/net47/zxing.XML",
  9193. "lib/net47/zxing.dll",
  9194. "lib/net47/zxing.presentation.XML",
  9195. "lib/net47/zxing.presentation.dll",
  9196. "lib/net48/zxing.XML",
  9197. "lib/net48/zxing.dll",
  9198. "lib/net48/zxing.presentation.XML",
  9199. "lib/net48/zxing.presentation.dll",
  9200. "lib/net5.0/zxing.XML",
  9201. "lib/net5.0/zxing.dll",
  9202. "lib/net6.0/zxing.XML",
  9203. "lib/net6.0/zxing.dll",
  9204. "lib/net7.0/zxing.XML",
  9205. "lib/net7.0/zxing.dll",
  9206. "lib/netcoreapp3.0/zxing.dll",
  9207. "lib/netcoreapp3.0/zxing.xml",
  9208. "lib/netcoreapp3.1/zxing.dll",
  9209. "lib/netcoreapp3.1/zxing.xml",
  9210. "lib/netstandard1.0/zxing.dll",
  9211. "lib/netstandard1.0/zxing.xml",
  9212. "lib/netstandard1.1/zxing.dll",
  9213. "lib/netstandard1.1/zxing.xml",
  9214. "lib/netstandard1.3/zxing.dll",
  9215. "lib/netstandard1.3/zxing.xml",
  9216. "lib/netstandard2.0/zxing.dll",
  9217. "lib/netstandard2.0/zxing.xml",
  9218. "lib/netstandard2.1/zxing.dll",
  9219. "lib/netstandard2.1/zxing.xml",
  9220. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9221. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9222. "lib/sl3-wp/zxing.wp7.0.XML",
  9223. "lib/sl3-wp/zxing.wp7.0.dll",
  9224. "lib/sl4-wp71/zxing.wp7.1.XML",
  9225. "lib/sl4-wp71/zxing.wp7.1.dll",
  9226. "lib/sl4/zxing.sl4.XML",
  9227. "lib/sl4/zxing.sl4.dll",
  9228. "lib/sl5/zxing.sl5.XML",
  9229. "lib/sl5/zxing.sl5.dll",
  9230. "lib/uap10/zxing.dll",
  9231. "lib/uap10/zxing.pri",
  9232. "lib/uap10/zxing.xml",
  9233. "lib/windows8-managed/zxing.winrt.XML",
  9234. "lib/windows8-managed/zxing.winrt.dll",
  9235. "lib/windows8/zxing.XML",
  9236. "lib/windows8/zxing.pri",
  9237. "lib/windows8/zxing.winmd",
  9238. "lib/wp8/zxing.wp8.0.XML",
  9239. "lib/wp8/zxing.wp8.0.dll",
  9240. "logo.jpg",
  9241. "zxing.net.0.16.9.nupkg.sha512",
  9242. "zxing.net.nuspec"
  9243. ]
  9244. },
  9245. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9246. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9247. "type": "package",
  9248. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9249. "files": [
  9250. ".nupkg.metadata",
  9251. ".signature.p7s",
  9252. "lib/net472/ZXing.ImageSharp.V2.dll",
  9253. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9254. "lib/net472/ZXing.ImageSharp.V2.xml",
  9255. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9256. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9257. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9258. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9259. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9260. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9261. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9262. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9263. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9264. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9265. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9266. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9267. "logo.jpg",
  9268. "readme.md",
  9269. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9270. "zxing.net.bindings.imagesharp.v2.nuspec"
  9271. ]
  9272. },
  9273. "Ropin.Core.Common/1.0.0": {
  9274. "type": "project",
  9275. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9276. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9277. },
  9278. "Ropin.Inspection.Common/1.0.0": {
  9279. "type": "project",
  9280. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9281. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9282. },
  9283. "Ropin.Inspection.Model/1.0.0": {
  9284. "type": "project",
  9285. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9286. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9287. },
  9288. "Ropin.Inspection.Repository/1.0.0": {
  9289. "type": "project",
  9290. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9291. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9292. }
  9293. },
  9294. "projectFileDependencyGroups": {
  9295. "net5.0": [
  9296. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  9297. "FBoxClientDriver >= 1.2.0",
  9298. "FBoxClientDriver.Contract >= 1.2.0",
  9299. "InfluxData.Net >= 8.0.1",
  9300. "InitQ >= 1.0.0.14",
  9301. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9302. "Newtonsoft.Json >= 13.0.3",
  9303. "RabbitMQ.Client >= 6.8.1",
  9304. "Ropin.Core.Common >= 1.0.0",
  9305. "Ropin.Inspection.Common >= 1.0.0",
  9306. "Ropin.Inspection.Model >= 1.0.0",
  9307. "Ropin.Inspection.Repository >= 1.0.0",
  9308. "Swashbuckle.AspNetCore >= 5.6.3",
  9309. "log4net >= 2.0.17"
  9310. ]
  9311. },
  9312. "packageFolders": {
  9313. "D:\\.nuget\\packages": {},
  9314. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9315. },
  9316. "project": {
  9317. "version": "1.0.0",
  9318. "restore": {
  9319. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\Ropin.Environmentally.LedgeService1.csproj",
  9320. "projectName": "Ropin.Environmentally.LedgeService1",
  9321. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\Ropin.Environmentally.LedgeService1.csproj",
  9322. "packagesPath": "D:\\.nuget\\packages",
  9323. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.LedgeService1\\obj\\",
  9324. "projectStyle": "PackageReference",
  9325. "fallbackFolders": [
  9326. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9327. ],
  9328. "configFilePaths": [
  9329. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9330. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9331. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9332. ],
  9333. "originalTargetFrameworks": [
  9334. "net5.0"
  9335. ],
  9336. "sources": {
  9337. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9338. "C:\\Program Files\\dotnet\\library-packs": {},
  9339. "https://api.nuget.org/v3/index.json": {}
  9340. },
  9341. "frameworks": {
  9342. "net5.0": {
  9343. "targetAlias": "net5.0",
  9344. "projectReferences": {
  9345. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9346. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9347. },
  9348. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9349. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9350. },
  9351. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9352. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9353. },
  9354. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9355. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9356. }
  9357. }
  9358. }
  9359. },
  9360. "warningProperties": {
  9361. "warnAsError": [
  9362. "NU1605"
  9363. ]
  9364. }
  9365. },
  9366. "frameworks": {
  9367. "net5.0": {
  9368. "targetAlias": "net5.0",
  9369. "dependencies": {
  9370. "Autofac.Extensions.DependencyInjection": {
  9371. "target": "Package",
  9372. "version": "[7.1.0, )"
  9373. },
  9374. "FBoxClientDriver": {
  9375. "target": "Package",
  9376. "version": "[1.2.0, )"
  9377. },
  9378. "FBoxClientDriver.Contract": {
  9379. "target": "Package",
  9380. "version": "[1.2.0, )"
  9381. },
  9382. "InfluxData.Net": {
  9383. "target": "Package",
  9384. "version": "[8.0.1, )"
  9385. },
  9386. "InitQ": {
  9387. "target": "Package",
  9388. "version": "[1.0.0.14, )"
  9389. },
  9390. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9391. "target": "Package",
  9392. "version": "[1.17.2, )"
  9393. },
  9394. "Newtonsoft.Json": {
  9395. "target": "Package",
  9396. "version": "[13.0.3, )"
  9397. },
  9398. "RabbitMQ.Client": {
  9399. "target": "Package",
  9400. "version": "[6.8.1, )"
  9401. },
  9402. "Swashbuckle.AspNetCore": {
  9403. "target": "Package",
  9404. "version": "[5.6.3, )"
  9405. },
  9406. "log4net": {
  9407. "target": "Package",
  9408. "version": "[2.0.17, )"
  9409. }
  9410. },
  9411. "imports": [
  9412. "net461",
  9413. "net462",
  9414. "net47",
  9415. "net471",
  9416. "net472",
  9417. "net48",
  9418. "net481"
  9419. ],
  9420. "assetTargetFallback": true,
  9421. "warn": true,
  9422. "frameworkReferences": {
  9423. "Microsoft.AspNetCore.App": {
  9424. "privateAssets": "none"
  9425. },
  9426. "Microsoft.NETCore.App": {
  9427. "privateAssets": "all"
  9428. }
  9429. },
  9430. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9431. }
  9432. }
  9433. }
  9434. }