No Description

project.assets.json 294KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/10.1.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0",
  9. "System.Reflection.Emit": "4.7.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/AutoMapper.dll": {}
  13. },
  14. "runtime": {
  15. "lib/netstandard2.0/AutoMapper.dll": {}
  16. }
  17. },
  18. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "AutoMapper": "[10.1.1, 11.0.0)",
  22. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  23. "Microsoft.Extensions.Options": "3.0.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  30. }
  31. },
  32. "BouncyCastle.NetCore/1.8.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0",
  36. "System.Reflection": "4.3.0",
  37. "System.Reflection.TypeExtensions": "4.1.0"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  44. }
  45. },
  46. "EntityFramework/6.1.0": {
  47. "type": "package",
  48. "compile": {
  49. "lib/net45/EntityFramework.SqlServer.dll": {},
  50. "lib/net45/EntityFramework.dll": {}
  51. },
  52. "runtime": {
  53. "lib/net45/EntityFramework.SqlServer.dll": {},
  54. "lib/net45/EntityFramework.dll": {}
  55. }
  56. },
  57. "Google.Protobuf/3.11.4": {
  58. "type": "package",
  59. "dependencies": {
  60. "System.Memory": "4.5.2"
  61. },
  62. "compile": {
  63. "lib/netstandard2.0/Google.Protobuf.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netstandard2.0/Google.Protobuf.dll": {}
  67. }
  68. },
  69. "K4os.Compression.LZ4/1.1.11": {
  70. "type": "package",
  71. "dependencies": {
  72. "System.Memory": "4.5.3"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  79. }
  80. },
  81. "K4os.Compression.LZ4.Streams/1.1.11": {
  82. "type": "package",
  83. "dependencies": {
  84. "K4os.Compression.LZ4": "1.1.11",
  85. "K4os.Hash.xxHash": "1.0.6"
  86. },
  87. "compile": {
  88. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  92. }
  93. },
  94. "K4os.Hash.xxHash/1.0.6": {
  95. "type": "package",
  96. "dependencies": {
  97. "System.Memory": "4.5.3"
  98. },
  99. "compile": {
  100. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  104. }
  105. },
  106. "MediatR/7.0.0": {
  107. "type": "package",
  108. "compile": {
  109. "lib/netstandard2.0/MediatR.dll": {}
  110. },
  111. "runtime": {
  112. "lib/netstandard2.0/MediatR.dll": {}
  113. }
  114. },
  115. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  116. "type": "package",
  117. "dependencies": {
  118. "MediatR": "7.0.0",
  119. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
  120. },
  121. "compile": {
  122. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  123. },
  124. "runtime": {
  125. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  126. }
  127. },
  128. "Microsoft.AspNet.Identity.Core/2.2.3": {
  129. "type": "package",
  130. "compile": {
  131. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  132. },
  133. "runtime": {
  134. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  135. }
  136. },
  137. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  138. "type": "package",
  139. "dependencies": {
  140. "EntityFramework": "6.1.0",
  141. "Microsoft.AspNet.Identity.Core": "2.2.3"
  142. },
  143. "compile": {
  144. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  145. },
  146. "runtime": {
  147. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  148. }
  149. },
  150. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  151. "type": "package",
  152. "compile": {
  153. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  154. },
  155. "runtime": {
  156. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  157. }
  158. },
  159. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  160. "type": "package",
  161. "dependencies": {
  162. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.10"
  163. },
  164. "compile": {
  165. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  166. },
  167. "runtime": {
  168. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  169. }
  170. },
  171. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  172. "type": "package",
  173. "dependencies": {
  174. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  175. "System.Text.Encodings.Web": "4.5.0"
  176. },
  177. "compile": {
  178. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  182. }
  183. },
  184. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.Extensions.Primitives": "2.2.0"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  191. },
  192. "runtime": {
  193. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  194. }
  195. },
  196. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  197. "type": "package",
  198. "dependencies": {
  199. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  200. "Microsoft.Extensions.Identity.Stores": "5.0.10"
  201. },
  202. "compile": {
  203. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  204. },
  205. "runtime": {
  206. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  207. }
  208. },
  209. "Microsoft.CSharp/4.7.0": {
  210. "type": "package",
  211. "compile": {
  212. "ref/netcoreapp2.0/_._": {}
  213. },
  214. "runtime": {
  215. "lib/netcoreapp2.0/_._": {}
  216. }
  217. },
  218. "Microsoft.EntityFrameworkCore/5.0.13": {
  219. "type": "package",
  220. "dependencies": {
  221. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.13",
  222. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.13",
  223. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  224. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  225. "Microsoft.Extensions.Logging": "5.0.0",
  226. "System.Collections.Immutable": "5.0.0",
  227. "System.ComponentModel.Annotations": "5.0.0",
  228. "System.Diagnostics.DiagnosticSource": "5.0.1"
  229. },
  230. "compile": {
  231. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  232. },
  233. "runtime": {
  234. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  235. }
  236. },
  237. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  238. "type": "package",
  239. "compile": {
  240. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  241. },
  242. "runtime": {
  243. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  244. }
  245. },
  246. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {
  247. "type": "package",
  248. "compile": {
  249. "lib/netstandard2.0/_._": {}
  250. },
  251. "runtime": {
  252. "lib/netstandard2.0/_._": {}
  253. }
  254. },
  255. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  256. "type": "package",
  257. "dependencies": {
  258. "Microsoft.EntityFrameworkCore": "5.0.10",
  259. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  260. },
  261. "compile": {
  262. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  263. },
  264. "runtime": {
  265. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  266. }
  267. },
  268. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  269. "type": "package",
  270. "dependencies": {
  271. "Microsoft.Extensions.Primitives": "5.0.0"
  272. },
  273. "compile": {
  274. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  275. },
  276. "runtime": {
  277. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  278. }
  279. },
  280. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  281. "type": "package",
  282. "dependencies": {
  283. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  284. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  285. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  286. "Microsoft.Extensions.Options": "5.0.0",
  287. "Microsoft.Extensions.Primitives": "5.0.0"
  288. },
  289. "compile": {
  290. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  291. },
  292. "runtime": {
  293. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  294. }
  295. },
  296. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  297. "type": "package",
  298. "dependencies": {
  299. "Microsoft.Extensions.Primitives": "6.0.0"
  300. },
  301. "compile": {
  302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  303. },
  304. "runtime": {
  305. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  306. }
  307. },
  308. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  309. "type": "package",
  310. "dependencies": {
  311. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  312. },
  313. "compile": {
  314. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  315. },
  316. "runtime": {
  317. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  318. }
  319. },
  320. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  321. "type": "package",
  322. "compile": {
  323. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  324. },
  325. "runtime": {
  326. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  327. },
  328. "build": {
  329. "buildTransitive/netcoreapp3.1/_._": {}
  330. }
  331. },
  332. "Microsoft.Extensions.Identity.Core/5.0.10": {
  333. "type": "package",
  334. "dependencies": {
  335. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.10",
  336. "Microsoft.Extensions.Logging": "5.0.0",
  337. "Microsoft.Extensions.Options": "5.0.0",
  338. "System.ComponentModel.Annotations": "5.0.0"
  339. },
  340. "compile": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  345. }
  346. },
  347. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  348. "type": "package",
  349. "dependencies": {
  350. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  351. "Microsoft.Extensions.Identity.Core": "5.0.10",
  352. "Microsoft.Extensions.Logging": "5.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  356. },
  357. "runtime": {
  358. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  359. }
  360. },
  361. "Microsoft.Extensions.Logging/5.0.0": {
  362. "type": "package",
  363. "dependencies": {
  364. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  365. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  366. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  367. "Microsoft.Extensions.Options": "5.0.0",
  368. "System.Diagnostics.DiagnosticSource": "5.0.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  372. },
  373. "runtime": {
  374. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  375. }
  376. },
  377. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  378. "type": "package",
  379. "compile": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  384. }
  385. },
  386. "Microsoft.Extensions.Options/5.0.0": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  390. "Microsoft.Extensions.Primitives": "5.0.0"
  391. },
  392. "compile": {
  393. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  394. },
  395. "runtime": {
  396. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  397. }
  398. },
  399. "Microsoft.Extensions.Primitives/6.0.0": {
  400. "type": "package",
  401. "dependencies": {
  402. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  403. },
  404. "compile": {
  405. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  406. },
  407. "runtime": {
  408. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  409. },
  410. "build": {
  411. "buildTransitive/netcoreapp3.1/_._": {}
  412. }
  413. },
  414. "Microsoft.NETCore.Platforms/3.1.0": {
  415. "type": "package",
  416. "compile": {
  417. "lib/netstandard1.0/_._": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard1.0/_._": {}
  421. }
  422. },
  423. "Microsoft.NETCore.Targets/1.1.0": {
  424. "type": "package",
  425. "compile": {
  426. "lib/netstandard1.0/_._": {}
  427. },
  428. "runtime": {
  429. "lib/netstandard1.0/_._": {}
  430. }
  431. },
  432. "Microsoft.Win32.Primitives/4.0.1": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.NETCore.Platforms": "1.0.1",
  436. "Microsoft.NETCore.Targets": "1.0.1",
  437. "System.Runtime": "4.1.0"
  438. },
  439. "compile": {
  440. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  441. }
  442. },
  443. "Microsoft.Win32.Registry/4.7.0": {
  444. "type": "package",
  445. "dependencies": {
  446. "System.Security.AccessControl": "4.7.0",
  447. "System.Security.Principal.Windows": "4.7.0"
  448. },
  449. "compile": {
  450. "ref/netstandard2.0/_._": {}
  451. },
  452. "runtime": {
  453. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  454. },
  455. "runtimeTargets": {
  456. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  457. "assetType": "runtime",
  458. "rid": "unix"
  459. },
  460. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  461. "assetType": "runtime",
  462. "rid": "win"
  463. }
  464. }
  465. },
  466. "Microsoft.Win32.SystemEvents/4.7.0": {
  467. "type": "package",
  468. "dependencies": {
  469. "Microsoft.NETCore.Platforms": "3.1.0"
  470. },
  471. "compile": {
  472. "ref/netstandard2.0/_._": {}
  473. },
  474. "runtime": {
  475. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  476. },
  477. "runtimeTargets": {
  478. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  479. "assetType": "runtime",
  480. "rid": "win"
  481. }
  482. }
  483. },
  484. "MySql.Data/8.0.22": {
  485. "type": "package",
  486. "dependencies": {
  487. "BouncyCastle.NetCore": "1.8.3",
  488. "Google.Protobuf": "3.11.4",
  489. "K4os.Compression.LZ4": "1.1.11",
  490. "K4os.Compression.LZ4.Streams": "1.1.11",
  491. "K4os.Hash.xxHash": "1.0.6",
  492. "SSH.NET": "2016.1.0",
  493. "System.Buffers": "4.5.1",
  494. "System.Configuration.ConfigurationManager": "4.4.1",
  495. "System.Security.Permissions": "4.7.0",
  496. "System.Text.Encoding.CodePages": "4.4.0"
  497. },
  498. "compile": {
  499. "lib/netstandard2.1/MySql.Data.dll": {},
  500. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  501. "lib/netstandard2.1/Zstandard.Net.dll": {}
  502. },
  503. "runtime": {
  504. "lib/netstandard2.1/MySql.Data.dll": {},
  505. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  506. "lib/netstandard2.1/Zstandard.Net.dll": {}
  507. }
  508. },
  509. "MySql.Data.EntityFrameworkCore/8.0.22": {
  510. "type": "package",
  511. "dependencies": {
  512. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  513. "MySql.Data": "8.0.22"
  514. },
  515. "compile": {
  516. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  517. },
  518. "runtime": {
  519. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  520. }
  521. },
  522. "MySqlConnector/1.1.0": {
  523. "type": "package",
  524. "compile": {
  525. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  526. },
  527. "runtime": {
  528. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  529. }
  530. },
  531. "NETStandard.Library/1.6.0": {
  532. "type": "package",
  533. "dependencies": {
  534. "Microsoft.NETCore.Platforms": "1.0.1",
  535. "Microsoft.Win32.Primitives": "4.0.1",
  536. "System.AppContext": "4.1.0",
  537. "System.Collections": "4.0.11",
  538. "System.Collections.Concurrent": "4.0.12",
  539. "System.Console": "4.0.0",
  540. "System.Diagnostics.Debug": "4.0.11",
  541. "System.Diagnostics.Tools": "4.0.1",
  542. "System.Diagnostics.Tracing": "4.1.0",
  543. "System.Globalization": "4.0.11",
  544. "System.Globalization.Calendars": "4.0.1",
  545. "System.IO": "4.1.0",
  546. "System.IO.Compression": "4.1.0",
  547. "System.IO.Compression.ZipFile": "4.0.1",
  548. "System.IO.FileSystem": "4.0.1",
  549. "System.IO.FileSystem.Primitives": "4.0.1",
  550. "System.Linq": "4.1.0",
  551. "System.Linq.Expressions": "4.1.0",
  552. "System.Net.Http": "4.1.0",
  553. "System.Net.Primitives": "4.0.11",
  554. "System.Net.Sockets": "4.1.0",
  555. "System.ObjectModel": "4.0.12",
  556. "System.Reflection": "4.1.0",
  557. "System.Reflection.Extensions": "4.0.1",
  558. "System.Reflection.Primitives": "4.0.1",
  559. "System.Resources.ResourceManager": "4.0.1",
  560. "System.Runtime": "4.1.0",
  561. "System.Runtime.Extensions": "4.1.0",
  562. "System.Runtime.Handles": "4.0.1",
  563. "System.Runtime.InteropServices": "4.1.0",
  564. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  565. "System.Runtime.Numerics": "4.0.1",
  566. "System.Security.Cryptography.Algorithms": "4.2.0",
  567. "System.Security.Cryptography.Encoding": "4.0.0",
  568. "System.Security.Cryptography.Primitives": "4.0.0",
  569. "System.Security.Cryptography.X509Certificates": "4.1.0",
  570. "System.Text.Encoding": "4.0.11",
  571. "System.Text.Encoding.Extensions": "4.0.11",
  572. "System.Text.RegularExpressions": "4.1.0",
  573. "System.Threading": "4.0.11",
  574. "System.Threading.Tasks": "4.0.11",
  575. "System.Threading.Timer": "4.0.1",
  576. "System.Xml.ReaderWriter": "4.0.11",
  577. "System.Xml.XDocument": "4.0.11"
  578. }
  579. },
  580. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  581. "type": "package",
  582. "dependencies": {
  583. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  584. "MySqlConnector": "1.1.0"
  585. },
  586. "compile": {
  587. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  588. },
  589. "runtime": {
  590. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  591. }
  592. },
  593. "runtime.native.System/4.0.0": {
  594. "type": "package",
  595. "dependencies": {
  596. "Microsoft.NETCore.Platforms": "1.0.1",
  597. "Microsoft.NETCore.Targets": "1.0.1"
  598. },
  599. "compile": {
  600. "lib/netstandard1.0/_._": {}
  601. },
  602. "runtime": {
  603. "lib/netstandard1.0/_._": {}
  604. }
  605. },
  606. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  607. "type": "package",
  608. "dependencies": {
  609. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  610. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  611. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  612. }
  613. },
  614. "runtime.native.System.IO.Compression/4.1.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.NETCore.Platforms": "1.0.1",
  618. "Microsoft.NETCore.Targets": "1.0.1"
  619. },
  620. "compile": {
  621. "lib/netstandard1.0/_._": {}
  622. },
  623. "runtime": {
  624. "lib/netstandard1.0/_._": {}
  625. }
  626. },
  627. "runtime.native.System.Net.Http/4.0.1": {
  628. "type": "package",
  629. "dependencies": {
  630. "Microsoft.NETCore.Platforms": "1.0.1",
  631. "Microsoft.NETCore.Targets": "1.0.1"
  632. },
  633. "compile": {
  634. "lib/netstandard1.0/_._": {}
  635. },
  636. "runtime": {
  637. "lib/netstandard1.0/_._": {}
  638. }
  639. },
  640. "runtime.native.System.Security.Cryptography/4.0.0": {
  641. "type": "package",
  642. "dependencies": {
  643. "Microsoft.NETCore.Platforms": "1.0.1",
  644. "Microsoft.NETCore.Targets": "1.0.1"
  645. },
  646. "compile": {
  647. "lib/netstandard1.0/_._": {}
  648. },
  649. "runtime": {
  650. "lib/netstandard1.0/_._": {}
  651. }
  652. },
  653. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  654. "type": "package",
  655. "runtimeTargets": {
  656. "runtimes/win-arm64/native/sni.dll": {
  657. "assetType": "native",
  658. "rid": "win-arm64"
  659. }
  660. }
  661. },
  662. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  663. "type": "package",
  664. "runtimeTargets": {
  665. "runtimes/win-x64/native/sni.dll": {
  666. "assetType": "native",
  667. "rid": "win-x64"
  668. }
  669. }
  670. },
  671. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  672. "type": "package",
  673. "runtimeTargets": {
  674. "runtimes/win-x86/native/sni.dll": {
  675. "assetType": "native",
  676. "rid": "win-x86"
  677. }
  678. }
  679. },
  680. "SSH.NET/2016.1.0": {
  681. "type": "package",
  682. "dependencies": {
  683. "Microsoft.CSharp": "4.0.1",
  684. "SshNet.Security.Cryptography": "[1.2.0]",
  685. "System.Diagnostics.Debug": "4.0.11",
  686. "System.Diagnostics.Tools": "4.0.1",
  687. "System.Diagnostics.TraceSource": "4.0.0",
  688. "System.Globalization": "4.0.11",
  689. "System.IO": "4.1.0",
  690. "System.IO.FileSystem": "4.0.1",
  691. "System.IO.FileSystem.Primitives": "4.0.1",
  692. "System.Linq": "4.1.0",
  693. "System.Net.NameResolution": "4.0.0",
  694. "System.Net.Sockets": "4.1.0",
  695. "System.Reflection.Extensions": "4.0.1",
  696. "System.Runtime.Extensions": "4.1.0",
  697. "System.Security.Cryptography.Algorithms": "4.2.0",
  698. "System.Text.RegularExpressions": "4.1.0",
  699. "System.Threading": "4.0.11",
  700. "System.Threading.Thread": "4.0.0",
  701. "System.Threading.ThreadPool": "4.0.10",
  702. "System.Threading.Timer": "4.0.1",
  703. "System.Xml.XPath.XmlDocument": "4.0.1",
  704. "System.Xml.XmlDocument": "4.0.1"
  705. },
  706. "compile": {
  707. "lib/netstandard1.3/Renci.SshNet.dll": {}
  708. },
  709. "runtime": {
  710. "lib/netstandard1.3/Renci.SshNet.dll": {}
  711. }
  712. },
  713. "SshNet.Security.Cryptography/1.2.0": {
  714. "type": "package",
  715. "dependencies": {
  716. "System.IO": "4.1.0",
  717. "System.Security.Cryptography.Primitives": "4.0.0"
  718. },
  719. "compile": {
  720. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  721. },
  722. "runtime": {
  723. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  724. }
  725. },
  726. "System.AppContext/4.1.0": {
  727. "type": "package",
  728. "dependencies": {
  729. "System.Runtime": "4.1.0"
  730. },
  731. "compile": {
  732. "ref/netstandard1.6/System.AppContext.dll": {}
  733. },
  734. "runtime": {
  735. "lib/netstandard1.6/System.AppContext.dll": {}
  736. }
  737. },
  738. "System.Buffers/4.5.1": {
  739. "type": "package",
  740. "compile": {
  741. "ref/netcoreapp2.0/_._": {}
  742. },
  743. "runtime": {
  744. "lib/netcoreapp2.0/_._": {}
  745. }
  746. },
  747. "System.Collections/4.0.11": {
  748. "type": "package",
  749. "dependencies": {
  750. "Microsoft.NETCore.Platforms": "1.0.1",
  751. "Microsoft.NETCore.Targets": "1.0.1",
  752. "System.Runtime": "4.1.0"
  753. },
  754. "compile": {
  755. "ref/netstandard1.3/System.Collections.dll": {}
  756. }
  757. },
  758. "System.Collections.Concurrent/4.0.12": {
  759. "type": "package",
  760. "dependencies": {
  761. "System.Collections": "4.0.11",
  762. "System.Diagnostics.Debug": "4.0.11",
  763. "System.Diagnostics.Tracing": "4.1.0",
  764. "System.Globalization": "4.0.11",
  765. "System.Reflection": "4.1.0",
  766. "System.Resources.ResourceManager": "4.0.1",
  767. "System.Runtime": "4.1.0",
  768. "System.Runtime.Extensions": "4.1.0",
  769. "System.Threading": "4.0.11",
  770. "System.Threading.Tasks": "4.0.11"
  771. },
  772. "compile": {
  773. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  774. },
  775. "runtime": {
  776. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  777. }
  778. },
  779. "System.Collections.Immutable/5.0.0": {
  780. "type": "package",
  781. "compile": {
  782. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  783. },
  784. "runtime": {
  785. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  786. }
  787. },
  788. "System.ComponentModel.Annotations/5.0.0": {
  789. "type": "package",
  790. "compile": {
  791. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  792. },
  793. "runtime": {
  794. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  795. }
  796. },
  797. "System.Configuration.ConfigurationManager/4.4.1": {
  798. "type": "package",
  799. "dependencies": {
  800. "System.Security.Cryptography.ProtectedData": "4.4.0"
  801. },
  802. "compile": {
  803. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  804. },
  805. "runtime": {
  806. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  807. }
  808. },
  809. "System.Console/4.0.0": {
  810. "type": "package",
  811. "dependencies": {
  812. "Microsoft.NETCore.Platforms": "1.0.1",
  813. "Microsoft.NETCore.Targets": "1.0.1",
  814. "System.IO": "4.1.0",
  815. "System.Runtime": "4.1.0",
  816. "System.Text.Encoding": "4.0.11"
  817. },
  818. "compile": {
  819. "ref/netstandard1.3/System.Console.dll": {}
  820. }
  821. },
  822. "System.Data.SqlClient/4.8.3": {
  823. "type": "package",
  824. "dependencies": {
  825. "Microsoft.Win32.Registry": "4.7.0",
  826. "System.Security.Principal.Windows": "4.7.0",
  827. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  828. },
  829. "compile": {
  830. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  831. },
  832. "runtime": {
  833. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
  834. },
  835. "runtimeTargets": {
  836. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  837. "assetType": "runtime",
  838. "rid": "unix"
  839. },
  840. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  841. "assetType": "runtime",
  842. "rid": "win"
  843. }
  844. }
  845. },
  846. "System.Diagnostics.Debug/4.0.11": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.NETCore.Platforms": "1.0.1",
  850. "Microsoft.NETCore.Targets": "1.0.1",
  851. "System.Runtime": "4.1.0"
  852. },
  853. "compile": {
  854. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  855. }
  856. },
  857. "System.Diagnostics.DiagnosticSource/5.0.1": {
  858. "type": "package",
  859. "compile": {
  860. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  861. },
  862. "runtime": {
  863. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  864. }
  865. },
  866. "System.Diagnostics.Tools/4.0.1": {
  867. "type": "package",
  868. "dependencies": {
  869. "Microsoft.NETCore.Platforms": "1.0.1",
  870. "Microsoft.NETCore.Targets": "1.0.1",
  871. "System.Runtime": "4.1.0"
  872. },
  873. "compile": {
  874. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  875. }
  876. },
  877. "System.Diagnostics.TraceSource/4.0.0": {
  878. "type": "package",
  879. "dependencies": {
  880. "Microsoft.NETCore.Platforms": "1.0.1",
  881. "System.Collections": "4.0.11",
  882. "System.Diagnostics.Debug": "4.0.11",
  883. "System.Globalization": "4.0.11",
  884. "System.Resources.ResourceManager": "4.0.1",
  885. "System.Runtime": "4.1.0",
  886. "System.Runtime.Extensions": "4.1.0",
  887. "System.Threading": "4.0.11",
  888. "runtime.native.System": "4.0.0"
  889. },
  890. "compile": {
  891. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  892. },
  893. "runtimeTargets": {
  894. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  895. "assetType": "runtime",
  896. "rid": "unix"
  897. },
  898. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  899. "assetType": "runtime",
  900. "rid": "win"
  901. }
  902. }
  903. },
  904. "System.Diagnostics.Tracing/4.1.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.NETCore.Platforms": "1.0.1",
  908. "Microsoft.NETCore.Targets": "1.0.1",
  909. "System.Runtime": "4.1.0"
  910. },
  911. "compile": {
  912. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  913. }
  914. },
  915. "System.Drawing.Common/4.7.0": {
  916. "type": "package",
  917. "dependencies": {
  918. "Microsoft.NETCore.Platforms": "3.1.0",
  919. "Microsoft.Win32.SystemEvents": "4.7.0"
  920. },
  921. "compile": {
  922. "ref/netcoreapp3.0/_._": {}
  923. },
  924. "runtime": {
  925. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  926. },
  927. "runtimeTargets": {
  928. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  929. "assetType": "runtime",
  930. "rid": "unix"
  931. },
  932. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  933. "assetType": "runtime",
  934. "rid": "win"
  935. }
  936. }
  937. },
  938. "System.Globalization/4.0.11": {
  939. "type": "package",
  940. "dependencies": {
  941. "Microsoft.NETCore.Platforms": "1.0.1",
  942. "Microsoft.NETCore.Targets": "1.0.1",
  943. "System.Runtime": "4.1.0"
  944. },
  945. "compile": {
  946. "ref/netstandard1.3/System.Globalization.dll": {}
  947. }
  948. },
  949. "System.Globalization.Calendars/4.0.1": {
  950. "type": "package",
  951. "dependencies": {
  952. "Microsoft.NETCore.Platforms": "1.0.1",
  953. "Microsoft.NETCore.Targets": "1.0.1",
  954. "System.Globalization": "4.0.11",
  955. "System.Runtime": "4.1.0"
  956. },
  957. "compile": {
  958. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  959. }
  960. },
  961. "System.Globalization.Extensions/4.0.1": {
  962. "type": "package",
  963. "dependencies": {
  964. "Microsoft.NETCore.Platforms": "1.0.1",
  965. "System.Globalization": "4.0.11",
  966. "System.Resources.ResourceManager": "4.0.1",
  967. "System.Runtime": "4.1.0",
  968. "System.Runtime.Extensions": "4.1.0",
  969. "System.Runtime.InteropServices": "4.1.0"
  970. },
  971. "compile": {
  972. "ref/netstandard1.3/_._": {}
  973. },
  974. "runtimeTargets": {
  975. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  976. "assetType": "runtime",
  977. "rid": "unix"
  978. },
  979. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  980. "assetType": "runtime",
  981. "rid": "win"
  982. }
  983. }
  984. },
  985. "System.IO/4.3.0": {
  986. "type": "package",
  987. "dependencies": {
  988. "Microsoft.NETCore.Platforms": "1.1.0",
  989. "Microsoft.NETCore.Targets": "1.1.0",
  990. "System.Runtime": "4.3.0",
  991. "System.Text.Encoding": "4.3.0",
  992. "System.Threading.Tasks": "4.3.0"
  993. },
  994. "compile": {
  995. "ref/netstandard1.5/System.IO.dll": {}
  996. }
  997. },
  998. "System.IO.Compression/4.1.0": {
  999. "type": "package",
  1000. "dependencies": {
  1001. "Microsoft.NETCore.Platforms": "1.0.1",
  1002. "System.Collections": "4.0.11",
  1003. "System.Diagnostics.Debug": "4.0.11",
  1004. "System.IO": "4.1.0",
  1005. "System.Resources.ResourceManager": "4.0.1",
  1006. "System.Runtime": "4.1.0",
  1007. "System.Runtime.Extensions": "4.1.0",
  1008. "System.Runtime.Handles": "4.0.1",
  1009. "System.Runtime.InteropServices": "4.1.0",
  1010. "System.Text.Encoding": "4.0.11",
  1011. "System.Threading": "4.0.11",
  1012. "System.Threading.Tasks": "4.0.11",
  1013. "runtime.native.System": "4.0.0",
  1014. "runtime.native.System.IO.Compression": "4.1.0"
  1015. },
  1016. "compile": {
  1017. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1018. },
  1019. "runtimeTargets": {
  1020. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1021. "assetType": "runtime",
  1022. "rid": "unix"
  1023. },
  1024. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1025. "assetType": "runtime",
  1026. "rid": "win"
  1027. }
  1028. }
  1029. },
  1030. "System.IO.Compression.ZipFile/4.0.1": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "System.Buffers": "4.0.0",
  1034. "System.IO": "4.1.0",
  1035. "System.IO.Compression": "4.1.0",
  1036. "System.IO.FileSystem": "4.0.1",
  1037. "System.IO.FileSystem.Primitives": "4.0.1",
  1038. "System.Resources.ResourceManager": "4.0.1",
  1039. "System.Runtime": "4.1.0",
  1040. "System.Runtime.Extensions": "4.1.0",
  1041. "System.Text.Encoding": "4.0.11"
  1042. },
  1043. "compile": {
  1044. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1045. },
  1046. "runtime": {
  1047. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1048. }
  1049. },
  1050. "System.IO.FileSystem/4.0.1": {
  1051. "type": "package",
  1052. "dependencies": {
  1053. "Microsoft.NETCore.Platforms": "1.0.1",
  1054. "Microsoft.NETCore.Targets": "1.0.1",
  1055. "System.IO": "4.1.0",
  1056. "System.IO.FileSystem.Primitives": "4.0.1",
  1057. "System.Runtime": "4.1.0",
  1058. "System.Runtime.Handles": "4.0.1",
  1059. "System.Text.Encoding": "4.0.11",
  1060. "System.Threading.Tasks": "4.0.11"
  1061. },
  1062. "compile": {
  1063. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1064. }
  1065. },
  1066. "System.IO.FileSystem.Primitives/4.0.1": {
  1067. "type": "package",
  1068. "dependencies": {
  1069. "System.Runtime": "4.1.0"
  1070. },
  1071. "compile": {
  1072. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1073. },
  1074. "runtime": {
  1075. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1076. }
  1077. },
  1078. "System.Linq/4.1.0": {
  1079. "type": "package",
  1080. "dependencies": {
  1081. "System.Collections": "4.0.11",
  1082. "System.Diagnostics.Debug": "4.0.11",
  1083. "System.Resources.ResourceManager": "4.0.1",
  1084. "System.Runtime": "4.1.0",
  1085. "System.Runtime.Extensions": "4.1.0"
  1086. },
  1087. "compile": {
  1088. "ref/netstandard1.6/System.Linq.dll": {}
  1089. },
  1090. "runtime": {
  1091. "lib/netstandard1.6/System.Linq.dll": {}
  1092. }
  1093. },
  1094. "System.Linq.Expressions/4.1.0": {
  1095. "type": "package",
  1096. "dependencies": {
  1097. "System.Collections": "4.0.11",
  1098. "System.Diagnostics.Debug": "4.0.11",
  1099. "System.Globalization": "4.0.11",
  1100. "System.IO": "4.1.0",
  1101. "System.Linq": "4.1.0",
  1102. "System.ObjectModel": "4.0.12",
  1103. "System.Reflection": "4.1.0",
  1104. "System.Reflection.Emit": "4.0.1",
  1105. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1106. "System.Reflection.Emit.Lightweight": "4.0.1",
  1107. "System.Reflection.Extensions": "4.0.1",
  1108. "System.Reflection.Primitives": "4.0.1",
  1109. "System.Reflection.TypeExtensions": "4.1.0",
  1110. "System.Resources.ResourceManager": "4.0.1",
  1111. "System.Runtime": "4.1.0",
  1112. "System.Runtime.Extensions": "4.1.0",
  1113. "System.Threading": "4.0.11"
  1114. },
  1115. "compile": {
  1116. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1117. },
  1118. "runtime": {
  1119. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1120. }
  1121. },
  1122. "System.Memory/4.5.3": {
  1123. "type": "package",
  1124. "compile": {
  1125. "ref/netcoreapp2.1/_._": {}
  1126. },
  1127. "runtime": {
  1128. "lib/netcoreapp2.1/_._": {}
  1129. }
  1130. },
  1131. "System.Net.Http/4.1.0": {
  1132. "type": "package",
  1133. "dependencies": {
  1134. "Microsoft.NETCore.Platforms": "1.0.1",
  1135. "System.Collections": "4.0.11",
  1136. "System.Diagnostics.Debug": "4.0.11",
  1137. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1138. "System.Diagnostics.Tracing": "4.1.0",
  1139. "System.Globalization": "4.0.11",
  1140. "System.Globalization.Extensions": "4.0.1",
  1141. "System.IO": "4.1.0",
  1142. "System.IO.FileSystem": "4.0.1",
  1143. "System.Net.Primitives": "4.0.11",
  1144. "System.Resources.ResourceManager": "4.0.1",
  1145. "System.Runtime": "4.1.0",
  1146. "System.Runtime.Extensions": "4.1.0",
  1147. "System.Runtime.Handles": "4.0.1",
  1148. "System.Runtime.InteropServices": "4.1.0",
  1149. "System.Security.Cryptography.Algorithms": "4.2.0",
  1150. "System.Security.Cryptography.Encoding": "4.0.0",
  1151. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1152. "System.Security.Cryptography.Primitives": "4.0.0",
  1153. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1154. "System.Text.Encoding": "4.0.11",
  1155. "System.Threading": "4.0.11",
  1156. "System.Threading.Tasks": "4.0.11",
  1157. "runtime.native.System": "4.0.0",
  1158. "runtime.native.System.Net.Http": "4.0.1",
  1159. "runtime.native.System.Security.Cryptography": "4.0.0"
  1160. },
  1161. "compile": {
  1162. "ref/netstandard1.3/System.Net.Http.dll": {}
  1163. },
  1164. "runtimeTargets": {
  1165. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1166. "assetType": "runtime",
  1167. "rid": "unix"
  1168. },
  1169. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1170. "assetType": "runtime",
  1171. "rid": "win"
  1172. }
  1173. }
  1174. },
  1175. "System.Net.NameResolution/4.0.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.NETCore.Platforms": "1.0.1",
  1179. "System.Collections": "4.0.11",
  1180. "System.Diagnostics.Tracing": "4.1.0",
  1181. "System.Globalization": "4.0.11",
  1182. "System.Net.Primitives": "4.0.11",
  1183. "System.Resources.ResourceManager": "4.0.1",
  1184. "System.Runtime": "4.1.0",
  1185. "System.Runtime.Extensions": "4.1.0",
  1186. "System.Runtime.Handles": "4.0.1",
  1187. "System.Runtime.InteropServices": "4.1.0",
  1188. "System.Security.Principal.Windows": "4.0.0",
  1189. "System.Threading": "4.0.11",
  1190. "System.Threading.Tasks": "4.0.11",
  1191. "runtime.native.System": "4.0.0"
  1192. },
  1193. "compile": {
  1194. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1195. },
  1196. "runtimeTargets": {
  1197. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1198. "assetType": "runtime",
  1199. "rid": "unix"
  1200. },
  1201. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1202. "assetType": "runtime",
  1203. "rid": "win"
  1204. }
  1205. }
  1206. },
  1207. "System.Net.Primitives/4.0.11": {
  1208. "type": "package",
  1209. "dependencies": {
  1210. "Microsoft.NETCore.Platforms": "1.0.1",
  1211. "Microsoft.NETCore.Targets": "1.0.1",
  1212. "System.Runtime": "4.1.0",
  1213. "System.Runtime.Handles": "4.0.1"
  1214. },
  1215. "compile": {
  1216. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1217. }
  1218. },
  1219. "System.Net.Sockets/4.1.0": {
  1220. "type": "package",
  1221. "dependencies": {
  1222. "Microsoft.NETCore.Platforms": "1.0.1",
  1223. "Microsoft.NETCore.Targets": "1.0.1",
  1224. "System.IO": "4.1.0",
  1225. "System.Net.Primitives": "4.0.11",
  1226. "System.Runtime": "4.1.0",
  1227. "System.Threading.Tasks": "4.0.11"
  1228. },
  1229. "compile": {
  1230. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1231. }
  1232. },
  1233. "System.ObjectModel/4.0.12": {
  1234. "type": "package",
  1235. "dependencies": {
  1236. "System.Collections": "4.0.11",
  1237. "System.Diagnostics.Debug": "4.0.11",
  1238. "System.Resources.ResourceManager": "4.0.1",
  1239. "System.Runtime": "4.1.0",
  1240. "System.Threading": "4.0.11"
  1241. },
  1242. "compile": {
  1243. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1244. },
  1245. "runtime": {
  1246. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1247. }
  1248. },
  1249. "System.Reflection/4.3.0": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Microsoft.NETCore.Platforms": "1.1.0",
  1253. "Microsoft.NETCore.Targets": "1.1.0",
  1254. "System.IO": "4.3.0",
  1255. "System.Reflection.Primitives": "4.3.0",
  1256. "System.Runtime": "4.3.0"
  1257. },
  1258. "compile": {
  1259. "ref/netstandard1.5/System.Reflection.dll": {}
  1260. }
  1261. },
  1262. "System.Reflection.Emit/4.7.0": {
  1263. "type": "package",
  1264. "compile": {
  1265. "ref/netcoreapp2.0/_._": {}
  1266. },
  1267. "runtime": {
  1268. "lib/netcoreapp2.0/_._": {}
  1269. }
  1270. },
  1271. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "System.Reflection": "4.1.0",
  1275. "System.Reflection.Primitives": "4.0.1",
  1276. "System.Runtime": "4.1.0"
  1277. },
  1278. "compile": {
  1279. "ref/netstandard1.0/_._": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1283. }
  1284. },
  1285. "System.Reflection.Emit.Lightweight/4.0.1": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "System.Reflection": "4.1.0",
  1289. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1290. "System.Reflection.Primitives": "4.0.1",
  1291. "System.Runtime": "4.1.0"
  1292. },
  1293. "compile": {
  1294. "ref/netstandard1.0/_._": {}
  1295. },
  1296. "runtime": {
  1297. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1298. }
  1299. },
  1300. "System.Reflection.Extensions/4.0.1": {
  1301. "type": "package",
  1302. "dependencies": {
  1303. "Microsoft.NETCore.Platforms": "1.0.1",
  1304. "Microsoft.NETCore.Targets": "1.0.1",
  1305. "System.Reflection": "4.1.0",
  1306. "System.Runtime": "4.1.0"
  1307. },
  1308. "compile": {
  1309. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1310. }
  1311. },
  1312. "System.Reflection.Primitives/4.3.0": {
  1313. "type": "package",
  1314. "dependencies": {
  1315. "Microsoft.NETCore.Platforms": "1.1.0",
  1316. "Microsoft.NETCore.Targets": "1.1.0",
  1317. "System.Runtime": "4.3.0"
  1318. },
  1319. "compile": {
  1320. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1321. }
  1322. },
  1323. "System.Reflection.TypeExtensions/4.1.0": {
  1324. "type": "package",
  1325. "dependencies": {
  1326. "System.Reflection": "4.1.0",
  1327. "System.Runtime": "4.1.0"
  1328. },
  1329. "compile": {
  1330. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1331. },
  1332. "runtime": {
  1333. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1334. }
  1335. },
  1336. "System.Resources.ResourceManager/4.0.1": {
  1337. "type": "package",
  1338. "dependencies": {
  1339. "Microsoft.NETCore.Platforms": "1.0.1",
  1340. "Microsoft.NETCore.Targets": "1.0.1",
  1341. "System.Globalization": "4.0.11",
  1342. "System.Reflection": "4.1.0",
  1343. "System.Runtime": "4.1.0"
  1344. },
  1345. "compile": {
  1346. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1347. }
  1348. },
  1349. "System.Runtime/4.3.0": {
  1350. "type": "package",
  1351. "dependencies": {
  1352. "Microsoft.NETCore.Platforms": "1.1.0",
  1353. "Microsoft.NETCore.Targets": "1.1.0"
  1354. },
  1355. "compile": {
  1356. "ref/netstandard1.5/System.Runtime.dll": {}
  1357. }
  1358. },
  1359. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1360. "type": "package",
  1361. "compile": {
  1362. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1363. },
  1364. "runtime": {
  1365. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1366. },
  1367. "build": {
  1368. "buildTransitive/netcoreapp3.1/_._": {}
  1369. }
  1370. },
  1371. "System.Runtime.Extensions/4.1.0": {
  1372. "type": "package",
  1373. "dependencies": {
  1374. "Microsoft.NETCore.Platforms": "1.0.1",
  1375. "Microsoft.NETCore.Targets": "1.0.1",
  1376. "System.Runtime": "4.1.0"
  1377. },
  1378. "compile": {
  1379. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1380. }
  1381. },
  1382. "System.Runtime.Handles/4.0.1": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "Microsoft.NETCore.Platforms": "1.0.1",
  1386. "Microsoft.NETCore.Targets": "1.0.1",
  1387. "System.Runtime": "4.1.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1391. }
  1392. },
  1393. "System.Runtime.InteropServices/4.1.0": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Microsoft.NETCore.Platforms": "1.0.1",
  1397. "Microsoft.NETCore.Targets": "1.0.1",
  1398. "System.Reflection": "4.1.0",
  1399. "System.Reflection.Primitives": "4.0.1",
  1400. "System.Runtime": "4.1.0",
  1401. "System.Runtime.Handles": "4.0.1"
  1402. },
  1403. "compile": {
  1404. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1405. }
  1406. },
  1407. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1408. "type": "package",
  1409. "dependencies": {
  1410. "Microsoft.NETCore.Platforms": "1.0.1",
  1411. "System.Reflection": "4.1.0",
  1412. "System.Resources.ResourceManager": "4.0.1",
  1413. "System.Runtime": "4.1.0",
  1414. "System.Runtime.InteropServices": "4.1.0",
  1415. "System.Threading": "4.0.11",
  1416. "runtime.native.System": "4.0.0"
  1417. },
  1418. "compile": {
  1419. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1420. },
  1421. "runtimeTargets": {
  1422. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1423. "assetType": "runtime",
  1424. "rid": "unix"
  1425. },
  1426. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1427. "assetType": "runtime",
  1428. "rid": "win"
  1429. }
  1430. }
  1431. },
  1432. "System.Runtime.Numerics/4.0.1": {
  1433. "type": "package",
  1434. "dependencies": {
  1435. "System.Globalization": "4.0.11",
  1436. "System.Resources.ResourceManager": "4.0.1",
  1437. "System.Runtime": "4.1.0",
  1438. "System.Runtime.Extensions": "4.1.0"
  1439. },
  1440. "compile": {
  1441. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1442. },
  1443. "runtime": {
  1444. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1445. }
  1446. },
  1447. "System.Security.AccessControl/4.7.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "Microsoft.NETCore.Platforms": "3.1.0",
  1451. "System.Security.Principal.Windows": "4.7.0"
  1452. },
  1453. "compile": {
  1454. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1455. },
  1456. "runtime": {
  1457. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1458. },
  1459. "runtimeTargets": {
  1460. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1461. "assetType": "runtime",
  1462. "rid": "win"
  1463. }
  1464. }
  1465. },
  1466. "System.Security.Cryptography.Algorithms/4.2.0": {
  1467. "type": "package",
  1468. "dependencies": {
  1469. "Microsoft.NETCore.Platforms": "1.0.1",
  1470. "System.Collections": "4.0.11",
  1471. "System.IO": "4.1.0",
  1472. "System.Resources.ResourceManager": "4.0.1",
  1473. "System.Runtime": "4.1.0",
  1474. "System.Runtime.Extensions": "4.1.0",
  1475. "System.Runtime.Handles": "4.0.1",
  1476. "System.Runtime.InteropServices": "4.1.0",
  1477. "System.Runtime.Numerics": "4.0.1",
  1478. "System.Security.Cryptography.Encoding": "4.0.0",
  1479. "System.Security.Cryptography.Primitives": "4.0.0",
  1480. "System.Text.Encoding": "4.0.11",
  1481. "runtime.native.System.Security.Cryptography": "4.0.0"
  1482. },
  1483. "compile": {
  1484. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1485. },
  1486. "runtimeTargets": {
  1487. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1488. "assetType": "runtime",
  1489. "rid": "unix"
  1490. },
  1491. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1492. "assetType": "runtime",
  1493. "rid": "win"
  1494. }
  1495. }
  1496. },
  1497. "System.Security.Cryptography.Cng/4.2.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "1.0.1",
  1501. "System.IO": "4.1.0",
  1502. "System.Resources.ResourceManager": "4.0.1",
  1503. "System.Runtime": "4.1.0",
  1504. "System.Runtime.Extensions": "4.1.0",
  1505. "System.Runtime.Handles": "4.0.1",
  1506. "System.Runtime.InteropServices": "4.1.0",
  1507. "System.Security.Cryptography.Algorithms": "4.2.0",
  1508. "System.Security.Cryptography.Encoding": "4.0.0",
  1509. "System.Security.Cryptography.Primitives": "4.0.0",
  1510. "System.Text.Encoding": "4.0.11"
  1511. },
  1512. "compile": {
  1513. "ref/netstandard1.6/_._": {}
  1514. },
  1515. "runtimeTargets": {
  1516. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1517. "assetType": "runtime",
  1518. "rid": "unix"
  1519. },
  1520. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1521. "assetType": "runtime",
  1522. "rid": "win"
  1523. }
  1524. }
  1525. },
  1526. "System.Security.Cryptography.Csp/4.0.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "Microsoft.NETCore.Platforms": "1.0.1",
  1530. "System.IO": "4.1.0",
  1531. "System.Reflection": "4.1.0",
  1532. "System.Resources.ResourceManager": "4.0.1",
  1533. "System.Runtime": "4.1.0",
  1534. "System.Runtime.Extensions": "4.1.0",
  1535. "System.Runtime.Handles": "4.0.1",
  1536. "System.Runtime.InteropServices": "4.1.0",
  1537. "System.Security.Cryptography.Algorithms": "4.2.0",
  1538. "System.Security.Cryptography.Encoding": "4.0.0",
  1539. "System.Security.Cryptography.Primitives": "4.0.0",
  1540. "System.Text.Encoding": "4.0.11",
  1541. "System.Threading": "4.0.11"
  1542. },
  1543. "compile": {
  1544. "ref/netstandard1.3/_._": {}
  1545. },
  1546. "runtimeTargets": {
  1547. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1548. "assetType": "runtime",
  1549. "rid": "unix"
  1550. },
  1551. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1552. "assetType": "runtime",
  1553. "rid": "win"
  1554. }
  1555. }
  1556. },
  1557. "System.Security.Cryptography.Encoding/4.0.0": {
  1558. "type": "package",
  1559. "dependencies": {
  1560. "Microsoft.NETCore.Platforms": "1.0.1",
  1561. "System.Collections": "4.0.11",
  1562. "System.Collections.Concurrent": "4.0.12",
  1563. "System.Linq": "4.1.0",
  1564. "System.Resources.ResourceManager": "4.0.1",
  1565. "System.Runtime": "4.1.0",
  1566. "System.Runtime.Extensions": "4.1.0",
  1567. "System.Runtime.Handles": "4.0.1",
  1568. "System.Runtime.InteropServices": "4.1.0",
  1569. "System.Security.Cryptography.Primitives": "4.0.0",
  1570. "System.Text.Encoding": "4.0.11",
  1571. "runtime.native.System.Security.Cryptography": "4.0.0"
  1572. },
  1573. "compile": {
  1574. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1575. },
  1576. "runtimeTargets": {
  1577. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1578. "assetType": "runtime",
  1579. "rid": "unix"
  1580. },
  1581. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1582. "assetType": "runtime",
  1583. "rid": "win"
  1584. }
  1585. }
  1586. },
  1587. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1588. "type": "package",
  1589. "dependencies": {
  1590. "System.Collections": "4.0.11",
  1591. "System.IO": "4.1.0",
  1592. "System.Resources.ResourceManager": "4.0.1",
  1593. "System.Runtime": "4.1.0",
  1594. "System.Runtime.Extensions": "4.1.0",
  1595. "System.Runtime.Handles": "4.0.1",
  1596. "System.Runtime.InteropServices": "4.1.0",
  1597. "System.Runtime.Numerics": "4.0.1",
  1598. "System.Security.Cryptography.Algorithms": "4.2.0",
  1599. "System.Security.Cryptography.Encoding": "4.0.0",
  1600. "System.Security.Cryptography.Primitives": "4.0.0",
  1601. "System.Text.Encoding": "4.0.11",
  1602. "runtime.native.System.Security.Cryptography": "4.0.0"
  1603. },
  1604. "compile": {
  1605. "ref/netstandard1.6/_._": {}
  1606. },
  1607. "runtime": {
  1608. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1609. },
  1610. "runtimeTargets": {
  1611. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1612. "assetType": "runtime",
  1613. "rid": "unix"
  1614. }
  1615. }
  1616. },
  1617. "System.Security.Cryptography.Primitives/4.0.0": {
  1618. "type": "package",
  1619. "dependencies": {
  1620. "System.Diagnostics.Debug": "4.0.11",
  1621. "System.Globalization": "4.0.11",
  1622. "System.IO": "4.1.0",
  1623. "System.Resources.ResourceManager": "4.0.1",
  1624. "System.Runtime": "4.1.0",
  1625. "System.Threading": "4.0.11",
  1626. "System.Threading.Tasks": "4.0.11"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1633. }
  1634. },
  1635. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1636. "type": "package",
  1637. "compile": {
  1638. "ref/netstandard2.0/_._": {}
  1639. },
  1640. "runtime": {
  1641. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1642. },
  1643. "runtimeTargets": {
  1644. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1645. "assetType": "runtime",
  1646. "rid": "win"
  1647. }
  1648. }
  1649. },
  1650. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1651. "type": "package",
  1652. "dependencies": {
  1653. "Microsoft.NETCore.Platforms": "1.0.1",
  1654. "System.Collections": "4.0.11",
  1655. "System.Diagnostics.Debug": "4.0.11",
  1656. "System.Globalization": "4.0.11",
  1657. "System.Globalization.Calendars": "4.0.1",
  1658. "System.IO": "4.1.0",
  1659. "System.IO.FileSystem": "4.0.1",
  1660. "System.IO.FileSystem.Primitives": "4.0.1",
  1661. "System.Resources.ResourceManager": "4.0.1",
  1662. "System.Runtime": "4.1.0",
  1663. "System.Runtime.Extensions": "4.1.0",
  1664. "System.Runtime.Handles": "4.0.1",
  1665. "System.Runtime.InteropServices": "4.1.0",
  1666. "System.Runtime.Numerics": "4.0.1",
  1667. "System.Security.Cryptography.Algorithms": "4.2.0",
  1668. "System.Security.Cryptography.Cng": "4.2.0",
  1669. "System.Security.Cryptography.Csp": "4.0.0",
  1670. "System.Security.Cryptography.Encoding": "4.0.0",
  1671. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1672. "System.Security.Cryptography.Primitives": "4.0.0",
  1673. "System.Text.Encoding": "4.0.11",
  1674. "System.Threading": "4.0.11",
  1675. "runtime.native.System": "4.0.0",
  1676. "runtime.native.System.Net.Http": "4.0.1",
  1677. "runtime.native.System.Security.Cryptography": "4.0.0"
  1678. },
  1679. "compile": {
  1680. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1681. },
  1682. "runtimeTargets": {
  1683. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1684. "assetType": "runtime",
  1685. "rid": "unix"
  1686. },
  1687. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1688. "assetType": "runtime",
  1689. "rid": "win"
  1690. }
  1691. }
  1692. },
  1693. "System.Security.Permissions/4.7.0": {
  1694. "type": "package",
  1695. "dependencies": {
  1696. "System.Security.AccessControl": "4.7.0",
  1697. "System.Windows.Extensions": "4.7.0"
  1698. },
  1699. "compile": {
  1700. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  1701. },
  1702. "runtime": {
  1703. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  1704. }
  1705. },
  1706. "System.Security.Principal.Windows/4.7.0": {
  1707. "type": "package",
  1708. "compile": {
  1709. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  1710. },
  1711. "runtime": {
  1712. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  1713. },
  1714. "runtimeTargets": {
  1715. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1716. "assetType": "runtime",
  1717. "rid": "unix"
  1718. },
  1719. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1720. "assetType": "runtime",
  1721. "rid": "win"
  1722. }
  1723. }
  1724. },
  1725. "System.Text.Encoding/4.3.0": {
  1726. "type": "package",
  1727. "dependencies": {
  1728. "Microsoft.NETCore.Platforms": "1.1.0",
  1729. "Microsoft.NETCore.Targets": "1.1.0",
  1730. "System.Runtime": "4.3.0"
  1731. },
  1732. "compile": {
  1733. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  1734. }
  1735. },
  1736. "System.Text.Encoding.CodePages/4.4.0": {
  1737. "type": "package",
  1738. "dependencies": {
  1739. "Microsoft.NETCore.Platforms": "2.0.0"
  1740. },
  1741. "compile": {
  1742. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1743. },
  1744. "runtime": {
  1745. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1746. },
  1747. "runtimeTargets": {
  1748. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1749. "assetType": "runtime",
  1750. "rid": "win"
  1751. }
  1752. }
  1753. },
  1754. "System.Text.Encoding.Extensions/4.0.11": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.0.1",
  1758. "Microsoft.NETCore.Targets": "1.0.1",
  1759. "System.Runtime": "4.1.0",
  1760. "System.Text.Encoding": "4.0.11"
  1761. },
  1762. "compile": {
  1763. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  1764. }
  1765. },
  1766. "System.Text.Encodings.Web/4.5.0": {
  1767. "type": "package",
  1768. "compile": {
  1769. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1770. },
  1771. "runtime": {
  1772. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1773. }
  1774. },
  1775. "System.Text.RegularExpressions/4.1.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "System.Collections": "4.0.11",
  1779. "System.Globalization": "4.0.11",
  1780. "System.Resources.ResourceManager": "4.0.1",
  1781. "System.Runtime": "4.1.0",
  1782. "System.Runtime.Extensions": "4.1.0",
  1783. "System.Threading": "4.0.11"
  1784. },
  1785. "compile": {
  1786. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1787. },
  1788. "runtime": {
  1789. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1790. }
  1791. },
  1792. "System.Threading/4.0.11": {
  1793. "type": "package",
  1794. "dependencies": {
  1795. "System.Runtime": "4.1.0",
  1796. "System.Threading.Tasks": "4.0.11"
  1797. },
  1798. "compile": {
  1799. "ref/netstandard1.3/System.Threading.dll": {}
  1800. },
  1801. "runtime": {
  1802. "lib/netstandard1.3/System.Threading.dll": {}
  1803. }
  1804. },
  1805. "System.Threading.Tasks/4.3.0": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "Microsoft.NETCore.Platforms": "1.1.0",
  1809. "Microsoft.NETCore.Targets": "1.1.0",
  1810. "System.Runtime": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  1814. }
  1815. },
  1816. "System.Threading.Tasks.Extensions/4.0.0": {
  1817. "type": "package",
  1818. "dependencies": {
  1819. "System.Collections": "4.0.11",
  1820. "System.Runtime": "4.1.0",
  1821. "System.Threading.Tasks": "4.0.11"
  1822. },
  1823. "compile": {
  1824. "lib/netstandard1.0/_._": {}
  1825. },
  1826. "runtime": {
  1827. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  1828. }
  1829. },
  1830. "System.Threading.Thread/4.0.0": {
  1831. "type": "package",
  1832. "dependencies": {
  1833. "System.Runtime": "4.1.0"
  1834. },
  1835. "compile": {
  1836. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  1837. },
  1838. "runtime": {
  1839. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  1840. }
  1841. },
  1842. "System.Threading.ThreadPool/4.0.10": {
  1843. "type": "package",
  1844. "dependencies": {
  1845. "System.Runtime": "4.1.0",
  1846. "System.Runtime.Handles": "4.0.1"
  1847. },
  1848. "compile": {
  1849. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1850. },
  1851. "runtime": {
  1852. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1853. }
  1854. },
  1855. "System.Threading.Timer/4.0.1": {
  1856. "type": "package",
  1857. "dependencies": {
  1858. "Microsoft.NETCore.Platforms": "1.0.1",
  1859. "Microsoft.NETCore.Targets": "1.0.1",
  1860. "System.Runtime": "4.1.0"
  1861. },
  1862. "compile": {
  1863. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  1864. }
  1865. },
  1866. "System.Windows.Extensions/4.7.0": {
  1867. "type": "package",
  1868. "dependencies": {
  1869. "System.Drawing.Common": "4.7.0"
  1870. },
  1871. "compile": {
  1872. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1873. },
  1874. "runtime": {
  1875. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1876. },
  1877. "runtimeTargets": {
  1878. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1879. "assetType": "runtime",
  1880. "rid": "win"
  1881. }
  1882. }
  1883. },
  1884. "System.Xml.ReaderWriter/4.0.11": {
  1885. "type": "package",
  1886. "dependencies": {
  1887. "System.Collections": "4.0.11",
  1888. "System.Diagnostics.Debug": "4.0.11",
  1889. "System.Globalization": "4.0.11",
  1890. "System.IO": "4.1.0",
  1891. "System.IO.FileSystem": "4.0.1",
  1892. "System.IO.FileSystem.Primitives": "4.0.1",
  1893. "System.Resources.ResourceManager": "4.0.1",
  1894. "System.Runtime": "4.1.0",
  1895. "System.Runtime.Extensions": "4.1.0",
  1896. "System.Runtime.InteropServices": "4.1.0",
  1897. "System.Text.Encoding": "4.0.11",
  1898. "System.Text.Encoding.Extensions": "4.0.11",
  1899. "System.Text.RegularExpressions": "4.1.0",
  1900. "System.Threading.Tasks": "4.0.11",
  1901. "System.Threading.Tasks.Extensions": "4.0.0"
  1902. },
  1903. "compile": {
  1904. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1905. },
  1906. "runtime": {
  1907. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1908. }
  1909. },
  1910. "System.Xml.XDocument/4.0.11": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "System.Collections": "4.0.11",
  1914. "System.Diagnostics.Debug": "4.0.11",
  1915. "System.Diagnostics.Tools": "4.0.1",
  1916. "System.Globalization": "4.0.11",
  1917. "System.IO": "4.1.0",
  1918. "System.Reflection": "4.1.0",
  1919. "System.Resources.ResourceManager": "4.0.1",
  1920. "System.Runtime": "4.1.0",
  1921. "System.Runtime.Extensions": "4.1.0",
  1922. "System.Text.Encoding": "4.0.11",
  1923. "System.Threading": "4.0.11",
  1924. "System.Xml.ReaderWriter": "4.0.11"
  1925. },
  1926. "compile": {
  1927. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  1928. },
  1929. "runtime": {
  1930. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  1931. }
  1932. },
  1933. "System.Xml.XmlDocument/4.0.1": {
  1934. "type": "package",
  1935. "dependencies": {
  1936. "System.Collections": "4.0.11",
  1937. "System.Diagnostics.Debug": "4.0.11",
  1938. "System.Globalization": "4.0.11",
  1939. "System.IO": "4.1.0",
  1940. "System.Resources.ResourceManager": "4.0.1",
  1941. "System.Runtime": "4.1.0",
  1942. "System.Runtime.Extensions": "4.1.0",
  1943. "System.Text.Encoding": "4.0.11",
  1944. "System.Threading": "4.0.11",
  1945. "System.Xml.ReaderWriter": "4.0.11"
  1946. },
  1947. "compile": {
  1948. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1949. },
  1950. "runtime": {
  1951. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1952. }
  1953. },
  1954. "System.Xml.XPath/4.0.1": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "System.Collections": "4.0.11",
  1958. "System.Diagnostics.Debug": "4.0.11",
  1959. "System.Globalization": "4.0.11",
  1960. "System.IO": "4.1.0",
  1961. "System.Resources.ResourceManager": "4.0.1",
  1962. "System.Runtime": "4.1.0",
  1963. "System.Runtime.Extensions": "4.1.0",
  1964. "System.Threading": "4.0.11",
  1965. "System.Xml.ReaderWriter": "4.0.11"
  1966. },
  1967. "compile": {
  1968. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  1969. },
  1970. "runtime": {
  1971. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  1972. }
  1973. },
  1974. "System.Xml.XPath.XmlDocument/4.0.1": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.0.11",
  1978. "System.Globalization": "4.0.11",
  1979. "System.IO": "4.1.0",
  1980. "System.Resources.ResourceManager": "4.0.1",
  1981. "System.Runtime": "4.1.0",
  1982. "System.Runtime.Extensions": "4.1.0",
  1983. "System.Threading": "4.0.11",
  1984. "System.Xml.ReaderWriter": "4.0.11",
  1985. "System.Xml.XPath": "4.0.1",
  1986. "System.Xml.XmlDocument": "4.0.1"
  1987. },
  1988. "compile": {
  1989. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1990. },
  1991. "runtime": {
  1992. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  1993. }
  1994. },
  1995. "Backend.ApplicationCore/1.0.0": {
  1996. "type": "project",
  1997. "framework": ".NETCoreApp,Version=v3.1",
  1998. "dependencies": {
  1999. "AutoMapper": "10.1.1",
  2000. "AutoMapper.Extensions.Microsoft.DependencyInjection": "8.1.1",
  2001. "Backend.Domain": "1.0.0",
  2002. "MediatR": "7.0.0",
  2003. "MediatR.Extensions.Microsoft.DependencyInjection": "7.0.0",
  2004. "Microsoft.EntityFrameworkCore": "5.0.13"
  2005. },
  2006. "compile": {
  2007. "bin/placeholder/Backend.ApplicationCore.dll": {}
  2008. },
  2009. "runtime": {
  2010. "bin/placeholder/Backend.ApplicationCore.dll": {}
  2011. }
  2012. },
  2013. "Backend.Domain/1.0.0": {
  2014. "type": "project",
  2015. "framework": ".NETCoreApp,Version=v3.1",
  2016. "compile": {
  2017. "bin/placeholder/Backend.Domain.dll": {}
  2018. },
  2019. "runtime": {
  2020. "bin/placeholder/Backend.Domain.dll": {}
  2021. }
  2022. }
  2023. }
  2024. },
  2025. "libraries": {
  2026. "AutoMapper/10.1.1": {
  2027. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2028. "type": "package",
  2029. "path": "automapper/10.1.1",
  2030. "files": [
  2031. ".nupkg.metadata",
  2032. ".signature.p7s",
  2033. "automapper.10.1.1.nupkg.sha512",
  2034. "automapper.nuspec",
  2035. "icon.png",
  2036. "lib/net461/AutoMapper.dll",
  2037. "lib/net461/AutoMapper.xml",
  2038. "lib/netstandard2.0/AutoMapper.dll",
  2039. "lib/netstandard2.0/AutoMapper.xml"
  2040. ]
  2041. },
  2042. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2043. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2044. "type": "package",
  2045. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2046. "files": [
  2047. ".nupkg.metadata",
  2048. ".signature.p7s",
  2049. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2050. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2051. "icon.png",
  2052. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2053. ]
  2054. },
  2055. "BouncyCastle.NetCore/1.8.3": {
  2056. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2057. "type": "package",
  2058. "path": "bouncycastle.netcore/1.8.3",
  2059. "files": [
  2060. ".nupkg.metadata",
  2061. ".signature.p7s",
  2062. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2063. "bouncycastle.netcore.nuspec",
  2064. "lib/Mono/BouncyCastle.Crypto.dll",
  2065. "lib/Mono/BouncyCastle.Crypto.xml",
  2066. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2067. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2068. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2069. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2070. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2071. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2072. "lib/net20/BouncyCastle.Crypto.dll",
  2073. "lib/net20/BouncyCastle.Crypto.xml",
  2074. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2075. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2076. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2077. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2078. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2079. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2080. ]
  2081. },
  2082. "EntityFramework/6.1.0": {
  2083. "sha512": "u/M0OEfqxTUsL5BwzD66eBGm278/ozqdLK3JvMO6QwUxxc+z7ZUkTYm4suDhWRqzkc6mOhvXDQY5dZUwbldxyQ==",
  2084. "type": "package",
  2085. "path": "entityframework/6.1.0",
  2086. "hasTools": true,
  2087. "files": [
  2088. ".nupkg.metadata",
  2089. ".signature.p7s",
  2090. "content/App.config.transform",
  2091. "content/Web.config.transform",
  2092. "entityframework.6.1.0.nupkg.sha512",
  2093. "entityframework.nuspec",
  2094. "lib/net40/EntityFramework.SqlServer.dll",
  2095. "lib/net40/EntityFramework.SqlServer.xml",
  2096. "lib/net40/EntityFramework.dll",
  2097. "lib/net40/EntityFramework.xml",
  2098. "lib/net45/EntityFramework.SqlServer.dll",
  2099. "lib/net45/EntityFramework.SqlServer.xml",
  2100. "lib/net45/EntityFramework.dll",
  2101. "lib/net45/EntityFramework.xml",
  2102. "tools/EntityFramework.PowerShell.Utility.dll",
  2103. "tools/EntityFramework.PowerShell.dll",
  2104. "tools/EntityFramework.psd1",
  2105. "tools/EntityFramework.psm1",
  2106. "tools/about_EntityFramework.help.txt",
  2107. "tools/init.ps1",
  2108. "tools/install.ps1",
  2109. "tools/migrate.exe"
  2110. ]
  2111. },
  2112. "Google.Protobuf/3.11.4": {
  2113. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2114. "type": "package",
  2115. "path": "google.protobuf/3.11.4",
  2116. "files": [
  2117. ".nupkg.metadata",
  2118. ".signature.p7s",
  2119. "google.protobuf.3.11.4.nupkg.sha512",
  2120. "google.protobuf.nuspec",
  2121. "lib/net45/Google.Protobuf.dll",
  2122. "lib/net45/Google.Protobuf.pdb",
  2123. "lib/net45/Google.Protobuf.xml",
  2124. "lib/netstandard1.0/Google.Protobuf.dll",
  2125. "lib/netstandard1.0/Google.Protobuf.pdb",
  2126. "lib/netstandard1.0/Google.Protobuf.xml",
  2127. "lib/netstandard2.0/Google.Protobuf.dll",
  2128. "lib/netstandard2.0/Google.Protobuf.pdb",
  2129. "lib/netstandard2.0/Google.Protobuf.xml"
  2130. ]
  2131. },
  2132. "K4os.Compression.LZ4/1.1.11": {
  2133. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2134. "type": "package",
  2135. "path": "k4os.compression.lz4/1.1.11",
  2136. "files": [
  2137. ".nupkg.metadata",
  2138. ".signature.p7s",
  2139. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2140. "k4os.compression.lz4.nuspec",
  2141. "lib/net45/K4os.Compression.LZ4.dll",
  2142. "lib/net45/K4os.Compression.LZ4.xml",
  2143. "lib/net46/K4os.Compression.LZ4.dll",
  2144. "lib/net46/K4os.Compression.LZ4.xml",
  2145. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2146. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2147. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2148. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2149. ]
  2150. },
  2151. "K4os.Compression.LZ4.Streams/1.1.11": {
  2152. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2153. "type": "package",
  2154. "path": "k4os.compression.lz4.streams/1.1.11",
  2155. "files": [
  2156. ".nupkg.metadata",
  2157. ".signature.p7s",
  2158. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2159. "k4os.compression.lz4.streams.nuspec",
  2160. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2161. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2162. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2163. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2164. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2165. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2166. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2167. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2168. ]
  2169. },
  2170. "K4os.Hash.xxHash/1.0.6": {
  2171. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2172. "type": "package",
  2173. "path": "k4os.hash.xxhash/1.0.6",
  2174. "files": [
  2175. ".nupkg.metadata",
  2176. ".signature.p7s",
  2177. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2178. "k4os.hash.xxhash.nuspec",
  2179. "lib/net45/K4os.Hash.xxHash.dll",
  2180. "lib/net45/K4os.Hash.xxHash.xml",
  2181. "lib/net46/K4os.Hash.xxHash.dll",
  2182. "lib/net46/K4os.Hash.xxHash.xml",
  2183. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2184. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2185. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2186. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2187. ]
  2188. },
  2189. "MediatR/7.0.0": {
  2190. "sha512": "sgfHxkBsmMlHOD564SnLqTvSbAuGlFiZfc6ybxBSI1wYV/2u+Y5TXtFoIhCISFg5/s/6aMvB338QC2JseHsjTA==",
  2191. "type": "package",
  2192. "path": "mediatr/7.0.0",
  2193. "files": [
  2194. ".nupkg.metadata",
  2195. ".signature.p7s",
  2196. "lib/net461/MediatR.dll",
  2197. "lib/netstandard2.0/MediatR.dll",
  2198. "mediatr.7.0.0.nupkg.sha512",
  2199. "mediatr.nuspec"
  2200. ]
  2201. },
  2202. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  2203. "sha512": "DRf8jBnjBg84da1L1L0YmwqkhCV+UJTg7bTBHOhleWrLfrtSK5h5aNeE1HOofs1Afisq03B6H2C10NmS47gmqA==",
  2204. "type": "package",
  2205. "path": "mediatr.extensions.microsoft.dependencyinjection/7.0.0",
  2206. "files": [
  2207. ".nupkg.metadata",
  2208. ".signature.p7s",
  2209. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll",
  2210. "mediatr.extensions.microsoft.dependencyinjection.7.0.0.nupkg.sha512",
  2211. "mediatr.extensions.microsoft.dependencyinjection.nuspec"
  2212. ]
  2213. },
  2214. "Microsoft.AspNet.Identity.Core/2.2.3": {
  2215. "sha512": "Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  2216. "type": "package",
  2217. "path": "microsoft.aspnet.identity.core/2.2.3",
  2218. "files": [
  2219. ".nupkg.metadata",
  2220. ".signature.p7s",
  2221. "lib/net45/Microsoft.AspNet.Identity.Core.dll",
  2222. "lib/net45/Microsoft.AspNet.Identity.Core.xml",
  2223. "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512",
  2224. "microsoft.aspnet.identity.core.nuspec"
  2225. ]
  2226. },
  2227. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  2228. "sha512": "dt4XZChjw3a6jE66Yd6LkF9omspxi0A9lJpwBZz8Wl1sabOS6dlLP1OOTVuUjtPaoAshjoIzvS6DFRQdPyq55g==",
  2229. "type": "package",
  2230. "path": "microsoft.aspnet.identity.entityframework/2.2.3",
  2231. "files": [
  2232. ".nupkg.metadata",
  2233. ".signature.p7s",
  2234. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll",
  2235. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml",
  2236. "microsoft.aspnet.identity.entityframework.2.2.3.nupkg.sha512",
  2237. "microsoft.aspnet.identity.entityframework.nuspec"
  2238. ]
  2239. },
  2240. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  2241. "sha512": "xqdkq+lsWeVBxGq0bwgQeT1inqdFErG/McEBNqFVw0hnNQKxWaGPuBDFc8JBQC82Qn6+V1utI3lWvFmUMGEc8Q==",
  2242. "type": "package",
  2243. "path": "microsoft.aspnetcore.cryptography.internal/5.0.10",
  2244. "files": [
  2245. ".nupkg.metadata",
  2246. ".signature.p7s",
  2247. "Icon.png",
  2248. "THIRD-PARTY-NOTICES.TXT",
  2249. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2250. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2251. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2252. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2253. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2254. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2255. "microsoft.aspnetcore.cryptography.internal.5.0.10.nupkg.sha512",
  2256. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2257. ]
  2258. },
  2259. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  2260. "sha512": "iXsPFNrM6cVGx/zCkz88nDP/pUKn/ni13B6JQhLwOoqI+tsA1x6fVfPp0MKnQtx5AZngGzuNMx+AYR1ED9ZVeg==",
  2261. "type": "package",
  2262. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.10",
  2263. "files": [
  2264. ".nupkg.metadata",
  2265. ".signature.p7s",
  2266. "Icon.png",
  2267. "THIRD-PARTY-NOTICES.TXT",
  2268. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2269. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2270. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2271. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2272. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2273. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2274. "microsoft.aspnetcore.cryptography.keyderivation.5.0.10.nupkg.sha512",
  2275. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2276. ]
  2277. },
  2278. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2279. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2280. "type": "package",
  2281. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2282. "files": [
  2283. ".nupkg.metadata",
  2284. ".signature.p7s",
  2285. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2286. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2287. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2288. "microsoft.aspnetcore.http.abstractions.nuspec"
  2289. ]
  2290. },
  2291. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2292. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2293. "type": "package",
  2294. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2295. "files": [
  2296. ".nupkg.metadata",
  2297. ".signature.p7s",
  2298. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2299. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2300. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2301. "microsoft.aspnetcore.http.features.nuspec"
  2302. ]
  2303. },
  2304. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  2305. "sha512": "L9Tavjj82A9Ybo6Uedxu5CDie7DXXjx5tXLy3P0Ade2LXcrQwC4bJcdj8+QvBHqMnsd9ZsGZfO/T6tqxTYpAJg==",
  2306. "type": "package",
  2307. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.10",
  2308. "files": [
  2309. ".nupkg.metadata",
  2310. ".signature.p7s",
  2311. "Icon.png",
  2312. "THIRD-PARTY-NOTICES.TXT",
  2313. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2314. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2315. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2316. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2317. "microsoft.aspnetcore.identity.entityframeworkcore.5.0.10.nupkg.sha512",
  2318. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  2319. ]
  2320. },
  2321. "Microsoft.CSharp/4.7.0": {
  2322. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2323. "type": "package",
  2324. "path": "microsoft.csharp/4.7.0",
  2325. "files": [
  2326. ".nupkg.metadata",
  2327. ".signature.p7s",
  2328. "LICENSE.TXT",
  2329. "THIRD-PARTY-NOTICES.TXT",
  2330. "lib/MonoAndroid10/_._",
  2331. "lib/MonoTouch10/_._",
  2332. "lib/net45/_._",
  2333. "lib/netcore50/Microsoft.CSharp.dll",
  2334. "lib/netcoreapp2.0/_._",
  2335. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2336. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2337. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2338. "lib/portable-net45+win8+wp8+wpa81/_._",
  2339. "lib/uap10.0.16299/_._",
  2340. "lib/win8/_._",
  2341. "lib/wp80/_._",
  2342. "lib/wpa81/_._",
  2343. "lib/xamarinios10/_._",
  2344. "lib/xamarinmac20/_._",
  2345. "lib/xamarintvos10/_._",
  2346. "lib/xamarinwatchos10/_._",
  2347. "microsoft.csharp.4.7.0.nupkg.sha512",
  2348. "microsoft.csharp.nuspec",
  2349. "ref/MonoAndroid10/_._",
  2350. "ref/MonoTouch10/_._",
  2351. "ref/net45/_._",
  2352. "ref/netcore50/Microsoft.CSharp.dll",
  2353. "ref/netcore50/Microsoft.CSharp.xml",
  2354. "ref/netcore50/de/Microsoft.CSharp.xml",
  2355. "ref/netcore50/es/Microsoft.CSharp.xml",
  2356. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2357. "ref/netcore50/it/Microsoft.CSharp.xml",
  2358. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2359. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2360. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2361. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2362. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2363. "ref/netcoreapp2.0/_._",
  2364. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2365. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2366. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2367. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2368. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2369. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2370. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2371. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2372. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2373. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2374. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2375. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2376. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2377. "ref/portable-net45+win8+wp8+wpa81/_._",
  2378. "ref/uap10.0.16299/_._",
  2379. "ref/win8/_._",
  2380. "ref/wp80/_._",
  2381. "ref/wpa81/_._",
  2382. "ref/xamarinios10/_._",
  2383. "ref/xamarinmac20/_._",
  2384. "ref/xamarintvos10/_._",
  2385. "ref/xamarinwatchos10/_._",
  2386. "useSharedDesignerContext.txt",
  2387. "version.txt"
  2388. ]
  2389. },
  2390. "Microsoft.EntityFrameworkCore/5.0.13": {
  2391. "sha512": "Q5dVSbK5Id01xuAvm2xzrzEUNgO0fFD8mD/qFkD2F4Q23rs5YnrHH+/Wr9PAGNLdKqYWmkB0yTxKBL/0nLgr3g==",
  2392. "type": "package",
  2393. "path": "microsoft.entityframeworkcore/5.0.13",
  2394. "files": [
  2395. ".nupkg.metadata",
  2396. ".signature.p7s",
  2397. "Icon.png",
  2398. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  2399. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  2400. "microsoft.entityframeworkcore.5.0.13.nupkg.sha512",
  2401. "microsoft.entityframeworkcore.nuspec"
  2402. ]
  2403. },
  2404. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  2405. "sha512": "TdnEXtDpm3o9s6RzUX0Mjgfgms4BD04uyvyxM9Xg8tQPOqqh7ZO6fWy+xJTj+wTcYuY5pYSkfPNGvtJ5FRmqWQ==",
  2406. "type": "package",
  2407. "path": "microsoft.entityframeworkcore.abstractions/5.0.13",
  2408. "files": [
  2409. ".nupkg.metadata",
  2410. ".signature.p7s",
  2411. "Icon.png",
  2412. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2413. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2414. "microsoft.entityframeworkcore.abstractions.5.0.13.nupkg.sha512",
  2415. "microsoft.entityframeworkcore.abstractions.nuspec"
  2416. ]
  2417. },
  2418. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {
  2419. "sha512": "torTg+dQC/vOlFI5FZsRmOAA5pKtr8cJNJ5SWsl0RVYmhb5I7s/V3T1NsIzSqJTYzGBssHl5mFbiBODeBdQpnQ==",
  2420. "type": "package",
  2421. "path": "microsoft.entityframeworkcore.analyzers/5.0.13",
  2422. "files": [
  2423. ".nupkg.metadata",
  2424. ".signature.p7s",
  2425. "Icon.png",
  2426. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2427. "lib/netstandard2.0/_._",
  2428. "microsoft.entityframeworkcore.analyzers.5.0.13.nupkg.sha512",
  2429. "microsoft.entityframeworkcore.analyzers.nuspec"
  2430. ]
  2431. },
  2432. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  2433. "sha512": "3l7GA+0y5E3kDOl85KRHhC0zXYA/CyQBQqDXvFGkqYzdPMRyWQkaQz2+yN4CN/SC+TVa48FPIAc2Wim8aWAliQ==",
  2434. "type": "package",
  2435. "path": "microsoft.entityframeworkcore.relational/5.0.10",
  2436. "files": [
  2437. ".nupkg.metadata",
  2438. ".signature.p7s",
  2439. "Icon.png",
  2440. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  2441. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  2442. "microsoft.entityframeworkcore.relational.5.0.10.nupkg.sha512",
  2443. "microsoft.entityframeworkcore.relational.nuspec"
  2444. ]
  2445. },
  2446. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  2447. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  2448. "type": "package",
  2449. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  2450. "files": [
  2451. ".nupkg.metadata",
  2452. ".signature.p7s",
  2453. "Icon.png",
  2454. "LICENSE.TXT",
  2455. "THIRD-PARTY-NOTICES.TXT",
  2456. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2457. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2458. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2459. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2460. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  2461. "microsoft.extensions.caching.abstractions.nuspec",
  2462. "useSharedDesignerContext.txt",
  2463. "version.txt"
  2464. ]
  2465. },
  2466. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  2467. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  2468. "type": "package",
  2469. "path": "microsoft.extensions.caching.memory/5.0.0",
  2470. "files": [
  2471. ".nupkg.metadata",
  2472. ".signature.p7s",
  2473. "Icon.png",
  2474. "LICENSE.TXT",
  2475. "THIRD-PARTY-NOTICES.TXT",
  2476. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2477. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2478. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2479. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2480. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  2481. "microsoft.extensions.caching.memory.nuspec",
  2482. "useSharedDesignerContext.txt",
  2483. "version.txt"
  2484. ]
  2485. },
  2486. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2487. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2488. "type": "package",
  2489. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2490. "files": [
  2491. ".nupkg.metadata",
  2492. ".signature.p7s",
  2493. "Icon.png",
  2494. "LICENSE.TXT",
  2495. "THIRD-PARTY-NOTICES.TXT",
  2496. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2497. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2498. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2499. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2500. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  2501. "microsoft.extensions.configuration.abstractions.nuspec",
  2502. "useSharedDesignerContext.txt"
  2503. ]
  2504. },
  2505. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  2506. "sha512": "xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  2507. "type": "package",
  2508. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  2509. "files": [
  2510. ".nupkg.metadata",
  2511. ".signature.p7s",
  2512. "Icon.png",
  2513. "LICENSE.TXT",
  2514. "THIRD-PARTY-NOTICES.TXT",
  2515. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2516. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2517. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  2518. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  2519. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2520. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2521. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2522. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2523. "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
  2524. "microsoft.extensions.dependencyinjection.nuspec",
  2525. "useSharedDesignerContext.txt",
  2526. "version.txt"
  2527. ]
  2528. },
  2529. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2530. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2531. "type": "package",
  2532. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2533. "files": [
  2534. ".nupkg.metadata",
  2535. ".signature.p7s",
  2536. "Icon.png",
  2537. "LICENSE.TXT",
  2538. "THIRD-PARTY-NOTICES.TXT",
  2539. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2540. "buildTransitive/netcoreapp3.1/_._",
  2541. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2542. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2543. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2544. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2545. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2546. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2547. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2548. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2549. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  2550. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2551. "useSharedDesignerContext.txt"
  2552. ]
  2553. },
  2554. "Microsoft.Extensions.Identity.Core/5.0.10": {
  2555. "sha512": "WKl22APvpTy+wIqvUd1Gvp8FOs7nTHCZDMeMNNC6fDVfzVKWQF55vOJXbkw7dU70sC6GewE/zsqmwyJAHXgDJw==",
  2556. "type": "package",
  2557. "path": "microsoft.extensions.identity.core/5.0.10",
  2558. "files": [
  2559. ".nupkg.metadata",
  2560. ".signature.p7s",
  2561. "Icon.png",
  2562. "THIRD-PARTY-NOTICES.TXT",
  2563. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  2564. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  2565. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll",
  2566. "lib/net5.0/Microsoft.Extensions.Identity.Core.xml",
  2567. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2568. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2569. "microsoft.extensions.identity.core.5.0.10.nupkg.sha512",
  2570. "microsoft.extensions.identity.core.nuspec"
  2571. ]
  2572. },
  2573. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  2574. "sha512": "fZDlK8G+jzV9ld0jiO2eQ5JQbOmpiND92gX7bP6rcTZ7YJHzIxCw7Hx8+yf4Ex9f6q7v2LJymkmsUz1k7o5nPg==",
  2575. "type": "package",
  2576. "path": "microsoft.extensions.identity.stores/5.0.10",
  2577. "files": [
  2578. ".nupkg.metadata",
  2579. ".signature.p7s",
  2580. "Icon.png",
  2581. "THIRD-PARTY-NOTICES.TXT",
  2582. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  2583. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  2584. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll",
  2585. "lib/net5.0/Microsoft.Extensions.Identity.Stores.xml",
  2586. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2587. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2588. "microsoft.extensions.identity.stores.5.0.10.nupkg.sha512",
  2589. "microsoft.extensions.identity.stores.nuspec"
  2590. ]
  2591. },
  2592. "Microsoft.Extensions.Logging/5.0.0": {
  2593. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  2594. "type": "package",
  2595. "path": "microsoft.extensions.logging/5.0.0",
  2596. "files": [
  2597. ".nupkg.metadata",
  2598. ".signature.p7s",
  2599. "Icon.png",
  2600. "LICENSE.TXT",
  2601. "THIRD-PARTY-NOTICES.TXT",
  2602. "lib/net461/Microsoft.Extensions.Logging.dll",
  2603. "lib/net461/Microsoft.Extensions.Logging.xml",
  2604. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2605. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2606. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2607. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2608. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  2609. "microsoft.extensions.logging.nuspec",
  2610. "useSharedDesignerContext.txt",
  2611. "version.txt"
  2612. ]
  2613. },
  2614. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  2615. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  2616. "type": "package",
  2617. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  2618. "files": [
  2619. ".nupkg.metadata",
  2620. ".signature.p7s",
  2621. "Icon.png",
  2622. "LICENSE.TXT",
  2623. "THIRD-PARTY-NOTICES.TXT",
  2624. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  2625. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  2626. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2627. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2628. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  2629. "microsoft.extensions.logging.abstractions.nuspec",
  2630. "useSharedDesignerContext.txt",
  2631. "version.txt"
  2632. ]
  2633. },
  2634. "Microsoft.Extensions.Options/5.0.0": {
  2635. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  2636. "type": "package",
  2637. "path": "microsoft.extensions.options/5.0.0",
  2638. "files": [
  2639. ".nupkg.metadata",
  2640. ".signature.p7s",
  2641. "Icon.png",
  2642. "LICENSE.TXT",
  2643. "THIRD-PARTY-NOTICES.TXT",
  2644. "lib/net461/Microsoft.Extensions.Options.dll",
  2645. "lib/net461/Microsoft.Extensions.Options.xml",
  2646. "lib/net5.0/Microsoft.Extensions.Options.dll",
  2647. "lib/net5.0/Microsoft.Extensions.Options.xml",
  2648. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2649. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2650. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  2651. "microsoft.extensions.options.nuspec",
  2652. "useSharedDesignerContext.txt",
  2653. "version.txt"
  2654. ]
  2655. },
  2656. "Microsoft.Extensions.Primitives/6.0.0": {
  2657. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2658. "type": "package",
  2659. "path": "microsoft.extensions.primitives/6.0.0",
  2660. "files": [
  2661. ".nupkg.metadata",
  2662. ".signature.p7s",
  2663. "Icon.png",
  2664. "LICENSE.TXT",
  2665. "THIRD-PARTY-NOTICES.TXT",
  2666. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2667. "buildTransitive/netcoreapp3.1/_._",
  2668. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2669. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2670. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2671. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2672. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2673. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2674. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2675. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2676. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2677. "microsoft.extensions.primitives.nuspec",
  2678. "useSharedDesignerContext.txt"
  2679. ]
  2680. },
  2681. "Microsoft.NETCore.Platforms/3.1.0": {
  2682. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  2683. "type": "package",
  2684. "path": "microsoft.netcore.platforms/3.1.0",
  2685. "files": [
  2686. ".nupkg.metadata",
  2687. ".signature.p7s",
  2688. "LICENSE.TXT",
  2689. "THIRD-PARTY-NOTICES.TXT",
  2690. "lib/netstandard1.0/_._",
  2691. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  2692. "microsoft.netcore.platforms.nuspec",
  2693. "runtime.json",
  2694. "useSharedDesignerContext.txt",
  2695. "version.txt"
  2696. ]
  2697. },
  2698. "Microsoft.NETCore.Targets/1.1.0": {
  2699. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2700. "type": "package",
  2701. "path": "microsoft.netcore.targets/1.1.0",
  2702. "files": [
  2703. ".nupkg.metadata",
  2704. ".signature.p7s",
  2705. "ThirdPartyNotices.txt",
  2706. "dotnet_library_license.txt",
  2707. "lib/netstandard1.0/_._",
  2708. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2709. "microsoft.netcore.targets.nuspec",
  2710. "runtime.json"
  2711. ]
  2712. },
  2713. "Microsoft.Win32.Primitives/4.0.1": {
  2714. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  2715. "type": "package",
  2716. "path": "microsoft.win32.primitives/4.0.1",
  2717. "files": [
  2718. ".nupkg.metadata",
  2719. "ThirdPartyNotices.txt",
  2720. "dotnet_library_license.txt",
  2721. "lib/MonoAndroid10/_._",
  2722. "lib/MonoTouch10/_._",
  2723. "lib/net46/Microsoft.Win32.Primitives.dll",
  2724. "lib/xamarinios10/_._",
  2725. "lib/xamarinmac20/_._",
  2726. "lib/xamarintvos10/_._",
  2727. "lib/xamarinwatchos10/_._",
  2728. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  2729. "microsoft.win32.primitives.nuspec",
  2730. "ref/MonoAndroid10/_._",
  2731. "ref/MonoTouch10/_._",
  2732. "ref/net46/Microsoft.Win32.Primitives.dll",
  2733. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  2734. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  2735. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  2736. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  2737. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  2738. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  2739. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  2740. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  2741. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  2742. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  2743. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  2744. "ref/xamarinios10/_._",
  2745. "ref/xamarinmac20/_._",
  2746. "ref/xamarintvos10/_._",
  2747. "ref/xamarinwatchos10/_._"
  2748. ]
  2749. },
  2750. "Microsoft.Win32.Registry/4.7.0": {
  2751. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  2752. "type": "package",
  2753. "path": "microsoft.win32.registry/4.7.0",
  2754. "files": [
  2755. ".nupkg.metadata",
  2756. ".signature.p7s",
  2757. "LICENSE.TXT",
  2758. "THIRD-PARTY-NOTICES.TXT",
  2759. "lib/net46/Microsoft.Win32.Registry.dll",
  2760. "lib/net461/Microsoft.Win32.Registry.dll",
  2761. "lib/net461/Microsoft.Win32.Registry.xml",
  2762. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2763. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2764. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2765. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  2766. "microsoft.win32.registry.nuspec",
  2767. "ref/net46/Microsoft.Win32.Registry.dll",
  2768. "ref/net461/Microsoft.Win32.Registry.dll",
  2769. "ref/net461/Microsoft.Win32.Registry.xml",
  2770. "ref/net472/Microsoft.Win32.Registry.dll",
  2771. "ref/net472/Microsoft.Win32.Registry.xml",
  2772. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  2773. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  2774. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  2775. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  2776. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  2777. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  2778. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  2779. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  2780. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  2781. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  2782. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  2783. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  2784. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  2785. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2786. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2787. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  2788. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  2789. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  2790. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2791. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2792. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  2793. "useSharedDesignerContext.txt",
  2794. "version.txt"
  2795. ]
  2796. },
  2797. "Microsoft.Win32.SystemEvents/4.7.0": {
  2798. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  2799. "type": "package",
  2800. "path": "microsoft.win32.systemevents/4.7.0",
  2801. "files": [
  2802. ".nupkg.metadata",
  2803. ".signature.p7s",
  2804. "LICENSE.TXT",
  2805. "THIRD-PARTY-NOTICES.TXT",
  2806. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  2807. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  2808. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2809. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2810. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  2811. "microsoft.win32.systemevents.nuspec",
  2812. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  2813. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  2814. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  2815. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  2816. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2817. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2818. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  2819. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  2820. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  2821. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  2822. "useSharedDesignerContext.txt",
  2823. "version.txt"
  2824. ]
  2825. },
  2826. "MySql.Data/8.0.22": {
  2827. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  2828. "type": "package",
  2829. "path": "mysql.data/8.0.22",
  2830. "files": [
  2831. ".nupkg.metadata",
  2832. ".signature.p7s",
  2833. "lib/net452/MySql.Data.dll",
  2834. "lib/net452/MySql.Data.xml",
  2835. "lib/net452/Ubiety.Dns.Core.dll",
  2836. "lib/net452/Zstandard.Net.dll",
  2837. "lib/net48/MySql.Data.dll",
  2838. "lib/net48/MySql.Data.xml",
  2839. "lib/net48/Ubiety.Dns.Core.dll",
  2840. "lib/net48/Zstandard.Net.dll",
  2841. "lib/net5.0/MySql.Data.dll",
  2842. "lib/net5.0/MySql.Data.xml",
  2843. "lib/net5.0/Ubiety.Dns.Core.dll",
  2844. "lib/net5.0/Zstandard.Net.dll",
  2845. "lib/netstandard2.0/MySql.Data.dll",
  2846. "lib/netstandard2.0/MySql.Data.xml",
  2847. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  2848. "lib/netstandard2.0/Zstandard.Net.dll",
  2849. "lib/netstandard2.1/MySql.Data.dll",
  2850. "lib/netstandard2.1/MySql.Data.xml",
  2851. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  2852. "lib/netstandard2.1/Zstandard.Net.dll",
  2853. "mysql.data.8.0.22.nupkg.sha512",
  2854. "mysql.data.nuspec"
  2855. ]
  2856. },
  2857. "MySql.Data.EntityFrameworkCore/8.0.22": {
  2858. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  2859. "type": "package",
  2860. "path": "mysql.data.entityframeworkcore/8.0.22",
  2861. "files": [
  2862. ".nupkg.metadata",
  2863. ".signature.p7s",
  2864. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  2865. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  2866. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  2867. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  2868. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  2869. "mysql.data.entityframeworkcore.nuspec"
  2870. ]
  2871. },
  2872. "MySqlConnector/1.1.0": {
  2873. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  2874. "type": "package",
  2875. "path": "mysqlconnector/1.1.0",
  2876. "files": [
  2877. ".nupkg.metadata",
  2878. ".signature.p7s",
  2879. "lib/net45/MySqlConnector.dll",
  2880. "lib/net45/MySqlConnector.xml",
  2881. "lib/net461/MySqlConnector.dll",
  2882. "lib/net461/MySqlConnector.xml",
  2883. "lib/net471/MySqlConnector.dll",
  2884. "lib/net471/MySqlConnector.xml",
  2885. "lib/net5.0/MySqlConnector.dll",
  2886. "lib/net5.0/MySqlConnector.xml",
  2887. "lib/netcoreapp2.1/MySqlConnector.dll",
  2888. "lib/netcoreapp2.1/MySqlConnector.xml",
  2889. "lib/netcoreapp3.1/MySqlConnector.dll",
  2890. "lib/netcoreapp3.1/MySqlConnector.xml",
  2891. "lib/netstandard1.3/MySqlConnector.dll",
  2892. "lib/netstandard1.3/MySqlConnector.xml",
  2893. "lib/netstandard2.0/MySqlConnector.dll",
  2894. "lib/netstandard2.0/MySqlConnector.xml",
  2895. "lib/netstandard2.1/MySqlConnector.dll",
  2896. "lib/netstandard2.1/MySqlConnector.xml",
  2897. "logo.png",
  2898. "mysqlconnector.1.1.0.nupkg.sha512",
  2899. "mysqlconnector.nuspec"
  2900. ]
  2901. },
  2902. "NETStandard.Library/1.6.0": {
  2903. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  2904. "type": "package",
  2905. "path": "netstandard.library/1.6.0",
  2906. "files": [
  2907. ".nupkg.metadata",
  2908. "ThirdPartyNotices.txt",
  2909. "dotnet_library_license.txt",
  2910. "netstandard.library.1.6.0.nupkg.sha512",
  2911. "netstandard.library.nuspec"
  2912. ]
  2913. },
  2914. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  2915. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  2916. "type": "package",
  2917. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  2918. "files": [
  2919. ".nupkg.metadata",
  2920. ".signature.p7s",
  2921. "icon.png",
  2922. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  2923. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  2924. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  2925. "pomelo.entityframeworkcore.mysql.nuspec"
  2926. ]
  2927. },
  2928. "runtime.native.System/4.0.0": {
  2929. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  2930. "type": "package",
  2931. "path": "runtime.native.system/4.0.0",
  2932. "files": [
  2933. ".nupkg.metadata",
  2934. "ThirdPartyNotices.txt",
  2935. "dotnet_library_license.txt",
  2936. "lib/netstandard1.0/_._",
  2937. "runtime.native.system.4.0.0.nupkg.sha512",
  2938. "runtime.native.system.nuspec"
  2939. ]
  2940. },
  2941. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  2942. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  2943. "type": "package",
  2944. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  2945. "files": [
  2946. ".nupkg.metadata",
  2947. ".signature.p7s",
  2948. "LICENSE.TXT",
  2949. "THIRD-PARTY-NOTICES.TXT",
  2950. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  2951. "runtime.native.system.data.sqlclient.sni.nuspec",
  2952. "useSharedDesignerContext.txt",
  2953. "version.txt"
  2954. ]
  2955. },
  2956. "runtime.native.System.IO.Compression/4.1.0": {
  2957. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  2958. "type": "package",
  2959. "path": "runtime.native.system.io.compression/4.1.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. "ThirdPartyNotices.txt",
  2963. "dotnet_library_license.txt",
  2964. "lib/netstandard1.0/_._",
  2965. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  2966. "runtime.native.system.io.compression.nuspec"
  2967. ]
  2968. },
  2969. "runtime.native.System.Net.Http/4.0.1": {
  2970. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  2971. "type": "package",
  2972. "path": "runtime.native.system.net.http/4.0.1",
  2973. "files": [
  2974. ".nupkg.metadata",
  2975. "ThirdPartyNotices.txt",
  2976. "dotnet_library_license.txt",
  2977. "lib/netstandard1.0/_._",
  2978. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  2979. "runtime.native.system.net.http.nuspec"
  2980. ]
  2981. },
  2982. "runtime.native.System.Security.Cryptography/4.0.0": {
  2983. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  2984. "type": "package",
  2985. "path": "runtime.native.system.security.cryptography/4.0.0",
  2986. "files": [
  2987. ".nupkg.metadata",
  2988. "ThirdPartyNotices.txt",
  2989. "dotnet_library_license.txt",
  2990. "lib/netstandard1.0/_._",
  2991. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  2992. "runtime.native.system.security.cryptography.nuspec"
  2993. ]
  2994. },
  2995. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2996. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  2997. "type": "package",
  2998. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2999. "files": [
  3000. ".nupkg.metadata",
  3001. ".signature.p7s",
  3002. "ThirdPartyNotices.txt",
  3003. "dotnet_library_license.txt",
  3004. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3005. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  3006. "runtimes/win-arm64/native/sni.dll",
  3007. "useSharedDesignerContext.txt",
  3008. "version.txt"
  3009. ]
  3010. },
  3011. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3012. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  3013. "type": "package",
  3014. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3015. "files": [
  3016. ".nupkg.metadata",
  3017. ".signature.p7s",
  3018. "ThirdPartyNotices.txt",
  3019. "dotnet_library_license.txt",
  3020. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3021. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  3022. "runtimes/win-x64/native/sni.dll",
  3023. "useSharedDesignerContext.txt",
  3024. "version.txt"
  3025. ]
  3026. },
  3027. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3028. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  3029. "type": "package",
  3030. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  3031. "files": [
  3032. ".nupkg.metadata",
  3033. ".signature.p7s",
  3034. "ThirdPartyNotices.txt",
  3035. "dotnet_library_license.txt",
  3036. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3037. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  3038. "runtimes/win-x86/native/sni.dll",
  3039. "useSharedDesignerContext.txt",
  3040. "version.txt"
  3041. ]
  3042. },
  3043. "SSH.NET/2016.1.0": {
  3044. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3045. "type": "package",
  3046. "path": "ssh.net/2016.1.0",
  3047. "files": [
  3048. ".nupkg.metadata",
  3049. ".signature.p7s",
  3050. "lib/net35/Renci.SshNet.dll",
  3051. "lib/net35/Renci.SshNet.xml",
  3052. "lib/net40/Renci.SshNet.dll",
  3053. "lib/net40/Renci.SshNet.xml",
  3054. "lib/netstandard1.3/Renci.SshNet.dll",
  3055. "lib/netstandard1.3/Renci.SshNet.xml",
  3056. "lib/sl4/Renci.SshNet.dll",
  3057. "lib/sl4/Renci.SshNet.xml",
  3058. "lib/sl5/Renci.SshNet.dll",
  3059. "lib/sl5/Renci.SshNet.xml",
  3060. "lib/uap10/Renci.SshNet.dll",
  3061. "lib/uap10/Renci.SshNet.xml",
  3062. "lib/wp71/Renci.SshNet.dll",
  3063. "lib/wp71/Renci.SshNet.xml",
  3064. "lib/wp8/Renci.SshNet.dll",
  3065. "lib/wp8/Renci.SshNet.xml",
  3066. "ssh.net.2016.1.0.nupkg.sha512",
  3067. "ssh.net.nuspec"
  3068. ]
  3069. },
  3070. "SshNet.Security.Cryptography/1.2.0": {
  3071. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3072. "type": "package",
  3073. "path": "sshnet.security.cryptography/1.2.0",
  3074. "files": [
  3075. ".nupkg.metadata",
  3076. ".signature.p7s",
  3077. "lib/net20/SshNet.Security.Cryptography.dll",
  3078. "lib/net20/SshNet.Security.Cryptography.xml",
  3079. "lib/net40/SshNet.Security.Cryptography.dll",
  3080. "lib/net40/SshNet.Security.Cryptography.xml",
  3081. "lib/net45/SshNet.Security.Cryptography.dll",
  3082. "lib/net45/SshNet.Security.Cryptography.xml",
  3083. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3084. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3085. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3086. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3087. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3088. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3089. "lib/sl4/SshNet.Security.Cryptography.dll",
  3090. "lib/sl4/SshNet.Security.Cryptography.xml",
  3091. "lib/sl5/SshNet.Security.Cryptography.dll",
  3092. "lib/sl5/SshNet.Security.Cryptography.xml",
  3093. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3094. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3095. "lib/wp71/SshNet.Security.Cryptography.dll",
  3096. "lib/wp71/SshNet.Security.Cryptography.xml",
  3097. "lib/wp8/SshNet.Security.Cryptography.dll",
  3098. "lib/wp8/SshNet.Security.Cryptography.xml",
  3099. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3100. "sshnet.security.cryptography.nuspec"
  3101. ]
  3102. },
  3103. "System.AppContext/4.1.0": {
  3104. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  3105. "type": "package",
  3106. "path": "system.appcontext/4.1.0",
  3107. "files": [
  3108. ".nupkg.metadata",
  3109. "ThirdPartyNotices.txt",
  3110. "dotnet_library_license.txt",
  3111. "lib/MonoAndroid10/_._",
  3112. "lib/MonoTouch10/_._",
  3113. "lib/net46/System.AppContext.dll",
  3114. "lib/net463/System.AppContext.dll",
  3115. "lib/netcore50/System.AppContext.dll",
  3116. "lib/netstandard1.6/System.AppContext.dll",
  3117. "lib/xamarinios10/_._",
  3118. "lib/xamarinmac20/_._",
  3119. "lib/xamarintvos10/_._",
  3120. "lib/xamarinwatchos10/_._",
  3121. "ref/MonoAndroid10/_._",
  3122. "ref/MonoTouch10/_._",
  3123. "ref/net46/System.AppContext.dll",
  3124. "ref/net463/System.AppContext.dll",
  3125. "ref/netstandard/_._",
  3126. "ref/netstandard1.3/System.AppContext.dll",
  3127. "ref/netstandard1.3/System.AppContext.xml",
  3128. "ref/netstandard1.3/de/System.AppContext.xml",
  3129. "ref/netstandard1.3/es/System.AppContext.xml",
  3130. "ref/netstandard1.3/fr/System.AppContext.xml",
  3131. "ref/netstandard1.3/it/System.AppContext.xml",
  3132. "ref/netstandard1.3/ja/System.AppContext.xml",
  3133. "ref/netstandard1.3/ko/System.AppContext.xml",
  3134. "ref/netstandard1.3/ru/System.AppContext.xml",
  3135. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3136. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3137. "ref/netstandard1.6/System.AppContext.dll",
  3138. "ref/netstandard1.6/System.AppContext.xml",
  3139. "ref/netstandard1.6/de/System.AppContext.xml",
  3140. "ref/netstandard1.6/es/System.AppContext.xml",
  3141. "ref/netstandard1.6/fr/System.AppContext.xml",
  3142. "ref/netstandard1.6/it/System.AppContext.xml",
  3143. "ref/netstandard1.6/ja/System.AppContext.xml",
  3144. "ref/netstandard1.6/ko/System.AppContext.xml",
  3145. "ref/netstandard1.6/ru/System.AppContext.xml",
  3146. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3147. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3148. "ref/xamarinios10/_._",
  3149. "ref/xamarinmac20/_._",
  3150. "ref/xamarintvos10/_._",
  3151. "ref/xamarinwatchos10/_._",
  3152. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3153. "system.appcontext.4.1.0.nupkg.sha512",
  3154. "system.appcontext.nuspec"
  3155. ]
  3156. },
  3157. "System.Buffers/4.5.1": {
  3158. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3159. "type": "package",
  3160. "path": "system.buffers/4.5.1",
  3161. "files": [
  3162. ".nupkg.metadata",
  3163. ".signature.p7s",
  3164. "LICENSE.TXT",
  3165. "THIRD-PARTY-NOTICES.TXT",
  3166. "lib/net461/System.Buffers.dll",
  3167. "lib/net461/System.Buffers.xml",
  3168. "lib/netcoreapp2.0/_._",
  3169. "lib/netstandard1.1/System.Buffers.dll",
  3170. "lib/netstandard1.1/System.Buffers.xml",
  3171. "lib/netstandard2.0/System.Buffers.dll",
  3172. "lib/netstandard2.0/System.Buffers.xml",
  3173. "lib/uap10.0.16299/_._",
  3174. "ref/net45/System.Buffers.dll",
  3175. "ref/net45/System.Buffers.xml",
  3176. "ref/netcoreapp2.0/_._",
  3177. "ref/netstandard1.1/System.Buffers.dll",
  3178. "ref/netstandard1.1/System.Buffers.xml",
  3179. "ref/netstandard2.0/System.Buffers.dll",
  3180. "ref/netstandard2.0/System.Buffers.xml",
  3181. "ref/uap10.0.16299/_._",
  3182. "system.buffers.4.5.1.nupkg.sha512",
  3183. "system.buffers.nuspec",
  3184. "useSharedDesignerContext.txt",
  3185. "version.txt"
  3186. ]
  3187. },
  3188. "System.Collections/4.0.11": {
  3189. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  3190. "type": "package",
  3191. "path": "system.collections/4.0.11",
  3192. "files": [
  3193. ".nupkg.metadata",
  3194. "ThirdPartyNotices.txt",
  3195. "dotnet_library_license.txt",
  3196. "lib/MonoAndroid10/_._",
  3197. "lib/MonoTouch10/_._",
  3198. "lib/net45/_._",
  3199. "lib/portable-net45+win8+wp8+wpa81/_._",
  3200. "lib/win8/_._",
  3201. "lib/wp80/_._",
  3202. "lib/wpa81/_._",
  3203. "lib/xamarinios10/_._",
  3204. "lib/xamarinmac20/_._",
  3205. "lib/xamarintvos10/_._",
  3206. "lib/xamarinwatchos10/_._",
  3207. "ref/MonoAndroid10/_._",
  3208. "ref/MonoTouch10/_._",
  3209. "ref/net45/_._",
  3210. "ref/netcore50/System.Collections.dll",
  3211. "ref/netcore50/System.Collections.xml",
  3212. "ref/netcore50/de/System.Collections.xml",
  3213. "ref/netcore50/es/System.Collections.xml",
  3214. "ref/netcore50/fr/System.Collections.xml",
  3215. "ref/netcore50/it/System.Collections.xml",
  3216. "ref/netcore50/ja/System.Collections.xml",
  3217. "ref/netcore50/ko/System.Collections.xml",
  3218. "ref/netcore50/ru/System.Collections.xml",
  3219. "ref/netcore50/zh-hans/System.Collections.xml",
  3220. "ref/netcore50/zh-hant/System.Collections.xml",
  3221. "ref/netstandard1.0/System.Collections.dll",
  3222. "ref/netstandard1.0/System.Collections.xml",
  3223. "ref/netstandard1.0/de/System.Collections.xml",
  3224. "ref/netstandard1.0/es/System.Collections.xml",
  3225. "ref/netstandard1.0/fr/System.Collections.xml",
  3226. "ref/netstandard1.0/it/System.Collections.xml",
  3227. "ref/netstandard1.0/ja/System.Collections.xml",
  3228. "ref/netstandard1.0/ko/System.Collections.xml",
  3229. "ref/netstandard1.0/ru/System.Collections.xml",
  3230. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3231. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3232. "ref/netstandard1.3/System.Collections.dll",
  3233. "ref/netstandard1.3/System.Collections.xml",
  3234. "ref/netstandard1.3/de/System.Collections.xml",
  3235. "ref/netstandard1.3/es/System.Collections.xml",
  3236. "ref/netstandard1.3/fr/System.Collections.xml",
  3237. "ref/netstandard1.3/it/System.Collections.xml",
  3238. "ref/netstandard1.3/ja/System.Collections.xml",
  3239. "ref/netstandard1.3/ko/System.Collections.xml",
  3240. "ref/netstandard1.3/ru/System.Collections.xml",
  3241. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3242. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3243. "ref/portable-net45+win8+wp8+wpa81/_._",
  3244. "ref/win8/_._",
  3245. "ref/wp80/_._",
  3246. "ref/wpa81/_._",
  3247. "ref/xamarinios10/_._",
  3248. "ref/xamarinmac20/_._",
  3249. "ref/xamarintvos10/_._",
  3250. "ref/xamarinwatchos10/_._",
  3251. "system.collections.4.0.11.nupkg.sha512",
  3252. "system.collections.nuspec"
  3253. ]
  3254. },
  3255. "System.Collections.Concurrent/4.0.12": {
  3256. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  3257. "type": "package",
  3258. "path": "system.collections.concurrent/4.0.12",
  3259. "files": [
  3260. ".nupkg.metadata",
  3261. "ThirdPartyNotices.txt",
  3262. "dotnet_library_license.txt",
  3263. "lib/MonoAndroid10/_._",
  3264. "lib/MonoTouch10/_._",
  3265. "lib/net45/_._",
  3266. "lib/netcore50/System.Collections.Concurrent.dll",
  3267. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3268. "lib/portable-net45+win8+wpa81/_._",
  3269. "lib/win8/_._",
  3270. "lib/wpa81/_._",
  3271. "lib/xamarinios10/_._",
  3272. "lib/xamarinmac20/_._",
  3273. "lib/xamarintvos10/_._",
  3274. "lib/xamarinwatchos10/_._",
  3275. "ref/MonoAndroid10/_._",
  3276. "ref/MonoTouch10/_._",
  3277. "ref/net45/_._",
  3278. "ref/netcore50/System.Collections.Concurrent.dll",
  3279. "ref/netcore50/System.Collections.Concurrent.xml",
  3280. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3281. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3282. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3283. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3284. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3285. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3286. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3287. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3288. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3289. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3290. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3291. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3292. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3293. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3294. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3295. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3296. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3297. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3298. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3299. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3300. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3301. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3302. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3303. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3304. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3305. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3306. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3307. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3308. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3309. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3310. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3311. "ref/portable-net45+win8+wpa81/_._",
  3312. "ref/win8/_._",
  3313. "ref/wpa81/_._",
  3314. "ref/xamarinios10/_._",
  3315. "ref/xamarinmac20/_._",
  3316. "ref/xamarintvos10/_._",
  3317. "ref/xamarinwatchos10/_._",
  3318. "system.collections.concurrent.4.0.12.nupkg.sha512",
  3319. "system.collections.concurrent.nuspec"
  3320. ]
  3321. },
  3322. "System.Collections.Immutable/5.0.0": {
  3323. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  3324. "type": "package",
  3325. "path": "system.collections.immutable/5.0.0",
  3326. "files": [
  3327. ".nupkg.metadata",
  3328. ".signature.p7s",
  3329. "Icon.png",
  3330. "LICENSE.TXT",
  3331. "THIRD-PARTY-NOTICES.TXT",
  3332. "lib/net461/System.Collections.Immutable.dll",
  3333. "lib/net461/System.Collections.Immutable.xml",
  3334. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3335. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3336. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3337. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3338. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3339. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3340. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3341. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3342. "system.collections.immutable.5.0.0.nupkg.sha512",
  3343. "system.collections.immutable.nuspec",
  3344. "useSharedDesignerContext.txt",
  3345. "version.txt"
  3346. ]
  3347. },
  3348. "System.ComponentModel.Annotations/5.0.0": {
  3349. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  3350. "type": "package",
  3351. "path": "system.componentmodel.annotations/5.0.0",
  3352. "files": [
  3353. ".nupkg.metadata",
  3354. ".signature.p7s",
  3355. "Icon.png",
  3356. "LICENSE.TXT",
  3357. "THIRD-PARTY-NOTICES.TXT",
  3358. "lib/MonoAndroid10/_._",
  3359. "lib/MonoTouch10/_._",
  3360. "lib/net45/_._",
  3361. "lib/net461/System.ComponentModel.Annotations.dll",
  3362. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3363. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3364. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3365. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3366. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3367. "lib/portable-net45+win8/_._",
  3368. "lib/win8/_._",
  3369. "lib/xamarinios10/_._",
  3370. "lib/xamarinmac20/_._",
  3371. "lib/xamarintvos10/_._",
  3372. "lib/xamarinwatchos10/_._",
  3373. "ref/MonoAndroid10/_._",
  3374. "ref/MonoTouch10/_._",
  3375. "ref/net45/_._",
  3376. "ref/net461/System.ComponentModel.Annotations.dll",
  3377. "ref/net461/System.ComponentModel.Annotations.xml",
  3378. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3379. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3380. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3381. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3382. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3383. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3384. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3385. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3386. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3387. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3388. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3389. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3390. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3391. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3392. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3393. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3394. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3395. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3396. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3397. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3398. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3399. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3400. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3401. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3402. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3403. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3404. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3405. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3406. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3407. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3408. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3409. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3410. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3411. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3412. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3413. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3414. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3415. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3416. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3417. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3418. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3419. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3420. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3421. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3422. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3423. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3424. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3425. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3426. "ref/portable-net45+win8/_._",
  3427. "ref/win8/_._",
  3428. "ref/xamarinios10/_._",
  3429. "ref/xamarinmac20/_._",
  3430. "ref/xamarintvos10/_._",
  3431. "ref/xamarinwatchos10/_._",
  3432. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  3433. "system.componentmodel.annotations.nuspec",
  3434. "useSharedDesignerContext.txt",
  3435. "version.txt"
  3436. ]
  3437. },
  3438. "System.Configuration.ConfigurationManager/4.4.1": {
  3439. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  3440. "type": "package",
  3441. "path": "system.configuration.configurationmanager/4.4.1",
  3442. "files": [
  3443. ".nupkg.metadata",
  3444. ".signature.p7s",
  3445. "LICENSE.TXT",
  3446. "THIRD-PARTY-NOTICES.TXT",
  3447. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3448. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3449. "ref/net461/System.Configuration.ConfigurationManager.dll",
  3450. "ref/net461/System.Configuration.ConfigurationManager.xml",
  3451. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3452. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3453. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  3454. "system.configuration.configurationmanager.nuspec",
  3455. "useSharedDesignerContext.txt",
  3456. "version.txt"
  3457. ]
  3458. },
  3459. "System.Console/4.0.0": {
  3460. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  3461. "type": "package",
  3462. "path": "system.console/4.0.0",
  3463. "files": [
  3464. ".nupkg.metadata",
  3465. "ThirdPartyNotices.txt",
  3466. "dotnet_library_license.txt",
  3467. "lib/MonoAndroid10/_._",
  3468. "lib/MonoTouch10/_._",
  3469. "lib/net46/System.Console.dll",
  3470. "lib/xamarinios10/_._",
  3471. "lib/xamarinmac20/_._",
  3472. "lib/xamarintvos10/_._",
  3473. "lib/xamarinwatchos10/_._",
  3474. "ref/MonoAndroid10/_._",
  3475. "ref/MonoTouch10/_._",
  3476. "ref/net46/System.Console.dll",
  3477. "ref/netstandard1.3/System.Console.dll",
  3478. "ref/netstandard1.3/System.Console.xml",
  3479. "ref/netstandard1.3/de/System.Console.xml",
  3480. "ref/netstandard1.3/es/System.Console.xml",
  3481. "ref/netstandard1.3/fr/System.Console.xml",
  3482. "ref/netstandard1.3/it/System.Console.xml",
  3483. "ref/netstandard1.3/ja/System.Console.xml",
  3484. "ref/netstandard1.3/ko/System.Console.xml",
  3485. "ref/netstandard1.3/ru/System.Console.xml",
  3486. "ref/netstandard1.3/zh-hans/System.Console.xml",
  3487. "ref/netstandard1.3/zh-hant/System.Console.xml",
  3488. "ref/xamarinios10/_._",
  3489. "ref/xamarinmac20/_._",
  3490. "ref/xamarintvos10/_._",
  3491. "ref/xamarinwatchos10/_._",
  3492. "system.console.4.0.0.nupkg.sha512",
  3493. "system.console.nuspec"
  3494. ]
  3495. },
  3496. "System.Data.SqlClient/4.8.3": {
  3497. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  3498. "type": "package",
  3499. "path": "system.data.sqlclient/4.8.3",
  3500. "files": [
  3501. ".nupkg.metadata",
  3502. ".signature.p7s",
  3503. "Icon.png",
  3504. "LICENSE.TXT",
  3505. "THIRD-PARTY-NOTICES.TXT",
  3506. "lib/MonoAndroid10/_._",
  3507. "lib/MonoTouch10/_._",
  3508. "lib/net451/System.Data.SqlClient.dll",
  3509. "lib/net46/System.Data.SqlClient.dll",
  3510. "lib/net461/System.Data.SqlClient.dll",
  3511. "lib/net461/System.Data.SqlClient.xml",
  3512. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3513. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3514. "lib/netstandard1.2/System.Data.SqlClient.dll",
  3515. "lib/netstandard1.2/System.Data.SqlClient.xml",
  3516. "lib/netstandard1.3/System.Data.SqlClient.dll",
  3517. "lib/netstandard1.3/System.Data.SqlClient.xml",
  3518. "lib/netstandard2.0/System.Data.SqlClient.dll",
  3519. "lib/netstandard2.0/System.Data.SqlClient.xml",
  3520. "lib/xamarinios10/_._",
  3521. "lib/xamarinmac20/_._",
  3522. "lib/xamarintvos10/_._",
  3523. "lib/xamarinwatchos10/_._",
  3524. "ref/MonoAndroid10/_._",
  3525. "ref/MonoTouch10/_._",
  3526. "ref/net451/System.Data.SqlClient.dll",
  3527. "ref/net46/System.Data.SqlClient.dll",
  3528. "ref/net461/System.Data.SqlClient.dll",
  3529. "ref/net461/System.Data.SqlClient.xml",
  3530. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  3531. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  3532. "ref/netstandard1.2/System.Data.SqlClient.dll",
  3533. "ref/netstandard1.2/System.Data.SqlClient.xml",
  3534. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  3535. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  3536. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  3537. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  3538. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  3539. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  3540. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  3541. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  3542. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  3543. "ref/netstandard1.3/System.Data.SqlClient.dll",
  3544. "ref/netstandard1.3/System.Data.SqlClient.xml",
  3545. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  3546. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  3547. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  3548. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  3549. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  3550. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  3551. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  3552. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  3553. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  3554. "ref/netstandard2.0/System.Data.SqlClient.dll",
  3555. "ref/netstandard2.0/System.Data.SqlClient.xml",
  3556. "ref/xamarinios10/_._",
  3557. "ref/xamarinmac20/_._",
  3558. "ref/xamarintvos10/_._",
  3559. "ref/xamarinwatchos10/_._",
  3560. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3561. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3562. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  3563. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  3564. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  3565. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  3566. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  3567. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  3568. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  3569. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3570. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3571. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  3572. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  3573. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  3574. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  3575. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  3576. "system.data.sqlclient.4.8.3.nupkg.sha512",
  3577. "system.data.sqlclient.nuspec",
  3578. "useSharedDesignerContext.txt",
  3579. "version.txt"
  3580. ]
  3581. },
  3582. "System.Diagnostics.Debug/4.0.11": {
  3583. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  3584. "type": "package",
  3585. "path": "system.diagnostics.debug/4.0.11",
  3586. "files": [
  3587. ".nupkg.metadata",
  3588. "ThirdPartyNotices.txt",
  3589. "dotnet_library_license.txt",
  3590. "lib/MonoAndroid10/_._",
  3591. "lib/MonoTouch10/_._",
  3592. "lib/net45/_._",
  3593. "lib/portable-net45+win8+wp8+wpa81/_._",
  3594. "lib/win8/_._",
  3595. "lib/wp80/_._",
  3596. "lib/wpa81/_._",
  3597. "lib/xamarinios10/_._",
  3598. "lib/xamarinmac20/_._",
  3599. "lib/xamarintvos10/_._",
  3600. "lib/xamarinwatchos10/_._",
  3601. "ref/MonoAndroid10/_._",
  3602. "ref/MonoTouch10/_._",
  3603. "ref/net45/_._",
  3604. "ref/netcore50/System.Diagnostics.Debug.dll",
  3605. "ref/netcore50/System.Diagnostics.Debug.xml",
  3606. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3607. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3608. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3609. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3610. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3611. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3612. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3613. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3614. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3615. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3616. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3617. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3618. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3619. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3620. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3621. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3622. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3623. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3624. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3625. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3626. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3627. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3628. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3629. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3630. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3631. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3632. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3633. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3634. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3635. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3636. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3637. "ref/portable-net45+win8+wp8+wpa81/_._",
  3638. "ref/win8/_._",
  3639. "ref/wp80/_._",
  3640. "ref/wpa81/_._",
  3641. "ref/xamarinios10/_._",
  3642. "ref/xamarinmac20/_._",
  3643. "ref/xamarintvos10/_._",
  3644. "ref/xamarinwatchos10/_._",
  3645. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  3646. "system.diagnostics.debug.nuspec"
  3647. ]
  3648. },
  3649. "System.Diagnostics.DiagnosticSource/5.0.1": {
  3650. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  3651. "type": "package",
  3652. "path": "system.diagnostics.diagnosticsource/5.0.1",
  3653. "files": [
  3654. ".nupkg.metadata",
  3655. ".signature.p7s",
  3656. "Icon.png",
  3657. "LICENSE.TXT",
  3658. "THIRD-PARTY-NOTICES.TXT",
  3659. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  3660. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  3661. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  3662. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  3663. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  3664. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  3665. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  3666. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  3667. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  3668. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  3669. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  3670. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  3671. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  3672. "system.diagnostics.diagnosticsource.nuspec",
  3673. "useSharedDesignerContext.txt",
  3674. "version.txt"
  3675. ]
  3676. },
  3677. "System.Diagnostics.Tools/4.0.1": {
  3678. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  3679. "type": "package",
  3680. "path": "system.diagnostics.tools/4.0.1",
  3681. "files": [
  3682. ".nupkg.metadata",
  3683. "ThirdPartyNotices.txt",
  3684. "dotnet_library_license.txt",
  3685. "lib/MonoAndroid10/_._",
  3686. "lib/MonoTouch10/_._",
  3687. "lib/net45/_._",
  3688. "lib/portable-net45+win8+wp8+wpa81/_._",
  3689. "lib/win8/_._",
  3690. "lib/wp80/_._",
  3691. "lib/wpa81/_._",
  3692. "lib/xamarinios10/_._",
  3693. "lib/xamarinmac20/_._",
  3694. "lib/xamarintvos10/_._",
  3695. "lib/xamarinwatchos10/_._",
  3696. "ref/MonoAndroid10/_._",
  3697. "ref/MonoTouch10/_._",
  3698. "ref/net45/_._",
  3699. "ref/netcore50/System.Diagnostics.Tools.dll",
  3700. "ref/netcore50/System.Diagnostics.Tools.xml",
  3701. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  3702. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  3703. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  3704. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  3705. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  3706. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  3707. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  3708. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  3709. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  3710. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  3711. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  3712. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  3713. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  3714. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  3715. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  3716. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  3717. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  3718. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  3719. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  3720. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  3721. "ref/portable-net45+win8+wp8+wpa81/_._",
  3722. "ref/win8/_._",
  3723. "ref/wp80/_._",
  3724. "ref/wpa81/_._",
  3725. "ref/xamarinios10/_._",
  3726. "ref/xamarinmac20/_._",
  3727. "ref/xamarintvos10/_._",
  3728. "ref/xamarinwatchos10/_._",
  3729. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  3730. "system.diagnostics.tools.nuspec"
  3731. ]
  3732. },
  3733. "System.Diagnostics.TraceSource/4.0.0": {
  3734. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  3735. "type": "package",
  3736. "path": "system.diagnostics.tracesource/4.0.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "ThirdPartyNotices.txt",
  3741. "dotnet_library_license.txt",
  3742. "lib/MonoAndroid10/_._",
  3743. "lib/MonoTouch10/_._",
  3744. "lib/net46/System.Diagnostics.TraceSource.dll",
  3745. "lib/xamarinios10/_._",
  3746. "lib/xamarinmac20/_._",
  3747. "lib/xamarintvos10/_._",
  3748. "lib/xamarinwatchos10/_._",
  3749. "ref/MonoAndroid10/_._",
  3750. "ref/MonoTouch10/_._",
  3751. "ref/net46/System.Diagnostics.TraceSource.dll",
  3752. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3753. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  3754. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  3755. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  3756. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  3757. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  3758. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  3759. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  3760. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  3761. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  3762. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  3763. "ref/xamarinios10/_._",
  3764. "ref/xamarinmac20/_._",
  3765. "ref/xamarintvos10/_._",
  3766. "ref/xamarinwatchos10/_._",
  3767. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3768. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  3769. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  3770. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  3771. "system.diagnostics.tracesource.nuspec"
  3772. ]
  3773. },
  3774. "System.Diagnostics.Tracing/4.1.0": {
  3775. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  3776. "type": "package",
  3777. "path": "system.diagnostics.tracing/4.1.0",
  3778. "files": [
  3779. ".nupkg.metadata",
  3780. "ThirdPartyNotices.txt",
  3781. "dotnet_library_license.txt",
  3782. "lib/MonoAndroid10/_._",
  3783. "lib/MonoTouch10/_._",
  3784. "lib/net45/_._",
  3785. "lib/net462/System.Diagnostics.Tracing.dll",
  3786. "lib/portable-net45+win8+wpa81/_._",
  3787. "lib/win8/_._",
  3788. "lib/wpa81/_._",
  3789. "lib/xamarinios10/_._",
  3790. "lib/xamarinmac20/_._",
  3791. "lib/xamarintvos10/_._",
  3792. "lib/xamarinwatchos10/_._",
  3793. "ref/MonoAndroid10/_._",
  3794. "ref/MonoTouch10/_._",
  3795. "ref/net45/_._",
  3796. "ref/net462/System.Diagnostics.Tracing.dll",
  3797. "ref/netcore50/System.Diagnostics.Tracing.dll",
  3798. "ref/netcore50/System.Diagnostics.Tracing.xml",
  3799. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  3800. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  3801. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  3802. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  3803. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  3804. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  3805. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  3806. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  3807. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  3808. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  3809. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  3810. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  3811. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  3812. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  3813. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  3814. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  3815. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  3816. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  3817. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  3818. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  3819. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  3820. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  3821. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  3822. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  3823. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  3824. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  3825. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  3826. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  3827. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  3828. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  3829. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  3830. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  3831. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  3832. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  3833. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  3834. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  3835. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  3836. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  3837. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  3838. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  3839. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  3840. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  3841. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  3842. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  3843. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  3844. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  3845. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  3846. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  3847. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  3848. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  3849. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  3850. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  3851. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  3852. "ref/portable-net45+win8+wpa81/_._",
  3853. "ref/win8/_._",
  3854. "ref/wpa81/_._",
  3855. "ref/xamarinios10/_._",
  3856. "ref/xamarinmac20/_._",
  3857. "ref/xamarintvos10/_._",
  3858. "ref/xamarinwatchos10/_._",
  3859. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  3860. "system.diagnostics.tracing.nuspec"
  3861. ]
  3862. },
  3863. "System.Drawing.Common/4.7.0": {
  3864. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  3865. "type": "package",
  3866. "path": "system.drawing.common/4.7.0",
  3867. "files": [
  3868. ".nupkg.metadata",
  3869. ".signature.p7s",
  3870. "LICENSE.TXT",
  3871. "THIRD-PARTY-NOTICES.TXT",
  3872. "lib/MonoAndroid10/_._",
  3873. "lib/MonoTouch10/_._",
  3874. "lib/net461/System.Drawing.Common.dll",
  3875. "lib/netstandard2.0/System.Drawing.Common.dll",
  3876. "lib/xamarinios10/_._",
  3877. "lib/xamarinmac20/_._",
  3878. "lib/xamarintvos10/_._",
  3879. "lib/xamarinwatchos10/_._",
  3880. "ref/MonoAndroid10/_._",
  3881. "ref/MonoTouch10/_._",
  3882. "ref/net461/System.Drawing.Common.dll",
  3883. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  3884. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  3885. "ref/netstandard2.0/System.Drawing.Common.dll",
  3886. "ref/xamarinios10/_._",
  3887. "ref/xamarinmac20/_._",
  3888. "ref/xamarintvos10/_._",
  3889. "ref/xamarinwatchos10/_._",
  3890. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3891. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3892. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3893. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3894. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3895. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3896. "system.drawing.common.4.7.0.nupkg.sha512",
  3897. "system.drawing.common.nuspec",
  3898. "useSharedDesignerContext.txt",
  3899. "version.txt"
  3900. ]
  3901. },
  3902. "System.Globalization/4.0.11": {
  3903. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  3904. "type": "package",
  3905. "path": "system.globalization/4.0.11",
  3906. "files": [
  3907. ".nupkg.metadata",
  3908. "ThirdPartyNotices.txt",
  3909. "dotnet_library_license.txt",
  3910. "lib/MonoAndroid10/_._",
  3911. "lib/MonoTouch10/_._",
  3912. "lib/net45/_._",
  3913. "lib/portable-net45+win8+wp8+wpa81/_._",
  3914. "lib/win8/_._",
  3915. "lib/wp80/_._",
  3916. "lib/wpa81/_._",
  3917. "lib/xamarinios10/_._",
  3918. "lib/xamarinmac20/_._",
  3919. "lib/xamarintvos10/_._",
  3920. "lib/xamarinwatchos10/_._",
  3921. "ref/MonoAndroid10/_._",
  3922. "ref/MonoTouch10/_._",
  3923. "ref/net45/_._",
  3924. "ref/netcore50/System.Globalization.dll",
  3925. "ref/netcore50/System.Globalization.xml",
  3926. "ref/netcore50/de/System.Globalization.xml",
  3927. "ref/netcore50/es/System.Globalization.xml",
  3928. "ref/netcore50/fr/System.Globalization.xml",
  3929. "ref/netcore50/it/System.Globalization.xml",
  3930. "ref/netcore50/ja/System.Globalization.xml",
  3931. "ref/netcore50/ko/System.Globalization.xml",
  3932. "ref/netcore50/ru/System.Globalization.xml",
  3933. "ref/netcore50/zh-hans/System.Globalization.xml",
  3934. "ref/netcore50/zh-hant/System.Globalization.xml",
  3935. "ref/netstandard1.0/System.Globalization.dll",
  3936. "ref/netstandard1.0/System.Globalization.xml",
  3937. "ref/netstandard1.0/de/System.Globalization.xml",
  3938. "ref/netstandard1.0/es/System.Globalization.xml",
  3939. "ref/netstandard1.0/fr/System.Globalization.xml",
  3940. "ref/netstandard1.0/it/System.Globalization.xml",
  3941. "ref/netstandard1.0/ja/System.Globalization.xml",
  3942. "ref/netstandard1.0/ko/System.Globalization.xml",
  3943. "ref/netstandard1.0/ru/System.Globalization.xml",
  3944. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3945. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3946. "ref/netstandard1.3/System.Globalization.dll",
  3947. "ref/netstandard1.3/System.Globalization.xml",
  3948. "ref/netstandard1.3/de/System.Globalization.xml",
  3949. "ref/netstandard1.3/es/System.Globalization.xml",
  3950. "ref/netstandard1.3/fr/System.Globalization.xml",
  3951. "ref/netstandard1.3/it/System.Globalization.xml",
  3952. "ref/netstandard1.3/ja/System.Globalization.xml",
  3953. "ref/netstandard1.3/ko/System.Globalization.xml",
  3954. "ref/netstandard1.3/ru/System.Globalization.xml",
  3955. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3956. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3957. "ref/portable-net45+win8+wp8+wpa81/_._",
  3958. "ref/win8/_._",
  3959. "ref/wp80/_._",
  3960. "ref/wpa81/_._",
  3961. "ref/xamarinios10/_._",
  3962. "ref/xamarinmac20/_._",
  3963. "ref/xamarintvos10/_._",
  3964. "ref/xamarinwatchos10/_._",
  3965. "system.globalization.4.0.11.nupkg.sha512",
  3966. "system.globalization.nuspec"
  3967. ]
  3968. },
  3969. "System.Globalization.Calendars/4.0.1": {
  3970. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  3971. "type": "package",
  3972. "path": "system.globalization.calendars/4.0.1",
  3973. "files": [
  3974. ".nupkg.metadata",
  3975. "ThirdPartyNotices.txt",
  3976. "dotnet_library_license.txt",
  3977. "lib/MonoAndroid10/_._",
  3978. "lib/MonoTouch10/_._",
  3979. "lib/net46/System.Globalization.Calendars.dll",
  3980. "lib/xamarinios10/_._",
  3981. "lib/xamarinmac20/_._",
  3982. "lib/xamarintvos10/_._",
  3983. "lib/xamarinwatchos10/_._",
  3984. "ref/MonoAndroid10/_._",
  3985. "ref/MonoTouch10/_._",
  3986. "ref/net46/System.Globalization.Calendars.dll",
  3987. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  3988. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  3989. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  3990. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  3991. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  3992. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  3993. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  3994. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  3995. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  3996. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  3997. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  3998. "ref/xamarinios10/_._",
  3999. "ref/xamarinmac20/_._",
  4000. "ref/xamarintvos10/_._",
  4001. "ref/xamarinwatchos10/_._",
  4002. "system.globalization.calendars.4.0.1.nupkg.sha512",
  4003. "system.globalization.calendars.nuspec"
  4004. ]
  4005. },
  4006. "System.Globalization.Extensions/4.0.1": {
  4007. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  4008. "type": "package",
  4009. "path": "system.globalization.extensions/4.0.1",
  4010. "files": [
  4011. ".nupkg.metadata",
  4012. "ThirdPartyNotices.txt",
  4013. "dotnet_library_license.txt",
  4014. "lib/MonoAndroid10/_._",
  4015. "lib/MonoTouch10/_._",
  4016. "lib/net46/System.Globalization.Extensions.dll",
  4017. "lib/xamarinios10/_._",
  4018. "lib/xamarinmac20/_._",
  4019. "lib/xamarintvos10/_._",
  4020. "lib/xamarinwatchos10/_._",
  4021. "ref/MonoAndroid10/_._",
  4022. "ref/MonoTouch10/_._",
  4023. "ref/net46/System.Globalization.Extensions.dll",
  4024. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4025. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4026. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4027. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4028. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4029. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4030. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4031. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4032. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4033. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4034. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4035. "ref/xamarinios10/_._",
  4036. "ref/xamarinmac20/_._",
  4037. "ref/xamarintvos10/_._",
  4038. "ref/xamarinwatchos10/_._",
  4039. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4040. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4041. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4042. "system.globalization.extensions.4.0.1.nupkg.sha512",
  4043. "system.globalization.extensions.nuspec"
  4044. ]
  4045. },
  4046. "System.IO/4.3.0": {
  4047. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4048. "type": "package",
  4049. "path": "system.io/4.3.0",
  4050. "files": [
  4051. ".nupkg.metadata",
  4052. ".signature.p7s",
  4053. "ThirdPartyNotices.txt",
  4054. "dotnet_library_license.txt",
  4055. "lib/MonoAndroid10/_._",
  4056. "lib/MonoTouch10/_._",
  4057. "lib/net45/_._",
  4058. "lib/net462/System.IO.dll",
  4059. "lib/portable-net45+win8+wp8+wpa81/_._",
  4060. "lib/win8/_._",
  4061. "lib/wp80/_._",
  4062. "lib/wpa81/_._",
  4063. "lib/xamarinios10/_._",
  4064. "lib/xamarinmac20/_._",
  4065. "lib/xamarintvos10/_._",
  4066. "lib/xamarinwatchos10/_._",
  4067. "ref/MonoAndroid10/_._",
  4068. "ref/MonoTouch10/_._",
  4069. "ref/net45/_._",
  4070. "ref/net462/System.IO.dll",
  4071. "ref/netcore50/System.IO.dll",
  4072. "ref/netcore50/System.IO.xml",
  4073. "ref/netcore50/de/System.IO.xml",
  4074. "ref/netcore50/es/System.IO.xml",
  4075. "ref/netcore50/fr/System.IO.xml",
  4076. "ref/netcore50/it/System.IO.xml",
  4077. "ref/netcore50/ja/System.IO.xml",
  4078. "ref/netcore50/ko/System.IO.xml",
  4079. "ref/netcore50/ru/System.IO.xml",
  4080. "ref/netcore50/zh-hans/System.IO.xml",
  4081. "ref/netcore50/zh-hant/System.IO.xml",
  4082. "ref/netstandard1.0/System.IO.dll",
  4083. "ref/netstandard1.0/System.IO.xml",
  4084. "ref/netstandard1.0/de/System.IO.xml",
  4085. "ref/netstandard1.0/es/System.IO.xml",
  4086. "ref/netstandard1.0/fr/System.IO.xml",
  4087. "ref/netstandard1.0/it/System.IO.xml",
  4088. "ref/netstandard1.0/ja/System.IO.xml",
  4089. "ref/netstandard1.0/ko/System.IO.xml",
  4090. "ref/netstandard1.0/ru/System.IO.xml",
  4091. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4092. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4093. "ref/netstandard1.3/System.IO.dll",
  4094. "ref/netstandard1.3/System.IO.xml",
  4095. "ref/netstandard1.3/de/System.IO.xml",
  4096. "ref/netstandard1.3/es/System.IO.xml",
  4097. "ref/netstandard1.3/fr/System.IO.xml",
  4098. "ref/netstandard1.3/it/System.IO.xml",
  4099. "ref/netstandard1.3/ja/System.IO.xml",
  4100. "ref/netstandard1.3/ko/System.IO.xml",
  4101. "ref/netstandard1.3/ru/System.IO.xml",
  4102. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4103. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4104. "ref/netstandard1.5/System.IO.dll",
  4105. "ref/netstandard1.5/System.IO.xml",
  4106. "ref/netstandard1.5/de/System.IO.xml",
  4107. "ref/netstandard1.5/es/System.IO.xml",
  4108. "ref/netstandard1.5/fr/System.IO.xml",
  4109. "ref/netstandard1.5/it/System.IO.xml",
  4110. "ref/netstandard1.5/ja/System.IO.xml",
  4111. "ref/netstandard1.5/ko/System.IO.xml",
  4112. "ref/netstandard1.5/ru/System.IO.xml",
  4113. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4114. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4115. "ref/portable-net45+win8+wp8+wpa81/_._",
  4116. "ref/win8/_._",
  4117. "ref/wp80/_._",
  4118. "ref/wpa81/_._",
  4119. "ref/xamarinios10/_._",
  4120. "ref/xamarinmac20/_._",
  4121. "ref/xamarintvos10/_._",
  4122. "ref/xamarinwatchos10/_._",
  4123. "system.io.4.3.0.nupkg.sha512",
  4124. "system.io.nuspec"
  4125. ]
  4126. },
  4127. "System.IO.Compression/4.1.0": {
  4128. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  4129. "type": "package",
  4130. "path": "system.io.compression/4.1.0",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. "ThirdPartyNotices.txt",
  4134. "dotnet_library_license.txt",
  4135. "lib/MonoAndroid10/_._",
  4136. "lib/MonoTouch10/_._",
  4137. "lib/net45/_._",
  4138. "lib/net46/System.IO.Compression.dll",
  4139. "lib/portable-net45+win8+wpa81/_._",
  4140. "lib/win8/_._",
  4141. "lib/wpa81/_._",
  4142. "lib/xamarinios10/_._",
  4143. "lib/xamarinmac20/_._",
  4144. "lib/xamarintvos10/_._",
  4145. "lib/xamarinwatchos10/_._",
  4146. "ref/MonoAndroid10/_._",
  4147. "ref/MonoTouch10/_._",
  4148. "ref/net45/_._",
  4149. "ref/net46/System.IO.Compression.dll",
  4150. "ref/netcore50/System.IO.Compression.dll",
  4151. "ref/netcore50/System.IO.Compression.xml",
  4152. "ref/netcore50/de/System.IO.Compression.xml",
  4153. "ref/netcore50/es/System.IO.Compression.xml",
  4154. "ref/netcore50/fr/System.IO.Compression.xml",
  4155. "ref/netcore50/it/System.IO.Compression.xml",
  4156. "ref/netcore50/ja/System.IO.Compression.xml",
  4157. "ref/netcore50/ko/System.IO.Compression.xml",
  4158. "ref/netcore50/ru/System.IO.Compression.xml",
  4159. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4160. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4161. "ref/netstandard1.1/System.IO.Compression.dll",
  4162. "ref/netstandard1.1/System.IO.Compression.xml",
  4163. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4164. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4165. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4166. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4167. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4168. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4169. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4170. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4171. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4172. "ref/netstandard1.3/System.IO.Compression.dll",
  4173. "ref/netstandard1.3/System.IO.Compression.xml",
  4174. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4175. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4176. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4177. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4178. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4179. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4180. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4181. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4182. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4183. "ref/portable-net45+win8+wpa81/_._",
  4184. "ref/win8/_._",
  4185. "ref/wpa81/_._",
  4186. "ref/xamarinios10/_._",
  4187. "ref/xamarinmac20/_._",
  4188. "ref/xamarintvos10/_._",
  4189. "ref/xamarinwatchos10/_._",
  4190. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4191. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4192. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4193. "system.io.compression.4.1.0.nupkg.sha512",
  4194. "system.io.compression.nuspec"
  4195. ]
  4196. },
  4197. "System.IO.Compression.ZipFile/4.0.1": {
  4198. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  4199. "type": "package",
  4200. "path": "system.io.compression.zipfile/4.0.1",
  4201. "files": [
  4202. ".nupkg.metadata",
  4203. "ThirdPartyNotices.txt",
  4204. "dotnet_library_license.txt",
  4205. "lib/MonoAndroid10/_._",
  4206. "lib/MonoTouch10/_._",
  4207. "lib/net46/System.IO.Compression.ZipFile.dll",
  4208. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4209. "lib/xamarinios10/_._",
  4210. "lib/xamarinmac20/_._",
  4211. "lib/xamarintvos10/_._",
  4212. "lib/xamarinwatchos10/_._",
  4213. "ref/MonoAndroid10/_._",
  4214. "ref/MonoTouch10/_._",
  4215. "ref/net46/System.IO.Compression.ZipFile.dll",
  4216. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4217. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4218. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4219. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4220. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4221. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4222. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4223. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4224. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4225. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4226. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4227. "ref/xamarinios10/_._",
  4228. "ref/xamarinmac20/_._",
  4229. "ref/xamarintvos10/_._",
  4230. "ref/xamarinwatchos10/_._",
  4231. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  4232. "system.io.compression.zipfile.nuspec"
  4233. ]
  4234. },
  4235. "System.IO.FileSystem/4.0.1": {
  4236. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  4237. "type": "package",
  4238. "path": "system.io.filesystem/4.0.1",
  4239. "files": [
  4240. ".nupkg.metadata",
  4241. "ThirdPartyNotices.txt",
  4242. "dotnet_library_license.txt",
  4243. "lib/MonoAndroid10/_._",
  4244. "lib/MonoTouch10/_._",
  4245. "lib/net46/System.IO.FileSystem.dll",
  4246. "lib/xamarinios10/_._",
  4247. "lib/xamarinmac20/_._",
  4248. "lib/xamarintvos10/_._",
  4249. "lib/xamarinwatchos10/_._",
  4250. "ref/MonoAndroid10/_._",
  4251. "ref/MonoTouch10/_._",
  4252. "ref/net46/System.IO.FileSystem.dll",
  4253. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4254. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4255. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4256. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4257. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4258. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4259. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4260. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4261. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4262. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4263. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4264. "ref/xamarinios10/_._",
  4265. "ref/xamarinmac20/_._",
  4266. "ref/xamarintvos10/_._",
  4267. "ref/xamarinwatchos10/_._",
  4268. "system.io.filesystem.4.0.1.nupkg.sha512",
  4269. "system.io.filesystem.nuspec"
  4270. ]
  4271. },
  4272. "System.IO.FileSystem.Primitives/4.0.1": {
  4273. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  4274. "type": "package",
  4275. "path": "system.io.filesystem.primitives/4.0.1",
  4276. "files": [
  4277. ".nupkg.metadata",
  4278. "ThirdPartyNotices.txt",
  4279. "dotnet_library_license.txt",
  4280. "lib/MonoAndroid10/_._",
  4281. "lib/MonoTouch10/_._",
  4282. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4283. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4284. "lib/xamarinios10/_._",
  4285. "lib/xamarinmac20/_._",
  4286. "lib/xamarintvos10/_._",
  4287. "lib/xamarinwatchos10/_._",
  4288. "ref/MonoAndroid10/_._",
  4289. "ref/MonoTouch10/_._",
  4290. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4291. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4292. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4293. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4294. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4295. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4296. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4297. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4298. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4299. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4300. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4301. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4302. "ref/xamarinios10/_._",
  4303. "ref/xamarinmac20/_._",
  4304. "ref/xamarintvos10/_._",
  4305. "ref/xamarinwatchos10/_._",
  4306. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  4307. "system.io.filesystem.primitives.nuspec"
  4308. ]
  4309. },
  4310. "System.Linq/4.1.0": {
  4311. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  4312. "type": "package",
  4313. "path": "system.linq/4.1.0",
  4314. "files": [
  4315. ".nupkg.metadata",
  4316. "ThirdPartyNotices.txt",
  4317. "dotnet_library_license.txt",
  4318. "lib/MonoAndroid10/_._",
  4319. "lib/MonoTouch10/_._",
  4320. "lib/net45/_._",
  4321. "lib/net463/System.Linq.dll",
  4322. "lib/netcore50/System.Linq.dll",
  4323. "lib/netstandard1.6/System.Linq.dll",
  4324. "lib/portable-net45+win8+wp8+wpa81/_._",
  4325. "lib/win8/_._",
  4326. "lib/wp80/_._",
  4327. "lib/wpa81/_._",
  4328. "lib/xamarinios10/_._",
  4329. "lib/xamarinmac20/_._",
  4330. "lib/xamarintvos10/_._",
  4331. "lib/xamarinwatchos10/_._",
  4332. "ref/MonoAndroid10/_._",
  4333. "ref/MonoTouch10/_._",
  4334. "ref/net45/_._",
  4335. "ref/net463/System.Linq.dll",
  4336. "ref/netcore50/System.Linq.dll",
  4337. "ref/netcore50/System.Linq.xml",
  4338. "ref/netcore50/de/System.Linq.xml",
  4339. "ref/netcore50/es/System.Linq.xml",
  4340. "ref/netcore50/fr/System.Linq.xml",
  4341. "ref/netcore50/it/System.Linq.xml",
  4342. "ref/netcore50/ja/System.Linq.xml",
  4343. "ref/netcore50/ko/System.Linq.xml",
  4344. "ref/netcore50/ru/System.Linq.xml",
  4345. "ref/netcore50/zh-hans/System.Linq.xml",
  4346. "ref/netcore50/zh-hant/System.Linq.xml",
  4347. "ref/netstandard1.0/System.Linq.dll",
  4348. "ref/netstandard1.0/System.Linq.xml",
  4349. "ref/netstandard1.0/de/System.Linq.xml",
  4350. "ref/netstandard1.0/es/System.Linq.xml",
  4351. "ref/netstandard1.0/fr/System.Linq.xml",
  4352. "ref/netstandard1.0/it/System.Linq.xml",
  4353. "ref/netstandard1.0/ja/System.Linq.xml",
  4354. "ref/netstandard1.0/ko/System.Linq.xml",
  4355. "ref/netstandard1.0/ru/System.Linq.xml",
  4356. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4357. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4358. "ref/netstandard1.6/System.Linq.dll",
  4359. "ref/netstandard1.6/System.Linq.xml",
  4360. "ref/netstandard1.6/de/System.Linq.xml",
  4361. "ref/netstandard1.6/es/System.Linq.xml",
  4362. "ref/netstandard1.6/fr/System.Linq.xml",
  4363. "ref/netstandard1.6/it/System.Linq.xml",
  4364. "ref/netstandard1.6/ja/System.Linq.xml",
  4365. "ref/netstandard1.6/ko/System.Linq.xml",
  4366. "ref/netstandard1.6/ru/System.Linq.xml",
  4367. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4368. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4369. "ref/portable-net45+win8+wp8+wpa81/_._",
  4370. "ref/win8/_._",
  4371. "ref/wp80/_._",
  4372. "ref/wpa81/_._",
  4373. "ref/xamarinios10/_._",
  4374. "ref/xamarinmac20/_._",
  4375. "ref/xamarintvos10/_._",
  4376. "ref/xamarinwatchos10/_._",
  4377. "system.linq.4.1.0.nupkg.sha512",
  4378. "system.linq.nuspec"
  4379. ]
  4380. },
  4381. "System.Linq.Expressions/4.1.0": {
  4382. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  4383. "type": "package",
  4384. "path": "system.linq.expressions/4.1.0",
  4385. "files": [
  4386. ".nupkg.metadata",
  4387. "ThirdPartyNotices.txt",
  4388. "dotnet_library_license.txt",
  4389. "lib/MonoAndroid10/_._",
  4390. "lib/MonoTouch10/_._",
  4391. "lib/net45/_._",
  4392. "lib/net463/System.Linq.Expressions.dll",
  4393. "lib/netcore50/System.Linq.Expressions.dll",
  4394. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4395. "lib/portable-net45+win8+wp8+wpa81/_._",
  4396. "lib/win8/_._",
  4397. "lib/wp80/_._",
  4398. "lib/wpa81/_._",
  4399. "lib/xamarinios10/_._",
  4400. "lib/xamarinmac20/_._",
  4401. "lib/xamarintvos10/_._",
  4402. "lib/xamarinwatchos10/_._",
  4403. "ref/MonoAndroid10/_._",
  4404. "ref/MonoTouch10/_._",
  4405. "ref/net45/_._",
  4406. "ref/net463/System.Linq.Expressions.dll",
  4407. "ref/netcore50/System.Linq.Expressions.dll",
  4408. "ref/netcore50/System.Linq.Expressions.xml",
  4409. "ref/netcore50/de/System.Linq.Expressions.xml",
  4410. "ref/netcore50/es/System.Linq.Expressions.xml",
  4411. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4412. "ref/netcore50/it/System.Linq.Expressions.xml",
  4413. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4414. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4415. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4416. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4417. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4418. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4419. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4420. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4421. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4422. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4423. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4424. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4425. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4426. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4427. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4428. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4429. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4430. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4431. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4432. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4433. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4434. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4435. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4436. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4437. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4438. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4439. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4440. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4441. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4442. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4443. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4444. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4445. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4446. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4447. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4448. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4449. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4450. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4451. "ref/portable-net45+win8+wp8+wpa81/_._",
  4452. "ref/win8/_._",
  4453. "ref/wp80/_._",
  4454. "ref/wpa81/_._",
  4455. "ref/xamarinios10/_._",
  4456. "ref/xamarinmac20/_._",
  4457. "ref/xamarintvos10/_._",
  4458. "ref/xamarinwatchos10/_._",
  4459. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4460. "system.linq.expressions.4.1.0.nupkg.sha512",
  4461. "system.linq.expressions.nuspec"
  4462. ]
  4463. },
  4464. "System.Memory/4.5.3": {
  4465. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4466. "type": "package",
  4467. "path": "system.memory/4.5.3",
  4468. "files": [
  4469. ".nupkg.metadata",
  4470. ".signature.p7s",
  4471. "LICENSE.TXT",
  4472. "THIRD-PARTY-NOTICES.TXT",
  4473. "lib/netcoreapp2.1/_._",
  4474. "lib/netstandard1.1/System.Memory.dll",
  4475. "lib/netstandard1.1/System.Memory.xml",
  4476. "lib/netstandard2.0/System.Memory.dll",
  4477. "lib/netstandard2.0/System.Memory.xml",
  4478. "ref/netcoreapp2.1/_._",
  4479. "system.memory.4.5.3.nupkg.sha512",
  4480. "system.memory.nuspec",
  4481. "useSharedDesignerContext.txt",
  4482. "version.txt"
  4483. ]
  4484. },
  4485. "System.Net.Http/4.1.0": {
  4486. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  4487. "type": "package",
  4488. "path": "system.net.http/4.1.0",
  4489. "files": [
  4490. ".nupkg.metadata",
  4491. "ThirdPartyNotices.txt",
  4492. "dotnet_library_license.txt",
  4493. "lib/Xamarinmac20/_._",
  4494. "lib/monoandroid10/_._",
  4495. "lib/monotouch10/_._",
  4496. "lib/net45/_._",
  4497. "lib/net46/System.Net.Http.dll",
  4498. "lib/portable-net45+win8+wpa81/_._",
  4499. "lib/win8/_._",
  4500. "lib/wpa81/_._",
  4501. "lib/xamarinios10/_._",
  4502. "lib/xamarintvos10/_._",
  4503. "lib/xamarinwatchos10/_._",
  4504. "ref/Xamarinmac20/_._",
  4505. "ref/monoandroid10/_._",
  4506. "ref/monotouch10/_._",
  4507. "ref/net45/_._",
  4508. "ref/net46/System.Net.Http.dll",
  4509. "ref/net46/System.Net.Http.xml",
  4510. "ref/net46/de/System.Net.Http.xml",
  4511. "ref/net46/es/System.Net.Http.xml",
  4512. "ref/net46/fr/System.Net.Http.xml",
  4513. "ref/net46/it/System.Net.Http.xml",
  4514. "ref/net46/ja/System.Net.Http.xml",
  4515. "ref/net46/ko/System.Net.Http.xml",
  4516. "ref/net46/ru/System.Net.Http.xml",
  4517. "ref/net46/zh-hans/System.Net.Http.xml",
  4518. "ref/net46/zh-hant/System.Net.Http.xml",
  4519. "ref/netcore50/System.Net.Http.dll",
  4520. "ref/netcore50/System.Net.Http.xml",
  4521. "ref/netcore50/de/System.Net.Http.xml",
  4522. "ref/netcore50/es/System.Net.Http.xml",
  4523. "ref/netcore50/fr/System.Net.Http.xml",
  4524. "ref/netcore50/it/System.Net.Http.xml",
  4525. "ref/netcore50/ja/System.Net.Http.xml",
  4526. "ref/netcore50/ko/System.Net.Http.xml",
  4527. "ref/netcore50/ru/System.Net.Http.xml",
  4528. "ref/netcore50/zh-hans/System.Net.Http.xml",
  4529. "ref/netcore50/zh-hant/System.Net.Http.xml",
  4530. "ref/netstandard1.1/System.Net.Http.dll",
  4531. "ref/netstandard1.1/System.Net.Http.xml",
  4532. "ref/netstandard1.1/de/System.Net.Http.xml",
  4533. "ref/netstandard1.1/es/System.Net.Http.xml",
  4534. "ref/netstandard1.1/fr/System.Net.Http.xml",
  4535. "ref/netstandard1.1/it/System.Net.Http.xml",
  4536. "ref/netstandard1.1/ja/System.Net.Http.xml",
  4537. "ref/netstandard1.1/ko/System.Net.Http.xml",
  4538. "ref/netstandard1.1/ru/System.Net.Http.xml",
  4539. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  4540. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  4541. "ref/netstandard1.3/System.Net.Http.dll",
  4542. "ref/netstandard1.3/System.Net.Http.xml",
  4543. "ref/netstandard1.3/de/System.Net.Http.xml",
  4544. "ref/netstandard1.3/es/System.Net.Http.xml",
  4545. "ref/netstandard1.3/fr/System.Net.Http.xml",
  4546. "ref/netstandard1.3/it/System.Net.Http.xml",
  4547. "ref/netstandard1.3/ja/System.Net.Http.xml",
  4548. "ref/netstandard1.3/ko/System.Net.Http.xml",
  4549. "ref/netstandard1.3/ru/System.Net.Http.xml",
  4550. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  4551. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  4552. "ref/portable-net45+win8+wpa81/_._",
  4553. "ref/win8/_._",
  4554. "ref/wpa81/_._",
  4555. "ref/xamarinios10/_._",
  4556. "ref/xamarintvos10/_._",
  4557. "ref/xamarinwatchos10/_._",
  4558. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  4559. "runtimes/win/lib/net46/System.Net.Http.dll",
  4560. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  4561. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  4562. "system.net.http.4.1.0.nupkg.sha512",
  4563. "system.net.http.nuspec"
  4564. ]
  4565. },
  4566. "System.Net.NameResolution/4.0.0": {
  4567. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  4568. "type": "package",
  4569. "path": "system.net.nameresolution/4.0.0",
  4570. "files": [
  4571. ".nupkg.metadata",
  4572. ".signature.p7s",
  4573. "ThirdPartyNotices.txt",
  4574. "dotnet_library_license.txt",
  4575. "lib/MonoAndroid10/_._",
  4576. "lib/MonoTouch10/_._",
  4577. "lib/net46/System.Net.NameResolution.dll",
  4578. "lib/xamarinios10/_._",
  4579. "lib/xamarinmac20/_._",
  4580. "lib/xamarintvos10/_._",
  4581. "lib/xamarinwatchos10/_._",
  4582. "ref/MonoAndroid10/_._",
  4583. "ref/MonoTouch10/_._",
  4584. "ref/net46/System.Net.NameResolution.dll",
  4585. "ref/netstandard1.3/System.Net.NameResolution.dll",
  4586. "ref/netstandard1.3/System.Net.NameResolution.xml",
  4587. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  4588. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  4589. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  4590. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  4591. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  4592. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  4593. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  4594. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  4595. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  4596. "ref/xamarinios10/_._",
  4597. "ref/xamarinmac20/_._",
  4598. "ref/xamarintvos10/_._",
  4599. "ref/xamarinwatchos10/_._",
  4600. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  4601. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  4602. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  4603. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  4604. "system.net.nameresolution.4.0.0.nupkg.sha512",
  4605. "system.net.nameresolution.nuspec"
  4606. ]
  4607. },
  4608. "System.Net.Primitives/4.0.11": {
  4609. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  4610. "type": "package",
  4611. "path": "system.net.primitives/4.0.11",
  4612. "files": [
  4613. ".nupkg.metadata",
  4614. "ThirdPartyNotices.txt",
  4615. "dotnet_library_license.txt",
  4616. "lib/MonoAndroid10/_._",
  4617. "lib/MonoTouch10/_._",
  4618. "lib/net45/_._",
  4619. "lib/portable-net45+win8+wp8+wpa81/_._",
  4620. "lib/win8/_._",
  4621. "lib/wp80/_._",
  4622. "lib/wpa81/_._",
  4623. "lib/xamarinios10/_._",
  4624. "lib/xamarinmac20/_._",
  4625. "lib/xamarintvos10/_._",
  4626. "lib/xamarinwatchos10/_._",
  4627. "ref/MonoAndroid10/_._",
  4628. "ref/MonoTouch10/_._",
  4629. "ref/net45/_._",
  4630. "ref/netcore50/System.Net.Primitives.dll",
  4631. "ref/netcore50/System.Net.Primitives.xml",
  4632. "ref/netcore50/de/System.Net.Primitives.xml",
  4633. "ref/netcore50/es/System.Net.Primitives.xml",
  4634. "ref/netcore50/fr/System.Net.Primitives.xml",
  4635. "ref/netcore50/it/System.Net.Primitives.xml",
  4636. "ref/netcore50/ja/System.Net.Primitives.xml",
  4637. "ref/netcore50/ko/System.Net.Primitives.xml",
  4638. "ref/netcore50/ru/System.Net.Primitives.xml",
  4639. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  4640. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  4641. "ref/netstandard1.0/System.Net.Primitives.dll",
  4642. "ref/netstandard1.0/System.Net.Primitives.xml",
  4643. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  4644. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  4645. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  4646. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  4647. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  4648. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  4649. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  4650. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  4651. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  4652. "ref/netstandard1.1/System.Net.Primitives.dll",
  4653. "ref/netstandard1.1/System.Net.Primitives.xml",
  4654. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  4655. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  4656. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  4657. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  4658. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  4659. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  4660. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  4661. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  4662. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  4663. "ref/netstandard1.3/System.Net.Primitives.dll",
  4664. "ref/netstandard1.3/System.Net.Primitives.xml",
  4665. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  4666. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  4667. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  4668. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  4669. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  4670. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  4671. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  4672. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  4673. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  4674. "ref/portable-net45+win8+wp8+wpa81/_._",
  4675. "ref/win8/_._",
  4676. "ref/wp80/_._",
  4677. "ref/wpa81/_._",
  4678. "ref/xamarinios10/_._",
  4679. "ref/xamarinmac20/_._",
  4680. "ref/xamarintvos10/_._",
  4681. "ref/xamarinwatchos10/_._",
  4682. "system.net.primitives.4.0.11.nupkg.sha512",
  4683. "system.net.primitives.nuspec"
  4684. ]
  4685. },
  4686. "System.Net.Sockets/4.1.0": {
  4687. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  4688. "type": "package",
  4689. "path": "system.net.sockets/4.1.0",
  4690. "files": [
  4691. ".nupkg.metadata",
  4692. "ThirdPartyNotices.txt",
  4693. "dotnet_library_license.txt",
  4694. "lib/MonoAndroid10/_._",
  4695. "lib/MonoTouch10/_._",
  4696. "lib/net46/System.Net.Sockets.dll",
  4697. "lib/xamarinios10/_._",
  4698. "lib/xamarinmac20/_._",
  4699. "lib/xamarintvos10/_._",
  4700. "lib/xamarinwatchos10/_._",
  4701. "ref/MonoAndroid10/_._",
  4702. "ref/MonoTouch10/_._",
  4703. "ref/net46/System.Net.Sockets.dll",
  4704. "ref/netstandard1.3/System.Net.Sockets.dll",
  4705. "ref/netstandard1.3/System.Net.Sockets.xml",
  4706. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  4707. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  4708. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  4709. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  4710. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  4711. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  4712. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  4713. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  4714. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  4715. "ref/xamarinios10/_._",
  4716. "ref/xamarinmac20/_._",
  4717. "ref/xamarintvos10/_._",
  4718. "ref/xamarinwatchos10/_._",
  4719. "system.net.sockets.4.1.0.nupkg.sha512",
  4720. "system.net.sockets.nuspec"
  4721. ]
  4722. },
  4723. "System.ObjectModel/4.0.12": {
  4724. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  4725. "type": "package",
  4726. "path": "system.objectmodel/4.0.12",
  4727. "files": [
  4728. ".nupkg.metadata",
  4729. "ThirdPartyNotices.txt",
  4730. "dotnet_library_license.txt",
  4731. "lib/MonoAndroid10/_._",
  4732. "lib/MonoTouch10/_._",
  4733. "lib/net45/_._",
  4734. "lib/netcore50/System.ObjectModel.dll",
  4735. "lib/netstandard1.3/System.ObjectModel.dll",
  4736. "lib/portable-net45+win8+wp8+wpa81/_._",
  4737. "lib/win8/_._",
  4738. "lib/wp80/_._",
  4739. "lib/wpa81/_._",
  4740. "lib/xamarinios10/_._",
  4741. "lib/xamarinmac20/_._",
  4742. "lib/xamarintvos10/_._",
  4743. "lib/xamarinwatchos10/_._",
  4744. "ref/MonoAndroid10/_._",
  4745. "ref/MonoTouch10/_._",
  4746. "ref/net45/_._",
  4747. "ref/netcore50/System.ObjectModel.dll",
  4748. "ref/netcore50/System.ObjectModel.xml",
  4749. "ref/netcore50/de/System.ObjectModel.xml",
  4750. "ref/netcore50/es/System.ObjectModel.xml",
  4751. "ref/netcore50/fr/System.ObjectModel.xml",
  4752. "ref/netcore50/it/System.ObjectModel.xml",
  4753. "ref/netcore50/ja/System.ObjectModel.xml",
  4754. "ref/netcore50/ko/System.ObjectModel.xml",
  4755. "ref/netcore50/ru/System.ObjectModel.xml",
  4756. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4757. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4758. "ref/netstandard1.0/System.ObjectModel.dll",
  4759. "ref/netstandard1.0/System.ObjectModel.xml",
  4760. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4761. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4762. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4763. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4764. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4765. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4766. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4767. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4768. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4769. "ref/netstandard1.3/System.ObjectModel.dll",
  4770. "ref/netstandard1.3/System.ObjectModel.xml",
  4771. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4772. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4773. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4774. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4775. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4776. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4777. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4778. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4779. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4780. "ref/portable-net45+win8+wp8+wpa81/_._",
  4781. "ref/win8/_._",
  4782. "ref/wp80/_._",
  4783. "ref/wpa81/_._",
  4784. "ref/xamarinios10/_._",
  4785. "ref/xamarinmac20/_._",
  4786. "ref/xamarintvos10/_._",
  4787. "ref/xamarinwatchos10/_._",
  4788. "system.objectmodel.4.0.12.nupkg.sha512",
  4789. "system.objectmodel.nuspec"
  4790. ]
  4791. },
  4792. "System.Reflection/4.3.0": {
  4793. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4794. "type": "package",
  4795. "path": "system.reflection/4.3.0",
  4796. "files": [
  4797. ".nupkg.metadata",
  4798. ".signature.p7s",
  4799. "ThirdPartyNotices.txt",
  4800. "dotnet_library_license.txt",
  4801. "lib/MonoAndroid10/_._",
  4802. "lib/MonoTouch10/_._",
  4803. "lib/net45/_._",
  4804. "lib/net462/System.Reflection.dll",
  4805. "lib/portable-net45+win8+wp8+wpa81/_._",
  4806. "lib/win8/_._",
  4807. "lib/wp80/_._",
  4808. "lib/wpa81/_._",
  4809. "lib/xamarinios10/_._",
  4810. "lib/xamarinmac20/_._",
  4811. "lib/xamarintvos10/_._",
  4812. "lib/xamarinwatchos10/_._",
  4813. "ref/MonoAndroid10/_._",
  4814. "ref/MonoTouch10/_._",
  4815. "ref/net45/_._",
  4816. "ref/net462/System.Reflection.dll",
  4817. "ref/netcore50/System.Reflection.dll",
  4818. "ref/netcore50/System.Reflection.xml",
  4819. "ref/netcore50/de/System.Reflection.xml",
  4820. "ref/netcore50/es/System.Reflection.xml",
  4821. "ref/netcore50/fr/System.Reflection.xml",
  4822. "ref/netcore50/it/System.Reflection.xml",
  4823. "ref/netcore50/ja/System.Reflection.xml",
  4824. "ref/netcore50/ko/System.Reflection.xml",
  4825. "ref/netcore50/ru/System.Reflection.xml",
  4826. "ref/netcore50/zh-hans/System.Reflection.xml",
  4827. "ref/netcore50/zh-hant/System.Reflection.xml",
  4828. "ref/netstandard1.0/System.Reflection.dll",
  4829. "ref/netstandard1.0/System.Reflection.xml",
  4830. "ref/netstandard1.0/de/System.Reflection.xml",
  4831. "ref/netstandard1.0/es/System.Reflection.xml",
  4832. "ref/netstandard1.0/fr/System.Reflection.xml",
  4833. "ref/netstandard1.0/it/System.Reflection.xml",
  4834. "ref/netstandard1.0/ja/System.Reflection.xml",
  4835. "ref/netstandard1.0/ko/System.Reflection.xml",
  4836. "ref/netstandard1.0/ru/System.Reflection.xml",
  4837. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4838. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4839. "ref/netstandard1.3/System.Reflection.dll",
  4840. "ref/netstandard1.3/System.Reflection.xml",
  4841. "ref/netstandard1.3/de/System.Reflection.xml",
  4842. "ref/netstandard1.3/es/System.Reflection.xml",
  4843. "ref/netstandard1.3/fr/System.Reflection.xml",
  4844. "ref/netstandard1.3/it/System.Reflection.xml",
  4845. "ref/netstandard1.3/ja/System.Reflection.xml",
  4846. "ref/netstandard1.3/ko/System.Reflection.xml",
  4847. "ref/netstandard1.3/ru/System.Reflection.xml",
  4848. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4849. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4850. "ref/netstandard1.5/System.Reflection.dll",
  4851. "ref/netstandard1.5/System.Reflection.xml",
  4852. "ref/netstandard1.5/de/System.Reflection.xml",
  4853. "ref/netstandard1.5/es/System.Reflection.xml",
  4854. "ref/netstandard1.5/fr/System.Reflection.xml",
  4855. "ref/netstandard1.5/it/System.Reflection.xml",
  4856. "ref/netstandard1.5/ja/System.Reflection.xml",
  4857. "ref/netstandard1.5/ko/System.Reflection.xml",
  4858. "ref/netstandard1.5/ru/System.Reflection.xml",
  4859. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4860. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4861. "ref/portable-net45+win8+wp8+wpa81/_._",
  4862. "ref/win8/_._",
  4863. "ref/wp80/_._",
  4864. "ref/wpa81/_._",
  4865. "ref/xamarinios10/_._",
  4866. "ref/xamarinmac20/_._",
  4867. "ref/xamarintvos10/_._",
  4868. "ref/xamarinwatchos10/_._",
  4869. "system.reflection.4.3.0.nupkg.sha512",
  4870. "system.reflection.nuspec"
  4871. ]
  4872. },
  4873. "System.Reflection.Emit/4.7.0": {
  4874. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  4875. "type": "package",
  4876. "path": "system.reflection.emit/4.7.0",
  4877. "files": [
  4878. ".nupkg.metadata",
  4879. ".signature.p7s",
  4880. "LICENSE.TXT",
  4881. "THIRD-PARTY-NOTICES.TXT",
  4882. "lib/MonoAndroid10/_._",
  4883. "lib/MonoTouch10/_._",
  4884. "lib/net45/_._",
  4885. "lib/netcore50/System.Reflection.Emit.dll",
  4886. "lib/netcoreapp2.0/_._",
  4887. "lib/netstandard1.1/System.Reflection.Emit.dll",
  4888. "lib/netstandard1.1/System.Reflection.Emit.xml",
  4889. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4890. "lib/netstandard2.0/System.Reflection.Emit.dll",
  4891. "lib/netstandard2.0/System.Reflection.Emit.xml",
  4892. "lib/netstandard2.1/_._",
  4893. "lib/xamarinios10/_._",
  4894. "lib/xamarinmac20/_._",
  4895. "lib/xamarintvos10/_._",
  4896. "lib/xamarinwatchos10/_._",
  4897. "ref/MonoAndroid10/_._",
  4898. "ref/MonoTouch10/_._",
  4899. "ref/net45/_._",
  4900. "ref/netcoreapp2.0/_._",
  4901. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4902. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4903. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4904. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4905. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4906. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4907. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4908. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4909. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4910. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4911. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4912. "ref/netstandard2.0/System.Reflection.Emit.dll",
  4913. "ref/netstandard2.0/System.Reflection.Emit.xml",
  4914. "ref/netstandard2.1/_._",
  4915. "ref/xamarinios10/_._",
  4916. "ref/xamarinmac20/_._",
  4917. "ref/xamarintvos10/_._",
  4918. "ref/xamarinwatchos10/_._",
  4919. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  4920. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  4921. "system.reflection.emit.4.7.0.nupkg.sha512",
  4922. "system.reflection.emit.nuspec",
  4923. "useSharedDesignerContext.txt",
  4924. "version.txt"
  4925. ]
  4926. },
  4927. "System.Reflection.Emit.ILGeneration/4.0.1": {
  4928. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  4929. "type": "package",
  4930. "path": "system.reflection.emit.ilgeneration/4.0.1",
  4931. "files": [
  4932. ".nupkg.metadata",
  4933. "ThirdPartyNotices.txt",
  4934. "dotnet_library_license.txt",
  4935. "lib/net45/_._",
  4936. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4937. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4938. "lib/portable-net45+wp8/_._",
  4939. "lib/wp80/_._",
  4940. "ref/net45/_._",
  4941. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4942. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4943. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4944. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4945. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4946. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4947. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4948. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4949. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4950. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4951. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4952. "ref/portable-net45+wp8/_._",
  4953. "ref/wp80/_._",
  4954. "runtimes/aot/lib/netcore50/_._",
  4955. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  4956. "system.reflection.emit.ilgeneration.nuspec"
  4957. ]
  4958. },
  4959. "System.Reflection.Emit.Lightweight/4.0.1": {
  4960. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  4961. "type": "package",
  4962. "path": "system.reflection.emit.lightweight/4.0.1",
  4963. "files": [
  4964. ".nupkg.metadata",
  4965. "ThirdPartyNotices.txt",
  4966. "dotnet_library_license.txt",
  4967. "lib/net45/_._",
  4968. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4969. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4970. "lib/portable-net45+wp8/_._",
  4971. "lib/wp80/_._",
  4972. "ref/net45/_._",
  4973. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4974. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4975. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4976. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4977. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4978. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4979. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4980. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4981. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4982. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4983. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4984. "ref/portable-net45+wp8/_._",
  4985. "ref/wp80/_._",
  4986. "runtimes/aot/lib/netcore50/_._",
  4987. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  4988. "system.reflection.emit.lightweight.nuspec"
  4989. ]
  4990. },
  4991. "System.Reflection.Extensions/4.0.1": {
  4992. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  4993. "type": "package",
  4994. "path": "system.reflection.extensions/4.0.1",
  4995. "files": [
  4996. ".nupkg.metadata",
  4997. "ThirdPartyNotices.txt",
  4998. "dotnet_library_license.txt",
  4999. "lib/MonoAndroid10/_._",
  5000. "lib/MonoTouch10/_._",
  5001. "lib/net45/_._",
  5002. "lib/portable-net45+win8+wp8+wpa81/_._",
  5003. "lib/win8/_._",
  5004. "lib/wp80/_._",
  5005. "lib/wpa81/_._",
  5006. "lib/xamarinios10/_._",
  5007. "lib/xamarinmac20/_._",
  5008. "lib/xamarintvos10/_._",
  5009. "lib/xamarinwatchos10/_._",
  5010. "ref/MonoAndroid10/_._",
  5011. "ref/MonoTouch10/_._",
  5012. "ref/net45/_._",
  5013. "ref/netcore50/System.Reflection.Extensions.dll",
  5014. "ref/netcore50/System.Reflection.Extensions.xml",
  5015. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5016. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5017. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5018. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5019. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5020. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5021. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5022. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5023. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5024. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5025. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5026. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5027. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5028. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5029. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5030. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5031. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5032. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5033. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5034. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5035. "ref/portable-net45+win8+wp8+wpa81/_._",
  5036. "ref/win8/_._",
  5037. "ref/wp80/_._",
  5038. "ref/wpa81/_._",
  5039. "ref/xamarinios10/_._",
  5040. "ref/xamarinmac20/_._",
  5041. "ref/xamarintvos10/_._",
  5042. "ref/xamarinwatchos10/_._",
  5043. "system.reflection.extensions.4.0.1.nupkg.sha512",
  5044. "system.reflection.extensions.nuspec"
  5045. ]
  5046. },
  5047. "System.Reflection.Primitives/4.3.0": {
  5048. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5049. "type": "package",
  5050. "path": "system.reflection.primitives/4.3.0",
  5051. "files": [
  5052. ".nupkg.metadata",
  5053. ".signature.p7s",
  5054. "ThirdPartyNotices.txt",
  5055. "dotnet_library_license.txt",
  5056. "lib/MonoAndroid10/_._",
  5057. "lib/MonoTouch10/_._",
  5058. "lib/net45/_._",
  5059. "lib/portable-net45+win8+wp8+wpa81/_._",
  5060. "lib/win8/_._",
  5061. "lib/wp80/_._",
  5062. "lib/wpa81/_._",
  5063. "lib/xamarinios10/_._",
  5064. "lib/xamarinmac20/_._",
  5065. "lib/xamarintvos10/_._",
  5066. "lib/xamarinwatchos10/_._",
  5067. "ref/MonoAndroid10/_._",
  5068. "ref/MonoTouch10/_._",
  5069. "ref/net45/_._",
  5070. "ref/netcore50/System.Reflection.Primitives.dll",
  5071. "ref/netcore50/System.Reflection.Primitives.xml",
  5072. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5073. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5074. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5075. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5076. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5077. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5078. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5079. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5080. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5081. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5082. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5083. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5084. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5085. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5086. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5087. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5088. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5089. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5090. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5091. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5092. "ref/portable-net45+win8+wp8+wpa81/_._",
  5093. "ref/win8/_._",
  5094. "ref/wp80/_._",
  5095. "ref/wpa81/_._",
  5096. "ref/xamarinios10/_._",
  5097. "ref/xamarinmac20/_._",
  5098. "ref/xamarintvos10/_._",
  5099. "ref/xamarinwatchos10/_._",
  5100. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5101. "system.reflection.primitives.nuspec"
  5102. ]
  5103. },
  5104. "System.Reflection.TypeExtensions/4.1.0": {
  5105. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  5106. "type": "package",
  5107. "path": "system.reflection.typeextensions/4.1.0",
  5108. "files": [
  5109. ".nupkg.metadata",
  5110. "ThirdPartyNotices.txt",
  5111. "dotnet_library_license.txt",
  5112. "lib/MonoAndroid10/_._",
  5113. "lib/MonoTouch10/_._",
  5114. "lib/net46/System.Reflection.TypeExtensions.dll",
  5115. "lib/net462/System.Reflection.TypeExtensions.dll",
  5116. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5117. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5118. "lib/xamarinios10/_._",
  5119. "lib/xamarinmac20/_._",
  5120. "lib/xamarintvos10/_._",
  5121. "lib/xamarinwatchos10/_._",
  5122. "ref/MonoAndroid10/_._",
  5123. "ref/MonoTouch10/_._",
  5124. "ref/net46/System.Reflection.TypeExtensions.dll",
  5125. "ref/net462/System.Reflection.TypeExtensions.dll",
  5126. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5127. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5128. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5129. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5130. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5131. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5132. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5133. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5134. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5135. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5136. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5137. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5138. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5139. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5140. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5141. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5142. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5143. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5144. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5145. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5146. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5147. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5148. "ref/xamarinios10/_._",
  5149. "ref/xamarinmac20/_._",
  5150. "ref/xamarintvos10/_._",
  5151. "ref/xamarinwatchos10/_._",
  5152. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5153. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  5154. "system.reflection.typeextensions.nuspec"
  5155. ]
  5156. },
  5157. "System.Resources.ResourceManager/4.0.1": {
  5158. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  5159. "type": "package",
  5160. "path": "system.resources.resourcemanager/4.0.1",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. "ThirdPartyNotices.txt",
  5164. "dotnet_library_license.txt",
  5165. "lib/MonoAndroid10/_._",
  5166. "lib/MonoTouch10/_._",
  5167. "lib/net45/_._",
  5168. "lib/portable-net45+win8+wp8+wpa81/_._",
  5169. "lib/win8/_._",
  5170. "lib/wp80/_._",
  5171. "lib/wpa81/_._",
  5172. "lib/xamarinios10/_._",
  5173. "lib/xamarinmac20/_._",
  5174. "lib/xamarintvos10/_._",
  5175. "lib/xamarinwatchos10/_._",
  5176. "ref/MonoAndroid10/_._",
  5177. "ref/MonoTouch10/_._",
  5178. "ref/net45/_._",
  5179. "ref/netcore50/System.Resources.ResourceManager.dll",
  5180. "ref/netcore50/System.Resources.ResourceManager.xml",
  5181. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5182. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5183. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5184. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5185. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5186. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5187. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5188. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5189. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5190. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5191. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5192. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5193. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5194. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5195. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5196. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5197. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5198. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5199. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5200. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5201. "ref/portable-net45+win8+wp8+wpa81/_._",
  5202. "ref/win8/_._",
  5203. "ref/wp80/_._",
  5204. "ref/wpa81/_._",
  5205. "ref/xamarinios10/_._",
  5206. "ref/xamarinmac20/_._",
  5207. "ref/xamarintvos10/_._",
  5208. "ref/xamarinwatchos10/_._",
  5209. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  5210. "system.resources.resourcemanager.nuspec"
  5211. ]
  5212. },
  5213. "System.Runtime/4.3.0": {
  5214. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5215. "type": "package",
  5216. "path": "system.runtime/4.3.0",
  5217. "files": [
  5218. ".nupkg.metadata",
  5219. ".signature.p7s",
  5220. "ThirdPartyNotices.txt",
  5221. "dotnet_library_license.txt",
  5222. "lib/MonoAndroid10/_._",
  5223. "lib/MonoTouch10/_._",
  5224. "lib/net45/_._",
  5225. "lib/net462/System.Runtime.dll",
  5226. "lib/portable-net45+win8+wp80+wpa81/_._",
  5227. "lib/win8/_._",
  5228. "lib/wp80/_._",
  5229. "lib/wpa81/_._",
  5230. "lib/xamarinios10/_._",
  5231. "lib/xamarinmac20/_._",
  5232. "lib/xamarintvos10/_._",
  5233. "lib/xamarinwatchos10/_._",
  5234. "ref/MonoAndroid10/_._",
  5235. "ref/MonoTouch10/_._",
  5236. "ref/net45/_._",
  5237. "ref/net462/System.Runtime.dll",
  5238. "ref/netcore50/System.Runtime.dll",
  5239. "ref/netcore50/System.Runtime.xml",
  5240. "ref/netcore50/de/System.Runtime.xml",
  5241. "ref/netcore50/es/System.Runtime.xml",
  5242. "ref/netcore50/fr/System.Runtime.xml",
  5243. "ref/netcore50/it/System.Runtime.xml",
  5244. "ref/netcore50/ja/System.Runtime.xml",
  5245. "ref/netcore50/ko/System.Runtime.xml",
  5246. "ref/netcore50/ru/System.Runtime.xml",
  5247. "ref/netcore50/zh-hans/System.Runtime.xml",
  5248. "ref/netcore50/zh-hant/System.Runtime.xml",
  5249. "ref/netstandard1.0/System.Runtime.dll",
  5250. "ref/netstandard1.0/System.Runtime.xml",
  5251. "ref/netstandard1.0/de/System.Runtime.xml",
  5252. "ref/netstandard1.0/es/System.Runtime.xml",
  5253. "ref/netstandard1.0/fr/System.Runtime.xml",
  5254. "ref/netstandard1.0/it/System.Runtime.xml",
  5255. "ref/netstandard1.0/ja/System.Runtime.xml",
  5256. "ref/netstandard1.0/ko/System.Runtime.xml",
  5257. "ref/netstandard1.0/ru/System.Runtime.xml",
  5258. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5259. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5260. "ref/netstandard1.2/System.Runtime.dll",
  5261. "ref/netstandard1.2/System.Runtime.xml",
  5262. "ref/netstandard1.2/de/System.Runtime.xml",
  5263. "ref/netstandard1.2/es/System.Runtime.xml",
  5264. "ref/netstandard1.2/fr/System.Runtime.xml",
  5265. "ref/netstandard1.2/it/System.Runtime.xml",
  5266. "ref/netstandard1.2/ja/System.Runtime.xml",
  5267. "ref/netstandard1.2/ko/System.Runtime.xml",
  5268. "ref/netstandard1.2/ru/System.Runtime.xml",
  5269. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5270. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5271. "ref/netstandard1.3/System.Runtime.dll",
  5272. "ref/netstandard1.3/System.Runtime.xml",
  5273. "ref/netstandard1.3/de/System.Runtime.xml",
  5274. "ref/netstandard1.3/es/System.Runtime.xml",
  5275. "ref/netstandard1.3/fr/System.Runtime.xml",
  5276. "ref/netstandard1.3/it/System.Runtime.xml",
  5277. "ref/netstandard1.3/ja/System.Runtime.xml",
  5278. "ref/netstandard1.3/ko/System.Runtime.xml",
  5279. "ref/netstandard1.3/ru/System.Runtime.xml",
  5280. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5281. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5282. "ref/netstandard1.5/System.Runtime.dll",
  5283. "ref/netstandard1.5/System.Runtime.xml",
  5284. "ref/netstandard1.5/de/System.Runtime.xml",
  5285. "ref/netstandard1.5/es/System.Runtime.xml",
  5286. "ref/netstandard1.5/fr/System.Runtime.xml",
  5287. "ref/netstandard1.5/it/System.Runtime.xml",
  5288. "ref/netstandard1.5/ja/System.Runtime.xml",
  5289. "ref/netstandard1.5/ko/System.Runtime.xml",
  5290. "ref/netstandard1.5/ru/System.Runtime.xml",
  5291. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5292. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5293. "ref/portable-net45+win8+wp80+wpa81/_._",
  5294. "ref/win8/_._",
  5295. "ref/wp80/_._",
  5296. "ref/wpa81/_._",
  5297. "ref/xamarinios10/_._",
  5298. "ref/xamarinmac20/_._",
  5299. "ref/xamarintvos10/_._",
  5300. "ref/xamarinwatchos10/_._",
  5301. "system.runtime.4.3.0.nupkg.sha512",
  5302. "system.runtime.nuspec"
  5303. ]
  5304. },
  5305. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5306. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5307. "type": "package",
  5308. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5309. "files": [
  5310. ".nupkg.metadata",
  5311. ".signature.p7s",
  5312. "Icon.png",
  5313. "LICENSE.TXT",
  5314. "THIRD-PARTY-NOTICES.TXT",
  5315. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5316. "buildTransitive/netcoreapp3.1/_._",
  5317. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5318. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5319. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5320. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5321. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5322. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5323. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5324. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5325. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5326. "system.runtime.compilerservices.unsafe.nuspec",
  5327. "useSharedDesignerContext.txt"
  5328. ]
  5329. },
  5330. "System.Runtime.Extensions/4.1.0": {
  5331. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  5332. "type": "package",
  5333. "path": "system.runtime.extensions/4.1.0",
  5334. "files": [
  5335. ".nupkg.metadata",
  5336. "ThirdPartyNotices.txt",
  5337. "dotnet_library_license.txt",
  5338. "lib/MonoAndroid10/_._",
  5339. "lib/MonoTouch10/_._",
  5340. "lib/net45/_._",
  5341. "lib/net462/System.Runtime.Extensions.dll",
  5342. "lib/portable-net45+win8+wp8+wpa81/_._",
  5343. "lib/win8/_._",
  5344. "lib/wp80/_._",
  5345. "lib/wpa81/_._",
  5346. "lib/xamarinios10/_._",
  5347. "lib/xamarinmac20/_._",
  5348. "lib/xamarintvos10/_._",
  5349. "lib/xamarinwatchos10/_._",
  5350. "ref/MonoAndroid10/_._",
  5351. "ref/MonoTouch10/_._",
  5352. "ref/net45/_._",
  5353. "ref/net462/System.Runtime.Extensions.dll",
  5354. "ref/netcore50/System.Runtime.Extensions.dll",
  5355. "ref/netcore50/System.Runtime.Extensions.xml",
  5356. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5357. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5358. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5359. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5360. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5361. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5362. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5363. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5364. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5365. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5366. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5367. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5368. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5369. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5370. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5371. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5372. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5373. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5374. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5375. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5376. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5377. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5378. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5379. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5380. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5381. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5382. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5383. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5384. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5385. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5386. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5387. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5388. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5389. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5390. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5391. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5392. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5393. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5394. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5395. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5396. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5397. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5398. "ref/portable-net45+win8+wp8+wpa81/_._",
  5399. "ref/win8/_._",
  5400. "ref/wp80/_._",
  5401. "ref/wpa81/_._",
  5402. "ref/xamarinios10/_._",
  5403. "ref/xamarinmac20/_._",
  5404. "ref/xamarintvos10/_._",
  5405. "ref/xamarinwatchos10/_._",
  5406. "system.runtime.extensions.4.1.0.nupkg.sha512",
  5407. "system.runtime.extensions.nuspec"
  5408. ]
  5409. },
  5410. "System.Runtime.Handles/4.0.1": {
  5411. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  5412. "type": "package",
  5413. "path": "system.runtime.handles/4.0.1",
  5414. "files": [
  5415. ".nupkg.metadata",
  5416. "ThirdPartyNotices.txt",
  5417. "dotnet_library_license.txt",
  5418. "lib/MonoAndroid10/_._",
  5419. "lib/MonoTouch10/_._",
  5420. "lib/net46/_._",
  5421. "lib/xamarinios10/_._",
  5422. "lib/xamarinmac20/_._",
  5423. "lib/xamarintvos10/_._",
  5424. "lib/xamarinwatchos10/_._",
  5425. "ref/MonoAndroid10/_._",
  5426. "ref/MonoTouch10/_._",
  5427. "ref/net46/_._",
  5428. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5429. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5430. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5431. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5432. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5433. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5434. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5435. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5436. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5437. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5438. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5439. "ref/xamarinios10/_._",
  5440. "ref/xamarinmac20/_._",
  5441. "ref/xamarintvos10/_._",
  5442. "ref/xamarinwatchos10/_._",
  5443. "system.runtime.handles.4.0.1.nupkg.sha512",
  5444. "system.runtime.handles.nuspec"
  5445. ]
  5446. },
  5447. "System.Runtime.InteropServices/4.1.0": {
  5448. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  5449. "type": "package",
  5450. "path": "system.runtime.interopservices/4.1.0",
  5451. "files": [
  5452. ".nupkg.metadata",
  5453. "ThirdPartyNotices.txt",
  5454. "dotnet_library_license.txt",
  5455. "lib/MonoAndroid10/_._",
  5456. "lib/MonoTouch10/_._",
  5457. "lib/net45/_._",
  5458. "lib/net462/System.Runtime.InteropServices.dll",
  5459. "lib/portable-net45+win8+wpa81/_._",
  5460. "lib/win8/_._",
  5461. "lib/wpa81/_._",
  5462. "lib/xamarinios10/_._",
  5463. "lib/xamarinmac20/_._",
  5464. "lib/xamarintvos10/_._",
  5465. "lib/xamarinwatchos10/_._",
  5466. "ref/MonoAndroid10/_._",
  5467. "ref/MonoTouch10/_._",
  5468. "ref/net45/_._",
  5469. "ref/net462/System.Runtime.InteropServices.dll",
  5470. "ref/netcore50/System.Runtime.InteropServices.dll",
  5471. "ref/netcore50/System.Runtime.InteropServices.xml",
  5472. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  5473. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  5474. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  5475. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  5476. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  5477. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  5478. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  5479. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5480. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5481. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5482. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5483. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5484. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5485. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5486. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5487. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5488. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5489. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5490. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5491. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5492. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5493. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5494. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5495. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5496. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5497. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5498. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5499. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5500. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5501. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5502. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5503. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5504. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5505. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5506. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5507. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5508. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5509. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5510. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5511. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5512. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5513. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5514. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5515. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5516. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5517. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5518. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5519. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5520. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5521. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5522. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5523. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5524. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5525. "ref/portable-net45+win8+wpa81/_._",
  5526. "ref/win8/_._",
  5527. "ref/wpa81/_._",
  5528. "ref/xamarinios10/_._",
  5529. "ref/xamarinmac20/_._",
  5530. "ref/xamarintvos10/_._",
  5531. "ref/xamarinwatchos10/_._",
  5532. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  5533. "system.runtime.interopservices.nuspec"
  5534. ]
  5535. },
  5536. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5537. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  5538. "type": "package",
  5539. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  5540. "files": [
  5541. ".nupkg.metadata",
  5542. "ThirdPartyNotices.txt",
  5543. "dotnet_library_license.txt",
  5544. "lib/MonoAndroid10/_._",
  5545. "lib/MonoTouch10/_._",
  5546. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5547. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  5548. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  5549. "lib/xamarinios10/_._",
  5550. "lib/xamarinmac20/_._",
  5551. "lib/xamarintvos10/_._",
  5552. "lib/xamarinwatchos10/_._",
  5553. "ref/MonoAndroid10/_._",
  5554. "ref/MonoTouch10/_._",
  5555. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5556. "ref/xamarinios10/_._",
  5557. "ref/xamarinmac20/_._",
  5558. "ref/xamarintvos10/_._",
  5559. "ref/xamarinwatchos10/_._",
  5560. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5561. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5562. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5563. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5564. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5565. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  5566. "system.runtime.interopservices.runtimeinformation.nuspec"
  5567. ]
  5568. },
  5569. "System.Runtime.Numerics/4.0.1": {
  5570. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  5571. "type": "package",
  5572. "path": "system.runtime.numerics/4.0.1",
  5573. "files": [
  5574. ".nupkg.metadata",
  5575. "ThirdPartyNotices.txt",
  5576. "dotnet_library_license.txt",
  5577. "lib/MonoAndroid10/_._",
  5578. "lib/MonoTouch10/_._",
  5579. "lib/net45/_._",
  5580. "lib/netcore50/System.Runtime.Numerics.dll",
  5581. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  5582. "lib/portable-net45+win8+wpa81/_._",
  5583. "lib/win8/_._",
  5584. "lib/wpa81/_._",
  5585. "lib/xamarinios10/_._",
  5586. "lib/xamarinmac20/_._",
  5587. "lib/xamarintvos10/_._",
  5588. "lib/xamarinwatchos10/_._",
  5589. "ref/MonoAndroid10/_._",
  5590. "ref/MonoTouch10/_._",
  5591. "ref/net45/_._",
  5592. "ref/netcore50/System.Runtime.Numerics.dll",
  5593. "ref/netcore50/System.Runtime.Numerics.xml",
  5594. "ref/netcore50/de/System.Runtime.Numerics.xml",
  5595. "ref/netcore50/es/System.Runtime.Numerics.xml",
  5596. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  5597. "ref/netcore50/it/System.Runtime.Numerics.xml",
  5598. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  5599. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  5600. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  5601. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  5602. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  5603. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  5604. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  5605. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  5606. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  5607. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  5608. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  5609. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  5610. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  5611. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  5612. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  5613. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  5614. "ref/portable-net45+win8+wpa81/_._",
  5615. "ref/win8/_._",
  5616. "ref/wpa81/_._",
  5617. "ref/xamarinios10/_._",
  5618. "ref/xamarinmac20/_._",
  5619. "ref/xamarintvos10/_._",
  5620. "ref/xamarinwatchos10/_._",
  5621. "system.runtime.numerics.4.0.1.nupkg.sha512",
  5622. "system.runtime.numerics.nuspec"
  5623. ]
  5624. },
  5625. "System.Security.AccessControl/4.7.0": {
  5626. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5627. "type": "package",
  5628. "path": "system.security.accesscontrol/4.7.0",
  5629. "files": [
  5630. ".nupkg.metadata",
  5631. ".signature.p7s",
  5632. "LICENSE.TXT",
  5633. "THIRD-PARTY-NOTICES.TXT",
  5634. "lib/net46/System.Security.AccessControl.dll",
  5635. "lib/net461/System.Security.AccessControl.dll",
  5636. "lib/net461/System.Security.AccessControl.xml",
  5637. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5638. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5639. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5640. "lib/uap10.0.16299/_._",
  5641. "ref/net46/System.Security.AccessControl.dll",
  5642. "ref/net461/System.Security.AccessControl.dll",
  5643. "ref/net461/System.Security.AccessControl.xml",
  5644. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5645. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5646. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5647. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5648. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5649. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5650. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5651. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5652. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5653. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5654. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5655. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5656. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5657. "ref/uap10.0.16299/_._",
  5658. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5659. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5660. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  5661. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5662. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  5663. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5664. "runtimes/win/lib/uap10.0.16299/_._",
  5665. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  5666. "system.security.accesscontrol.nuspec",
  5667. "useSharedDesignerContext.txt",
  5668. "version.txt"
  5669. ]
  5670. },
  5671. "System.Security.Cryptography.Algorithms/4.2.0": {
  5672. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  5673. "type": "package",
  5674. "path": "system.security.cryptography.algorithms/4.2.0",
  5675. "files": [
  5676. ".nupkg.metadata",
  5677. "ThirdPartyNotices.txt",
  5678. "dotnet_library_license.txt",
  5679. "lib/MonoAndroid10/_._",
  5680. "lib/MonoTouch10/_._",
  5681. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  5682. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  5683. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  5684. "lib/xamarinios10/_._",
  5685. "lib/xamarinmac20/_._",
  5686. "lib/xamarintvos10/_._",
  5687. "lib/xamarinwatchos10/_._",
  5688. "ref/MonoAndroid10/_._",
  5689. "ref/MonoTouch10/_._",
  5690. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  5691. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  5692. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  5693. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  5694. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  5695. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5696. "ref/xamarinios10/_._",
  5697. "ref/xamarinmac20/_._",
  5698. "ref/xamarintvos10/_._",
  5699. "ref/xamarinwatchos10/_._",
  5700. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5701. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  5702. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  5703. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  5704. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  5705. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5706. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  5707. "system.security.cryptography.algorithms.nuspec"
  5708. ]
  5709. },
  5710. "System.Security.Cryptography.Cng/4.2.0": {
  5711. "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  5712. "type": "package",
  5713. "path": "system.security.cryptography.cng/4.2.0",
  5714. "files": [
  5715. ".nupkg.metadata",
  5716. "ThirdPartyNotices.txt",
  5717. "dotnet_library_license.txt",
  5718. "lib/net46/System.Security.Cryptography.Cng.dll",
  5719. "lib/net461/System.Security.Cryptography.Cng.dll",
  5720. "lib/net463/System.Security.Cryptography.Cng.dll",
  5721. "ref/net46/System.Security.Cryptography.Cng.dll",
  5722. "ref/net461/System.Security.Cryptography.Cng.dll",
  5723. "ref/net463/System.Security.Cryptography.Cng.dll",
  5724. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5725. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5726. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5727. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5728. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5729. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5730. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  5731. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5732. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5733. "system.security.cryptography.cng.4.2.0.nupkg.sha512",
  5734. "system.security.cryptography.cng.nuspec"
  5735. ]
  5736. },
  5737. "System.Security.Cryptography.Csp/4.0.0": {
  5738. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  5739. "type": "package",
  5740. "path": "system.security.cryptography.csp/4.0.0",
  5741. "files": [
  5742. ".nupkg.metadata",
  5743. "ThirdPartyNotices.txt",
  5744. "dotnet_library_license.txt",
  5745. "lib/MonoAndroid10/_._",
  5746. "lib/MonoTouch10/_._",
  5747. "lib/net46/System.Security.Cryptography.Csp.dll",
  5748. "lib/xamarinios10/_._",
  5749. "lib/xamarinmac20/_._",
  5750. "lib/xamarintvos10/_._",
  5751. "lib/xamarinwatchos10/_._",
  5752. "ref/MonoAndroid10/_._",
  5753. "ref/MonoTouch10/_._",
  5754. "ref/net46/System.Security.Cryptography.Csp.dll",
  5755. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5756. "ref/xamarinios10/_._",
  5757. "ref/xamarinmac20/_._",
  5758. "ref/xamarintvos10/_._",
  5759. "ref/xamarinwatchos10/_._",
  5760. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5761. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  5762. "runtimes/win/lib/netcore50/_._",
  5763. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5764. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  5765. "system.security.cryptography.csp.nuspec"
  5766. ]
  5767. },
  5768. "System.Security.Cryptography.Encoding/4.0.0": {
  5769. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  5770. "type": "package",
  5771. "path": "system.security.cryptography.encoding/4.0.0",
  5772. "files": [
  5773. ".nupkg.metadata",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/MonoAndroid10/_._",
  5777. "lib/MonoTouch10/_._",
  5778. "lib/net46/System.Security.Cryptography.Encoding.dll",
  5779. "lib/xamarinios10/_._",
  5780. "lib/xamarinmac20/_._",
  5781. "lib/xamarintvos10/_._",
  5782. "lib/xamarinwatchos10/_._",
  5783. "ref/MonoAndroid10/_._",
  5784. "ref/MonoTouch10/_._",
  5785. "ref/net46/System.Security.Cryptography.Encoding.dll",
  5786. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5787. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  5788. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  5789. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  5790. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  5791. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  5792. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  5793. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  5794. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  5795. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  5796. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  5797. "ref/xamarinios10/_._",
  5798. "ref/xamarinmac20/_._",
  5799. "ref/xamarintvos10/_._",
  5800. "ref/xamarinwatchos10/_._",
  5801. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5802. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  5803. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5804. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  5805. "system.security.cryptography.encoding.nuspec"
  5806. ]
  5807. },
  5808. "System.Security.Cryptography.OpenSsl/4.0.0": {
  5809. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  5810. "type": "package",
  5811. "path": "system.security.cryptography.openssl/4.0.0",
  5812. "files": [
  5813. ".nupkg.metadata",
  5814. "ThirdPartyNotices.txt",
  5815. "dotnet_library_license.txt",
  5816. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5817. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5818. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5819. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  5820. "system.security.cryptography.openssl.nuspec"
  5821. ]
  5822. },
  5823. "System.Security.Cryptography.Primitives/4.0.0": {
  5824. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  5825. "type": "package",
  5826. "path": "system.security.cryptography.primitives/4.0.0",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. "ThirdPartyNotices.txt",
  5830. "dotnet_library_license.txt",
  5831. "lib/MonoAndroid10/_._",
  5832. "lib/MonoTouch10/_._",
  5833. "lib/net46/System.Security.Cryptography.Primitives.dll",
  5834. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5835. "lib/xamarinios10/_._",
  5836. "lib/xamarinmac20/_._",
  5837. "lib/xamarintvos10/_._",
  5838. "lib/xamarinwatchos10/_._",
  5839. "ref/MonoAndroid10/_._",
  5840. "ref/MonoTouch10/_._",
  5841. "ref/net46/System.Security.Cryptography.Primitives.dll",
  5842. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5843. "ref/xamarinios10/_._",
  5844. "ref/xamarinmac20/_._",
  5845. "ref/xamarintvos10/_._",
  5846. "ref/xamarinwatchos10/_._",
  5847. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  5848. "system.security.cryptography.primitives.nuspec"
  5849. ]
  5850. },
  5851. "System.Security.Cryptography.ProtectedData/4.4.0": {
  5852. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  5853. "type": "package",
  5854. "path": "system.security.cryptography.protecteddata/4.4.0",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "LICENSE.TXT",
  5859. "THIRD-PARTY-NOTICES.TXT",
  5860. "lib/MonoAndroid10/_._",
  5861. "lib/MonoTouch10/_._",
  5862. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5863. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5864. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5865. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5866. "lib/xamarinios10/_._",
  5867. "lib/xamarinmac20/_._",
  5868. "lib/xamarintvos10/_._",
  5869. "lib/xamarinwatchos10/_._",
  5870. "ref/MonoAndroid10/_._",
  5871. "ref/MonoTouch10/_._",
  5872. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5873. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5874. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5875. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5876. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5877. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5878. "ref/xamarinios10/_._",
  5879. "ref/xamarinmac20/_._",
  5880. "ref/xamarintvos10/_._",
  5881. "ref/xamarinwatchos10/_._",
  5882. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5883. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5884. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5885. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5886. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  5887. "system.security.cryptography.protecteddata.nuspec",
  5888. "useSharedDesignerContext.txt",
  5889. "version.txt"
  5890. ]
  5891. },
  5892. "System.Security.Cryptography.X509Certificates/4.1.0": {
  5893. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  5894. "type": "package",
  5895. "path": "system.security.cryptography.x509certificates/4.1.0",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. "ThirdPartyNotices.txt",
  5899. "dotnet_library_license.txt",
  5900. "lib/MonoAndroid10/_._",
  5901. "lib/MonoTouch10/_._",
  5902. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5903. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5904. "lib/xamarinios10/_._",
  5905. "lib/xamarinmac20/_._",
  5906. "lib/xamarintvos10/_._",
  5907. "lib/xamarinwatchos10/_._",
  5908. "ref/MonoAndroid10/_._",
  5909. "ref/MonoTouch10/_._",
  5910. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  5911. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  5912. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  5913. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  5914. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  5915. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  5916. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  5917. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  5918. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  5919. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  5920. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  5921. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5922. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5923. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  5924. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  5925. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  5926. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  5927. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  5928. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  5929. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  5930. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  5931. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  5932. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5933. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5934. "ref/xamarinios10/_._",
  5935. "ref/xamarinmac20/_._",
  5936. "ref/xamarintvos10/_._",
  5937. "ref/xamarinwatchos10/_._",
  5938. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5939. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5940. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5941. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  5942. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5943. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  5944. "system.security.cryptography.x509certificates.nuspec"
  5945. ]
  5946. },
  5947. "System.Security.Permissions/4.7.0": {
  5948. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5949. "type": "package",
  5950. "path": "system.security.permissions/4.7.0",
  5951. "files": [
  5952. ".nupkg.metadata",
  5953. ".signature.p7s",
  5954. "LICENSE.TXT",
  5955. "THIRD-PARTY-NOTICES.TXT",
  5956. "lib/net461/System.Security.Permissions.dll",
  5957. "lib/net461/System.Security.Permissions.xml",
  5958. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  5959. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  5960. "lib/netstandard2.0/System.Security.Permissions.dll",
  5961. "lib/netstandard2.0/System.Security.Permissions.xml",
  5962. "ref/net461/System.Security.Permissions.dll",
  5963. "ref/net461/System.Security.Permissions.xml",
  5964. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  5965. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  5966. "ref/netstandard2.0/System.Security.Permissions.dll",
  5967. "ref/netstandard2.0/System.Security.Permissions.xml",
  5968. "system.security.permissions.4.7.0.nupkg.sha512",
  5969. "system.security.permissions.nuspec",
  5970. "useSharedDesignerContext.txt",
  5971. "version.txt"
  5972. ]
  5973. },
  5974. "System.Security.Principal.Windows/4.7.0": {
  5975. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  5976. "type": "package",
  5977. "path": "system.security.principal.windows/4.7.0",
  5978. "files": [
  5979. ".nupkg.metadata",
  5980. ".signature.p7s",
  5981. "LICENSE.TXT",
  5982. "THIRD-PARTY-NOTICES.TXT",
  5983. "lib/net46/System.Security.Principal.Windows.dll",
  5984. "lib/net461/System.Security.Principal.Windows.dll",
  5985. "lib/net461/System.Security.Principal.Windows.xml",
  5986. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5987. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  5988. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  5989. "lib/uap10.0.16299/_._",
  5990. "ref/net46/System.Security.Principal.Windows.dll",
  5991. "ref/net461/System.Security.Principal.Windows.dll",
  5992. "ref/net461/System.Security.Principal.Windows.xml",
  5993. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  5994. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  5995. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  5996. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  5997. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  5998. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  5999. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6000. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6001. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6002. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6003. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6004. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6005. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6006. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6007. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6008. "ref/uap10.0.16299/_._",
  6009. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6010. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6011. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6012. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6013. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6014. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6015. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6016. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6017. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6018. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6019. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6020. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6021. "runtimes/win/lib/uap10.0.16299/_._",
  6022. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6023. "system.security.principal.windows.nuspec",
  6024. "useSharedDesignerContext.txt",
  6025. "version.txt"
  6026. ]
  6027. },
  6028. "System.Text.Encoding/4.3.0": {
  6029. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6030. "type": "package",
  6031. "path": "system.text.encoding/4.3.0",
  6032. "files": [
  6033. ".nupkg.metadata",
  6034. ".signature.p7s",
  6035. "ThirdPartyNotices.txt",
  6036. "dotnet_library_license.txt",
  6037. "lib/MonoAndroid10/_._",
  6038. "lib/MonoTouch10/_._",
  6039. "lib/net45/_._",
  6040. "lib/portable-net45+win8+wp8+wpa81/_._",
  6041. "lib/win8/_._",
  6042. "lib/wp80/_._",
  6043. "lib/wpa81/_._",
  6044. "lib/xamarinios10/_._",
  6045. "lib/xamarinmac20/_._",
  6046. "lib/xamarintvos10/_._",
  6047. "lib/xamarinwatchos10/_._",
  6048. "ref/MonoAndroid10/_._",
  6049. "ref/MonoTouch10/_._",
  6050. "ref/net45/_._",
  6051. "ref/netcore50/System.Text.Encoding.dll",
  6052. "ref/netcore50/System.Text.Encoding.xml",
  6053. "ref/netcore50/de/System.Text.Encoding.xml",
  6054. "ref/netcore50/es/System.Text.Encoding.xml",
  6055. "ref/netcore50/fr/System.Text.Encoding.xml",
  6056. "ref/netcore50/it/System.Text.Encoding.xml",
  6057. "ref/netcore50/ja/System.Text.Encoding.xml",
  6058. "ref/netcore50/ko/System.Text.Encoding.xml",
  6059. "ref/netcore50/ru/System.Text.Encoding.xml",
  6060. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6061. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6062. "ref/netstandard1.0/System.Text.Encoding.dll",
  6063. "ref/netstandard1.0/System.Text.Encoding.xml",
  6064. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6065. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6066. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6067. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6068. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6069. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6070. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6071. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6072. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6073. "ref/netstandard1.3/System.Text.Encoding.dll",
  6074. "ref/netstandard1.3/System.Text.Encoding.xml",
  6075. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6076. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6077. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6078. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6079. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6080. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6081. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6082. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6083. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6084. "ref/portable-net45+win8+wp8+wpa81/_._",
  6085. "ref/win8/_._",
  6086. "ref/wp80/_._",
  6087. "ref/wpa81/_._",
  6088. "ref/xamarinios10/_._",
  6089. "ref/xamarinmac20/_._",
  6090. "ref/xamarintvos10/_._",
  6091. "ref/xamarinwatchos10/_._",
  6092. "system.text.encoding.4.3.0.nupkg.sha512",
  6093. "system.text.encoding.nuspec"
  6094. ]
  6095. },
  6096. "System.Text.Encoding.CodePages/4.4.0": {
  6097. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  6098. "type": "package",
  6099. "path": "system.text.encoding.codepages/4.4.0",
  6100. "files": [
  6101. ".nupkg.metadata",
  6102. ".signature.p7s",
  6103. "LICENSE.TXT",
  6104. "THIRD-PARTY-NOTICES.TXT",
  6105. "lib/MonoAndroid10/_._",
  6106. "lib/MonoTouch10/_._",
  6107. "lib/net46/System.Text.Encoding.CodePages.dll",
  6108. "lib/net461/System.Text.Encoding.CodePages.dll",
  6109. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6110. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6111. "lib/xamarinios10/_._",
  6112. "lib/xamarinmac20/_._",
  6113. "lib/xamarintvos10/_._",
  6114. "lib/xamarinwatchos10/_._",
  6115. "ref/MonoAndroid10/_._",
  6116. "ref/MonoTouch10/_._",
  6117. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6118. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  6119. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  6120. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  6121. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  6122. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  6123. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  6124. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  6125. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  6126. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  6127. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  6128. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6129. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6130. "ref/xamarinios10/_._",
  6131. "ref/xamarinmac20/_._",
  6132. "ref/xamarintvos10/_._",
  6133. "ref/xamarinwatchos10/_._",
  6134. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6135. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  6136. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6137. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6138. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  6139. "system.text.encoding.codepages.nuspec",
  6140. "useSharedDesignerContext.txt",
  6141. "version.txt"
  6142. ]
  6143. },
  6144. "System.Text.Encoding.Extensions/4.0.11": {
  6145. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  6146. "type": "package",
  6147. "path": "system.text.encoding.extensions/4.0.11",
  6148. "files": [
  6149. ".nupkg.metadata",
  6150. "ThirdPartyNotices.txt",
  6151. "dotnet_library_license.txt",
  6152. "lib/MonoAndroid10/_._",
  6153. "lib/MonoTouch10/_._",
  6154. "lib/net45/_._",
  6155. "lib/portable-net45+win8+wp8+wpa81/_._",
  6156. "lib/win8/_._",
  6157. "lib/wp80/_._",
  6158. "lib/wpa81/_._",
  6159. "lib/xamarinios10/_._",
  6160. "lib/xamarinmac20/_._",
  6161. "lib/xamarintvos10/_._",
  6162. "lib/xamarinwatchos10/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/net45/_._",
  6166. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  6167. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  6168. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  6169. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  6170. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  6171. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  6172. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  6173. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  6174. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  6175. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  6176. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  6177. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  6178. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  6179. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  6180. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  6181. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  6182. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  6183. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  6184. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  6185. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  6186. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  6187. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  6188. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  6189. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  6190. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  6191. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  6192. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  6193. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  6194. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  6195. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  6196. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  6197. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  6198. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  6199. "ref/portable-net45+win8+wp8+wpa81/_._",
  6200. "ref/win8/_._",
  6201. "ref/wp80/_._",
  6202. "ref/wpa81/_._",
  6203. "ref/xamarinios10/_._",
  6204. "ref/xamarinmac20/_._",
  6205. "ref/xamarintvos10/_._",
  6206. "ref/xamarinwatchos10/_._",
  6207. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  6208. "system.text.encoding.extensions.nuspec"
  6209. ]
  6210. },
  6211. "System.Text.Encodings.Web/4.5.0": {
  6212. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  6213. "type": "package",
  6214. "path": "system.text.encodings.web/4.5.0",
  6215. "files": [
  6216. ".nupkg.metadata",
  6217. ".signature.p7s",
  6218. "LICENSE.TXT",
  6219. "THIRD-PARTY-NOTICES.TXT",
  6220. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  6221. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  6222. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  6223. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  6224. "system.text.encodings.web.4.5.0.nupkg.sha512",
  6225. "system.text.encodings.web.nuspec",
  6226. "useSharedDesignerContext.txt",
  6227. "version.txt"
  6228. ]
  6229. },
  6230. "System.Text.RegularExpressions/4.1.0": {
  6231. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  6232. "type": "package",
  6233. "path": "system.text.regularexpressions/4.1.0",
  6234. "files": [
  6235. ".nupkg.metadata",
  6236. "ThirdPartyNotices.txt",
  6237. "dotnet_library_license.txt",
  6238. "lib/MonoAndroid10/_._",
  6239. "lib/MonoTouch10/_._",
  6240. "lib/net45/_._",
  6241. "lib/net463/System.Text.RegularExpressions.dll",
  6242. "lib/netcore50/System.Text.RegularExpressions.dll",
  6243. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  6244. "lib/portable-net45+win8+wp8+wpa81/_._",
  6245. "lib/win8/_._",
  6246. "lib/wp80/_._",
  6247. "lib/wpa81/_._",
  6248. "lib/xamarinios10/_._",
  6249. "lib/xamarinmac20/_._",
  6250. "lib/xamarintvos10/_._",
  6251. "lib/xamarinwatchos10/_._",
  6252. "ref/MonoAndroid10/_._",
  6253. "ref/MonoTouch10/_._",
  6254. "ref/net45/_._",
  6255. "ref/net463/System.Text.RegularExpressions.dll",
  6256. "ref/netcore50/System.Text.RegularExpressions.dll",
  6257. "ref/netcore50/System.Text.RegularExpressions.xml",
  6258. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  6259. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  6260. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  6261. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  6262. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  6263. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  6264. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  6265. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  6266. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  6267. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  6268. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  6269. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  6270. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  6271. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  6272. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  6273. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  6274. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  6275. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  6276. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  6277. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  6278. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  6279. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  6280. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  6281. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  6282. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  6283. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  6284. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  6285. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  6286. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  6287. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  6288. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  6289. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  6290. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  6291. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  6292. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  6293. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  6294. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  6295. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  6296. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  6297. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  6298. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  6299. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  6300. "ref/portable-net45+win8+wp8+wpa81/_._",
  6301. "ref/win8/_._",
  6302. "ref/wp80/_._",
  6303. "ref/wpa81/_._",
  6304. "ref/xamarinios10/_._",
  6305. "ref/xamarinmac20/_._",
  6306. "ref/xamarintvos10/_._",
  6307. "ref/xamarinwatchos10/_._",
  6308. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  6309. "system.text.regularexpressions.nuspec"
  6310. ]
  6311. },
  6312. "System.Threading/4.0.11": {
  6313. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  6314. "type": "package",
  6315. "path": "system.threading/4.0.11",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. "ThirdPartyNotices.txt",
  6319. "dotnet_library_license.txt",
  6320. "lib/MonoAndroid10/_._",
  6321. "lib/MonoTouch10/_._",
  6322. "lib/net45/_._",
  6323. "lib/netcore50/System.Threading.dll",
  6324. "lib/netstandard1.3/System.Threading.dll",
  6325. "lib/portable-net45+win8+wp8+wpa81/_._",
  6326. "lib/win8/_._",
  6327. "lib/wp80/_._",
  6328. "lib/wpa81/_._",
  6329. "lib/xamarinios10/_._",
  6330. "lib/xamarinmac20/_._",
  6331. "lib/xamarintvos10/_._",
  6332. "lib/xamarinwatchos10/_._",
  6333. "ref/MonoAndroid10/_._",
  6334. "ref/MonoTouch10/_._",
  6335. "ref/net45/_._",
  6336. "ref/netcore50/System.Threading.dll",
  6337. "ref/netcore50/System.Threading.xml",
  6338. "ref/netcore50/de/System.Threading.xml",
  6339. "ref/netcore50/es/System.Threading.xml",
  6340. "ref/netcore50/fr/System.Threading.xml",
  6341. "ref/netcore50/it/System.Threading.xml",
  6342. "ref/netcore50/ja/System.Threading.xml",
  6343. "ref/netcore50/ko/System.Threading.xml",
  6344. "ref/netcore50/ru/System.Threading.xml",
  6345. "ref/netcore50/zh-hans/System.Threading.xml",
  6346. "ref/netcore50/zh-hant/System.Threading.xml",
  6347. "ref/netstandard1.0/System.Threading.dll",
  6348. "ref/netstandard1.0/System.Threading.xml",
  6349. "ref/netstandard1.0/de/System.Threading.xml",
  6350. "ref/netstandard1.0/es/System.Threading.xml",
  6351. "ref/netstandard1.0/fr/System.Threading.xml",
  6352. "ref/netstandard1.0/it/System.Threading.xml",
  6353. "ref/netstandard1.0/ja/System.Threading.xml",
  6354. "ref/netstandard1.0/ko/System.Threading.xml",
  6355. "ref/netstandard1.0/ru/System.Threading.xml",
  6356. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6357. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6358. "ref/netstandard1.3/System.Threading.dll",
  6359. "ref/netstandard1.3/System.Threading.xml",
  6360. "ref/netstandard1.3/de/System.Threading.xml",
  6361. "ref/netstandard1.3/es/System.Threading.xml",
  6362. "ref/netstandard1.3/fr/System.Threading.xml",
  6363. "ref/netstandard1.3/it/System.Threading.xml",
  6364. "ref/netstandard1.3/ja/System.Threading.xml",
  6365. "ref/netstandard1.3/ko/System.Threading.xml",
  6366. "ref/netstandard1.3/ru/System.Threading.xml",
  6367. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6368. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6369. "ref/portable-net45+win8+wp8+wpa81/_._",
  6370. "ref/win8/_._",
  6371. "ref/wp80/_._",
  6372. "ref/wpa81/_._",
  6373. "ref/xamarinios10/_._",
  6374. "ref/xamarinmac20/_._",
  6375. "ref/xamarintvos10/_._",
  6376. "ref/xamarinwatchos10/_._",
  6377. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6378. "system.threading.4.0.11.nupkg.sha512",
  6379. "system.threading.nuspec"
  6380. ]
  6381. },
  6382. "System.Threading.Tasks/4.3.0": {
  6383. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6384. "type": "package",
  6385. "path": "system.threading.tasks/4.3.0",
  6386. "files": [
  6387. ".nupkg.metadata",
  6388. ".signature.p7s",
  6389. "ThirdPartyNotices.txt",
  6390. "dotnet_library_license.txt",
  6391. "lib/MonoAndroid10/_._",
  6392. "lib/MonoTouch10/_._",
  6393. "lib/net45/_._",
  6394. "lib/portable-net45+win8+wp8+wpa81/_._",
  6395. "lib/win8/_._",
  6396. "lib/wp80/_._",
  6397. "lib/wpa81/_._",
  6398. "lib/xamarinios10/_._",
  6399. "lib/xamarinmac20/_._",
  6400. "lib/xamarintvos10/_._",
  6401. "lib/xamarinwatchos10/_._",
  6402. "ref/MonoAndroid10/_._",
  6403. "ref/MonoTouch10/_._",
  6404. "ref/net45/_._",
  6405. "ref/netcore50/System.Threading.Tasks.dll",
  6406. "ref/netcore50/System.Threading.Tasks.xml",
  6407. "ref/netcore50/de/System.Threading.Tasks.xml",
  6408. "ref/netcore50/es/System.Threading.Tasks.xml",
  6409. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6410. "ref/netcore50/it/System.Threading.Tasks.xml",
  6411. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6412. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6413. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6414. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6415. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6416. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6417. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6418. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6419. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6420. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6421. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6422. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6423. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6424. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6425. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6426. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6427. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6428. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6429. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6430. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6431. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6432. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6433. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6434. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6435. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6436. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6437. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6438. "ref/portable-net45+win8+wp8+wpa81/_._",
  6439. "ref/win8/_._",
  6440. "ref/wp80/_._",
  6441. "ref/wpa81/_._",
  6442. "ref/xamarinios10/_._",
  6443. "ref/xamarinmac20/_._",
  6444. "ref/xamarintvos10/_._",
  6445. "ref/xamarinwatchos10/_._",
  6446. "system.threading.tasks.4.3.0.nupkg.sha512",
  6447. "system.threading.tasks.nuspec"
  6448. ]
  6449. },
  6450. "System.Threading.Tasks.Extensions/4.0.0": {
  6451. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  6452. "type": "package",
  6453. "path": "system.threading.tasks.extensions/4.0.0",
  6454. "files": [
  6455. ".nupkg.metadata",
  6456. "ThirdPartyNotices.txt",
  6457. "dotnet_library_license.txt",
  6458. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  6459. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  6460. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  6461. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  6462. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  6463. "system.threading.tasks.extensions.nuspec"
  6464. ]
  6465. },
  6466. "System.Threading.Thread/4.0.0": {
  6467. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  6468. "type": "package",
  6469. "path": "system.threading.thread/4.0.0",
  6470. "files": [
  6471. ".nupkg.metadata",
  6472. ".signature.p7s",
  6473. "ThirdPartyNotices.txt",
  6474. "dotnet_library_license.txt",
  6475. "lib/MonoAndroid10/_._",
  6476. "lib/MonoTouch10/_._",
  6477. "lib/net46/System.Threading.Thread.dll",
  6478. "lib/netcore50/_._",
  6479. "lib/netstandard1.3/System.Threading.Thread.dll",
  6480. "lib/xamarinios10/_._",
  6481. "lib/xamarinmac20/_._",
  6482. "lib/xamarintvos10/_._",
  6483. "lib/xamarinwatchos10/_._",
  6484. "ref/MonoAndroid10/_._",
  6485. "ref/MonoTouch10/_._",
  6486. "ref/net46/System.Threading.Thread.dll",
  6487. "ref/netstandard1.3/System.Threading.Thread.dll",
  6488. "ref/netstandard1.3/System.Threading.Thread.xml",
  6489. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  6490. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  6491. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  6492. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  6493. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  6494. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  6495. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  6496. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  6497. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  6498. "ref/xamarinios10/_._",
  6499. "ref/xamarinmac20/_._",
  6500. "ref/xamarintvos10/_._",
  6501. "ref/xamarinwatchos10/_._",
  6502. "system.threading.thread.4.0.0.nupkg.sha512",
  6503. "system.threading.thread.nuspec"
  6504. ]
  6505. },
  6506. "System.Threading.ThreadPool/4.0.10": {
  6507. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  6508. "type": "package",
  6509. "path": "system.threading.threadpool/4.0.10",
  6510. "files": [
  6511. ".nupkg.metadata",
  6512. ".signature.p7s",
  6513. "ThirdPartyNotices.txt",
  6514. "dotnet_library_license.txt",
  6515. "lib/MonoAndroid10/_._",
  6516. "lib/MonoTouch10/_._",
  6517. "lib/net46/System.Threading.ThreadPool.dll",
  6518. "lib/netcore50/_._",
  6519. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  6520. "lib/xamarinios10/_._",
  6521. "lib/xamarinmac20/_._",
  6522. "lib/xamarintvos10/_._",
  6523. "lib/xamarinwatchos10/_._",
  6524. "ref/MonoAndroid10/_._",
  6525. "ref/MonoTouch10/_._",
  6526. "ref/net46/System.Threading.ThreadPool.dll",
  6527. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  6528. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  6529. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  6530. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  6531. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  6532. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  6533. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  6534. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  6535. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  6536. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  6537. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  6538. "ref/xamarinios10/_._",
  6539. "ref/xamarinmac20/_._",
  6540. "ref/xamarintvos10/_._",
  6541. "ref/xamarinwatchos10/_._",
  6542. "system.threading.threadpool.4.0.10.nupkg.sha512",
  6543. "system.threading.threadpool.nuspec"
  6544. ]
  6545. },
  6546. "System.Threading.Timer/4.0.1": {
  6547. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  6548. "type": "package",
  6549. "path": "system.threading.timer/4.0.1",
  6550. "files": [
  6551. ".nupkg.metadata",
  6552. "ThirdPartyNotices.txt",
  6553. "dotnet_library_license.txt",
  6554. "lib/MonoAndroid10/_._",
  6555. "lib/MonoTouch10/_._",
  6556. "lib/net451/_._",
  6557. "lib/portable-net451+win81+wpa81/_._",
  6558. "lib/win81/_._",
  6559. "lib/wpa81/_._",
  6560. "lib/xamarinios10/_._",
  6561. "lib/xamarinmac20/_._",
  6562. "lib/xamarintvos10/_._",
  6563. "lib/xamarinwatchos10/_._",
  6564. "ref/MonoAndroid10/_._",
  6565. "ref/MonoTouch10/_._",
  6566. "ref/net451/_._",
  6567. "ref/netcore50/System.Threading.Timer.dll",
  6568. "ref/netcore50/System.Threading.Timer.xml",
  6569. "ref/netcore50/de/System.Threading.Timer.xml",
  6570. "ref/netcore50/es/System.Threading.Timer.xml",
  6571. "ref/netcore50/fr/System.Threading.Timer.xml",
  6572. "ref/netcore50/it/System.Threading.Timer.xml",
  6573. "ref/netcore50/ja/System.Threading.Timer.xml",
  6574. "ref/netcore50/ko/System.Threading.Timer.xml",
  6575. "ref/netcore50/ru/System.Threading.Timer.xml",
  6576. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  6577. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  6578. "ref/netstandard1.2/System.Threading.Timer.dll",
  6579. "ref/netstandard1.2/System.Threading.Timer.xml",
  6580. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  6581. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  6582. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  6583. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  6584. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  6585. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  6586. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  6587. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  6588. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  6589. "ref/portable-net451+win81+wpa81/_._",
  6590. "ref/win81/_._",
  6591. "ref/wpa81/_._",
  6592. "ref/xamarinios10/_._",
  6593. "ref/xamarinmac20/_._",
  6594. "ref/xamarintvos10/_._",
  6595. "ref/xamarinwatchos10/_._",
  6596. "system.threading.timer.4.0.1.nupkg.sha512",
  6597. "system.threading.timer.nuspec"
  6598. ]
  6599. },
  6600. "System.Windows.Extensions/4.7.0": {
  6601. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6602. "type": "package",
  6603. "path": "system.windows.extensions/4.7.0",
  6604. "files": [
  6605. ".nupkg.metadata",
  6606. ".signature.p7s",
  6607. "LICENSE.TXT",
  6608. "THIRD-PARTY-NOTICES.TXT",
  6609. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6610. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6611. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6612. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6613. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6614. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6615. "system.windows.extensions.4.7.0.nupkg.sha512",
  6616. "system.windows.extensions.nuspec",
  6617. "useSharedDesignerContext.txt",
  6618. "version.txt"
  6619. ]
  6620. },
  6621. "System.Xml.ReaderWriter/4.0.11": {
  6622. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  6623. "type": "package",
  6624. "path": "system.xml.readerwriter/4.0.11",
  6625. "files": [
  6626. ".nupkg.metadata",
  6627. "ThirdPartyNotices.txt",
  6628. "dotnet_library_license.txt",
  6629. "lib/MonoAndroid10/_._",
  6630. "lib/MonoTouch10/_._",
  6631. "lib/net45/_._",
  6632. "lib/netcore50/System.Xml.ReaderWriter.dll",
  6633. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  6634. "lib/portable-net45+win8+wp8+wpa81/_._",
  6635. "lib/win8/_._",
  6636. "lib/wp80/_._",
  6637. "lib/wpa81/_._",
  6638. "lib/xamarinios10/_._",
  6639. "lib/xamarinmac20/_._",
  6640. "lib/xamarintvos10/_._",
  6641. "lib/xamarinwatchos10/_._",
  6642. "ref/MonoAndroid10/_._",
  6643. "ref/MonoTouch10/_._",
  6644. "ref/net45/_._",
  6645. "ref/netcore50/System.Xml.ReaderWriter.dll",
  6646. "ref/netcore50/System.Xml.ReaderWriter.xml",
  6647. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  6648. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  6649. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  6650. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  6651. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  6652. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  6653. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  6654. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  6655. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  6656. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  6657. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  6658. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  6659. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  6660. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  6661. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  6662. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  6663. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  6664. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  6665. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  6666. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  6667. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  6668. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  6669. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  6670. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  6671. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  6672. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  6673. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  6674. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  6675. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  6676. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  6677. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  6678. "ref/portable-net45+win8+wp8+wpa81/_._",
  6679. "ref/win8/_._",
  6680. "ref/wp80/_._",
  6681. "ref/wpa81/_._",
  6682. "ref/xamarinios10/_._",
  6683. "ref/xamarinmac20/_._",
  6684. "ref/xamarintvos10/_._",
  6685. "ref/xamarinwatchos10/_._",
  6686. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  6687. "system.xml.readerwriter.nuspec"
  6688. ]
  6689. },
  6690. "System.Xml.XDocument/4.0.11": {
  6691. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  6692. "type": "package",
  6693. "path": "system.xml.xdocument/4.0.11",
  6694. "files": [
  6695. ".nupkg.metadata",
  6696. "ThirdPartyNotices.txt",
  6697. "dotnet_library_license.txt",
  6698. "lib/MonoAndroid10/_._",
  6699. "lib/MonoTouch10/_._",
  6700. "lib/net45/_._",
  6701. "lib/netcore50/System.Xml.XDocument.dll",
  6702. "lib/netstandard1.3/System.Xml.XDocument.dll",
  6703. "lib/portable-net45+win8+wp8+wpa81/_._",
  6704. "lib/win8/_._",
  6705. "lib/wp80/_._",
  6706. "lib/wpa81/_._",
  6707. "lib/xamarinios10/_._",
  6708. "lib/xamarinmac20/_._",
  6709. "lib/xamarintvos10/_._",
  6710. "lib/xamarinwatchos10/_._",
  6711. "ref/MonoAndroid10/_._",
  6712. "ref/MonoTouch10/_._",
  6713. "ref/net45/_._",
  6714. "ref/netcore50/System.Xml.XDocument.dll",
  6715. "ref/netcore50/System.Xml.XDocument.xml",
  6716. "ref/netcore50/de/System.Xml.XDocument.xml",
  6717. "ref/netcore50/es/System.Xml.XDocument.xml",
  6718. "ref/netcore50/fr/System.Xml.XDocument.xml",
  6719. "ref/netcore50/it/System.Xml.XDocument.xml",
  6720. "ref/netcore50/ja/System.Xml.XDocument.xml",
  6721. "ref/netcore50/ko/System.Xml.XDocument.xml",
  6722. "ref/netcore50/ru/System.Xml.XDocument.xml",
  6723. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  6724. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  6725. "ref/netstandard1.0/System.Xml.XDocument.dll",
  6726. "ref/netstandard1.0/System.Xml.XDocument.xml",
  6727. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  6728. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  6729. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  6730. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  6731. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  6732. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  6733. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  6734. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  6735. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  6736. "ref/netstandard1.3/System.Xml.XDocument.dll",
  6737. "ref/netstandard1.3/System.Xml.XDocument.xml",
  6738. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  6739. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  6740. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  6741. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  6742. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  6743. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  6744. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  6745. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  6746. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.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.xml.xdocument.4.0.11.nupkg.sha512",
  6756. "system.xml.xdocument.nuspec"
  6757. ]
  6758. },
  6759. "System.Xml.XmlDocument/4.0.1": {
  6760. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  6761. "type": "package",
  6762. "path": "system.xml.xmldocument/4.0.1",
  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.Xml.XmlDocument.dll",
  6771. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  6772. "lib/xamarinios10/_._",
  6773. "lib/xamarinmac20/_._",
  6774. "lib/xamarintvos10/_._",
  6775. "lib/xamarinwatchos10/_._",
  6776. "ref/MonoAndroid10/_._",
  6777. "ref/MonoTouch10/_._",
  6778. "ref/net46/System.Xml.XmlDocument.dll",
  6779. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  6780. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  6781. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  6782. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  6783. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  6784. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  6785. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  6786. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  6787. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  6788. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  6789. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  6790. "ref/xamarinios10/_._",
  6791. "ref/xamarinmac20/_._",
  6792. "ref/xamarintvos10/_._",
  6793. "ref/xamarinwatchos10/_._",
  6794. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  6795. "system.xml.xmldocument.nuspec"
  6796. ]
  6797. },
  6798. "System.Xml.XPath/4.0.1": {
  6799. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  6800. "type": "package",
  6801. "path": "system.xml.xpath/4.0.1",
  6802. "files": [
  6803. ".nupkg.metadata",
  6804. ".signature.p7s",
  6805. "ThirdPartyNotices.txt",
  6806. "dotnet_library_license.txt",
  6807. "lib/MonoAndroid10/_._",
  6808. "lib/MonoTouch10/_._",
  6809. "lib/net46/System.Xml.XPath.dll",
  6810. "lib/netstandard1.3/System.Xml.XPath.dll",
  6811. "lib/xamarinios10/_._",
  6812. "lib/xamarinmac20/_._",
  6813. "lib/xamarintvos10/_._",
  6814. "lib/xamarinwatchos10/_._",
  6815. "ref/MonoAndroid10/_._",
  6816. "ref/MonoTouch10/_._",
  6817. "ref/net46/System.Xml.XPath.dll",
  6818. "ref/netstandard1.3/System.Xml.XPath.dll",
  6819. "ref/netstandard1.3/System.Xml.XPath.xml",
  6820. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  6821. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  6822. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  6823. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  6824. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  6825. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  6826. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  6827. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  6828. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  6829. "ref/xamarinios10/_._",
  6830. "ref/xamarinmac20/_._",
  6831. "ref/xamarintvos10/_._",
  6832. "ref/xamarinwatchos10/_._",
  6833. "system.xml.xpath.4.0.1.nupkg.sha512",
  6834. "system.xml.xpath.nuspec"
  6835. ]
  6836. },
  6837. "System.Xml.XPath.XmlDocument/4.0.1": {
  6838. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  6839. "type": "package",
  6840. "path": "system.xml.xpath.xmldocument/4.0.1",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6849. "lib/xamarinios10/_._",
  6850. "lib/xamarinmac20/_._",
  6851. "lib/xamarintvos10/_._",
  6852. "lib/xamarinwatchos10/_._",
  6853. "ref/MonoAndroid10/_._",
  6854. "ref/MonoTouch10/_._",
  6855. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  6856. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  6857. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  6858. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  6859. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  6860. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  6861. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  6862. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  6863. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  6864. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  6865. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  6866. "ref/xamarinios10/_._",
  6867. "ref/xamarinmac20/_._",
  6868. "ref/xamarintvos10/_._",
  6869. "ref/xamarinwatchos10/_._",
  6870. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  6871. "system.xml.xpath.xmldocument.nuspec"
  6872. ]
  6873. },
  6874. "Backend.ApplicationCore/1.0.0": {
  6875. "type": "project",
  6876. "path": "../Backend.ApplicationCore/Backend.ApplicationCore.csproj",
  6877. "msbuildProject": "../Backend.ApplicationCore/Backend.ApplicationCore.csproj"
  6878. },
  6879. "Backend.Domain/1.0.0": {
  6880. "type": "project",
  6881. "path": "../Backend.Domain/Backend.Domain.csproj",
  6882. "msbuildProject": "../Backend.Domain/Backend.Domain.csproj"
  6883. }
  6884. },
  6885. "projectFileDependencyGroups": {
  6886. ".NETCoreApp,Version=v3.1": [
  6887. "Backend.ApplicationCore >= 1.0.0",
  6888. "Microsoft.AspNet.Identity.EntityFramework >= 2.2.3",
  6889. "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0",
  6890. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 5.0.10",
  6891. "Microsoft.EntityFrameworkCore >= 5.0.13",
  6892. "Microsoft.Extensions.Configuration.Abstractions >= 6.0.0",
  6893. "Microsoft.Extensions.DependencyInjection.Abstractions >= 6.0.0",
  6894. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  6895. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  6896. "System.Data.SqlClient >= 4.8.3"
  6897. ]
  6898. },
  6899. "packageFolders": {
  6900. "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\": {}
  6901. },
  6902. "project": {
  6903. "version": "1.0.0",
  6904. "restore": {
  6905. "projectUniqueName": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Persistence\\Backend.Persistence.csproj",
  6906. "projectName": "Backend.Persistence",
  6907. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Persistence\\Backend.Persistence.csproj",
  6908. "packagesPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\",
  6909. "outputPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Persistence\\obj\\",
  6910. "projectStyle": "PackageReference",
  6911. "configFilePaths": [
  6912. "C:\\Users\\Alex ONDOA BALEGNAMA\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6913. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  6914. ],
  6915. "originalTargetFrameworks": [
  6916. "netcoreapp3.1"
  6917. ],
  6918. "sources": {
  6919. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6920. "https://api.nuget.org/v3/index.json": {},
  6921. "https://packagesource": {}
  6922. },
  6923. "frameworks": {
  6924. "netcoreapp3.1": {
  6925. "targetAlias": "netcoreapp3.1",
  6926. "projectReferences": {
  6927. "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.ApplicationCore\\Backend.ApplicationCore.csproj": {
  6928. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.ApplicationCore\\Backend.ApplicationCore.csproj"
  6929. }
  6930. }
  6931. }
  6932. },
  6933. "warningProperties": {
  6934. "warnAsError": [
  6935. "NU1605"
  6936. ]
  6937. }
  6938. },
  6939. "frameworks": {
  6940. "netcoreapp3.1": {
  6941. "targetAlias": "netcoreapp3.1",
  6942. "dependencies": {
  6943. "Microsoft.AspNet.Identity.EntityFramework": {
  6944. "target": "Package",
  6945. "version": "[2.2.3, )"
  6946. },
  6947. "Microsoft.AspNetCore.Http.Abstractions": {
  6948. "target": "Package",
  6949. "version": "[2.2.0, )"
  6950. },
  6951. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  6952. "target": "Package",
  6953. "version": "[5.0.10, )"
  6954. },
  6955. "Microsoft.EntityFrameworkCore": {
  6956. "target": "Package",
  6957. "version": "[5.0.13, )"
  6958. },
  6959. "Microsoft.Extensions.Configuration.Abstractions": {
  6960. "target": "Package",
  6961. "version": "[6.0.0, )"
  6962. },
  6963. "Microsoft.Extensions.DependencyInjection.Abstractions": {
  6964. "target": "Package",
  6965. "version": "[6.0.0, )"
  6966. },
  6967. "MySql.Data.EntityFrameworkCore": {
  6968. "target": "Package",
  6969. "version": "[8.0.22, )"
  6970. },
  6971. "Pomelo.EntityFrameworkCore.MySql": {
  6972. "target": "Package",
  6973. "version": "[5.0.0-alpha.2, )"
  6974. },
  6975. "System.Data.SqlClient": {
  6976. "target": "Package",
  6977. "version": "[4.8.3, )"
  6978. }
  6979. },
  6980. "imports": [
  6981. "net461",
  6982. "net462",
  6983. "net47",
  6984. "net471",
  6985. "net472",
  6986. "net48"
  6987. ],
  6988. "assetTargetFallback": true,
  6989. "warn": true,
  6990. "frameworkReferences": {
  6991. "Microsoft.NETCore.App": {
  6992. "privateAssets": "all"
  6993. }
  6994. },
  6995. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"
  6996. }
  6997. }
  6998. },
  6999. "logs": [
  7000. {
  7001. "code": "NU1701",
  7002. "level": "Warning",
  7003. "warningLevel": 1,
  7004. "message": "Le package 'EntityFramework 6.1.0' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7005. "libraryId": "EntityFramework",
  7006. "targetGraphs": [
  7007. ".NETCoreApp,Version=v3.1"
  7008. ]
  7009. },
  7010. {
  7011. "code": "NU1701",
  7012. "level": "Warning",
  7013. "warningLevel": 1,
  7014. "message": "Le package 'Microsoft.AspNet.Identity.Core 2.2.3' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7015. "libraryId": "Microsoft.AspNet.Identity.Core",
  7016. "targetGraphs": [
  7017. ".NETCoreApp,Version=v3.1"
  7018. ]
  7019. },
  7020. {
  7021. "code": "NU1701",
  7022. "level": "Warning",
  7023. "warningLevel": 1,
  7024. "message": "Le package 'Microsoft.AspNet.Identity.EntityFramework 2.2.3' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7025. "libraryId": "Microsoft.AspNet.Identity.EntityFramework",
  7026. "targetGraphs": [
  7027. ".NETCoreApp,Version=v3.1"
  7028. ]
  7029. }
  7030. ]
  7031. }

Powered by TurnKey Linux.