No Description

project.assets.json 292KB

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

Powered by TurnKey Linux.