project.assets.json 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "BouncyCastle.NetCore/1.8.5": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "Coravel/4.2.1": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  35. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  36. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Coravel.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Coravel.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "FBoxClientDriver/1.2.0": {
  50. "type": "package",
  51. "dependencies": {
  52. "FBoxClientDriver.Contract": "1.2.0",
  53. "IdentityModel": "4.3.1",
  54. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  55. "Microsoft.CSharp": "4.5.0",
  56. "Microsoft.Extensions.Logging": "3.1.5",
  57. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  58. "Newtonsoft.Json": "12.0.3",
  59. "Nito.AsyncEx.Coordination": "5.0.0",
  60. "NodaTime": "2.4.7",
  61. "System.ComponentModel.EventBasedAsync": "4.3.0",
  62. "System.IO.FileSystem": "4.3.0",
  63. "System.Net.Http": "4.3.2",
  64. "System.Reactive": "4.4.1",
  65. "System.Runtime.Serialization.Primitives": "4.3.0",
  66. "System.Threading.Thread": "4.3.0"
  67. },
  68. "compile": {
  69. "lib/netstandard2.0/FBoxClientDriver.dll": {
  70. "related": ".xml"
  71. }
  72. },
  73. "runtime": {
  74. "lib/netstandard2.0/FBoxClientDriver.dll": {
  75. "related": ".xml"
  76. }
  77. }
  78. },
  79. "FBoxClientDriver.Contract/1.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Newtonsoft.Json": "12.0.3",
  83. "System.ComponentModel.Primitives": "4.3.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  87. "related": ".xml"
  88. }
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  92. "related": ".xml"
  93. }
  94. }
  95. },
  96. "FluentEmail.Core/3.0.2": {
  97. "type": "package",
  98. "dependencies": {
  99. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  103. },
  104. "runtime": {
  105. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  106. }
  107. },
  108. "FluentEmail.Smtp/3.0.2": {
  109. "type": "package",
  110. "dependencies": {
  111. "FluentEmail.Core": "3.0.2"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  118. }
  119. },
  120. "Google.Protobuf/3.11.4": {
  121. "type": "package",
  122. "dependencies": {
  123. "System.Memory": "4.5.2"
  124. },
  125. "compile": {
  126. "lib/netstandard2.0/Google.Protobuf.dll": {
  127. "related": ".pdb;.xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/netstandard2.0/Google.Protobuf.dll": {
  132. "related": ".pdb;.xml"
  133. }
  134. }
  135. },
  136. "IdentityModel/4.3.1": {
  137. "type": "package",
  138. "dependencies": {
  139. "Newtonsoft.Json": "11.0.2",
  140. "System.Text.Encodings.Web": "4.7.0"
  141. },
  142. "compile": {
  143. "lib/netstandard2.0/IdentityModel.dll": {
  144. "related": ".pdb;.xml"
  145. }
  146. },
  147. "runtime": {
  148. "lib/netstandard2.0/IdentityModel.dll": {
  149. "related": ".pdb;.xml"
  150. }
  151. }
  152. },
  153. "InfluxData.Net/8.0.1": {
  154. "type": "package",
  155. "dependencies": {
  156. "Newtonsoft.Json": "10.0.3",
  157. "System.Net.Http": "4.3.2"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  161. "related": ".dll.config;.pdb"
  162. },
  163. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  164. "related": ".dll.config;.pdb"
  165. },
  166. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  167. "related": ".dll.config;.pdb"
  168. },
  169. "lib/netstandard2.0/InfluxData.Net.dll": {
  170. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  171. }
  172. },
  173. "runtime": {
  174. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  175. "related": ".dll.config;.pdb"
  176. },
  177. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  178. "related": ".dll.config;.pdb"
  179. },
  180. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  181. "related": ".dll.config;.pdb"
  182. },
  183. "lib/netstandard2.0/InfluxData.Net.dll": {
  184. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  185. }
  186. }
  187. },
  188. "InitQ/1.0.0.14": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  192. "Microsoft.Extensions.Hosting": "2.1.0",
  193. "Newtonsoft.Json": "13.0.1",
  194. "StackExchange.Redis": "1.2.4"
  195. },
  196. "compile": {
  197. "lib/netcoreapp2.1/InitQ.dll": {}
  198. },
  199. "runtime": {
  200. "lib/netcoreapp2.1/InitQ.dll": {}
  201. }
  202. },
  203. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  204. "type": "package",
  205. "dependencies": {
  206. "AdvancedStringBuilder": "0.1.0",
  207. "JavaScriptEngineSwitcher.Core": "3.21.0"
  208. },
  209. "compile": {
  210. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  211. "related": ".xml"
  212. }
  213. },
  214. "runtime": {
  215. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  216. "related": ".xml"
  217. }
  218. },
  219. "resource": {
  220. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  221. "locale": "ru-RU"
  222. }
  223. }
  224. },
  225. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  226. "type": "package",
  227. "runtimeTargets": {
  228. "runtimes/linux-x64/native/libChakraCore.so": {
  229. "assetType": "native",
  230. "rid": "linux-x64"
  231. }
  232. }
  233. },
  234. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  235. "type": "package",
  236. "build": {
  237. "build/_._": {}
  238. },
  239. "runtimeTargets": {
  240. "runtimes/win-x64/native/ChakraCore.dll": {
  241. "assetType": "native",
  242. "rid": "win-x64"
  243. }
  244. }
  245. },
  246. "JavaScriptEngineSwitcher.Core/3.21.0": {
  247. "type": "package",
  248. "dependencies": {
  249. "AdvancedStringBuilder": "0.1.0"
  250. },
  251. "compile": {
  252. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  253. "related": ".xml"
  254. }
  255. },
  256. "runtime": {
  257. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  258. "related": ".xml"
  259. }
  260. },
  261. "resource": {
  262. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  263. "locale": "ru-RU"
  264. }
  265. }
  266. },
  267. "K4os.Compression.LZ4/1.1.11": {
  268. "type": "package",
  269. "dependencies": {
  270. "System.Memory": "4.5.3"
  271. },
  272. "compile": {
  273. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  274. "related": ".xml"
  275. }
  276. },
  277. "runtime": {
  278. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  279. "related": ".xml"
  280. }
  281. }
  282. },
  283. "K4os.Compression.LZ4.Streams/1.1.11": {
  284. "type": "package",
  285. "dependencies": {
  286. "K4os.Compression.LZ4": "1.1.11",
  287. "K4os.Hash.xxHash": "1.0.6"
  288. },
  289. "compile": {
  290. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  291. "related": ".xml"
  292. }
  293. },
  294. "runtime": {
  295. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  296. "related": ".xml"
  297. }
  298. }
  299. },
  300. "K4os.Hash.xxHash/1.0.6": {
  301. "type": "package",
  302. "dependencies": {
  303. "System.Memory": "4.5.3"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.EntityFrameworkCore": "5.0.0"
  320. },
  321. "compile": {
  322. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  323. "related": ".xml"
  324. }
  325. },
  326. "runtime": {
  327. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  328. "related": ".xml"
  329. }
  330. }
  331. },
  332. "log4net/2.0.17": {
  333. "type": "package",
  334. "dependencies": {
  335. "System.Configuration.ConfigurationManager": "4.5.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/log4net.dll": {
  339. "related": ".xml"
  340. }
  341. },
  342. "runtime": {
  343. "lib/netstandard2.0/log4net.dll": {
  344. "related": ".xml"
  345. }
  346. }
  347. },
  348. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  349. "type": "package",
  350. "dependencies": {
  351. "Newtonsoft.Json": "11.0.2"
  352. },
  353. "compile": {
  354. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  355. "related": ".pdb;.xml"
  356. }
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  360. "related": ".pdb;.xml"
  361. }
  362. }
  363. },
  364. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  365. "type": "package",
  366. "dependencies": {
  367. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  368. "System.Text.Encodings.Web": "4.5.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  377. "related": ".xml"
  378. }
  379. }
  380. },
  381. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  382. "type": "package",
  383. "dependencies": {
  384. "Microsoft.Extensions.Primitives": "5.0.0",
  385. "System.IO.Pipelines": "5.0.0"
  386. },
  387. "compile": {
  388. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  389. "related": ".xml"
  390. }
  391. },
  392. "runtime": {
  393. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  394. "related": ".xml"
  395. }
  396. }
  397. },
  398. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  399. "type": "package",
  400. "dependencies": {
  401. "Microsoft.Extensions.Logging.Console": "3.1.30",
  402. "Newtonsoft.Json": "13.0.1"
  403. },
  404. "compile": {
  405. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  406. },
  407. "runtime": {
  408. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  409. },
  410. "frameworkReferences": [
  411. "Microsoft.AspNetCore.App"
  412. ]
  413. },
  414. "Microsoft.CSharp/4.5.0": {
  415. "type": "package",
  416. "compile": {
  417. "ref/netcoreapp2.0/_._": {}
  418. },
  419. "runtime": {
  420. "lib/netcoreapp2.0/_._": {}
  421. }
  422. },
  423. "Microsoft.EntityFrameworkCore/5.0.0": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  427. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  428. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  429. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  430. "Microsoft.Extensions.Logging": "5.0.0",
  431. "System.Collections.Immutable": "5.0.0",
  432. "System.ComponentModel.Annotations": "5.0.0",
  433. "System.Diagnostics.DiagnosticSource": "5.0.0"
  434. },
  435. "compile": {
  436. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  437. "related": ".xml"
  438. }
  439. },
  440. "runtime": {
  441. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  442. "related": ".xml"
  443. }
  444. }
  445. },
  446. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  447. "type": "package",
  448. "compile": {
  449. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  450. "related": ".xml"
  451. }
  452. },
  453. "runtime": {
  454. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  455. "related": ".xml"
  456. }
  457. }
  458. },
  459. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  460. "type": "package",
  461. "compile": {
  462. "lib/netstandard2.0/_._": {}
  463. },
  464. "runtime": {
  465. "lib/netstandard2.0/_._": {}
  466. }
  467. },
  468. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  469. "type": "package",
  470. "dependencies": {
  471. "Microsoft.EntityFrameworkCore": "5.0.0",
  472. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  473. },
  474. "compile": {
  475. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  476. "related": ".xml"
  477. }
  478. },
  479. "runtime": {
  480. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  481. "related": ".xml"
  482. }
  483. }
  484. },
  485. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  486. "type": "package",
  487. "build": {
  488. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  489. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  490. },
  491. "buildMultiTargeting": {
  492. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  493. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  494. }
  495. },
  496. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  497. "type": "package",
  498. "dependencies": {
  499. "Microsoft.Extensions.Primitives": "5.0.0"
  500. },
  501. "compile": {
  502. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  503. "related": ".xml"
  504. }
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  508. "related": ".xml"
  509. }
  510. }
  511. },
  512. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  513. "type": "package",
  514. "dependencies": {
  515. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  516. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  517. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  518. "Microsoft.Extensions.Options": "5.0.0",
  519. "Microsoft.Extensions.Primitives": "5.0.0"
  520. },
  521. "compile": {
  522. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  523. "related": ".xml"
  524. }
  525. },
  526. "runtime": {
  527. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  528. "related": ".xml"
  529. }
  530. }
  531. },
  532. "Microsoft.Extensions.Configuration/5.0.0": {
  533. "type": "package",
  534. "dependencies": {
  535. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  536. "Microsoft.Extensions.Primitives": "5.0.0"
  537. },
  538. "compile": {
  539. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  540. "related": ".xml"
  541. }
  542. },
  543. "runtime": {
  544. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  545. "related": ".xml"
  546. }
  547. }
  548. },
  549. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  550. "type": "package",
  551. "dependencies": {
  552. "Microsoft.Extensions.Primitives": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  569. },
  570. "compile": {
  571. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  572. "related": ".xml"
  573. }
  574. },
  575. "runtime": {
  576. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  577. "related": ".xml"
  578. }
  579. }
  580. },
  581. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  582. "type": "package",
  583. "dependencies": {
  584. "Microsoft.Extensions.Configuration": "5.0.0",
  585. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  586. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  587. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  588. "Microsoft.Extensions.Primitives": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "runtime": {
  596. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  597. "related": ".xml"
  598. }
  599. }
  600. },
  601. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  602. "type": "package",
  603. "dependencies": {
  604. "Microsoft.Extensions.Configuration": "5.0.0",
  605. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  606. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  607. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  608. },
  609. "compile": {
  610. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  611. "related": ".xml"
  612. }
  613. },
  614. "runtime": {
  615. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  616. "related": ".xml"
  617. }
  618. }
  619. },
  620. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  621. "type": "package",
  622. "dependencies": {
  623. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  624. },
  625. "compile": {
  626. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  627. "related": ".xml"
  628. }
  629. },
  630. "runtime": {
  631. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  632. "related": ".xml"
  633. }
  634. }
  635. },
  636. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  637. "type": "package",
  638. "compile": {
  639. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "runtime": {
  644. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  645. "related": ".xml"
  646. }
  647. }
  648. },
  649. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  650. "type": "package",
  651. "dependencies": {
  652. "Microsoft.Extensions.Primitives": "5.0.0"
  653. },
  654. "compile": {
  655. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  656. "related": ".xml"
  657. }
  658. },
  659. "runtime": {
  660. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  661. "related": ".xml"
  662. }
  663. }
  664. },
  665. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  666. "type": "package",
  667. "dependencies": {
  668. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  669. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  670. "Microsoft.Extensions.Primitives": "5.0.0"
  671. },
  672. "compile": {
  673. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  674. "related": ".xml"
  675. }
  676. },
  677. "runtime": {
  678. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  679. "related": ".xml"
  680. }
  681. }
  682. },
  683. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  684. "type": "package",
  685. "compile": {
  686. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  687. "related": ".xml"
  688. }
  689. },
  690. "runtime": {
  691. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  692. "related": ".xml"
  693. }
  694. }
  695. },
  696. "Microsoft.Extensions.Hosting/2.1.0": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.Extensions.Configuration": "2.1.0",
  700. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  701. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  702. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  703. "Microsoft.Extensions.Logging": "2.1.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  720. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  721. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  722. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  723. },
  724. "compile": {
  725. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.Extensions.Http/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  739. "Microsoft.Extensions.Logging": "5.0.0",
  740. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  741. "Microsoft.Extensions.Options": "5.0.0"
  742. },
  743. "compile": {
  744. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  745. "related": ".xml"
  746. }
  747. },
  748. "runtime": {
  749. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  750. "related": ".xml"
  751. }
  752. }
  753. },
  754. "Microsoft.Extensions.Logging/5.0.0": {
  755. "type": "package",
  756. "dependencies": {
  757. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  758. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  759. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  760. "Microsoft.Extensions.Options": "5.0.0"
  761. },
  762. "compile": {
  763. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  764. "related": ".xml"
  765. }
  766. },
  767. "runtime": {
  768. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  769. "related": ".xml"
  770. }
  771. }
  772. },
  773. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  774. "type": "package",
  775. "compile": {
  776. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  782. "related": ".xml"
  783. }
  784. }
  785. },
  786. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.Logging": "3.1.30",
  790. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  791. },
  792. "compile": {
  793. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  794. "related": ".xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  799. "related": ".xml"
  800. }
  801. }
  802. },
  803. "Microsoft.Extensions.Logging.Console/3.1.30": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  807. "Microsoft.Extensions.Logging": "3.1.30",
  808. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  809. },
  810. "compile": {
  811. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  812. "related": ".xml"
  813. }
  814. },
  815. "runtime": {
  816. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  817. "related": ".xml"
  818. }
  819. }
  820. },
  821. "Microsoft.Extensions.Options/5.0.0": {
  822. "type": "package",
  823. "dependencies": {
  824. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  825. "Microsoft.Extensions.Primitives": "5.0.0"
  826. },
  827. "compile": {
  828. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  829. "related": ".xml"
  830. }
  831. },
  832. "runtime": {
  833. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  834. "related": ".xml"
  835. }
  836. }
  837. },
  838. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  839. "type": "package",
  840. "dependencies": {
  841. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  842. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  843. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  844. "Microsoft.Extensions.Options": "3.1.30"
  845. },
  846. "compile": {
  847. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  848. "related": ".xml"
  849. }
  850. },
  851. "runtime": {
  852. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  853. "related": ".xml"
  854. }
  855. }
  856. },
  857. "Microsoft.Extensions.Primitives/5.0.0": {
  858. "type": "package",
  859. "compile": {
  860. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "runtime": {
  865. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  866. "related": ".xml"
  867. }
  868. }
  869. },
  870. "Microsoft.NETCore.Platforms/5.0.0": {
  871. "type": "package",
  872. "compile": {
  873. "lib/netstandard1.0/_._": {}
  874. },
  875. "runtime": {
  876. "lib/netstandard1.0/_._": {}
  877. }
  878. },
  879. "Microsoft.NETCore.Targets/1.1.0": {
  880. "type": "package",
  881. "compile": {
  882. "lib/netstandard1.0/_._": {}
  883. },
  884. "runtime": {
  885. "lib/netstandard1.0/_._": {}
  886. }
  887. },
  888. "Microsoft.OpenApi/1.2.3": {
  889. "type": "package",
  890. "compile": {
  891. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  892. "related": ".pdb;.xml"
  893. }
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  897. "related": ".pdb;.xml"
  898. }
  899. }
  900. },
  901. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  902. "type": "package",
  903. "build": {
  904. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  905. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  906. }
  907. },
  908. "Microsoft.Win32.Primitives/4.3.0": {
  909. "type": "package",
  910. "dependencies": {
  911. "Microsoft.NETCore.Platforms": "1.1.0",
  912. "Microsoft.NETCore.Targets": "1.1.0",
  913. "System.Runtime": "4.3.0"
  914. },
  915. "compile": {
  916. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  917. "related": ".xml"
  918. }
  919. }
  920. },
  921. "Microsoft.Win32.SystemEvents/5.0.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.NETCore.Platforms": "5.0.0"
  925. },
  926. "compile": {
  927. "ref/netstandard2.0/_._": {
  928. "related": ".xml"
  929. }
  930. },
  931. "runtime": {
  932. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  933. "related": ".xml"
  934. }
  935. },
  936. "runtimeTargets": {
  937. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  938. "assetType": "runtime",
  939. "rid": "win"
  940. }
  941. }
  942. },
  943. "MQTTnet/4.3.7.1207": {
  944. "type": "package",
  945. "compile": {
  946. "lib/net5.0/MQTTnet.dll": {
  947. "related": ".xml"
  948. }
  949. },
  950. "runtime": {
  951. "lib/net5.0/MQTTnet.dll": {
  952. "related": ".xml"
  953. }
  954. }
  955. },
  956. "MQTTnet.AspNetCore/4.3.7.1207": {
  957. "type": "package",
  958. "dependencies": {
  959. "MQTTnet": "4.3.7.1207"
  960. },
  961. "compile": {
  962. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  963. "related": ".xml"
  964. }
  965. },
  966. "runtime": {
  967. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  968. "related": ".xml"
  969. }
  970. },
  971. "frameworkReferences": [
  972. "Microsoft.AspNetCore.App"
  973. ]
  974. },
  975. "MySql.Data/8.0.23": {
  976. "type": "package",
  977. "dependencies": {
  978. "BouncyCastle.NetCore": "1.8.5",
  979. "Google.Protobuf": "3.11.4",
  980. "K4os.Compression.LZ4": "1.1.11",
  981. "K4os.Compression.LZ4.Streams": "1.1.11",
  982. "K4os.Hash.xxHash": "1.0.6",
  983. "SSH.NET": "2020.0.0-beta1",
  984. "System.Buffers": "4.5.1",
  985. "System.Configuration.ConfigurationManager": "4.4.1",
  986. "System.Security.Permissions": "4.7.0",
  987. "System.Text.Encoding.CodePages": "4.4.0"
  988. },
  989. "compile": {
  990. "lib/net5.0/MySql.Data.dll": {
  991. "related": ".xml"
  992. },
  993. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  994. "lib/net5.0/Zstandard.Net.dll": {}
  995. },
  996. "runtime": {
  997. "lib/net5.0/MySql.Data.dll": {
  998. "related": ".xml"
  999. },
  1000. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1001. "lib/net5.0/Zstandard.Net.dll": {}
  1002. }
  1003. },
  1004. "MySqlConnector/1.1.0": {
  1005. "type": "package",
  1006. "compile": {
  1007. "lib/net5.0/MySqlConnector.dll": {
  1008. "related": ".xml"
  1009. }
  1010. },
  1011. "runtime": {
  1012. "lib/net5.0/MySqlConnector.dll": {
  1013. "related": ".xml"
  1014. }
  1015. }
  1016. },
  1017. "NETStandard.Library/1.6.1": {
  1018. "type": "package",
  1019. "dependencies": {
  1020. "Microsoft.NETCore.Platforms": "1.1.0",
  1021. "Microsoft.Win32.Primitives": "4.3.0",
  1022. "System.AppContext": "4.3.0",
  1023. "System.Collections": "4.3.0",
  1024. "System.Collections.Concurrent": "4.3.0",
  1025. "System.Console": "4.3.0",
  1026. "System.Diagnostics.Debug": "4.3.0",
  1027. "System.Diagnostics.Tools": "4.3.0",
  1028. "System.Diagnostics.Tracing": "4.3.0",
  1029. "System.Globalization": "4.3.0",
  1030. "System.Globalization.Calendars": "4.3.0",
  1031. "System.IO": "4.3.0",
  1032. "System.IO.Compression": "4.3.0",
  1033. "System.IO.Compression.ZipFile": "4.3.0",
  1034. "System.IO.FileSystem": "4.3.0",
  1035. "System.IO.FileSystem.Primitives": "4.3.0",
  1036. "System.Linq": "4.3.0",
  1037. "System.Linq.Expressions": "4.3.0",
  1038. "System.Net.Http": "4.3.0",
  1039. "System.Net.Primitives": "4.3.0",
  1040. "System.Net.Sockets": "4.3.0",
  1041. "System.ObjectModel": "4.3.0",
  1042. "System.Reflection": "4.3.0",
  1043. "System.Reflection.Extensions": "4.3.0",
  1044. "System.Reflection.Primitives": "4.3.0",
  1045. "System.Resources.ResourceManager": "4.3.0",
  1046. "System.Runtime": "4.3.0",
  1047. "System.Runtime.Extensions": "4.3.0",
  1048. "System.Runtime.Handles": "4.3.0",
  1049. "System.Runtime.InteropServices": "4.3.0",
  1050. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1051. "System.Runtime.Numerics": "4.3.0",
  1052. "System.Security.Cryptography.Algorithms": "4.3.0",
  1053. "System.Security.Cryptography.Encoding": "4.3.0",
  1054. "System.Security.Cryptography.Primitives": "4.3.0",
  1055. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1056. "System.Text.Encoding": "4.3.0",
  1057. "System.Text.Encoding.Extensions": "4.3.0",
  1058. "System.Text.RegularExpressions": "4.3.0",
  1059. "System.Threading": "4.3.0",
  1060. "System.Threading.Tasks": "4.3.0",
  1061. "System.Threading.Timer": "4.3.0",
  1062. "System.Xml.ReaderWriter": "4.3.0",
  1063. "System.Xml.XDocument": "4.3.0"
  1064. }
  1065. },
  1066. "Newtonsoft.Json/13.0.1": {
  1067. "type": "package",
  1068. "compile": {
  1069. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1070. "related": ".xml"
  1071. }
  1072. },
  1073. "runtime": {
  1074. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1075. "related": ".xml"
  1076. }
  1077. }
  1078. },
  1079. "Nito.AsyncEx.Coordination/5.0.0": {
  1080. "type": "package",
  1081. "dependencies": {
  1082. "Nito.AsyncEx.Tasks": "5.0.0",
  1083. "Nito.Collections.Deque": "1.0.4",
  1084. "Nito.Disposables": "2.0.0"
  1085. },
  1086. "compile": {
  1087. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1088. "related": ".xml"
  1089. }
  1090. },
  1091. "runtime": {
  1092. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1093. "related": ".xml"
  1094. }
  1095. }
  1096. },
  1097. "Nito.AsyncEx.Tasks/5.0.0": {
  1098. "type": "package",
  1099. "dependencies": {
  1100. "Nito.Disposables": "2.0.0"
  1101. },
  1102. "compile": {
  1103. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1104. "related": ".xml"
  1105. }
  1106. },
  1107. "runtime": {
  1108. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1109. "related": ".xml"
  1110. }
  1111. }
  1112. },
  1113. "Nito.Collections.Deque/1.0.4": {
  1114. "type": "package",
  1115. "compile": {
  1116. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1117. "related": ".xml"
  1118. }
  1119. },
  1120. "runtime": {
  1121. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1122. "related": ".xml"
  1123. }
  1124. }
  1125. },
  1126. "Nito.Disposables/2.0.0": {
  1127. "type": "package",
  1128. "dependencies": {
  1129. "System.Collections.Immutable": "1.4.0"
  1130. },
  1131. "compile": {
  1132. "lib/netstandard2.0/Nito.Disposables.dll": {
  1133. "related": ".pdb;.xml"
  1134. }
  1135. },
  1136. "runtime": {
  1137. "lib/netstandard2.0/Nito.Disposables.dll": {
  1138. "related": ".pdb;.xml"
  1139. }
  1140. }
  1141. },
  1142. "NodaTime/2.4.7": {
  1143. "type": "package",
  1144. "compile": {
  1145. "lib/netstandard2.0/NodaTime.dll": {
  1146. "related": ".pdb;.xml"
  1147. }
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/NodaTime.dll": {
  1151. "related": ".pdb;.xml"
  1152. }
  1153. }
  1154. },
  1155. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1156. "type": "package",
  1157. "dependencies": {
  1158. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1159. "MySqlConnector": "1.1.0"
  1160. },
  1161. "compile": {
  1162. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1163. "related": ".xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1168. "related": ".xml"
  1169. }
  1170. }
  1171. },
  1172. "QRCoder/1.4.3": {
  1173. "type": "package",
  1174. "dependencies": {
  1175. "System.Drawing.Common": "5.0.3"
  1176. },
  1177. "compile": {
  1178. "lib/net5.0/QRCoder.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/net5.0/QRCoder.dll": {}
  1182. }
  1183. },
  1184. "RabbitMQ.Client/6.8.1": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "System.Memory": "4.5.5",
  1188. "System.Threading.Channels": "7.0.0"
  1189. },
  1190. "compile": {
  1191. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1192. "related": ".xml"
  1193. }
  1194. },
  1195. "runtime": {
  1196. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1197. "related": ".xml"
  1198. }
  1199. }
  1200. },
  1201. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1202. "type": "package",
  1203. "runtimeTargets": {
  1204. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1205. "assetType": "native",
  1206. "rid": "debian.8-x64"
  1207. }
  1208. }
  1209. },
  1210. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1211. "type": "package",
  1212. "runtimeTargets": {
  1213. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1214. "assetType": "native",
  1215. "rid": "fedora.23-x64"
  1216. }
  1217. }
  1218. },
  1219. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1220. "type": "package",
  1221. "runtimeTargets": {
  1222. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1223. "assetType": "native",
  1224. "rid": "fedora.24-x64"
  1225. }
  1226. }
  1227. },
  1228. "runtime.native.System/4.3.0": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.NETCore.Platforms": "1.1.0",
  1232. "Microsoft.NETCore.Targets": "1.1.0"
  1233. },
  1234. "compile": {
  1235. "lib/netstandard1.0/_._": {}
  1236. },
  1237. "runtime": {
  1238. "lib/netstandard1.0/_._": {}
  1239. }
  1240. },
  1241. "runtime.native.System.IO.Compression/4.3.0": {
  1242. "type": "package",
  1243. "dependencies": {
  1244. "Microsoft.NETCore.Platforms": "1.1.0",
  1245. "Microsoft.NETCore.Targets": "1.1.0"
  1246. },
  1247. "compile": {
  1248. "lib/netstandard1.0/_._": {}
  1249. },
  1250. "runtime": {
  1251. "lib/netstandard1.0/_._": {}
  1252. }
  1253. },
  1254. "runtime.native.System.Net.Http/4.3.0": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "Microsoft.NETCore.Platforms": "1.1.0",
  1258. "Microsoft.NETCore.Targets": "1.1.0"
  1259. },
  1260. "compile": {
  1261. "lib/netstandard1.0/_._": {}
  1262. },
  1263. "runtime": {
  1264. "lib/netstandard1.0/_._": {}
  1265. }
  1266. },
  1267. "runtime.native.System.Net.Security/4.3.0": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "Microsoft.NETCore.Platforms": "1.1.0",
  1271. "Microsoft.NETCore.Targets": "1.1.0"
  1272. },
  1273. "compile": {
  1274. "lib/netstandard1.0/_._": {}
  1275. },
  1276. "runtime": {
  1277. "lib/netstandard1.0/_._": {}
  1278. }
  1279. },
  1280. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1281. "type": "package",
  1282. "dependencies": {
  1283. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1284. },
  1285. "compile": {
  1286. "lib/netstandard1.0/_._": {}
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard1.0/_._": {}
  1290. }
  1291. },
  1292. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1293. "type": "package",
  1294. "dependencies": {
  1295. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1296. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1297. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1298. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1299. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1300. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1301. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1302. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1303. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1304. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1305. },
  1306. "compile": {
  1307. "lib/netstandard1.0/_._": {}
  1308. },
  1309. "runtime": {
  1310. "lib/netstandard1.0/_._": {}
  1311. }
  1312. },
  1313. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1314. "type": "package",
  1315. "runtimeTargets": {
  1316. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1317. "assetType": "native",
  1318. "rid": "opensuse.13.2-x64"
  1319. }
  1320. }
  1321. },
  1322. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1323. "type": "package",
  1324. "runtimeTargets": {
  1325. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1326. "assetType": "native",
  1327. "rid": "opensuse.42.1-x64"
  1328. }
  1329. }
  1330. },
  1331. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1332. "type": "package",
  1333. "runtimeTargets": {
  1334. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1335. "assetType": "native",
  1336. "rid": "osx.10.10-x64"
  1337. }
  1338. }
  1339. },
  1340. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1341. "type": "package",
  1342. "runtimeTargets": {
  1343. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1344. "assetType": "native",
  1345. "rid": "osx.10.10-x64"
  1346. }
  1347. }
  1348. },
  1349. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1350. "type": "package",
  1351. "runtimeTargets": {
  1352. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1353. "assetType": "native",
  1354. "rid": "rhel.7-x64"
  1355. }
  1356. }
  1357. },
  1358. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1359. "type": "package",
  1360. "runtimeTargets": {
  1361. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1362. "assetType": "native",
  1363. "rid": "ubuntu.14.04-x64"
  1364. }
  1365. }
  1366. },
  1367. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1368. "type": "package",
  1369. "runtimeTargets": {
  1370. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1371. "assetType": "native",
  1372. "rid": "ubuntu.16.04-x64"
  1373. }
  1374. }
  1375. },
  1376. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1377. "type": "package",
  1378. "runtimeTargets": {
  1379. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1380. "assetType": "native",
  1381. "rid": "ubuntu.16.10-x64"
  1382. }
  1383. }
  1384. },
  1385. "SixLabors.ImageSharp/2.1.6": {
  1386. "type": "package",
  1387. "dependencies": {
  1388. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1389. "System.Text.Encoding.CodePages": "5.0.0"
  1390. },
  1391. "compile": {
  1392. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "runtime": {
  1397. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1398. "related": ".xml"
  1399. }
  1400. }
  1401. },
  1402. "SSH.NET/2020.0.0-beta1": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "SshNet.Security.Cryptography": "[1.3.0]"
  1406. },
  1407. "compile": {
  1408. "lib/netstandard2.0/Renci.SshNet.dll": {
  1409. "related": ".xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/netstandard2.0/Renci.SshNet.dll": {
  1414. "related": ".xml"
  1415. }
  1416. }
  1417. },
  1418. "SshNet.Security.Cryptography/1.3.0": {
  1419. "type": "package",
  1420. "compile": {
  1421. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1422. "related": ".xml"
  1423. }
  1424. },
  1425. "runtime": {
  1426. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1427. "related": ".xml"
  1428. }
  1429. }
  1430. },
  1431. "StackExchange.Redis/1.2.4": {
  1432. "type": "package",
  1433. "dependencies": {
  1434. "NETStandard.Library": "1.6.1",
  1435. "System.Collections": "4.3.0",
  1436. "System.Collections.Concurrent": "4.3.0",
  1437. "System.Collections.NonGeneric": "4.3.0",
  1438. "System.Diagnostics.Tools": "4.3.0",
  1439. "System.IO.Compression": "4.3.0",
  1440. "System.IO.FileSystem": "4.3.0",
  1441. "System.Linq": "4.3.0",
  1442. "System.Net.NameResolution": "4.3.0",
  1443. "System.Net.Security": "4.3.0",
  1444. "System.Net.Sockets": "4.3.0",
  1445. "System.Reflection.Emit": "4.3.0",
  1446. "System.Reflection.Emit.Lightweight": "4.3.0",
  1447. "System.Reflection.TypeExtensions": "4.3.0",
  1448. "System.Runtime.Extensions": "4.3.0",
  1449. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1450. "System.Security.Cryptography.Algorithms": "4.3.0",
  1451. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1452. "System.Text.RegularExpressions": "4.3.0",
  1453. "System.Threading": "4.3.0",
  1454. "System.Threading.Thread": "4.3.0",
  1455. "System.Threading.ThreadPool": "4.3.0",
  1456. "System.Threading.Timer": "4.3.0"
  1457. },
  1458. "compile": {
  1459. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "runtime": {
  1464. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1465. "related": ".xml"
  1466. }
  1467. }
  1468. },
  1469. "Swashbuckle.AspNetCore/5.6.3": {
  1470. "type": "package",
  1471. "dependencies": {
  1472. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1473. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1474. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1475. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1476. },
  1477. "build": {
  1478. "build/Swashbuckle.AspNetCore.props": {}
  1479. }
  1480. },
  1481. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "Microsoft.OpenApi": "1.2.3"
  1485. },
  1486. "compile": {
  1487. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1488. "related": ".pdb;.xml"
  1489. }
  1490. },
  1491. "runtime": {
  1492. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1493. "related": ".pdb;.xml"
  1494. }
  1495. },
  1496. "frameworkReferences": [
  1497. "Microsoft.AspNetCore.App"
  1498. ]
  1499. },
  1500. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1501. "type": "package",
  1502. "dependencies": {
  1503. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1504. },
  1505. "compile": {
  1506. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1507. "related": ".pdb;.xml"
  1508. }
  1509. },
  1510. "runtime": {
  1511. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1512. "related": ".pdb;.xml"
  1513. }
  1514. },
  1515. "frameworkReferences": [
  1516. "Microsoft.AspNetCore.App"
  1517. ]
  1518. },
  1519. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1520. "type": "package",
  1521. "compile": {
  1522. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1523. "related": ".pdb;.xml"
  1524. }
  1525. },
  1526. "runtime": {
  1527. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1528. "related": ".pdb;.xml"
  1529. }
  1530. },
  1531. "frameworkReferences": [
  1532. "Microsoft.AspNetCore.App"
  1533. ]
  1534. },
  1535. "System.AppContext/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.Runtime": "4.3.0"
  1539. },
  1540. "compile": {
  1541. "ref/netstandard1.6/System.AppContext.dll": {
  1542. "related": ".xml"
  1543. }
  1544. },
  1545. "runtime": {
  1546. "lib/netstandard1.6/System.AppContext.dll": {}
  1547. }
  1548. },
  1549. "System.Buffers/4.5.1": {
  1550. "type": "package",
  1551. "compile": {
  1552. "ref/netcoreapp2.0/_._": {}
  1553. },
  1554. "runtime": {
  1555. "lib/netcoreapp2.0/_._": {}
  1556. }
  1557. },
  1558. "System.Collections/4.3.0": {
  1559. "type": "package",
  1560. "dependencies": {
  1561. "Microsoft.NETCore.Platforms": "1.1.0",
  1562. "Microsoft.NETCore.Targets": "1.1.0",
  1563. "System.Runtime": "4.3.0"
  1564. },
  1565. "compile": {
  1566. "ref/netstandard1.3/System.Collections.dll": {
  1567. "related": ".xml"
  1568. }
  1569. }
  1570. },
  1571. "System.Collections.Concurrent/4.3.0": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Collections": "4.3.0",
  1575. "System.Diagnostics.Debug": "4.3.0",
  1576. "System.Diagnostics.Tracing": "4.3.0",
  1577. "System.Globalization": "4.3.0",
  1578. "System.Reflection": "4.3.0",
  1579. "System.Resources.ResourceManager": "4.3.0",
  1580. "System.Runtime": "4.3.0",
  1581. "System.Runtime.Extensions": "4.3.0",
  1582. "System.Threading": "4.3.0",
  1583. "System.Threading.Tasks": "4.3.0"
  1584. },
  1585. "compile": {
  1586. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1587. "related": ".xml"
  1588. }
  1589. },
  1590. "runtime": {
  1591. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1592. }
  1593. },
  1594. "System.Collections.Immutable/5.0.0": {
  1595. "type": "package",
  1596. "compile": {
  1597. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1598. "related": ".xml"
  1599. }
  1600. },
  1601. "runtime": {
  1602. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "System.Collections.NonGeneric/4.3.0": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "System.Diagnostics.Debug": "4.3.0",
  1611. "System.Globalization": "4.3.0",
  1612. "System.Resources.ResourceManager": "4.3.0",
  1613. "System.Runtime": "4.3.0",
  1614. "System.Runtime.Extensions": "4.3.0",
  1615. "System.Threading": "4.3.0"
  1616. },
  1617. "compile": {
  1618. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1619. "related": ".xml"
  1620. }
  1621. },
  1622. "runtime": {
  1623. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1624. }
  1625. },
  1626. "System.ComponentModel/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "System.Runtime": "4.3.0"
  1630. },
  1631. "compile": {
  1632. "ref/netstandard1.0/System.ComponentModel.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1638. }
  1639. },
  1640. "System.ComponentModel.Annotations/5.0.0": {
  1641. "type": "package",
  1642. "compile": {
  1643. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1644. "related": ".xml"
  1645. }
  1646. },
  1647. "runtime": {
  1648. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1649. "related": ".xml"
  1650. }
  1651. }
  1652. },
  1653. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "System.Resources.ResourceManager": "4.3.0",
  1657. "System.Runtime": "4.3.0",
  1658. "System.Threading": "4.3.0",
  1659. "System.Threading.Tasks": "4.3.0"
  1660. },
  1661. "compile": {
  1662. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1663. "related": ".xml"
  1664. }
  1665. },
  1666. "runtime": {
  1667. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1668. }
  1669. },
  1670. "System.ComponentModel.Primitives/4.3.0": {
  1671. "type": "package",
  1672. "dependencies": {
  1673. "System.ComponentModel": "4.3.0",
  1674. "System.Resources.ResourceManager": "4.3.0",
  1675. "System.Runtime": "4.3.0"
  1676. },
  1677. "compile": {
  1678. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1679. "related": ".xml"
  1680. }
  1681. },
  1682. "runtime": {
  1683. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1684. }
  1685. },
  1686. "System.Configuration.ConfigurationManager/4.5.0": {
  1687. "type": "package",
  1688. "dependencies": {
  1689. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1690. "System.Security.Permissions": "4.5.0"
  1691. },
  1692. "compile": {
  1693. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1694. "related": ".xml"
  1695. }
  1696. },
  1697. "runtime": {
  1698. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1699. }
  1700. },
  1701. "System.Console/4.3.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.NETCore.Platforms": "1.1.0",
  1705. "Microsoft.NETCore.Targets": "1.1.0",
  1706. "System.IO": "4.3.0",
  1707. "System.Runtime": "4.3.0",
  1708. "System.Text.Encoding": "4.3.0"
  1709. },
  1710. "compile": {
  1711. "ref/netstandard1.3/System.Console.dll": {
  1712. "related": ".xml"
  1713. }
  1714. }
  1715. },
  1716. "System.Diagnostics.Debug/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1725. "related": ".xml"
  1726. }
  1727. }
  1728. },
  1729. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1730. "type": "package",
  1731. "compile": {
  1732. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtime": {
  1737. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1738. "related": ".xml"
  1739. }
  1740. }
  1741. },
  1742. "System.Diagnostics.Tools/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Runtime": "4.3.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1751. "related": ".xml"
  1752. }
  1753. }
  1754. },
  1755. "System.Diagnostics.Tracing/4.3.0": {
  1756. "type": "package",
  1757. "dependencies": {
  1758. "Microsoft.NETCore.Platforms": "1.1.0",
  1759. "Microsoft.NETCore.Targets": "1.1.0",
  1760. "System.Runtime": "4.3.0"
  1761. },
  1762. "compile": {
  1763. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1764. "related": ".xml"
  1765. }
  1766. }
  1767. },
  1768. "System.Drawing.Common/5.0.3": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "Microsoft.Win32.SystemEvents": "5.0.0"
  1772. },
  1773. "compile": {
  1774. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1775. "related": ".xml"
  1776. }
  1777. },
  1778. "runtime": {
  1779. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1780. "related": ".xml"
  1781. }
  1782. },
  1783. "runtimeTargets": {
  1784. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1785. "assetType": "runtime",
  1786. "rid": "unix"
  1787. },
  1788. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1789. "assetType": "runtime",
  1790. "rid": "win"
  1791. }
  1792. }
  1793. },
  1794. "System.Globalization/4.3.0": {
  1795. "type": "package",
  1796. "dependencies": {
  1797. "Microsoft.NETCore.Platforms": "1.1.0",
  1798. "Microsoft.NETCore.Targets": "1.1.0",
  1799. "System.Runtime": "4.3.0"
  1800. },
  1801. "compile": {
  1802. "ref/netstandard1.3/System.Globalization.dll": {
  1803. "related": ".xml"
  1804. }
  1805. }
  1806. },
  1807. "System.Globalization.Calendars/4.3.0": {
  1808. "type": "package",
  1809. "dependencies": {
  1810. "Microsoft.NETCore.Platforms": "1.1.0",
  1811. "Microsoft.NETCore.Targets": "1.1.0",
  1812. "System.Globalization": "4.3.0",
  1813. "System.Runtime": "4.3.0"
  1814. },
  1815. "compile": {
  1816. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1817. "related": ".xml"
  1818. }
  1819. }
  1820. },
  1821. "System.Globalization.Extensions/4.3.0": {
  1822. "type": "package",
  1823. "dependencies": {
  1824. "Microsoft.NETCore.Platforms": "1.1.0",
  1825. "System.Globalization": "4.3.0",
  1826. "System.Resources.ResourceManager": "4.3.0",
  1827. "System.Runtime": "4.3.0",
  1828. "System.Runtime.Extensions": "4.3.0",
  1829. "System.Runtime.InteropServices": "4.3.0"
  1830. },
  1831. "compile": {
  1832. "ref/netstandard1.3/_._": {
  1833. "related": ".xml"
  1834. }
  1835. },
  1836. "runtimeTargets": {
  1837. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1838. "assetType": "runtime",
  1839. "rid": "unix"
  1840. },
  1841. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1842. "assetType": "runtime",
  1843. "rid": "win"
  1844. }
  1845. }
  1846. },
  1847. "System.IO/4.3.0": {
  1848. "type": "package",
  1849. "dependencies": {
  1850. "Microsoft.NETCore.Platforms": "1.1.0",
  1851. "Microsoft.NETCore.Targets": "1.1.0",
  1852. "System.Runtime": "4.3.0",
  1853. "System.Text.Encoding": "4.3.0",
  1854. "System.Threading.Tasks": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.5/System.IO.dll": {
  1858. "related": ".xml"
  1859. }
  1860. }
  1861. },
  1862. "System.IO.Compression/4.3.0": {
  1863. "type": "package",
  1864. "dependencies": {
  1865. "Microsoft.NETCore.Platforms": "1.1.0",
  1866. "System.Buffers": "4.3.0",
  1867. "System.Collections": "4.3.0",
  1868. "System.Diagnostics.Debug": "4.3.0",
  1869. "System.IO": "4.3.0",
  1870. "System.Resources.ResourceManager": "4.3.0",
  1871. "System.Runtime": "4.3.0",
  1872. "System.Runtime.Extensions": "4.3.0",
  1873. "System.Runtime.Handles": "4.3.0",
  1874. "System.Runtime.InteropServices": "4.3.0",
  1875. "System.Text.Encoding": "4.3.0",
  1876. "System.Threading": "4.3.0",
  1877. "System.Threading.Tasks": "4.3.0",
  1878. "runtime.native.System": "4.3.0",
  1879. "runtime.native.System.IO.Compression": "4.3.0"
  1880. },
  1881. "compile": {
  1882. "ref/netstandard1.3/System.IO.Compression.dll": {
  1883. "related": ".xml"
  1884. }
  1885. },
  1886. "runtimeTargets": {
  1887. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1888. "assetType": "runtime",
  1889. "rid": "unix"
  1890. },
  1891. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1892. "assetType": "runtime",
  1893. "rid": "win"
  1894. }
  1895. }
  1896. },
  1897. "System.IO.Compression.ZipFile/4.3.0": {
  1898. "type": "package",
  1899. "dependencies": {
  1900. "System.Buffers": "4.3.0",
  1901. "System.IO": "4.3.0",
  1902. "System.IO.Compression": "4.3.0",
  1903. "System.IO.FileSystem": "4.3.0",
  1904. "System.IO.FileSystem.Primitives": "4.3.0",
  1905. "System.Resources.ResourceManager": "4.3.0",
  1906. "System.Runtime": "4.3.0",
  1907. "System.Runtime.Extensions": "4.3.0",
  1908. "System.Text.Encoding": "4.3.0"
  1909. },
  1910. "compile": {
  1911. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1912. "related": ".xml"
  1913. }
  1914. },
  1915. "runtime": {
  1916. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1917. }
  1918. },
  1919. "System.IO.FileSystem/4.3.0": {
  1920. "type": "package",
  1921. "dependencies": {
  1922. "Microsoft.NETCore.Platforms": "1.1.0",
  1923. "Microsoft.NETCore.Targets": "1.1.0",
  1924. "System.IO": "4.3.0",
  1925. "System.IO.FileSystem.Primitives": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Handles": "4.3.0",
  1928. "System.Text.Encoding": "4.3.0",
  1929. "System.Threading.Tasks": "4.3.0"
  1930. },
  1931. "compile": {
  1932. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1933. "related": ".xml"
  1934. }
  1935. }
  1936. },
  1937. "System.IO.FileSystem.Primitives/4.3.0": {
  1938. "type": "package",
  1939. "dependencies": {
  1940. "System.Runtime": "4.3.0"
  1941. },
  1942. "compile": {
  1943. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1944. "related": ".xml"
  1945. }
  1946. },
  1947. "runtime": {
  1948. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1949. }
  1950. },
  1951. "System.IO.Pipelines/5.0.0": {
  1952. "type": "package",
  1953. "compile": {
  1954. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1955. "related": ".xml"
  1956. }
  1957. },
  1958. "runtime": {
  1959. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1960. "related": ".xml"
  1961. }
  1962. }
  1963. },
  1964. "System.Linq/4.3.0": {
  1965. "type": "package",
  1966. "dependencies": {
  1967. "System.Collections": "4.3.0",
  1968. "System.Diagnostics.Debug": "4.3.0",
  1969. "System.Resources.ResourceManager": "4.3.0",
  1970. "System.Runtime": "4.3.0",
  1971. "System.Runtime.Extensions": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "ref/netstandard1.6/System.Linq.dll": {
  1975. "related": ".xml"
  1976. }
  1977. },
  1978. "runtime": {
  1979. "lib/netstandard1.6/System.Linq.dll": {}
  1980. }
  1981. },
  1982. "System.Linq.Expressions/4.3.0": {
  1983. "type": "package",
  1984. "dependencies": {
  1985. "System.Collections": "4.3.0",
  1986. "System.Diagnostics.Debug": "4.3.0",
  1987. "System.Globalization": "4.3.0",
  1988. "System.IO": "4.3.0",
  1989. "System.Linq": "4.3.0",
  1990. "System.ObjectModel": "4.3.0",
  1991. "System.Reflection": "4.3.0",
  1992. "System.Reflection.Emit": "4.3.0",
  1993. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1994. "System.Reflection.Emit.Lightweight": "4.3.0",
  1995. "System.Reflection.Extensions": "4.3.0",
  1996. "System.Reflection.Primitives": "4.3.0",
  1997. "System.Reflection.TypeExtensions": "4.3.0",
  1998. "System.Resources.ResourceManager": "4.3.0",
  1999. "System.Runtime": "4.3.0",
  2000. "System.Runtime.Extensions": "4.3.0",
  2001. "System.Threading": "4.3.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2010. }
  2011. },
  2012. "System.Memory/4.5.5": {
  2013. "type": "package",
  2014. "compile": {
  2015. "ref/netcoreapp2.1/_._": {}
  2016. },
  2017. "runtime": {
  2018. "lib/netcoreapp2.1/_._": {}
  2019. }
  2020. },
  2021. "System.Net.Http/4.3.2": {
  2022. "type": "package",
  2023. "dependencies": {
  2024. "Microsoft.NETCore.Platforms": "1.1.0",
  2025. "System.Collections": "4.3.0",
  2026. "System.Diagnostics.Debug": "4.3.0",
  2027. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2028. "System.Diagnostics.Tracing": "4.3.0",
  2029. "System.Globalization": "4.3.0",
  2030. "System.Globalization.Extensions": "4.3.0",
  2031. "System.IO": "4.3.0",
  2032. "System.IO.FileSystem": "4.3.0",
  2033. "System.Net.Primitives": "4.3.0",
  2034. "System.Resources.ResourceManager": "4.3.0",
  2035. "System.Runtime": "4.3.0",
  2036. "System.Runtime.Extensions": "4.3.0",
  2037. "System.Runtime.Handles": "4.3.0",
  2038. "System.Runtime.InteropServices": "4.3.0",
  2039. "System.Security.Cryptography.Algorithms": "4.3.0",
  2040. "System.Security.Cryptography.Encoding": "4.3.0",
  2041. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2042. "System.Security.Cryptography.Primitives": "4.3.0",
  2043. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2044. "System.Text.Encoding": "4.3.0",
  2045. "System.Threading": "4.3.0",
  2046. "System.Threading.Tasks": "4.3.0",
  2047. "runtime.native.System": "4.3.0",
  2048. "runtime.native.System.Net.Http": "4.3.0",
  2049. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.3/System.Net.Http.dll": {}
  2053. },
  2054. "runtimeTargets": {
  2055. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2056. "assetType": "runtime",
  2057. "rid": "unix"
  2058. },
  2059. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2060. "assetType": "runtime",
  2061. "rid": "win"
  2062. }
  2063. }
  2064. },
  2065. "System.Net.NameResolution/4.3.0": {
  2066. "type": "package",
  2067. "dependencies": {
  2068. "Microsoft.NETCore.Platforms": "1.1.0",
  2069. "System.Collections": "4.3.0",
  2070. "System.Diagnostics.Tracing": "4.3.0",
  2071. "System.Globalization": "4.3.0",
  2072. "System.Net.Primitives": "4.3.0",
  2073. "System.Resources.ResourceManager": "4.3.0",
  2074. "System.Runtime": "4.3.0",
  2075. "System.Runtime.Extensions": "4.3.0",
  2076. "System.Runtime.Handles": "4.3.0",
  2077. "System.Runtime.InteropServices": "4.3.0",
  2078. "System.Security.Principal.Windows": "4.3.0",
  2079. "System.Threading": "4.3.0",
  2080. "System.Threading.Tasks": "4.3.0",
  2081. "runtime.native.System": "4.3.0"
  2082. },
  2083. "compile": {
  2084. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2085. "related": ".xml"
  2086. }
  2087. },
  2088. "runtimeTargets": {
  2089. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2090. "assetType": "runtime",
  2091. "rid": "unix"
  2092. },
  2093. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2094. "assetType": "runtime",
  2095. "rid": "win"
  2096. }
  2097. }
  2098. },
  2099. "System.Net.Primitives/4.3.0": {
  2100. "type": "package",
  2101. "dependencies": {
  2102. "Microsoft.NETCore.Platforms": "1.1.0",
  2103. "Microsoft.NETCore.Targets": "1.1.0",
  2104. "System.Runtime": "4.3.0",
  2105. "System.Runtime.Handles": "4.3.0"
  2106. },
  2107. "compile": {
  2108. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2109. "related": ".xml"
  2110. }
  2111. }
  2112. },
  2113. "System.Net.Security/4.3.0": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "Microsoft.NETCore.Platforms": "1.1.0",
  2117. "Microsoft.Win32.Primitives": "4.3.0",
  2118. "System.Collections": "4.3.0",
  2119. "System.Collections.Concurrent": "4.3.0",
  2120. "System.Diagnostics.Tracing": "4.3.0",
  2121. "System.Globalization": "4.3.0",
  2122. "System.Globalization.Extensions": "4.3.0",
  2123. "System.IO": "4.3.0",
  2124. "System.Net.Primitives": "4.3.0",
  2125. "System.Resources.ResourceManager": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Runtime.Extensions": "4.3.0",
  2128. "System.Runtime.Handles": "4.3.0",
  2129. "System.Runtime.InteropServices": "4.3.0",
  2130. "System.Security.Claims": "4.3.0",
  2131. "System.Security.Cryptography.Algorithms": "4.3.0",
  2132. "System.Security.Cryptography.Encoding": "4.3.0",
  2133. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2134. "System.Security.Cryptography.Primitives": "4.3.0",
  2135. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2136. "System.Security.Principal": "4.3.0",
  2137. "System.Text.Encoding": "4.3.0",
  2138. "System.Threading": "4.3.0",
  2139. "System.Threading.Tasks": "4.3.0",
  2140. "System.Threading.ThreadPool": "4.3.0",
  2141. "runtime.native.System": "4.3.0",
  2142. "runtime.native.System.Net.Security": "4.3.0",
  2143. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2144. },
  2145. "compile": {
  2146. "ref/netstandard1.3/System.Net.Security.dll": {
  2147. "related": ".xml"
  2148. }
  2149. },
  2150. "runtimeTargets": {
  2151. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2152. "assetType": "runtime",
  2153. "rid": "unix"
  2154. },
  2155. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2156. "assetType": "runtime",
  2157. "rid": "win"
  2158. }
  2159. }
  2160. },
  2161. "System.Net.Sockets/4.3.0": {
  2162. "type": "package",
  2163. "dependencies": {
  2164. "Microsoft.NETCore.Platforms": "1.1.0",
  2165. "Microsoft.NETCore.Targets": "1.1.0",
  2166. "System.IO": "4.3.0",
  2167. "System.Net.Primitives": "4.3.0",
  2168. "System.Runtime": "4.3.0",
  2169. "System.Threading.Tasks": "4.3.0"
  2170. },
  2171. "compile": {
  2172. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2173. "related": ".xml"
  2174. }
  2175. }
  2176. },
  2177. "System.ObjectModel/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "System.Collections": "4.3.0",
  2181. "System.Diagnostics.Debug": "4.3.0",
  2182. "System.Resources.ResourceManager": "4.3.0",
  2183. "System.Runtime": "4.3.0",
  2184. "System.Threading": "4.3.0"
  2185. },
  2186. "compile": {
  2187. "ref/netstandard1.3/System.ObjectModel.dll": {
  2188. "related": ".xml"
  2189. }
  2190. },
  2191. "runtime": {
  2192. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2193. }
  2194. },
  2195. "System.Reactive/4.4.1": {
  2196. "type": "package",
  2197. "compile": {
  2198. "lib/netcoreapp3.0/_._": {}
  2199. },
  2200. "runtime": {
  2201. "lib/netcoreapp3.0/_._": {}
  2202. },
  2203. "build": {
  2204. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2205. }
  2206. },
  2207. "System.Reflection/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "Microsoft.NETCore.Platforms": "1.1.0",
  2211. "Microsoft.NETCore.Targets": "1.1.0",
  2212. "System.IO": "4.3.0",
  2213. "System.Reflection.Primitives": "4.3.0",
  2214. "System.Runtime": "4.3.0"
  2215. },
  2216. "compile": {
  2217. "ref/netstandard1.5/System.Reflection.dll": {
  2218. "related": ".xml"
  2219. }
  2220. }
  2221. },
  2222. "System.Reflection.Emit/4.3.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "System.IO": "4.3.0",
  2226. "System.Reflection": "4.3.0",
  2227. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2228. "System.Reflection.Primitives": "4.3.0",
  2229. "System.Runtime": "4.3.0"
  2230. },
  2231. "compile": {
  2232. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2233. "related": ".xml"
  2234. }
  2235. },
  2236. "runtime": {
  2237. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2238. }
  2239. },
  2240. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2241. "type": "package",
  2242. "dependencies": {
  2243. "System.Reflection": "4.3.0",
  2244. "System.Reflection.Primitives": "4.3.0",
  2245. "System.Runtime": "4.3.0"
  2246. },
  2247. "compile": {
  2248. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2249. "related": ".xml"
  2250. }
  2251. },
  2252. "runtime": {
  2253. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2254. }
  2255. },
  2256. "System.Reflection.Emit.Lightweight/4.3.0": {
  2257. "type": "package",
  2258. "dependencies": {
  2259. "System.Reflection": "4.3.0",
  2260. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2261. "System.Reflection.Primitives": "4.3.0",
  2262. "System.Runtime": "4.3.0"
  2263. },
  2264. "compile": {
  2265. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2266. "related": ".xml"
  2267. }
  2268. },
  2269. "runtime": {
  2270. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2271. }
  2272. },
  2273. "System.Reflection.Extensions/4.3.0": {
  2274. "type": "package",
  2275. "dependencies": {
  2276. "Microsoft.NETCore.Platforms": "1.1.0",
  2277. "Microsoft.NETCore.Targets": "1.1.0",
  2278. "System.Reflection": "4.3.0",
  2279. "System.Runtime": "4.3.0"
  2280. },
  2281. "compile": {
  2282. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2283. "related": ".xml"
  2284. }
  2285. }
  2286. },
  2287. "System.Reflection.Primitives/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "Microsoft.NETCore.Targets": "1.1.0",
  2292. "System.Runtime": "4.3.0"
  2293. },
  2294. "compile": {
  2295. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2296. "related": ".xml"
  2297. }
  2298. }
  2299. },
  2300. "System.Reflection.TypeExtensions/4.3.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "System.Reflection": "4.3.0",
  2304. "System.Runtime": "4.3.0"
  2305. },
  2306. "compile": {
  2307. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2308. "related": ".xml"
  2309. }
  2310. },
  2311. "runtime": {
  2312. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2313. }
  2314. },
  2315. "System.Resources.ResourceManager/4.3.0": {
  2316. "type": "package",
  2317. "dependencies": {
  2318. "Microsoft.NETCore.Platforms": "1.1.0",
  2319. "Microsoft.NETCore.Targets": "1.1.0",
  2320. "System.Globalization": "4.3.0",
  2321. "System.Reflection": "4.3.0",
  2322. "System.Runtime": "4.3.0"
  2323. },
  2324. "compile": {
  2325. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2326. "related": ".xml"
  2327. }
  2328. }
  2329. },
  2330. "System.Runtime/4.3.0": {
  2331. "type": "package",
  2332. "dependencies": {
  2333. "Microsoft.NETCore.Platforms": "1.1.0",
  2334. "Microsoft.NETCore.Targets": "1.1.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.5/System.Runtime.dll": {
  2338. "related": ".xml"
  2339. }
  2340. }
  2341. },
  2342. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2343. "type": "package",
  2344. "compile": {
  2345. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2346. "related": ".xml"
  2347. }
  2348. },
  2349. "runtime": {
  2350. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2351. "related": ".xml"
  2352. }
  2353. }
  2354. },
  2355. "System.Runtime.Extensions/4.3.0": {
  2356. "type": "package",
  2357. "dependencies": {
  2358. "Microsoft.NETCore.Platforms": "1.1.0",
  2359. "Microsoft.NETCore.Targets": "1.1.0",
  2360. "System.Runtime": "4.3.0"
  2361. },
  2362. "compile": {
  2363. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2364. "related": ".xml"
  2365. }
  2366. }
  2367. },
  2368. "System.Runtime.Handles/4.3.0": {
  2369. "type": "package",
  2370. "dependencies": {
  2371. "Microsoft.NETCore.Platforms": "1.1.0",
  2372. "Microsoft.NETCore.Targets": "1.1.0",
  2373. "System.Runtime": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2377. "related": ".xml"
  2378. }
  2379. }
  2380. },
  2381. "System.Runtime.InteropServices/4.3.0": {
  2382. "type": "package",
  2383. "dependencies": {
  2384. "Microsoft.NETCore.Platforms": "1.1.0",
  2385. "Microsoft.NETCore.Targets": "1.1.0",
  2386. "System.Reflection": "4.3.0",
  2387. "System.Reflection.Primitives": "4.3.0",
  2388. "System.Runtime": "4.3.0",
  2389. "System.Runtime.Handles": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2393. }
  2394. },
  2395. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2396. "type": "package",
  2397. "dependencies": {
  2398. "System.Reflection": "4.3.0",
  2399. "System.Reflection.Extensions": "4.3.0",
  2400. "System.Resources.ResourceManager": "4.3.0",
  2401. "System.Runtime": "4.3.0",
  2402. "System.Runtime.InteropServices": "4.3.0",
  2403. "System.Threading": "4.3.0",
  2404. "runtime.native.System": "4.3.0"
  2405. },
  2406. "compile": {
  2407. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2408. },
  2409. "runtime": {
  2410. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2411. },
  2412. "runtimeTargets": {
  2413. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2414. "assetType": "runtime",
  2415. "rid": "unix"
  2416. },
  2417. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2418. "assetType": "runtime",
  2419. "rid": "win"
  2420. }
  2421. }
  2422. },
  2423. "System.Runtime.Numerics/4.3.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "System.Globalization": "4.3.0",
  2427. "System.Resources.ResourceManager": "4.3.0",
  2428. "System.Runtime": "4.3.0",
  2429. "System.Runtime.Extensions": "4.3.0"
  2430. },
  2431. "compile": {
  2432. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2433. "related": ".xml"
  2434. }
  2435. },
  2436. "runtime": {
  2437. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2438. }
  2439. },
  2440. "System.Runtime.Serialization.Primitives/4.3.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "System.Resources.ResourceManager": "4.3.0",
  2444. "System.Runtime": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2448. "related": ".xml"
  2449. }
  2450. },
  2451. "runtime": {
  2452. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2453. }
  2454. },
  2455. "System.Security.AccessControl/4.7.0": {
  2456. "type": "package",
  2457. "dependencies": {
  2458. "Microsoft.NETCore.Platforms": "3.1.0",
  2459. "System.Security.Principal.Windows": "4.7.0"
  2460. },
  2461. "compile": {
  2462. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2463. "related": ".xml"
  2464. }
  2465. },
  2466. "runtime": {
  2467. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2468. "related": ".xml"
  2469. }
  2470. },
  2471. "runtimeTargets": {
  2472. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2473. "assetType": "runtime",
  2474. "rid": "win"
  2475. }
  2476. }
  2477. },
  2478. "System.Security.Claims/4.3.0": {
  2479. "type": "package",
  2480. "dependencies": {
  2481. "System.Collections": "4.3.0",
  2482. "System.Globalization": "4.3.0",
  2483. "System.IO": "4.3.0",
  2484. "System.Resources.ResourceManager": "4.3.0",
  2485. "System.Runtime": "4.3.0",
  2486. "System.Runtime.Extensions": "4.3.0",
  2487. "System.Security.Principal": "4.3.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.3/_._": {
  2491. "related": ".xml"
  2492. }
  2493. },
  2494. "runtime": {
  2495. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2496. }
  2497. },
  2498. "System.Security.Cryptography.Algorithms/4.3.0": {
  2499. "type": "package",
  2500. "dependencies": {
  2501. "Microsoft.NETCore.Platforms": "1.1.0",
  2502. "System.Collections": "4.3.0",
  2503. "System.IO": "4.3.0",
  2504. "System.Resources.ResourceManager": "4.3.0",
  2505. "System.Runtime": "4.3.0",
  2506. "System.Runtime.Extensions": "4.3.0",
  2507. "System.Runtime.Handles": "4.3.0",
  2508. "System.Runtime.InteropServices": "4.3.0",
  2509. "System.Runtime.Numerics": "4.3.0",
  2510. "System.Security.Cryptography.Encoding": "4.3.0",
  2511. "System.Security.Cryptography.Primitives": "4.3.0",
  2512. "System.Text.Encoding": "4.3.0",
  2513. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2514. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2515. },
  2516. "compile": {
  2517. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2518. },
  2519. "runtimeTargets": {
  2520. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2521. "assetType": "runtime",
  2522. "rid": "osx"
  2523. },
  2524. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2525. "assetType": "runtime",
  2526. "rid": "unix"
  2527. },
  2528. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2529. "assetType": "runtime",
  2530. "rid": "win"
  2531. }
  2532. }
  2533. },
  2534. "System.Security.Cryptography.Cng/4.3.0": {
  2535. "type": "package",
  2536. "dependencies": {
  2537. "Microsoft.NETCore.Platforms": "1.1.0",
  2538. "System.IO": "4.3.0",
  2539. "System.Resources.ResourceManager": "4.3.0",
  2540. "System.Runtime": "4.3.0",
  2541. "System.Runtime.Extensions": "4.3.0",
  2542. "System.Runtime.Handles": "4.3.0",
  2543. "System.Runtime.InteropServices": "4.3.0",
  2544. "System.Security.Cryptography.Algorithms": "4.3.0",
  2545. "System.Security.Cryptography.Encoding": "4.3.0",
  2546. "System.Security.Cryptography.Primitives": "4.3.0",
  2547. "System.Text.Encoding": "4.3.0"
  2548. },
  2549. "compile": {
  2550. "ref/netstandard1.6/_._": {}
  2551. },
  2552. "runtimeTargets": {
  2553. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2554. "assetType": "runtime",
  2555. "rid": "unix"
  2556. },
  2557. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2558. "assetType": "runtime",
  2559. "rid": "win"
  2560. }
  2561. }
  2562. },
  2563. "System.Security.Cryptography.Csp/4.3.0": {
  2564. "type": "package",
  2565. "dependencies": {
  2566. "Microsoft.NETCore.Platforms": "1.1.0",
  2567. "System.IO": "4.3.0",
  2568. "System.Reflection": "4.3.0",
  2569. "System.Resources.ResourceManager": "4.3.0",
  2570. "System.Runtime": "4.3.0",
  2571. "System.Runtime.Extensions": "4.3.0",
  2572. "System.Runtime.Handles": "4.3.0",
  2573. "System.Runtime.InteropServices": "4.3.0",
  2574. "System.Security.Cryptography.Algorithms": "4.3.0",
  2575. "System.Security.Cryptography.Encoding": "4.3.0",
  2576. "System.Security.Cryptography.Primitives": "4.3.0",
  2577. "System.Text.Encoding": "4.3.0",
  2578. "System.Threading": "4.3.0"
  2579. },
  2580. "compile": {
  2581. "ref/netstandard1.3/_._": {}
  2582. },
  2583. "runtimeTargets": {
  2584. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2585. "assetType": "runtime",
  2586. "rid": "unix"
  2587. },
  2588. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2589. "assetType": "runtime",
  2590. "rid": "win"
  2591. }
  2592. }
  2593. },
  2594. "System.Security.Cryptography.Encoding/4.3.0": {
  2595. "type": "package",
  2596. "dependencies": {
  2597. "Microsoft.NETCore.Platforms": "1.1.0",
  2598. "System.Collections": "4.3.0",
  2599. "System.Collections.Concurrent": "4.3.0",
  2600. "System.Linq": "4.3.0",
  2601. "System.Resources.ResourceManager": "4.3.0",
  2602. "System.Runtime": "4.3.0",
  2603. "System.Runtime.Extensions": "4.3.0",
  2604. "System.Runtime.Handles": "4.3.0",
  2605. "System.Runtime.InteropServices": "4.3.0",
  2606. "System.Security.Cryptography.Primitives": "4.3.0",
  2607. "System.Text.Encoding": "4.3.0",
  2608. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2609. },
  2610. "compile": {
  2611. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2612. "related": ".xml"
  2613. }
  2614. },
  2615. "runtimeTargets": {
  2616. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2617. "assetType": "runtime",
  2618. "rid": "unix"
  2619. },
  2620. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2621. "assetType": "runtime",
  2622. "rid": "win"
  2623. }
  2624. }
  2625. },
  2626. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2627. "type": "package",
  2628. "dependencies": {
  2629. "System.Collections": "4.3.0",
  2630. "System.IO": "4.3.0",
  2631. "System.Resources.ResourceManager": "4.3.0",
  2632. "System.Runtime": "4.3.0",
  2633. "System.Runtime.Extensions": "4.3.0",
  2634. "System.Runtime.Handles": "4.3.0",
  2635. "System.Runtime.InteropServices": "4.3.0",
  2636. "System.Runtime.Numerics": "4.3.0",
  2637. "System.Security.Cryptography.Algorithms": "4.3.0",
  2638. "System.Security.Cryptography.Encoding": "4.3.0",
  2639. "System.Security.Cryptography.Primitives": "4.3.0",
  2640. "System.Text.Encoding": "4.3.0",
  2641. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2642. },
  2643. "compile": {
  2644. "ref/netstandard1.6/_._": {}
  2645. },
  2646. "runtime": {
  2647. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2648. },
  2649. "runtimeTargets": {
  2650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "unix"
  2653. }
  2654. }
  2655. },
  2656. "System.Security.Cryptography.Primitives/4.3.0": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "System.Diagnostics.Debug": "4.3.0",
  2660. "System.Globalization": "4.3.0",
  2661. "System.IO": "4.3.0",
  2662. "System.Resources.ResourceManager": "4.3.0",
  2663. "System.Runtime": "4.3.0",
  2664. "System.Threading": "4.3.0",
  2665. "System.Threading.Tasks": "4.3.0"
  2666. },
  2667. "compile": {
  2668. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2669. },
  2670. "runtime": {
  2671. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2672. }
  2673. },
  2674. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2675. "type": "package",
  2676. "compile": {
  2677. "ref/netstandard2.0/_._": {
  2678. "related": ".xml"
  2679. }
  2680. },
  2681. "runtime": {
  2682. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2683. },
  2684. "runtimeTargets": {
  2685. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2686. "assetType": "runtime",
  2687. "rid": "win"
  2688. }
  2689. }
  2690. },
  2691. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.NETCore.Platforms": "1.1.0",
  2695. "System.Collections": "4.3.0",
  2696. "System.Diagnostics.Debug": "4.3.0",
  2697. "System.Globalization": "4.3.0",
  2698. "System.Globalization.Calendars": "4.3.0",
  2699. "System.IO": "4.3.0",
  2700. "System.IO.FileSystem": "4.3.0",
  2701. "System.IO.FileSystem.Primitives": "4.3.0",
  2702. "System.Resources.ResourceManager": "4.3.0",
  2703. "System.Runtime": "4.3.0",
  2704. "System.Runtime.Extensions": "4.3.0",
  2705. "System.Runtime.Handles": "4.3.0",
  2706. "System.Runtime.InteropServices": "4.3.0",
  2707. "System.Runtime.Numerics": "4.3.0",
  2708. "System.Security.Cryptography.Algorithms": "4.3.0",
  2709. "System.Security.Cryptography.Cng": "4.3.0",
  2710. "System.Security.Cryptography.Csp": "4.3.0",
  2711. "System.Security.Cryptography.Encoding": "4.3.0",
  2712. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2713. "System.Security.Cryptography.Primitives": "4.3.0",
  2714. "System.Text.Encoding": "4.3.0",
  2715. "System.Threading": "4.3.0",
  2716. "runtime.native.System": "4.3.0",
  2717. "runtime.native.System.Net.Http": "4.3.0",
  2718. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2719. },
  2720. "compile": {
  2721. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2722. "related": ".xml"
  2723. }
  2724. },
  2725. "runtimeTargets": {
  2726. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2727. "assetType": "runtime",
  2728. "rid": "unix"
  2729. },
  2730. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2731. "assetType": "runtime",
  2732. "rid": "win"
  2733. }
  2734. }
  2735. },
  2736. "System.Security.Permissions/4.7.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "System.Security.AccessControl": "4.7.0",
  2740. "System.Windows.Extensions": "4.7.0"
  2741. },
  2742. "compile": {
  2743. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2744. "related": ".xml"
  2745. }
  2746. },
  2747. "runtime": {
  2748. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2749. "related": ".xml"
  2750. }
  2751. }
  2752. },
  2753. "System.Security.Principal/4.3.0": {
  2754. "type": "package",
  2755. "dependencies": {
  2756. "System.Runtime": "4.3.0"
  2757. },
  2758. "compile": {
  2759. "ref/netstandard1.0/System.Security.Principal.dll": {
  2760. "related": ".xml"
  2761. }
  2762. },
  2763. "runtime": {
  2764. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2765. }
  2766. },
  2767. "System.Security.Principal.Windows/4.7.0": {
  2768. "type": "package",
  2769. "compile": {
  2770. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2771. "related": ".xml"
  2772. }
  2773. },
  2774. "runtime": {
  2775. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtimeTargets": {
  2780. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2781. "assetType": "runtime",
  2782. "rid": "unix"
  2783. },
  2784. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2785. "assetType": "runtime",
  2786. "rid": "win"
  2787. }
  2788. }
  2789. },
  2790. "System.Text.Encoding/4.3.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "Microsoft.NETCore.Platforms": "1.1.0",
  2794. "Microsoft.NETCore.Targets": "1.1.0",
  2795. "System.Runtime": "4.3.0"
  2796. },
  2797. "compile": {
  2798. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2799. "related": ".xml"
  2800. }
  2801. }
  2802. },
  2803. "System.Text.Encoding.CodePages/5.0.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "Microsoft.NETCore.Platforms": "5.0.0"
  2807. },
  2808. "compile": {
  2809. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2810. "related": ".xml"
  2811. }
  2812. },
  2813. "runtime": {
  2814. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2815. "related": ".xml"
  2816. }
  2817. },
  2818. "runtimeTargets": {
  2819. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2820. "assetType": "runtime",
  2821. "rid": "win"
  2822. }
  2823. }
  2824. },
  2825. "System.Text.Encoding.Extensions/4.3.0": {
  2826. "type": "package",
  2827. "dependencies": {
  2828. "Microsoft.NETCore.Platforms": "1.1.0",
  2829. "Microsoft.NETCore.Targets": "1.1.0",
  2830. "System.Runtime": "4.3.0",
  2831. "System.Text.Encoding": "4.3.0"
  2832. },
  2833. "compile": {
  2834. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2835. "related": ".xml"
  2836. }
  2837. }
  2838. },
  2839. "System.Text.Encodings.Web/4.7.0": {
  2840. "type": "package",
  2841. "compile": {
  2842. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2843. "related": ".xml"
  2844. }
  2845. },
  2846. "runtime": {
  2847. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2848. "related": ".xml"
  2849. }
  2850. }
  2851. },
  2852. "System.Text.RegularExpressions/4.3.0": {
  2853. "type": "package",
  2854. "dependencies": {
  2855. "System.Runtime": "4.3.0"
  2856. },
  2857. "compile": {
  2858. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2859. },
  2860. "runtime": {
  2861. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2862. }
  2863. },
  2864. "System.Threading/4.3.0": {
  2865. "type": "package",
  2866. "dependencies": {
  2867. "System.Runtime": "4.3.0",
  2868. "System.Threading.Tasks": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Threading.dll": {
  2872. "related": ".xml"
  2873. }
  2874. },
  2875. "runtime": {
  2876. "lib/netstandard1.3/System.Threading.dll": {}
  2877. }
  2878. },
  2879. "System.Threading.Channels/7.0.0": {
  2880. "type": "package",
  2881. "compile": {
  2882. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2883. "related": ".xml"
  2884. }
  2885. },
  2886. "runtime": {
  2887. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2888. "related": ".xml"
  2889. }
  2890. },
  2891. "build": {
  2892. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2893. }
  2894. },
  2895. "System.Threading.Tasks/4.3.0": {
  2896. "type": "package",
  2897. "dependencies": {
  2898. "Microsoft.NETCore.Platforms": "1.1.0",
  2899. "Microsoft.NETCore.Targets": "1.1.0",
  2900. "System.Runtime": "4.3.0"
  2901. },
  2902. "compile": {
  2903. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2904. "related": ".xml"
  2905. }
  2906. }
  2907. },
  2908. "System.Threading.Tasks.Extensions/4.3.0": {
  2909. "type": "package",
  2910. "dependencies": {
  2911. "System.Collections": "4.3.0",
  2912. "System.Runtime": "4.3.0",
  2913. "System.Threading.Tasks": "4.3.0"
  2914. },
  2915. "compile": {
  2916. "lib/netstandard1.0/_._": {
  2917. "related": ".xml"
  2918. }
  2919. },
  2920. "runtime": {
  2921. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2922. "related": ".xml"
  2923. }
  2924. }
  2925. },
  2926. "System.Threading.Thread/4.3.0": {
  2927. "type": "package",
  2928. "dependencies": {
  2929. "System.Runtime": "4.3.0"
  2930. },
  2931. "compile": {
  2932. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2933. "related": ".xml"
  2934. }
  2935. },
  2936. "runtime": {
  2937. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2938. }
  2939. },
  2940. "System.Threading.ThreadPool/4.3.0": {
  2941. "type": "package",
  2942. "dependencies": {
  2943. "System.Runtime": "4.3.0",
  2944. "System.Runtime.Handles": "4.3.0"
  2945. },
  2946. "compile": {
  2947. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2948. "related": ".xml"
  2949. }
  2950. },
  2951. "runtime": {
  2952. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2953. }
  2954. },
  2955. "System.Threading.Timer/4.3.0": {
  2956. "type": "package",
  2957. "dependencies": {
  2958. "Microsoft.NETCore.Platforms": "1.1.0",
  2959. "Microsoft.NETCore.Targets": "1.1.0",
  2960. "System.Runtime": "4.3.0"
  2961. },
  2962. "compile": {
  2963. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2964. "related": ".xml"
  2965. }
  2966. }
  2967. },
  2968. "System.Windows.Extensions/4.7.0": {
  2969. "type": "package",
  2970. "dependencies": {
  2971. "System.Drawing.Common": "4.7.0"
  2972. },
  2973. "compile": {
  2974. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2975. "related": ".xml"
  2976. }
  2977. },
  2978. "runtime": {
  2979. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2980. "related": ".xml"
  2981. }
  2982. },
  2983. "runtimeTargets": {
  2984. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2985. "assetType": "runtime",
  2986. "rid": "win"
  2987. }
  2988. }
  2989. },
  2990. "System.Xml.ReaderWriter/4.3.0": {
  2991. "type": "package",
  2992. "dependencies": {
  2993. "System.Collections": "4.3.0",
  2994. "System.Diagnostics.Debug": "4.3.0",
  2995. "System.Globalization": "4.3.0",
  2996. "System.IO": "4.3.0",
  2997. "System.IO.FileSystem": "4.3.0",
  2998. "System.IO.FileSystem.Primitives": "4.3.0",
  2999. "System.Resources.ResourceManager": "4.3.0",
  3000. "System.Runtime": "4.3.0",
  3001. "System.Runtime.Extensions": "4.3.0",
  3002. "System.Runtime.InteropServices": "4.3.0",
  3003. "System.Text.Encoding": "4.3.0",
  3004. "System.Text.Encoding.Extensions": "4.3.0",
  3005. "System.Text.RegularExpressions": "4.3.0",
  3006. "System.Threading.Tasks": "4.3.0",
  3007. "System.Threading.Tasks.Extensions": "4.3.0"
  3008. },
  3009. "compile": {
  3010. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3011. "related": ".xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3016. }
  3017. },
  3018. "System.Xml.XDocument/4.3.0": {
  3019. "type": "package",
  3020. "dependencies": {
  3021. "System.Collections": "4.3.0",
  3022. "System.Diagnostics.Debug": "4.3.0",
  3023. "System.Diagnostics.Tools": "4.3.0",
  3024. "System.Globalization": "4.3.0",
  3025. "System.IO": "4.3.0",
  3026. "System.Reflection": "4.3.0",
  3027. "System.Resources.ResourceManager": "4.3.0",
  3028. "System.Runtime": "4.3.0",
  3029. "System.Runtime.Extensions": "4.3.0",
  3030. "System.Text.Encoding": "4.3.0",
  3031. "System.Threading": "4.3.0",
  3032. "System.Xml.ReaderWriter": "4.3.0"
  3033. },
  3034. "compile": {
  3035. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3036. "related": ".xml"
  3037. }
  3038. },
  3039. "runtime": {
  3040. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3041. }
  3042. },
  3043. "ToolGood.Words/3.1.0.2": {
  3044. "type": "package",
  3045. "compile": {
  3046. "lib/netstandard2.1/ToolGood.Words.dll": {
  3047. "related": ".xml"
  3048. }
  3049. },
  3050. "runtime": {
  3051. "lib/netstandard2.1/ToolGood.Words.dll": {
  3052. "related": ".xml"
  3053. }
  3054. }
  3055. },
  3056. "ZXing.Net/0.16.9": {
  3057. "type": "package",
  3058. "compile": {
  3059. "lib/net5.0/zxing.dll": {
  3060. "related": ".XML"
  3061. }
  3062. },
  3063. "runtime": {
  3064. "lib/net5.0/zxing.dll": {
  3065. "related": ".XML"
  3066. }
  3067. }
  3068. },
  3069. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3070. "type": "package",
  3071. "dependencies": {
  3072. "SixLabors.ImageSharp": "2.1.3",
  3073. "ZXing.Net": "0.16.9"
  3074. },
  3075. "compile": {
  3076. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3077. "related": ".pdb;.xml"
  3078. }
  3079. },
  3080. "runtime": {
  3081. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3082. "related": ".pdb;.xml"
  3083. }
  3084. }
  3085. },
  3086. "Ropin.Core.Common/1.0.0": {
  3087. "type": "project",
  3088. "framework": ".NETCoreApp,Version=v5.0",
  3089. "dependencies": {
  3090. "Coravel": "4.2.1",
  3091. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3092. "Newtonsoft.Json": "13.0.1",
  3093. "QRCoder": "1.4.3",
  3094. "SixLabors.ImageSharp": "2.1.6",
  3095. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3096. },
  3097. "compile": {
  3098. "bin/placeholder/Ropin.Core.Common.dll": {}
  3099. },
  3100. "runtime": {
  3101. "bin/placeholder/Ropin.Core.Common.dll": {}
  3102. }
  3103. },
  3104. "Ropin.Inspection.Common/1.0.0": {
  3105. "type": "project",
  3106. "framework": ".NETCoreApp,Version=v5.0",
  3107. "dependencies": {
  3108. "FluentEmail.Smtp": "3.0.2",
  3109. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3110. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3111. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3112. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3113. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3114. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3115. "Microsoft.Extensions.Configuration": "5.0.0",
  3116. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3117. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3118. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3119. "Microsoft.Extensions.Http": "5.0.0",
  3120. "Newtonsoft.Json": "13.0.1",
  3121. "RabbitMQ.Client": "6.8.1",
  3122. "ToolGood.Words": "3.1.0.2",
  3123. "log4net": "2.0.17"
  3124. },
  3125. "compile": {
  3126. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3127. },
  3128. "runtime": {
  3129. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3130. }
  3131. },
  3132. "Ropin.Inspection.Model/1.0.0": {
  3133. "type": "project",
  3134. "framework": ".NETCoreApp,Version=v5.0",
  3135. "dependencies": {
  3136. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3137. "Microsoft.EntityFrameworkCore": "5.0.0",
  3138. "MySql.Data": "8.0.23",
  3139. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3140. "Ropin.Inspection.Common": "1.0.0"
  3141. },
  3142. "compile": {
  3143. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3144. },
  3145. "runtime": {
  3146. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3147. }
  3148. },
  3149. "Ropin.Inspection.Repository/1.0.0": {
  3150. "type": "project",
  3151. "framework": ".NETCoreApp,Version=v5.0",
  3152. "dependencies": {
  3153. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3154. "Microsoft.EntityFrameworkCore": "5.0.0",
  3155. "Ropin.Inspection.Model": "1.0.0"
  3156. },
  3157. "compile": {
  3158. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3159. },
  3160. "runtime": {
  3161. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3162. }
  3163. }
  3164. }
  3165. },
  3166. "libraries": {
  3167. "AdvancedStringBuilder/0.1.0": {
  3168. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3169. "type": "package",
  3170. "path": "advancedstringbuilder/0.1.0",
  3171. "files": [
  3172. ".nupkg.metadata",
  3173. ".signature.p7s",
  3174. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3175. "advancedstringbuilder.nuspec",
  3176. "lib/net40-client/AdvancedStringBuilder.dll",
  3177. "lib/net40-client/AdvancedStringBuilder.xml",
  3178. "lib/net45/AdvancedStringBuilder.dll",
  3179. "lib/net45/AdvancedStringBuilder.xml",
  3180. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3181. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3182. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3183. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3184. ]
  3185. },
  3186. "BouncyCastle.NetCore/1.8.5": {
  3187. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3188. "type": "package",
  3189. "path": "bouncycastle.netcore/1.8.5",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3194. "bouncycastle.netcore.nuspec",
  3195. "lib/Mono/BouncyCastle.Crypto.dll",
  3196. "lib/Mono/BouncyCastle.Crypto.xml",
  3197. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3198. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3199. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3200. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3201. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3202. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3203. "lib/net20/BouncyCastle.Crypto.dll",
  3204. "lib/net20/BouncyCastle.Crypto.xml",
  3205. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3206. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3207. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3208. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3209. ]
  3210. },
  3211. "Coravel/4.2.1": {
  3212. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3213. "type": "package",
  3214. "path": "coravel/4.2.1",
  3215. "files": [
  3216. ".nupkg.metadata",
  3217. ".signature.p7s",
  3218. "coravel.4.2.1.nupkg.sha512",
  3219. "coravel.nuspec",
  3220. "lib/netstandard2.0/Coravel.dll",
  3221. "lib/netstandard2.0/Coravel.xml",
  3222. "logo.png",
  3223. "readme.md"
  3224. ]
  3225. },
  3226. "FBoxClientDriver/1.2.0": {
  3227. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3228. "type": "package",
  3229. "path": "fboxclientdriver/1.2.0",
  3230. "files": [
  3231. ".nupkg.metadata",
  3232. ".signature.p7s",
  3233. "fboxclientdriver.1.2.0.nupkg.sha512",
  3234. "fboxclientdriver.nuspec",
  3235. "lib/netstandard2.0/FBoxClientDriver.dll",
  3236. "lib/netstandard2.0/FBoxClientDriver.xml"
  3237. ]
  3238. },
  3239. "FBoxClientDriver.Contract/1.2.0": {
  3240. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3241. "type": "package",
  3242. "path": "fboxclientdriver.contract/1.2.0",
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3247. "fboxclientdriver.contract.nuspec",
  3248. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3249. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3250. ]
  3251. },
  3252. "FluentEmail.Core/3.0.2": {
  3253. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3254. "type": "package",
  3255. "path": "fluentemail.core/3.0.2",
  3256. "files": [
  3257. ".nupkg.metadata",
  3258. ".signature.p7s",
  3259. "fluentemail.core.3.0.2.nupkg.sha512",
  3260. "fluentemail.core.nuspec",
  3261. "fluentemail_logo_64x64.png",
  3262. "lib/netstandard2.0/FluentEmail.Core.dll"
  3263. ]
  3264. },
  3265. "FluentEmail.Smtp/3.0.2": {
  3266. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3267. "type": "package",
  3268. "path": "fluentemail.smtp/3.0.2",
  3269. "files": [
  3270. ".nupkg.metadata",
  3271. ".signature.p7s",
  3272. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3273. "fluentemail.smtp.nuspec",
  3274. "fluentemail_logo_64x64.png",
  3275. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3276. ]
  3277. },
  3278. "Google.Protobuf/3.11.4": {
  3279. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3280. "type": "package",
  3281. "path": "google.protobuf/3.11.4",
  3282. "files": [
  3283. ".nupkg.metadata",
  3284. ".signature.p7s",
  3285. "google.protobuf.3.11.4.nupkg.sha512",
  3286. "google.protobuf.nuspec",
  3287. "lib/net45/Google.Protobuf.dll",
  3288. "lib/net45/Google.Protobuf.pdb",
  3289. "lib/net45/Google.Protobuf.xml",
  3290. "lib/netstandard1.0/Google.Protobuf.dll",
  3291. "lib/netstandard1.0/Google.Protobuf.pdb",
  3292. "lib/netstandard1.0/Google.Protobuf.xml",
  3293. "lib/netstandard2.0/Google.Protobuf.dll",
  3294. "lib/netstandard2.0/Google.Protobuf.pdb",
  3295. "lib/netstandard2.0/Google.Protobuf.xml"
  3296. ]
  3297. },
  3298. "IdentityModel/4.3.1": {
  3299. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3300. "type": "package",
  3301. "path": "identitymodel/4.3.1",
  3302. "files": [
  3303. ".nupkg.metadata",
  3304. ".signature.p7s",
  3305. "icon.jpg",
  3306. "identitymodel.4.3.1.nupkg.sha512",
  3307. "identitymodel.nuspec",
  3308. "lib/net461/IdentityModel.dll",
  3309. "lib/net461/IdentityModel.pdb",
  3310. "lib/net461/IdentityModel.xml",
  3311. "lib/net472/IdentityModel.dll",
  3312. "lib/net472/IdentityModel.pdb",
  3313. "lib/net472/IdentityModel.xml",
  3314. "lib/netstandard2.0/IdentityModel.dll",
  3315. "lib/netstandard2.0/IdentityModel.pdb",
  3316. "lib/netstandard2.0/IdentityModel.xml"
  3317. ]
  3318. },
  3319. "InfluxData.Net/8.0.1": {
  3320. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3321. "type": "package",
  3322. "path": "influxdata.net/8.0.1",
  3323. "files": [
  3324. ".nupkg.metadata",
  3325. ".signature.p7s",
  3326. "influxdata.net.8.0.1.nupkg.sha512",
  3327. "influxdata.net.nuspec",
  3328. "lib/net461/InfluxData.Net.Common.dll",
  3329. "lib/net461/InfluxData.Net.Common.dll.config",
  3330. "lib/net461/InfluxData.Net.Common.pdb",
  3331. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3332. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3333. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3334. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3335. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3336. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3337. "lib/net461/InfluxData.Net.dll",
  3338. "lib/net461/InfluxData.Net.dll.config",
  3339. "lib/net461/InfluxData.Net.pdb",
  3340. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3341. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3342. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3343. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3344. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3345. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3346. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3347. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3348. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3349. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3350. "lib/netstandard2.0/InfluxData.Net.dll",
  3351. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3352. "lib/netstandard2.0/InfluxData.Net.pdb"
  3353. ]
  3354. },
  3355. "InitQ/1.0.0.14": {
  3356. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3357. "type": "package",
  3358. "path": "initq/1.0.0.14",
  3359. "files": [
  3360. ".nupkg.metadata",
  3361. ".signature.p7s",
  3362. "initq.1.0.0.14.nupkg.sha512",
  3363. "initq.nuspec",
  3364. "lib/netcoreapp2.1/InitQ.dll"
  3365. ]
  3366. },
  3367. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3368. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3369. "type": "package",
  3370. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3371. "files": [
  3372. ".nupkg.metadata",
  3373. ".signature.p7s",
  3374. "LICENSE.txt",
  3375. "advanced-string-builder-license.txt",
  3376. "chakra-samples-license.txt",
  3377. "icon.png",
  3378. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3379. "javascriptengineswitcher.chakracore.nuspec",
  3380. "jsrt-dotnet-license.txt",
  3381. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3382. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3383. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3384. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3385. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3386. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3387. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3388. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3389. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3390. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3391. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3392. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3393. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3394. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3395. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3396. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3397. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3398. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3399. "polyfills-for-old-dot-net-license.txt",
  3400. "readme.txt"
  3401. ]
  3402. },
  3403. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3404. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3405. "type": "package",
  3406. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3407. "files": [
  3408. ".nupkg.metadata",
  3409. ".signature.p7s",
  3410. "LICENSE.txt",
  3411. "chakra-core-license.txt",
  3412. "icon.png",
  3413. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3414. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3415. "readme.txt",
  3416. "runtimes/linux-x64/native/libChakraCore.so"
  3417. ]
  3418. },
  3419. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3420. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3421. "type": "package",
  3422. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3423. "hasTools": true,
  3424. "files": [
  3425. ".nupkg.metadata",
  3426. ".signature.p7s",
  3427. "LICENSE.txt",
  3428. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3429. "chakra-core-license.txt",
  3430. "icon.png",
  3431. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3432. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3433. "readme.txt",
  3434. "runtimes/win-x64/native/ChakraCore.dll",
  3435. "tools/Install.ps1",
  3436. "tools/Uninstall.ps1"
  3437. ]
  3438. },
  3439. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3440. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3441. "type": "package",
  3442. "path": "javascriptengineswitcher.core/3.21.0",
  3443. "files": [
  3444. ".nupkg.metadata",
  3445. ".signature.p7s",
  3446. "LICENSE.txt",
  3447. "advanced-string-builder-license.txt",
  3448. "icon.png",
  3449. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3450. "javascriptengineswitcher.core.nuspec",
  3451. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3452. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3453. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3454. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3455. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3456. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3457. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3458. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3459. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3460. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3461. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3462. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3463. "readme.txt"
  3464. ]
  3465. },
  3466. "K4os.Compression.LZ4/1.1.11": {
  3467. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3468. "type": "package",
  3469. "path": "k4os.compression.lz4/1.1.11",
  3470. "files": [
  3471. ".nupkg.metadata",
  3472. ".signature.p7s",
  3473. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3474. "k4os.compression.lz4.nuspec",
  3475. "lib/net45/K4os.Compression.LZ4.dll",
  3476. "lib/net45/K4os.Compression.LZ4.xml",
  3477. "lib/net46/K4os.Compression.LZ4.dll",
  3478. "lib/net46/K4os.Compression.LZ4.xml",
  3479. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3480. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3481. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3482. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3483. ]
  3484. },
  3485. "K4os.Compression.LZ4.Streams/1.1.11": {
  3486. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3487. "type": "package",
  3488. "path": "k4os.compression.lz4.streams/1.1.11",
  3489. "files": [
  3490. ".nupkg.metadata",
  3491. ".signature.p7s",
  3492. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3493. "k4os.compression.lz4.streams.nuspec",
  3494. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3495. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3496. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3497. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3498. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3499. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3500. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3501. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3502. ]
  3503. },
  3504. "K4os.Hash.xxHash/1.0.6": {
  3505. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3506. "type": "package",
  3507. "path": "k4os.hash.xxhash/1.0.6",
  3508. "files": [
  3509. ".nupkg.metadata",
  3510. ".signature.p7s",
  3511. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3512. "k4os.hash.xxhash.nuspec",
  3513. "lib/net45/K4os.Hash.xxHash.dll",
  3514. "lib/net45/K4os.Hash.xxHash.xml",
  3515. "lib/net46/K4os.Hash.xxHash.dll",
  3516. "lib/net46/K4os.Hash.xxHash.xml",
  3517. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3518. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3519. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3520. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3521. ]
  3522. },
  3523. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3524. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3525. "type": "package",
  3526. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3527. "files": [
  3528. ".nupkg.metadata",
  3529. ".signature.p7s",
  3530. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3531. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3532. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3533. "linqkit.microsoft.entityframeworkcore.nuspec"
  3534. ]
  3535. },
  3536. "log4net/2.0.17": {
  3537. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3538. "type": "package",
  3539. "path": "log4net/2.0.17",
  3540. "files": [
  3541. ".nupkg.metadata",
  3542. ".signature.p7s",
  3543. "lib/net20/log4net.dll",
  3544. "lib/net20/log4net.xml",
  3545. "lib/net35/log4net.dll",
  3546. "lib/net35/log4net.xml",
  3547. "lib/net40-client/log4net.dll",
  3548. "lib/net40-client/log4net.xml",
  3549. "lib/net40/log4net.dll",
  3550. "lib/net40/log4net.xml",
  3551. "lib/net45/log4net.dll",
  3552. "lib/net45/log4net.xml",
  3553. "lib/netstandard1.3/log4net.dll",
  3554. "lib/netstandard1.3/log4net.xml",
  3555. "lib/netstandard2.0/log4net.dll",
  3556. "lib/netstandard2.0/log4net.xml",
  3557. "log4net.2.0.17.nupkg.sha512",
  3558. "log4net.nuspec",
  3559. "package-icon.png"
  3560. ]
  3561. },
  3562. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3563. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3564. "type": "package",
  3565. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3566. "files": [
  3567. ".nupkg.metadata",
  3568. ".signature.p7s",
  3569. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3570. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3571. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3572. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3573. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3574. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3575. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3576. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3577. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3578. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3579. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3580. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3581. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3582. "microsoft.aspnet.signalr.client.nuspec"
  3583. ]
  3584. },
  3585. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3586. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3587. "type": "package",
  3588. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3589. "files": [
  3590. ".nupkg.metadata",
  3591. ".signature.p7s",
  3592. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3593. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3594. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3595. "microsoft.aspnetcore.http.abstractions.nuspec"
  3596. ]
  3597. },
  3598. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3599. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3600. "type": "package",
  3601. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "Icon.png",
  3606. "THIRD-PARTY-NOTICES.TXT",
  3607. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3608. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3609. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3610. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3611. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3612. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3613. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3614. "microsoft.aspnetcore.http.features.nuspec"
  3615. ]
  3616. },
  3617. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3618. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3619. "type": "package",
  3620. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3621. "files": [
  3622. ".nupkg.metadata",
  3623. ".signature.p7s",
  3624. "Icon.png",
  3625. "THIRD-PARTY-NOTICES.TXT",
  3626. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3627. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3628. "microsoft.aspnetcore.nodeservices.nuspec"
  3629. ]
  3630. },
  3631. "Microsoft.CSharp/4.5.0": {
  3632. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3633. "type": "package",
  3634. "path": "microsoft.csharp/4.5.0",
  3635. "files": [
  3636. ".nupkg.metadata",
  3637. ".signature.p7s",
  3638. "LICENSE.TXT",
  3639. "THIRD-PARTY-NOTICES.TXT",
  3640. "lib/MonoAndroid10/_._",
  3641. "lib/MonoTouch10/_._",
  3642. "lib/net45/_._",
  3643. "lib/netcore50/Microsoft.CSharp.dll",
  3644. "lib/netcoreapp2.0/_._",
  3645. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3646. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3647. "lib/portable-net45+win8+wp8+wpa81/_._",
  3648. "lib/uap10.0.16299/_._",
  3649. "lib/win8/_._",
  3650. "lib/wp80/_._",
  3651. "lib/wpa81/_._",
  3652. "lib/xamarinios10/_._",
  3653. "lib/xamarinmac20/_._",
  3654. "lib/xamarintvos10/_._",
  3655. "lib/xamarinwatchos10/_._",
  3656. "microsoft.csharp.4.5.0.nupkg.sha512",
  3657. "microsoft.csharp.nuspec",
  3658. "ref/MonoAndroid10/_._",
  3659. "ref/MonoTouch10/_._",
  3660. "ref/net45/_._",
  3661. "ref/netcore50/Microsoft.CSharp.dll",
  3662. "ref/netcore50/Microsoft.CSharp.xml",
  3663. "ref/netcore50/de/Microsoft.CSharp.xml",
  3664. "ref/netcore50/es/Microsoft.CSharp.xml",
  3665. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3666. "ref/netcore50/it/Microsoft.CSharp.xml",
  3667. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3668. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3669. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3670. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3671. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3672. "ref/netcoreapp2.0/_._",
  3673. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3674. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3675. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3676. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3677. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3678. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3679. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3680. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3681. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3682. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3683. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3684. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3685. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3686. "ref/portable-net45+win8+wp8+wpa81/_._",
  3687. "ref/uap10.0.16299/_._",
  3688. "ref/win8/_._",
  3689. "ref/wp80/_._",
  3690. "ref/wpa81/_._",
  3691. "ref/xamarinios10/_._",
  3692. "ref/xamarinmac20/_._",
  3693. "ref/xamarintvos10/_._",
  3694. "ref/xamarinwatchos10/_._",
  3695. "useSharedDesignerContext.txt",
  3696. "version.txt"
  3697. ]
  3698. },
  3699. "Microsoft.EntityFrameworkCore/5.0.0": {
  3700. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3701. "type": "package",
  3702. "path": "microsoft.entityframeworkcore/5.0.0",
  3703. "files": [
  3704. ".nupkg.metadata",
  3705. ".signature.p7s",
  3706. "Icon.png",
  3707. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3708. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3709. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3710. "microsoft.entityframeworkcore.nuspec"
  3711. ]
  3712. },
  3713. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3714. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3715. "type": "package",
  3716. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3717. "files": [
  3718. ".nupkg.metadata",
  3719. ".signature.p7s",
  3720. "Icon.png",
  3721. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3722. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3723. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3724. "microsoft.entityframeworkcore.abstractions.nuspec"
  3725. ]
  3726. },
  3727. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3728. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3729. "type": "package",
  3730. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3731. "files": [
  3732. ".nupkg.metadata",
  3733. ".signature.p7s",
  3734. "Icon.png",
  3735. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3736. "lib/netstandard2.0/_._",
  3737. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3738. "microsoft.entityframeworkcore.analyzers.nuspec"
  3739. ]
  3740. },
  3741. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3742. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3743. "type": "package",
  3744. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3745. "files": [
  3746. ".nupkg.metadata",
  3747. ".signature.p7s",
  3748. "Icon.png",
  3749. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3750. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3751. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3752. "microsoft.entityframeworkcore.relational.nuspec"
  3753. ]
  3754. },
  3755. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3756. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3757. "type": "package",
  3758. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3759. "hasTools": true,
  3760. "files": [
  3761. ".nupkg.metadata",
  3762. ".signature.p7s",
  3763. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3764. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3765. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3766. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3767. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3768. "microsoft.extensions.apidescription.server.nuspec",
  3769. "tools/Newtonsoft.Json.dll",
  3770. "tools/dotnet-getdocument.deps.json",
  3771. "tools/dotnet-getdocument.dll",
  3772. "tools/dotnet-getdocument.runtimeconfig.json",
  3773. "tools/net461-x86/GetDocument.Insider.exe",
  3774. "tools/net461-x86/GetDocument.Insider.exe.config",
  3775. "tools/net461/GetDocument.Insider.exe",
  3776. "tools/net461/GetDocument.Insider.exe.config",
  3777. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3778. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3779. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3780. ]
  3781. },
  3782. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3783. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3784. "type": "package",
  3785. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3786. "files": [
  3787. ".nupkg.metadata",
  3788. ".signature.p7s",
  3789. "Icon.png",
  3790. "LICENSE.TXT",
  3791. "THIRD-PARTY-NOTICES.TXT",
  3792. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3793. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3794. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3795. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3796. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3797. "microsoft.extensions.caching.abstractions.nuspec",
  3798. "useSharedDesignerContext.txt",
  3799. "version.txt"
  3800. ]
  3801. },
  3802. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3803. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3804. "type": "package",
  3805. "path": "microsoft.extensions.caching.memory/5.0.0",
  3806. "files": [
  3807. ".nupkg.metadata",
  3808. ".signature.p7s",
  3809. "Icon.png",
  3810. "LICENSE.TXT",
  3811. "THIRD-PARTY-NOTICES.TXT",
  3812. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3813. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3814. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3815. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3816. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3817. "microsoft.extensions.caching.memory.nuspec",
  3818. "useSharedDesignerContext.txt",
  3819. "version.txt"
  3820. ]
  3821. },
  3822. "Microsoft.Extensions.Configuration/5.0.0": {
  3823. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3824. "type": "package",
  3825. "path": "microsoft.extensions.configuration/5.0.0",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "Icon.png",
  3830. "LICENSE.TXT",
  3831. "THIRD-PARTY-NOTICES.TXT",
  3832. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3833. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3834. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3835. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3836. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3837. "microsoft.extensions.configuration.nuspec",
  3838. "useSharedDesignerContext.txt",
  3839. "version.txt"
  3840. ]
  3841. },
  3842. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3843. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3844. "type": "package",
  3845. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3846. "files": [
  3847. ".nupkg.metadata",
  3848. ".signature.p7s",
  3849. "Icon.png",
  3850. "LICENSE.TXT",
  3851. "THIRD-PARTY-NOTICES.TXT",
  3852. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3853. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3854. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3855. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3856. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3857. "microsoft.extensions.configuration.abstractions.nuspec",
  3858. "useSharedDesignerContext.txt",
  3859. "version.txt"
  3860. ]
  3861. },
  3862. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3863. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3864. "type": "package",
  3865. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3866. "files": [
  3867. ".nupkg.metadata",
  3868. ".signature.p7s",
  3869. "Icon.png",
  3870. "LICENSE.TXT",
  3871. "THIRD-PARTY-NOTICES.TXT",
  3872. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3873. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3874. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3875. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3876. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3877. "microsoft.extensions.configuration.binder.nuspec",
  3878. "useSharedDesignerContext.txt",
  3879. "version.txt"
  3880. ]
  3881. },
  3882. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3883. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3884. "type": "package",
  3885. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3886. "files": [
  3887. ".nupkg.metadata",
  3888. ".signature.p7s",
  3889. "Icon.png",
  3890. "LICENSE.TXT",
  3891. "THIRD-PARTY-NOTICES.TXT",
  3892. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3893. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3894. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3895. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3896. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3897. "microsoft.extensions.configuration.fileextensions.nuspec",
  3898. "useSharedDesignerContext.txt",
  3899. "version.txt"
  3900. ]
  3901. },
  3902. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3903. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3904. "type": "package",
  3905. "path": "microsoft.extensions.configuration.json/5.0.0",
  3906. "files": [
  3907. ".nupkg.metadata",
  3908. ".signature.p7s",
  3909. "Icon.png",
  3910. "LICENSE.TXT",
  3911. "THIRD-PARTY-NOTICES.TXT",
  3912. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3913. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3914. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3915. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3916. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3917. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3918. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3919. "microsoft.extensions.configuration.json.nuspec",
  3920. "useSharedDesignerContext.txt",
  3921. "version.txt"
  3922. ]
  3923. },
  3924. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3925. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3926. "type": "package",
  3927. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3928. "files": [
  3929. ".nupkg.metadata",
  3930. ".signature.p7s",
  3931. "Icon.png",
  3932. "LICENSE.TXT",
  3933. "THIRD-PARTY-NOTICES.TXT",
  3934. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3935. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3936. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3937. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3938. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3939. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3940. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3941. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3942. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3943. "microsoft.extensions.dependencyinjection.nuspec",
  3944. "useSharedDesignerContext.txt",
  3945. "version.txt"
  3946. ]
  3947. },
  3948. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3949. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3950. "type": "package",
  3951. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3952. "files": [
  3953. ".nupkg.metadata",
  3954. ".signature.p7s",
  3955. "Icon.png",
  3956. "LICENSE.TXT",
  3957. "THIRD-PARTY-NOTICES.TXT",
  3958. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3959. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3960. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3961. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3962. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3963. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3964. "useSharedDesignerContext.txt",
  3965. "version.txt"
  3966. ]
  3967. },
  3968. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3969. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3970. "type": "package",
  3971. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3972. "files": [
  3973. ".nupkg.metadata",
  3974. ".signature.p7s",
  3975. "Icon.png",
  3976. "LICENSE.TXT",
  3977. "THIRD-PARTY-NOTICES.TXT",
  3978. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3979. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3980. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3981. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3982. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3983. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3984. "useSharedDesignerContext.txt",
  3985. "version.txt"
  3986. ]
  3987. },
  3988. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3989. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3990. "type": "package",
  3991. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3992. "files": [
  3993. ".nupkg.metadata",
  3994. ".signature.p7s",
  3995. "Icon.png",
  3996. "LICENSE.TXT",
  3997. "THIRD-PARTY-NOTICES.TXT",
  3998. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3999. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4000. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4001. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4002. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4003. "microsoft.extensions.fileproviders.physical.nuspec",
  4004. "useSharedDesignerContext.txt",
  4005. "version.txt"
  4006. ]
  4007. },
  4008. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4009. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4010. "type": "package",
  4011. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4012. "files": [
  4013. ".nupkg.metadata",
  4014. ".signature.p7s",
  4015. "Icon.png",
  4016. "LICENSE.TXT",
  4017. "THIRD-PARTY-NOTICES.TXT",
  4018. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4019. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4020. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4021. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4022. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4023. "microsoft.extensions.filesystemglobbing.nuspec",
  4024. "useSharedDesignerContext.txt",
  4025. "version.txt"
  4026. ]
  4027. },
  4028. "Microsoft.Extensions.Hosting/2.1.0": {
  4029. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4030. "type": "package",
  4031. "path": "microsoft.extensions.hosting/2.1.0",
  4032. "files": [
  4033. ".nupkg.metadata",
  4034. ".signature.p7s",
  4035. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4036. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4037. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4038. "microsoft.extensions.hosting.nuspec"
  4039. ]
  4040. },
  4041. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4042. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4043. "type": "package",
  4044. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4045. "files": [
  4046. ".nupkg.metadata",
  4047. ".signature.p7s",
  4048. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4049. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4050. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4051. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4052. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4053. "microsoft.extensions.hosting.abstractions.nuspec",
  4054. "packageIcon.png"
  4055. ]
  4056. },
  4057. "Microsoft.Extensions.Http/5.0.0": {
  4058. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4059. "type": "package",
  4060. "path": "microsoft.extensions.http/5.0.0",
  4061. "files": [
  4062. ".nupkg.metadata",
  4063. ".signature.p7s",
  4064. "Icon.png",
  4065. "LICENSE.TXT",
  4066. "THIRD-PARTY-NOTICES.TXT",
  4067. "lib/net461/Microsoft.Extensions.Http.dll",
  4068. "lib/net461/Microsoft.Extensions.Http.xml",
  4069. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4070. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4071. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4072. "microsoft.extensions.http.nuspec",
  4073. "useSharedDesignerContext.txt",
  4074. "version.txt"
  4075. ]
  4076. },
  4077. "Microsoft.Extensions.Logging/5.0.0": {
  4078. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4079. "type": "package",
  4080. "path": "microsoft.extensions.logging/5.0.0",
  4081. "files": [
  4082. ".nupkg.metadata",
  4083. ".signature.p7s",
  4084. "Icon.png",
  4085. "LICENSE.TXT",
  4086. "THIRD-PARTY-NOTICES.TXT",
  4087. "lib/net461/Microsoft.Extensions.Logging.dll",
  4088. "lib/net461/Microsoft.Extensions.Logging.xml",
  4089. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4090. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4091. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4092. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4093. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4094. "microsoft.extensions.logging.nuspec",
  4095. "useSharedDesignerContext.txt",
  4096. "version.txt"
  4097. ]
  4098. },
  4099. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4100. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4101. "type": "package",
  4102. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4103. "files": [
  4104. ".nupkg.metadata",
  4105. ".signature.p7s",
  4106. "Icon.png",
  4107. "LICENSE.TXT",
  4108. "THIRD-PARTY-NOTICES.TXT",
  4109. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4110. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4111. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4112. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4113. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4114. "microsoft.extensions.logging.abstractions.nuspec",
  4115. "useSharedDesignerContext.txt",
  4116. "version.txt"
  4117. ]
  4118. },
  4119. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4120. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4121. "type": "package",
  4122. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4123. "files": [
  4124. ".nupkg.metadata",
  4125. ".signature.p7s",
  4126. "Icon.png",
  4127. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4128. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4129. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4130. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4131. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4132. "microsoft.extensions.logging.configuration.nuspec"
  4133. ]
  4134. },
  4135. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4136. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4137. "type": "package",
  4138. "path": "microsoft.extensions.logging.console/3.1.30",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "Icon.png",
  4143. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4144. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4145. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4146. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4147. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4148. "microsoft.extensions.logging.console.nuspec"
  4149. ]
  4150. },
  4151. "Microsoft.Extensions.Options/5.0.0": {
  4152. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4153. "type": "package",
  4154. "path": "microsoft.extensions.options/5.0.0",
  4155. "files": [
  4156. ".nupkg.metadata",
  4157. ".signature.p7s",
  4158. "Icon.png",
  4159. "LICENSE.TXT",
  4160. "THIRD-PARTY-NOTICES.TXT",
  4161. "lib/net461/Microsoft.Extensions.Options.dll",
  4162. "lib/net461/Microsoft.Extensions.Options.xml",
  4163. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4164. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4165. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4166. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4167. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4168. "microsoft.extensions.options.nuspec",
  4169. "useSharedDesignerContext.txt",
  4170. "version.txt"
  4171. ]
  4172. },
  4173. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4174. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4175. "type": "package",
  4176. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4177. "files": [
  4178. ".nupkg.metadata",
  4179. ".signature.p7s",
  4180. "Icon.png",
  4181. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4182. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4183. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4184. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4185. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4186. "microsoft.extensions.options.configurationextensions.nuspec"
  4187. ]
  4188. },
  4189. "Microsoft.Extensions.Primitives/5.0.0": {
  4190. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4191. "type": "package",
  4192. "path": "microsoft.extensions.primitives/5.0.0",
  4193. "files": [
  4194. ".nupkg.metadata",
  4195. ".signature.p7s",
  4196. "Icon.png",
  4197. "LICENSE.TXT",
  4198. "THIRD-PARTY-NOTICES.TXT",
  4199. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4200. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4201. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4202. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4203. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4204. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4205. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4206. "microsoft.extensions.primitives.nuspec",
  4207. "useSharedDesignerContext.txt",
  4208. "version.txt"
  4209. ]
  4210. },
  4211. "Microsoft.NETCore.Platforms/5.0.0": {
  4212. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4213. "type": "package",
  4214. "path": "microsoft.netcore.platforms/5.0.0",
  4215. "files": [
  4216. ".nupkg.metadata",
  4217. ".signature.p7s",
  4218. "Icon.png",
  4219. "LICENSE.TXT",
  4220. "THIRD-PARTY-NOTICES.TXT",
  4221. "lib/netstandard1.0/_._",
  4222. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4223. "microsoft.netcore.platforms.nuspec",
  4224. "runtime.json",
  4225. "useSharedDesignerContext.txt",
  4226. "version.txt"
  4227. ]
  4228. },
  4229. "Microsoft.NETCore.Targets/1.1.0": {
  4230. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4231. "type": "package",
  4232. "path": "microsoft.netcore.targets/1.1.0",
  4233. "files": [
  4234. ".nupkg.metadata",
  4235. ".signature.p7s",
  4236. "ThirdPartyNotices.txt",
  4237. "dotnet_library_license.txt",
  4238. "lib/netstandard1.0/_._",
  4239. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4240. "microsoft.netcore.targets.nuspec",
  4241. "runtime.json"
  4242. ]
  4243. },
  4244. "Microsoft.OpenApi/1.2.3": {
  4245. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4246. "type": "package",
  4247. "path": "microsoft.openapi/1.2.3",
  4248. "files": [
  4249. ".nupkg.metadata",
  4250. ".signature.p7s",
  4251. "lib/net46/Microsoft.OpenApi.dll",
  4252. "lib/net46/Microsoft.OpenApi.pdb",
  4253. "lib/net46/Microsoft.OpenApi.xml",
  4254. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4255. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4256. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4257. "microsoft.openapi.1.2.3.nupkg.sha512",
  4258. "microsoft.openapi.nuspec"
  4259. ]
  4260. },
  4261. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4262. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4263. "type": "package",
  4264. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4265. "hasTools": true,
  4266. "files": [
  4267. ".nupkg.metadata",
  4268. ".signature.p7s",
  4269. "CHANGELOG.md",
  4270. "EULA.md",
  4271. "ThirdPartyNotices.txt",
  4272. "build/Container.props",
  4273. "build/Container.targets",
  4274. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4275. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4276. "build/Rules/GeneralBrowseObject.xaml",
  4277. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4278. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4279. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4280. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4281. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4282. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4283. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4284. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4285. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4286. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4287. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4288. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4289. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4290. "build/ToolsTarget.props",
  4291. "build/ToolsTarget.targets",
  4292. "icon.png",
  4293. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4294. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4295. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4296. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4297. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4298. "tools/Newtonsoft.Json.dll",
  4299. "tools/System.Security.Principal.Windows.dll",
  4300. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4301. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4302. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4303. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4304. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4305. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4306. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4307. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4308. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4309. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4310. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4311. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4312. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4313. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4314. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4315. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4316. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4317. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4318. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4319. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4320. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4321. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4322. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4323. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4324. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4325. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4326. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4327. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4328. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4329. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4330. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4331. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4332. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4333. "tools/utils/KillProcess.exe",
  4334. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4335. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4336. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4337. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4338. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4339. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4340. ]
  4341. },
  4342. "Microsoft.Win32.Primitives/4.3.0": {
  4343. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4344. "type": "package",
  4345. "path": "microsoft.win32.primitives/4.3.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "ThirdPartyNotices.txt",
  4350. "dotnet_library_license.txt",
  4351. "lib/MonoAndroid10/_._",
  4352. "lib/MonoTouch10/_._",
  4353. "lib/net46/Microsoft.Win32.Primitives.dll",
  4354. "lib/xamarinios10/_._",
  4355. "lib/xamarinmac20/_._",
  4356. "lib/xamarintvos10/_._",
  4357. "lib/xamarinwatchos10/_._",
  4358. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4359. "microsoft.win32.primitives.nuspec",
  4360. "ref/MonoAndroid10/_._",
  4361. "ref/MonoTouch10/_._",
  4362. "ref/net46/Microsoft.Win32.Primitives.dll",
  4363. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4364. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4365. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4366. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4367. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4368. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4369. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4370. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4371. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4372. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4373. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4374. "ref/xamarinios10/_._",
  4375. "ref/xamarinmac20/_._",
  4376. "ref/xamarintvos10/_._",
  4377. "ref/xamarinwatchos10/_._"
  4378. ]
  4379. },
  4380. "Microsoft.Win32.SystemEvents/5.0.0": {
  4381. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4382. "type": "package",
  4383. "path": "microsoft.win32.systemevents/5.0.0",
  4384. "files": [
  4385. ".nupkg.metadata",
  4386. ".signature.p7s",
  4387. "Icon.png",
  4388. "LICENSE.TXT",
  4389. "THIRD-PARTY-NOTICES.TXT",
  4390. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4391. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4392. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4393. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4394. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4395. "microsoft.win32.systemevents.nuspec",
  4396. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4397. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4398. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4399. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4400. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4401. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4402. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4403. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4404. "useSharedDesignerContext.txt",
  4405. "version.txt"
  4406. ]
  4407. },
  4408. "MQTTnet/4.3.7.1207": {
  4409. "sha512": "ah7aHXoedWp5m5a4zy2u4phOEVj0QFYzOb5tFKQeV8RRBrxp+1QREF4ymZuG8D+hzB2dhtrrG81WxTFv0PzOeQ==",
  4410. "type": "package",
  4411. "path": "mqttnet/4.3.7.1207",
  4412. "files": [
  4413. ".nupkg.metadata",
  4414. ".signature.p7s",
  4415. "lib/net452/MQTTnet.dll",
  4416. "lib/net452/MQTTnet.xml",
  4417. "lib/net461/MQTTnet.dll",
  4418. "lib/net461/MQTTnet.xml",
  4419. "lib/net48/MQTTnet.dll",
  4420. "lib/net48/MQTTnet.xml",
  4421. "lib/net5.0/MQTTnet.dll",
  4422. "lib/net5.0/MQTTnet.xml",
  4423. "lib/net6.0/MQTTnet.dll",
  4424. "lib/net6.0/MQTTnet.xml",
  4425. "lib/net7.0/MQTTnet.dll",
  4426. "lib/net7.0/MQTTnet.xml",
  4427. "lib/netcoreapp3.1/MQTTnet.dll",
  4428. "lib/netcoreapp3.1/MQTTnet.xml",
  4429. "lib/netstandard1.3/MQTTnet.dll",
  4430. "lib/netstandard1.3/MQTTnet.xml",
  4431. "lib/netstandard2.0/MQTTnet.dll",
  4432. "lib/netstandard2.0/MQTTnet.xml",
  4433. "lib/netstandard2.1/MQTTnet.dll",
  4434. "lib/netstandard2.1/MQTTnet.xml",
  4435. "lib/uap10.0.10240/MQTTnet.dll",
  4436. "lib/uap10.0.10240/MQTTnet.pri",
  4437. "lib/uap10.0.10240/MQTTnet.xml",
  4438. "mqttnet.4.3.7.1207.nupkg.sha512",
  4439. "mqttnet.nuspec",
  4440. "nuget.png"
  4441. ]
  4442. },
  4443. "MQTTnet.AspNetCore/4.3.7.1207": {
  4444. "sha512": "aDtlDjDv65kK0J3/SeagD9h1/xAzxSjbIMEQOzwChyv9mZt79KRRX0TIHQ03SyXfsRC6yyOcyqJxIp8K7FON1A==",
  4445. "type": "package",
  4446. "path": "mqttnet.aspnetcore/4.3.7.1207",
  4447. "files": [
  4448. ".nupkg.metadata",
  4449. ".signature.p7s",
  4450. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4451. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4452. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4453. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4454. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4455. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4456. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4457. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4458. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4459. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4460. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4461. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4462. "mqttnet.aspnetcore.4.3.7.1207.nupkg.sha512",
  4463. "mqttnet.aspnetcore.nuspec",
  4464. "nuget.png"
  4465. ]
  4466. },
  4467. "MySql.Data/8.0.23": {
  4468. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4469. "type": "package",
  4470. "path": "mysql.data/8.0.23",
  4471. "files": [
  4472. ".nupkg.metadata",
  4473. ".signature.p7s",
  4474. "lib/net452/MySql.Data.dll",
  4475. "lib/net452/MySql.Data.xml",
  4476. "lib/net452/Ubiety.Dns.Core.dll",
  4477. "lib/net452/Zstandard.Net.dll",
  4478. "lib/net48/MySql.Data.dll",
  4479. "lib/net48/MySql.Data.xml",
  4480. "lib/net48/Ubiety.Dns.Core.dll",
  4481. "lib/net48/Zstandard.Net.dll",
  4482. "lib/net5.0/MySql.Data.dll",
  4483. "lib/net5.0/MySql.Data.xml",
  4484. "lib/net5.0/Ubiety.Dns.Core.dll",
  4485. "lib/net5.0/Zstandard.Net.dll",
  4486. "lib/netstandard2.0/MySql.Data.dll",
  4487. "lib/netstandard2.0/MySql.Data.xml",
  4488. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4489. "lib/netstandard2.0/Zstandard.Net.dll",
  4490. "lib/netstandard2.1/MySql.Data.dll",
  4491. "lib/netstandard2.1/MySql.Data.xml",
  4492. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4493. "lib/netstandard2.1/Zstandard.Net.dll",
  4494. "mysql.data.8.0.23.nupkg.sha512",
  4495. "mysql.data.nuspec"
  4496. ]
  4497. },
  4498. "MySqlConnector/1.1.0": {
  4499. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4500. "type": "package",
  4501. "path": "mysqlconnector/1.1.0",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "lib/net45/MySqlConnector.dll",
  4506. "lib/net45/MySqlConnector.xml",
  4507. "lib/net461/MySqlConnector.dll",
  4508. "lib/net461/MySqlConnector.xml",
  4509. "lib/net471/MySqlConnector.dll",
  4510. "lib/net471/MySqlConnector.xml",
  4511. "lib/net5.0/MySqlConnector.dll",
  4512. "lib/net5.0/MySqlConnector.xml",
  4513. "lib/netcoreapp2.1/MySqlConnector.dll",
  4514. "lib/netcoreapp2.1/MySqlConnector.xml",
  4515. "lib/netcoreapp3.1/MySqlConnector.dll",
  4516. "lib/netcoreapp3.1/MySqlConnector.xml",
  4517. "lib/netstandard1.3/MySqlConnector.dll",
  4518. "lib/netstandard1.3/MySqlConnector.xml",
  4519. "lib/netstandard2.0/MySqlConnector.dll",
  4520. "lib/netstandard2.0/MySqlConnector.xml",
  4521. "lib/netstandard2.1/MySqlConnector.dll",
  4522. "lib/netstandard2.1/MySqlConnector.xml",
  4523. "logo.png",
  4524. "mysqlconnector.1.1.0.nupkg.sha512",
  4525. "mysqlconnector.nuspec"
  4526. ]
  4527. },
  4528. "NETStandard.Library/1.6.1": {
  4529. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4530. "type": "package",
  4531. "path": "netstandard.library/1.6.1",
  4532. "files": [
  4533. ".nupkg.metadata",
  4534. ".signature.p7s",
  4535. "ThirdPartyNotices.txt",
  4536. "dotnet_library_license.txt",
  4537. "netstandard.library.1.6.1.nupkg.sha512",
  4538. "netstandard.library.nuspec"
  4539. ]
  4540. },
  4541. "Newtonsoft.Json/13.0.1": {
  4542. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4543. "type": "package",
  4544. "path": "newtonsoft.json/13.0.1",
  4545. "files": [
  4546. ".nupkg.metadata",
  4547. ".signature.p7s",
  4548. "LICENSE.md",
  4549. "lib/net20/Newtonsoft.Json.dll",
  4550. "lib/net20/Newtonsoft.Json.xml",
  4551. "lib/net35/Newtonsoft.Json.dll",
  4552. "lib/net35/Newtonsoft.Json.xml",
  4553. "lib/net40/Newtonsoft.Json.dll",
  4554. "lib/net40/Newtonsoft.Json.xml",
  4555. "lib/net45/Newtonsoft.Json.dll",
  4556. "lib/net45/Newtonsoft.Json.xml",
  4557. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4558. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4559. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4560. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4561. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4562. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4563. "newtonsoft.json.13.0.1.nupkg.sha512",
  4564. "newtonsoft.json.nuspec",
  4565. "packageIcon.png"
  4566. ]
  4567. },
  4568. "Nito.AsyncEx.Coordination/5.0.0": {
  4569. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4570. "type": "package",
  4571. "path": "nito.asyncex.coordination/5.0.0",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. ".signature.p7s",
  4575. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4576. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4577. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4578. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4579. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4580. "nito.asyncex.coordination.nuspec"
  4581. ]
  4582. },
  4583. "Nito.AsyncEx.Tasks/5.0.0": {
  4584. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4585. "type": "package",
  4586. "path": "nito.asyncex.tasks/5.0.0",
  4587. "files": [
  4588. ".nupkg.metadata",
  4589. ".signature.p7s",
  4590. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4591. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4592. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4593. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4594. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4595. "nito.asyncex.tasks.nuspec"
  4596. ]
  4597. },
  4598. "Nito.Collections.Deque/1.0.4": {
  4599. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4600. "type": "package",
  4601. "path": "nito.collections.deque/1.0.4",
  4602. "files": [
  4603. ".nupkg.metadata",
  4604. ".signature.p7s",
  4605. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4606. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4607. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4608. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4609. "nito.collections.deque.1.0.4.nupkg.sha512",
  4610. "nito.collections.deque.nuspec"
  4611. ]
  4612. },
  4613. "Nito.Disposables/2.0.0": {
  4614. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4615. "type": "package",
  4616. "path": "nito.disposables/2.0.0",
  4617. "files": [
  4618. ".nupkg.metadata",
  4619. ".signature.p7s",
  4620. "lib/netstandard1.0/Nito.Disposables.dll",
  4621. "lib/netstandard1.0/Nito.Disposables.pdb",
  4622. "lib/netstandard1.0/Nito.Disposables.xml",
  4623. "lib/netstandard2.0/Nito.Disposables.dll",
  4624. "lib/netstandard2.0/Nito.Disposables.pdb",
  4625. "lib/netstandard2.0/Nito.Disposables.xml",
  4626. "nito.disposables.2.0.0.nupkg.sha512",
  4627. "nito.disposables.nuspec"
  4628. ]
  4629. },
  4630. "NodaTime/2.4.7": {
  4631. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4632. "type": "package",
  4633. "path": "nodatime/2.4.7",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "lib/net45/NodaTime.dll",
  4638. "lib/net45/NodaTime.pdb",
  4639. "lib/net45/NodaTime.xml",
  4640. "lib/netstandard1.3/NodaTime.dll",
  4641. "lib/netstandard1.3/NodaTime.pdb",
  4642. "lib/netstandard1.3/NodaTime.xml",
  4643. "lib/netstandard2.0/NodaTime.dll",
  4644. "lib/netstandard2.0/NodaTime.pdb",
  4645. "lib/netstandard2.0/NodaTime.xml",
  4646. "nodatime.2.4.7.nupkg.sha512",
  4647. "nodatime.nuspec"
  4648. ]
  4649. },
  4650. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4651. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4652. "type": "package",
  4653. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4654. "files": [
  4655. ".nupkg.metadata",
  4656. ".signature.p7s",
  4657. "icon.png",
  4658. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4659. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4660. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4661. "pomelo.entityframeworkcore.mysql.nuspec"
  4662. ]
  4663. },
  4664. "QRCoder/1.4.3": {
  4665. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4666. "type": "package",
  4667. "path": "qrcoder/1.4.3",
  4668. "files": [
  4669. ".nupkg.metadata",
  4670. ".signature.p7s",
  4671. "lib/net35/QRCoder.dll",
  4672. "lib/net40/QRCoder.dll",
  4673. "lib/net5.0-windows7.0/QRCoder.dll",
  4674. "lib/net5.0/QRCoder.dll",
  4675. "lib/net6.0-windows7.0/QRCoder.dll",
  4676. "lib/net6.0/QRCoder.dll",
  4677. "lib/netstandard1.3/QRCoder.dll",
  4678. "lib/netstandard2.0/QRCoder.dll",
  4679. "nuget-icon.png",
  4680. "nuget-readme.md",
  4681. "qrcoder.1.4.3.nupkg.sha512",
  4682. "qrcoder.nuspec"
  4683. ]
  4684. },
  4685. "RabbitMQ.Client/6.8.1": {
  4686. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4687. "type": "package",
  4688. "path": "rabbitmq.client/6.8.1",
  4689. "files": [
  4690. ".nupkg.metadata",
  4691. ".signature.p7s",
  4692. "README.md",
  4693. "icon.png",
  4694. "lib/net462/RabbitMQ.Client.dll",
  4695. "lib/net462/RabbitMQ.Client.xml",
  4696. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4697. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4698. "rabbitmq.client.6.8.1.nupkg.sha512",
  4699. "rabbitmq.client.nuspec"
  4700. ]
  4701. },
  4702. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4703. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4704. "type": "package",
  4705. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4706. "files": [
  4707. ".nupkg.metadata",
  4708. ".signature.p7s",
  4709. "ThirdPartyNotices.txt",
  4710. "dotnet_library_license.txt",
  4711. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4712. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4713. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4714. ]
  4715. },
  4716. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4717. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4718. "type": "package",
  4719. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "ThirdPartyNotices.txt",
  4724. "dotnet_library_license.txt",
  4725. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4726. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4727. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4728. ]
  4729. },
  4730. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4731. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4732. "type": "package",
  4733. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4734. "files": [
  4735. ".nupkg.metadata",
  4736. ".signature.p7s",
  4737. "ThirdPartyNotices.txt",
  4738. "dotnet_library_license.txt",
  4739. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4740. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4741. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4742. ]
  4743. },
  4744. "runtime.native.System/4.3.0": {
  4745. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4746. "type": "package",
  4747. "path": "runtime.native.system/4.3.0",
  4748. "files": [
  4749. ".nupkg.metadata",
  4750. ".signature.p7s",
  4751. "ThirdPartyNotices.txt",
  4752. "dotnet_library_license.txt",
  4753. "lib/netstandard1.0/_._",
  4754. "runtime.native.system.4.3.0.nupkg.sha512",
  4755. "runtime.native.system.nuspec"
  4756. ]
  4757. },
  4758. "runtime.native.System.IO.Compression/4.3.0": {
  4759. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4760. "type": "package",
  4761. "path": "runtime.native.system.io.compression/4.3.0",
  4762. "files": [
  4763. ".nupkg.metadata",
  4764. ".signature.p7s",
  4765. "ThirdPartyNotices.txt",
  4766. "dotnet_library_license.txt",
  4767. "lib/netstandard1.0/_._",
  4768. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4769. "runtime.native.system.io.compression.nuspec"
  4770. ]
  4771. },
  4772. "runtime.native.System.Net.Http/4.3.0": {
  4773. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4774. "type": "package",
  4775. "path": "runtime.native.system.net.http/4.3.0",
  4776. "files": [
  4777. ".nupkg.metadata",
  4778. ".signature.p7s",
  4779. "ThirdPartyNotices.txt",
  4780. "dotnet_library_license.txt",
  4781. "lib/netstandard1.0/_._",
  4782. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4783. "runtime.native.system.net.http.nuspec"
  4784. ]
  4785. },
  4786. "runtime.native.System.Net.Security/4.3.0": {
  4787. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4788. "type": "package",
  4789. "path": "runtime.native.system.net.security/4.3.0",
  4790. "files": [
  4791. ".nupkg.metadata",
  4792. ".signature.p7s",
  4793. "ThirdPartyNotices.txt",
  4794. "dotnet_library_license.txt",
  4795. "lib/netstandard1.0/_._",
  4796. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4797. "runtime.native.system.net.security.nuspec"
  4798. ]
  4799. },
  4800. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4801. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4802. "type": "package",
  4803. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4804. "files": [
  4805. ".nupkg.metadata",
  4806. ".signature.p7s",
  4807. "ThirdPartyNotices.txt",
  4808. "dotnet_library_license.txt",
  4809. "lib/netstandard1.0/_._",
  4810. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4811. "runtime.native.system.security.cryptography.apple.nuspec"
  4812. ]
  4813. },
  4814. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4815. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4816. "type": "package",
  4817. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "ThirdPartyNotices.txt",
  4822. "dotnet_library_license.txt",
  4823. "lib/netstandard1.0/_._",
  4824. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4825. "runtime.native.system.security.cryptography.openssl.nuspec"
  4826. ]
  4827. },
  4828. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4829. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4830. "type": "package",
  4831. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4832. "files": [
  4833. ".nupkg.metadata",
  4834. ".signature.p7s",
  4835. "ThirdPartyNotices.txt",
  4836. "dotnet_library_license.txt",
  4837. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4838. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4839. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4840. ]
  4841. },
  4842. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4843. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4844. "type": "package",
  4845. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4846. "files": [
  4847. ".nupkg.metadata",
  4848. ".signature.p7s",
  4849. "ThirdPartyNotices.txt",
  4850. "dotnet_library_license.txt",
  4851. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4852. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4853. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4854. ]
  4855. },
  4856. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4857. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4858. "type": "package",
  4859. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4860. "files": [
  4861. ".nupkg.metadata",
  4862. ".signature.p7s",
  4863. "ThirdPartyNotices.txt",
  4864. "dotnet_library_license.txt",
  4865. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4866. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4867. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4868. ]
  4869. },
  4870. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4871. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4872. "type": "package",
  4873. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "ThirdPartyNotices.txt",
  4878. "dotnet_library_license.txt",
  4879. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4880. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4881. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4882. ]
  4883. },
  4884. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4885. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4886. "type": "package",
  4887. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4888. "files": [
  4889. ".nupkg.metadata",
  4890. ".signature.p7s",
  4891. "ThirdPartyNotices.txt",
  4892. "dotnet_library_license.txt",
  4893. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4894. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4895. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4896. ]
  4897. },
  4898. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4899. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4900. "type": "package",
  4901. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4902. "files": [
  4903. ".nupkg.metadata",
  4904. ".signature.p7s",
  4905. "ThirdPartyNotices.txt",
  4906. "dotnet_library_license.txt",
  4907. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4908. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4909. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4910. ]
  4911. },
  4912. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4913. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4914. "type": "package",
  4915. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4916. "files": [
  4917. ".nupkg.metadata",
  4918. ".signature.p7s",
  4919. "ThirdPartyNotices.txt",
  4920. "dotnet_library_license.txt",
  4921. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4922. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4923. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4924. ]
  4925. },
  4926. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4927. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4928. "type": "package",
  4929. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "ThirdPartyNotices.txt",
  4934. "dotnet_library_license.txt",
  4935. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4936. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4937. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4938. ]
  4939. },
  4940. "SixLabors.ImageSharp/2.1.6": {
  4941. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4942. "type": "package",
  4943. "path": "sixlabors.imagesharp/2.1.6",
  4944. "files": [
  4945. ".nupkg.metadata",
  4946. ".signature.p7s",
  4947. "lib/net472/SixLabors.ImageSharp.dll",
  4948. "lib/net472/SixLabors.ImageSharp.xml",
  4949. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4950. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4951. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4952. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4953. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4954. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4955. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4956. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4957. "sixlabors.imagesharp.128.png",
  4958. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4959. "sixlabors.imagesharp.nuspec"
  4960. ]
  4961. },
  4962. "SSH.NET/2020.0.0-beta1": {
  4963. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4964. "type": "package",
  4965. "path": "ssh.net/2020.0.0-beta1",
  4966. "files": [
  4967. ".nupkg.metadata",
  4968. ".signature.p7s",
  4969. "lib/net35/Renci.SshNet.dll",
  4970. "lib/net35/Renci.SshNet.xml",
  4971. "lib/net40/Renci.SshNet.dll",
  4972. "lib/net40/Renci.SshNet.xml",
  4973. "lib/netstandard1.3/Renci.SshNet.dll",
  4974. "lib/netstandard1.3/Renci.SshNet.xml",
  4975. "lib/netstandard2.0/Renci.SshNet.dll",
  4976. "lib/netstandard2.0/Renci.SshNet.xml",
  4977. "lib/sl4/Renci.SshNet.dll",
  4978. "lib/sl4/Renci.SshNet.xml",
  4979. "lib/sl5/Renci.SshNet.dll",
  4980. "lib/sl5/Renci.SshNet.xml",
  4981. "lib/uap10/Renci.SshNet.dll",
  4982. "lib/uap10/Renci.SshNet.xml",
  4983. "lib/wp71/Renci.SshNet.dll",
  4984. "lib/wp71/Renci.SshNet.xml",
  4985. "lib/wp8/Renci.SshNet.dll",
  4986. "lib/wp8/Renci.SshNet.xml",
  4987. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4988. "ssh.net.nuspec"
  4989. ]
  4990. },
  4991. "SshNet.Security.Cryptography/1.3.0": {
  4992. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4993. "type": "package",
  4994. "path": "sshnet.security.cryptography/1.3.0",
  4995. "files": [
  4996. ".nupkg.metadata",
  4997. ".signature.p7s",
  4998. "lib/net20/SshNet.Security.Cryptography.dll",
  4999. "lib/net20/SshNet.Security.Cryptography.xml",
  5000. "lib/net40/SshNet.Security.Cryptography.dll",
  5001. "lib/net40/SshNet.Security.Cryptography.xml",
  5002. "lib/net45/SshNet.Security.Cryptography.dll",
  5003. "lib/net45/SshNet.Security.Cryptography.xml",
  5004. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5005. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5006. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5007. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5008. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5009. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5010. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5011. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5012. "lib/sl4/SshNet.Security.Cryptography.dll",
  5013. "lib/sl4/SshNet.Security.Cryptography.xml",
  5014. "lib/sl5/SshNet.Security.Cryptography.dll",
  5015. "lib/sl5/SshNet.Security.Cryptography.xml",
  5016. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5017. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5018. "lib/wp71/SshNet.Security.Cryptography.dll",
  5019. "lib/wp71/SshNet.Security.Cryptography.xml",
  5020. "lib/wp8/SshNet.Security.Cryptography.dll",
  5021. "lib/wp8/SshNet.Security.Cryptography.xml",
  5022. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5023. "sshnet.security.cryptography.nuspec"
  5024. ]
  5025. },
  5026. "StackExchange.Redis/1.2.4": {
  5027. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5028. "type": "package",
  5029. "path": "stackexchange.redis/1.2.4",
  5030. "files": [
  5031. ".nupkg.metadata",
  5032. ".signature.p7s",
  5033. "lib/net45/StackExchange.Redis.dll",
  5034. "lib/net45/StackExchange.Redis.xml",
  5035. "lib/net46/StackExchange.Redis.dll",
  5036. "lib/net46/StackExchange.Redis.xml",
  5037. "lib/netstandard1.5/StackExchange.Redis.dll",
  5038. "lib/netstandard1.5/StackExchange.Redis.xml",
  5039. "stackexchange.redis.1.2.4.nupkg.sha512",
  5040. "stackexchange.redis.nuspec"
  5041. ]
  5042. },
  5043. "Swashbuckle.AspNetCore/5.6.3": {
  5044. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5045. "type": "package",
  5046. "path": "swashbuckle.aspnetcore/5.6.3",
  5047. "files": [
  5048. ".nupkg.metadata",
  5049. ".signature.p7s",
  5050. "build/Swashbuckle.AspNetCore.props",
  5051. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5052. "swashbuckle.aspnetcore.nuspec"
  5053. ]
  5054. },
  5055. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5056. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5057. "type": "package",
  5058. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5059. "files": [
  5060. ".nupkg.metadata",
  5061. ".signature.p7s",
  5062. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5063. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5064. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5065. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5066. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5067. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5068. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5069. "swashbuckle.aspnetcore.swagger.nuspec"
  5070. ]
  5071. },
  5072. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5073. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5074. "type": "package",
  5075. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5076. "files": [
  5077. ".nupkg.metadata",
  5078. ".signature.p7s",
  5079. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5080. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5081. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5082. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5083. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5084. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5085. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5086. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5087. ]
  5088. },
  5089. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5090. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5091. "type": "package",
  5092. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5093. "files": [
  5094. ".nupkg.metadata",
  5095. ".signature.p7s",
  5096. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5097. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5098. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5099. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5100. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5101. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5102. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5103. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5104. ]
  5105. },
  5106. "System.AppContext/4.3.0": {
  5107. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5108. "type": "package",
  5109. "path": "system.appcontext/4.3.0",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "ThirdPartyNotices.txt",
  5114. "dotnet_library_license.txt",
  5115. "lib/MonoAndroid10/_._",
  5116. "lib/MonoTouch10/_._",
  5117. "lib/net46/System.AppContext.dll",
  5118. "lib/net463/System.AppContext.dll",
  5119. "lib/netcore50/System.AppContext.dll",
  5120. "lib/netstandard1.6/System.AppContext.dll",
  5121. "lib/xamarinios10/_._",
  5122. "lib/xamarinmac20/_._",
  5123. "lib/xamarintvos10/_._",
  5124. "lib/xamarinwatchos10/_._",
  5125. "ref/MonoAndroid10/_._",
  5126. "ref/MonoTouch10/_._",
  5127. "ref/net46/System.AppContext.dll",
  5128. "ref/net463/System.AppContext.dll",
  5129. "ref/netstandard/_._",
  5130. "ref/netstandard1.3/System.AppContext.dll",
  5131. "ref/netstandard1.3/System.AppContext.xml",
  5132. "ref/netstandard1.3/de/System.AppContext.xml",
  5133. "ref/netstandard1.3/es/System.AppContext.xml",
  5134. "ref/netstandard1.3/fr/System.AppContext.xml",
  5135. "ref/netstandard1.3/it/System.AppContext.xml",
  5136. "ref/netstandard1.3/ja/System.AppContext.xml",
  5137. "ref/netstandard1.3/ko/System.AppContext.xml",
  5138. "ref/netstandard1.3/ru/System.AppContext.xml",
  5139. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5140. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5141. "ref/netstandard1.6/System.AppContext.dll",
  5142. "ref/netstandard1.6/System.AppContext.xml",
  5143. "ref/netstandard1.6/de/System.AppContext.xml",
  5144. "ref/netstandard1.6/es/System.AppContext.xml",
  5145. "ref/netstandard1.6/fr/System.AppContext.xml",
  5146. "ref/netstandard1.6/it/System.AppContext.xml",
  5147. "ref/netstandard1.6/ja/System.AppContext.xml",
  5148. "ref/netstandard1.6/ko/System.AppContext.xml",
  5149. "ref/netstandard1.6/ru/System.AppContext.xml",
  5150. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5151. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5152. "ref/xamarinios10/_._",
  5153. "ref/xamarinmac20/_._",
  5154. "ref/xamarintvos10/_._",
  5155. "ref/xamarinwatchos10/_._",
  5156. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5157. "system.appcontext.4.3.0.nupkg.sha512",
  5158. "system.appcontext.nuspec"
  5159. ]
  5160. },
  5161. "System.Buffers/4.5.1": {
  5162. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5163. "type": "package",
  5164. "path": "system.buffers/4.5.1",
  5165. "files": [
  5166. ".nupkg.metadata",
  5167. ".signature.p7s",
  5168. "LICENSE.TXT",
  5169. "THIRD-PARTY-NOTICES.TXT",
  5170. "lib/net461/System.Buffers.dll",
  5171. "lib/net461/System.Buffers.xml",
  5172. "lib/netcoreapp2.0/_._",
  5173. "lib/netstandard1.1/System.Buffers.dll",
  5174. "lib/netstandard1.1/System.Buffers.xml",
  5175. "lib/netstandard2.0/System.Buffers.dll",
  5176. "lib/netstandard2.0/System.Buffers.xml",
  5177. "lib/uap10.0.16299/_._",
  5178. "ref/net45/System.Buffers.dll",
  5179. "ref/net45/System.Buffers.xml",
  5180. "ref/netcoreapp2.0/_._",
  5181. "ref/netstandard1.1/System.Buffers.dll",
  5182. "ref/netstandard1.1/System.Buffers.xml",
  5183. "ref/netstandard2.0/System.Buffers.dll",
  5184. "ref/netstandard2.0/System.Buffers.xml",
  5185. "ref/uap10.0.16299/_._",
  5186. "system.buffers.4.5.1.nupkg.sha512",
  5187. "system.buffers.nuspec",
  5188. "useSharedDesignerContext.txt",
  5189. "version.txt"
  5190. ]
  5191. },
  5192. "System.Collections/4.3.0": {
  5193. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5194. "type": "package",
  5195. "path": "system.collections/4.3.0",
  5196. "files": [
  5197. ".nupkg.metadata",
  5198. ".signature.p7s",
  5199. "ThirdPartyNotices.txt",
  5200. "dotnet_library_license.txt",
  5201. "lib/MonoAndroid10/_._",
  5202. "lib/MonoTouch10/_._",
  5203. "lib/net45/_._",
  5204. "lib/portable-net45+win8+wp8+wpa81/_._",
  5205. "lib/win8/_._",
  5206. "lib/wp80/_._",
  5207. "lib/wpa81/_._",
  5208. "lib/xamarinios10/_._",
  5209. "lib/xamarinmac20/_._",
  5210. "lib/xamarintvos10/_._",
  5211. "lib/xamarinwatchos10/_._",
  5212. "ref/MonoAndroid10/_._",
  5213. "ref/MonoTouch10/_._",
  5214. "ref/net45/_._",
  5215. "ref/netcore50/System.Collections.dll",
  5216. "ref/netcore50/System.Collections.xml",
  5217. "ref/netcore50/de/System.Collections.xml",
  5218. "ref/netcore50/es/System.Collections.xml",
  5219. "ref/netcore50/fr/System.Collections.xml",
  5220. "ref/netcore50/it/System.Collections.xml",
  5221. "ref/netcore50/ja/System.Collections.xml",
  5222. "ref/netcore50/ko/System.Collections.xml",
  5223. "ref/netcore50/ru/System.Collections.xml",
  5224. "ref/netcore50/zh-hans/System.Collections.xml",
  5225. "ref/netcore50/zh-hant/System.Collections.xml",
  5226. "ref/netstandard1.0/System.Collections.dll",
  5227. "ref/netstandard1.0/System.Collections.xml",
  5228. "ref/netstandard1.0/de/System.Collections.xml",
  5229. "ref/netstandard1.0/es/System.Collections.xml",
  5230. "ref/netstandard1.0/fr/System.Collections.xml",
  5231. "ref/netstandard1.0/it/System.Collections.xml",
  5232. "ref/netstandard1.0/ja/System.Collections.xml",
  5233. "ref/netstandard1.0/ko/System.Collections.xml",
  5234. "ref/netstandard1.0/ru/System.Collections.xml",
  5235. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5236. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5237. "ref/netstandard1.3/System.Collections.dll",
  5238. "ref/netstandard1.3/System.Collections.xml",
  5239. "ref/netstandard1.3/de/System.Collections.xml",
  5240. "ref/netstandard1.3/es/System.Collections.xml",
  5241. "ref/netstandard1.3/fr/System.Collections.xml",
  5242. "ref/netstandard1.3/it/System.Collections.xml",
  5243. "ref/netstandard1.3/ja/System.Collections.xml",
  5244. "ref/netstandard1.3/ko/System.Collections.xml",
  5245. "ref/netstandard1.3/ru/System.Collections.xml",
  5246. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5247. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5248. "ref/portable-net45+win8+wp8+wpa81/_._",
  5249. "ref/win8/_._",
  5250. "ref/wp80/_._",
  5251. "ref/wpa81/_._",
  5252. "ref/xamarinios10/_._",
  5253. "ref/xamarinmac20/_._",
  5254. "ref/xamarintvos10/_._",
  5255. "ref/xamarinwatchos10/_._",
  5256. "system.collections.4.3.0.nupkg.sha512",
  5257. "system.collections.nuspec"
  5258. ]
  5259. },
  5260. "System.Collections.Concurrent/4.3.0": {
  5261. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5262. "type": "package",
  5263. "path": "system.collections.concurrent/4.3.0",
  5264. "files": [
  5265. ".nupkg.metadata",
  5266. ".signature.p7s",
  5267. "ThirdPartyNotices.txt",
  5268. "dotnet_library_license.txt",
  5269. "lib/MonoAndroid10/_._",
  5270. "lib/MonoTouch10/_._",
  5271. "lib/net45/_._",
  5272. "lib/netcore50/System.Collections.Concurrent.dll",
  5273. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5274. "lib/portable-net45+win8+wpa81/_._",
  5275. "lib/win8/_._",
  5276. "lib/wpa81/_._",
  5277. "lib/xamarinios10/_._",
  5278. "lib/xamarinmac20/_._",
  5279. "lib/xamarintvos10/_._",
  5280. "lib/xamarinwatchos10/_._",
  5281. "ref/MonoAndroid10/_._",
  5282. "ref/MonoTouch10/_._",
  5283. "ref/net45/_._",
  5284. "ref/netcore50/System.Collections.Concurrent.dll",
  5285. "ref/netcore50/System.Collections.Concurrent.xml",
  5286. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5287. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5288. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5289. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5290. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5291. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5292. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5293. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5294. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5295. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5296. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5297. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5298. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5299. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5300. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5301. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5302. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5303. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5304. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5305. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5306. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5307. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5308. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5309. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5310. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5311. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5312. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5313. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5314. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5315. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5316. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5317. "ref/portable-net45+win8+wpa81/_._",
  5318. "ref/win8/_._",
  5319. "ref/wpa81/_._",
  5320. "ref/xamarinios10/_._",
  5321. "ref/xamarinmac20/_._",
  5322. "ref/xamarintvos10/_._",
  5323. "ref/xamarinwatchos10/_._",
  5324. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5325. "system.collections.concurrent.nuspec"
  5326. ]
  5327. },
  5328. "System.Collections.Immutable/5.0.0": {
  5329. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5330. "type": "package",
  5331. "path": "system.collections.immutable/5.0.0",
  5332. "files": [
  5333. ".nupkg.metadata",
  5334. ".signature.p7s",
  5335. "Icon.png",
  5336. "LICENSE.TXT",
  5337. "THIRD-PARTY-NOTICES.TXT",
  5338. "lib/net461/System.Collections.Immutable.dll",
  5339. "lib/net461/System.Collections.Immutable.xml",
  5340. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5341. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5342. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5343. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5344. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5345. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5346. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5347. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5348. "system.collections.immutable.5.0.0.nupkg.sha512",
  5349. "system.collections.immutable.nuspec",
  5350. "useSharedDesignerContext.txt",
  5351. "version.txt"
  5352. ]
  5353. },
  5354. "System.Collections.NonGeneric/4.3.0": {
  5355. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5356. "type": "package",
  5357. "path": "system.collections.nongeneric/4.3.0",
  5358. "files": [
  5359. ".nupkg.metadata",
  5360. ".signature.p7s",
  5361. "ThirdPartyNotices.txt",
  5362. "dotnet_library_license.txt",
  5363. "lib/MonoAndroid10/_._",
  5364. "lib/MonoTouch10/_._",
  5365. "lib/net46/System.Collections.NonGeneric.dll",
  5366. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5367. "lib/xamarinios10/_._",
  5368. "lib/xamarinmac20/_._",
  5369. "lib/xamarintvos10/_._",
  5370. "lib/xamarinwatchos10/_._",
  5371. "ref/MonoAndroid10/_._",
  5372. "ref/MonoTouch10/_._",
  5373. "ref/net46/System.Collections.NonGeneric.dll",
  5374. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5375. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5376. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5377. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5378. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5379. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5380. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5381. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5382. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5383. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5384. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5385. "ref/xamarinios10/_._",
  5386. "ref/xamarinmac20/_._",
  5387. "ref/xamarintvos10/_._",
  5388. "ref/xamarinwatchos10/_._",
  5389. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5390. "system.collections.nongeneric.nuspec"
  5391. ]
  5392. },
  5393. "System.ComponentModel/4.3.0": {
  5394. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5395. "type": "package",
  5396. "path": "system.componentmodel/4.3.0",
  5397. "files": [
  5398. ".nupkg.metadata",
  5399. ".signature.p7s",
  5400. "ThirdPartyNotices.txt",
  5401. "dotnet_library_license.txt",
  5402. "lib/MonoAndroid10/_._",
  5403. "lib/MonoTouch10/_._",
  5404. "lib/net45/_._",
  5405. "lib/netcore50/System.ComponentModel.dll",
  5406. "lib/netstandard1.3/System.ComponentModel.dll",
  5407. "lib/portable-net45+win8+wp8+wpa81/_._",
  5408. "lib/win8/_._",
  5409. "lib/wp80/_._",
  5410. "lib/wpa81/_._",
  5411. "lib/xamarinios10/_._",
  5412. "lib/xamarinmac20/_._",
  5413. "lib/xamarintvos10/_._",
  5414. "lib/xamarinwatchos10/_._",
  5415. "ref/MonoAndroid10/_._",
  5416. "ref/MonoTouch10/_._",
  5417. "ref/net45/_._",
  5418. "ref/netcore50/System.ComponentModel.dll",
  5419. "ref/netcore50/System.ComponentModel.xml",
  5420. "ref/netcore50/de/System.ComponentModel.xml",
  5421. "ref/netcore50/es/System.ComponentModel.xml",
  5422. "ref/netcore50/fr/System.ComponentModel.xml",
  5423. "ref/netcore50/it/System.ComponentModel.xml",
  5424. "ref/netcore50/ja/System.ComponentModel.xml",
  5425. "ref/netcore50/ko/System.ComponentModel.xml",
  5426. "ref/netcore50/ru/System.ComponentModel.xml",
  5427. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5428. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5429. "ref/netstandard1.0/System.ComponentModel.dll",
  5430. "ref/netstandard1.0/System.ComponentModel.xml",
  5431. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5432. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5433. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5434. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5435. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5436. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5437. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5438. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5439. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5440. "ref/portable-net45+win8+wp8+wpa81/_._",
  5441. "ref/win8/_._",
  5442. "ref/wp80/_._",
  5443. "ref/wpa81/_._",
  5444. "ref/xamarinios10/_._",
  5445. "ref/xamarinmac20/_._",
  5446. "ref/xamarintvos10/_._",
  5447. "ref/xamarinwatchos10/_._",
  5448. "system.componentmodel.4.3.0.nupkg.sha512",
  5449. "system.componentmodel.nuspec"
  5450. ]
  5451. },
  5452. "System.ComponentModel.Annotations/5.0.0": {
  5453. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5454. "type": "package",
  5455. "path": "system.componentmodel.annotations/5.0.0",
  5456. "files": [
  5457. ".nupkg.metadata",
  5458. ".signature.p7s",
  5459. "Icon.png",
  5460. "LICENSE.TXT",
  5461. "THIRD-PARTY-NOTICES.TXT",
  5462. "lib/MonoAndroid10/_._",
  5463. "lib/MonoTouch10/_._",
  5464. "lib/net45/_._",
  5465. "lib/net461/System.ComponentModel.Annotations.dll",
  5466. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5467. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5468. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5469. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5470. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5471. "lib/portable-net45+win8/_._",
  5472. "lib/win8/_._",
  5473. "lib/xamarinios10/_._",
  5474. "lib/xamarinmac20/_._",
  5475. "lib/xamarintvos10/_._",
  5476. "lib/xamarinwatchos10/_._",
  5477. "ref/MonoAndroid10/_._",
  5478. "ref/MonoTouch10/_._",
  5479. "ref/net45/_._",
  5480. "ref/net461/System.ComponentModel.Annotations.dll",
  5481. "ref/net461/System.ComponentModel.Annotations.xml",
  5482. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5483. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5484. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5485. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5486. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5487. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5488. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5489. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5490. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5491. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5492. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5493. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5494. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5495. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5496. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5497. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5498. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5499. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5500. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5501. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5502. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5503. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5504. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5505. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5506. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5507. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5508. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5509. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5510. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5511. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5512. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5513. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5514. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5515. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5516. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5517. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5518. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5519. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5520. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5521. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5522. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5523. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5524. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5525. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5526. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5527. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5528. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5529. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5530. "ref/portable-net45+win8/_._",
  5531. "ref/win8/_._",
  5532. "ref/xamarinios10/_._",
  5533. "ref/xamarinmac20/_._",
  5534. "ref/xamarintvos10/_._",
  5535. "ref/xamarinwatchos10/_._",
  5536. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5537. "system.componentmodel.annotations.nuspec",
  5538. "useSharedDesignerContext.txt",
  5539. "version.txt"
  5540. ]
  5541. },
  5542. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5543. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5544. "type": "package",
  5545. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5546. "files": [
  5547. ".nupkg.metadata",
  5548. ".signature.p7s",
  5549. "ThirdPartyNotices.txt",
  5550. "dotnet_library_license.txt",
  5551. "lib/MonoAndroid10/_._",
  5552. "lib/MonoTouch10/_._",
  5553. "lib/net45/_._",
  5554. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5555. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5556. "lib/portable-net45+win8+wp8+wpa81/_._",
  5557. "lib/win8/_._",
  5558. "lib/wp80/_._",
  5559. "lib/wpa81/_._",
  5560. "lib/xamarinios10/_._",
  5561. "lib/xamarinmac20/_._",
  5562. "lib/xamarintvos10/_._",
  5563. "lib/xamarinwatchos10/_._",
  5564. "ref/MonoAndroid10/_._",
  5565. "ref/MonoTouch10/_._",
  5566. "ref/net45/_._",
  5567. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5568. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5569. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5570. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5571. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5572. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5573. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5574. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5575. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5576. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5577. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5578. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5579. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5580. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5581. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5582. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5583. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5584. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5585. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5586. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5587. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5588. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5589. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5590. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5591. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5592. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5593. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5594. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5595. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5596. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5597. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5598. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5599. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5600. "ref/portable-net45+win8+wp8+wpa81/_._",
  5601. "ref/win8/_._",
  5602. "ref/wp80/_._",
  5603. "ref/wpa81/_._",
  5604. "ref/xamarinios10/_._",
  5605. "ref/xamarinmac20/_._",
  5606. "ref/xamarintvos10/_._",
  5607. "ref/xamarinwatchos10/_._",
  5608. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5609. "system.componentmodel.eventbasedasync.nuspec"
  5610. ]
  5611. },
  5612. "System.ComponentModel.Primitives/4.3.0": {
  5613. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5614. "type": "package",
  5615. "path": "system.componentmodel.primitives/4.3.0",
  5616. "files": [
  5617. ".nupkg.metadata",
  5618. ".signature.p7s",
  5619. "ThirdPartyNotices.txt",
  5620. "dotnet_library_license.txt",
  5621. "lib/MonoAndroid10/_._",
  5622. "lib/MonoTouch10/_._",
  5623. "lib/net45/System.ComponentModel.Primitives.dll",
  5624. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5625. "lib/xamarinios10/_._",
  5626. "lib/xamarinmac20/_._",
  5627. "lib/xamarintvos10/_._",
  5628. "lib/xamarinwatchos10/_._",
  5629. "ref/MonoAndroid10/_._",
  5630. "ref/MonoTouch10/_._",
  5631. "ref/net45/System.ComponentModel.Primitives.dll",
  5632. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5633. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5634. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5635. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5636. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5637. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5638. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5639. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5640. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5641. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5642. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5643. "ref/xamarinios10/_._",
  5644. "ref/xamarinmac20/_._",
  5645. "ref/xamarintvos10/_._",
  5646. "ref/xamarinwatchos10/_._",
  5647. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5648. "system.componentmodel.primitives.nuspec"
  5649. ]
  5650. },
  5651. "System.Configuration.ConfigurationManager/4.5.0": {
  5652. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5653. "type": "package",
  5654. "path": "system.configuration.configurationmanager/4.5.0",
  5655. "files": [
  5656. ".nupkg.metadata",
  5657. ".signature.p7s",
  5658. "LICENSE.TXT",
  5659. "THIRD-PARTY-NOTICES.TXT",
  5660. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5661. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5662. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5663. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5664. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5665. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5666. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5667. "system.configuration.configurationmanager.nuspec",
  5668. "useSharedDesignerContext.txt",
  5669. "version.txt"
  5670. ]
  5671. },
  5672. "System.Console/4.3.0": {
  5673. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5674. "type": "package",
  5675. "path": "system.console/4.3.0",
  5676. "files": [
  5677. ".nupkg.metadata",
  5678. ".signature.p7s",
  5679. "ThirdPartyNotices.txt",
  5680. "dotnet_library_license.txt",
  5681. "lib/MonoAndroid10/_._",
  5682. "lib/MonoTouch10/_._",
  5683. "lib/net46/System.Console.dll",
  5684. "lib/xamarinios10/_._",
  5685. "lib/xamarinmac20/_._",
  5686. "lib/xamarintvos10/_._",
  5687. "lib/xamarinwatchos10/_._",
  5688. "ref/MonoAndroid10/_._",
  5689. "ref/MonoTouch10/_._",
  5690. "ref/net46/System.Console.dll",
  5691. "ref/netstandard1.3/System.Console.dll",
  5692. "ref/netstandard1.3/System.Console.xml",
  5693. "ref/netstandard1.3/de/System.Console.xml",
  5694. "ref/netstandard1.3/es/System.Console.xml",
  5695. "ref/netstandard1.3/fr/System.Console.xml",
  5696. "ref/netstandard1.3/it/System.Console.xml",
  5697. "ref/netstandard1.3/ja/System.Console.xml",
  5698. "ref/netstandard1.3/ko/System.Console.xml",
  5699. "ref/netstandard1.3/ru/System.Console.xml",
  5700. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5701. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5702. "ref/xamarinios10/_._",
  5703. "ref/xamarinmac20/_._",
  5704. "ref/xamarintvos10/_._",
  5705. "ref/xamarinwatchos10/_._",
  5706. "system.console.4.3.0.nupkg.sha512",
  5707. "system.console.nuspec"
  5708. ]
  5709. },
  5710. "System.Diagnostics.Debug/4.3.0": {
  5711. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5712. "type": "package",
  5713. "path": "system.diagnostics.debug/4.3.0",
  5714. "files": [
  5715. ".nupkg.metadata",
  5716. ".signature.p7s",
  5717. "ThirdPartyNotices.txt",
  5718. "dotnet_library_license.txt",
  5719. "lib/MonoAndroid10/_._",
  5720. "lib/MonoTouch10/_._",
  5721. "lib/net45/_._",
  5722. "lib/portable-net45+win8+wp8+wpa81/_._",
  5723. "lib/win8/_._",
  5724. "lib/wp80/_._",
  5725. "lib/wpa81/_._",
  5726. "lib/xamarinios10/_._",
  5727. "lib/xamarinmac20/_._",
  5728. "lib/xamarintvos10/_._",
  5729. "lib/xamarinwatchos10/_._",
  5730. "ref/MonoAndroid10/_._",
  5731. "ref/MonoTouch10/_._",
  5732. "ref/net45/_._",
  5733. "ref/netcore50/System.Diagnostics.Debug.dll",
  5734. "ref/netcore50/System.Diagnostics.Debug.xml",
  5735. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5736. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5737. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5738. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5739. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5740. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5741. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5742. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5743. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5744. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5745. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5746. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5747. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5748. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5749. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5750. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5751. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5752. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5753. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5754. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5755. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5756. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5757. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5758. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5759. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5760. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5761. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5762. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5763. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5764. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5765. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5766. "ref/portable-net45+win8+wp8+wpa81/_._",
  5767. "ref/win8/_._",
  5768. "ref/wp80/_._",
  5769. "ref/wpa81/_._",
  5770. "ref/xamarinios10/_._",
  5771. "ref/xamarinmac20/_._",
  5772. "ref/xamarintvos10/_._",
  5773. "ref/xamarinwatchos10/_._",
  5774. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5775. "system.diagnostics.debug.nuspec"
  5776. ]
  5777. },
  5778. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5779. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5780. "type": "package",
  5781. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5782. "files": [
  5783. ".nupkg.metadata",
  5784. ".signature.p7s",
  5785. "Icon.png",
  5786. "LICENSE.TXT",
  5787. "THIRD-PARTY-NOTICES.TXT",
  5788. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5789. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5790. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5791. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5792. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5793. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5794. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5795. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5796. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5797. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5798. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5799. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5800. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5801. "system.diagnostics.diagnosticsource.nuspec",
  5802. "useSharedDesignerContext.txt",
  5803. "version.txt"
  5804. ]
  5805. },
  5806. "System.Diagnostics.Tools/4.3.0": {
  5807. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5808. "type": "package",
  5809. "path": "system.diagnostics.tools/4.3.0",
  5810. "files": [
  5811. ".nupkg.metadata",
  5812. ".signature.p7s",
  5813. "ThirdPartyNotices.txt",
  5814. "dotnet_library_license.txt",
  5815. "lib/MonoAndroid10/_._",
  5816. "lib/MonoTouch10/_._",
  5817. "lib/net45/_._",
  5818. "lib/portable-net45+win8+wp8+wpa81/_._",
  5819. "lib/win8/_._",
  5820. "lib/wp80/_._",
  5821. "lib/wpa81/_._",
  5822. "lib/xamarinios10/_._",
  5823. "lib/xamarinmac20/_._",
  5824. "lib/xamarintvos10/_._",
  5825. "lib/xamarinwatchos10/_._",
  5826. "ref/MonoAndroid10/_._",
  5827. "ref/MonoTouch10/_._",
  5828. "ref/net45/_._",
  5829. "ref/netcore50/System.Diagnostics.Tools.dll",
  5830. "ref/netcore50/System.Diagnostics.Tools.xml",
  5831. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5832. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5833. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5834. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5835. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5836. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5837. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5838. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5839. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5840. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5841. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5842. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5843. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5844. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5845. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5846. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5847. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5848. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5849. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5850. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5851. "ref/portable-net45+win8+wp8+wpa81/_._",
  5852. "ref/win8/_._",
  5853. "ref/wp80/_._",
  5854. "ref/wpa81/_._",
  5855. "ref/xamarinios10/_._",
  5856. "ref/xamarinmac20/_._",
  5857. "ref/xamarintvos10/_._",
  5858. "ref/xamarinwatchos10/_._",
  5859. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5860. "system.diagnostics.tools.nuspec"
  5861. ]
  5862. },
  5863. "System.Diagnostics.Tracing/4.3.0": {
  5864. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5865. "type": "package",
  5866. "path": "system.diagnostics.tracing/4.3.0",
  5867. "files": [
  5868. ".nupkg.metadata",
  5869. ".signature.p7s",
  5870. "ThirdPartyNotices.txt",
  5871. "dotnet_library_license.txt",
  5872. "lib/MonoAndroid10/_._",
  5873. "lib/MonoTouch10/_._",
  5874. "lib/net45/_._",
  5875. "lib/net462/System.Diagnostics.Tracing.dll",
  5876. "lib/portable-net45+win8+wpa81/_._",
  5877. "lib/win8/_._",
  5878. "lib/wpa81/_._",
  5879. "lib/xamarinios10/_._",
  5880. "lib/xamarinmac20/_._",
  5881. "lib/xamarintvos10/_._",
  5882. "lib/xamarinwatchos10/_._",
  5883. "ref/MonoAndroid10/_._",
  5884. "ref/MonoTouch10/_._",
  5885. "ref/net45/_._",
  5886. "ref/net462/System.Diagnostics.Tracing.dll",
  5887. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5888. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5889. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5890. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5891. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5892. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5893. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5894. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5895. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5896. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5897. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5899. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5902. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5907. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5909. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5910. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5911. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5912. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5913. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5914. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5916. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5917. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5918. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5919. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5920. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5921. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5922. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5923. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5924. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5925. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5926. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5927. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5928. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5929. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5930. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5931. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5932. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5933. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5934. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5935. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5936. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5937. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5938. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5939. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5940. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5941. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5942. "ref/portable-net45+win8+wpa81/_._",
  5943. "ref/win8/_._",
  5944. "ref/wpa81/_._",
  5945. "ref/xamarinios10/_._",
  5946. "ref/xamarinmac20/_._",
  5947. "ref/xamarintvos10/_._",
  5948. "ref/xamarinwatchos10/_._",
  5949. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5950. "system.diagnostics.tracing.nuspec"
  5951. ]
  5952. },
  5953. "System.Drawing.Common/5.0.3": {
  5954. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5955. "type": "package",
  5956. "path": "system.drawing.common/5.0.3",
  5957. "files": [
  5958. ".nupkg.metadata",
  5959. ".signature.p7s",
  5960. "Icon.png",
  5961. "LICENSE.TXT",
  5962. "THIRD-PARTY-NOTICES.TXT",
  5963. "lib/MonoAndroid10/_._",
  5964. "lib/MonoTouch10/_._",
  5965. "lib/net461/System.Drawing.Common.dll",
  5966. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5967. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5968. "lib/netstandard2.0/System.Drawing.Common.dll",
  5969. "lib/xamarinios10/_._",
  5970. "lib/xamarinmac20/_._",
  5971. "lib/xamarintvos10/_._",
  5972. "lib/xamarinwatchos10/_._",
  5973. "ref/MonoAndroid10/_._",
  5974. "ref/MonoTouch10/_._",
  5975. "ref/net461/System.Drawing.Common.dll",
  5976. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5977. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5978. "ref/netstandard2.0/System.Drawing.Common.dll",
  5979. "ref/xamarinios10/_._",
  5980. "ref/xamarinmac20/_._",
  5981. "ref/xamarintvos10/_._",
  5982. "ref/xamarinwatchos10/_._",
  5983. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5984. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5985. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5986. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5987. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5988. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5989. "system.drawing.common.5.0.3.nupkg.sha512",
  5990. "system.drawing.common.nuspec",
  5991. "useSharedDesignerContext.txt",
  5992. "version.txt"
  5993. ]
  5994. },
  5995. "System.Globalization/4.3.0": {
  5996. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5997. "type": "package",
  5998. "path": "system.globalization/4.3.0",
  5999. "files": [
  6000. ".nupkg.metadata",
  6001. ".signature.p7s",
  6002. "ThirdPartyNotices.txt",
  6003. "dotnet_library_license.txt",
  6004. "lib/MonoAndroid10/_._",
  6005. "lib/MonoTouch10/_._",
  6006. "lib/net45/_._",
  6007. "lib/portable-net45+win8+wp8+wpa81/_._",
  6008. "lib/win8/_._",
  6009. "lib/wp80/_._",
  6010. "lib/wpa81/_._",
  6011. "lib/xamarinios10/_._",
  6012. "lib/xamarinmac20/_._",
  6013. "lib/xamarintvos10/_._",
  6014. "lib/xamarinwatchos10/_._",
  6015. "ref/MonoAndroid10/_._",
  6016. "ref/MonoTouch10/_._",
  6017. "ref/net45/_._",
  6018. "ref/netcore50/System.Globalization.dll",
  6019. "ref/netcore50/System.Globalization.xml",
  6020. "ref/netcore50/de/System.Globalization.xml",
  6021. "ref/netcore50/es/System.Globalization.xml",
  6022. "ref/netcore50/fr/System.Globalization.xml",
  6023. "ref/netcore50/it/System.Globalization.xml",
  6024. "ref/netcore50/ja/System.Globalization.xml",
  6025. "ref/netcore50/ko/System.Globalization.xml",
  6026. "ref/netcore50/ru/System.Globalization.xml",
  6027. "ref/netcore50/zh-hans/System.Globalization.xml",
  6028. "ref/netcore50/zh-hant/System.Globalization.xml",
  6029. "ref/netstandard1.0/System.Globalization.dll",
  6030. "ref/netstandard1.0/System.Globalization.xml",
  6031. "ref/netstandard1.0/de/System.Globalization.xml",
  6032. "ref/netstandard1.0/es/System.Globalization.xml",
  6033. "ref/netstandard1.0/fr/System.Globalization.xml",
  6034. "ref/netstandard1.0/it/System.Globalization.xml",
  6035. "ref/netstandard1.0/ja/System.Globalization.xml",
  6036. "ref/netstandard1.0/ko/System.Globalization.xml",
  6037. "ref/netstandard1.0/ru/System.Globalization.xml",
  6038. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6039. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6040. "ref/netstandard1.3/System.Globalization.dll",
  6041. "ref/netstandard1.3/System.Globalization.xml",
  6042. "ref/netstandard1.3/de/System.Globalization.xml",
  6043. "ref/netstandard1.3/es/System.Globalization.xml",
  6044. "ref/netstandard1.3/fr/System.Globalization.xml",
  6045. "ref/netstandard1.3/it/System.Globalization.xml",
  6046. "ref/netstandard1.3/ja/System.Globalization.xml",
  6047. "ref/netstandard1.3/ko/System.Globalization.xml",
  6048. "ref/netstandard1.3/ru/System.Globalization.xml",
  6049. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6050. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6051. "ref/portable-net45+win8+wp8+wpa81/_._",
  6052. "ref/win8/_._",
  6053. "ref/wp80/_._",
  6054. "ref/wpa81/_._",
  6055. "ref/xamarinios10/_._",
  6056. "ref/xamarinmac20/_._",
  6057. "ref/xamarintvos10/_._",
  6058. "ref/xamarinwatchos10/_._",
  6059. "system.globalization.4.3.0.nupkg.sha512",
  6060. "system.globalization.nuspec"
  6061. ]
  6062. },
  6063. "System.Globalization.Calendars/4.3.0": {
  6064. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6065. "type": "package",
  6066. "path": "system.globalization.calendars/4.3.0",
  6067. "files": [
  6068. ".nupkg.metadata",
  6069. ".signature.p7s",
  6070. "ThirdPartyNotices.txt",
  6071. "dotnet_library_license.txt",
  6072. "lib/MonoAndroid10/_._",
  6073. "lib/MonoTouch10/_._",
  6074. "lib/net46/System.Globalization.Calendars.dll",
  6075. "lib/xamarinios10/_._",
  6076. "lib/xamarinmac20/_._",
  6077. "lib/xamarintvos10/_._",
  6078. "lib/xamarinwatchos10/_._",
  6079. "ref/MonoAndroid10/_._",
  6080. "ref/MonoTouch10/_._",
  6081. "ref/net46/System.Globalization.Calendars.dll",
  6082. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6083. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6084. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6085. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6086. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6087. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6088. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6089. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6090. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6091. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6092. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6093. "ref/xamarinios10/_._",
  6094. "ref/xamarinmac20/_._",
  6095. "ref/xamarintvos10/_._",
  6096. "ref/xamarinwatchos10/_._",
  6097. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6098. "system.globalization.calendars.nuspec"
  6099. ]
  6100. },
  6101. "System.Globalization.Extensions/4.3.0": {
  6102. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6103. "type": "package",
  6104. "path": "system.globalization.extensions/4.3.0",
  6105. "files": [
  6106. ".nupkg.metadata",
  6107. ".signature.p7s",
  6108. "ThirdPartyNotices.txt",
  6109. "dotnet_library_license.txt",
  6110. "lib/MonoAndroid10/_._",
  6111. "lib/MonoTouch10/_._",
  6112. "lib/net46/System.Globalization.Extensions.dll",
  6113. "lib/xamarinios10/_._",
  6114. "lib/xamarinmac20/_._",
  6115. "lib/xamarintvos10/_._",
  6116. "lib/xamarinwatchos10/_._",
  6117. "ref/MonoAndroid10/_._",
  6118. "ref/MonoTouch10/_._",
  6119. "ref/net46/System.Globalization.Extensions.dll",
  6120. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6121. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6122. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6123. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6124. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6125. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6126. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6127. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6128. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6129. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6130. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6131. "ref/xamarinios10/_._",
  6132. "ref/xamarinmac20/_._",
  6133. "ref/xamarintvos10/_._",
  6134. "ref/xamarinwatchos10/_._",
  6135. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6136. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6137. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6138. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6139. "system.globalization.extensions.nuspec"
  6140. ]
  6141. },
  6142. "System.IO/4.3.0": {
  6143. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6144. "type": "package",
  6145. "path": "system.io/4.3.0",
  6146. "files": [
  6147. ".nupkg.metadata",
  6148. ".signature.p7s",
  6149. "ThirdPartyNotices.txt",
  6150. "dotnet_library_license.txt",
  6151. "lib/MonoAndroid10/_._",
  6152. "lib/MonoTouch10/_._",
  6153. "lib/net45/_._",
  6154. "lib/net462/System.IO.dll",
  6155. "lib/portable-net45+win8+wp8+wpa81/_._",
  6156. "lib/win8/_._",
  6157. "lib/wp80/_._",
  6158. "lib/wpa81/_._",
  6159. "lib/xamarinios10/_._",
  6160. "lib/xamarinmac20/_._",
  6161. "lib/xamarintvos10/_._",
  6162. "lib/xamarinwatchos10/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/net45/_._",
  6166. "ref/net462/System.IO.dll",
  6167. "ref/netcore50/System.IO.dll",
  6168. "ref/netcore50/System.IO.xml",
  6169. "ref/netcore50/de/System.IO.xml",
  6170. "ref/netcore50/es/System.IO.xml",
  6171. "ref/netcore50/fr/System.IO.xml",
  6172. "ref/netcore50/it/System.IO.xml",
  6173. "ref/netcore50/ja/System.IO.xml",
  6174. "ref/netcore50/ko/System.IO.xml",
  6175. "ref/netcore50/ru/System.IO.xml",
  6176. "ref/netcore50/zh-hans/System.IO.xml",
  6177. "ref/netcore50/zh-hant/System.IO.xml",
  6178. "ref/netstandard1.0/System.IO.dll",
  6179. "ref/netstandard1.0/System.IO.xml",
  6180. "ref/netstandard1.0/de/System.IO.xml",
  6181. "ref/netstandard1.0/es/System.IO.xml",
  6182. "ref/netstandard1.0/fr/System.IO.xml",
  6183. "ref/netstandard1.0/it/System.IO.xml",
  6184. "ref/netstandard1.0/ja/System.IO.xml",
  6185. "ref/netstandard1.0/ko/System.IO.xml",
  6186. "ref/netstandard1.0/ru/System.IO.xml",
  6187. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6188. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6189. "ref/netstandard1.3/System.IO.dll",
  6190. "ref/netstandard1.3/System.IO.xml",
  6191. "ref/netstandard1.3/de/System.IO.xml",
  6192. "ref/netstandard1.3/es/System.IO.xml",
  6193. "ref/netstandard1.3/fr/System.IO.xml",
  6194. "ref/netstandard1.3/it/System.IO.xml",
  6195. "ref/netstandard1.3/ja/System.IO.xml",
  6196. "ref/netstandard1.3/ko/System.IO.xml",
  6197. "ref/netstandard1.3/ru/System.IO.xml",
  6198. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6199. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6200. "ref/netstandard1.5/System.IO.dll",
  6201. "ref/netstandard1.5/System.IO.xml",
  6202. "ref/netstandard1.5/de/System.IO.xml",
  6203. "ref/netstandard1.5/es/System.IO.xml",
  6204. "ref/netstandard1.5/fr/System.IO.xml",
  6205. "ref/netstandard1.5/it/System.IO.xml",
  6206. "ref/netstandard1.5/ja/System.IO.xml",
  6207. "ref/netstandard1.5/ko/System.IO.xml",
  6208. "ref/netstandard1.5/ru/System.IO.xml",
  6209. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6210. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6211. "ref/portable-net45+win8+wp8+wpa81/_._",
  6212. "ref/win8/_._",
  6213. "ref/wp80/_._",
  6214. "ref/wpa81/_._",
  6215. "ref/xamarinios10/_._",
  6216. "ref/xamarinmac20/_._",
  6217. "ref/xamarintvos10/_._",
  6218. "ref/xamarinwatchos10/_._",
  6219. "system.io.4.3.0.nupkg.sha512",
  6220. "system.io.nuspec"
  6221. ]
  6222. },
  6223. "System.IO.Compression/4.3.0": {
  6224. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6225. "type": "package",
  6226. "path": "system.io.compression/4.3.0",
  6227. "files": [
  6228. ".nupkg.metadata",
  6229. ".signature.p7s",
  6230. "ThirdPartyNotices.txt",
  6231. "dotnet_library_license.txt",
  6232. "lib/MonoAndroid10/_._",
  6233. "lib/MonoTouch10/_._",
  6234. "lib/net45/_._",
  6235. "lib/net46/System.IO.Compression.dll",
  6236. "lib/portable-net45+win8+wpa81/_._",
  6237. "lib/win8/_._",
  6238. "lib/wpa81/_._",
  6239. "lib/xamarinios10/_._",
  6240. "lib/xamarinmac20/_._",
  6241. "lib/xamarintvos10/_._",
  6242. "lib/xamarinwatchos10/_._",
  6243. "ref/MonoAndroid10/_._",
  6244. "ref/MonoTouch10/_._",
  6245. "ref/net45/_._",
  6246. "ref/net46/System.IO.Compression.dll",
  6247. "ref/netcore50/System.IO.Compression.dll",
  6248. "ref/netcore50/System.IO.Compression.xml",
  6249. "ref/netcore50/de/System.IO.Compression.xml",
  6250. "ref/netcore50/es/System.IO.Compression.xml",
  6251. "ref/netcore50/fr/System.IO.Compression.xml",
  6252. "ref/netcore50/it/System.IO.Compression.xml",
  6253. "ref/netcore50/ja/System.IO.Compression.xml",
  6254. "ref/netcore50/ko/System.IO.Compression.xml",
  6255. "ref/netcore50/ru/System.IO.Compression.xml",
  6256. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6257. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6258. "ref/netstandard1.1/System.IO.Compression.dll",
  6259. "ref/netstandard1.1/System.IO.Compression.xml",
  6260. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6261. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6262. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6263. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6264. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6265. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6266. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6267. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6268. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6269. "ref/netstandard1.3/System.IO.Compression.dll",
  6270. "ref/netstandard1.3/System.IO.Compression.xml",
  6271. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6272. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6273. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6274. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6275. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6276. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6277. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6278. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6279. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6280. "ref/portable-net45+win8+wpa81/_._",
  6281. "ref/win8/_._",
  6282. "ref/wpa81/_._",
  6283. "ref/xamarinios10/_._",
  6284. "ref/xamarinmac20/_._",
  6285. "ref/xamarintvos10/_._",
  6286. "ref/xamarinwatchos10/_._",
  6287. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6288. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6289. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6290. "system.io.compression.4.3.0.nupkg.sha512",
  6291. "system.io.compression.nuspec"
  6292. ]
  6293. },
  6294. "System.IO.Compression.ZipFile/4.3.0": {
  6295. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6296. "type": "package",
  6297. "path": "system.io.compression.zipfile/4.3.0",
  6298. "files": [
  6299. ".nupkg.metadata",
  6300. ".signature.p7s",
  6301. "ThirdPartyNotices.txt",
  6302. "dotnet_library_license.txt",
  6303. "lib/MonoAndroid10/_._",
  6304. "lib/MonoTouch10/_._",
  6305. "lib/net46/System.IO.Compression.ZipFile.dll",
  6306. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6307. "lib/xamarinios10/_._",
  6308. "lib/xamarinmac20/_._",
  6309. "lib/xamarintvos10/_._",
  6310. "lib/xamarinwatchos10/_._",
  6311. "ref/MonoAndroid10/_._",
  6312. "ref/MonoTouch10/_._",
  6313. "ref/net46/System.IO.Compression.ZipFile.dll",
  6314. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6315. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6316. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6317. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6318. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6319. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6320. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6321. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6322. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6323. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6324. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6325. "ref/xamarinios10/_._",
  6326. "ref/xamarinmac20/_._",
  6327. "ref/xamarintvos10/_._",
  6328. "ref/xamarinwatchos10/_._",
  6329. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6330. "system.io.compression.zipfile.nuspec"
  6331. ]
  6332. },
  6333. "System.IO.FileSystem/4.3.0": {
  6334. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6335. "type": "package",
  6336. "path": "system.io.filesystem/4.3.0",
  6337. "files": [
  6338. ".nupkg.metadata",
  6339. ".signature.p7s",
  6340. "ThirdPartyNotices.txt",
  6341. "dotnet_library_license.txt",
  6342. "lib/MonoAndroid10/_._",
  6343. "lib/MonoTouch10/_._",
  6344. "lib/net46/System.IO.FileSystem.dll",
  6345. "lib/xamarinios10/_._",
  6346. "lib/xamarinmac20/_._",
  6347. "lib/xamarintvos10/_._",
  6348. "lib/xamarinwatchos10/_._",
  6349. "ref/MonoAndroid10/_._",
  6350. "ref/MonoTouch10/_._",
  6351. "ref/net46/System.IO.FileSystem.dll",
  6352. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6353. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6354. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6355. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6356. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6357. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6358. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6359. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6360. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6361. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6362. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6363. "ref/xamarinios10/_._",
  6364. "ref/xamarinmac20/_._",
  6365. "ref/xamarintvos10/_._",
  6366. "ref/xamarinwatchos10/_._",
  6367. "system.io.filesystem.4.3.0.nupkg.sha512",
  6368. "system.io.filesystem.nuspec"
  6369. ]
  6370. },
  6371. "System.IO.FileSystem.Primitives/4.3.0": {
  6372. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6373. "type": "package",
  6374. "path": "system.io.filesystem.primitives/4.3.0",
  6375. "files": [
  6376. ".nupkg.metadata",
  6377. ".signature.p7s",
  6378. "ThirdPartyNotices.txt",
  6379. "dotnet_library_license.txt",
  6380. "lib/MonoAndroid10/_._",
  6381. "lib/MonoTouch10/_._",
  6382. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6383. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6384. "lib/xamarinios10/_._",
  6385. "lib/xamarinmac20/_._",
  6386. "lib/xamarintvos10/_._",
  6387. "lib/xamarinwatchos10/_._",
  6388. "ref/MonoAndroid10/_._",
  6389. "ref/MonoTouch10/_._",
  6390. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6391. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6392. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6393. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6394. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6395. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6396. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6397. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6398. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6399. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6400. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6401. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6402. "ref/xamarinios10/_._",
  6403. "ref/xamarinmac20/_._",
  6404. "ref/xamarintvos10/_._",
  6405. "ref/xamarinwatchos10/_._",
  6406. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6407. "system.io.filesystem.primitives.nuspec"
  6408. ]
  6409. },
  6410. "System.IO.Pipelines/5.0.0": {
  6411. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6412. "type": "package",
  6413. "path": "system.io.pipelines/5.0.0",
  6414. "files": [
  6415. ".nupkg.metadata",
  6416. ".signature.p7s",
  6417. "Icon.png",
  6418. "LICENSE.TXT",
  6419. "THIRD-PARTY-NOTICES.TXT",
  6420. "lib/net461/System.IO.Pipelines.dll",
  6421. "lib/net461/System.IO.Pipelines.xml",
  6422. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6423. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6424. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6425. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6426. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6427. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6428. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6429. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6430. "system.io.pipelines.5.0.0.nupkg.sha512",
  6431. "system.io.pipelines.nuspec",
  6432. "useSharedDesignerContext.txt",
  6433. "version.txt"
  6434. ]
  6435. },
  6436. "System.Linq/4.3.0": {
  6437. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6438. "type": "package",
  6439. "path": "system.linq/4.3.0",
  6440. "files": [
  6441. ".nupkg.metadata",
  6442. ".signature.p7s",
  6443. "ThirdPartyNotices.txt",
  6444. "dotnet_library_license.txt",
  6445. "lib/MonoAndroid10/_._",
  6446. "lib/MonoTouch10/_._",
  6447. "lib/net45/_._",
  6448. "lib/net463/System.Linq.dll",
  6449. "lib/netcore50/System.Linq.dll",
  6450. "lib/netstandard1.6/System.Linq.dll",
  6451. "lib/portable-net45+win8+wp8+wpa81/_._",
  6452. "lib/win8/_._",
  6453. "lib/wp80/_._",
  6454. "lib/wpa81/_._",
  6455. "lib/xamarinios10/_._",
  6456. "lib/xamarinmac20/_._",
  6457. "lib/xamarintvos10/_._",
  6458. "lib/xamarinwatchos10/_._",
  6459. "ref/MonoAndroid10/_._",
  6460. "ref/MonoTouch10/_._",
  6461. "ref/net45/_._",
  6462. "ref/net463/System.Linq.dll",
  6463. "ref/netcore50/System.Linq.dll",
  6464. "ref/netcore50/System.Linq.xml",
  6465. "ref/netcore50/de/System.Linq.xml",
  6466. "ref/netcore50/es/System.Linq.xml",
  6467. "ref/netcore50/fr/System.Linq.xml",
  6468. "ref/netcore50/it/System.Linq.xml",
  6469. "ref/netcore50/ja/System.Linq.xml",
  6470. "ref/netcore50/ko/System.Linq.xml",
  6471. "ref/netcore50/ru/System.Linq.xml",
  6472. "ref/netcore50/zh-hans/System.Linq.xml",
  6473. "ref/netcore50/zh-hant/System.Linq.xml",
  6474. "ref/netstandard1.0/System.Linq.dll",
  6475. "ref/netstandard1.0/System.Linq.xml",
  6476. "ref/netstandard1.0/de/System.Linq.xml",
  6477. "ref/netstandard1.0/es/System.Linq.xml",
  6478. "ref/netstandard1.0/fr/System.Linq.xml",
  6479. "ref/netstandard1.0/it/System.Linq.xml",
  6480. "ref/netstandard1.0/ja/System.Linq.xml",
  6481. "ref/netstandard1.0/ko/System.Linq.xml",
  6482. "ref/netstandard1.0/ru/System.Linq.xml",
  6483. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6484. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6485. "ref/netstandard1.6/System.Linq.dll",
  6486. "ref/netstandard1.6/System.Linq.xml",
  6487. "ref/netstandard1.6/de/System.Linq.xml",
  6488. "ref/netstandard1.6/es/System.Linq.xml",
  6489. "ref/netstandard1.6/fr/System.Linq.xml",
  6490. "ref/netstandard1.6/it/System.Linq.xml",
  6491. "ref/netstandard1.6/ja/System.Linq.xml",
  6492. "ref/netstandard1.6/ko/System.Linq.xml",
  6493. "ref/netstandard1.6/ru/System.Linq.xml",
  6494. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6495. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6496. "ref/portable-net45+win8+wp8+wpa81/_._",
  6497. "ref/win8/_._",
  6498. "ref/wp80/_._",
  6499. "ref/wpa81/_._",
  6500. "ref/xamarinios10/_._",
  6501. "ref/xamarinmac20/_._",
  6502. "ref/xamarintvos10/_._",
  6503. "ref/xamarinwatchos10/_._",
  6504. "system.linq.4.3.0.nupkg.sha512",
  6505. "system.linq.nuspec"
  6506. ]
  6507. },
  6508. "System.Linq.Expressions/4.3.0": {
  6509. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6510. "type": "package",
  6511. "path": "system.linq.expressions/4.3.0",
  6512. "files": [
  6513. ".nupkg.metadata",
  6514. ".signature.p7s",
  6515. "ThirdPartyNotices.txt",
  6516. "dotnet_library_license.txt",
  6517. "lib/MonoAndroid10/_._",
  6518. "lib/MonoTouch10/_._",
  6519. "lib/net45/_._",
  6520. "lib/net463/System.Linq.Expressions.dll",
  6521. "lib/netcore50/System.Linq.Expressions.dll",
  6522. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6523. "lib/portable-net45+win8+wp8+wpa81/_._",
  6524. "lib/win8/_._",
  6525. "lib/wp80/_._",
  6526. "lib/wpa81/_._",
  6527. "lib/xamarinios10/_._",
  6528. "lib/xamarinmac20/_._",
  6529. "lib/xamarintvos10/_._",
  6530. "lib/xamarinwatchos10/_._",
  6531. "ref/MonoAndroid10/_._",
  6532. "ref/MonoTouch10/_._",
  6533. "ref/net45/_._",
  6534. "ref/net463/System.Linq.Expressions.dll",
  6535. "ref/netcore50/System.Linq.Expressions.dll",
  6536. "ref/netcore50/System.Linq.Expressions.xml",
  6537. "ref/netcore50/de/System.Linq.Expressions.xml",
  6538. "ref/netcore50/es/System.Linq.Expressions.xml",
  6539. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6540. "ref/netcore50/it/System.Linq.Expressions.xml",
  6541. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6542. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6543. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6544. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6545. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6546. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6547. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6548. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6549. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6550. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6551. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6552. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6553. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6554. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6555. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6556. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6557. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6558. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6559. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6560. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6561. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6562. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6563. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6564. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6565. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6566. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6567. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6568. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6569. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6570. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6571. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6572. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6573. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6574. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6575. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6576. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6577. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6578. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6579. "ref/portable-net45+win8+wp8+wpa81/_._",
  6580. "ref/win8/_._",
  6581. "ref/wp80/_._",
  6582. "ref/wpa81/_._",
  6583. "ref/xamarinios10/_._",
  6584. "ref/xamarinmac20/_._",
  6585. "ref/xamarintvos10/_._",
  6586. "ref/xamarinwatchos10/_._",
  6587. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6588. "system.linq.expressions.4.3.0.nupkg.sha512",
  6589. "system.linq.expressions.nuspec"
  6590. ]
  6591. },
  6592. "System.Memory/4.5.5": {
  6593. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6594. "type": "package",
  6595. "path": "system.memory/4.5.5",
  6596. "files": [
  6597. ".nupkg.metadata",
  6598. ".signature.p7s",
  6599. "LICENSE.TXT",
  6600. "THIRD-PARTY-NOTICES.TXT",
  6601. "lib/net461/System.Memory.dll",
  6602. "lib/net461/System.Memory.xml",
  6603. "lib/netcoreapp2.1/_._",
  6604. "lib/netstandard1.1/System.Memory.dll",
  6605. "lib/netstandard1.1/System.Memory.xml",
  6606. "lib/netstandard2.0/System.Memory.dll",
  6607. "lib/netstandard2.0/System.Memory.xml",
  6608. "ref/netcoreapp2.1/_._",
  6609. "system.memory.4.5.5.nupkg.sha512",
  6610. "system.memory.nuspec",
  6611. "useSharedDesignerContext.txt",
  6612. "version.txt"
  6613. ]
  6614. },
  6615. "System.Net.Http/4.3.2": {
  6616. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6617. "type": "package",
  6618. "path": "system.net.http/4.3.2",
  6619. "files": [
  6620. ".nupkg.metadata",
  6621. ".signature.p7s",
  6622. "ThirdPartyNotices.txt",
  6623. "dotnet_library_license.txt",
  6624. "lib/Xamarinmac20/_._",
  6625. "lib/monoandroid10/_._",
  6626. "lib/monotouch10/_._",
  6627. "lib/net45/_._",
  6628. "lib/net46/System.Net.Http.dll",
  6629. "lib/portable-net45+win8+wpa81/_._",
  6630. "lib/win8/_._",
  6631. "lib/wpa81/_._",
  6632. "lib/xamarinios10/_._",
  6633. "lib/xamarintvos10/_._",
  6634. "lib/xamarinwatchos10/_._",
  6635. "ref/Xamarinmac20/_._",
  6636. "ref/monoandroid10/_._",
  6637. "ref/monotouch10/_._",
  6638. "ref/net45/_._",
  6639. "ref/net46/System.Net.Http.dll",
  6640. "ref/netcore50/System.Net.Http.dll",
  6641. "ref/netstandard1.1/System.Net.Http.dll",
  6642. "ref/netstandard1.3/System.Net.Http.dll",
  6643. "ref/portable-net45+win8+wpa81/_._",
  6644. "ref/win8/_._",
  6645. "ref/wpa81/_._",
  6646. "ref/xamarinios10/_._",
  6647. "ref/xamarintvos10/_._",
  6648. "ref/xamarinwatchos10/_._",
  6649. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6650. "runtimes/win/lib/net46/System.Net.Http.dll",
  6651. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6652. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6653. "system.net.http.4.3.2.nupkg.sha512",
  6654. "system.net.http.nuspec"
  6655. ]
  6656. },
  6657. "System.Net.NameResolution/4.3.0": {
  6658. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6659. "type": "package",
  6660. "path": "system.net.nameresolution/4.3.0",
  6661. "files": [
  6662. ".nupkg.metadata",
  6663. ".signature.p7s",
  6664. "ThirdPartyNotices.txt",
  6665. "dotnet_library_license.txt",
  6666. "lib/MonoAndroid10/_._",
  6667. "lib/MonoTouch10/_._",
  6668. "lib/net46/System.Net.NameResolution.dll",
  6669. "lib/xamarinios10/_._",
  6670. "lib/xamarinmac20/_._",
  6671. "lib/xamarintvos10/_._",
  6672. "lib/xamarinwatchos10/_._",
  6673. "ref/MonoAndroid10/_._",
  6674. "ref/MonoTouch10/_._",
  6675. "ref/net46/System.Net.NameResolution.dll",
  6676. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6677. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6678. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6679. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6680. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6681. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6682. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6683. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6684. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6685. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6686. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6687. "ref/xamarinios10/_._",
  6688. "ref/xamarinmac20/_._",
  6689. "ref/xamarintvos10/_._",
  6690. "ref/xamarinwatchos10/_._",
  6691. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6692. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6693. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6694. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6695. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6696. "system.net.nameresolution.nuspec"
  6697. ]
  6698. },
  6699. "System.Net.Primitives/4.3.0": {
  6700. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6701. "type": "package",
  6702. "path": "system.net.primitives/4.3.0",
  6703. "files": [
  6704. ".nupkg.metadata",
  6705. ".signature.p7s",
  6706. "ThirdPartyNotices.txt",
  6707. "dotnet_library_license.txt",
  6708. "lib/MonoAndroid10/_._",
  6709. "lib/MonoTouch10/_._",
  6710. "lib/net45/_._",
  6711. "lib/portable-net45+win8+wp8+wpa81/_._",
  6712. "lib/win8/_._",
  6713. "lib/wp80/_._",
  6714. "lib/wpa81/_._",
  6715. "lib/xamarinios10/_._",
  6716. "lib/xamarinmac20/_._",
  6717. "lib/xamarintvos10/_._",
  6718. "lib/xamarinwatchos10/_._",
  6719. "ref/MonoAndroid10/_._",
  6720. "ref/MonoTouch10/_._",
  6721. "ref/net45/_._",
  6722. "ref/netcore50/System.Net.Primitives.dll",
  6723. "ref/netcore50/System.Net.Primitives.xml",
  6724. "ref/netcore50/de/System.Net.Primitives.xml",
  6725. "ref/netcore50/es/System.Net.Primitives.xml",
  6726. "ref/netcore50/fr/System.Net.Primitives.xml",
  6727. "ref/netcore50/it/System.Net.Primitives.xml",
  6728. "ref/netcore50/ja/System.Net.Primitives.xml",
  6729. "ref/netcore50/ko/System.Net.Primitives.xml",
  6730. "ref/netcore50/ru/System.Net.Primitives.xml",
  6731. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6732. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6733. "ref/netstandard1.0/System.Net.Primitives.dll",
  6734. "ref/netstandard1.0/System.Net.Primitives.xml",
  6735. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6736. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6737. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6738. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6739. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6740. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6741. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6742. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6743. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6744. "ref/netstandard1.1/System.Net.Primitives.dll",
  6745. "ref/netstandard1.1/System.Net.Primitives.xml",
  6746. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6747. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6748. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6749. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6750. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6751. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6752. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6753. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6754. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6755. "ref/netstandard1.3/System.Net.Primitives.dll",
  6756. "ref/netstandard1.3/System.Net.Primitives.xml",
  6757. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6758. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6759. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6760. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6761. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6762. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6763. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6764. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6765. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6766. "ref/portable-net45+win8+wp8+wpa81/_._",
  6767. "ref/win8/_._",
  6768. "ref/wp80/_._",
  6769. "ref/wpa81/_._",
  6770. "ref/xamarinios10/_._",
  6771. "ref/xamarinmac20/_._",
  6772. "ref/xamarintvos10/_._",
  6773. "ref/xamarinwatchos10/_._",
  6774. "system.net.primitives.4.3.0.nupkg.sha512",
  6775. "system.net.primitives.nuspec"
  6776. ]
  6777. },
  6778. "System.Net.Security/4.3.0": {
  6779. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6780. "type": "package",
  6781. "path": "system.net.security/4.3.0",
  6782. "files": [
  6783. ".nupkg.metadata",
  6784. ".signature.p7s",
  6785. "ThirdPartyNotices.txt",
  6786. "dotnet_library_license.txt",
  6787. "lib/MonoAndroid10/_._",
  6788. "lib/MonoTouch10/_._",
  6789. "lib/net46/System.Net.Security.dll",
  6790. "lib/xamarinios10/_._",
  6791. "lib/xamarinmac20/_._",
  6792. "lib/xamarintvos10/_._",
  6793. "lib/xamarinwatchos10/_._",
  6794. "ref/MonoAndroid10/_._",
  6795. "ref/MonoTouch10/_._",
  6796. "ref/net46/System.Net.Security.dll",
  6797. "ref/netstandard1.3/System.Net.Security.dll",
  6798. "ref/netstandard1.3/System.Net.Security.xml",
  6799. "ref/netstandard1.3/de/System.Net.Security.xml",
  6800. "ref/netstandard1.3/es/System.Net.Security.xml",
  6801. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6802. "ref/netstandard1.3/it/System.Net.Security.xml",
  6803. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6804. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6805. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6806. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6807. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6808. "ref/xamarinios10/_._",
  6809. "ref/xamarinmac20/_._",
  6810. "ref/xamarintvos10/_._",
  6811. "ref/xamarinwatchos10/_._",
  6812. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6813. "runtimes/win/lib/net46/System.Net.Security.dll",
  6814. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6815. "runtimes/win7/lib/netcore50/_._",
  6816. "system.net.security.4.3.0.nupkg.sha512",
  6817. "system.net.security.nuspec"
  6818. ]
  6819. },
  6820. "System.Net.Sockets/4.3.0": {
  6821. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6822. "type": "package",
  6823. "path": "system.net.sockets/4.3.0",
  6824. "files": [
  6825. ".nupkg.metadata",
  6826. ".signature.p7s",
  6827. "ThirdPartyNotices.txt",
  6828. "dotnet_library_license.txt",
  6829. "lib/MonoAndroid10/_._",
  6830. "lib/MonoTouch10/_._",
  6831. "lib/net46/System.Net.Sockets.dll",
  6832. "lib/xamarinios10/_._",
  6833. "lib/xamarinmac20/_._",
  6834. "lib/xamarintvos10/_._",
  6835. "lib/xamarinwatchos10/_._",
  6836. "ref/MonoAndroid10/_._",
  6837. "ref/MonoTouch10/_._",
  6838. "ref/net46/System.Net.Sockets.dll",
  6839. "ref/netstandard1.3/System.Net.Sockets.dll",
  6840. "ref/netstandard1.3/System.Net.Sockets.xml",
  6841. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6842. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6843. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6844. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6845. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6846. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6847. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6848. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6849. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6850. "ref/xamarinios10/_._",
  6851. "ref/xamarinmac20/_._",
  6852. "ref/xamarintvos10/_._",
  6853. "ref/xamarinwatchos10/_._",
  6854. "system.net.sockets.4.3.0.nupkg.sha512",
  6855. "system.net.sockets.nuspec"
  6856. ]
  6857. },
  6858. "System.ObjectModel/4.3.0": {
  6859. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6860. "type": "package",
  6861. "path": "system.objectmodel/4.3.0",
  6862. "files": [
  6863. ".nupkg.metadata",
  6864. ".signature.p7s",
  6865. "ThirdPartyNotices.txt",
  6866. "dotnet_library_license.txt",
  6867. "lib/MonoAndroid10/_._",
  6868. "lib/MonoTouch10/_._",
  6869. "lib/net45/_._",
  6870. "lib/netcore50/System.ObjectModel.dll",
  6871. "lib/netstandard1.3/System.ObjectModel.dll",
  6872. "lib/portable-net45+win8+wp8+wpa81/_._",
  6873. "lib/win8/_._",
  6874. "lib/wp80/_._",
  6875. "lib/wpa81/_._",
  6876. "lib/xamarinios10/_._",
  6877. "lib/xamarinmac20/_._",
  6878. "lib/xamarintvos10/_._",
  6879. "lib/xamarinwatchos10/_._",
  6880. "ref/MonoAndroid10/_._",
  6881. "ref/MonoTouch10/_._",
  6882. "ref/net45/_._",
  6883. "ref/netcore50/System.ObjectModel.dll",
  6884. "ref/netcore50/System.ObjectModel.xml",
  6885. "ref/netcore50/de/System.ObjectModel.xml",
  6886. "ref/netcore50/es/System.ObjectModel.xml",
  6887. "ref/netcore50/fr/System.ObjectModel.xml",
  6888. "ref/netcore50/it/System.ObjectModel.xml",
  6889. "ref/netcore50/ja/System.ObjectModel.xml",
  6890. "ref/netcore50/ko/System.ObjectModel.xml",
  6891. "ref/netcore50/ru/System.ObjectModel.xml",
  6892. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6893. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6894. "ref/netstandard1.0/System.ObjectModel.dll",
  6895. "ref/netstandard1.0/System.ObjectModel.xml",
  6896. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6897. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6898. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6899. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6900. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6901. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6902. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6903. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6904. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6905. "ref/netstandard1.3/System.ObjectModel.dll",
  6906. "ref/netstandard1.3/System.ObjectModel.xml",
  6907. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6908. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6909. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6910. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6911. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6912. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6913. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6914. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6915. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6916. "ref/portable-net45+win8+wp8+wpa81/_._",
  6917. "ref/win8/_._",
  6918. "ref/wp80/_._",
  6919. "ref/wpa81/_._",
  6920. "ref/xamarinios10/_._",
  6921. "ref/xamarinmac20/_._",
  6922. "ref/xamarintvos10/_._",
  6923. "ref/xamarinwatchos10/_._",
  6924. "system.objectmodel.4.3.0.nupkg.sha512",
  6925. "system.objectmodel.nuspec"
  6926. ]
  6927. },
  6928. "System.Reactive/4.4.1": {
  6929. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6930. "type": "package",
  6931. "path": "system.reactive/4.4.1",
  6932. "files": [
  6933. ".nupkg.metadata",
  6934. ".signature.p7s",
  6935. "build/netcoreapp3.0/System.Reactive.dll",
  6936. "build/netcoreapp3.0/System.Reactive.targets",
  6937. "build/netcoreapp3.0/System.Reactive.xml",
  6938. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6939. "lib/net46/System.Reactive.dll",
  6940. "lib/net46/System.Reactive.xml",
  6941. "lib/netcoreapp3.0/_._",
  6942. "lib/netstandard2.0/System.Reactive.dll",
  6943. "lib/netstandard2.0/System.Reactive.xml",
  6944. "lib/uap10.0.16299/System.Reactive.dll",
  6945. "lib/uap10.0.16299/System.Reactive.pri",
  6946. "lib/uap10.0.16299/System.Reactive.xml",
  6947. "lib/uap10.0/System.Reactive.dll",
  6948. "lib/uap10.0/System.Reactive.pri",
  6949. "lib/uap10.0/System.Reactive.xml",
  6950. "system.reactive.4.4.1.nupkg.sha512",
  6951. "system.reactive.nuspec"
  6952. ]
  6953. },
  6954. "System.Reflection/4.3.0": {
  6955. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6956. "type": "package",
  6957. "path": "system.reflection/4.3.0",
  6958. "files": [
  6959. ".nupkg.metadata",
  6960. ".signature.p7s",
  6961. "ThirdPartyNotices.txt",
  6962. "dotnet_library_license.txt",
  6963. "lib/MonoAndroid10/_._",
  6964. "lib/MonoTouch10/_._",
  6965. "lib/net45/_._",
  6966. "lib/net462/System.Reflection.dll",
  6967. "lib/portable-net45+win8+wp8+wpa81/_._",
  6968. "lib/win8/_._",
  6969. "lib/wp80/_._",
  6970. "lib/wpa81/_._",
  6971. "lib/xamarinios10/_._",
  6972. "lib/xamarinmac20/_._",
  6973. "lib/xamarintvos10/_._",
  6974. "lib/xamarinwatchos10/_._",
  6975. "ref/MonoAndroid10/_._",
  6976. "ref/MonoTouch10/_._",
  6977. "ref/net45/_._",
  6978. "ref/net462/System.Reflection.dll",
  6979. "ref/netcore50/System.Reflection.dll",
  6980. "ref/netcore50/System.Reflection.xml",
  6981. "ref/netcore50/de/System.Reflection.xml",
  6982. "ref/netcore50/es/System.Reflection.xml",
  6983. "ref/netcore50/fr/System.Reflection.xml",
  6984. "ref/netcore50/it/System.Reflection.xml",
  6985. "ref/netcore50/ja/System.Reflection.xml",
  6986. "ref/netcore50/ko/System.Reflection.xml",
  6987. "ref/netcore50/ru/System.Reflection.xml",
  6988. "ref/netcore50/zh-hans/System.Reflection.xml",
  6989. "ref/netcore50/zh-hant/System.Reflection.xml",
  6990. "ref/netstandard1.0/System.Reflection.dll",
  6991. "ref/netstandard1.0/System.Reflection.xml",
  6992. "ref/netstandard1.0/de/System.Reflection.xml",
  6993. "ref/netstandard1.0/es/System.Reflection.xml",
  6994. "ref/netstandard1.0/fr/System.Reflection.xml",
  6995. "ref/netstandard1.0/it/System.Reflection.xml",
  6996. "ref/netstandard1.0/ja/System.Reflection.xml",
  6997. "ref/netstandard1.0/ko/System.Reflection.xml",
  6998. "ref/netstandard1.0/ru/System.Reflection.xml",
  6999. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7000. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7001. "ref/netstandard1.3/System.Reflection.dll",
  7002. "ref/netstandard1.3/System.Reflection.xml",
  7003. "ref/netstandard1.3/de/System.Reflection.xml",
  7004. "ref/netstandard1.3/es/System.Reflection.xml",
  7005. "ref/netstandard1.3/fr/System.Reflection.xml",
  7006. "ref/netstandard1.3/it/System.Reflection.xml",
  7007. "ref/netstandard1.3/ja/System.Reflection.xml",
  7008. "ref/netstandard1.3/ko/System.Reflection.xml",
  7009. "ref/netstandard1.3/ru/System.Reflection.xml",
  7010. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7011. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7012. "ref/netstandard1.5/System.Reflection.dll",
  7013. "ref/netstandard1.5/System.Reflection.xml",
  7014. "ref/netstandard1.5/de/System.Reflection.xml",
  7015. "ref/netstandard1.5/es/System.Reflection.xml",
  7016. "ref/netstandard1.5/fr/System.Reflection.xml",
  7017. "ref/netstandard1.5/it/System.Reflection.xml",
  7018. "ref/netstandard1.5/ja/System.Reflection.xml",
  7019. "ref/netstandard1.5/ko/System.Reflection.xml",
  7020. "ref/netstandard1.5/ru/System.Reflection.xml",
  7021. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7022. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7023. "ref/portable-net45+win8+wp8+wpa81/_._",
  7024. "ref/win8/_._",
  7025. "ref/wp80/_._",
  7026. "ref/wpa81/_._",
  7027. "ref/xamarinios10/_._",
  7028. "ref/xamarinmac20/_._",
  7029. "ref/xamarintvos10/_._",
  7030. "ref/xamarinwatchos10/_._",
  7031. "system.reflection.4.3.0.nupkg.sha512",
  7032. "system.reflection.nuspec"
  7033. ]
  7034. },
  7035. "System.Reflection.Emit/4.3.0": {
  7036. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7037. "type": "package",
  7038. "path": "system.reflection.emit/4.3.0",
  7039. "files": [
  7040. ".nupkg.metadata",
  7041. ".signature.p7s",
  7042. "ThirdPartyNotices.txt",
  7043. "dotnet_library_license.txt",
  7044. "lib/MonoAndroid10/_._",
  7045. "lib/monotouch10/_._",
  7046. "lib/net45/_._",
  7047. "lib/netcore50/System.Reflection.Emit.dll",
  7048. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7049. "lib/xamarinios10/_._",
  7050. "lib/xamarinmac20/_._",
  7051. "lib/xamarintvos10/_._",
  7052. "lib/xamarinwatchos10/_._",
  7053. "ref/MonoAndroid10/_._",
  7054. "ref/net45/_._",
  7055. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7056. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7057. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7058. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7059. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7060. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7061. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7062. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7063. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7064. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7065. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7066. "ref/xamarinmac20/_._",
  7067. "system.reflection.emit.4.3.0.nupkg.sha512",
  7068. "system.reflection.emit.nuspec"
  7069. ]
  7070. },
  7071. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7072. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7073. "type": "package",
  7074. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7075. "files": [
  7076. ".nupkg.metadata",
  7077. ".signature.p7s",
  7078. "ThirdPartyNotices.txt",
  7079. "dotnet_library_license.txt",
  7080. "lib/MonoAndroid10/_._",
  7081. "lib/MonoTouch10/_._",
  7082. "lib/net45/_._",
  7083. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7084. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7085. "lib/portable-net45+wp8/_._",
  7086. "lib/wp80/_._",
  7087. "lib/xamarinios10/_._",
  7088. "lib/xamarinmac20/_._",
  7089. "lib/xamarintvos10/_._",
  7090. "lib/xamarinwatchos10/_._",
  7091. "ref/MonoAndroid10/_._",
  7092. "ref/MonoTouch10/_._",
  7093. "ref/net45/_._",
  7094. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7095. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7096. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7097. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7098. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7099. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7100. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7101. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7102. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7103. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7104. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7105. "ref/portable-net45+wp8/_._",
  7106. "ref/wp80/_._",
  7107. "ref/xamarinios10/_._",
  7108. "ref/xamarinmac20/_._",
  7109. "ref/xamarintvos10/_._",
  7110. "ref/xamarinwatchos10/_._",
  7111. "runtimes/aot/lib/netcore50/_._",
  7112. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7113. "system.reflection.emit.ilgeneration.nuspec"
  7114. ]
  7115. },
  7116. "System.Reflection.Emit.Lightweight/4.3.0": {
  7117. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7118. "type": "package",
  7119. "path": "system.reflection.emit.lightweight/4.3.0",
  7120. "files": [
  7121. ".nupkg.metadata",
  7122. ".signature.p7s",
  7123. "ThirdPartyNotices.txt",
  7124. "dotnet_library_license.txt",
  7125. "lib/MonoAndroid10/_._",
  7126. "lib/MonoTouch10/_._",
  7127. "lib/net45/_._",
  7128. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7129. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7130. "lib/portable-net45+wp8/_._",
  7131. "lib/wp80/_._",
  7132. "lib/xamarinios10/_._",
  7133. "lib/xamarinmac20/_._",
  7134. "lib/xamarintvos10/_._",
  7135. "lib/xamarinwatchos10/_._",
  7136. "ref/MonoAndroid10/_._",
  7137. "ref/MonoTouch10/_._",
  7138. "ref/net45/_._",
  7139. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7140. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7141. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7142. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7143. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7144. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7145. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7146. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7147. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7148. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7149. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7150. "ref/portable-net45+wp8/_._",
  7151. "ref/wp80/_._",
  7152. "ref/xamarinios10/_._",
  7153. "ref/xamarinmac20/_._",
  7154. "ref/xamarintvos10/_._",
  7155. "ref/xamarinwatchos10/_._",
  7156. "runtimes/aot/lib/netcore50/_._",
  7157. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7158. "system.reflection.emit.lightweight.nuspec"
  7159. ]
  7160. },
  7161. "System.Reflection.Extensions/4.3.0": {
  7162. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7163. "type": "package",
  7164. "path": "system.reflection.extensions/4.3.0",
  7165. "files": [
  7166. ".nupkg.metadata",
  7167. ".signature.p7s",
  7168. "ThirdPartyNotices.txt",
  7169. "dotnet_library_license.txt",
  7170. "lib/MonoAndroid10/_._",
  7171. "lib/MonoTouch10/_._",
  7172. "lib/net45/_._",
  7173. "lib/portable-net45+win8+wp8+wpa81/_._",
  7174. "lib/win8/_._",
  7175. "lib/wp80/_._",
  7176. "lib/wpa81/_._",
  7177. "lib/xamarinios10/_._",
  7178. "lib/xamarinmac20/_._",
  7179. "lib/xamarintvos10/_._",
  7180. "lib/xamarinwatchos10/_._",
  7181. "ref/MonoAndroid10/_._",
  7182. "ref/MonoTouch10/_._",
  7183. "ref/net45/_._",
  7184. "ref/netcore50/System.Reflection.Extensions.dll",
  7185. "ref/netcore50/System.Reflection.Extensions.xml",
  7186. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7187. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7188. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7189. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7190. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7191. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7192. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7193. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7194. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7195. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7196. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7197. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7198. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7199. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7200. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7201. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7202. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7203. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7204. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7205. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7206. "ref/portable-net45+win8+wp8+wpa81/_._",
  7207. "ref/win8/_._",
  7208. "ref/wp80/_._",
  7209. "ref/wpa81/_._",
  7210. "ref/xamarinios10/_._",
  7211. "ref/xamarinmac20/_._",
  7212. "ref/xamarintvos10/_._",
  7213. "ref/xamarinwatchos10/_._",
  7214. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7215. "system.reflection.extensions.nuspec"
  7216. ]
  7217. },
  7218. "System.Reflection.Primitives/4.3.0": {
  7219. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7220. "type": "package",
  7221. "path": "system.reflection.primitives/4.3.0",
  7222. "files": [
  7223. ".nupkg.metadata",
  7224. ".signature.p7s",
  7225. "ThirdPartyNotices.txt",
  7226. "dotnet_library_license.txt",
  7227. "lib/MonoAndroid10/_._",
  7228. "lib/MonoTouch10/_._",
  7229. "lib/net45/_._",
  7230. "lib/portable-net45+win8+wp8+wpa81/_._",
  7231. "lib/win8/_._",
  7232. "lib/wp80/_._",
  7233. "lib/wpa81/_._",
  7234. "lib/xamarinios10/_._",
  7235. "lib/xamarinmac20/_._",
  7236. "lib/xamarintvos10/_._",
  7237. "lib/xamarinwatchos10/_._",
  7238. "ref/MonoAndroid10/_._",
  7239. "ref/MonoTouch10/_._",
  7240. "ref/net45/_._",
  7241. "ref/netcore50/System.Reflection.Primitives.dll",
  7242. "ref/netcore50/System.Reflection.Primitives.xml",
  7243. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7244. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7245. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7246. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7247. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7248. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7249. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7250. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7251. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7252. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7253. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7254. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7255. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7256. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7257. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7258. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7259. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7260. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7261. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7262. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7263. "ref/portable-net45+win8+wp8+wpa81/_._",
  7264. "ref/win8/_._",
  7265. "ref/wp80/_._",
  7266. "ref/wpa81/_._",
  7267. "ref/xamarinios10/_._",
  7268. "ref/xamarinmac20/_._",
  7269. "ref/xamarintvos10/_._",
  7270. "ref/xamarinwatchos10/_._",
  7271. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7272. "system.reflection.primitives.nuspec"
  7273. ]
  7274. },
  7275. "System.Reflection.TypeExtensions/4.3.0": {
  7276. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7277. "type": "package",
  7278. "path": "system.reflection.typeextensions/4.3.0",
  7279. "files": [
  7280. ".nupkg.metadata",
  7281. ".signature.p7s",
  7282. "ThirdPartyNotices.txt",
  7283. "dotnet_library_license.txt",
  7284. "lib/MonoAndroid10/_._",
  7285. "lib/MonoTouch10/_._",
  7286. "lib/net46/System.Reflection.TypeExtensions.dll",
  7287. "lib/net462/System.Reflection.TypeExtensions.dll",
  7288. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7289. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7290. "lib/xamarinios10/_._",
  7291. "lib/xamarinmac20/_._",
  7292. "lib/xamarintvos10/_._",
  7293. "lib/xamarinwatchos10/_._",
  7294. "ref/MonoAndroid10/_._",
  7295. "ref/MonoTouch10/_._",
  7296. "ref/net46/System.Reflection.TypeExtensions.dll",
  7297. "ref/net462/System.Reflection.TypeExtensions.dll",
  7298. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7299. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7300. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7301. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7302. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7303. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7304. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7305. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7306. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7307. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7308. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7309. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7310. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7311. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7312. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7313. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7314. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7315. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7316. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7317. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7318. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7319. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7320. "ref/xamarinios10/_._",
  7321. "ref/xamarinmac20/_._",
  7322. "ref/xamarintvos10/_._",
  7323. "ref/xamarinwatchos10/_._",
  7324. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7325. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7326. "system.reflection.typeextensions.nuspec"
  7327. ]
  7328. },
  7329. "System.Resources.ResourceManager/4.3.0": {
  7330. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7331. "type": "package",
  7332. "path": "system.resources.resourcemanager/4.3.0",
  7333. "files": [
  7334. ".nupkg.metadata",
  7335. ".signature.p7s",
  7336. "ThirdPartyNotices.txt",
  7337. "dotnet_library_license.txt",
  7338. "lib/MonoAndroid10/_._",
  7339. "lib/MonoTouch10/_._",
  7340. "lib/net45/_._",
  7341. "lib/portable-net45+win8+wp8+wpa81/_._",
  7342. "lib/win8/_._",
  7343. "lib/wp80/_._",
  7344. "lib/wpa81/_._",
  7345. "lib/xamarinios10/_._",
  7346. "lib/xamarinmac20/_._",
  7347. "lib/xamarintvos10/_._",
  7348. "lib/xamarinwatchos10/_._",
  7349. "ref/MonoAndroid10/_._",
  7350. "ref/MonoTouch10/_._",
  7351. "ref/net45/_._",
  7352. "ref/netcore50/System.Resources.ResourceManager.dll",
  7353. "ref/netcore50/System.Resources.ResourceManager.xml",
  7354. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7355. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7356. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7357. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7358. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7359. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7360. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7361. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7362. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7363. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7364. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7365. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7366. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7367. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7368. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7369. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7370. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7371. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7372. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7373. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7374. "ref/portable-net45+win8+wp8+wpa81/_._",
  7375. "ref/win8/_._",
  7376. "ref/wp80/_._",
  7377. "ref/wpa81/_._",
  7378. "ref/xamarinios10/_._",
  7379. "ref/xamarinmac20/_._",
  7380. "ref/xamarintvos10/_._",
  7381. "ref/xamarinwatchos10/_._",
  7382. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7383. "system.resources.resourcemanager.nuspec"
  7384. ]
  7385. },
  7386. "System.Runtime/4.3.0": {
  7387. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7388. "type": "package",
  7389. "path": "system.runtime/4.3.0",
  7390. "files": [
  7391. ".nupkg.metadata",
  7392. ".signature.p7s",
  7393. "ThirdPartyNotices.txt",
  7394. "dotnet_library_license.txt",
  7395. "lib/MonoAndroid10/_._",
  7396. "lib/MonoTouch10/_._",
  7397. "lib/net45/_._",
  7398. "lib/net462/System.Runtime.dll",
  7399. "lib/portable-net45+win8+wp80+wpa81/_._",
  7400. "lib/win8/_._",
  7401. "lib/wp80/_._",
  7402. "lib/wpa81/_._",
  7403. "lib/xamarinios10/_._",
  7404. "lib/xamarinmac20/_._",
  7405. "lib/xamarintvos10/_._",
  7406. "lib/xamarinwatchos10/_._",
  7407. "ref/MonoAndroid10/_._",
  7408. "ref/MonoTouch10/_._",
  7409. "ref/net45/_._",
  7410. "ref/net462/System.Runtime.dll",
  7411. "ref/netcore50/System.Runtime.dll",
  7412. "ref/netcore50/System.Runtime.xml",
  7413. "ref/netcore50/de/System.Runtime.xml",
  7414. "ref/netcore50/es/System.Runtime.xml",
  7415. "ref/netcore50/fr/System.Runtime.xml",
  7416. "ref/netcore50/it/System.Runtime.xml",
  7417. "ref/netcore50/ja/System.Runtime.xml",
  7418. "ref/netcore50/ko/System.Runtime.xml",
  7419. "ref/netcore50/ru/System.Runtime.xml",
  7420. "ref/netcore50/zh-hans/System.Runtime.xml",
  7421. "ref/netcore50/zh-hant/System.Runtime.xml",
  7422. "ref/netstandard1.0/System.Runtime.dll",
  7423. "ref/netstandard1.0/System.Runtime.xml",
  7424. "ref/netstandard1.0/de/System.Runtime.xml",
  7425. "ref/netstandard1.0/es/System.Runtime.xml",
  7426. "ref/netstandard1.0/fr/System.Runtime.xml",
  7427. "ref/netstandard1.0/it/System.Runtime.xml",
  7428. "ref/netstandard1.0/ja/System.Runtime.xml",
  7429. "ref/netstandard1.0/ko/System.Runtime.xml",
  7430. "ref/netstandard1.0/ru/System.Runtime.xml",
  7431. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7432. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7433. "ref/netstandard1.2/System.Runtime.dll",
  7434. "ref/netstandard1.2/System.Runtime.xml",
  7435. "ref/netstandard1.2/de/System.Runtime.xml",
  7436. "ref/netstandard1.2/es/System.Runtime.xml",
  7437. "ref/netstandard1.2/fr/System.Runtime.xml",
  7438. "ref/netstandard1.2/it/System.Runtime.xml",
  7439. "ref/netstandard1.2/ja/System.Runtime.xml",
  7440. "ref/netstandard1.2/ko/System.Runtime.xml",
  7441. "ref/netstandard1.2/ru/System.Runtime.xml",
  7442. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7443. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7444. "ref/netstandard1.3/System.Runtime.dll",
  7445. "ref/netstandard1.3/System.Runtime.xml",
  7446. "ref/netstandard1.3/de/System.Runtime.xml",
  7447. "ref/netstandard1.3/es/System.Runtime.xml",
  7448. "ref/netstandard1.3/fr/System.Runtime.xml",
  7449. "ref/netstandard1.3/it/System.Runtime.xml",
  7450. "ref/netstandard1.3/ja/System.Runtime.xml",
  7451. "ref/netstandard1.3/ko/System.Runtime.xml",
  7452. "ref/netstandard1.3/ru/System.Runtime.xml",
  7453. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7454. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7455. "ref/netstandard1.5/System.Runtime.dll",
  7456. "ref/netstandard1.5/System.Runtime.xml",
  7457. "ref/netstandard1.5/de/System.Runtime.xml",
  7458. "ref/netstandard1.5/es/System.Runtime.xml",
  7459. "ref/netstandard1.5/fr/System.Runtime.xml",
  7460. "ref/netstandard1.5/it/System.Runtime.xml",
  7461. "ref/netstandard1.5/ja/System.Runtime.xml",
  7462. "ref/netstandard1.5/ko/System.Runtime.xml",
  7463. "ref/netstandard1.5/ru/System.Runtime.xml",
  7464. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7465. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7466. "ref/portable-net45+win8+wp80+wpa81/_._",
  7467. "ref/win8/_._",
  7468. "ref/wp80/_._",
  7469. "ref/wpa81/_._",
  7470. "ref/xamarinios10/_._",
  7471. "ref/xamarinmac20/_._",
  7472. "ref/xamarintvos10/_._",
  7473. "ref/xamarinwatchos10/_._",
  7474. "system.runtime.4.3.0.nupkg.sha512",
  7475. "system.runtime.nuspec"
  7476. ]
  7477. },
  7478. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7479. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7480. "type": "package",
  7481. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7482. "files": [
  7483. ".nupkg.metadata",
  7484. ".signature.p7s",
  7485. "Icon.png",
  7486. "LICENSE.TXT",
  7487. "THIRD-PARTY-NOTICES.TXT",
  7488. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7489. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7490. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7491. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7492. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7493. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7494. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7495. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7496. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7497. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7498. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7499. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7500. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7501. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7502. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7503. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7504. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7505. "system.runtime.compilerservices.unsafe.nuspec",
  7506. "useSharedDesignerContext.txt",
  7507. "version.txt"
  7508. ]
  7509. },
  7510. "System.Runtime.Extensions/4.3.0": {
  7511. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7512. "type": "package",
  7513. "path": "system.runtime.extensions/4.3.0",
  7514. "files": [
  7515. ".nupkg.metadata",
  7516. ".signature.p7s",
  7517. "ThirdPartyNotices.txt",
  7518. "dotnet_library_license.txt",
  7519. "lib/MonoAndroid10/_._",
  7520. "lib/MonoTouch10/_._",
  7521. "lib/net45/_._",
  7522. "lib/net462/System.Runtime.Extensions.dll",
  7523. "lib/portable-net45+win8+wp8+wpa81/_._",
  7524. "lib/win8/_._",
  7525. "lib/wp80/_._",
  7526. "lib/wpa81/_._",
  7527. "lib/xamarinios10/_._",
  7528. "lib/xamarinmac20/_._",
  7529. "lib/xamarintvos10/_._",
  7530. "lib/xamarinwatchos10/_._",
  7531. "ref/MonoAndroid10/_._",
  7532. "ref/MonoTouch10/_._",
  7533. "ref/net45/_._",
  7534. "ref/net462/System.Runtime.Extensions.dll",
  7535. "ref/netcore50/System.Runtime.Extensions.dll",
  7536. "ref/netcore50/System.Runtime.Extensions.xml",
  7537. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7538. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7539. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7540. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7541. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7542. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7543. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7544. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7545. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7546. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7547. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7548. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7549. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7550. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7551. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7552. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7553. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7554. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7555. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7556. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7557. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7558. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7559. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7560. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7561. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7562. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7563. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7564. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7565. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7566. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7567. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7568. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7569. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7570. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7571. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7572. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7573. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7574. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7575. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7576. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7577. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7578. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7579. "ref/portable-net45+win8+wp8+wpa81/_._",
  7580. "ref/win8/_._",
  7581. "ref/wp80/_._",
  7582. "ref/wpa81/_._",
  7583. "ref/xamarinios10/_._",
  7584. "ref/xamarinmac20/_._",
  7585. "ref/xamarintvos10/_._",
  7586. "ref/xamarinwatchos10/_._",
  7587. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7588. "system.runtime.extensions.nuspec"
  7589. ]
  7590. },
  7591. "System.Runtime.Handles/4.3.0": {
  7592. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7593. "type": "package",
  7594. "path": "system.runtime.handles/4.3.0",
  7595. "files": [
  7596. ".nupkg.metadata",
  7597. ".signature.p7s",
  7598. "ThirdPartyNotices.txt",
  7599. "dotnet_library_license.txt",
  7600. "lib/MonoAndroid10/_._",
  7601. "lib/MonoTouch10/_._",
  7602. "lib/net46/_._",
  7603. "lib/xamarinios10/_._",
  7604. "lib/xamarinmac20/_._",
  7605. "lib/xamarintvos10/_._",
  7606. "lib/xamarinwatchos10/_._",
  7607. "ref/MonoAndroid10/_._",
  7608. "ref/MonoTouch10/_._",
  7609. "ref/net46/_._",
  7610. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7611. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7612. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7613. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7614. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7615. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7616. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7617. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7618. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7619. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7620. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7621. "ref/xamarinios10/_._",
  7622. "ref/xamarinmac20/_._",
  7623. "ref/xamarintvos10/_._",
  7624. "ref/xamarinwatchos10/_._",
  7625. "system.runtime.handles.4.3.0.nupkg.sha512",
  7626. "system.runtime.handles.nuspec"
  7627. ]
  7628. },
  7629. "System.Runtime.InteropServices/4.3.0": {
  7630. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7631. "type": "package",
  7632. "path": "system.runtime.interopservices/4.3.0",
  7633. "files": [
  7634. ".nupkg.metadata",
  7635. ".signature.p7s",
  7636. "ThirdPartyNotices.txt",
  7637. "dotnet_library_license.txt",
  7638. "lib/MonoAndroid10/_._",
  7639. "lib/MonoTouch10/_._",
  7640. "lib/net45/_._",
  7641. "lib/net462/System.Runtime.InteropServices.dll",
  7642. "lib/net463/System.Runtime.InteropServices.dll",
  7643. "lib/portable-net45+win8+wpa81/_._",
  7644. "lib/win8/_._",
  7645. "lib/wpa81/_._",
  7646. "lib/xamarinios10/_._",
  7647. "lib/xamarinmac20/_._",
  7648. "lib/xamarintvos10/_._",
  7649. "lib/xamarinwatchos10/_._",
  7650. "ref/MonoAndroid10/_._",
  7651. "ref/MonoTouch10/_._",
  7652. "ref/net45/_._",
  7653. "ref/net462/System.Runtime.InteropServices.dll",
  7654. "ref/net463/System.Runtime.InteropServices.dll",
  7655. "ref/netcore50/System.Runtime.InteropServices.dll",
  7656. "ref/netcore50/System.Runtime.InteropServices.xml",
  7657. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7658. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7659. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7660. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7661. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7662. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7663. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7664. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7665. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7666. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7667. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7668. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7669. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7670. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7671. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7672. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7673. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7674. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7675. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7676. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7677. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7678. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7679. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7680. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7681. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7682. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7683. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7684. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7685. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7686. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7687. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7688. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7689. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7690. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7691. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7692. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7693. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7694. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7695. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7696. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7697. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7698. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7699. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7700. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7701. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7702. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7703. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7704. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7705. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7706. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7707. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7708. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7709. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7710. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7711. "ref/portable-net45+win8+wpa81/_._",
  7712. "ref/win8/_._",
  7713. "ref/wpa81/_._",
  7714. "ref/xamarinios10/_._",
  7715. "ref/xamarinmac20/_._",
  7716. "ref/xamarintvos10/_._",
  7717. "ref/xamarinwatchos10/_._",
  7718. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7719. "system.runtime.interopservices.nuspec"
  7720. ]
  7721. },
  7722. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7723. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7724. "type": "package",
  7725. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7726. "files": [
  7727. ".nupkg.metadata",
  7728. ".signature.p7s",
  7729. "ThirdPartyNotices.txt",
  7730. "dotnet_library_license.txt",
  7731. "lib/MonoAndroid10/_._",
  7732. "lib/MonoTouch10/_._",
  7733. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7734. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7735. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7736. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7737. "lib/xamarinios10/_._",
  7738. "lib/xamarinmac20/_._",
  7739. "lib/xamarintvos10/_._",
  7740. "lib/xamarinwatchos10/_._",
  7741. "ref/MonoAndroid10/_._",
  7742. "ref/MonoTouch10/_._",
  7743. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7744. "ref/xamarinios10/_._",
  7745. "ref/xamarinmac20/_._",
  7746. "ref/xamarintvos10/_._",
  7747. "ref/xamarinwatchos10/_._",
  7748. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7749. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7750. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7751. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7752. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7753. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7754. "system.runtime.interopservices.runtimeinformation.nuspec"
  7755. ]
  7756. },
  7757. "System.Runtime.Numerics/4.3.0": {
  7758. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7759. "type": "package",
  7760. "path": "system.runtime.numerics/4.3.0",
  7761. "files": [
  7762. ".nupkg.metadata",
  7763. ".signature.p7s",
  7764. "ThirdPartyNotices.txt",
  7765. "dotnet_library_license.txt",
  7766. "lib/MonoAndroid10/_._",
  7767. "lib/MonoTouch10/_._",
  7768. "lib/net45/_._",
  7769. "lib/netcore50/System.Runtime.Numerics.dll",
  7770. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7771. "lib/portable-net45+win8+wpa81/_._",
  7772. "lib/win8/_._",
  7773. "lib/wpa81/_._",
  7774. "lib/xamarinios10/_._",
  7775. "lib/xamarinmac20/_._",
  7776. "lib/xamarintvos10/_._",
  7777. "lib/xamarinwatchos10/_._",
  7778. "ref/MonoAndroid10/_._",
  7779. "ref/MonoTouch10/_._",
  7780. "ref/net45/_._",
  7781. "ref/netcore50/System.Runtime.Numerics.dll",
  7782. "ref/netcore50/System.Runtime.Numerics.xml",
  7783. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7784. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7785. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7786. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7787. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7788. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7789. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7790. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7791. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7792. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7793. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7794. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7795. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7796. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7797. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7798. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7799. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7800. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7801. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7802. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7803. "ref/portable-net45+win8+wpa81/_._",
  7804. "ref/win8/_._",
  7805. "ref/wpa81/_._",
  7806. "ref/xamarinios10/_._",
  7807. "ref/xamarinmac20/_._",
  7808. "ref/xamarintvos10/_._",
  7809. "ref/xamarinwatchos10/_._",
  7810. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7811. "system.runtime.numerics.nuspec"
  7812. ]
  7813. },
  7814. "System.Runtime.Serialization.Primitives/4.3.0": {
  7815. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7816. "type": "package",
  7817. "path": "system.runtime.serialization.primitives/4.3.0",
  7818. "files": [
  7819. ".nupkg.metadata",
  7820. ".signature.p7s",
  7821. "ThirdPartyNotices.txt",
  7822. "dotnet_library_license.txt",
  7823. "lib/MonoAndroid10/_._",
  7824. "lib/MonoTouch10/_._",
  7825. "lib/net45/_._",
  7826. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7827. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7828. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7829. "lib/portable-net45+win8+wp8+wpa81/_._",
  7830. "lib/win8/_._",
  7831. "lib/wp80/_._",
  7832. "lib/wpa81/_._",
  7833. "lib/xamarinios10/_._",
  7834. "lib/xamarinmac20/_._",
  7835. "lib/xamarintvos10/_._",
  7836. "lib/xamarinwatchos10/_._",
  7837. "ref/MonoAndroid10/_._",
  7838. "ref/MonoTouch10/_._",
  7839. "ref/net45/_._",
  7840. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7841. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7842. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7843. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7844. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7845. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7846. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7847. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7848. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7849. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7850. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7851. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7852. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7853. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7854. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7855. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7856. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7857. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7858. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7859. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7860. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7861. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7862. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7863. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7864. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7865. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7866. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7867. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7868. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7869. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7870. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7871. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7872. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7873. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7874. "ref/portable-net45+win8+wp8+wpa81/_._",
  7875. "ref/win8/_._",
  7876. "ref/wp80/_._",
  7877. "ref/wpa81/_._",
  7878. "ref/xamarinios10/_._",
  7879. "ref/xamarinmac20/_._",
  7880. "ref/xamarintvos10/_._",
  7881. "ref/xamarinwatchos10/_._",
  7882. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7883. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7884. "system.runtime.serialization.primitives.nuspec"
  7885. ]
  7886. },
  7887. "System.Security.AccessControl/4.7.0": {
  7888. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7889. "type": "package",
  7890. "path": "system.security.accesscontrol/4.7.0",
  7891. "files": [
  7892. ".nupkg.metadata",
  7893. ".signature.p7s",
  7894. "LICENSE.TXT",
  7895. "THIRD-PARTY-NOTICES.TXT",
  7896. "lib/net46/System.Security.AccessControl.dll",
  7897. "lib/net461/System.Security.AccessControl.dll",
  7898. "lib/net461/System.Security.AccessControl.xml",
  7899. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7900. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7901. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7902. "lib/uap10.0.16299/_._",
  7903. "ref/net46/System.Security.AccessControl.dll",
  7904. "ref/net461/System.Security.AccessControl.dll",
  7905. "ref/net461/System.Security.AccessControl.xml",
  7906. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7907. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7908. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7909. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7910. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7911. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7912. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7913. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7914. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7915. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7916. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7917. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7918. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7919. "ref/uap10.0.16299/_._",
  7920. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7921. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7922. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7923. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7924. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7925. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7926. "runtimes/win/lib/uap10.0.16299/_._",
  7927. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7928. "system.security.accesscontrol.nuspec",
  7929. "useSharedDesignerContext.txt",
  7930. "version.txt"
  7931. ]
  7932. },
  7933. "System.Security.Claims/4.3.0": {
  7934. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7935. "type": "package",
  7936. "path": "system.security.claims/4.3.0",
  7937. "files": [
  7938. ".nupkg.metadata",
  7939. ".signature.p7s",
  7940. "ThirdPartyNotices.txt",
  7941. "dotnet_library_license.txt",
  7942. "lib/MonoAndroid10/_._",
  7943. "lib/MonoTouch10/_._",
  7944. "lib/net46/System.Security.Claims.dll",
  7945. "lib/netstandard1.3/System.Security.Claims.dll",
  7946. "lib/xamarinios10/_._",
  7947. "lib/xamarinmac20/_._",
  7948. "lib/xamarintvos10/_._",
  7949. "lib/xamarinwatchos10/_._",
  7950. "ref/MonoAndroid10/_._",
  7951. "ref/MonoTouch10/_._",
  7952. "ref/net46/System.Security.Claims.dll",
  7953. "ref/netstandard1.3/System.Security.Claims.dll",
  7954. "ref/netstandard1.3/System.Security.Claims.xml",
  7955. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7956. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7957. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7958. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7959. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7960. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7961. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7962. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7963. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7964. "ref/xamarinios10/_._",
  7965. "ref/xamarinmac20/_._",
  7966. "ref/xamarintvos10/_._",
  7967. "ref/xamarinwatchos10/_._",
  7968. "system.security.claims.4.3.0.nupkg.sha512",
  7969. "system.security.claims.nuspec"
  7970. ]
  7971. },
  7972. "System.Security.Cryptography.Algorithms/4.3.0": {
  7973. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7974. "type": "package",
  7975. "path": "system.security.cryptography.algorithms/4.3.0",
  7976. "files": [
  7977. ".nupkg.metadata",
  7978. ".signature.p7s",
  7979. "ThirdPartyNotices.txt",
  7980. "dotnet_library_license.txt",
  7981. "lib/MonoAndroid10/_._",
  7982. "lib/MonoTouch10/_._",
  7983. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7984. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7985. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7986. "lib/xamarinios10/_._",
  7987. "lib/xamarinmac20/_._",
  7988. "lib/xamarintvos10/_._",
  7989. "lib/xamarinwatchos10/_._",
  7990. "ref/MonoAndroid10/_._",
  7991. "ref/MonoTouch10/_._",
  7992. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7993. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7994. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7995. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7996. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7997. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7998. "ref/xamarinios10/_._",
  7999. "ref/xamarinmac20/_._",
  8000. "ref/xamarintvos10/_._",
  8001. "ref/xamarinwatchos10/_._",
  8002. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8003. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8004. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8005. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8006. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8007. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8008. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8009. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8010. "system.security.cryptography.algorithms.nuspec"
  8011. ]
  8012. },
  8013. "System.Security.Cryptography.Cng/4.3.0": {
  8014. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8015. "type": "package",
  8016. "path": "system.security.cryptography.cng/4.3.0",
  8017. "files": [
  8018. ".nupkg.metadata",
  8019. ".signature.p7s",
  8020. "ThirdPartyNotices.txt",
  8021. "dotnet_library_license.txt",
  8022. "lib/net46/System.Security.Cryptography.Cng.dll",
  8023. "lib/net461/System.Security.Cryptography.Cng.dll",
  8024. "lib/net463/System.Security.Cryptography.Cng.dll",
  8025. "ref/net46/System.Security.Cryptography.Cng.dll",
  8026. "ref/net461/System.Security.Cryptography.Cng.dll",
  8027. "ref/net463/System.Security.Cryptography.Cng.dll",
  8028. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8029. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8030. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8031. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8032. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8033. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8034. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8035. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8036. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8037. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8038. "system.security.cryptography.cng.nuspec"
  8039. ]
  8040. },
  8041. "System.Security.Cryptography.Csp/4.3.0": {
  8042. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8043. "type": "package",
  8044. "path": "system.security.cryptography.csp/4.3.0",
  8045. "files": [
  8046. ".nupkg.metadata",
  8047. ".signature.p7s",
  8048. "ThirdPartyNotices.txt",
  8049. "dotnet_library_license.txt",
  8050. "lib/MonoAndroid10/_._",
  8051. "lib/MonoTouch10/_._",
  8052. "lib/net46/System.Security.Cryptography.Csp.dll",
  8053. "lib/xamarinios10/_._",
  8054. "lib/xamarinmac20/_._",
  8055. "lib/xamarintvos10/_._",
  8056. "lib/xamarinwatchos10/_._",
  8057. "ref/MonoAndroid10/_._",
  8058. "ref/MonoTouch10/_._",
  8059. "ref/net46/System.Security.Cryptography.Csp.dll",
  8060. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8061. "ref/xamarinios10/_._",
  8062. "ref/xamarinmac20/_._",
  8063. "ref/xamarintvos10/_._",
  8064. "ref/xamarinwatchos10/_._",
  8065. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8066. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8067. "runtimes/win/lib/netcore50/_._",
  8068. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8069. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8070. "system.security.cryptography.csp.nuspec"
  8071. ]
  8072. },
  8073. "System.Security.Cryptography.Encoding/4.3.0": {
  8074. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8075. "type": "package",
  8076. "path": "system.security.cryptography.encoding/4.3.0",
  8077. "files": [
  8078. ".nupkg.metadata",
  8079. ".signature.p7s",
  8080. "ThirdPartyNotices.txt",
  8081. "dotnet_library_license.txt",
  8082. "lib/MonoAndroid10/_._",
  8083. "lib/MonoTouch10/_._",
  8084. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8085. "lib/xamarinios10/_._",
  8086. "lib/xamarinmac20/_._",
  8087. "lib/xamarintvos10/_._",
  8088. "lib/xamarinwatchos10/_._",
  8089. "ref/MonoAndroid10/_._",
  8090. "ref/MonoTouch10/_._",
  8091. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8092. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8093. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8094. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8095. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8096. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8097. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8098. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8099. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8100. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8101. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8102. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8103. "ref/xamarinios10/_._",
  8104. "ref/xamarinmac20/_._",
  8105. "ref/xamarintvos10/_._",
  8106. "ref/xamarinwatchos10/_._",
  8107. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8108. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8109. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8110. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8111. "system.security.cryptography.encoding.nuspec"
  8112. ]
  8113. },
  8114. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8115. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8116. "type": "package",
  8117. "path": "system.security.cryptography.openssl/4.3.0",
  8118. "files": [
  8119. ".nupkg.metadata",
  8120. ".signature.p7s",
  8121. "ThirdPartyNotices.txt",
  8122. "dotnet_library_license.txt",
  8123. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8124. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8125. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8126. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8127. "system.security.cryptography.openssl.nuspec"
  8128. ]
  8129. },
  8130. "System.Security.Cryptography.Primitives/4.3.0": {
  8131. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8132. "type": "package",
  8133. "path": "system.security.cryptography.primitives/4.3.0",
  8134. "files": [
  8135. ".nupkg.metadata",
  8136. ".signature.p7s",
  8137. "ThirdPartyNotices.txt",
  8138. "dotnet_library_license.txt",
  8139. "lib/MonoAndroid10/_._",
  8140. "lib/MonoTouch10/_._",
  8141. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8142. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8143. "lib/xamarinios10/_._",
  8144. "lib/xamarinmac20/_._",
  8145. "lib/xamarintvos10/_._",
  8146. "lib/xamarinwatchos10/_._",
  8147. "ref/MonoAndroid10/_._",
  8148. "ref/MonoTouch10/_._",
  8149. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8150. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8151. "ref/xamarinios10/_._",
  8152. "ref/xamarinmac20/_._",
  8153. "ref/xamarintvos10/_._",
  8154. "ref/xamarinwatchos10/_._",
  8155. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8156. "system.security.cryptography.primitives.nuspec"
  8157. ]
  8158. },
  8159. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8160. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8161. "type": "package",
  8162. "path": "system.security.cryptography.protecteddata/4.5.0",
  8163. "files": [
  8164. ".nupkg.metadata",
  8165. ".signature.p7s",
  8166. "LICENSE.TXT",
  8167. "THIRD-PARTY-NOTICES.TXT",
  8168. "lib/MonoAndroid10/_._",
  8169. "lib/MonoTouch10/_._",
  8170. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8171. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8172. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8173. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8174. "lib/xamarinios10/_._",
  8175. "lib/xamarinmac20/_._",
  8176. "lib/xamarintvos10/_._",
  8177. "lib/xamarinwatchos10/_._",
  8178. "ref/MonoAndroid10/_._",
  8179. "ref/MonoTouch10/_._",
  8180. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8181. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8182. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8183. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8184. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8185. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8186. "ref/xamarinios10/_._",
  8187. "ref/xamarinmac20/_._",
  8188. "ref/xamarintvos10/_._",
  8189. "ref/xamarinwatchos10/_._",
  8190. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8191. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8192. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8193. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8194. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8195. "system.security.cryptography.protecteddata.nuspec",
  8196. "useSharedDesignerContext.txt",
  8197. "version.txt"
  8198. ]
  8199. },
  8200. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8201. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8202. "type": "package",
  8203. "path": "system.security.cryptography.x509certificates/4.3.0",
  8204. "files": [
  8205. ".nupkg.metadata",
  8206. ".signature.p7s",
  8207. "ThirdPartyNotices.txt",
  8208. "dotnet_library_license.txt",
  8209. "lib/MonoAndroid10/_._",
  8210. "lib/MonoTouch10/_._",
  8211. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8212. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8213. "lib/xamarinios10/_._",
  8214. "lib/xamarinmac20/_._",
  8215. "lib/xamarintvos10/_._",
  8216. "lib/xamarinwatchos10/_._",
  8217. "ref/MonoAndroid10/_._",
  8218. "ref/MonoTouch10/_._",
  8219. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8220. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8221. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8222. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8223. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8224. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8225. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8226. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8227. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8228. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8229. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8230. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8231. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8232. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8233. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8234. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8235. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8236. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8237. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8238. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8239. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8240. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8241. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8242. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8243. "ref/xamarinios10/_._",
  8244. "ref/xamarinmac20/_._",
  8245. "ref/xamarintvos10/_._",
  8246. "ref/xamarinwatchos10/_._",
  8247. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8248. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8249. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8250. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8251. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8252. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8253. "system.security.cryptography.x509certificates.nuspec"
  8254. ]
  8255. },
  8256. "System.Security.Permissions/4.7.0": {
  8257. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8258. "type": "package",
  8259. "path": "system.security.permissions/4.7.0",
  8260. "files": [
  8261. ".nupkg.metadata",
  8262. ".signature.p7s",
  8263. "LICENSE.TXT",
  8264. "THIRD-PARTY-NOTICES.TXT",
  8265. "lib/net461/System.Security.Permissions.dll",
  8266. "lib/net461/System.Security.Permissions.xml",
  8267. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8268. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8269. "lib/netstandard2.0/System.Security.Permissions.dll",
  8270. "lib/netstandard2.0/System.Security.Permissions.xml",
  8271. "ref/net461/System.Security.Permissions.dll",
  8272. "ref/net461/System.Security.Permissions.xml",
  8273. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8274. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8275. "ref/netstandard2.0/System.Security.Permissions.dll",
  8276. "ref/netstandard2.0/System.Security.Permissions.xml",
  8277. "system.security.permissions.4.7.0.nupkg.sha512",
  8278. "system.security.permissions.nuspec",
  8279. "useSharedDesignerContext.txt",
  8280. "version.txt"
  8281. ]
  8282. },
  8283. "System.Security.Principal/4.3.0": {
  8284. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8285. "type": "package",
  8286. "path": "system.security.principal/4.3.0",
  8287. "files": [
  8288. ".nupkg.metadata",
  8289. ".signature.p7s",
  8290. "ThirdPartyNotices.txt",
  8291. "dotnet_library_license.txt",
  8292. "lib/MonoAndroid10/_._",
  8293. "lib/MonoTouch10/_._",
  8294. "lib/net45/_._",
  8295. "lib/netcore50/System.Security.Principal.dll",
  8296. "lib/netstandard1.0/System.Security.Principal.dll",
  8297. "lib/portable-net45+win8+wp8+wpa81/_._",
  8298. "lib/win8/_._",
  8299. "lib/wp80/_._",
  8300. "lib/wpa81/_._",
  8301. "lib/xamarinios10/_._",
  8302. "lib/xamarinmac20/_._",
  8303. "lib/xamarintvos10/_._",
  8304. "lib/xamarinwatchos10/_._",
  8305. "ref/MonoAndroid10/_._",
  8306. "ref/MonoTouch10/_._",
  8307. "ref/net45/_._",
  8308. "ref/netcore50/System.Security.Principal.dll",
  8309. "ref/netcore50/System.Security.Principal.xml",
  8310. "ref/netcore50/de/System.Security.Principal.xml",
  8311. "ref/netcore50/es/System.Security.Principal.xml",
  8312. "ref/netcore50/fr/System.Security.Principal.xml",
  8313. "ref/netcore50/it/System.Security.Principal.xml",
  8314. "ref/netcore50/ja/System.Security.Principal.xml",
  8315. "ref/netcore50/ko/System.Security.Principal.xml",
  8316. "ref/netcore50/ru/System.Security.Principal.xml",
  8317. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8318. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8319. "ref/netstandard1.0/System.Security.Principal.dll",
  8320. "ref/netstandard1.0/System.Security.Principal.xml",
  8321. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8322. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8323. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8324. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8325. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8326. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8327. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8328. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8329. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8330. "ref/portable-net45+win8+wp8+wpa81/_._",
  8331. "ref/win8/_._",
  8332. "ref/wp80/_._",
  8333. "ref/wpa81/_._",
  8334. "ref/xamarinios10/_._",
  8335. "ref/xamarinmac20/_._",
  8336. "ref/xamarintvos10/_._",
  8337. "ref/xamarinwatchos10/_._",
  8338. "system.security.principal.4.3.0.nupkg.sha512",
  8339. "system.security.principal.nuspec"
  8340. ]
  8341. },
  8342. "System.Security.Principal.Windows/4.7.0": {
  8343. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8344. "type": "package",
  8345. "path": "system.security.principal.windows/4.7.0",
  8346. "files": [
  8347. ".nupkg.metadata",
  8348. ".signature.p7s",
  8349. "LICENSE.TXT",
  8350. "THIRD-PARTY-NOTICES.TXT",
  8351. "lib/net46/System.Security.Principal.Windows.dll",
  8352. "lib/net461/System.Security.Principal.Windows.dll",
  8353. "lib/net461/System.Security.Principal.Windows.xml",
  8354. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8355. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8356. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8357. "lib/uap10.0.16299/_._",
  8358. "ref/net46/System.Security.Principal.Windows.dll",
  8359. "ref/net461/System.Security.Principal.Windows.dll",
  8360. "ref/net461/System.Security.Principal.Windows.xml",
  8361. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8362. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8363. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8364. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8365. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8366. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8367. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8368. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8369. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8370. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8371. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8372. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8373. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8374. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8375. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8376. "ref/uap10.0.16299/_._",
  8377. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8378. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8379. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8380. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8381. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8382. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8383. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8384. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8385. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8386. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8387. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8388. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8389. "runtimes/win/lib/uap10.0.16299/_._",
  8390. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8391. "system.security.principal.windows.nuspec",
  8392. "useSharedDesignerContext.txt",
  8393. "version.txt"
  8394. ]
  8395. },
  8396. "System.Text.Encoding/4.3.0": {
  8397. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8398. "type": "package",
  8399. "path": "system.text.encoding/4.3.0",
  8400. "files": [
  8401. ".nupkg.metadata",
  8402. ".signature.p7s",
  8403. "ThirdPartyNotices.txt",
  8404. "dotnet_library_license.txt",
  8405. "lib/MonoAndroid10/_._",
  8406. "lib/MonoTouch10/_._",
  8407. "lib/net45/_._",
  8408. "lib/portable-net45+win8+wp8+wpa81/_._",
  8409. "lib/win8/_._",
  8410. "lib/wp80/_._",
  8411. "lib/wpa81/_._",
  8412. "lib/xamarinios10/_._",
  8413. "lib/xamarinmac20/_._",
  8414. "lib/xamarintvos10/_._",
  8415. "lib/xamarinwatchos10/_._",
  8416. "ref/MonoAndroid10/_._",
  8417. "ref/MonoTouch10/_._",
  8418. "ref/net45/_._",
  8419. "ref/netcore50/System.Text.Encoding.dll",
  8420. "ref/netcore50/System.Text.Encoding.xml",
  8421. "ref/netcore50/de/System.Text.Encoding.xml",
  8422. "ref/netcore50/es/System.Text.Encoding.xml",
  8423. "ref/netcore50/fr/System.Text.Encoding.xml",
  8424. "ref/netcore50/it/System.Text.Encoding.xml",
  8425. "ref/netcore50/ja/System.Text.Encoding.xml",
  8426. "ref/netcore50/ko/System.Text.Encoding.xml",
  8427. "ref/netcore50/ru/System.Text.Encoding.xml",
  8428. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8429. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8430. "ref/netstandard1.0/System.Text.Encoding.dll",
  8431. "ref/netstandard1.0/System.Text.Encoding.xml",
  8432. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8433. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8434. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8435. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8436. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8437. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8438. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8439. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8440. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8441. "ref/netstandard1.3/System.Text.Encoding.dll",
  8442. "ref/netstandard1.3/System.Text.Encoding.xml",
  8443. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8444. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8445. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8446. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8447. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8448. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8449. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8450. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8451. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8452. "ref/portable-net45+win8+wp8+wpa81/_._",
  8453. "ref/win8/_._",
  8454. "ref/wp80/_._",
  8455. "ref/wpa81/_._",
  8456. "ref/xamarinios10/_._",
  8457. "ref/xamarinmac20/_._",
  8458. "ref/xamarintvos10/_._",
  8459. "ref/xamarinwatchos10/_._",
  8460. "system.text.encoding.4.3.0.nupkg.sha512",
  8461. "system.text.encoding.nuspec"
  8462. ]
  8463. },
  8464. "System.Text.Encoding.CodePages/5.0.0": {
  8465. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8466. "type": "package",
  8467. "path": "system.text.encoding.codepages/5.0.0",
  8468. "files": [
  8469. ".nupkg.metadata",
  8470. ".signature.p7s",
  8471. "Icon.png",
  8472. "LICENSE.TXT",
  8473. "THIRD-PARTY-NOTICES.TXT",
  8474. "lib/MonoAndroid10/_._",
  8475. "lib/MonoTouch10/_._",
  8476. "lib/net46/System.Text.Encoding.CodePages.dll",
  8477. "lib/net461/System.Text.Encoding.CodePages.dll",
  8478. "lib/net461/System.Text.Encoding.CodePages.xml",
  8479. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8480. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8481. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8482. "lib/xamarinios10/_._",
  8483. "lib/xamarinmac20/_._",
  8484. "lib/xamarintvos10/_._",
  8485. "lib/xamarinwatchos10/_._",
  8486. "ref/MonoAndroid10/_._",
  8487. "ref/MonoTouch10/_._",
  8488. "ref/xamarinios10/_._",
  8489. "ref/xamarinmac20/_._",
  8490. "ref/xamarintvos10/_._",
  8491. "ref/xamarinwatchos10/_._",
  8492. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8493. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8494. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8495. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8496. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8497. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8498. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8499. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8500. "system.text.encoding.codepages.nuspec",
  8501. "useSharedDesignerContext.txt",
  8502. "version.txt"
  8503. ]
  8504. },
  8505. "System.Text.Encoding.Extensions/4.3.0": {
  8506. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8507. "type": "package",
  8508. "path": "system.text.encoding.extensions/4.3.0",
  8509. "files": [
  8510. ".nupkg.metadata",
  8511. ".signature.p7s",
  8512. "ThirdPartyNotices.txt",
  8513. "dotnet_library_license.txt",
  8514. "lib/MonoAndroid10/_._",
  8515. "lib/MonoTouch10/_._",
  8516. "lib/net45/_._",
  8517. "lib/portable-net45+win8+wp8+wpa81/_._",
  8518. "lib/win8/_._",
  8519. "lib/wp80/_._",
  8520. "lib/wpa81/_._",
  8521. "lib/xamarinios10/_._",
  8522. "lib/xamarinmac20/_._",
  8523. "lib/xamarintvos10/_._",
  8524. "lib/xamarinwatchos10/_._",
  8525. "ref/MonoAndroid10/_._",
  8526. "ref/MonoTouch10/_._",
  8527. "ref/net45/_._",
  8528. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8529. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8530. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8531. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8532. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8533. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8534. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8535. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8536. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8537. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8538. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8539. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8540. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8541. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8542. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8543. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8544. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8545. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8546. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8547. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8548. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8549. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8550. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8551. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8552. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8553. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8554. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8555. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8556. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8557. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8558. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8559. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8560. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8561. "ref/portable-net45+win8+wp8+wpa81/_._",
  8562. "ref/win8/_._",
  8563. "ref/wp80/_._",
  8564. "ref/wpa81/_._",
  8565. "ref/xamarinios10/_._",
  8566. "ref/xamarinmac20/_._",
  8567. "ref/xamarintvos10/_._",
  8568. "ref/xamarinwatchos10/_._",
  8569. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8570. "system.text.encoding.extensions.nuspec"
  8571. ]
  8572. },
  8573. "System.Text.Encodings.Web/4.7.0": {
  8574. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8575. "type": "package",
  8576. "path": "system.text.encodings.web/4.7.0",
  8577. "files": [
  8578. ".nupkg.metadata",
  8579. ".signature.p7s",
  8580. "LICENSE.TXT",
  8581. "THIRD-PARTY-NOTICES.TXT",
  8582. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8583. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8584. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8585. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8586. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8587. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8588. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8589. "system.text.encodings.web.nuspec",
  8590. "useSharedDesignerContext.txt",
  8591. "version.txt"
  8592. ]
  8593. },
  8594. "System.Text.RegularExpressions/4.3.0": {
  8595. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8596. "type": "package",
  8597. "path": "system.text.regularexpressions/4.3.0",
  8598. "files": [
  8599. ".nupkg.metadata",
  8600. ".signature.p7s",
  8601. "ThirdPartyNotices.txt",
  8602. "dotnet_library_license.txt",
  8603. "lib/MonoAndroid10/_._",
  8604. "lib/MonoTouch10/_._",
  8605. "lib/net45/_._",
  8606. "lib/net463/System.Text.RegularExpressions.dll",
  8607. "lib/netcore50/System.Text.RegularExpressions.dll",
  8608. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8609. "lib/portable-net45+win8+wp8+wpa81/_._",
  8610. "lib/win8/_._",
  8611. "lib/wp80/_._",
  8612. "lib/wpa81/_._",
  8613. "lib/xamarinios10/_._",
  8614. "lib/xamarinmac20/_._",
  8615. "lib/xamarintvos10/_._",
  8616. "lib/xamarinwatchos10/_._",
  8617. "ref/MonoAndroid10/_._",
  8618. "ref/MonoTouch10/_._",
  8619. "ref/net45/_._",
  8620. "ref/net463/System.Text.RegularExpressions.dll",
  8621. "ref/netcore50/System.Text.RegularExpressions.dll",
  8622. "ref/netcore50/System.Text.RegularExpressions.xml",
  8623. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8624. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8625. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8626. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8627. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8628. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8629. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8630. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8631. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8632. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8633. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8634. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8635. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8636. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8637. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8638. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8639. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8640. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8641. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8642. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8643. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8644. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8645. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8646. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8647. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8648. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8649. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8650. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8651. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8652. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8653. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8654. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8655. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8656. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8657. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8658. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8659. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8660. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8661. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8662. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8663. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8664. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8665. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8666. "ref/portable-net45+win8+wp8+wpa81/_._",
  8667. "ref/win8/_._",
  8668. "ref/wp80/_._",
  8669. "ref/wpa81/_._",
  8670. "ref/xamarinios10/_._",
  8671. "ref/xamarinmac20/_._",
  8672. "ref/xamarintvos10/_._",
  8673. "ref/xamarinwatchos10/_._",
  8674. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8675. "system.text.regularexpressions.nuspec"
  8676. ]
  8677. },
  8678. "System.Threading/4.3.0": {
  8679. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8680. "type": "package",
  8681. "path": "system.threading/4.3.0",
  8682. "files": [
  8683. ".nupkg.metadata",
  8684. ".signature.p7s",
  8685. "ThirdPartyNotices.txt",
  8686. "dotnet_library_license.txt",
  8687. "lib/MonoAndroid10/_._",
  8688. "lib/MonoTouch10/_._",
  8689. "lib/net45/_._",
  8690. "lib/netcore50/System.Threading.dll",
  8691. "lib/netstandard1.3/System.Threading.dll",
  8692. "lib/portable-net45+win8+wp8+wpa81/_._",
  8693. "lib/win8/_._",
  8694. "lib/wp80/_._",
  8695. "lib/wpa81/_._",
  8696. "lib/xamarinios10/_._",
  8697. "lib/xamarinmac20/_._",
  8698. "lib/xamarintvos10/_._",
  8699. "lib/xamarinwatchos10/_._",
  8700. "ref/MonoAndroid10/_._",
  8701. "ref/MonoTouch10/_._",
  8702. "ref/net45/_._",
  8703. "ref/netcore50/System.Threading.dll",
  8704. "ref/netcore50/System.Threading.xml",
  8705. "ref/netcore50/de/System.Threading.xml",
  8706. "ref/netcore50/es/System.Threading.xml",
  8707. "ref/netcore50/fr/System.Threading.xml",
  8708. "ref/netcore50/it/System.Threading.xml",
  8709. "ref/netcore50/ja/System.Threading.xml",
  8710. "ref/netcore50/ko/System.Threading.xml",
  8711. "ref/netcore50/ru/System.Threading.xml",
  8712. "ref/netcore50/zh-hans/System.Threading.xml",
  8713. "ref/netcore50/zh-hant/System.Threading.xml",
  8714. "ref/netstandard1.0/System.Threading.dll",
  8715. "ref/netstandard1.0/System.Threading.xml",
  8716. "ref/netstandard1.0/de/System.Threading.xml",
  8717. "ref/netstandard1.0/es/System.Threading.xml",
  8718. "ref/netstandard1.0/fr/System.Threading.xml",
  8719. "ref/netstandard1.0/it/System.Threading.xml",
  8720. "ref/netstandard1.0/ja/System.Threading.xml",
  8721. "ref/netstandard1.0/ko/System.Threading.xml",
  8722. "ref/netstandard1.0/ru/System.Threading.xml",
  8723. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8724. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8725. "ref/netstandard1.3/System.Threading.dll",
  8726. "ref/netstandard1.3/System.Threading.xml",
  8727. "ref/netstandard1.3/de/System.Threading.xml",
  8728. "ref/netstandard1.3/es/System.Threading.xml",
  8729. "ref/netstandard1.3/fr/System.Threading.xml",
  8730. "ref/netstandard1.3/it/System.Threading.xml",
  8731. "ref/netstandard1.3/ja/System.Threading.xml",
  8732. "ref/netstandard1.3/ko/System.Threading.xml",
  8733. "ref/netstandard1.3/ru/System.Threading.xml",
  8734. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8735. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8736. "ref/portable-net45+win8+wp8+wpa81/_._",
  8737. "ref/win8/_._",
  8738. "ref/wp80/_._",
  8739. "ref/wpa81/_._",
  8740. "ref/xamarinios10/_._",
  8741. "ref/xamarinmac20/_._",
  8742. "ref/xamarintvos10/_._",
  8743. "ref/xamarinwatchos10/_._",
  8744. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8745. "system.threading.4.3.0.nupkg.sha512",
  8746. "system.threading.nuspec"
  8747. ]
  8748. },
  8749. "System.Threading.Channels/7.0.0": {
  8750. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8751. "type": "package",
  8752. "path": "system.threading.channels/7.0.0",
  8753. "files": [
  8754. ".nupkg.metadata",
  8755. ".signature.p7s",
  8756. "Icon.png",
  8757. "LICENSE.TXT",
  8758. "THIRD-PARTY-NOTICES.TXT",
  8759. "buildTransitive/net461/System.Threading.Channels.targets",
  8760. "buildTransitive/net462/_._",
  8761. "buildTransitive/net6.0/_._",
  8762. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8763. "lib/net462/System.Threading.Channels.dll",
  8764. "lib/net462/System.Threading.Channels.xml",
  8765. "lib/net6.0/System.Threading.Channels.dll",
  8766. "lib/net6.0/System.Threading.Channels.xml",
  8767. "lib/net7.0/System.Threading.Channels.dll",
  8768. "lib/net7.0/System.Threading.Channels.xml",
  8769. "lib/netstandard2.0/System.Threading.Channels.dll",
  8770. "lib/netstandard2.0/System.Threading.Channels.xml",
  8771. "lib/netstandard2.1/System.Threading.Channels.dll",
  8772. "lib/netstandard2.1/System.Threading.Channels.xml",
  8773. "system.threading.channels.7.0.0.nupkg.sha512",
  8774. "system.threading.channels.nuspec",
  8775. "useSharedDesignerContext.txt"
  8776. ]
  8777. },
  8778. "System.Threading.Tasks/4.3.0": {
  8779. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8780. "type": "package",
  8781. "path": "system.threading.tasks/4.3.0",
  8782. "files": [
  8783. ".nupkg.metadata",
  8784. ".signature.p7s",
  8785. "ThirdPartyNotices.txt",
  8786. "dotnet_library_license.txt",
  8787. "lib/MonoAndroid10/_._",
  8788. "lib/MonoTouch10/_._",
  8789. "lib/net45/_._",
  8790. "lib/portable-net45+win8+wp8+wpa81/_._",
  8791. "lib/win8/_._",
  8792. "lib/wp80/_._",
  8793. "lib/wpa81/_._",
  8794. "lib/xamarinios10/_._",
  8795. "lib/xamarinmac20/_._",
  8796. "lib/xamarintvos10/_._",
  8797. "lib/xamarinwatchos10/_._",
  8798. "ref/MonoAndroid10/_._",
  8799. "ref/MonoTouch10/_._",
  8800. "ref/net45/_._",
  8801. "ref/netcore50/System.Threading.Tasks.dll",
  8802. "ref/netcore50/System.Threading.Tasks.xml",
  8803. "ref/netcore50/de/System.Threading.Tasks.xml",
  8804. "ref/netcore50/es/System.Threading.Tasks.xml",
  8805. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8806. "ref/netcore50/it/System.Threading.Tasks.xml",
  8807. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8808. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8809. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8810. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8811. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8812. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8813. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8814. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8815. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8816. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8817. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8818. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8819. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8820. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8821. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8822. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8823. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8824. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8825. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8826. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8827. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8828. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8829. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8830. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8831. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8832. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8833. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8834. "ref/portable-net45+win8+wp8+wpa81/_._",
  8835. "ref/win8/_._",
  8836. "ref/wp80/_._",
  8837. "ref/wpa81/_._",
  8838. "ref/xamarinios10/_._",
  8839. "ref/xamarinmac20/_._",
  8840. "ref/xamarintvos10/_._",
  8841. "ref/xamarinwatchos10/_._",
  8842. "system.threading.tasks.4.3.0.nupkg.sha512",
  8843. "system.threading.tasks.nuspec"
  8844. ]
  8845. },
  8846. "System.Threading.Tasks.Extensions/4.3.0": {
  8847. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8848. "type": "package",
  8849. "path": "system.threading.tasks.extensions/4.3.0",
  8850. "files": [
  8851. ".nupkg.metadata",
  8852. ".signature.p7s",
  8853. "ThirdPartyNotices.txt",
  8854. "dotnet_library_license.txt",
  8855. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8856. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8857. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8858. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8859. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8860. "system.threading.tasks.extensions.nuspec"
  8861. ]
  8862. },
  8863. "System.Threading.Thread/4.3.0": {
  8864. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8865. "type": "package",
  8866. "path": "system.threading.thread/4.3.0",
  8867. "files": [
  8868. ".nupkg.metadata",
  8869. ".signature.p7s",
  8870. "ThirdPartyNotices.txt",
  8871. "dotnet_library_license.txt",
  8872. "lib/MonoAndroid10/_._",
  8873. "lib/MonoTouch10/_._",
  8874. "lib/net46/System.Threading.Thread.dll",
  8875. "lib/netcore50/_._",
  8876. "lib/netstandard1.3/System.Threading.Thread.dll",
  8877. "lib/xamarinios10/_._",
  8878. "lib/xamarinmac20/_._",
  8879. "lib/xamarintvos10/_._",
  8880. "lib/xamarinwatchos10/_._",
  8881. "ref/MonoAndroid10/_._",
  8882. "ref/MonoTouch10/_._",
  8883. "ref/net46/System.Threading.Thread.dll",
  8884. "ref/netstandard1.3/System.Threading.Thread.dll",
  8885. "ref/netstandard1.3/System.Threading.Thread.xml",
  8886. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8887. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8888. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8889. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8890. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8891. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8892. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8893. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8894. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8895. "ref/xamarinios10/_._",
  8896. "ref/xamarinmac20/_._",
  8897. "ref/xamarintvos10/_._",
  8898. "ref/xamarinwatchos10/_._",
  8899. "system.threading.thread.4.3.0.nupkg.sha512",
  8900. "system.threading.thread.nuspec"
  8901. ]
  8902. },
  8903. "System.Threading.ThreadPool/4.3.0": {
  8904. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8905. "type": "package",
  8906. "path": "system.threading.threadpool/4.3.0",
  8907. "files": [
  8908. ".nupkg.metadata",
  8909. ".signature.p7s",
  8910. "ThirdPartyNotices.txt",
  8911. "dotnet_library_license.txt",
  8912. "lib/MonoAndroid10/_._",
  8913. "lib/MonoTouch10/_._",
  8914. "lib/net46/System.Threading.ThreadPool.dll",
  8915. "lib/netcore50/_._",
  8916. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8917. "lib/xamarinios10/_._",
  8918. "lib/xamarinmac20/_._",
  8919. "lib/xamarintvos10/_._",
  8920. "lib/xamarinwatchos10/_._",
  8921. "ref/MonoAndroid10/_._",
  8922. "ref/MonoTouch10/_._",
  8923. "ref/net46/System.Threading.ThreadPool.dll",
  8924. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8925. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8926. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8927. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8928. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8929. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8930. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8931. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8932. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8933. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8934. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8935. "ref/xamarinios10/_._",
  8936. "ref/xamarinmac20/_._",
  8937. "ref/xamarintvos10/_._",
  8938. "ref/xamarinwatchos10/_._",
  8939. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8940. "system.threading.threadpool.nuspec"
  8941. ]
  8942. },
  8943. "System.Threading.Timer/4.3.0": {
  8944. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8945. "type": "package",
  8946. "path": "system.threading.timer/4.3.0",
  8947. "files": [
  8948. ".nupkg.metadata",
  8949. ".signature.p7s",
  8950. "ThirdPartyNotices.txt",
  8951. "dotnet_library_license.txt",
  8952. "lib/MonoAndroid10/_._",
  8953. "lib/MonoTouch10/_._",
  8954. "lib/net451/_._",
  8955. "lib/portable-net451+win81+wpa81/_._",
  8956. "lib/win81/_._",
  8957. "lib/wpa81/_._",
  8958. "lib/xamarinios10/_._",
  8959. "lib/xamarinmac20/_._",
  8960. "lib/xamarintvos10/_._",
  8961. "lib/xamarinwatchos10/_._",
  8962. "ref/MonoAndroid10/_._",
  8963. "ref/MonoTouch10/_._",
  8964. "ref/net451/_._",
  8965. "ref/netcore50/System.Threading.Timer.dll",
  8966. "ref/netcore50/System.Threading.Timer.xml",
  8967. "ref/netcore50/de/System.Threading.Timer.xml",
  8968. "ref/netcore50/es/System.Threading.Timer.xml",
  8969. "ref/netcore50/fr/System.Threading.Timer.xml",
  8970. "ref/netcore50/it/System.Threading.Timer.xml",
  8971. "ref/netcore50/ja/System.Threading.Timer.xml",
  8972. "ref/netcore50/ko/System.Threading.Timer.xml",
  8973. "ref/netcore50/ru/System.Threading.Timer.xml",
  8974. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8975. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8976. "ref/netstandard1.2/System.Threading.Timer.dll",
  8977. "ref/netstandard1.2/System.Threading.Timer.xml",
  8978. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8979. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8980. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8981. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8982. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8983. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8984. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8985. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8986. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8987. "ref/portable-net451+win81+wpa81/_._",
  8988. "ref/win81/_._",
  8989. "ref/wpa81/_._",
  8990. "ref/xamarinios10/_._",
  8991. "ref/xamarinmac20/_._",
  8992. "ref/xamarintvos10/_._",
  8993. "ref/xamarinwatchos10/_._",
  8994. "system.threading.timer.4.3.0.nupkg.sha512",
  8995. "system.threading.timer.nuspec"
  8996. ]
  8997. },
  8998. "System.Windows.Extensions/4.7.0": {
  8999. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9000. "type": "package",
  9001. "path": "system.windows.extensions/4.7.0",
  9002. "files": [
  9003. ".nupkg.metadata",
  9004. ".signature.p7s",
  9005. "LICENSE.TXT",
  9006. "THIRD-PARTY-NOTICES.TXT",
  9007. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9008. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9009. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9010. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9011. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9012. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9013. "system.windows.extensions.4.7.0.nupkg.sha512",
  9014. "system.windows.extensions.nuspec",
  9015. "useSharedDesignerContext.txt",
  9016. "version.txt"
  9017. ]
  9018. },
  9019. "System.Xml.ReaderWriter/4.3.0": {
  9020. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9021. "type": "package",
  9022. "path": "system.xml.readerwriter/4.3.0",
  9023. "files": [
  9024. ".nupkg.metadata",
  9025. ".signature.p7s",
  9026. "ThirdPartyNotices.txt",
  9027. "dotnet_library_license.txt",
  9028. "lib/MonoAndroid10/_._",
  9029. "lib/MonoTouch10/_._",
  9030. "lib/net45/_._",
  9031. "lib/net46/System.Xml.ReaderWriter.dll",
  9032. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9033. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9034. "lib/portable-net45+win8+wp8+wpa81/_._",
  9035. "lib/win8/_._",
  9036. "lib/wp80/_._",
  9037. "lib/wpa81/_._",
  9038. "lib/xamarinios10/_._",
  9039. "lib/xamarinmac20/_._",
  9040. "lib/xamarintvos10/_._",
  9041. "lib/xamarinwatchos10/_._",
  9042. "ref/MonoAndroid10/_._",
  9043. "ref/MonoTouch10/_._",
  9044. "ref/net45/_._",
  9045. "ref/net46/System.Xml.ReaderWriter.dll",
  9046. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9047. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9048. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9049. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9050. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9051. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9052. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9053. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9054. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9055. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9056. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9057. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9058. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9059. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9060. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9061. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9062. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9063. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9064. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9065. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9066. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9067. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9068. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9069. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9070. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9071. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9072. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9073. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9074. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9075. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9076. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9077. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9078. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9079. "ref/portable-net45+win8+wp8+wpa81/_._",
  9080. "ref/win8/_._",
  9081. "ref/wp80/_._",
  9082. "ref/wpa81/_._",
  9083. "ref/xamarinios10/_._",
  9084. "ref/xamarinmac20/_._",
  9085. "ref/xamarintvos10/_._",
  9086. "ref/xamarinwatchos10/_._",
  9087. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9088. "system.xml.readerwriter.nuspec"
  9089. ]
  9090. },
  9091. "System.Xml.XDocument/4.3.0": {
  9092. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9093. "type": "package",
  9094. "path": "system.xml.xdocument/4.3.0",
  9095. "files": [
  9096. ".nupkg.metadata",
  9097. ".signature.p7s",
  9098. "ThirdPartyNotices.txt",
  9099. "dotnet_library_license.txt",
  9100. "lib/MonoAndroid10/_._",
  9101. "lib/MonoTouch10/_._",
  9102. "lib/net45/_._",
  9103. "lib/netcore50/System.Xml.XDocument.dll",
  9104. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9105. "lib/portable-net45+win8+wp8+wpa81/_._",
  9106. "lib/win8/_._",
  9107. "lib/wp80/_._",
  9108. "lib/wpa81/_._",
  9109. "lib/xamarinios10/_._",
  9110. "lib/xamarinmac20/_._",
  9111. "lib/xamarintvos10/_._",
  9112. "lib/xamarinwatchos10/_._",
  9113. "ref/MonoAndroid10/_._",
  9114. "ref/MonoTouch10/_._",
  9115. "ref/net45/_._",
  9116. "ref/netcore50/System.Xml.XDocument.dll",
  9117. "ref/netcore50/System.Xml.XDocument.xml",
  9118. "ref/netcore50/de/System.Xml.XDocument.xml",
  9119. "ref/netcore50/es/System.Xml.XDocument.xml",
  9120. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9121. "ref/netcore50/it/System.Xml.XDocument.xml",
  9122. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9123. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9124. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9125. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9126. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9127. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9128. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9129. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9130. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9131. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9132. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9133. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9134. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9135. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9136. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9137. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9138. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9139. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9140. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9141. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9142. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9143. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9144. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9145. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9146. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9147. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9148. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9149. "ref/portable-net45+win8+wp8+wpa81/_._",
  9150. "ref/win8/_._",
  9151. "ref/wp80/_._",
  9152. "ref/wpa81/_._",
  9153. "ref/xamarinios10/_._",
  9154. "ref/xamarinmac20/_._",
  9155. "ref/xamarintvos10/_._",
  9156. "ref/xamarinwatchos10/_._",
  9157. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9158. "system.xml.xdocument.nuspec"
  9159. ]
  9160. },
  9161. "ToolGood.Words/3.1.0.2": {
  9162. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9163. "type": "package",
  9164. "path": "toolgood.words/3.1.0.2",
  9165. "files": [
  9166. ".nupkg.metadata",
  9167. ".signature.p7s",
  9168. "LICENSE",
  9169. "lib/net6.0/ToolGood.Words.dll",
  9170. "lib/net6.0/ToolGood.Words.xml",
  9171. "lib/net8.0/ToolGood.Words.dll",
  9172. "lib/net8.0/ToolGood.Words.xml",
  9173. "lib/net9.0/ToolGood.Words.dll",
  9174. "lib/net9.0/ToolGood.Words.xml",
  9175. "lib/netstandard2.1/ToolGood.Words.dll",
  9176. "lib/netstandard2.1/ToolGood.Words.xml",
  9177. "toolgood.words.3.1.0.2.nupkg.sha512",
  9178. "toolgood.words.nuspec"
  9179. ]
  9180. },
  9181. "ZXing.Net/0.16.9": {
  9182. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9183. "type": "package",
  9184. "path": "zxing.net/0.16.9",
  9185. "files": [
  9186. ".nupkg.metadata",
  9187. ".signature.p7s",
  9188. "lib/native/zxing.XML",
  9189. "lib/native/zxing.pri",
  9190. "lib/native/zxing.winmd",
  9191. "lib/net20-cf/zxing.ce2.0.dll",
  9192. "lib/net20-cf/zxing.ce2.0.xml",
  9193. "lib/net20/zxing.XML",
  9194. "lib/net20/zxing.dll",
  9195. "lib/net35-cf/zxing.ce3.5.dll",
  9196. "lib/net35-cf/zxing.ce3.5.xml",
  9197. "lib/net35/zxing.XML",
  9198. "lib/net35/zxing.dll",
  9199. "lib/net40/zxing.XML",
  9200. "lib/net40/zxing.dll",
  9201. "lib/net40/zxing.presentation.XML",
  9202. "lib/net40/zxing.presentation.dll",
  9203. "lib/net45/zxing.XML",
  9204. "lib/net45/zxing.dll",
  9205. "lib/net45/zxing.presentation.XML",
  9206. "lib/net45/zxing.presentation.dll",
  9207. "lib/net461/zxing.XML",
  9208. "lib/net461/zxing.dll",
  9209. "lib/net461/zxing.presentation.XML",
  9210. "lib/net461/zxing.presentation.dll",
  9211. "lib/net47/zxing.XML",
  9212. "lib/net47/zxing.dll",
  9213. "lib/net47/zxing.presentation.XML",
  9214. "lib/net47/zxing.presentation.dll",
  9215. "lib/net48/zxing.XML",
  9216. "lib/net48/zxing.dll",
  9217. "lib/net48/zxing.presentation.XML",
  9218. "lib/net48/zxing.presentation.dll",
  9219. "lib/net5.0/zxing.XML",
  9220. "lib/net5.0/zxing.dll",
  9221. "lib/net6.0/zxing.XML",
  9222. "lib/net6.0/zxing.dll",
  9223. "lib/net7.0/zxing.XML",
  9224. "lib/net7.0/zxing.dll",
  9225. "lib/netcoreapp3.0/zxing.dll",
  9226. "lib/netcoreapp3.0/zxing.xml",
  9227. "lib/netcoreapp3.1/zxing.dll",
  9228. "lib/netcoreapp3.1/zxing.xml",
  9229. "lib/netstandard1.0/zxing.dll",
  9230. "lib/netstandard1.0/zxing.xml",
  9231. "lib/netstandard1.1/zxing.dll",
  9232. "lib/netstandard1.1/zxing.xml",
  9233. "lib/netstandard1.3/zxing.dll",
  9234. "lib/netstandard1.3/zxing.xml",
  9235. "lib/netstandard2.0/zxing.dll",
  9236. "lib/netstandard2.0/zxing.xml",
  9237. "lib/netstandard2.1/zxing.dll",
  9238. "lib/netstandard2.1/zxing.xml",
  9239. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9240. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9241. "lib/sl3-wp/zxing.wp7.0.XML",
  9242. "lib/sl3-wp/zxing.wp7.0.dll",
  9243. "lib/sl4-wp71/zxing.wp7.1.XML",
  9244. "lib/sl4-wp71/zxing.wp7.1.dll",
  9245. "lib/sl4/zxing.sl4.XML",
  9246. "lib/sl4/zxing.sl4.dll",
  9247. "lib/sl5/zxing.sl5.XML",
  9248. "lib/sl5/zxing.sl5.dll",
  9249. "lib/uap10/zxing.dll",
  9250. "lib/uap10/zxing.pri",
  9251. "lib/uap10/zxing.xml",
  9252. "lib/windows8-managed/zxing.winrt.XML",
  9253. "lib/windows8-managed/zxing.winrt.dll",
  9254. "lib/windows8/zxing.XML",
  9255. "lib/windows8/zxing.pri",
  9256. "lib/windows8/zxing.winmd",
  9257. "lib/wp8/zxing.wp8.0.XML",
  9258. "lib/wp8/zxing.wp8.0.dll",
  9259. "logo.jpg",
  9260. "zxing.net.0.16.9.nupkg.sha512",
  9261. "zxing.net.nuspec"
  9262. ]
  9263. },
  9264. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9265. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9266. "type": "package",
  9267. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9268. "files": [
  9269. ".nupkg.metadata",
  9270. ".signature.p7s",
  9271. "lib/net472/ZXing.ImageSharp.V2.dll",
  9272. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9273. "lib/net472/ZXing.ImageSharp.V2.xml",
  9274. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9275. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9276. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9277. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9278. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9279. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9280. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9281. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9282. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9283. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9284. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9285. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9286. "logo.jpg",
  9287. "readme.md",
  9288. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9289. "zxing.net.bindings.imagesharp.v2.nuspec"
  9290. ]
  9291. },
  9292. "Ropin.Core.Common/1.0.0": {
  9293. "type": "project",
  9294. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9295. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9296. },
  9297. "Ropin.Inspection.Common/1.0.0": {
  9298. "type": "project",
  9299. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9300. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9301. },
  9302. "Ropin.Inspection.Model/1.0.0": {
  9303. "type": "project",
  9304. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9305. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9306. },
  9307. "Ropin.Inspection.Repository/1.0.0": {
  9308. "type": "project",
  9309. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9310. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9311. }
  9312. },
  9313. "projectFileDependencyGroups": {
  9314. "net5.0": [
  9315. "FBoxClientDriver >= 1.2.0",
  9316. "InfluxData.Net >= 8.0.1",
  9317. "InitQ >= 1.0.0.14",
  9318. "MQTTnet.AspNetCore >= 4.3.7.1207",
  9319. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9320. "RabbitMQ.Client >= 6.8.1",
  9321. "Ropin.Core.Common >= 1.0.0",
  9322. "Ropin.Inspection.Common >= 1.0.0",
  9323. "Ropin.Inspection.Model >= 1.0.0",
  9324. "Ropin.Inspection.Repository >= 1.0.0",
  9325. "Swashbuckle.AspNetCore >= 5.6.3",
  9326. "log4net >= 2.0.17"
  9327. ]
  9328. },
  9329. "packageFolders": {
  9330. "D:\\.nuget\\packages": {},
  9331. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9332. },
  9333. "project": {
  9334. "version": "1.0.0",
  9335. "restore": {
  9336. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9337. "projectName": "Ropin.Environmentally.DcsService",
  9338. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9339. "packagesPath": "D:\\.nuget\\packages",
  9340. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\obj\\",
  9341. "projectStyle": "PackageReference",
  9342. "fallbackFolders": [
  9343. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9344. ],
  9345. "configFilePaths": [
  9346. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9347. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9348. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9349. ],
  9350. "originalTargetFrameworks": [
  9351. "net5.0"
  9352. ],
  9353. "sources": {
  9354. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9355. "C:\\Program Files\\dotnet\\library-packs": {},
  9356. "https://api.nuget.org/v3/index.json": {}
  9357. },
  9358. "frameworks": {
  9359. "net5.0": {
  9360. "targetAlias": "net5.0",
  9361. "projectReferences": {
  9362. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9363. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9364. },
  9365. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9366. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9367. },
  9368. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9369. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9370. },
  9371. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9372. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9373. }
  9374. }
  9375. }
  9376. },
  9377. "warningProperties": {
  9378. "warnAsError": [
  9379. "NU1605"
  9380. ]
  9381. }
  9382. },
  9383. "frameworks": {
  9384. "net5.0": {
  9385. "targetAlias": "net5.0",
  9386. "dependencies": {
  9387. "FBoxClientDriver": {
  9388. "target": "Package",
  9389. "version": "[1.2.0, )"
  9390. },
  9391. "InfluxData.Net": {
  9392. "target": "Package",
  9393. "version": "[8.0.1, )"
  9394. },
  9395. "InitQ": {
  9396. "target": "Package",
  9397. "version": "[1.0.0.14, )"
  9398. },
  9399. "MQTTnet.AspNetCore": {
  9400. "target": "Package",
  9401. "version": "[4.3.7.1207, )"
  9402. },
  9403. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9404. "target": "Package",
  9405. "version": "[1.17.2, )"
  9406. },
  9407. "RabbitMQ.Client": {
  9408. "target": "Package",
  9409. "version": "[6.8.1, )"
  9410. },
  9411. "Swashbuckle.AspNetCore": {
  9412. "target": "Package",
  9413. "version": "[5.6.3, )"
  9414. },
  9415. "log4net": {
  9416. "target": "Package",
  9417. "version": "[2.0.17, )"
  9418. }
  9419. },
  9420. "imports": [
  9421. "net461",
  9422. "net462",
  9423. "net47",
  9424. "net471",
  9425. "net472",
  9426. "net48",
  9427. "net481"
  9428. ],
  9429. "assetTargetFallback": true,
  9430. "warn": true,
  9431. "frameworkReferences": {
  9432. "Microsoft.AspNetCore.App": {
  9433. "privateAssets": "none"
  9434. },
  9435. "Microsoft.NETCore.App": {
  9436. "privateAssets": "all"
  9437. }
  9438. },
  9439. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9440. }
  9441. }
  9442. }
  9443. }