project.assets.json 382 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482
  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. "Ulid/1.4.1": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  3060. },
  3061. "compile": {
  3062. "lib/netstandard2.1/Ulid.dll": {
  3063. "related": ".xml"
  3064. }
  3065. },
  3066. "runtime": {
  3067. "lib/netstandard2.1/Ulid.dll": {
  3068. "related": ".xml"
  3069. }
  3070. }
  3071. },
  3072. "ZXing.Net/0.16.9": {
  3073. "type": "package",
  3074. "compile": {
  3075. "lib/net5.0/zxing.dll": {
  3076. "related": ".XML"
  3077. }
  3078. },
  3079. "runtime": {
  3080. "lib/net5.0/zxing.dll": {
  3081. "related": ".XML"
  3082. }
  3083. }
  3084. },
  3085. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3086. "type": "package",
  3087. "dependencies": {
  3088. "SixLabors.ImageSharp": "2.1.3",
  3089. "ZXing.Net": "0.16.9"
  3090. },
  3091. "compile": {
  3092. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3093. "related": ".pdb;.xml"
  3094. }
  3095. },
  3096. "runtime": {
  3097. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3098. "related": ".pdb;.xml"
  3099. }
  3100. }
  3101. },
  3102. "Ropin.Core.Common/1.0.0": {
  3103. "type": "project",
  3104. "framework": ".NETCoreApp,Version=v5.0",
  3105. "dependencies": {
  3106. "Coravel": "4.2.1",
  3107. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3108. "Newtonsoft.Json": "13.0.1",
  3109. "QRCoder": "1.4.3",
  3110. "SixLabors.ImageSharp": "2.1.6",
  3111. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3112. },
  3113. "compile": {
  3114. "bin/placeholder/Ropin.Core.Common.dll": {}
  3115. },
  3116. "runtime": {
  3117. "bin/placeholder/Ropin.Core.Common.dll": {}
  3118. }
  3119. },
  3120. "Ropin.Inspection.Common/1.0.0": {
  3121. "type": "project",
  3122. "framework": ".NETCoreApp,Version=v5.0",
  3123. "dependencies": {
  3124. "FluentEmail.Smtp": "3.0.2",
  3125. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3126. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3127. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3128. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3129. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3130. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3131. "Microsoft.Extensions.Configuration": "5.0.0",
  3132. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3133. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3134. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3135. "Microsoft.Extensions.Http": "5.0.0",
  3136. "Newtonsoft.Json": "13.0.1",
  3137. "RabbitMQ.Client": "6.8.1",
  3138. "ToolGood.Words": "3.1.0.2",
  3139. "Ulid": "1.4.1",
  3140. "log4net": "2.0.17"
  3141. },
  3142. "compile": {
  3143. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3144. },
  3145. "runtime": {
  3146. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3147. }
  3148. },
  3149. "Ropin.Inspection.Model/1.0.0": {
  3150. "type": "project",
  3151. "framework": ".NETCoreApp,Version=v5.0",
  3152. "dependencies": {
  3153. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3154. "Microsoft.EntityFrameworkCore": "5.0.0",
  3155. "MySql.Data": "8.0.23",
  3156. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3157. "Ropin.Inspection.Common": "1.0.0"
  3158. },
  3159. "compile": {
  3160. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3161. },
  3162. "runtime": {
  3163. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3164. }
  3165. },
  3166. "Ropin.Inspection.Repository/1.0.0": {
  3167. "type": "project",
  3168. "framework": ".NETCoreApp,Version=v5.0",
  3169. "dependencies": {
  3170. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3171. "Microsoft.EntityFrameworkCore": "5.0.0",
  3172. "Ropin.Inspection.Model": "1.0.0"
  3173. },
  3174. "compile": {
  3175. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3176. },
  3177. "runtime": {
  3178. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3179. }
  3180. }
  3181. }
  3182. },
  3183. "libraries": {
  3184. "AdvancedStringBuilder/0.1.0": {
  3185. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3186. "type": "package",
  3187. "path": "advancedstringbuilder/0.1.0",
  3188. "files": [
  3189. ".nupkg.metadata",
  3190. ".signature.p7s",
  3191. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3192. "advancedstringbuilder.nuspec",
  3193. "lib/net40-client/AdvancedStringBuilder.dll",
  3194. "lib/net40-client/AdvancedStringBuilder.xml",
  3195. "lib/net45/AdvancedStringBuilder.dll",
  3196. "lib/net45/AdvancedStringBuilder.xml",
  3197. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3198. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3199. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3200. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3201. ]
  3202. },
  3203. "BouncyCastle.NetCore/1.8.5": {
  3204. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3205. "type": "package",
  3206. "path": "bouncycastle.netcore/1.8.5",
  3207. "files": [
  3208. ".nupkg.metadata",
  3209. ".signature.p7s",
  3210. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3211. "bouncycastle.netcore.nuspec",
  3212. "lib/Mono/BouncyCastle.Crypto.dll",
  3213. "lib/Mono/BouncyCastle.Crypto.xml",
  3214. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3215. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3216. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3217. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3218. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3219. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3220. "lib/net20/BouncyCastle.Crypto.dll",
  3221. "lib/net20/BouncyCastle.Crypto.xml",
  3222. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3223. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3224. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3225. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3226. ]
  3227. },
  3228. "Coravel/4.2.1": {
  3229. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3230. "type": "package",
  3231. "path": "coravel/4.2.1",
  3232. "files": [
  3233. ".nupkg.metadata",
  3234. ".signature.p7s",
  3235. "coravel.4.2.1.nupkg.sha512",
  3236. "coravel.nuspec",
  3237. "lib/netstandard2.0/Coravel.dll",
  3238. "lib/netstandard2.0/Coravel.xml",
  3239. "logo.png",
  3240. "readme.md"
  3241. ]
  3242. },
  3243. "FBoxClientDriver/1.2.0": {
  3244. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3245. "type": "package",
  3246. "path": "fboxclientdriver/1.2.0",
  3247. "files": [
  3248. ".nupkg.metadata",
  3249. ".signature.p7s",
  3250. "fboxclientdriver.1.2.0.nupkg.sha512",
  3251. "fboxclientdriver.nuspec",
  3252. "lib/netstandard2.0/FBoxClientDriver.dll",
  3253. "lib/netstandard2.0/FBoxClientDriver.xml"
  3254. ]
  3255. },
  3256. "FBoxClientDriver.Contract/1.2.0": {
  3257. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3258. "type": "package",
  3259. "path": "fboxclientdriver.contract/1.2.0",
  3260. "files": [
  3261. ".nupkg.metadata",
  3262. ".signature.p7s",
  3263. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3264. "fboxclientdriver.contract.nuspec",
  3265. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3266. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3267. ]
  3268. },
  3269. "FluentEmail.Core/3.0.2": {
  3270. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3271. "type": "package",
  3272. "path": "fluentemail.core/3.0.2",
  3273. "files": [
  3274. ".nupkg.metadata",
  3275. ".signature.p7s",
  3276. "fluentemail.core.3.0.2.nupkg.sha512",
  3277. "fluentemail.core.nuspec",
  3278. "fluentemail_logo_64x64.png",
  3279. "lib/netstandard2.0/FluentEmail.Core.dll"
  3280. ]
  3281. },
  3282. "FluentEmail.Smtp/3.0.2": {
  3283. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3284. "type": "package",
  3285. "path": "fluentemail.smtp/3.0.2",
  3286. "files": [
  3287. ".nupkg.metadata",
  3288. ".signature.p7s",
  3289. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3290. "fluentemail.smtp.nuspec",
  3291. "fluentemail_logo_64x64.png",
  3292. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3293. ]
  3294. },
  3295. "Google.Protobuf/3.11.4": {
  3296. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3297. "type": "package",
  3298. "path": "google.protobuf/3.11.4",
  3299. "files": [
  3300. ".nupkg.metadata",
  3301. ".signature.p7s",
  3302. "google.protobuf.3.11.4.nupkg.sha512",
  3303. "google.protobuf.nuspec",
  3304. "lib/net45/Google.Protobuf.dll",
  3305. "lib/net45/Google.Protobuf.pdb",
  3306. "lib/net45/Google.Protobuf.xml",
  3307. "lib/netstandard1.0/Google.Protobuf.dll",
  3308. "lib/netstandard1.0/Google.Protobuf.pdb",
  3309. "lib/netstandard1.0/Google.Protobuf.xml",
  3310. "lib/netstandard2.0/Google.Protobuf.dll",
  3311. "lib/netstandard2.0/Google.Protobuf.pdb",
  3312. "lib/netstandard2.0/Google.Protobuf.xml"
  3313. ]
  3314. },
  3315. "IdentityModel/4.3.1": {
  3316. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3317. "type": "package",
  3318. "path": "identitymodel/4.3.1",
  3319. "files": [
  3320. ".nupkg.metadata",
  3321. ".signature.p7s",
  3322. "icon.jpg",
  3323. "identitymodel.4.3.1.nupkg.sha512",
  3324. "identitymodel.nuspec",
  3325. "lib/net461/IdentityModel.dll",
  3326. "lib/net461/IdentityModel.pdb",
  3327. "lib/net461/IdentityModel.xml",
  3328. "lib/net472/IdentityModel.dll",
  3329. "lib/net472/IdentityModel.pdb",
  3330. "lib/net472/IdentityModel.xml",
  3331. "lib/netstandard2.0/IdentityModel.dll",
  3332. "lib/netstandard2.0/IdentityModel.pdb",
  3333. "lib/netstandard2.0/IdentityModel.xml"
  3334. ]
  3335. },
  3336. "InfluxData.Net/8.0.1": {
  3337. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3338. "type": "package",
  3339. "path": "influxdata.net/8.0.1",
  3340. "files": [
  3341. ".nupkg.metadata",
  3342. ".signature.p7s",
  3343. "influxdata.net.8.0.1.nupkg.sha512",
  3344. "influxdata.net.nuspec",
  3345. "lib/net461/InfluxData.Net.Common.dll",
  3346. "lib/net461/InfluxData.Net.Common.dll.config",
  3347. "lib/net461/InfluxData.Net.Common.pdb",
  3348. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3349. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3350. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3351. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3352. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3353. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3354. "lib/net461/InfluxData.Net.dll",
  3355. "lib/net461/InfluxData.Net.dll.config",
  3356. "lib/net461/InfluxData.Net.pdb",
  3357. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3358. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3359. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3360. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3361. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3362. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3363. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3364. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3365. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3366. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3367. "lib/netstandard2.0/InfluxData.Net.dll",
  3368. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3369. "lib/netstandard2.0/InfluxData.Net.pdb"
  3370. ]
  3371. },
  3372. "InitQ/1.0.0.14": {
  3373. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3374. "type": "package",
  3375. "path": "initq/1.0.0.14",
  3376. "files": [
  3377. ".nupkg.metadata",
  3378. ".signature.p7s",
  3379. "initq.1.0.0.14.nupkg.sha512",
  3380. "initq.nuspec",
  3381. "lib/netcoreapp2.1/InitQ.dll"
  3382. ]
  3383. },
  3384. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3385. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3386. "type": "package",
  3387. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3388. "files": [
  3389. ".nupkg.metadata",
  3390. ".signature.p7s",
  3391. "LICENSE.txt",
  3392. "advanced-string-builder-license.txt",
  3393. "chakra-samples-license.txt",
  3394. "icon.png",
  3395. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3396. "javascriptengineswitcher.chakracore.nuspec",
  3397. "jsrt-dotnet-license.txt",
  3398. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3399. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3400. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3401. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3402. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3403. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3404. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3405. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3406. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3407. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3408. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3409. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3410. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3411. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3412. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3413. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3414. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3415. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3416. "polyfills-for-old-dot-net-license.txt",
  3417. "readme.txt"
  3418. ]
  3419. },
  3420. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3421. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3422. "type": "package",
  3423. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3424. "files": [
  3425. ".nupkg.metadata",
  3426. ".signature.p7s",
  3427. "LICENSE.txt",
  3428. "chakra-core-license.txt",
  3429. "icon.png",
  3430. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3431. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3432. "readme.txt",
  3433. "runtimes/linux-x64/native/libChakraCore.so"
  3434. ]
  3435. },
  3436. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3437. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3438. "type": "package",
  3439. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3440. "hasTools": true,
  3441. "files": [
  3442. ".nupkg.metadata",
  3443. ".signature.p7s",
  3444. "LICENSE.txt",
  3445. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3446. "chakra-core-license.txt",
  3447. "icon.png",
  3448. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3449. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3450. "readme.txt",
  3451. "runtimes/win-x64/native/ChakraCore.dll",
  3452. "tools/Install.ps1",
  3453. "tools/Uninstall.ps1"
  3454. ]
  3455. },
  3456. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3457. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3458. "type": "package",
  3459. "path": "javascriptengineswitcher.core/3.21.0",
  3460. "files": [
  3461. ".nupkg.metadata",
  3462. ".signature.p7s",
  3463. "LICENSE.txt",
  3464. "advanced-string-builder-license.txt",
  3465. "icon.png",
  3466. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3467. "javascriptengineswitcher.core.nuspec",
  3468. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3469. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3470. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3471. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3472. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3473. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3474. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3475. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3476. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3477. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3478. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3479. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3480. "readme.txt"
  3481. ]
  3482. },
  3483. "K4os.Compression.LZ4/1.1.11": {
  3484. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3485. "type": "package",
  3486. "path": "k4os.compression.lz4/1.1.11",
  3487. "files": [
  3488. ".nupkg.metadata",
  3489. ".signature.p7s",
  3490. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3491. "k4os.compression.lz4.nuspec",
  3492. "lib/net45/K4os.Compression.LZ4.dll",
  3493. "lib/net45/K4os.Compression.LZ4.xml",
  3494. "lib/net46/K4os.Compression.LZ4.dll",
  3495. "lib/net46/K4os.Compression.LZ4.xml",
  3496. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3497. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3498. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3499. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3500. ]
  3501. },
  3502. "K4os.Compression.LZ4.Streams/1.1.11": {
  3503. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3504. "type": "package",
  3505. "path": "k4os.compression.lz4.streams/1.1.11",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3510. "k4os.compression.lz4.streams.nuspec",
  3511. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3512. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3513. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3514. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3515. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3516. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3517. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3518. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3519. ]
  3520. },
  3521. "K4os.Hash.xxHash/1.0.6": {
  3522. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3523. "type": "package",
  3524. "path": "k4os.hash.xxhash/1.0.6",
  3525. "files": [
  3526. ".nupkg.metadata",
  3527. ".signature.p7s",
  3528. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3529. "k4os.hash.xxhash.nuspec",
  3530. "lib/net45/K4os.Hash.xxHash.dll",
  3531. "lib/net45/K4os.Hash.xxHash.xml",
  3532. "lib/net46/K4os.Hash.xxHash.dll",
  3533. "lib/net46/K4os.Hash.xxHash.xml",
  3534. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3535. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3536. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3537. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3538. ]
  3539. },
  3540. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3541. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3542. "type": "package",
  3543. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3544. "files": [
  3545. ".nupkg.metadata",
  3546. ".signature.p7s",
  3547. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3548. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3549. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3550. "linqkit.microsoft.entityframeworkcore.nuspec"
  3551. ]
  3552. },
  3553. "log4net/2.0.17": {
  3554. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3555. "type": "package",
  3556. "path": "log4net/2.0.17",
  3557. "files": [
  3558. ".nupkg.metadata",
  3559. ".signature.p7s",
  3560. "lib/net20/log4net.dll",
  3561. "lib/net20/log4net.xml",
  3562. "lib/net35/log4net.dll",
  3563. "lib/net35/log4net.xml",
  3564. "lib/net40-client/log4net.dll",
  3565. "lib/net40-client/log4net.xml",
  3566. "lib/net40/log4net.dll",
  3567. "lib/net40/log4net.xml",
  3568. "lib/net45/log4net.dll",
  3569. "lib/net45/log4net.xml",
  3570. "lib/netstandard1.3/log4net.dll",
  3571. "lib/netstandard1.3/log4net.xml",
  3572. "lib/netstandard2.0/log4net.dll",
  3573. "lib/netstandard2.0/log4net.xml",
  3574. "log4net.2.0.17.nupkg.sha512",
  3575. "log4net.nuspec",
  3576. "package-icon.png"
  3577. ]
  3578. },
  3579. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3580. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3581. "type": "package",
  3582. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3583. "files": [
  3584. ".nupkg.metadata",
  3585. ".signature.p7s",
  3586. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3587. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3588. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3589. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3590. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3591. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3592. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3593. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3594. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3595. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3596. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3597. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3598. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3599. "microsoft.aspnet.signalr.client.nuspec"
  3600. ]
  3601. },
  3602. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3603. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3604. "type": "package",
  3605. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3606. "files": [
  3607. ".nupkg.metadata",
  3608. ".signature.p7s",
  3609. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3610. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3611. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3612. "microsoft.aspnetcore.http.abstractions.nuspec"
  3613. ]
  3614. },
  3615. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3616. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3617. "type": "package",
  3618. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3619. "files": [
  3620. ".nupkg.metadata",
  3621. ".signature.p7s",
  3622. "Icon.png",
  3623. "THIRD-PARTY-NOTICES.TXT",
  3624. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3625. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3626. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3627. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3628. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3629. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3630. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3631. "microsoft.aspnetcore.http.features.nuspec"
  3632. ]
  3633. },
  3634. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3635. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3636. "type": "package",
  3637. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3638. "files": [
  3639. ".nupkg.metadata",
  3640. ".signature.p7s",
  3641. "Icon.png",
  3642. "THIRD-PARTY-NOTICES.TXT",
  3643. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3644. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3645. "microsoft.aspnetcore.nodeservices.nuspec"
  3646. ]
  3647. },
  3648. "Microsoft.CSharp/4.5.0": {
  3649. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3650. "type": "package",
  3651. "path": "microsoft.csharp/4.5.0",
  3652. "files": [
  3653. ".nupkg.metadata",
  3654. ".signature.p7s",
  3655. "LICENSE.TXT",
  3656. "THIRD-PARTY-NOTICES.TXT",
  3657. "lib/MonoAndroid10/_._",
  3658. "lib/MonoTouch10/_._",
  3659. "lib/net45/_._",
  3660. "lib/netcore50/Microsoft.CSharp.dll",
  3661. "lib/netcoreapp2.0/_._",
  3662. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3663. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3664. "lib/portable-net45+win8+wp8+wpa81/_._",
  3665. "lib/uap10.0.16299/_._",
  3666. "lib/win8/_._",
  3667. "lib/wp80/_._",
  3668. "lib/wpa81/_._",
  3669. "lib/xamarinios10/_._",
  3670. "lib/xamarinmac20/_._",
  3671. "lib/xamarintvos10/_._",
  3672. "lib/xamarinwatchos10/_._",
  3673. "microsoft.csharp.4.5.0.nupkg.sha512",
  3674. "microsoft.csharp.nuspec",
  3675. "ref/MonoAndroid10/_._",
  3676. "ref/MonoTouch10/_._",
  3677. "ref/net45/_._",
  3678. "ref/netcore50/Microsoft.CSharp.dll",
  3679. "ref/netcore50/Microsoft.CSharp.xml",
  3680. "ref/netcore50/de/Microsoft.CSharp.xml",
  3681. "ref/netcore50/es/Microsoft.CSharp.xml",
  3682. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3683. "ref/netcore50/it/Microsoft.CSharp.xml",
  3684. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3685. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3686. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3687. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3688. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3689. "ref/netcoreapp2.0/_._",
  3690. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3691. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3692. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3693. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3694. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3695. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3696. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3697. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3698. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3699. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3700. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3701. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3702. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3703. "ref/portable-net45+win8+wp8+wpa81/_._",
  3704. "ref/uap10.0.16299/_._",
  3705. "ref/win8/_._",
  3706. "ref/wp80/_._",
  3707. "ref/wpa81/_._",
  3708. "ref/xamarinios10/_._",
  3709. "ref/xamarinmac20/_._",
  3710. "ref/xamarintvos10/_._",
  3711. "ref/xamarinwatchos10/_._",
  3712. "useSharedDesignerContext.txt",
  3713. "version.txt"
  3714. ]
  3715. },
  3716. "Microsoft.EntityFrameworkCore/5.0.0": {
  3717. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3718. "type": "package",
  3719. "path": "microsoft.entityframeworkcore/5.0.0",
  3720. "files": [
  3721. ".nupkg.metadata",
  3722. ".signature.p7s",
  3723. "Icon.png",
  3724. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3725. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3726. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3727. "microsoft.entityframeworkcore.nuspec"
  3728. ]
  3729. },
  3730. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3731. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3732. "type": "package",
  3733. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3734. "files": [
  3735. ".nupkg.metadata",
  3736. ".signature.p7s",
  3737. "Icon.png",
  3738. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3739. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3740. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3741. "microsoft.entityframeworkcore.abstractions.nuspec"
  3742. ]
  3743. },
  3744. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3745. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3746. "type": "package",
  3747. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3748. "files": [
  3749. ".nupkg.metadata",
  3750. ".signature.p7s",
  3751. "Icon.png",
  3752. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3753. "lib/netstandard2.0/_._",
  3754. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3755. "microsoft.entityframeworkcore.analyzers.nuspec"
  3756. ]
  3757. },
  3758. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3759. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3760. "type": "package",
  3761. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3762. "files": [
  3763. ".nupkg.metadata",
  3764. ".signature.p7s",
  3765. "Icon.png",
  3766. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3767. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3768. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3769. "microsoft.entityframeworkcore.relational.nuspec"
  3770. ]
  3771. },
  3772. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3773. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3774. "type": "package",
  3775. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3776. "hasTools": true,
  3777. "files": [
  3778. ".nupkg.metadata",
  3779. ".signature.p7s",
  3780. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3781. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3782. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3783. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3784. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3785. "microsoft.extensions.apidescription.server.nuspec",
  3786. "tools/Newtonsoft.Json.dll",
  3787. "tools/dotnet-getdocument.deps.json",
  3788. "tools/dotnet-getdocument.dll",
  3789. "tools/dotnet-getdocument.runtimeconfig.json",
  3790. "tools/net461-x86/GetDocument.Insider.exe",
  3791. "tools/net461-x86/GetDocument.Insider.exe.config",
  3792. "tools/net461/GetDocument.Insider.exe",
  3793. "tools/net461/GetDocument.Insider.exe.config",
  3794. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3795. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3796. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3797. ]
  3798. },
  3799. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3800. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3801. "type": "package",
  3802. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "Icon.png",
  3807. "LICENSE.TXT",
  3808. "THIRD-PARTY-NOTICES.TXT",
  3809. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3810. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3811. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3812. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3813. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3814. "microsoft.extensions.caching.abstractions.nuspec",
  3815. "useSharedDesignerContext.txt",
  3816. "version.txt"
  3817. ]
  3818. },
  3819. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3820. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3821. "type": "package",
  3822. "path": "microsoft.extensions.caching.memory/5.0.0",
  3823. "files": [
  3824. ".nupkg.metadata",
  3825. ".signature.p7s",
  3826. "Icon.png",
  3827. "LICENSE.TXT",
  3828. "THIRD-PARTY-NOTICES.TXT",
  3829. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3830. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3831. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3832. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3833. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3834. "microsoft.extensions.caching.memory.nuspec",
  3835. "useSharedDesignerContext.txt",
  3836. "version.txt"
  3837. ]
  3838. },
  3839. "Microsoft.Extensions.Configuration/5.0.0": {
  3840. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3841. "type": "package",
  3842. "path": "microsoft.extensions.configuration/5.0.0",
  3843. "files": [
  3844. ".nupkg.metadata",
  3845. ".signature.p7s",
  3846. "Icon.png",
  3847. "LICENSE.TXT",
  3848. "THIRD-PARTY-NOTICES.TXT",
  3849. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3850. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3851. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3852. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3853. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3854. "microsoft.extensions.configuration.nuspec",
  3855. "useSharedDesignerContext.txt",
  3856. "version.txt"
  3857. ]
  3858. },
  3859. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3860. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3861. "type": "package",
  3862. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "Icon.png",
  3867. "LICENSE.TXT",
  3868. "THIRD-PARTY-NOTICES.TXT",
  3869. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3870. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3871. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3872. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3873. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3874. "microsoft.extensions.configuration.abstractions.nuspec",
  3875. "useSharedDesignerContext.txt",
  3876. "version.txt"
  3877. ]
  3878. },
  3879. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3880. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3881. "type": "package",
  3882. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3883. "files": [
  3884. ".nupkg.metadata",
  3885. ".signature.p7s",
  3886. "Icon.png",
  3887. "LICENSE.TXT",
  3888. "THIRD-PARTY-NOTICES.TXT",
  3889. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3890. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3891. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3892. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3893. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3894. "microsoft.extensions.configuration.binder.nuspec",
  3895. "useSharedDesignerContext.txt",
  3896. "version.txt"
  3897. ]
  3898. },
  3899. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3900. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3901. "type": "package",
  3902. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3903. "files": [
  3904. ".nupkg.metadata",
  3905. ".signature.p7s",
  3906. "Icon.png",
  3907. "LICENSE.TXT",
  3908. "THIRD-PARTY-NOTICES.TXT",
  3909. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3910. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3911. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3912. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3913. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3914. "microsoft.extensions.configuration.fileextensions.nuspec",
  3915. "useSharedDesignerContext.txt",
  3916. "version.txt"
  3917. ]
  3918. },
  3919. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3920. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3921. "type": "package",
  3922. "path": "microsoft.extensions.configuration.json/5.0.0",
  3923. "files": [
  3924. ".nupkg.metadata",
  3925. ".signature.p7s",
  3926. "Icon.png",
  3927. "LICENSE.TXT",
  3928. "THIRD-PARTY-NOTICES.TXT",
  3929. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3930. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3931. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3932. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3933. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3934. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3935. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3936. "microsoft.extensions.configuration.json.nuspec",
  3937. "useSharedDesignerContext.txt",
  3938. "version.txt"
  3939. ]
  3940. },
  3941. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3942. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3943. "type": "package",
  3944. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "Icon.png",
  3949. "LICENSE.TXT",
  3950. "THIRD-PARTY-NOTICES.TXT",
  3951. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3952. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3953. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3954. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3955. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3956. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3957. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3958. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3959. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3960. "microsoft.extensions.dependencyinjection.nuspec",
  3961. "useSharedDesignerContext.txt",
  3962. "version.txt"
  3963. ]
  3964. },
  3965. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3966. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3967. "type": "package",
  3968. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3969. "files": [
  3970. ".nupkg.metadata",
  3971. ".signature.p7s",
  3972. "Icon.png",
  3973. "LICENSE.TXT",
  3974. "THIRD-PARTY-NOTICES.TXT",
  3975. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3976. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3977. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3978. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3979. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3980. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3981. "useSharedDesignerContext.txt",
  3982. "version.txt"
  3983. ]
  3984. },
  3985. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3986. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3987. "type": "package",
  3988. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3989. "files": [
  3990. ".nupkg.metadata",
  3991. ".signature.p7s",
  3992. "Icon.png",
  3993. "LICENSE.TXT",
  3994. "THIRD-PARTY-NOTICES.TXT",
  3995. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3996. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3997. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3998. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3999. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4000. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4001. "useSharedDesignerContext.txt",
  4002. "version.txt"
  4003. ]
  4004. },
  4005. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4006. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4007. "type": "package",
  4008. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4009. "files": [
  4010. ".nupkg.metadata",
  4011. ".signature.p7s",
  4012. "Icon.png",
  4013. "LICENSE.TXT",
  4014. "THIRD-PARTY-NOTICES.TXT",
  4015. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4016. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4017. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4018. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4019. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4020. "microsoft.extensions.fileproviders.physical.nuspec",
  4021. "useSharedDesignerContext.txt",
  4022. "version.txt"
  4023. ]
  4024. },
  4025. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4026. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4027. "type": "package",
  4028. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4029. "files": [
  4030. ".nupkg.metadata",
  4031. ".signature.p7s",
  4032. "Icon.png",
  4033. "LICENSE.TXT",
  4034. "THIRD-PARTY-NOTICES.TXT",
  4035. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4036. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4037. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4038. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4039. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4040. "microsoft.extensions.filesystemglobbing.nuspec",
  4041. "useSharedDesignerContext.txt",
  4042. "version.txt"
  4043. ]
  4044. },
  4045. "Microsoft.Extensions.Hosting/2.1.0": {
  4046. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4047. "type": "package",
  4048. "path": "microsoft.extensions.hosting/2.1.0",
  4049. "files": [
  4050. ".nupkg.metadata",
  4051. ".signature.p7s",
  4052. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4053. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4054. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4055. "microsoft.extensions.hosting.nuspec"
  4056. ]
  4057. },
  4058. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4059. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4060. "type": "package",
  4061. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4062. "files": [
  4063. ".nupkg.metadata",
  4064. ".signature.p7s",
  4065. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4066. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4067. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4068. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4069. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4070. "microsoft.extensions.hosting.abstractions.nuspec",
  4071. "packageIcon.png"
  4072. ]
  4073. },
  4074. "Microsoft.Extensions.Http/5.0.0": {
  4075. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4076. "type": "package",
  4077. "path": "microsoft.extensions.http/5.0.0",
  4078. "files": [
  4079. ".nupkg.metadata",
  4080. ".signature.p7s",
  4081. "Icon.png",
  4082. "LICENSE.TXT",
  4083. "THIRD-PARTY-NOTICES.TXT",
  4084. "lib/net461/Microsoft.Extensions.Http.dll",
  4085. "lib/net461/Microsoft.Extensions.Http.xml",
  4086. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4087. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4088. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4089. "microsoft.extensions.http.nuspec",
  4090. "useSharedDesignerContext.txt",
  4091. "version.txt"
  4092. ]
  4093. },
  4094. "Microsoft.Extensions.Logging/5.0.0": {
  4095. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4096. "type": "package",
  4097. "path": "microsoft.extensions.logging/5.0.0",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "Icon.png",
  4102. "LICENSE.TXT",
  4103. "THIRD-PARTY-NOTICES.TXT",
  4104. "lib/net461/Microsoft.Extensions.Logging.dll",
  4105. "lib/net461/Microsoft.Extensions.Logging.xml",
  4106. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4107. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4108. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4109. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4110. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4111. "microsoft.extensions.logging.nuspec",
  4112. "useSharedDesignerContext.txt",
  4113. "version.txt"
  4114. ]
  4115. },
  4116. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4117. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4118. "type": "package",
  4119. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "Icon.png",
  4124. "LICENSE.TXT",
  4125. "THIRD-PARTY-NOTICES.TXT",
  4126. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4127. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4128. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4129. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4130. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4131. "microsoft.extensions.logging.abstractions.nuspec",
  4132. "useSharedDesignerContext.txt",
  4133. "version.txt"
  4134. ]
  4135. },
  4136. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4137. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4138. "type": "package",
  4139. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "Icon.png",
  4144. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4145. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4146. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4147. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4148. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4149. "microsoft.extensions.logging.configuration.nuspec"
  4150. ]
  4151. },
  4152. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4153. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4154. "type": "package",
  4155. "path": "microsoft.extensions.logging.console/3.1.30",
  4156. "files": [
  4157. ".nupkg.metadata",
  4158. ".signature.p7s",
  4159. "Icon.png",
  4160. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4161. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4162. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4163. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4164. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4165. "microsoft.extensions.logging.console.nuspec"
  4166. ]
  4167. },
  4168. "Microsoft.Extensions.Options/5.0.0": {
  4169. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4170. "type": "package",
  4171. "path": "microsoft.extensions.options/5.0.0",
  4172. "files": [
  4173. ".nupkg.metadata",
  4174. ".signature.p7s",
  4175. "Icon.png",
  4176. "LICENSE.TXT",
  4177. "THIRD-PARTY-NOTICES.TXT",
  4178. "lib/net461/Microsoft.Extensions.Options.dll",
  4179. "lib/net461/Microsoft.Extensions.Options.xml",
  4180. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4181. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4182. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4183. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4184. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4185. "microsoft.extensions.options.nuspec",
  4186. "useSharedDesignerContext.txt",
  4187. "version.txt"
  4188. ]
  4189. },
  4190. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4191. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4192. "type": "package",
  4193. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "Icon.png",
  4198. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4199. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4200. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4201. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4202. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4203. "microsoft.extensions.options.configurationextensions.nuspec"
  4204. ]
  4205. },
  4206. "Microsoft.Extensions.Primitives/5.0.0": {
  4207. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4208. "type": "package",
  4209. "path": "microsoft.extensions.primitives/5.0.0",
  4210. "files": [
  4211. ".nupkg.metadata",
  4212. ".signature.p7s",
  4213. "Icon.png",
  4214. "LICENSE.TXT",
  4215. "THIRD-PARTY-NOTICES.TXT",
  4216. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4217. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4218. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4219. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4220. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4221. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4222. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4223. "microsoft.extensions.primitives.nuspec",
  4224. "useSharedDesignerContext.txt",
  4225. "version.txt"
  4226. ]
  4227. },
  4228. "Microsoft.NETCore.Platforms/5.0.0": {
  4229. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4230. "type": "package",
  4231. "path": "microsoft.netcore.platforms/5.0.0",
  4232. "files": [
  4233. ".nupkg.metadata",
  4234. ".signature.p7s",
  4235. "Icon.png",
  4236. "LICENSE.TXT",
  4237. "THIRD-PARTY-NOTICES.TXT",
  4238. "lib/netstandard1.0/_._",
  4239. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4240. "microsoft.netcore.platforms.nuspec",
  4241. "runtime.json",
  4242. "useSharedDesignerContext.txt",
  4243. "version.txt"
  4244. ]
  4245. },
  4246. "Microsoft.NETCore.Targets/1.1.0": {
  4247. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4248. "type": "package",
  4249. "path": "microsoft.netcore.targets/1.1.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "ThirdPartyNotices.txt",
  4254. "dotnet_library_license.txt",
  4255. "lib/netstandard1.0/_._",
  4256. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4257. "microsoft.netcore.targets.nuspec",
  4258. "runtime.json"
  4259. ]
  4260. },
  4261. "Microsoft.OpenApi/1.2.3": {
  4262. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4263. "type": "package",
  4264. "path": "microsoft.openapi/1.2.3",
  4265. "files": [
  4266. ".nupkg.metadata",
  4267. ".signature.p7s",
  4268. "lib/net46/Microsoft.OpenApi.dll",
  4269. "lib/net46/Microsoft.OpenApi.pdb",
  4270. "lib/net46/Microsoft.OpenApi.xml",
  4271. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4272. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4273. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4274. "microsoft.openapi.1.2.3.nupkg.sha512",
  4275. "microsoft.openapi.nuspec"
  4276. ]
  4277. },
  4278. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4279. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4280. "type": "package",
  4281. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4282. "hasTools": true,
  4283. "files": [
  4284. ".nupkg.metadata",
  4285. ".signature.p7s",
  4286. "CHANGELOG.md",
  4287. "EULA.md",
  4288. "ThirdPartyNotices.txt",
  4289. "build/Container.props",
  4290. "build/Container.targets",
  4291. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4292. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4293. "build/Rules/GeneralBrowseObject.xaml",
  4294. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4295. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4296. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4297. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4298. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4299. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4300. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4301. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4302. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4303. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4304. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4305. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4306. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4307. "build/ToolsTarget.props",
  4308. "build/ToolsTarget.targets",
  4309. "icon.png",
  4310. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4311. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4312. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4313. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4314. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4315. "tools/Newtonsoft.Json.dll",
  4316. "tools/System.Security.Principal.Windows.dll",
  4317. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4318. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4319. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4320. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4321. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4322. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4323. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4324. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4325. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4326. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4327. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4328. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4329. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4330. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4331. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4332. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4333. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4334. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4335. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4336. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4337. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4338. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4339. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4340. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4341. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4342. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4343. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4344. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4345. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4346. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4347. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4348. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4349. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4350. "tools/utils/KillProcess.exe",
  4351. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4352. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4353. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4354. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4355. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4356. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4357. ]
  4358. },
  4359. "Microsoft.Win32.Primitives/4.3.0": {
  4360. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4361. "type": "package",
  4362. "path": "microsoft.win32.primitives/4.3.0",
  4363. "files": [
  4364. ".nupkg.metadata",
  4365. ".signature.p7s",
  4366. "ThirdPartyNotices.txt",
  4367. "dotnet_library_license.txt",
  4368. "lib/MonoAndroid10/_._",
  4369. "lib/MonoTouch10/_._",
  4370. "lib/net46/Microsoft.Win32.Primitives.dll",
  4371. "lib/xamarinios10/_._",
  4372. "lib/xamarinmac20/_._",
  4373. "lib/xamarintvos10/_._",
  4374. "lib/xamarinwatchos10/_._",
  4375. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4376. "microsoft.win32.primitives.nuspec",
  4377. "ref/MonoAndroid10/_._",
  4378. "ref/MonoTouch10/_._",
  4379. "ref/net46/Microsoft.Win32.Primitives.dll",
  4380. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4381. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4382. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4383. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4384. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4385. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4386. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4387. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4388. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4389. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4390. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4391. "ref/xamarinios10/_._",
  4392. "ref/xamarinmac20/_._",
  4393. "ref/xamarintvos10/_._",
  4394. "ref/xamarinwatchos10/_._"
  4395. ]
  4396. },
  4397. "Microsoft.Win32.SystemEvents/5.0.0": {
  4398. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4399. "type": "package",
  4400. "path": "microsoft.win32.systemevents/5.0.0",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "Icon.png",
  4405. "LICENSE.TXT",
  4406. "THIRD-PARTY-NOTICES.TXT",
  4407. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4408. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4409. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4410. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4411. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4412. "microsoft.win32.systemevents.nuspec",
  4413. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4414. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4415. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4416. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4417. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4418. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4419. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4420. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4421. "useSharedDesignerContext.txt",
  4422. "version.txt"
  4423. ]
  4424. },
  4425. "MQTTnet/4.3.7.1207": {
  4426. "sha512": "ah7aHXoedWp5m5a4zy2u4phOEVj0QFYzOb5tFKQeV8RRBrxp+1QREF4ymZuG8D+hzB2dhtrrG81WxTFv0PzOeQ==",
  4427. "type": "package",
  4428. "path": "mqttnet/4.3.7.1207",
  4429. "files": [
  4430. ".nupkg.metadata",
  4431. ".signature.p7s",
  4432. "lib/net452/MQTTnet.dll",
  4433. "lib/net452/MQTTnet.xml",
  4434. "lib/net461/MQTTnet.dll",
  4435. "lib/net461/MQTTnet.xml",
  4436. "lib/net48/MQTTnet.dll",
  4437. "lib/net48/MQTTnet.xml",
  4438. "lib/net5.0/MQTTnet.dll",
  4439. "lib/net5.0/MQTTnet.xml",
  4440. "lib/net6.0/MQTTnet.dll",
  4441. "lib/net6.0/MQTTnet.xml",
  4442. "lib/net7.0/MQTTnet.dll",
  4443. "lib/net7.0/MQTTnet.xml",
  4444. "lib/netcoreapp3.1/MQTTnet.dll",
  4445. "lib/netcoreapp3.1/MQTTnet.xml",
  4446. "lib/netstandard1.3/MQTTnet.dll",
  4447. "lib/netstandard1.3/MQTTnet.xml",
  4448. "lib/netstandard2.0/MQTTnet.dll",
  4449. "lib/netstandard2.0/MQTTnet.xml",
  4450. "lib/netstandard2.1/MQTTnet.dll",
  4451. "lib/netstandard2.1/MQTTnet.xml",
  4452. "lib/uap10.0.10240/MQTTnet.dll",
  4453. "lib/uap10.0.10240/MQTTnet.pri",
  4454. "lib/uap10.0.10240/MQTTnet.xml",
  4455. "mqttnet.4.3.7.1207.nupkg.sha512",
  4456. "mqttnet.nuspec",
  4457. "nuget.png"
  4458. ]
  4459. },
  4460. "MQTTnet.AspNetCore/4.3.7.1207": {
  4461. "sha512": "aDtlDjDv65kK0J3/SeagD9h1/xAzxSjbIMEQOzwChyv9mZt79KRRX0TIHQ03SyXfsRC6yyOcyqJxIp8K7FON1A==",
  4462. "type": "package",
  4463. "path": "mqttnet.aspnetcore/4.3.7.1207",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4468. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4469. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4470. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4471. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4472. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4473. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4474. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4475. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4476. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4477. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4478. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4479. "mqttnet.aspnetcore.4.3.7.1207.nupkg.sha512",
  4480. "mqttnet.aspnetcore.nuspec",
  4481. "nuget.png"
  4482. ]
  4483. },
  4484. "MySql.Data/8.0.23": {
  4485. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4486. "type": "package",
  4487. "path": "mysql.data/8.0.23",
  4488. "files": [
  4489. ".nupkg.metadata",
  4490. ".signature.p7s",
  4491. "lib/net452/MySql.Data.dll",
  4492. "lib/net452/MySql.Data.xml",
  4493. "lib/net452/Ubiety.Dns.Core.dll",
  4494. "lib/net452/Zstandard.Net.dll",
  4495. "lib/net48/MySql.Data.dll",
  4496. "lib/net48/MySql.Data.xml",
  4497. "lib/net48/Ubiety.Dns.Core.dll",
  4498. "lib/net48/Zstandard.Net.dll",
  4499. "lib/net5.0/MySql.Data.dll",
  4500. "lib/net5.0/MySql.Data.xml",
  4501. "lib/net5.0/Ubiety.Dns.Core.dll",
  4502. "lib/net5.0/Zstandard.Net.dll",
  4503. "lib/netstandard2.0/MySql.Data.dll",
  4504. "lib/netstandard2.0/MySql.Data.xml",
  4505. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4506. "lib/netstandard2.0/Zstandard.Net.dll",
  4507. "lib/netstandard2.1/MySql.Data.dll",
  4508. "lib/netstandard2.1/MySql.Data.xml",
  4509. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4510. "lib/netstandard2.1/Zstandard.Net.dll",
  4511. "mysql.data.8.0.23.nupkg.sha512",
  4512. "mysql.data.nuspec"
  4513. ]
  4514. },
  4515. "MySqlConnector/1.1.0": {
  4516. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4517. "type": "package",
  4518. "path": "mysqlconnector/1.1.0",
  4519. "files": [
  4520. ".nupkg.metadata",
  4521. ".signature.p7s",
  4522. "lib/net45/MySqlConnector.dll",
  4523. "lib/net45/MySqlConnector.xml",
  4524. "lib/net461/MySqlConnector.dll",
  4525. "lib/net461/MySqlConnector.xml",
  4526. "lib/net471/MySqlConnector.dll",
  4527. "lib/net471/MySqlConnector.xml",
  4528. "lib/net5.0/MySqlConnector.dll",
  4529. "lib/net5.0/MySqlConnector.xml",
  4530. "lib/netcoreapp2.1/MySqlConnector.dll",
  4531. "lib/netcoreapp2.1/MySqlConnector.xml",
  4532. "lib/netcoreapp3.1/MySqlConnector.dll",
  4533. "lib/netcoreapp3.1/MySqlConnector.xml",
  4534. "lib/netstandard1.3/MySqlConnector.dll",
  4535. "lib/netstandard1.3/MySqlConnector.xml",
  4536. "lib/netstandard2.0/MySqlConnector.dll",
  4537. "lib/netstandard2.0/MySqlConnector.xml",
  4538. "lib/netstandard2.1/MySqlConnector.dll",
  4539. "lib/netstandard2.1/MySqlConnector.xml",
  4540. "logo.png",
  4541. "mysqlconnector.1.1.0.nupkg.sha512",
  4542. "mysqlconnector.nuspec"
  4543. ]
  4544. },
  4545. "NETStandard.Library/1.6.1": {
  4546. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4547. "type": "package",
  4548. "path": "netstandard.library/1.6.1",
  4549. "files": [
  4550. ".nupkg.metadata",
  4551. ".signature.p7s",
  4552. "ThirdPartyNotices.txt",
  4553. "dotnet_library_license.txt",
  4554. "netstandard.library.1.6.1.nupkg.sha512",
  4555. "netstandard.library.nuspec"
  4556. ]
  4557. },
  4558. "Newtonsoft.Json/13.0.1": {
  4559. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4560. "type": "package",
  4561. "path": "newtonsoft.json/13.0.1",
  4562. "files": [
  4563. ".nupkg.metadata",
  4564. ".signature.p7s",
  4565. "LICENSE.md",
  4566. "lib/net20/Newtonsoft.Json.dll",
  4567. "lib/net20/Newtonsoft.Json.xml",
  4568. "lib/net35/Newtonsoft.Json.dll",
  4569. "lib/net35/Newtonsoft.Json.xml",
  4570. "lib/net40/Newtonsoft.Json.dll",
  4571. "lib/net40/Newtonsoft.Json.xml",
  4572. "lib/net45/Newtonsoft.Json.dll",
  4573. "lib/net45/Newtonsoft.Json.xml",
  4574. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4575. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4576. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4577. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4578. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4579. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4580. "newtonsoft.json.13.0.1.nupkg.sha512",
  4581. "newtonsoft.json.nuspec",
  4582. "packageIcon.png"
  4583. ]
  4584. },
  4585. "Nito.AsyncEx.Coordination/5.0.0": {
  4586. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4587. "type": "package",
  4588. "path": "nito.asyncex.coordination/5.0.0",
  4589. "files": [
  4590. ".nupkg.metadata",
  4591. ".signature.p7s",
  4592. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4593. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4594. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4595. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4596. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4597. "nito.asyncex.coordination.nuspec"
  4598. ]
  4599. },
  4600. "Nito.AsyncEx.Tasks/5.0.0": {
  4601. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4602. "type": "package",
  4603. "path": "nito.asyncex.tasks/5.0.0",
  4604. "files": [
  4605. ".nupkg.metadata",
  4606. ".signature.p7s",
  4607. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4608. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4609. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4610. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4611. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4612. "nito.asyncex.tasks.nuspec"
  4613. ]
  4614. },
  4615. "Nito.Collections.Deque/1.0.4": {
  4616. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4617. "type": "package",
  4618. "path": "nito.collections.deque/1.0.4",
  4619. "files": [
  4620. ".nupkg.metadata",
  4621. ".signature.p7s",
  4622. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4623. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4624. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4625. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4626. "nito.collections.deque.1.0.4.nupkg.sha512",
  4627. "nito.collections.deque.nuspec"
  4628. ]
  4629. },
  4630. "Nito.Disposables/2.0.0": {
  4631. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4632. "type": "package",
  4633. "path": "nito.disposables/2.0.0",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "lib/netstandard1.0/Nito.Disposables.dll",
  4638. "lib/netstandard1.0/Nito.Disposables.pdb",
  4639. "lib/netstandard1.0/Nito.Disposables.xml",
  4640. "lib/netstandard2.0/Nito.Disposables.dll",
  4641. "lib/netstandard2.0/Nito.Disposables.pdb",
  4642. "lib/netstandard2.0/Nito.Disposables.xml",
  4643. "nito.disposables.2.0.0.nupkg.sha512",
  4644. "nito.disposables.nuspec"
  4645. ]
  4646. },
  4647. "NodaTime/2.4.7": {
  4648. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4649. "type": "package",
  4650. "path": "nodatime/2.4.7",
  4651. "files": [
  4652. ".nupkg.metadata",
  4653. ".signature.p7s",
  4654. "lib/net45/NodaTime.dll",
  4655. "lib/net45/NodaTime.pdb",
  4656. "lib/net45/NodaTime.xml",
  4657. "lib/netstandard1.3/NodaTime.dll",
  4658. "lib/netstandard1.3/NodaTime.pdb",
  4659. "lib/netstandard1.3/NodaTime.xml",
  4660. "lib/netstandard2.0/NodaTime.dll",
  4661. "lib/netstandard2.0/NodaTime.pdb",
  4662. "lib/netstandard2.0/NodaTime.xml",
  4663. "nodatime.2.4.7.nupkg.sha512",
  4664. "nodatime.nuspec"
  4665. ]
  4666. },
  4667. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4668. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4669. "type": "package",
  4670. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4671. "files": [
  4672. ".nupkg.metadata",
  4673. ".signature.p7s",
  4674. "icon.png",
  4675. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4676. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4677. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4678. "pomelo.entityframeworkcore.mysql.nuspec"
  4679. ]
  4680. },
  4681. "QRCoder/1.4.3": {
  4682. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4683. "type": "package",
  4684. "path": "qrcoder/1.4.3",
  4685. "files": [
  4686. ".nupkg.metadata",
  4687. ".signature.p7s",
  4688. "lib/net35/QRCoder.dll",
  4689. "lib/net40/QRCoder.dll",
  4690. "lib/net5.0-windows7.0/QRCoder.dll",
  4691. "lib/net5.0/QRCoder.dll",
  4692. "lib/net6.0-windows7.0/QRCoder.dll",
  4693. "lib/net6.0/QRCoder.dll",
  4694. "lib/netstandard1.3/QRCoder.dll",
  4695. "lib/netstandard2.0/QRCoder.dll",
  4696. "nuget-icon.png",
  4697. "nuget-readme.md",
  4698. "qrcoder.1.4.3.nupkg.sha512",
  4699. "qrcoder.nuspec"
  4700. ]
  4701. },
  4702. "RabbitMQ.Client/6.8.1": {
  4703. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4704. "type": "package",
  4705. "path": "rabbitmq.client/6.8.1",
  4706. "files": [
  4707. ".nupkg.metadata",
  4708. ".signature.p7s",
  4709. "README.md",
  4710. "icon.png",
  4711. "lib/net462/RabbitMQ.Client.dll",
  4712. "lib/net462/RabbitMQ.Client.xml",
  4713. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4714. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4715. "rabbitmq.client.6.8.1.nupkg.sha512",
  4716. "rabbitmq.client.nuspec"
  4717. ]
  4718. },
  4719. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4720. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4721. "type": "package",
  4722. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4723. "files": [
  4724. ".nupkg.metadata",
  4725. ".signature.p7s",
  4726. "ThirdPartyNotices.txt",
  4727. "dotnet_library_license.txt",
  4728. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4729. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4730. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4731. ]
  4732. },
  4733. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4734. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4735. "type": "package",
  4736. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4737. "files": [
  4738. ".nupkg.metadata",
  4739. ".signature.p7s",
  4740. "ThirdPartyNotices.txt",
  4741. "dotnet_library_license.txt",
  4742. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4743. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4744. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4745. ]
  4746. },
  4747. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4748. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4749. "type": "package",
  4750. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4751. "files": [
  4752. ".nupkg.metadata",
  4753. ".signature.p7s",
  4754. "ThirdPartyNotices.txt",
  4755. "dotnet_library_license.txt",
  4756. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4757. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4758. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4759. ]
  4760. },
  4761. "runtime.native.System/4.3.0": {
  4762. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4763. "type": "package",
  4764. "path": "runtime.native.system/4.3.0",
  4765. "files": [
  4766. ".nupkg.metadata",
  4767. ".signature.p7s",
  4768. "ThirdPartyNotices.txt",
  4769. "dotnet_library_license.txt",
  4770. "lib/netstandard1.0/_._",
  4771. "runtime.native.system.4.3.0.nupkg.sha512",
  4772. "runtime.native.system.nuspec"
  4773. ]
  4774. },
  4775. "runtime.native.System.IO.Compression/4.3.0": {
  4776. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4777. "type": "package",
  4778. "path": "runtime.native.system.io.compression/4.3.0",
  4779. "files": [
  4780. ".nupkg.metadata",
  4781. ".signature.p7s",
  4782. "ThirdPartyNotices.txt",
  4783. "dotnet_library_license.txt",
  4784. "lib/netstandard1.0/_._",
  4785. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4786. "runtime.native.system.io.compression.nuspec"
  4787. ]
  4788. },
  4789. "runtime.native.System.Net.Http/4.3.0": {
  4790. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4791. "type": "package",
  4792. "path": "runtime.native.system.net.http/4.3.0",
  4793. "files": [
  4794. ".nupkg.metadata",
  4795. ".signature.p7s",
  4796. "ThirdPartyNotices.txt",
  4797. "dotnet_library_license.txt",
  4798. "lib/netstandard1.0/_._",
  4799. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4800. "runtime.native.system.net.http.nuspec"
  4801. ]
  4802. },
  4803. "runtime.native.System.Net.Security/4.3.0": {
  4804. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4805. "type": "package",
  4806. "path": "runtime.native.system.net.security/4.3.0",
  4807. "files": [
  4808. ".nupkg.metadata",
  4809. ".signature.p7s",
  4810. "ThirdPartyNotices.txt",
  4811. "dotnet_library_license.txt",
  4812. "lib/netstandard1.0/_._",
  4813. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4814. "runtime.native.system.net.security.nuspec"
  4815. ]
  4816. },
  4817. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4818. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4819. "type": "package",
  4820. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4821. "files": [
  4822. ".nupkg.metadata",
  4823. ".signature.p7s",
  4824. "ThirdPartyNotices.txt",
  4825. "dotnet_library_license.txt",
  4826. "lib/netstandard1.0/_._",
  4827. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4828. "runtime.native.system.security.cryptography.apple.nuspec"
  4829. ]
  4830. },
  4831. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4832. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4833. "type": "package",
  4834. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4835. "files": [
  4836. ".nupkg.metadata",
  4837. ".signature.p7s",
  4838. "ThirdPartyNotices.txt",
  4839. "dotnet_library_license.txt",
  4840. "lib/netstandard1.0/_._",
  4841. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4842. "runtime.native.system.security.cryptography.openssl.nuspec"
  4843. ]
  4844. },
  4845. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4846. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4847. "type": "package",
  4848. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4849. "files": [
  4850. ".nupkg.metadata",
  4851. ".signature.p7s",
  4852. "ThirdPartyNotices.txt",
  4853. "dotnet_library_license.txt",
  4854. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4855. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4856. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4857. ]
  4858. },
  4859. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4860. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4861. "type": "package",
  4862. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4863. "files": [
  4864. ".nupkg.metadata",
  4865. ".signature.p7s",
  4866. "ThirdPartyNotices.txt",
  4867. "dotnet_library_license.txt",
  4868. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4869. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4870. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4871. ]
  4872. },
  4873. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4874. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4875. "type": "package",
  4876. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4877. "files": [
  4878. ".nupkg.metadata",
  4879. ".signature.p7s",
  4880. "ThirdPartyNotices.txt",
  4881. "dotnet_library_license.txt",
  4882. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4883. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4884. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4885. ]
  4886. },
  4887. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4888. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4889. "type": "package",
  4890. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4891. "files": [
  4892. ".nupkg.metadata",
  4893. ".signature.p7s",
  4894. "ThirdPartyNotices.txt",
  4895. "dotnet_library_license.txt",
  4896. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4897. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4898. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4899. ]
  4900. },
  4901. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4902. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4903. "type": "package",
  4904. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4905. "files": [
  4906. ".nupkg.metadata",
  4907. ".signature.p7s",
  4908. "ThirdPartyNotices.txt",
  4909. "dotnet_library_license.txt",
  4910. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4911. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4912. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4913. ]
  4914. },
  4915. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4916. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4917. "type": "package",
  4918. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4919. "files": [
  4920. ".nupkg.metadata",
  4921. ".signature.p7s",
  4922. "ThirdPartyNotices.txt",
  4923. "dotnet_library_license.txt",
  4924. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4925. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4926. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4927. ]
  4928. },
  4929. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4930. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4931. "type": "package",
  4932. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4933. "files": [
  4934. ".nupkg.metadata",
  4935. ".signature.p7s",
  4936. "ThirdPartyNotices.txt",
  4937. "dotnet_library_license.txt",
  4938. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4939. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4940. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4941. ]
  4942. },
  4943. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4944. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4945. "type": "package",
  4946. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4947. "files": [
  4948. ".nupkg.metadata",
  4949. ".signature.p7s",
  4950. "ThirdPartyNotices.txt",
  4951. "dotnet_library_license.txt",
  4952. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4953. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4954. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4955. ]
  4956. },
  4957. "SixLabors.ImageSharp/2.1.6": {
  4958. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4959. "type": "package",
  4960. "path": "sixlabors.imagesharp/2.1.6",
  4961. "files": [
  4962. ".nupkg.metadata",
  4963. ".signature.p7s",
  4964. "lib/net472/SixLabors.ImageSharp.dll",
  4965. "lib/net472/SixLabors.ImageSharp.xml",
  4966. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4967. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4968. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4969. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4970. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4971. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4972. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4973. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4974. "sixlabors.imagesharp.128.png",
  4975. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4976. "sixlabors.imagesharp.nuspec"
  4977. ]
  4978. },
  4979. "SSH.NET/2020.0.0-beta1": {
  4980. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4981. "type": "package",
  4982. "path": "ssh.net/2020.0.0-beta1",
  4983. "files": [
  4984. ".nupkg.metadata",
  4985. ".signature.p7s",
  4986. "lib/net35/Renci.SshNet.dll",
  4987. "lib/net35/Renci.SshNet.xml",
  4988. "lib/net40/Renci.SshNet.dll",
  4989. "lib/net40/Renci.SshNet.xml",
  4990. "lib/netstandard1.3/Renci.SshNet.dll",
  4991. "lib/netstandard1.3/Renci.SshNet.xml",
  4992. "lib/netstandard2.0/Renci.SshNet.dll",
  4993. "lib/netstandard2.0/Renci.SshNet.xml",
  4994. "lib/sl4/Renci.SshNet.dll",
  4995. "lib/sl4/Renci.SshNet.xml",
  4996. "lib/sl5/Renci.SshNet.dll",
  4997. "lib/sl5/Renci.SshNet.xml",
  4998. "lib/uap10/Renci.SshNet.dll",
  4999. "lib/uap10/Renci.SshNet.xml",
  5000. "lib/wp71/Renci.SshNet.dll",
  5001. "lib/wp71/Renci.SshNet.xml",
  5002. "lib/wp8/Renci.SshNet.dll",
  5003. "lib/wp8/Renci.SshNet.xml",
  5004. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5005. "ssh.net.nuspec"
  5006. ]
  5007. },
  5008. "SshNet.Security.Cryptography/1.3.0": {
  5009. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5010. "type": "package",
  5011. "path": "sshnet.security.cryptography/1.3.0",
  5012. "files": [
  5013. ".nupkg.metadata",
  5014. ".signature.p7s",
  5015. "lib/net20/SshNet.Security.Cryptography.dll",
  5016. "lib/net20/SshNet.Security.Cryptography.xml",
  5017. "lib/net40/SshNet.Security.Cryptography.dll",
  5018. "lib/net40/SshNet.Security.Cryptography.xml",
  5019. "lib/net45/SshNet.Security.Cryptography.dll",
  5020. "lib/net45/SshNet.Security.Cryptography.xml",
  5021. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5022. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5023. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5024. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5025. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5026. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5027. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5028. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5029. "lib/sl4/SshNet.Security.Cryptography.dll",
  5030. "lib/sl4/SshNet.Security.Cryptography.xml",
  5031. "lib/sl5/SshNet.Security.Cryptography.dll",
  5032. "lib/sl5/SshNet.Security.Cryptography.xml",
  5033. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5034. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5035. "lib/wp71/SshNet.Security.Cryptography.dll",
  5036. "lib/wp71/SshNet.Security.Cryptography.xml",
  5037. "lib/wp8/SshNet.Security.Cryptography.dll",
  5038. "lib/wp8/SshNet.Security.Cryptography.xml",
  5039. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5040. "sshnet.security.cryptography.nuspec"
  5041. ]
  5042. },
  5043. "StackExchange.Redis/1.2.4": {
  5044. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5045. "type": "package",
  5046. "path": "stackexchange.redis/1.2.4",
  5047. "files": [
  5048. ".nupkg.metadata",
  5049. ".signature.p7s",
  5050. "lib/net45/StackExchange.Redis.dll",
  5051. "lib/net45/StackExchange.Redis.xml",
  5052. "lib/net46/StackExchange.Redis.dll",
  5053. "lib/net46/StackExchange.Redis.xml",
  5054. "lib/netstandard1.5/StackExchange.Redis.dll",
  5055. "lib/netstandard1.5/StackExchange.Redis.xml",
  5056. "stackexchange.redis.1.2.4.nupkg.sha512",
  5057. "stackexchange.redis.nuspec"
  5058. ]
  5059. },
  5060. "Swashbuckle.AspNetCore/5.6.3": {
  5061. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5062. "type": "package",
  5063. "path": "swashbuckle.aspnetcore/5.6.3",
  5064. "files": [
  5065. ".nupkg.metadata",
  5066. ".signature.p7s",
  5067. "build/Swashbuckle.AspNetCore.props",
  5068. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5069. "swashbuckle.aspnetcore.nuspec"
  5070. ]
  5071. },
  5072. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5073. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5074. "type": "package",
  5075. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5076. "files": [
  5077. ".nupkg.metadata",
  5078. ".signature.p7s",
  5079. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5080. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5081. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5082. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5083. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5084. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5085. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5086. "swashbuckle.aspnetcore.swagger.nuspec"
  5087. ]
  5088. },
  5089. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5090. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5091. "type": "package",
  5092. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5093. "files": [
  5094. ".nupkg.metadata",
  5095. ".signature.p7s",
  5096. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5097. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5098. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5099. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5100. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5101. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5102. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5103. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5104. ]
  5105. },
  5106. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5107. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5108. "type": "package",
  5109. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5114. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5115. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5116. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5117. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5118. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5119. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5120. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5121. ]
  5122. },
  5123. "System.AppContext/4.3.0": {
  5124. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5125. "type": "package",
  5126. "path": "system.appcontext/4.3.0",
  5127. "files": [
  5128. ".nupkg.metadata",
  5129. ".signature.p7s",
  5130. "ThirdPartyNotices.txt",
  5131. "dotnet_library_license.txt",
  5132. "lib/MonoAndroid10/_._",
  5133. "lib/MonoTouch10/_._",
  5134. "lib/net46/System.AppContext.dll",
  5135. "lib/net463/System.AppContext.dll",
  5136. "lib/netcore50/System.AppContext.dll",
  5137. "lib/netstandard1.6/System.AppContext.dll",
  5138. "lib/xamarinios10/_._",
  5139. "lib/xamarinmac20/_._",
  5140. "lib/xamarintvos10/_._",
  5141. "lib/xamarinwatchos10/_._",
  5142. "ref/MonoAndroid10/_._",
  5143. "ref/MonoTouch10/_._",
  5144. "ref/net46/System.AppContext.dll",
  5145. "ref/net463/System.AppContext.dll",
  5146. "ref/netstandard/_._",
  5147. "ref/netstandard1.3/System.AppContext.dll",
  5148. "ref/netstandard1.3/System.AppContext.xml",
  5149. "ref/netstandard1.3/de/System.AppContext.xml",
  5150. "ref/netstandard1.3/es/System.AppContext.xml",
  5151. "ref/netstandard1.3/fr/System.AppContext.xml",
  5152. "ref/netstandard1.3/it/System.AppContext.xml",
  5153. "ref/netstandard1.3/ja/System.AppContext.xml",
  5154. "ref/netstandard1.3/ko/System.AppContext.xml",
  5155. "ref/netstandard1.3/ru/System.AppContext.xml",
  5156. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5157. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5158. "ref/netstandard1.6/System.AppContext.dll",
  5159. "ref/netstandard1.6/System.AppContext.xml",
  5160. "ref/netstandard1.6/de/System.AppContext.xml",
  5161. "ref/netstandard1.6/es/System.AppContext.xml",
  5162. "ref/netstandard1.6/fr/System.AppContext.xml",
  5163. "ref/netstandard1.6/it/System.AppContext.xml",
  5164. "ref/netstandard1.6/ja/System.AppContext.xml",
  5165. "ref/netstandard1.6/ko/System.AppContext.xml",
  5166. "ref/netstandard1.6/ru/System.AppContext.xml",
  5167. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5168. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5169. "ref/xamarinios10/_._",
  5170. "ref/xamarinmac20/_._",
  5171. "ref/xamarintvos10/_._",
  5172. "ref/xamarinwatchos10/_._",
  5173. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5174. "system.appcontext.4.3.0.nupkg.sha512",
  5175. "system.appcontext.nuspec"
  5176. ]
  5177. },
  5178. "System.Buffers/4.5.1": {
  5179. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5180. "type": "package",
  5181. "path": "system.buffers/4.5.1",
  5182. "files": [
  5183. ".nupkg.metadata",
  5184. ".signature.p7s",
  5185. "LICENSE.TXT",
  5186. "THIRD-PARTY-NOTICES.TXT",
  5187. "lib/net461/System.Buffers.dll",
  5188. "lib/net461/System.Buffers.xml",
  5189. "lib/netcoreapp2.0/_._",
  5190. "lib/netstandard1.1/System.Buffers.dll",
  5191. "lib/netstandard1.1/System.Buffers.xml",
  5192. "lib/netstandard2.0/System.Buffers.dll",
  5193. "lib/netstandard2.0/System.Buffers.xml",
  5194. "lib/uap10.0.16299/_._",
  5195. "ref/net45/System.Buffers.dll",
  5196. "ref/net45/System.Buffers.xml",
  5197. "ref/netcoreapp2.0/_._",
  5198. "ref/netstandard1.1/System.Buffers.dll",
  5199. "ref/netstandard1.1/System.Buffers.xml",
  5200. "ref/netstandard2.0/System.Buffers.dll",
  5201. "ref/netstandard2.0/System.Buffers.xml",
  5202. "ref/uap10.0.16299/_._",
  5203. "system.buffers.4.5.1.nupkg.sha512",
  5204. "system.buffers.nuspec",
  5205. "useSharedDesignerContext.txt",
  5206. "version.txt"
  5207. ]
  5208. },
  5209. "System.Collections/4.3.0": {
  5210. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5211. "type": "package",
  5212. "path": "system.collections/4.3.0",
  5213. "files": [
  5214. ".nupkg.metadata",
  5215. ".signature.p7s",
  5216. "ThirdPartyNotices.txt",
  5217. "dotnet_library_license.txt",
  5218. "lib/MonoAndroid10/_._",
  5219. "lib/MonoTouch10/_._",
  5220. "lib/net45/_._",
  5221. "lib/portable-net45+win8+wp8+wpa81/_._",
  5222. "lib/win8/_._",
  5223. "lib/wp80/_._",
  5224. "lib/wpa81/_._",
  5225. "lib/xamarinios10/_._",
  5226. "lib/xamarinmac20/_._",
  5227. "lib/xamarintvos10/_._",
  5228. "lib/xamarinwatchos10/_._",
  5229. "ref/MonoAndroid10/_._",
  5230. "ref/MonoTouch10/_._",
  5231. "ref/net45/_._",
  5232. "ref/netcore50/System.Collections.dll",
  5233. "ref/netcore50/System.Collections.xml",
  5234. "ref/netcore50/de/System.Collections.xml",
  5235. "ref/netcore50/es/System.Collections.xml",
  5236. "ref/netcore50/fr/System.Collections.xml",
  5237. "ref/netcore50/it/System.Collections.xml",
  5238. "ref/netcore50/ja/System.Collections.xml",
  5239. "ref/netcore50/ko/System.Collections.xml",
  5240. "ref/netcore50/ru/System.Collections.xml",
  5241. "ref/netcore50/zh-hans/System.Collections.xml",
  5242. "ref/netcore50/zh-hant/System.Collections.xml",
  5243. "ref/netstandard1.0/System.Collections.dll",
  5244. "ref/netstandard1.0/System.Collections.xml",
  5245. "ref/netstandard1.0/de/System.Collections.xml",
  5246. "ref/netstandard1.0/es/System.Collections.xml",
  5247. "ref/netstandard1.0/fr/System.Collections.xml",
  5248. "ref/netstandard1.0/it/System.Collections.xml",
  5249. "ref/netstandard1.0/ja/System.Collections.xml",
  5250. "ref/netstandard1.0/ko/System.Collections.xml",
  5251. "ref/netstandard1.0/ru/System.Collections.xml",
  5252. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5253. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5254. "ref/netstandard1.3/System.Collections.dll",
  5255. "ref/netstandard1.3/System.Collections.xml",
  5256. "ref/netstandard1.3/de/System.Collections.xml",
  5257. "ref/netstandard1.3/es/System.Collections.xml",
  5258. "ref/netstandard1.3/fr/System.Collections.xml",
  5259. "ref/netstandard1.3/it/System.Collections.xml",
  5260. "ref/netstandard1.3/ja/System.Collections.xml",
  5261. "ref/netstandard1.3/ko/System.Collections.xml",
  5262. "ref/netstandard1.3/ru/System.Collections.xml",
  5263. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5264. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5265. "ref/portable-net45+win8+wp8+wpa81/_._",
  5266. "ref/win8/_._",
  5267. "ref/wp80/_._",
  5268. "ref/wpa81/_._",
  5269. "ref/xamarinios10/_._",
  5270. "ref/xamarinmac20/_._",
  5271. "ref/xamarintvos10/_._",
  5272. "ref/xamarinwatchos10/_._",
  5273. "system.collections.4.3.0.nupkg.sha512",
  5274. "system.collections.nuspec"
  5275. ]
  5276. },
  5277. "System.Collections.Concurrent/4.3.0": {
  5278. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5279. "type": "package",
  5280. "path": "system.collections.concurrent/4.3.0",
  5281. "files": [
  5282. ".nupkg.metadata",
  5283. ".signature.p7s",
  5284. "ThirdPartyNotices.txt",
  5285. "dotnet_library_license.txt",
  5286. "lib/MonoAndroid10/_._",
  5287. "lib/MonoTouch10/_._",
  5288. "lib/net45/_._",
  5289. "lib/netcore50/System.Collections.Concurrent.dll",
  5290. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5291. "lib/portable-net45+win8+wpa81/_._",
  5292. "lib/win8/_._",
  5293. "lib/wpa81/_._",
  5294. "lib/xamarinios10/_._",
  5295. "lib/xamarinmac20/_._",
  5296. "lib/xamarintvos10/_._",
  5297. "lib/xamarinwatchos10/_._",
  5298. "ref/MonoAndroid10/_._",
  5299. "ref/MonoTouch10/_._",
  5300. "ref/net45/_._",
  5301. "ref/netcore50/System.Collections.Concurrent.dll",
  5302. "ref/netcore50/System.Collections.Concurrent.xml",
  5303. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5304. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5305. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5306. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5307. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5308. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5309. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5310. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5311. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5312. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5313. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5314. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5315. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5316. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5317. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5318. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5319. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5320. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5321. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5322. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5323. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5324. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5325. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5326. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5327. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5328. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5329. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5330. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5331. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5332. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5333. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5334. "ref/portable-net45+win8+wpa81/_._",
  5335. "ref/win8/_._",
  5336. "ref/wpa81/_._",
  5337. "ref/xamarinios10/_._",
  5338. "ref/xamarinmac20/_._",
  5339. "ref/xamarintvos10/_._",
  5340. "ref/xamarinwatchos10/_._",
  5341. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5342. "system.collections.concurrent.nuspec"
  5343. ]
  5344. },
  5345. "System.Collections.Immutable/5.0.0": {
  5346. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5347. "type": "package",
  5348. "path": "system.collections.immutable/5.0.0",
  5349. "files": [
  5350. ".nupkg.metadata",
  5351. ".signature.p7s",
  5352. "Icon.png",
  5353. "LICENSE.TXT",
  5354. "THIRD-PARTY-NOTICES.TXT",
  5355. "lib/net461/System.Collections.Immutable.dll",
  5356. "lib/net461/System.Collections.Immutable.xml",
  5357. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5358. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5359. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5360. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5361. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5362. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5363. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5364. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5365. "system.collections.immutable.5.0.0.nupkg.sha512",
  5366. "system.collections.immutable.nuspec",
  5367. "useSharedDesignerContext.txt",
  5368. "version.txt"
  5369. ]
  5370. },
  5371. "System.Collections.NonGeneric/4.3.0": {
  5372. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5373. "type": "package",
  5374. "path": "system.collections.nongeneric/4.3.0",
  5375. "files": [
  5376. ".nupkg.metadata",
  5377. ".signature.p7s",
  5378. "ThirdPartyNotices.txt",
  5379. "dotnet_library_license.txt",
  5380. "lib/MonoAndroid10/_._",
  5381. "lib/MonoTouch10/_._",
  5382. "lib/net46/System.Collections.NonGeneric.dll",
  5383. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5384. "lib/xamarinios10/_._",
  5385. "lib/xamarinmac20/_._",
  5386. "lib/xamarintvos10/_._",
  5387. "lib/xamarinwatchos10/_._",
  5388. "ref/MonoAndroid10/_._",
  5389. "ref/MonoTouch10/_._",
  5390. "ref/net46/System.Collections.NonGeneric.dll",
  5391. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5392. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5393. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5394. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5395. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5396. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5397. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5398. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5399. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5400. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5401. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5402. "ref/xamarinios10/_._",
  5403. "ref/xamarinmac20/_._",
  5404. "ref/xamarintvos10/_._",
  5405. "ref/xamarinwatchos10/_._",
  5406. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5407. "system.collections.nongeneric.nuspec"
  5408. ]
  5409. },
  5410. "System.ComponentModel/4.3.0": {
  5411. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5412. "type": "package",
  5413. "path": "system.componentmodel/4.3.0",
  5414. "files": [
  5415. ".nupkg.metadata",
  5416. ".signature.p7s",
  5417. "ThirdPartyNotices.txt",
  5418. "dotnet_library_license.txt",
  5419. "lib/MonoAndroid10/_._",
  5420. "lib/MonoTouch10/_._",
  5421. "lib/net45/_._",
  5422. "lib/netcore50/System.ComponentModel.dll",
  5423. "lib/netstandard1.3/System.ComponentModel.dll",
  5424. "lib/portable-net45+win8+wp8+wpa81/_._",
  5425. "lib/win8/_._",
  5426. "lib/wp80/_._",
  5427. "lib/wpa81/_._",
  5428. "lib/xamarinios10/_._",
  5429. "lib/xamarinmac20/_._",
  5430. "lib/xamarintvos10/_._",
  5431. "lib/xamarinwatchos10/_._",
  5432. "ref/MonoAndroid10/_._",
  5433. "ref/MonoTouch10/_._",
  5434. "ref/net45/_._",
  5435. "ref/netcore50/System.ComponentModel.dll",
  5436. "ref/netcore50/System.ComponentModel.xml",
  5437. "ref/netcore50/de/System.ComponentModel.xml",
  5438. "ref/netcore50/es/System.ComponentModel.xml",
  5439. "ref/netcore50/fr/System.ComponentModel.xml",
  5440. "ref/netcore50/it/System.ComponentModel.xml",
  5441. "ref/netcore50/ja/System.ComponentModel.xml",
  5442. "ref/netcore50/ko/System.ComponentModel.xml",
  5443. "ref/netcore50/ru/System.ComponentModel.xml",
  5444. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5445. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5446. "ref/netstandard1.0/System.ComponentModel.dll",
  5447. "ref/netstandard1.0/System.ComponentModel.xml",
  5448. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5449. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5450. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5451. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5452. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5453. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5454. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5455. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5456. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5457. "ref/portable-net45+win8+wp8+wpa81/_._",
  5458. "ref/win8/_._",
  5459. "ref/wp80/_._",
  5460. "ref/wpa81/_._",
  5461. "ref/xamarinios10/_._",
  5462. "ref/xamarinmac20/_._",
  5463. "ref/xamarintvos10/_._",
  5464. "ref/xamarinwatchos10/_._",
  5465. "system.componentmodel.4.3.0.nupkg.sha512",
  5466. "system.componentmodel.nuspec"
  5467. ]
  5468. },
  5469. "System.ComponentModel.Annotations/5.0.0": {
  5470. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5471. "type": "package",
  5472. "path": "system.componentmodel.annotations/5.0.0",
  5473. "files": [
  5474. ".nupkg.metadata",
  5475. ".signature.p7s",
  5476. "Icon.png",
  5477. "LICENSE.TXT",
  5478. "THIRD-PARTY-NOTICES.TXT",
  5479. "lib/MonoAndroid10/_._",
  5480. "lib/MonoTouch10/_._",
  5481. "lib/net45/_._",
  5482. "lib/net461/System.ComponentModel.Annotations.dll",
  5483. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5484. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5485. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5486. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5487. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5488. "lib/portable-net45+win8/_._",
  5489. "lib/win8/_._",
  5490. "lib/xamarinios10/_._",
  5491. "lib/xamarinmac20/_._",
  5492. "lib/xamarintvos10/_._",
  5493. "lib/xamarinwatchos10/_._",
  5494. "ref/MonoAndroid10/_._",
  5495. "ref/MonoTouch10/_._",
  5496. "ref/net45/_._",
  5497. "ref/net461/System.ComponentModel.Annotations.dll",
  5498. "ref/net461/System.ComponentModel.Annotations.xml",
  5499. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5500. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5501. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5502. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5503. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5504. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5505. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5506. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5507. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5508. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5509. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5510. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5511. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5512. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5513. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5514. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5515. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5516. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5517. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5518. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5519. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5520. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5521. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5522. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5523. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5524. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5525. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5526. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5527. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5528. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5529. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5530. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5531. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5532. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5533. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5534. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5535. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5536. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5537. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5538. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5539. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5540. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5541. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5542. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5543. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5544. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5545. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5546. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5547. "ref/portable-net45+win8/_._",
  5548. "ref/win8/_._",
  5549. "ref/xamarinios10/_._",
  5550. "ref/xamarinmac20/_._",
  5551. "ref/xamarintvos10/_._",
  5552. "ref/xamarinwatchos10/_._",
  5553. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5554. "system.componentmodel.annotations.nuspec",
  5555. "useSharedDesignerContext.txt",
  5556. "version.txt"
  5557. ]
  5558. },
  5559. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5560. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5561. "type": "package",
  5562. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5563. "files": [
  5564. ".nupkg.metadata",
  5565. ".signature.p7s",
  5566. "ThirdPartyNotices.txt",
  5567. "dotnet_library_license.txt",
  5568. "lib/MonoAndroid10/_._",
  5569. "lib/MonoTouch10/_._",
  5570. "lib/net45/_._",
  5571. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5572. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5573. "lib/portable-net45+win8+wp8+wpa81/_._",
  5574. "lib/win8/_._",
  5575. "lib/wp80/_._",
  5576. "lib/wpa81/_._",
  5577. "lib/xamarinios10/_._",
  5578. "lib/xamarinmac20/_._",
  5579. "lib/xamarintvos10/_._",
  5580. "lib/xamarinwatchos10/_._",
  5581. "ref/MonoAndroid10/_._",
  5582. "ref/MonoTouch10/_._",
  5583. "ref/net45/_._",
  5584. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5585. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5586. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5587. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5588. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5589. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5590. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5591. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5592. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5593. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5594. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5595. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5596. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5597. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5598. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5599. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5600. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5601. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5602. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5603. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5604. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5605. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5606. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5607. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5608. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5609. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5610. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5611. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5612. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5613. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5614. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5615. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5616. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5617. "ref/portable-net45+win8+wp8+wpa81/_._",
  5618. "ref/win8/_._",
  5619. "ref/wp80/_._",
  5620. "ref/wpa81/_._",
  5621. "ref/xamarinios10/_._",
  5622. "ref/xamarinmac20/_._",
  5623. "ref/xamarintvos10/_._",
  5624. "ref/xamarinwatchos10/_._",
  5625. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5626. "system.componentmodel.eventbasedasync.nuspec"
  5627. ]
  5628. },
  5629. "System.ComponentModel.Primitives/4.3.0": {
  5630. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5631. "type": "package",
  5632. "path": "system.componentmodel.primitives/4.3.0",
  5633. "files": [
  5634. ".nupkg.metadata",
  5635. ".signature.p7s",
  5636. "ThirdPartyNotices.txt",
  5637. "dotnet_library_license.txt",
  5638. "lib/MonoAndroid10/_._",
  5639. "lib/MonoTouch10/_._",
  5640. "lib/net45/System.ComponentModel.Primitives.dll",
  5641. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5642. "lib/xamarinios10/_._",
  5643. "lib/xamarinmac20/_._",
  5644. "lib/xamarintvos10/_._",
  5645. "lib/xamarinwatchos10/_._",
  5646. "ref/MonoAndroid10/_._",
  5647. "ref/MonoTouch10/_._",
  5648. "ref/net45/System.ComponentModel.Primitives.dll",
  5649. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5650. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5651. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5652. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5653. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5654. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5655. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5656. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5657. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5658. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5659. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5660. "ref/xamarinios10/_._",
  5661. "ref/xamarinmac20/_._",
  5662. "ref/xamarintvos10/_._",
  5663. "ref/xamarinwatchos10/_._",
  5664. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5665. "system.componentmodel.primitives.nuspec"
  5666. ]
  5667. },
  5668. "System.Configuration.ConfigurationManager/4.5.0": {
  5669. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5670. "type": "package",
  5671. "path": "system.configuration.configurationmanager/4.5.0",
  5672. "files": [
  5673. ".nupkg.metadata",
  5674. ".signature.p7s",
  5675. "LICENSE.TXT",
  5676. "THIRD-PARTY-NOTICES.TXT",
  5677. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5678. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5679. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5680. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5681. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5682. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5683. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5684. "system.configuration.configurationmanager.nuspec",
  5685. "useSharedDesignerContext.txt",
  5686. "version.txt"
  5687. ]
  5688. },
  5689. "System.Console/4.3.0": {
  5690. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5691. "type": "package",
  5692. "path": "system.console/4.3.0",
  5693. "files": [
  5694. ".nupkg.metadata",
  5695. ".signature.p7s",
  5696. "ThirdPartyNotices.txt",
  5697. "dotnet_library_license.txt",
  5698. "lib/MonoAndroid10/_._",
  5699. "lib/MonoTouch10/_._",
  5700. "lib/net46/System.Console.dll",
  5701. "lib/xamarinios10/_._",
  5702. "lib/xamarinmac20/_._",
  5703. "lib/xamarintvos10/_._",
  5704. "lib/xamarinwatchos10/_._",
  5705. "ref/MonoAndroid10/_._",
  5706. "ref/MonoTouch10/_._",
  5707. "ref/net46/System.Console.dll",
  5708. "ref/netstandard1.3/System.Console.dll",
  5709. "ref/netstandard1.3/System.Console.xml",
  5710. "ref/netstandard1.3/de/System.Console.xml",
  5711. "ref/netstandard1.3/es/System.Console.xml",
  5712. "ref/netstandard1.3/fr/System.Console.xml",
  5713. "ref/netstandard1.3/it/System.Console.xml",
  5714. "ref/netstandard1.3/ja/System.Console.xml",
  5715. "ref/netstandard1.3/ko/System.Console.xml",
  5716. "ref/netstandard1.3/ru/System.Console.xml",
  5717. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5718. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5719. "ref/xamarinios10/_._",
  5720. "ref/xamarinmac20/_._",
  5721. "ref/xamarintvos10/_._",
  5722. "ref/xamarinwatchos10/_._",
  5723. "system.console.4.3.0.nupkg.sha512",
  5724. "system.console.nuspec"
  5725. ]
  5726. },
  5727. "System.Diagnostics.Debug/4.3.0": {
  5728. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5729. "type": "package",
  5730. "path": "system.diagnostics.debug/4.3.0",
  5731. "files": [
  5732. ".nupkg.metadata",
  5733. ".signature.p7s",
  5734. "ThirdPartyNotices.txt",
  5735. "dotnet_library_license.txt",
  5736. "lib/MonoAndroid10/_._",
  5737. "lib/MonoTouch10/_._",
  5738. "lib/net45/_._",
  5739. "lib/portable-net45+win8+wp8+wpa81/_._",
  5740. "lib/win8/_._",
  5741. "lib/wp80/_._",
  5742. "lib/wpa81/_._",
  5743. "lib/xamarinios10/_._",
  5744. "lib/xamarinmac20/_._",
  5745. "lib/xamarintvos10/_._",
  5746. "lib/xamarinwatchos10/_._",
  5747. "ref/MonoAndroid10/_._",
  5748. "ref/MonoTouch10/_._",
  5749. "ref/net45/_._",
  5750. "ref/netcore50/System.Diagnostics.Debug.dll",
  5751. "ref/netcore50/System.Diagnostics.Debug.xml",
  5752. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5753. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5754. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5755. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5756. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5757. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5758. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5759. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5760. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5761. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5762. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5763. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5764. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5765. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5766. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5767. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5768. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5769. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5770. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5771. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5772. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5773. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5774. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5775. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5776. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5777. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5778. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5779. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5780. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5781. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5782. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5783. "ref/portable-net45+win8+wp8+wpa81/_._",
  5784. "ref/win8/_._",
  5785. "ref/wp80/_._",
  5786. "ref/wpa81/_._",
  5787. "ref/xamarinios10/_._",
  5788. "ref/xamarinmac20/_._",
  5789. "ref/xamarintvos10/_._",
  5790. "ref/xamarinwatchos10/_._",
  5791. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5792. "system.diagnostics.debug.nuspec"
  5793. ]
  5794. },
  5795. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5796. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5797. "type": "package",
  5798. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5799. "files": [
  5800. ".nupkg.metadata",
  5801. ".signature.p7s",
  5802. "Icon.png",
  5803. "LICENSE.TXT",
  5804. "THIRD-PARTY-NOTICES.TXT",
  5805. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5806. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5807. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5808. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5809. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5810. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5811. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5812. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5813. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5814. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5815. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5816. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5817. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5818. "system.diagnostics.diagnosticsource.nuspec",
  5819. "useSharedDesignerContext.txt",
  5820. "version.txt"
  5821. ]
  5822. },
  5823. "System.Diagnostics.Tools/4.3.0": {
  5824. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5825. "type": "package",
  5826. "path": "system.diagnostics.tools/4.3.0",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. ".signature.p7s",
  5830. "ThirdPartyNotices.txt",
  5831. "dotnet_library_license.txt",
  5832. "lib/MonoAndroid10/_._",
  5833. "lib/MonoTouch10/_._",
  5834. "lib/net45/_._",
  5835. "lib/portable-net45+win8+wp8+wpa81/_._",
  5836. "lib/win8/_._",
  5837. "lib/wp80/_._",
  5838. "lib/wpa81/_._",
  5839. "lib/xamarinios10/_._",
  5840. "lib/xamarinmac20/_._",
  5841. "lib/xamarintvos10/_._",
  5842. "lib/xamarinwatchos10/_._",
  5843. "ref/MonoAndroid10/_._",
  5844. "ref/MonoTouch10/_._",
  5845. "ref/net45/_._",
  5846. "ref/netcore50/System.Diagnostics.Tools.dll",
  5847. "ref/netcore50/System.Diagnostics.Tools.xml",
  5848. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5849. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5850. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5851. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5852. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5853. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5854. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5855. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5856. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5857. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5858. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5859. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5860. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5861. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5862. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5863. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5864. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5865. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5866. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5867. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5868. "ref/portable-net45+win8+wp8+wpa81/_._",
  5869. "ref/win8/_._",
  5870. "ref/wp80/_._",
  5871. "ref/wpa81/_._",
  5872. "ref/xamarinios10/_._",
  5873. "ref/xamarinmac20/_._",
  5874. "ref/xamarintvos10/_._",
  5875. "ref/xamarinwatchos10/_._",
  5876. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5877. "system.diagnostics.tools.nuspec"
  5878. ]
  5879. },
  5880. "System.Diagnostics.Tracing/4.3.0": {
  5881. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5882. "type": "package",
  5883. "path": "system.diagnostics.tracing/4.3.0",
  5884. "files": [
  5885. ".nupkg.metadata",
  5886. ".signature.p7s",
  5887. "ThirdPartyNotices.txt",
  5888. "dotnet_library_license.txt",
  5889. "lib/MonoAndroid10/_._",
  5890. "lib/MonoTouch10/_._",
  5891. "lib/net45/_._",
  5892. "lib/net462/System.Diagnostics.Tracing.dll",
  5893. "lib/portable-net45+win8+wpa81/_._",
  5894. "lib/win8/_._",
  5895. "lib/wpa81/_._",
  5896. "lib/xamarinios10/_._",
  5897. "lib/xamarinmac20/_._",
  5898. "lib/xamarintvos10/_._",
  5899. "lib/xamarinwatchos10/_._",
  5900. "ref/MonoAndroid10/_._",
  5901. "ref/MonoTouch10/_._",
  5902. "ref/net45/_._",
  5903. "ref/net462/System.Diagnostics.Tracing.dll",
  5904. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5905. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5906. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5907. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5908. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5909. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5910. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5911. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5912. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5913. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5914. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5916. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5917. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5918. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5919. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5920. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5921. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5922. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5923. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5924. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5925. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5926. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5927. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5928. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5929. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5930. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5931. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5932. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5933. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5934. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5935. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5936. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5937. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5938. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5939. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5940. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5941. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5942. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5943. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5944. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5945. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5946. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5947. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5948. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5949. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5950. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5951. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5952. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5953. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5954. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5955. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5956. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5957. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5958. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5959. "ref/portable-net45+win8+wpa81/_._",
  5960. "ref/win8/_._",
  5961. "ref/wpa81/_._",
  5962. "ref/xamarinios10/_._",
  5963. "ref/xamarinmac20/_._",
  5964. "ref/xamarintvos10/_._",
  5965. "ref/xamarinwatchos10/_._",
  5966. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5967. "system.diagnostics.tracing.nuspec"
  5968. ]
  5969. },
  5970. "System.Drawing.Common/5.0.3": {
  5971. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5972. "type": "package",
  5973. "path": "system.drawing.common/5.0.3",
  5974. "files": [
  5975. ".nupkg.metadata",
  5976. ".signature.p7s",
  5977. "Icon.png",
  5978. "LICENSE.TXT",
  5979. "THIRD-PARTY-NOTICES.TXT",
  5980. "lib/MonoAndroid10/_._",
  5981. "lib/MonoTouch10/_._",
  5982. "lib/net461/System.Drawing.Common.dll",
  5983. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5984. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5985. "lib/netstandard2.0/System.Drawing.Common.dll",
  5986. "lib/xamarinios10/_._",
  5987. "lib/xamarinmac20/_._",
  5988. "lib/xamarintvos10/_._",
  5989. "lib/xamarinwatchos10/_._",
  5990. "ref/MonoAndroid10/_._",
  5991. "ref/MonoTouch10/_._",
  5992. "ref/net461/System.Drawing.Common.dll",
  5993. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5994. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5995. "ref/netstandard2.0/System.Drawing.Common.dll",
  5996. "ref/xamarinios10/_._",
  5997. "ref/xamarinmac20/_._",
  5998. "ref/xamarintvos10/_._",
  5999. "ref/xamarinwatchos10/_._",
  6000. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6001. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6002. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6003. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6004. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6005. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6006. "system.drawing.common.5.0.3.nupkg.sha512",
  6007. "system.drawing.common.nuspec",
  6008. "useSharedDesignerContext.txt",
  6009. "version.txt"
  6010. ]
  6011. },
  6012. "System.Globalization/4.3.0": {
  6013. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6014. "type": "package",
  6015. "path": "system.globalization/4.3.0",
  6016. "files": [
  6017. ".nupkg.metadata",
  6018. ".signature.p7s",
  6019. "ThirdPartyNotices.txt",
  6020. "dotnet_library_license.txt",
  6021. "lib/MonoAndroid10/_._",
  6022. "lib/MonoTouch10/_._",
  6023. "lib/net45/_._",
  6024. "lib/portable-net45+win8+wp8+wpa81/_._",
  6025. "lib/win8/_._",
  6026. "lib/wp80/_._",
  6027. "lib/wpa81/_._",
  6028. "lib/xamarinios10/_._",
  6029. "lib/xamarinmac20/_._",
  6030. "lib/xamarintvos10/_._",
  6031. "lib/xamarinwatchos10/_._",
  6032. "ref/MonoAndroid10/_._",
  6033. "ref/MonoTouch10/_._",
  6034. "ref/net45/_._",
  6035. "ref/netcore50/System.Globalization.dll",
  6036. "ref/netcore50/System.Globalization.xml",
  6037. "ref/netcore50/de/System.Globalization.xml",
  6038. "ref/netcore50/es/System.Globalization.xml",
  6039. "ref/netcore50/fr/System.Globalization.xml",
  6040. "ref/netcore50/it/System.Globalization.xml",
  6041. "ref/netcore50/ja/System.Globalization.xml",
  6042. "ref/netcore50/ko/System.Globalization.xml",
  6043. "ref/netcore50/ru/System.Globalization.xml",
  6044. "ref/netcore50/zh-hans/System.Globalization.xml",
  6045. "ref/netcore50/zh-hant/System.Globalization.xml",
  6046. "ref/netstandard1.0/System.Globalization.dll",
  6047. "ref/netstandard1.0/System.Globalization.xml",
  6048. "ref/netstandard1.0/de/System.Globalization.xml",
  6049. "ref/netstandard1.0/es/System.Globalization.xml",
  6050. "ref/netstandard1.0/fr/System.Globalization.xml",
  6051. "ref/netstandard1.0/it/System.Globalization.xml",
  6052. "ref/netstandard1.0/ja/System.Globalization.xml",
  6053. "ref/netstandard1.0/ko/System.Globalization.xml",
  6054. "ref/netstandard1.0/ru/System.Globalization.xml",
  6055. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6056. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6057. "ref/netstandard1.3/System.Globalization.dll",
  6058. "ref/netstandard1.3/System.Globalization.xml",
  6059. "ref/netstandard1.3/de/System.Globalization.xml",
  6060. "ref/netstandard1.3/es/System.Globalization.xml",
  6061. "ref/netstandard1.3/fr/System.Globalization.xml",
  6062. "ref/netstandard1.3/it/System.Globalization.xml",
  6063. "ref/netstandard1.3/ja/System.Globalization.xml",
  6064. "ref/netstandard1.3/ko/System.Globalization.xml",
  6065. "ref/netstandard1.3/ru/System.Globalization.xml",
  6066. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6067. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6068. "ref/portable-net45+win8+wp8+wpa81/_._",
  6069. "ref/win8/_._",
  6070. "ref/wp80/_._",
  6071. "ref/wpa81/_._",
  6072. "ref/xamarinios10/_._",
  6073. "ref/xamarinmac20/_._",
  6074. "ref/xamarintvos10/_._",
  6075. "ref/xamarinwatchos10/_._",
  6076. "system.globalization.4.3.0.nupkg.sha512",
  6077. "system.globalization.nuspec"
  6078. ]
  6079. },
  6080. "System.Globalization.Calendars/4.3.0": {
  6081. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6082. "type": "package",
  6083. "path": "system.globalization.calendars/4.3.0",
  6084. "files": [
  6085. ".nupkg.metadata",
  6086. ".signature.p7s",
  6087. "ThirdPartyNotices.txt",
  6088. "dotnet_library_license.txt",
  6089. "lib/MonoAndroid10/_._",
  6090. "lib/MonoTouch10/_._",
  6091. "lib/net46/System.Globalization.Calendars.dll",
  6092. "lib/xamarinios10/_._",
  6093. "lib/xamarinmac20/_._",
  6094. "lib/xamarintvos10/_._",
  6095. "lib/xamarinwatchos10/_._",
  6096. "ref/MonoAndroid10/_._",
  6097. "ref/MonoTouch10/_._",
  6098. "ref/net46/System.Globalization.Calendars.dll",
  6099. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6100. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6101. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6102. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6103. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6104. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6105. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6106. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6107. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6108. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6109. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6110. "ref/xamarinios10/_._",
  6111. "ref/xamarinmac20/_._",
  6112. "ref/xamarintvos10/_._",
  6113. "ref/xamarinwatchos10/_._",
  6114. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6115. "system.globalization.calendars.nuspec"
  6116. ]
  6117. },
  6118. "System.Globalization.Extensions/4.3.0": {
  6119. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6120. "type": "package",
  6121. "path": "system.globalization.extensions/4.3.0",
  6122. "files": [
  6123. ".nupkg.metadata",
  6124. ".signature.p7s",
  6125. "ThirdPartyNotices.txt",
  6126. "dotnet_library_license.txt",
  6127. "lib/MonoAndroid10/_._",
  6128. "lib/MonoTouch10/_._",
  6129. "lib/net46/System.Globalization.Extensions.dll",
  6130. "lib/xamarinios10/_._",
  6131. "lib/xamarinmac20/_._",
  6132. "lib/xamarintvos10/_._",
  6133. "lib/xamarinwatchos10/_._",
  6134. "ref/MonoAndroid10/_._",
  6135. "ref/MonoTouch10/_._",
  6136. "ref/net46/System.Globalization.Extensions.dll",
  6137. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6138. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6139. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6140. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6141. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6142. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6143. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6144. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6145. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6146. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6147. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6148. "ref/xamarinios10/_._",
  6149. "ref/xamarinmac20/_._",
  6150. "ref/xamarintvos10/_._",
  6151. "ref/xamarinwatchos10/_._",
  6152. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6153. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6154. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6155. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6156. "system.globalization.extensions.nuspec"
  6157. ]
  6158. },
  6159. "System.IO/4.3.0": {
  6160. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6161. "type": "package",
  6162. "path": "system.io/4.3.0",
  6163. "files": [
  6164. ".nupkg.metadata",
  6165. ".signature.p7s",
  6166. "ThirdPartyNotices.txt",
  6167. "dotnet_library_license.txt",
  6168. "lib/MonoAndroid10/_._",
  6169. "lib/MonoTouch10/_._",
  6170. "lib/net45/_._",
  6171. "lib/net462/System.IO.dll",
  6172. "lib/portable-net45+win8+wp8+wpa81/_._",
  6173. "lib/win8/_._",
  6174. "lib/wp80/_._",
  6175. "lib/wpa81/_._",
  6176. "lib/xamarinios10/_._",
  6177. "lib/xamarinmac20/_._",
  6178. "lib/xamarintvos10/_._",
  6179. "lib/xamarinwatchos10/_._",
  6180. "ref/MonoAndroid10/_._",
  6181. "ref/MonoTouch10/_._",
  6182. "ref/net45/_._",
  6183. "ref/net462/System.IO.dll",
  6184. "ref/netcore50/System.IO.dll",
  6185. "ref/netcore50/System.IO.xml",
  6186. "ref/netcore50/de/System.IO.xml",
  6187. "ref/netcore50/es/System.IO.xml",
  6188. "ref/netcore50/fr/System.IO.xml",
  6189. "ref/netcore50/it/System.IO.xml",
  6190. "ref/netcore50/ja/System.IO.xml",
  6191. "ref/netcore50/ko/System.IO.xml",
  6192. "ref/netcore50/ru/System.IO.xml",
  6193. "ref/netcore50/zh-hans/System.IO.xml",
  6194. "ref/netcore50/zh-hant/System.IO.xml",
  6195. "ref/netstandard1.0/System.IO.dll",
  6196. "ref/netstandard1.0/System.IO.xml",
  6197. "ref/netstandard1.0/de/System.IO.xml",
  6198. "ref/netstandard1.0/es/System.IO.xml",
  6199. "ref/netstandard1.0/fr/System.IO.xml",
  6200. "ref/netstandard1.0/it/System.IO.xml",
  6201. "ref/netstandard1.0/ja/System.IO.xml",
  6202. "ref/netstandard1.0/ko/System.IO.xml",
  6203. "ref/netstandard1.0/ru/System.IO.xml",
  6204. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6205. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6206. "ref/netstandard1.3/System.IO.dll",
  6207. "ref/netstandard1.3/System.IO.xml",
  6208. "ref/netstandard1.3/de/System.IO.xml",
  6209. "ref/netstandard1.3/es/System.IO.xml",
  6210. "ref/netstandard1.3/fr/System.IO.xml",
  6211. "ref/netstandard1.3/it/System.IO.xml",
  6212. "ref/netstandard1.3/ja/System.IO.xml",
  6213. "ref/netstandard1.3/ko/System.IO.xml",
  6214. "ref/netstandard1.3/ru/System.IO.xml",
  6215. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6216. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6217. "ref/netstandard1.5/System.IO.dll",
  6218. "ref/netstandard1.5/System.IO.xml",
  6219. "ref/netstandard1.5/de/System.IO.xml",
  6220. "ref/netstandard1.5/es/System.IO.xml",
  6221. "ref/netstandard1.5/fr/System.IO.xml",
  6222. "ref/netstandard1.5/it/System.IO.xml",
  6223. "ref/netstandard1.5/ja/System.IO.xml",
  6224. "ref/netstandard1.5/ko/System.IO.xml",
  6225. "ref/netstandard1.5/ru/System.IO.xml",
  6226. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6227. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6228. "ref/portable-net45+win8+wp8+wpa81/_._",
  6229. "ref/win8/_._",
  6230. "ref/wp80/_._",
  6231. "ref/wpa81/_._",
  6232. "ref/xamarinios10/_._",
  6233. "ref/xamarinmac20/_._",
  6234. "ref/xamarintvos10/_._",
  6235. "ref/xamarinwatchos10/_._",
  6236. "system.io.4.3.0.nupkg.sha512",
  6237. "system.io.nuspec"
  6238. ]
  6239. },
  6240. "System.IO.Compression/4.3.0": {
  6241. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6242. "type": "package",
  6243. "path": "system.io.compression/4.3.0",
  6244. "files": [
  6245. ".nupkg.metadata",
  6246. ".signature.p7s",
  6247. "ThirdPartyNotices.txt",
  6248. "dotnet_library_license.txt",
  6249. "lib/MonoAndroid10/_._",
  6250. "lib/MonoTouch10/_._",
  6251. "lib/net45/_._",
  6252. "lib/net46/System.IO.Compression.dll",
  6253. "lib/portable-net45+win8+wpa81/_._",
  6254. "lib/win8/_._",
  6255. "lib/wpa81/_._",
  6256. "lib/xamarinios10/_._",
  6257. "lib/xamarinmac20/_._",
  6258. "lib/xamarintvos10/_._",
  6259. "lib/xamarinwatchos10/_._",
  6260. "ref/MonoAndroid10/_._",
  6261. "ref/MonoTouch10/_._",
  6262. "ref/net45/_._",
  6263. "ref/net46/System.IO.Compression.dll",
  6264. "ref/netcore50/System.IO.Compression.dll",
  6265. "ref/netcore50/System.IO.Compression.xml",
  6266. "ref/netcore50/de/System.IO.Compression.xml",
  6267. "ref/netcore50/es/System.IO.Compression.xml",
  6268. "ref/netcore50/fr/System.IO.Compression.xml",
  6269. "ref/netcore50/it/System.IO.Compression.xml",
  6270. "ref/netcore50/ja/System.IO.Compression.xml",
  6271. "ref/netcore50/ko/System.IO.Compression.xml",
  6272. "ref/netcore50/ru/System.IO.Compression.xml",
  6273. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6274. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6275. "ref/netstandard1.1/System.IO.Compression.dll",
  6276. "ref/netstandard1.1/System.IO.Compression.xml",
  6277. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6278. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6279. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6280. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6281. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6282. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6283. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6284. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6285. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6286. "ref/netstandard1.3/System.IO.Compression.dll",
  6287. "ref/netstandard1.3/System.IO.Compression.xml",
  6288. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6289. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6290. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6291. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6292. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6293. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6294. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6295. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6296. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6297. "ref/portable-net45+win8+wpa81/_._",
  6298. "ref/win8/_._",
  6299. "ref/wpa81/_._",
  6300. "ref/xamarinios10/_._",
  6301. "ref/xamarinmac20/_._",
  6302. "ref/xamarintvos10/_._",
  6303. "ref/xamarinwatchos10/_._",
  6304. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6305. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6306. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6307. "system.io.compression.4.3.0.nupkg.sha512",
  6308. "system.io.compression.nuspec"
  6309. ]
  6310. },
  6311. "System.IO.Compression.ZipFile/4.3.0": {
  6312. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6313. "type": "package",
  6314. "path": "system.io.compression.zipfile/4.3.0",
  6315. "files": [
  6316. ".nupkg.metadata",
  6317. ".signature.p7s",
  6318. "ThirdPartyNotices.txt",
  6319. "dotnet_library_license.txt",
  6320. "lib/MonoAndroid10/_._",
  6321. "lib/MonoTouch10/_._",
  6322. "lib/net46/System.IO.Compression.ZipFile.dll",
  6323. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6324. "lib/xamarinios10/_._",
  6325. "lib/xamarinmac20/_._",
  6326. "lib/xamarintvos10/_._",
  6327. "lib/xamarinwatchos10/_._",
  6328. "ref/MonoAndroid10/_._",
  6329. "ref/MonoTouch10/_._",
  6330. "ref/net46/System.IO.Compression.ZipFile.dll",
  6331. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6332. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6333. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6334. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6335. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6336. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6337. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6338. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6339. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6340. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6341. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6342. "ref/xamarinios10/_._",
  6343. "ref/xamarinmac20/_._",
  6344. "ref/xamarintvos10/_._",
  6345. "ref/xamarinwatchos10/_._",
  6346. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6347. "system.io.compression.zipfile.nuspec"
  6348. ]
  6349. },
  6350. "System.IO.FileSystem/4.3.0": {
  6351. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6352. "type": "package",
  6353. "path": "system.io.filesystem/4.3.0",
  6354. "files": [
  6355. ".nupkg.metadata",
  6356. ".signature.p7s",
  6357. "ThirdPartyNotices.txt",
  6358. "dotnet_library_license.txt",
  6359. "lib/MonoAndroid10/_._",
  6360. "lib/MonoTouch10/_._",
  6361. "lib/net46/System.IO.FileSystem.dll",
  6362. "lib/xamarinios10/_._",
  6363. "lib/xamarinmac20/_._",
  6364. "lib/xamarintvos10/_._",
  6365. "lib/xamarinwatchos10/_._",
  6366. "ref/MonoAndroid10/_._",
  6367. "ref/MonoTouch10/_._",
  6368. "ref/net46/System.IO.FileSystem.dll",
  6369. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6370. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6371. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6372. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6373. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6374. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6375. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6376. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6377. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6378. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6379. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6380. "ref/xamarinios10/_._",
  6381. "ref/xamarinmac20/_._",
  6382. "ref/xamarintvos10/_._",
  6383. "ref/xamarinwatchos10/_._",
  6384. "system.io.filesystem.4.3.0.nupkg.sha512",
  6385. "system.io.filesystem.nuspec"
  6386. ]
  6387. },
  6388. "System.IO.FileSystem.Primitives/4.3.0": {
  6389. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6390. "type": "package",
  6391. "path": "system.io.filesystem.primitives/4.3.0",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. ".signature.p7s",
  6395. "ThirdPartyNotices.txt",
  6396. "dotnet_library_license.txt",
  6397. "lib/MonoAndroid10/_._",
  6398. "lib/MonoTouch10/_._",
  6399. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6400. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6401. "lib/xamarinios10/_._",
  6402. "lib/xamarinmac20/_._",
  6403. "lib/xamarintvos10/_._",
  6404. "lib/xamarinwatchos10/_._",
  6405. "ref/MonoAndroid10/_._",
  6406. "ref/MonoTouch10/_._",
  6407. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6408. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6409. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6410. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6411. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6412. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6413. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6414. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6415. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6416. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6417. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6418. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6419. "ref/xamarinios10/_._",
  6420. "ref/xamarinmac20/_._",
  6421. "ref/xamarintvos10/_._",
  6422. "ref/xamarinwatchos10/_._",
  6423. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6424. "system.io.filesystem.primitives.nuspec"
  6425. ]
  6426. },
  6427. "System.IO.Pipelines/5.0.0": {
  6428. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6429. "type": "package",
  6430. "path": "system.io.pipelines/5.0.0",
  6431. "files": [
  6432. ".nupkg.metadata",
  6433. ".signature.p7s",
  6434. "Icon.png",
  6435. "LICENSE.TXT",
  6436. "THIRD-PARTY-NOTICES.TXT",
  6437. "lib/net461/System.IO.Pipelines.dll",
  6438. "lib/net461/System.IO.Pipelines.xml",
  6439. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6440. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6441. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6442. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6443. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6444. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6445. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6446. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6447. "system.io.pipelines.5.0.0.nupkg.sha512",
  6448. "system.io.pipelines.nuspec",
  6449. "useSharedDesignerContext.txt",
  6450. "version.txt"
  6451. ]
  6452. },
  6453. "System.Linq/4.3.0": {
  6454. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6455. "type": "package",
  6456. "path": "system.linq/4.3.0",
  6457. "files": [
  6458. ".nupkg.metadata",
  6459. ".signature.p7s",
  6460. "ThirdPartyNotices.txt",
  6461. "dotnet_library_license.txt",
  6462. "lib/MonoAndroid10/_._",
  6463. "lib/MonoTouch10/_._",
  6464. "lib/net45/_._",
  6465. "lib/net463/System.Linq.dll",
  6466. "lib/netcore50/System.Linq.dll",
  6467. "lib/netstandard1.6/System.Linq.dll",
  6468. "lib/portable-net45+win8+wp8+wpa81/_._",
  6469. "lib/win8/_._",
  6470. "lib/wp80/_._",
  6471. "lib/wpa81/_._",
  6472. "lib/xamarinios10/_._",
  6473. "lib/xamarinmac20/_._",
  6474. "lib/xamarintvos10/_._",
  6475. "lib/xamarinwatchos10/_._",
  6476. "ref/MonoAndroid10/_._",
  6477. "ref/MonoTouch10/_._",
  6478. "ref/net45/_._",
  6479. "ref/net463/System.Linq.dll",
  6480. "ref/netcore50/System.Linq.dll",
  6481. "ref/netcore50/System.Linq.xml",
  6482. "ref/netcore50/de/System.Linq.xml",
  6483. "ref/netcore50/es/System.Linq.xml",
  6484. "ref/netcore50/fr/System.Linq.xml",
  6485. "ref/netcore50/it/System.Linq.xml",
  6486. "ref/netcore50/ja/System.Linq.xml",
  6487. "ref/netcore50/ko/System.Linq.xml",
  6488. "ref/netcore50/ru/System.Linq.xml",
  6489. "ref/netcore50/zh-hans/System.Linq.xml",
  6490. "ref/netcore50/zh-hant/System.Linq.xml",
  6491. "ref/netstandard1.0/System.Linq.dll",
  6492. "ref/netstandard1.0/System.Linq.xml",
  6493. "ref/netstandard1.0/de/System.Linq.xml",
  6494. "ref/netstandard1.0/es/System.Linq.xml",
  6495. "ref/netstandard1.0/fr/System.Linq.xml",
  6496. "ref/netstandard1.0/it/System.Linq.xml",
  6497. "ref/netstandard1.0/ja/System.Linq.xml",
  6498. "ref/netstandard1.0/ko/System.Linq.xml",
  6499. "ref/netstandard1.0/ru/System.Linq.xml",
  6500. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6501. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6502. "ref/netstandard1.6/System.Linq.dll",
  6503. "ref/netstandard1.6/System.Linq.xml",
  6504. "ref/netstandard1.6/de/System.Linq.xml",
  6505. "ref/netstandard1.6/es/System.Linq.xml",
  6506. "ref/netstandard1.6/fr/System.Linq.xml",
  6507. "ref/netstandard1.6/it/System.Linq.xml",
  6508. "ref/netstandard1.6/ja/System.Linq.xml",
  6509. "ref/netstandard1.6/ko/System.Linq.xml",
  6510. "ref/netstandard1.6/ru/System.Linq.xml",
  6511. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6512. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6513. "ref/portable-net45+win8+wp8+wpa81/_._",
  6514. "ref/win8/_._",
  6515. "ref/wp80/_._",
  6516. "ref/wpa81/_._",
  6517. "ref/xamarinios10/_._",
  6518. "ref/xamarinmac20/_._",
  6519. "ref/xamarintvos10/_._",
  6520. "ref/xamarinwatchos10/_._",
  6521. "system.linq.4.3.0.nupkg.sha512",
  6522. "system.linq.nuspec"
  6523. ]
  6524. },
  6525. "System.Linq.Expressions/4.3.0": {
  6526. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6527. "type": "package",
  6528. "path": "system.linq.expressions/4.3.0",
  6529. "files": [
  6530. ".nupkg.metadata",
  6531. ".signature.p7s",
  6532. "ThirdPartyNotices.txt",
  6533. "dotnet_library_license.txt",
  6534. "lib/MonoAndroid10/_._",
  6535. "lib/MonoTouch10/_._",
  6536. "lib/net45/_._",
  6537. "lib/net463/System.Linq.Expressions.dll",
  6538. "lib/netcore50/System.Linq.Expressions.dll",
  6539. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6540. "lib/portable-net45+win8+wp8+wpa81/_._",
  6541. "lib/win8/_._",
  6542. "lib/wp80/_._",
  6543. "lib/wpa81/_._",
  6544. "lib/xamarinios10/_._",
  6545. "lib/xamarinmac20/_._",
  6546. "lib/xamarintvos10/_._",
  6547. "lib/xamarinwatchos10/_._",
  6548. "ref/MonoAndroid10/_._",
  6549. "ref/MonoTouch10/_._",
  6550. "ref/net45/_._",
  6551. "ref/net463/System.Linq.Expressions.dll",
  6552. "ref/netcore50/System.Linq.Expressions.dll",
  6553. "ref/netcore50/System.Linq.Expressions.xml",
  6554. "ref/netcore50/de/System.Linq.Expressions.xml",
  6555. "ref/netcore50/es/System.Linq.Expressions.xml",
  6556. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6557. "ref/netcore50/it/System.Linq.Expressions.xml",
  6558. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6559. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6560. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6561. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6562. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6563. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6564. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6565. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6566. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6567. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6568. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6569. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6570. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6571. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6572. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6573. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6574. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6575. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6576. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6577. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6578. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6579. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6580. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6581. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6582. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6583. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6584. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6585. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6586. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6587. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6588. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6589. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6590. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6591. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6592. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6593. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6594. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6595. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6596. "ref/portable-net45+win8+wp8+wpa81/_._",
  6597. "ref/win8/_._",
  6598. "ref/wp80/_._",
  6599. "ref/wpa81/_._",
  6600. "ref/xamarinios10/_._",
  6601. "ref/xamarinmac20/_._",
  6602. "ref/xamarintvos10/_._",
  6603. "ref/xamarinwatchos10/_._",
  6604. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6605. "system.linq.expressions.4.3.0.nupkg.sha512",
  6606. "system.linq.expressions.nuspec"
  6607. ]
  6608. },
  6609. "System.Memory/4.5.5": {
  6610. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6611. "type": "package",
  6612. "path": "system.memory/4.5.5",
  6613. "files": [
  6614. ".nupkg.metadata",
  6615. ".signature.p7s",
  6616. "LICENSE.TXT",
  6617. "THIRD-PARTY-NOTICES.TXT",
  6618. "lib/net461/System.Memory.dll",
  6619. "lib/net461/System.Memory.xml",
  6620. "lib/netcoreapp2.1/_._",
  6621. "lib/netstandard1.1/System.Memory.dll",
  6622. "lib/netstandard1.1/System.Memory.xml",
  6623. "lib/netstandard2.0/System.Memory.dll",
  6624. "lib/netstandard2.0/System.Memory.xml",
  6625. "ref/netcoreapp2.1/_._",
  6626. "system.memory.4.5.5.nupkg.sha512",
  6627. "system.memory.nuspec",
  6628. "useSharedDesignerContext.txt",
  6629. "version.txt"
  6630. ]
  6631. },
  6632. "System.Net.Http/4.3.2": {
  6633. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6634. "type": "package",
  6635. "path": "system.net.http/4.3.2",
  6636. "files": [
  6637. ".nupkg.metadata",
  6638. ".signature.p7s",
  6639. "ThirdPartyNotices.txt",
  6640. "dotnet_library_license.txt",
  6641. "lib/Xamarinmac20/_._",
  6642. "lib/monoandroid10/_._",
  6643. "lib/monotouch10/_._",
  6644. "lib/net45/_._",
  6645. "lib/net46/System.Net.Http.dll",
  6646. "lib/portable-net45+win8+wpa81/_._",
  6647. "lib/win8/_._",
  6648. "lib/wpa81/_._",
  6649. "lib/xamarinios10/_._",
  6650. "lib/xamarintvos10/_._",
  6651. "lib/xamarinwatchos10/_._",
  6652. "ref/Xamarinmac20/_._",
  6653. "ref/monoandroid10/_._",
  6654. "ref/monotouch10/_._",
  6655. "ref/net45/_._",
  6656. "ref/net46/System.Net.Http.dll",
  6657. "ref/netcore50/System.Net.Http.dll",
  6658. "ref/netstandard1.1/System.Net.Http.dll",
  6659. "ref/netstandard1.3/System.Net.Http.dll",
  6660. "ref/portable-net45+win8+wpa81/_._",
  6661. "ref/win8/_._",
  6662. "ref/wpa81/_._",
  6663. "ref/xamarinios10/_._",
  6664. "ref/xamarintvos10/_._",
  6665. "ref/xamarinwatchos10/_._",
  6666. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6667. "runtimes/win/lib/net46/System.Net.Http.dll",
  6668. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6669. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6670. "system.net.http.4.3.2.nupkg.sha512",
  6671. "system.net.http.nuspec"
  6672. ]
  6673. },
  6674. "System.Net.NameResolution/4.3.0": {
  6675. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6676. "type": "package",
  6677. "path": "system.net.nameresolution/4.3.0",
  6678. "files": [
  6679. ".nupkg.metadata",
  6680. ".signature.p7s",
  6681. "ThirdPartyNotices.txt",
  6682. "dotnet_library_license.txt",
  6683. "lib/MonoAndroid10/_._",
  6684. "lib/MonoTouch10/_._",
  6685. "lib/net46/System.Net.NameResolution.dll",
  6686. "lib/xamarinios10/_._",
  6687. "lib/xamarinmac20/_._",
  6688. "lib/xamarintvos10/_._",
  6689. "lib/xamarinwatchos10/_._",
  6690. "ref/MonoAndroid10/_._",
  6691. "ref/MonoTouch10/_._",
  6692. "ref/net46/System.Net.NameResolution.dll",
  6693. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6694. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6695. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6696. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6697. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6698. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6699. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6700. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6701. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6702. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6703. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6704. "ref/xamarinios10/_._",
  6705. "ref/xamarinmac20/_._",
  6706. "ref/xamarintvos10/_._",
  6707. "ref/xamarinwatchos10/_._",
  6708. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6709. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6710. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6711. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6712. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6713. "system.net.nameresolution.nuspec"
  6714. ]
  6715. },
  6716. "System.Net.Primitives/4.3.0": {
  6717. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6718. "type": "package",
  6719. "path": "system.net.primitives/4.3.0",
  6720. "files": [
  6721. ".nupkg.metadata",
  6722. ".signature.p7s",
  6723. "ThirdPartyNotices.txt",
  6724. "dotnet_library_license.txt",
  6725. "lib/MonoAndroid10/_._",
  6726. "lib/MonoTouch10/_._",
  6727. "lib/net45/_._",
  6728. "lib/portable-net45+win8+wp8+wpa81/_._",
  6729. "lib/win8/_._",
  6730. "lib/wp80/_._",
  6731. "lib/wpa81/_._",
  6732. "lib/xamarinios10/_._",
  6733. "lib/xamarinmac20/_._",
  6734. "lib/xamarintvos10/_._",
  6735. "lib/xamarinwatchos10/_._",
  6736. "ref/MonoAndroid10/_._",
  6737. "ref/MonoTouch10/_._",
  6738. "ref/net45/_._",
  6739. "ref/netcore50/System.Net.Primitives.dll",
  6740. "ref/netcore50/System.Net.Primitives.xml",
  6741. "ref/netcore50/de/System.Net.Primitives.xml",
  6742. "ref/netcore50/es/System.Net.Primitives.xml",
  6743. "ref/netcore50/fr/System.Net.Primitives.xml",
  6744. "ref/netcore50/it/System.Net.Primitives.xml",
  6745. "ref/netcore50/ja/System.Net.Primitives.xml",
  6746. "ref/netcore50/ko/System.Net.Primitives.xml",
  6747. "ref/netcore50/ru/System.Net.Primitives.xml",
  6748. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6749. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6750. "ref/netstandard1.0/System.Net.Primitives.dll",
  6751. "ref/netstandard1.0/System.Net.Primitives.xml",
  6752. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6753. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6754. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6755. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6756. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6757. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6758. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6759. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6760. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6761. "ref/netstandard1.1/System.Net.Primitives.dll",
  6762. "ref/netstandard1.1/System.Net.Primitives.xml",
  6763. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6764. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6765. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6766. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6767. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6768. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6769. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6770. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6771. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6772. "ref/netstandard1.3/System.Net.Primitives.dll",
  6773. "ref/netstandard1.3/System.Net.Primitives.xml",
  6774. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6775. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6776. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6777. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6778. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6779. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6780. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6781. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6782. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6783. "ref/portable-net45+win8+wp8+wpa81/_._",
  6784. "ref/win8/_._",
  6785. "ref/wp80/_._",
  6786. "ref/wpa81/_._",
  6787. "ref/xamarinios10/_._",
  6788. "ref/xamarinmac20/_._",
  6789. "ref/xamarintvos10/_._",
  6790. "ref/xamarinwatchos10/_._",
  6791. "system.net.primitives.4.3.0.nupkg.sha512",
  6792. "system.net.primitives.nuspec"
  6793. ]
  6794. },
  6795. "System.Net.Security/4.3.0": {
  6796. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6797. "type": "package",
  6798. "path": "system.net.security/4.3.0",
  6799. "files": [
  6800. ".nupkg.metadata",
  6801. ".signature.p7s",
  6802. "ThirdPartyNotices.txt",
  6803. "dotnet_library_license.txt",
  6804. "lib/MonoAndroid10/_._",
  6805. "lib/MonoTouch10/_._",
  6806. "lib/net46/System.Net.Security.dll",
  6807. "lib/xamarinios10/_._",
  6808. "lib/xamarinmac20/_._",
  6809. "lib/xamarintvos10/_._",
  6810. "lib/xamarinwatchos10/_._",
  6811. "ref/MonoAndroid10/_._",
  6812. "ref/MonoTouch10/_._",
  6813. "ref/net46/System.Net.Security.dll",
  6814. "ref/netstandard1.3/System.Net.Security.dll",
  6815. "ref/netstandard1.3/System.Net.Security.xml",
  6816. "ref/netstandard1.3/de/System.Net.Security.xml",
  6817. "ref/netstandard1.3/es/System.Net.Security.xml",
  6818. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6819. "ref/netstandard1.3/it/System.Net.Security.xml",
  6820. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6821. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6822. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6823. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6824. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6825. "ref/xamarinios10/_._",
  6826. "ref/xamarinmac20/_._",
  6827. "ref/xamarintvos10/_._",
  6828. "ref/xamarinwatchos10/_._",
  6829. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6830. "runtimes/win/lib/net46/System.Net.Security.dll",
  6831. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6832. "runtimes/win7/lib/netcore50/_._",
  6833. "system.net.security.4.3.0.nupkg.sha512",
  6834. "system.net.security.nuspec"
  6835. ]
  6836. },
  6837. "System.Net.Sockets/4.3.0": {
  6838. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6839. "type": "package",
  6840. "path": "system.net.sockets/4.3.0",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net46/System.Net.Sockets.dll",
  6849. "lib/xamarinios10/_._",
  6850. "lib/xamarinmac20/_._",
  6851. "lib/xamarintvos10/_._",
  6852. "lib/xamarinwatchos10/_._",
  6853. "ref/MonoAndroid10/_._",
  6854. "ref/MonoTouch10/_._",
  6855. "ref/net46/System.Net.Sockets.dll",
  6856. "ref/netstandard1.3/System.Net.Sockets.dll",
  6857. "ref/netstandard1.3/System.Net.Sockets.xml",
  6858. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6859. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6860. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6861. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6862. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6863. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6864. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6865. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6866. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6867. "ref/xamarinios10/_._",
  6868. "ref/xamarinmac20/_._",
  6869. "ref/xamarintvos10/_._",
  6870. "ref/xamarinwatchos10/_._",
  6871. "system.net.sockets.4.3.0.nupkg.sha512",
  6872. "system.net.sockets.nuspec"
  6873. ]
  6874. },
  6875. "System.ObjectModel/4.3.0": {
  6876. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6877. "type": "package",
  6878. "path": "system.objectmodel/4.3.0",
  6879. "files": [
  6880. ".nupkg.metadata",
  6881. ".signature.p7s",
  6882. "ThirdPartyNotices.txt",
  6883. "dotnet_library_license.txt",
  6884. "lib/MonoAndroid10/_._",
  6885. "lib/MonoTouch10/_._",
  6886. "lib/net45/_._",
  6887. "lib/netcore50/System.ObjectModel.dll",
  6888. "lib/netstandard1.3/System.ObjectModel.dll",
  6889. "lib/portable-net45+win8+wp8+wpa81/_._",
  6890. "lib/win8/_._",
  6891. "lib/wp80/_._",
  6892. "lib/wpa81/_._",
  6893. "lib/xamarinios10/_._",
  6894. "lib/xamarinmac20/_._",
  6895. "lib/xamarintvos10/_._",
  6896. "lib/xamarinwatchos10/_._",
  6897. "ref/MonoAndroid10/_._",
  6898. "ref/MonoTouch10/_._",
  6899. "ref/net45/_._",
  6900. "ref/netcore50/System.ObjectModel.dll",
  6901. "ref/netcore50/System.ObjectModel.xml",
  6902. "ref/netcore50/de/System.ObjectModel.xml",
  6903. "ref/netcore50/es/System.ObjectModel.xml",
  6904. "ref/netcore50/fr/System.ObjectModel.xml",
  6905. "ref/netcore50/it/System.ObjectModel.xml",
  6906. "ref/netcore50/ja/System.ObjectModel.xml",
  6907. "ref/netcore50/ko/System.ObjectModel.xml",
  6908. "ref/netcore50/ru/System.ObjectModel.xml",
  6909. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6910. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6911. "ref/netstandard1.0/System.ObjectModel.dll",
  6912. "ref/netstandard1.0/System.ObjectModel.xml",
  6913. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6914. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6915. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6916. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6917. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6918. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6919. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6920. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6921. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6922. "ref/netstandard1.3/System.ObjectModel.dll",
  6923. "ref/netstandard1.3/System.ObjectModel.xml",
  6924. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6925. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6926. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6927. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6928. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6929. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6930. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6931. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6932. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6933. "ref/portable-net45+win8+wp8+wpa81/_._",
  6934. "ref/win8/_._",
  6935. "ref/wp80/_._",
  6936. "ref/wpa81/_._",
  6937. "ref/xamarinios10/_._",
  6938. "ref/xamarinmac20/_._",
  6939. "ref/xamarintvos10/_._",
  6940. "ref/xamarinwatchos10/_._",
  6941. "system.objectmodel.4.3.0.nupkg.sha512",
  6942. "system.objectmodel.nuspec"
  6943. ]
  6944. },
  6945. "System.Reactive/4.4.1": {
  6946. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6947. "type": "package",
  6948. "path": "system.reactive/4.4.1",
  6949. "files": [
  6950. ".nupkg.metadata",
  6951. ".signature.p7s",
  6952. "build/netcoreapp3.0/System.Reactive.dll",
  6953. "build/netcoreapp3.0/System.Reactive.targets",
  6954. "build/netcoreapp3.0/System.Reactive.xml",
  6955. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6956. "lib/net46/System.Reactive.dll",
  6957. "lib/net46/System.Reactive.xml",
  6958. "lib/netcoreapp3.0/_._",
  6959. "lib/netstandard2.0/System.Reactive.dll",
  6960. "lib/netstandard2.0/System.Reactive.xml",
  6961. "lib/uap10.0.16299/System.Reactive.dll",
  6962. "lib/uap10.0.16299/System.Reactive.pri",
  6963. "lib/uap10.0.16299/System.Reactive.xml",
  6964. "lib/uap10.0/System.Reactive.dll",
  6965. "lib/uap10.0/System.Reactive.pri",
  6966. "lib/uap10.0/System.Reactive.xml",
  6967. "system.reactive.4.4.1.nupkg.sha512",
  6968. "system.reactive.nuspec"
  6969. ]
  6970. },
  6971. "System.Reflection/4.3.0": {
  6972. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6973. "type": "package",
  6974. "path": "system.reflection/4.3.0",
  6975. "files": [
  6976. ".nupkg.metadata",
  6977. ".signature.p7s",
  6978. "ThirdPartyNotices.txt",
  6979. "dotnet_library_license.txt",
  6980. "lib/MonoAndroid10/_._",
  6981. "lib/MonoTouch10/_._",
  6982. "lib/net45/_._",
  6983. "lib/net462/System.Reflection.dll",
  6984. "lib/portable-net45+win8+wp8+wpa81/_._",
  6985. "lib/win8/_._",
  6986. "lib/wp80/_._",
  6987. "lib/wpa81/_._",
  6988. "lib/xamarinios10/_._",
  6989. "lib/xamarinmac20/_._",
  6990. "lib/xamarintvos10/_._",
  6991. "lib/xamarinwatchos10/_._",
  6992. "ref/MonoAndroid10/_._",
  6993. "ref/MonoTouch10/_._",
  6994. "ref/net45/_._",
  6995. "ref/net462/System.Reflection.dll",
  6996. "ref/netcore50/System.Reflection.dll",
  6997. "ref/netcore50/System.Reflection.xml",
  6998. "ref/netcore50/de/System.Reflection.xml",
  6999. "ref/netcore50/es/System.Reflection.xml",
  7000. "ref/netcore50/fr/System.Reflection.xml",
  7001. "ref/netcore50/it/System.Reflection.xml",
  7002. "ref/netcore50/ja/System.Reflection.xml",
  7003. "ref/netcore50/ko/System.Reflection.xml",
  7004. "ref/netcore50/ru/System.Reflection.xml",
  7005. "ref/netcore50/zh-hans/System.Reflection.xml",
  7006. "ref/netcore50/zh-hant/System.Reflection.xml",
  7007. "ref/netstandard1.0/System.Reflection.dll",
  7008. "ref/netstandard1.0/System.Reflection.xml",
  7009. "ref/netstandard1.0/de/System.Reflection.xml",
  7010. "ref/netstandard1.0/es/System.Reflection.xml",
  7011. "ref/netstandard1.0/fr/System.Reflection.xml",
  7012. "ref/netstandard1.0/it/System.Reflection.xml",
  7013. "ref/netstandard1.0/ja/System.Reflection.xml",
  7014. "ref/netstandard1.0/ko/System.Reflection.xml",
  7015. "ref/netstandard1.0/ru/System.Reflection.xml",
  7016. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7017. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7018. "ref/netstandard1.3/System.Reflection.dll",
  7019. "ref/netstandard1.3/System.Reflection.xml",
  7020. "ref/netstandard1.3/de/System.Reflection.xml",
  7021. "ref/netstandard1.3/es/System.Reflection.xml",
  7022. "ref/netstandard1.3/fr/System.Reflection.xml",
  7023. "ref/netstandard1.3/it/System.Reflection.xml",
  7024. "ref/netstandard1.3/ja/System.Reflection.xml",
  7025. "ref/netstandard1.3/ko/System.Reflection.xml",
  7026. "ref/netstandard1.3/ru/System.Reflection.xml",
  7027. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7028. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7029. "ref/netstandard1.5/System.Reflection.dll",
  7030. "ref/netstandard1.5/System.Reflection.xml",
  7031. "ref/netstandard1.5/de/System.Reflection.xml",
  7032. "ref/netstandard1.5/es/System.Reflection.xml",
  7033. "ref/netstandard1.5/fr/System.Reflection.xml",
  7034. "ref/netstandard1.5/it/System.Reflection.xml",
  7035. "ref/netstandard1.5/ja/System.Reflection.xml",
  7036. "ref/netstandard1.5/ko/System.Reflection.xml",
  7037. "ref/netstandard1.5/ru/System.Reflection.xml",
  7038. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7039. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7040. "ref/portable-net45+win8+wp8+wpa81/_._",
  7041. "ref/win8/_._",
  7042. "ref/wp80/_._",
  7043. "ref/wpa81/_._",
  7044. "ref/xamarinios10/_._",
  7045. "ref/xamarinmac20/_._",
  7046. "ref/xamarintvos10/_._",
  7047. "ref/xamarinwatchos10/_._",
  7048. "system.reflection.4.3.0.nupkg.sha512",
  7049. "system.reflection.nuspec"
  7050. ]
  7051. },
  7052. "System.Reflection.Emit/4.3.0": {
  7053. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7054. "type": "package",
  7055. "path": "system.reflection.emit/4.3.0",
  7056. "files": [
  7057. ".nupkg.metadata",
  7058. ".signature.p7s",
  7059. "ThirdPartyNotices.txt",
  7060. "dotnet_library_license.txt",
  7061. "lib/MonoAndroid10/_._",
  7062. "lib/monotouch10/_._",
  7063. "lib/net45/_._",
  7064. "lib/netcore50/System.Reflection.Emit.dll",
  7065. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7066. "lib/xamarinios10/_._",
  7067. "lib/xamarinmac20/_._",
  7068. "lib/xamarintvos10/_._",
  7069. "lib/xamarinwatchos10/_._",
  7070. "ref/MonoAndroid10/_._",
  7071. "ref/net45/_._",
  7072. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7073. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7074. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7075. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7076. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7077. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7078. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7079. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7080. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7081. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7082. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7083. "ref/xamarinmac20/_._",
  7084. "system.reflection.emit.4.3.0.nupkg.sha512",
  7085. "system.reflection.emit.nuspec"
  7086. ]
  7087. },
  7088. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7089. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7090. "type": "package",
  7091. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7092. "files": [
  7093. ".nupkg.metadata",
  7094. ".signature.p7s",
  7095. "ThirdPartyNotices.txt",
  7096. "dotnet_library_license.txt",
  7097. "lib/MonoAndroid10/_._",
  7098. "lib/MonoTouch10/_._",
  7099. "lib/net45/_._",
  7100. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7101. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7102. "lib/portable-net45+wp8/_._",
  7103. "lib/wp80/_._",
  7104. "lib/xamarinios10/_._",
  7105. "lib/xamarinmac20/_._",
  7106. "lib/xamarintvos10/_._",
  7107. "lib/xamarinwatchos10/_._",
  7108. "ref/MonoAndroid10/_._",
  7109. "ref/MonoTouch10/_._",
  7110. "ref/net45/_._",
  7111. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7112. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7113. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7114. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7115. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7116. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7117. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7118. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7119. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7120. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7121. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7122. "ref/portable-net45+wp8/_._",
  7123. "ref/wp80/_._",
  7124. "ref/xamarinios10/_._",
  7125. "ref/xamarinmac20/_._",
  7126. "ref/xamarintvos10/_._",
  7127. "ref/xamarinwatchos10/_._",
  7128. "runtimes/aot/lib/netcore50/_._",
  7129. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7130. "system.reflection.emit.ilgeneration.nuspec"
  7131. ]
  7132. },
  7133. "System.Reflection.Emit.Lightweight/4.3.0": {
  7134. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7135. "type": "package",
  7136. "path": "system.reflection.emit.lightweight/4.3.0",
  7137. "files": [
  7138. ".nupkg.metadata",
  7139. ".signature.p7s",
  7140. "ThirdPartyNotices.txt",
  7141. "dotnet_library_license.txt",
  7142. "lib/MonoAndroid10/_._",
  7143. "lib/MonoTouch10/_._",
  7144. "lib/net45/_._",
  7145. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7146. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7147. "lib/portable-net45+wp8/_._",
  7148. "lib/wp80/_._",
  7149. "lib/xamarinios10/_._",
  7150. "lib/xamarinmac20/_._",
  7151. "lib/xamarintvos10/_._",
  7152. "lib/xamarinwatchos10/_._",
  7153. "ref/MonoAndroid10/_._",
  7154. "ref/MonoTouch10/_._",
  7155. "ref/net45/_._",
  7156. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7157. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7158. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7159. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7160. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7161. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7162. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7163. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7164. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7165. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7166. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7167. "ref/portable-net45+wp8/_._",
  7168. "ref/wp80/_._",
  7169. "ref/xamarinios10/_._",
  7170. "ref/xamarinmac20/_._",
  7171. "ref/xamarintvos10/_._",
  7172. "ref/xamarinwatchos10/_._",
  7173. "runtimes/aot/lib/netcore50/_._",
  7174. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7175. "system.reflection.emit.lightweight.nuspec"
  7176. ]
  7177. },
  7178. "System.Reflection.Extensions/4.3.0": {
  7179. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7180. "type": "package",
  7181. "path": "system.reflection.extensions/4.3.0",
  7182. "files": [
  7183. ".nupkg.metadata",
  7184. ".signature.p7s",
  7185. "ThirdPartyNotices.txt",
  7186. "dotnet_library_license.txt",
  7187. "lib/MonoAndroid10/_._",
  7188. "lib/MonoTouch10/_._",
  7189. "lib/net45/_._",
  7190. "lib/portable-net45+win8+wp8+wpa81/_._",
  7191. "lib/win8/_._",
  7192. "lib/wp80/_._",
  7193. "lib/wpa81/_._",
  7194. "lib/xamarinios10/_._",
  7195. "lib/xamarinmac20/_._",
  7196. "lib/xamarintvos10/_._",
  7197. "lib/xamarinwatchos10/_._",
  7198. "ref/MonoAndroid10/_._",
  7199. "ref/MonoTouch10/_._",
  7200. "ref/net45/_._",
  7201. "ref/netcore50/System.Reflection.Extensions.dll",
  7202. "ref/netcore50/System.Reflection.Extensions.xml",
  7203. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7204. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7205. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7206. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7207. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7208. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7209. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7210. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7211. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7212. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7213. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7214. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7215. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7216. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7217. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7218. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7219. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7220. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7221. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7222. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7223. "ref/portable-net45+win8+wp8+wpa81/_._",
  7224. "ref/win8/_._",
  7225. "ref/wp80/_._",
  7226. "ref/wpa81/_._",
  7227. "ref/xamarinios10/_._",
  7228. "ref/xamarinmac20/_._",
  7229. "ref/xamarintvos10/_._",
  7230. "ref/xamarinwatchos10/_._",
  7231. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7232. "system.reflection.extensions.nuspec"
  7233. ]
  7234. },
  7235. "System.Reflection.Primitives/4.3.0": {
  7236. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7237. "type": "package",
  7238. "path": "system.reflection.primitives/4.3.0",
  7239. "files": [
  7240. ".nupkg.metadata",
  7241. ".signature.p7s",
  7242. "ThirdPartyNotices.txt",
  7243. "dotnet_library_license.txt",
  7244. "lib/MonoAndroid10/_._",
  7245. "lib/MonoTouch10/_._",
  7246. "lib/net45/_._",
  7247. "lib/portable-net45+win8+wp8+wpa81/_._",
  7248. "lib/win8/_._",
  7249. "lib/wp80/_._",
  7250. "lib/wpa81/_._",
  7251. "lib/xamarinios10/_._",
  7252. "lib/xamarinmac20/_._",
  7253. "lib/xamarintvos10/_._",
  7254. "lib/xamarinwatchos10/_._",
  7255. "ref/MonoAndroid10/_._",
  7256. "ref/MonoTouch10/_._",
  7257. "ref/net45/_._",
  7258. "ref/netcore50/System.Reflection.Primitives.dll",
  7259. "ref/netcore50/System.Reflection.Primitives.xml",
  7260. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7261. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7262. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7263. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7264. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7265. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7266. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7267. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7268. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7269. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7270. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7271. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7272. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7273. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7274. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7275. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7276. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7277. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7278. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7279. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7280. "ref/portable-net45+win8+wp8+wpa81/_._",
  7281. "ref/win8/_._",
  7282. "ref/wp80/_._",
  7283. "ref/wpa81/_._",
  7284. "ref/xamarinios10/_._",
  7285. "ref/xamarinmac20/_._",
  7286. "ref/xamarintvos10/_._",
  7287. "ref/xamarinwatchos10/_._",
  7288. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7289. "system.reflection.primitives.nuspec"
  7290. ]
  7291. },
  7292. "System.Reflection.TypeExtensions/4.3.0": {
  7293. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7294. "type": "package",
  7295. "path": "system.reflection.typeextensions/4.3.0",
  7296. "files": [
  7297. ".nupkg.metadata",
  7298. ".signature.p7s",
  7299. "ThirdPartyNotices.txt",
  7300. "dotnet_library_license.txt",
  7301. "lib/MonoAndroid10/_._",
  7302. "lib/MonoTouch10/_._",
  7303. "lib/net46/System.Reflection.TypeExtensions.dll",
  7304. "lib/net462/System.Reflection.TypeExtensions.dll",
  7305. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7306. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7307. "lib/xamarinios10/_._",
  7308. "lib/xamarinmac20/_._",
  7309. "lib/xamarintvos10/_._",
  7310. "lib/xamarinwatchos10/_._",
  7311. "ref/MonoAndroid10/_._",
  7312. "ref/MonoTouch10/_._",
  7313. "ref/net46/System.Reflection.TypeExtensions.dll",
  7314. "ref/net462/System.Reflection.TypeExtensions.dll",
  7315. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7316. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7317. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7318. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7319. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7320. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7321. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7322. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7323. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7324. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7325. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7326. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7327. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7328. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7329. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7330. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7331. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7332. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7333. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7334. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7335. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7336. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7337. "ref/xamarinios10/_._",
  7338. "ref/xamarinmac20/_._",
  7339. "ref/xamarintvos10/_._",
  7340. "ref/xamarinwatchos10/_._",
  7341. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7342. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7343. "system.reflection.typeextensions.nuspec"
  7344. ]
  7345. },
  7346. "System.Resources.ResourceManager/4.3.0": {
  7347. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7348. "type": "package",
  7349. "path": "system.resources.resourcemanager/4.3.0",
  7350. "files": [
  7351. ".nupkg.metadata",
  7352. ".signature.p7s",
  7353. "ThirdPartyNotices.txt",
  7354. "dotnet_library_license.txt",
  7355. "lib/MonoAndroid10/_._",
  7356. "lib/MonoTouch10/_._",
  7357. "lib/net45/_._",
  7358. "lib/portable-net45+win8+wp8+wpa81/_._",
  7359. "lib/win8/_._",
  7360. "lib/wp80/_._",
  7361. "lib/wpa81/_._",
  7362. "lib/xamarinios10/_._",
  7363. "lib/xamarinmac20/_._",
  7364. "lib/xamarintvos10/_._",
  7365. "lib/xamarinwatchos10/_._",
  7366. "ref/MonoAndroid10/_._",
  7367. "ref/MonoTouch10/_._",
  7368. "ref/net45/_._",
  7369. "ref/netcore50/System.Resources.ResourceManager.dll",
  7370. "ref/netcore50/System.Resources.ResourceManager.xml",
  7371. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7372. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7373. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7374. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7375. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7376. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7377. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7378. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7379. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7380. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7381. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7382. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7383. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7384. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7385. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7386. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7387. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7388. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7389. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7390. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7391. "ref/portable-net45+win8+wp8+wpa81/_._",
  7392. "ref/win8/_._",
  7393. "ref/wp80/_._",
  7394. "ref/wpa81/_._",
  7395. "ref/xamarinios10/_._",
  7396. "ref/xamarinmac20/_._",
  7397. "ref/xamarintvos10/_._",
  7398. "ref/xamarinwatchos10/_._",
  7399. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7400. "system.resources.resourcemanager.nuspec"
  7401. ]
  7402. },
  7403. "System.Runtime/4.3.0": {
  7404. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7405. "type": "package",
  7406. "path": "system.runtime/4.3.0",
  7407. "files": [
  7408. ".nupkg.metadata",
  7409. ".signature.p7s",
  7410. "ThirdPartyNotices.txt",
  7411. "dotnet_library_license.txt",
  7412. "lib/MonoAndroid10/_._",
  7413. "lib/MonoTouch10/_._",
  7414. "lib/net45/_._",
  7415. "lib/net462/System.Runtime.dll",
  7416. "lib/portable-net45+win8+wp80+wpa81/_._",
  7417. "lib/win8/_._",
  7418. "lib/wp80/_._",
  7419. "lib/wpa81/_._",
  7420. "lib/xamarinios10/_._",
  7421. "lib/xamarinmac20/_._",
  7422. "lib/xamarintvos10/_._",
  7423. "lib/xamarinwatchos10/_._",
  7424. "ref/MonoAndroid10/_._",
  7425. "ref/MonoTouch10/_._",
  7426. "ref/net45/_._",
  7427. "ref/net462/System.Runtime.dll",
  7428. "ref/netcore50/System.Runtime.dll",
  7429. "ref/netcore50/System.Runtime.xml",
  7430. "ref/netcore50/de/System.Runtime.xml",
  7431. "ref/netcore50/es/System.Runtime.xml",
  7432. "ref/netcore50/fr/System.Runtime.xml",
  7433. "ref/netcore50/it/System.Runtime.xml",
  7434. "ref/netcore50/ja/System.Runtime.xml",
  7435. "ref/netcore50/ko/System.Runtime.xml",
  7436. "ref/netcore50/ru/System.Runtime.xml",
  7437. "ref/netcore50/zh-hans/System.Runtime.xml",
  7438. "ref/netcore50/zh-hant/System.Runtime.xml",
  7439. "ref/netstandard1.0/System.Runtime.dll",
  7440. "ref/netstandard1.0/System.Runtime.xml",
  7441. "ref/netstandard1.0/de/System.Runtime.xml",
  7442. "ref/netstandard1.0/es/System.Runtime.xml",
  7443. "ref/netstandard1.0/fr/System.Runtime.xml",
  7444. "ref/netstandard1.0/it/System.Runtime.xml",
  7445. "ref/netstandard1.0/ja/System.Runtime.xml",
  7446. "ref/netstandard1.0/ko/System.Runtime.xml",
  7447. "ref/netstandard1.0/ru/System.Runtime.xml",
  7448. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7449. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7450. "ref/netstandard1.2/System.Runtime.dll",
  7451. "ref/netstandard1.2/System.Runtime.xml",
  7452. "ref/netstandard1.2/de/System.Runtime.xml",
  7453. "ref/netstandard1.2/es/System.Runtime.xml",
  7454. "ref/netstandard1.2/fr/System.Runtime.xml",
  7455. "ref/netstandard1.2/it/System.Runtime.xml",
  7456. "ref/netstandard1.2/ja/System.Runtime.xml",
  7457. "ref/netstandard1.2/ko/System.Runtime.xml",
  7458. "ref/netstandard1.2/ru/System.Runtime.xml",
  7459. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7460. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7461. "ref/netstandard1.3/System.Runtime.dll",
  7462. "ref/netstandard1.3/System.Runtime.xml",
  7463. "ref/netstandard1.3/de/System.Runtime.xml",
  7464. "ref/netstandard1.3/es/System.Runtime.xml",
  7465. "ref/netstandard1.3/fr/System.Runtime.xml",
  7466. "ref/netstandard1.3/it/System.Runtime.xml",
  7467. "ref/netstandard1.3/ja/System.Runtime.xml",
  7468. "ref/netstandard1.3/ko/System.Runtime.xml",
  7469. "ref/netstandard1.3/ru/System.Runtime.xml",
  7470. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7471. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7472. "ref/netstandard1.5/System.Runtime.dll",
  7473. "ref/netstandard1.5/System.Runtime.xml",
  7474. "ref/netstandard1.5/de/System.Runtime.xml",
  7475. "ref/netstandard1.5/es/System.Runtime.xml",
  7476. "ref/netstandard1.5/fr/System.Runtime.xml",
  7477. "ref/netstandard1.5/it/System.Runtime.xml",
  7478. "ref/netstandard1.5/ja/System.Runtime.xml",
  7479. "ref/netstandard1.5/ko/System.Runtime.xml",
  7480. "ref/netstandard1.5/ru/System.Runtime.xml",
  7481. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7482. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7483. "ref/portable-net45+win8+wp80+wpa81/_._",
  7484. "ref/win8/_._",
  7485. "ref/wp80/_._",
  7486. "ref/wpa81/_._",
  7487. "ref/xamarinios10/_._",
  7488. "ref/xamarinmac20/_._",
  7489. "ref/xamarintvos10/_._",
  7490. "ref/xamarinwatchos10/_._",
  7491. "system.runtime.4.3.0.nupkg.sha512",
  7492. "system.runtime.nuspec"
  7493. ]
  7494. },
  7495. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7496. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7497. "type": "package",
  7498. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7499. "files": [
  7500. ".nupkg.metadata",
  7501. ".signature.p7s",
  7502. "Icon.png",
  7503. "LICENSE.TXT",
  7504. "THIRD-PARTY-NOTICES.TXT",
  7505. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7506. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7507. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7508. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7509. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7510. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7511. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7512. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7513. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7514. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7515. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7516. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7517. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7518. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7519. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7520. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7521. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7522. "system.runtime.compilerservices.unsafe.nuspec",
  7523. "useSharedDesignerContext.txt",
  7524. "version.txt"
  7525. ]
  7526. },
  7527. "System.Runtime.Extensions/4.3.0": {
  7528. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7529. "type": "package",
  7530. "path": "system.runtime.extensions/4.3.0",
  7531. "files": [
  7532. ".nupkg.metadata",
  7533. ".signature.p7s",
  7534. "ThirdPartyNotices.txt",
  7535. "dotnet_library_license.txt",
  7536. "lib/MonoAndroid10/_._",
  7537. "lib/MonoTouch10/_._",
  7538. "lib/net45/_._",
  7539. "lib/net462/System.Runtime.Extensions.dll",
  7540. "lib/portable-net45+win8+wp8+wpa81/_._",
  7541. "lib/win8/_._",
  7542. "lib/wp80/_._",
  7543. "lib/wpa81/_._",
  7544. "lib/xamarinios10/_._",
  7545. "lib/xamarinmac20/_._",
  7546. "lib/xamarintvos10/_._",
  7547. "lib/xamarinwatchos10/_._",
  7548. "ref/MonoAndroid10/_._",
  7549. "ref/MonoTouch10/_._",
  7550. "ref/net45/_._",
  7551. "ref/net462/System.Runtime.Extensions.dll",
  7552. "ref/netcore50/System.Runtime.Extensions.dll",
  7553. "ref/netcore50/System.Runtime.Extensions.xml",
  7554. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7555. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7556. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7557. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7558. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7559. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7560. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7561. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7562. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7563. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7564. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7565. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7566. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7567. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7568. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7569. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7570. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7571. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7572. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7573. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7574. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7575. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7576. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7577. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7578. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7579. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7580. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7581. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7582. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7583. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7584. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7585. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7586. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7587. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7588. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7589. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7590. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7591. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7592. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7593. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7594. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7595. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7596. "ref/portable-net45+win8+wp8+wpa81/_._",
  7597. "ref/win8/_._",
  7598. "ref/wp80/_._",
  7599. "ref/wpa81/_._",
  7600. "ref/xamarinios10/_._",
  7601. "ref/xamarinmac20/_._",
  7602. "ref/xamarintvos10/_._",
  7603. "ref/xamarinwatchos10/_._",
  7604. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7605. "system.runtime.extensions.nuspec"
  7606. ]
  7607. },
  7608. "System.Runtime.Handles/4.3.0": {
  7609. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7610. "type": "package",
  7611. "path": "system.runtime.handles/4.3.0",
  7612. "files": [
  7613. ".nupkg.metadata",
  7614. ".signature.p7s",
  7615. "ThirdPartyNotices.txt",
  7616. "dotnet_library_license.txt",
  7617. "lib/MonoAndroid10/_._",
  7618. "lib/MonoTouch10/_._",
  7619. "lib/net46/_._",
  7620. "lib/xamarinios10/_._",
  7621. "lib/xamarinmac20/_._",
  7622. "lib/xamarintvos10/_._",
  7623. "lib/xamarinwatchos10/_._",
  7624. "ref/MonoAndroid10/_._",
  7625. "ref/MonoTouch10/_._",
  7626. "ref/net46/_._",
  7627. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7628. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7629. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7630. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7631. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7632. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7633. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7634. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7635. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7636. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7637. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7638. "ref/xamarinios10/_._",
  7639. "ref/xamarinmac20/_._",
  7640. "ref/xamarintvos10/_._",
  7641. "ref/xamarinwatchos10/_._",
  7642. "system.runtime.handles.4.3.0.nupkg.sha512",
  7643. "system.runtime.handles.nuspec"
  7644. ]
  7645. },
  7646. "System.Runtime.InteropServices/4.3.0": {
  7647. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7648. "type": "package",
  7649. "path": "system.runtime.interopservices/4.3.0",
  7650. "files": [
  7651. ".nupkg.metadata",
  7652. ".signature.p7s",
  7653. "ThirdPartyNotices.txt",
  7654. "dotnet_library_license.txt",
  7655. "lib/MonoAndroid10/_._",
  7656. "lib/MonoTouch10/_._",
  7657. "lib/net45/_._",
  7658. "lib/net462/System.Runtime.InteropServices.dll",
  7659. "lib/net463/System.Runtime.InteropServices.dll",
  7660. "lib/portable-net45+win8+wpa81/_._",
  7661. "lib/win8/_._",
  7662. "lib/wpa81/_._",
  7663. "lib/xamarinios10/_._",
  7664. "lib/xamarinmac20/_._",
  7665. "lib/xamarintvos10/_._",
  7666. "lib/xamarinwatchos10/_._",
  7667. "ref/MonoAndroid10/_._",
  7668. "ref/MonoTouch10/_._",
  7669. "ref/net45/_._",
  7670. "ref/net462/System.Runtime.InteropServices.dll",
  7671. "ref/net463/System.Runtime.InteropServices.dll",
  7672. "ref/netcore50/System.Runtime.InteropServices.dll",
  7673. "ref/netcore50/System.Runtime.InteropServices.xml",
  7674. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7675. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7676. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7677. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7678. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7679. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7680. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7681. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7682. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7683. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7684. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7685. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7686. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7687. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7688. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7689. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7690. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7691. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7692. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7693. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7694. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7695. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7696. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7697. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7698. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7699. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7700. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7701. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7702. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7703. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7704. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7705. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7706. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7707. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7708. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7709. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7710. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7711. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7712. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7713. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7714. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7715. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7716. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7717. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7718. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7719. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7720. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7721. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7722. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7723. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7724. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7725. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7726. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7727. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7728. "ref/portable-net45+win8+wpa81/_._",
  7729. "ref/win8/_._",
  7730. "ref/wpa81/_._",
  7731. "ref/xamarinios10/_._",
  7732. "ref/xamarinmac20/_._",
  7733. "ref/xamarintvos10/_._",
  7734. "ref/xamarinwatchos10/_._",
  7735. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7736. "system.runtime.interopservices.nuspec"
  7737. ]
  7738. },
  7739. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7740. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7741. "type": "package",
  7742. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7743. "files": [
  7744. ".nupkg.metadata",
  7745. ".signature.p7s",
  7746. "ThirdPartyNotices.txt",
  7747. "dotnet_library_license.txt",
  7748. "lib/MonoAndroid10/_._",
  7749. "lib/MonoTouch10/_._",
  7750. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7751. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7752. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7753. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7754. "lib/xamarinios10/_._",
  7755. "lib/xamarinmac20/_._",
  7756. "lib/xamarintvos10/_._",
  7757. "lib/xamarinwatchos10/_._",
  7758. "ref/MonoAndroid10/_._",
  7759. "ref/MonoTouch10/_._",
  7760. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7761. "ref/xamarinios10/_._",
  7762. "ref/xamarinmac20/_._",
  7763. "ref/xamarintvos10/_._",
  7764. "ref/xamarinwatchos10/_._",
  7765. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7766. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7767. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7768. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7769. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7770. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7771. "system.runtime.interopservices.runtimeinformation.nuspec"
  7772. ]
  7773. },
  7774. "System.Runtime.Numerics/4.3.0": {
  7775. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7776. "type": "package",
  7777. "path": "system.runtime.numerics/4.3.0",
  7778. "files": [
  7779. ".nupkg.metadata",
  7780. ".signature.p7s",
  7781. "ThirdPartyNotices.txt",
  7782. "dotnet_library_license.txt",
  7783. "lib/MonoAndroid10/_._",
  7784. "lib/MonoTouch10/_._",
  7785. "lib/net45/_._",
  7786. "lib/netcore50/System.Runtime.Numerics.dll",
  7787. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7788. "lib/portable-net45+win8+wpa81/_._",
  7789. "lib/win8/_._",
  7790. "lib/wpa81/_._",
  7791. "lib/xamarinios10/_._",
  7792. "lib/xamarinmac20/_._",
  7793. "lib/xamarintvos10/_._",
  7794. "lib/xamarinwatchos10/_._",
  7795. "ref/MonoAndroid10/_._",
  7796. "ref/MonoTouch10/_._",
  7797. "ref/net45/_._",
  7798. "ref/netcore50/System.Runtime.Numerics.dll",
  7799. "ref/netcore50/System.Runtime.Numerics.xml",
  7800. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7801. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7802. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7803. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7804. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7805. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7806. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7807. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7808. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7809. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7810. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7811. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7812. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7813. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7814. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7815. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7816. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7817. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7818. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7819. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7820. "ref/portable-net45+win8+wpa81/_._",
  7821. "ref/win8/_._",
  7822. "ref/wpa81/_._",
  7823. "ref/xamarinios10/_._",
  7824. "ref/xamarinmac20/_._",
  7825. "ref/xamarintvos10/_._",
  7826. "ref/xamarinwatchos10/_._",
  7827. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7828. "system.runtime.numerics.nuspec"
  7829. ]
  7830. },
  7831. "System.Runtime.Serialization.Primitives/4.3.0": {
  7832. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7833. "type": "package",
  7834. "path": "system.runtime.serialization.primitives/4.3.0",
  7835. "files": [
  7836. ".nupkg.metadata",
  7837. ".signature.p7s",
  7838. "ThirdPartyNotices.txt",
  7839. "dotnet_library_license.txt",
  7840. "lib/MonoAndroid10/_._",
  7841. "lib/MonoTouch10/_._",
  7842. "lib/net45/_._",
  7843. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7844. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7845. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7846. "lib/portable-net45+win8+wp8+wpa81/_._",
  7847. "lib/win8/_._",
  7848. "lib/wp80/_._",
  7849. "lib/wpa81/_._",
  7850. "lib/xamarinios10/_._",
  7851. "lib/xamarinmac20/_._",
  7852. "lib/xamarintvos10/_._",
  7853. "lib/xamarinwatchos10/_._",
  7854. "ref/MonoAndroid10/_._",
  7855. "ref/MonoTouch10/_._",
  7856. "ref/net45/_._",
  7857. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7858. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7859. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7860. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7861. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7862. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7863. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7864. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7865. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7866. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7867. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7868. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7869. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7870. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7871. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7872. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7873. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7874. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7875. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7876. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7877. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7878. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7879. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7880. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7881. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7882. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7883. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7884. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7885. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7886. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7887. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7888. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7889. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7890. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7891. "ref/portable-net45+win8+wp8+wpa81/_._",
  7892. "ref/win8/_._",
  7893. "ref/wp80/_._",
  7894. "ref/wpa81/_._",
  7895. "ref/xamarinios10/_._",
  7896. "ref/xamarinmac20/_._",
  7897. "ref/xamarintvos10/_._",
  7898. "ref/xamarinwatchos10/_._",
  7899. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7900. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7901. "system.runtime.serialization.primitives.nuspec"
  7902. ]
  7903. },
  7904. "System.Security.AccessControl/4.7.0": {
  7905. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7906. "type": "package",
  7907. "path": "system.security.accesscontrol/4.7.0",
  7908. "files": [
  7909. ".nupkg.metadata",
  7910. ".signature.p7s",
  7911. "LICENSE.TXT",
  7912. "THIRD-PARTY-NOTICES.TXT",
  7913. "lib/net46/System.Security.AccessControl.dll",
  7914. "lib/net461/System.Security.AccessControl.dll",
  7915. "lib/net461/System.Security.AccessControl.xml",
  7916. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7917. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7918. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7919. "lib/uap10.0.16299/_._",
  7920. "ref/net46/System.Security.AccessControl.dll",
  7921. "ref/net461/System.Security.AccessControl.dll",
  7922. "ref/net461/System.Security.AccessControl.xml",
  7923. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7924. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7925. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7926. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7927. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7928. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7929. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7930. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7931. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7932. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7933. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7934. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7935. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7936. "ref/uap10.0.16299/_._",
  7937. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7938. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7939. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7940. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7941. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7942. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7943. "runtimes/win/lib/uap10.0.16299/_._",
  7944. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7945. "system.security.accesscontrol.nuspec",
  7946. "useSharedDesignerContext.txt",
  7947. "version.txt"
  7948. ]
  7949. },
  7950. "System.Security.Claims/4.3.0": {
  7951. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7952. "type": "package",
  7953. "path": "system.security.claims/4.3.0",
  7954. "files": [
  7955. ".nupkg.metadata",
  7956. ".signature.p7s",
  7957. "ThirdPartyNotices.txt",
  7958. "dotnet_library_license.txt",
  7959. "lib/MonoAndroid10/_._",
  7960. "lib/MonoTouch10/_._",
  7961. "lib/net46/System.Security.Claims.dll",
  7962. "lib/netstandard1.3/System.Security.Claims.dll",
  7963. "lib/xamarinios10/_._",
  7964. "lib/xamarinmac20/_._",
  7965. "lib/xamarintvos10/_._",
  7966. "lib/xamarinwatchos10/_._",
  7967. "ref/MonoAndroid10/_._",
  7968. "ref/MonoTouch10/_._",
  7969. "ref/net46/System.Security.Claims.dll",
  7970. "ref/netstandard1.3/System.Security.Claims.dll",
  7971. "ref/netstandard1.3/System.Security.Claims.xml",
  7972. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7973. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7974. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7975. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7976. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7977. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7978. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7979. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7980. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7981. "ref/xamarinios10/_._",
  7982. "ref/xamarinmac20/_._",
  7983. "ref/xamarintvos10/_._",
  7984. "ref/xamarinwatchos10/_._",
  7985. "system.security.claims.4.3.0.nupkg.sha512",
  7986. "system.security.claims.nuspec"
  7987. ]
  7988. },
  7989. "System.Security.Cryptography.Algorithms/4.3.0": {
  7990. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7991. "type": "package",
  7992. "path": "system.security.cryptography.algorithms/4.3.0",
  7993. "files": [
  7994. ".nupkg.metadata",
  7995. ".signature.p7s",
  7996. "ThirdPartyNotices.txt",
  7997. "dotnet_library_license.txt",
  7998. "lib/MonoAndroid10/_._",
  7999. "lib/MonoTouch10/_._",
  8000. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8001. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8002. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8003. "lib/xamarinios10/_._",
  8004. "lib/xamarinmac20/_._",
  8005. "lib/xamarintvos10/_._",
  8006. "lib/xamarinwatchos10/_._",
  8007. "ref/MonoAndroid10/_._",
  8008. "ref/MonoTouch10/_._",
  8009. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8010. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8011. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8012. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8013. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8014. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8015. "ref/xamarinios10/_._",
  8016. "ref/xamarinmac20/_._",
  8017. "ref/xamarintvos10/_._",
  8018. "ref/xamarinwatchos10/_._",
  8019. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8020. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8021. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8022. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8023. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8024. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8025. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8026. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8027. "system.security.cryptography.algorithms.nuspec"
  8028. ]
  8029. },
  8030. "System.Security.Cryptography.Cng/4.3.0": {
  8031. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8032. "type": "package",
  8033. "path": "system.security.cryptography.cng/4.3.0",
  8034. "files": [
  8035. ".nupkg.metadata",
  8036. ".signature.p7s",
  8037. "ThirdPartyNotices.txt",
  8038. "dotnet_library_license.txt",
  8039. "lib/net46/System.Security.Cryptography.Cng.dll",
  8040. "lib/net461/System.Security.Cryptography.Cng.dll",
  8041. "lib/net463/System.Security.Cryptography.Cng.dll",
  8042. "ref/net46/System.Security.Cryptography.Cng.dll",
  8043. "ref/net461/System.Security.Cryptography.Cng.dll",
  8044. "ref/net463/System.Security.Cryptography.Cng.dll",
  8045. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8046. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8047. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8048. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8049. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8050. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8051. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8052. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8053. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8054. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8055. "system.security.cryptography.cng.nuspec"
  8056. ]
  8057. },
  8058. "System.Security.Cryptography.Csp/4.3.0": {
  8059. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8060. "type": "package",
  8061. "path": "system.security.cryptography.csp/4.3.0",
  8062. "files": [
  8063. ".nupkg.metadata",
  8064. ".signature.p7s",
  8065. "ThirdPartyNotices.txt",
  8066. "dotnet_library_license.txt",
  8067. "lib/MonoAndroid10/_._",
  8068. "lib/MonoTouch10/_._",
  8069. "lib/net46/System.Security.Cryptography.Csp.dll",
  8070. "lib/xamarinios10/_._",
  8071. "lib/xamarinmac20/_._",
  8072. "lib/xamarintvos10/_._",
  8073. "lib/xamarinwatchos10/_._",
  8074. "ref/MonoAndroid10/_._",
  8075. "ref/MonoTouch10/_._",
  8076. "ref/net46/System.Security.Cryptography.Csp.dll",
  8077. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8078. "ref/xamarinios10/_._",
  8079. "ref/xamarinmac20/_._",
  8080. "ref/xamarintvos10/_._",
  8081. "ref/xamarinwatchos10/_._",
  8082. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8083. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8084. "runtimes/win/lib/netcore50/_._",
  8085. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8086. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8087. "system.security.cryptography.csp.nuspec"
  8088. ]
  8089. },
  8090. "System.Security.Cryptography.Encoding/4.3.0": {
  8091. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8092. "type": "package",
  8093. "path": "system.security.cryptography.encoding/4.3.0",
  8094. "files": [
  8095. ".nupkg.metadata",
  8096. ".signature.p7s",
  8097. "ThirdPartyNotices.txt",
  8098. "dotnet_library_license.txt",
  8099. "lib/MonoAndroid10/_._",
  8100. "lib/MonoTouch10/_._",
  8101. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8102. "lib/xamarinios10/_._",
  8103. "lib/xamarinmac20/_._",
  8104. "lib/xamarintvos10/_._",
  8105. "lib/xamarinwatchos10/_._",
  8106. "ref/MonoAndroid10/_._",
  8107. "ref/MonoTouch10/_._",
  8108. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8109. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8110. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8111. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8112. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8113. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8114. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8115. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8116. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8117. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8118. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8119. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8120. "ref/xamarinios10/_._",
  8121. "ref/xamarinmac20/_._",
  8122. "ref/xamarintvos10/_._",
  8123. "ref/xamarinwatchos10/_._",
  8124. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8125. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8126. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8127. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8128. "system.security.cryptography.encoding.nuspec"
  8129. ]
  8130. },
  8131. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8132. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8133. "type": "package",
  8134. "path": "system.security.cryptography.openssl/4.3.0",
  8135. "files": [
  8136. ".nupkg.metadata",
  8137. ".signature.p7s",
  8138. "ThirdPartyNotices.txt",
  8139. "dotnet_library_license.txt",
  8140. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8141. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8142. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8143. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8144. "system.security.cryptography.openssl.nuspec"
  8145. ]
  8146. },
  8147. "System.Security.Cryptography.Primitives/4.3.0": {
  8148. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8149. "type": "package",
  8150. "path": "system.security.cryptography.primitives/4.3.0",
  8151. "files": [
  8152. ".nupkg.metadata",
  8153. ".signature.p7s",
  8154. "ThirdPartyNotices.txt",
  8155. "dotnet_library_license.txt",
  8156. "lib/MonoAndroid10/_._",
  8157. "lib/MonoTouch10/_._",
  8158. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8159. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8160. "lib/xamarinios10/_._",
  8161. "lib/xamarinmac20/_._",
  8162. "lib/xamarintvos10/_._",
  8163. "lib/xamarinwatchos10/_._",
  8164. "ref/MonoAndroid10/_._",
  8165. "ref/MonoTouch10/_._",
  8166. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8167. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8168. "ref/xamarinios10/_._",
  8169. "ref/xamarinmac20/_._",
  8170. "ref/xamarintvos10/_._",
  8171. "ref/xamarinwatchos10/_._",
  8172. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8173. "system.security.cryptography.primitives.nuspec"
  8174. ]
  8175. },
  8176. "System.Security.Cryptography.ProtectedData/4.5.0": {
  8177. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  8178. "type": "package",
  8179. "path": "system.security.cryptography.protecteddata/4.5.0",
  8180. "files": [
  8181. ".nupkg.metadata",
  8182. ".signature.p7s",
  8183. "LICENSE.TXT",
  8184. "THIRD-PARTY-NOTICES.TXT",
  8185. "lib/MonoAndroid10/_._",
  8186. "lib/MonoTouch10/_._",
  8187. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8188. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8189. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8190. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8191. "lib/xamarinios10/_._",
  8192. "lib/xamarinmac20/_._",
  8193. "lib/xamarintvos10/_._",
  8194. "lib/xamarinwatchos10/_._",
  8195. "ref/MonoAndroid10/_._",
  8196. "ref/MonoTouch10/_._",
  8197. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8198. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8199. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8200. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8201. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8202. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8203. "ref/xamarinios10/_._",
  8204. "ref/xamarinmac20/_._",
  8205. "ref/xamarintvos10/_._",
  8206. "ref/xamarinwatchos10/_._",
  8207. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8208. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8209. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8210. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8211. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8212. "system.security.cryptography.protecteddata.nuspec",
  8213. "useSharedDesignerContext.txt",
  8214. "version.txt"
  8215. ]
  8216. },
  8217. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8218. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8219. "type": "package",
  8220. "path": "system.security.cryptography.x509certificates/4.3.0",
  8221. "files": [
  8222. ".nupkg.metadata",
  8223. ".signature.p7s",
  8224. "ThirdPartyNotices.txt",
  8225. "dotnet_library_license.txt",
  8226. "lib/MonoAndroid10/_._",
  8227. "lib/MonoTouch10/_._",
  8228. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8229. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8230. "lib/xamarinios10/_._",
  8231. "lib/xamarinmac20/_._",
  8232. "lib/xamarintvos10/_._",
  8233. "lib/xamarinwatchos10/_._",
  8234. "ref/MonoAndroid10/_._",
  8235. "ref/MonoTouch10/_._",
  8236. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8237. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8238. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8239. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8240. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8241. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8242. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8243. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8244. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8245. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8246. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8247. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8248. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8249. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8250. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8251. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8252. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8253. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8254. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8255. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8256. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8257. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8258. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8259. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8260. "ref/xamarinios10/_._",
  8261. "ref/xamarinmac20/_._",
  8262. "ref/xamarintvos10/_._",
  8263. "ref/xamarinwatchos10/_._",
  8264. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8265. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8266. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8267. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8268. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8269. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8270. "system.security.cryptography.x509certificates.nuspec"
  8271. ]
  8272. },
  8273. "System.Security.Permissions/4.7.0": {
  8274. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8275. "type": "package",
  8276. "path": "system.security.permissions/4.7.0",
  8277. "files": [
  8278. ".nupkg.metadata",
  8279. ".signature.p7s",
  8280. "LICENSE.TXT",
  8281. "THIRD-PARTY-NOTICES.TXT",
  8282. "lib/net461/System.Security.Permissions.dll",
  8283. "lib/net461/System.Security.Permissions.xml",
  8284. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8285. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8286. "lib/netstandard2.0/System.Security.Permissions.dll",
  8287. "lib/netstandard2.0/System.Security.Permissions.xml",
  8288. "ref/net461/System.Security.Permissions.dll",
  8289. "ref/net461/System.Security.Permissions.xml",
  8290. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8291. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8292. "ref/netstandard2.0/System.Security.Permissions.dll",
  8293. "ref/netstandard2.0/System.Security.Permissions.xml",
  8294. "system.security.permissions.4.7.0.nupkg.sha512",
  8295. "system.security.permissions.nuspec",
  8296. "useSharedDesignerContext.txt",
  8297. "version.txt"
  8298. ]
  8299. },
  8300. "System.Security.Principal/4.3.0": {
  8301. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8302. "type": "package",
  8303. "path": "system.security.principal/4.3.0",
  8304. "files": [
  8305. ".nupkg.metadata",
  8306. ".signature.p7s",
  8307. "ThirdPartyNotices.txt",
  8308. "dotnet_library_license.txt",
  8309. "lib/MonoAndroid10/_._",
  8310. "lib/MonoTouch10/_._",
  8311. "lib/net45/_._",
  8312. "lib/netcore50/System.Security.Principal.dll",
  8313. "lib/netstandard1.0/System.Security.Principal.dll",
  8314. "lib/portable-net45+win8+wp8+wpa81/_._",
  8315. "lib/win8/_._",
  8316. "lib/wp80/_._",
  8317. "lib/wpa81/_._",
  8318. "lib/xamarinios10/_._",
  8319. "lib/xamarinmac20/_._",
  8320. "lib/xamarintvos10/_._",
  8321. "lib/xamarinwatchos10/_._",
  8322. "ref/MonoAndroid10/_._",
  8323. "ref/MonoTouch10/_._",
  8324. "ref/net45/_._",
  8325. "ref/netcore50/System.Security.Principal.dll",
  8326. "ref/netcore50/System.Security.Principal.xml",
  8327. "ref/netcore50/de/System.Security.Principal.xml",
  8328. "ref/netcore50/es/System.Security.Principal.xml",
  8329. "ref/netcore50/fr/System.Security.Principal.xml",
  8330. "ref/netcore50/it/System.Security.Principal.xml",
  8331. "ref/netcore50/ja/System.Security.Principal.xml",
  8332. "ref/netcore50/ko/System.Security.Principal.xml",
  8333. "ref/netcore50/ru/System.Security.Principal.xml",
  8334. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8335. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8336. "ref/netstandard1.0/System.Security.Principal.dll",
  8337. "ref/netstandard1.0/System.Security.Principal.xml",
  8338. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8339. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8340. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8341. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8342. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8343. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8344. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8345. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8346. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8347. "ref/portable-net45+win8+wp8+wpa81/_._",
  8348. "ref/win8/_._",
  8349. "ref/wp80/_._",
  8350. "ref/wpa81/_._",
  8351. "ref/xamarinios10/_._",
  8352. "ref/xamarinmac20/_._",
  8353. "ref/xamarintvos10/_._",
  8354. "ref/xamarinwatchos10/_._",
  8355. "system.security.principal.4.3.0.nupkg.sha512",
  8356. "system.security.principal.nuspec"
  8357. ]
  8358. },
  8359. "System.Security.Principal.Windows/4.7.0": {
  8360. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8361. "type": "package",
  8362. "path": "system.security.principal.windows/4.7.0",
  8363. "files": [
  8364. ".nupkg.metadata",
  8365. ".signature.p7s",
  8366. "LICENSE.TXT",
  8367. "THIRD-PARTY-NOTICES.TXT",
  8368. "lib/net46/System.Security.Principal.Windows.dll",
  8369. "lib/net461/System.Security.Principal.Windows.dll",
  8370. "lib/net461/System.Security.Principal.Windows.xml",
  8371. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8372. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8373. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8374. "lib/uap10.0.16299/_._",
  8375. "ref/net46/System.Security.Principal.Windows.dll",
  8376. "ref/net461/System.Security.Principal.Windows.dll",
  8377. "ref/net461/System.Security.Principal.Windows.xml",
  8378. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8379. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8380. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8381. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8382. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8383. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8384. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8385. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8386. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8387. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8388. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8389. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8390. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8391. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8392. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8393. "ref/uap10.0.16299/_._",
  8394. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8395. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8396. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8397. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8398. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8399. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8400. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8401. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8402. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8403. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8404. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8405. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8406. "runtimes/win/lib/uap10.0.16299/_._",
  8407. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8408. "system.security.principal.windows.nuspec",
  8409. "useSharedDesignerContext.txt",
  8410. "version.txt"
  8411. ]
  8412. },
  8413. "System.Text.Encoding/4.3.0": {
  8414. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8415. "type": "package",
  8416. "path": "system.text.encoding/4.3.0",
  8417. "files": [
  8418. ".nupkg.metadata",
  8419. ".signature.p7s",
  8420. "ThirdPartyNotices.txt",
  8421. "dotnet_library_license.txt",
  8422. "lib/MonoAndroid10/_._",
  8423. "lib/MonoTouch10/_._",
  8424. "lib/net45/_._",
  8425. "lib/portable-net45+win8+wp8+wpa81/_._",
  8426. "lib/win8/_._",
  8427. "lib/wp80/_._",
  8428. "lib/wpa81/_._",
  8429. "lib/xamarinios10/_._",
  8430. "lib/xamarinmac20/_._",
  8431. "lib/xamarintvos10/_._",
  8432. "lib/xamarinwatchos10/_._",
  8433. "ref/MonoAndroid10/_._",
  8434. "ref/MonoTouch10/_._",
  8435. "ref/net45/_._",
  8436. "ref/netcore50/System.Text.Encoding.dll",
  8437. "ref/netcore50/System.Text.Encoding.xml",
  8438. "ref/netcore50/de/System.Text.Encoding.xml",
  8439. "ref/netcore50/es/System.Text.Encoding.xml",
  8440. "ref/netcore50/fr/System.Text.Encoding.xml",
  8441. "ref/netcore50/it/System.Text.Encoding.xml",
  8442. "ref/netcore50/ja/System.Text.Encoding.xml",
  8443. "ref/netcore50/ko/System.Text.Encoding.xml",
  8444. "ref/netcore50/ru/System.Text.Encoding.xml",
  8445. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8446. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8447. "ref/netstandard1.0/System.Text.Encoding.dll",
  8448. "ref/netstandard1.0/System.Text.Encoding.xml",
  8449. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8450. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8451. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8452. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8453. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8454. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8455. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8456. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8457. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8458. "ref/netstandard1.3/System.Text.Encoding.dll",
  8459. "ref/netstandard1.3/System.Text.Encoding.xml",
  8460. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8461. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8462. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8463. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8464. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8465. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8466. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8467. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8468. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8469. "ref/portable-net45+win8+wp8+wpa81/_._",
  8470. "ref/win8/_._",
  8471. "ref/wp80/_._",
  8472. "ref/wpa81/_._",
  8473. "ref/xamarinios10/_._",
  8474. "ref/xamarinmac20/_._",
  8475. "ref/xamarintvos10/_._",
  8476. "ref/xamarinwatchos10/_._",
  8477. "system.text.encoding.4.3.0.nupkg.sha512",
  8478. "system.text.encoding.nuspec"
  8479. ]
  8480. },
  8481. "System.Text.Encoding.CodePages/5.0.0": {
  8482. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8483. "type": "package",
  8484. "path": "system.text.encoding.codepages/5.0.0",
  8485. "files": [
  8486. ".nupkg.metadata",
  8487. ".signature.p7s",
  8488. "Icon.png",
  8489. "LICENSE.TXT",
  8490. "THIRD-PARTY-NOTICES.TXT",
  8491. "lib/MonoAndroid10/_._",
  8492. "lib/MonoTouch10/_._",
  8493. "lib/net46/System.Text.Encoding.CodePages.dll",
  8494. "lib/net461/System.Text.Encoding.CodePages.dll",
  8495. "lib/net461/System.Text.Encoding.CodePages.xml",
  8496. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8497. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8498. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8499. "lib/xamarinios10/_._",
  8500. "lib/xamarinmac20/_._",
  8501. "lib/xamarintvos10/_._",
  8502. "lib/xamarinwatchos10/_._",
  8503. "ref/MonoAndroid10/_._",
  8504. "ref/MonoTouch10/_._",
  8505. "ref/xamarinios10/_._",
  8506. "ref/xamarinmac20/_._",
  8507. "ref/xamarintvos10/_._",
  8508. "ref/xamarinwatchos10/_._",
  8509. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8510. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8511. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8512. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8513. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8514. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8515. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8516. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8517. "system.text.encoding.codepages.nuspec",
  8518. "useSharedDesignerContext.txt",
  8519. "version.txt"
  8520. ]
  8521. },
  8522. "System.Text.Encoding.Extensions/4.3.0": {
  8523. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8524. "type": "package",
  8525. "path": "system.text.encoding.extensions/4.3.0",
  8526. "files": [
  8527. ".nupkg.metadata",
  8528. ".signature.p7s",
  8529. "ThirdPartyNotices.txt",
  8530. "dotnet_library_license.txt",
  8531. "lib/MonoAndroid10/_._",
  8532. "lib/MonoTouch10/_._",
  8533. "lib/net45/_._",
  8534. "lib/portable-net45+win8+wp8+wpa81/_._",
  8535. "lib/win8/_._",
  8536. "lib/wp80/_._",
  8537. "lib/wpa81/_._",
  8538. "lib/xamarinios10/_._",
  8539. "lib/xamarinmac20/_._",
  8540. "lib/xamarintvos10/_._",
  8541. "lib/xamarinwatchos10/_._",
  8542. "ref/MonoAndroid10/_._",
  8543. "ref/MonoTouch10/_._",
  8544. "ref/net45/_._",
  8545. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8546. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8547. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8548. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8549. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8550. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8551. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8552. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8553. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8554. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8555. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8556. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8557. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8558. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8559. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8560. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8561. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8562. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8563. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8564. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8565. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8566. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8567. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8568. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8569. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8570. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8571. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8572. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8573. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8574. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8575. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8576. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8577. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8578. "ref/portable-net45+win8+wp8+wpa81/_._",
  8579. "ref/win8/_._",
  8580. "ref/wp80/_._",
  8581. "ref/wpa81/_._",
  8582. "ref/xamarinios10/_._",
  8583. "ref/xamarinmac20/_._",
  8584. "ref/xamarintvos10/_._",
  8585. "ref/xamarinwatchos10/_._",
  8586. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8587. "system.text.encoding.extensions.nuspec"
  8588. ]
  8589. },
  8590. "System.Text.Encodings.Web/4.7.0": {
  8591. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8592. "type": "package",
  8593. "path": "system.text.encodings.web/4.7.0",
  8594. "files": [
  8595. ".nupkg.metadata",
  8596. ".signature.p7s",
  8597. "LICENSE.TXT",
  8598. "THIRD-PARTY-NOTICES.TXT",
  8599. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8600. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8601. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8602. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8603. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8604. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8605. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8606. "system.text.encodings.web.nuspec",
  8607. "useSharedDesignerContext.txt",
  8608. "version.txt"
  8609. ]
  8610. },
  8611. "System.Text.RegularExpressions/4.3.0": {
  8612. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8613. "type": "package",
  8614. "path": "system.text.regularexpressions/4.3.0",
  8615. "files": [
  8616. ".nupkg.metadata",
  8617. ".signature.p7s",
  8618. "ThirdPartyNotices.txt",
  8619. "dotnet_library_license.txt",
  8620. "lib/MonoAndroid10/_._",
  8621. "lib/MonoTouch10/_._",
  8622. "lib/net45/_._",
  8623. "lib/net463/System.Text.RegularExpressions.dll",
  8624. "lib/netcore50/System.Text.RegularExpressions.dll",
  8625. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8626. "lib/portable-net45+win8+wp8+wpa81/_._",
  8627. "lib/win8/_._",
  8628. "lib/wp80/_._",
  8629. "lib/wpa81/_._",
  8630. "lib/xamarinios10/_._",
  8631. "lib/xamarinmac20/_._",
  8632. "lib/xamarintvos10/_._",
  8633. "lib/xamarinwatchos10/_._",
  8634. "ref/MonoAndroid10/_._",
  8635. "ref/MonoTouch10/_._",
  8636. "ref/net45/_._",
  8637. "ref/net463/System.Text.RegularExpressions.dll",
  8638. "ref/netcore50/System.Text.RegularExpressions.dll",
  8639. "ref/netcore50/System.Text.RegularExpressions.xml",
  8640. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8641. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8642. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8643. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8644. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8645. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8646. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8647. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8648. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8649. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8650. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8651. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8652. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8653. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8654. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8655. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8656. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8657. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8658. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8659. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8660. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8661. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8662. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8663. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8664. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8665. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8666. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8667. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8668. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8669. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8670. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8671. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8672. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8673. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8674. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8675. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8676. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8677. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8678. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8679. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8680. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8681. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8682. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8683. "ref/portable-net45+win8+wp8+wpa81/_._",
  8684. "ref/win8/_._",
  8685. "ref/wp80/_._",
  8686. "ref/wpa81/_._",
  8687. "ref/xamarinios10/_._",
  8688. "ref/xamarinmac20/_._",
  8689. "ref/xamarintvos10/_._",
  8690. "ref/xamarinwatchos10/_._",
  8691. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8692. "system.text.regularexpressions.nuspec"
  8693. ]
  8694. },
  8695. "System.Threading/4.3.0": {
  8696. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8697. "type": "package",
  8698. "path": "system.threading/4.3.0",
  8699. "files": [
  8700. ".nupkg.metadata",
  8701. ".signature.p7s",
  8702. "ThirdPartyNotices.txt",
  8703. "dotnet_library_license.txt",
  8704. "lib/MonoAndroid10/_._",
  8705. "lib/MonoTouch10/_._",
  8706. "lib/net45/_._",
  8707. "lib/netcore50/System.Threading.dll",
  8708. "lib/netstandard1.3/System.Threading.dll",
  8709. "lib/portable-net45+win8+wp8+wpa81/_._",
  8710. "lib/win8/_._",
  8711. "lib/wp80/_._",
  8712. "lib/wpa81/_._",
  8713. "lib/xamarinios10/_._",
  8714. "lib/xamarinmac20/_._",
  8715. "lib/xamarintvos10/_._",
  8716. "lib/xamarinwatchos10/_._",
  8717. "ref/MonoAndroid10/_._",
  8718. "ref/MonoTouch10/_._",
  8719. "ref/net45/_._",
  8720. "ref/netcore50/System.Threading.dll",
  8721. "ref/netcore50/System.Threading.xml",
  8722. "ref/netcore50/de/System.Threading.xml",
  8723. "ref/netcore50/es/System.Threading.xml",
  8724. "ref/netcore50/fr/System.Threading.xml",
  8725. "ref/netcore50/it/System.Threading.xml",
  8726. "ref/netcore50/ja/System.Threading.xml",
  8727. "ref/netcore50/ko/System.Threading.xml",
  8728. "ref/netcore50/ru/System.Threading.xml",
  8729. "ref/netcore50/zh-hans/System.Threading.xml",
  8730. "ref/netcore50/zh-hant/System.Threading.xml",
  8731. "ref/netstandard1.0/System.Threading.dll",
  8732. "ref/netstandard1.0/System.Threading.xml",
  8733. "ref/netstandard1.0/de/System.Threading.xml",
  8734. "ref/netstandard1.0/es/System.Threading.xml",
  8735. "ref/netstandard1.0/fr/System.Threading.xml",
  8736. "ref/netstandard1.0/it/System.Threading.xml",
  8737. "ref/netstandard1.0/ja/System.Threading.xml",
  8738. "ref/netstandard1.0/ko/System.Threading.xml",
  8739. "ref/netstandard1.0/ru/System.Threading.xml",
  8740. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8741. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8742. "ref/netstandard1.3/System.Threading.dll",
  8743. "ref/netstandard1.3/System.Threading.xml",
  8744. "ref/netstandard1.3/de/System.Threading.xml",
  8745. "ref/netstandard1.3/es/System.Threading.xml",
  8746. "ref/netstandard1.3/fr/System.Threading.xml",
  8747. "ref/netstandard1.3/it/System.Threading.xml",
  8748. "ref/netstandard1.3/ja/System.Threading.xml",
  8749. "ref/netstandard1.3/ko/System.Threading.xml",
  8750. "ref/netstandard1.3/ru/System.Threading.xml",
  8751. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8752. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8753. "ref/portable-net45+win8+wp8+wpa81/_._",
  8754. "ref/win8/_._",
  8755. "ref/wp80/_._",
  8756. "ref/wpa81/_._",
  8757. "ref/xamarinios10/_._",
  8758. "ref/xamarinmac20/_._",
  8759. "ref/xamarintvos10/_._",
  8760. "ref/xamarinwatchos10/_._",
  8761. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8762. "system.threading.4.3.0.nupkg.sha512",
  8763. "system.threading.nuspec"
  8764. ]
  8765. },
  8766. "System.Threading.Channels/7.0.0": {
  8767. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8768. "type": "package",
  8769. "path": "system.threading.channels/7.0.0",
  8770. "files": [
  8771. ".nupkg.metadata",
  8772. ".signature.p7s",
  8773. "Icon.png",
  8774. "LICENSE.TXT",
  8775. "THIRD-PARTY-NOTICES.TXT",
  8776. "buildTransitive/net461/System.Threading.Channels.targets",
  8777. "buildTransitive/net462/_._",
  8778. "buildTransitive/net6.0/_._",
  8779. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8780. "lib/net462/System.Threading.Channels.dll",
  8781. "lib/net462/System.Threading.Channels.xml",
  8782. "lib/net6.0/System.Threading.Channels.dll",
  8783. "lib/net6.0/System.Threading.Channels.xml",
  8784. "lib/net7.0/System.Threading.Channels.dll",
  8785. "lib/net7.0/System.Threading.Channels.xml",
  8786. "lib/netstandard2.0/System.Threading.Channels.dll",
  8787. "lib/netstandard2.0/System.Threading.Channels.xml",
  8788. "lib/netstandard2.1/System.Threading.Channels.dll",
  8789. "lib/netstandard2.1/System.Threading.Channels.xml",
  8790. "system.threading.channels.7.0.0.nupkg.sha512",
  8791. "system.threading.channels.nuspec",
  8792. "useSharedDesignerContext.txt"
  8793. ]
  8794. },
  8795. "System.Threading.Tasks/4.3.0": {
  8796. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8797. "type": "package",
  8798. "path": "system.threading.tasks/4.3.0",
  8799. "files": [
  8800. ".nupkg.metadata",
  8801. ".signature.p7s",
  8802. "ThirdPartyNotices.txt",
  8803. "dotnet_library_license.txt",
  8804. "lib/MonoAndroid10/_._",
  8805. "lib/MonoTouch10/_._",
  8806. "lib/net45/_._",
  8807. "lib/portable-net45+win8+wp8+wpa81/_._",
  8808. "lib/win8/_._",
  8809. "lib/wp80/_._",
  8810. "lib/wpa81/_._",
  8811. "lib/xamarinios10/_._",
  8812. "lib/xamarinmac20/_._",
  8813. "lib/xamarintvos10/_._",
  8814. "lib/xamarinwatchos10/_._",
  8815. "ref/MonoAndroid10/_._",
  8816. "ref/MonoTouch10/_._",
  8817. "ref/net45/_._",
  8818. "ref/netcore50/System.Threading.Tasks.dll",
  8819. "ref/netcore50/System.Threading.Tasks.xml",
  8820. "ref/netcore50/de/System.Threading.Tasks.xml",
  8821. "ref/netcore50/es/System.Threading.Tasks.xml",
  8822. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8823. "ref/netcore50/it/System.Threading.Tasks.xml",
  8824. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8825. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8826. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8827. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8828. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8829. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8830. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8831. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8832. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8833. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8834. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8835. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8836. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8837. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8838. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8839. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8840. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8841. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8842. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8843. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8844. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8845. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8846. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8847. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8848. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8849. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8850. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8851. "ref/portable-net45+win8+wp8+wpa81/_._",
  8852. "ref/win8/_._",
  8853. "ref/wp80/_._",
  8854. "ref/wpa81/_._",
  8855. "ref/xamarinios10/_._",
  8856. "ref/xamarinmac20/_._",
  8857. "ref/xamarintvos10/_._",
  8858. "ref/xamarinwatchos10/_._",
  8859. "system.threading.tasks.4.3.0.nupkg.sha512",
  8860. "system.threading.tasks.nuspec"
  8861. ]
  8862. },
  8863. "System.Threading.Tasks.Extensions/4.3.0": {
  8864. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8865. "type": "package",
  8866. "path": "system.threading.tasks.extensions/4.3.0",
  8867. "files": [
  8868. ".nupkg.metadata",
  8869. ".signature.p7s",
  8870. "ThirdPartyNotices.txt",
  8871. "dotnet_library_license.txt",
  8872. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8873. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8874. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8875. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8876. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8877. "system.threading.tasks.extensions.nuspec"
  8878. ]
  8879. },
  8880. "System.Threading.Thread/4.3.0": {
  8881. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8882. "type": "package",
  8883. "path": "system.threading.thread/4.3.0",
  8884. "files": [
  8885. ".nupkg.metadata",
  8886. ".signature.p7s",
  8887. "ThirdPartyNotices.txt",
  8888. "dotnet_library_license.txt",
  8889. "lib/MonoAndroid10/_._",
  8890. "lib/MonoTouch10/_._",
  8891. "lib/net46/System.Threading.Thread.dll",
  8892. "lib/netcore50/_._",
  8893. "lib/netstandard1.3/System.Threading.Thread.dll",
  8894. "lib/xamarinios10/_._",
  8895. "lib/xamarinmac20/_._",
  8896. "lib/xamarintvos10/_._",
  8897. "lib/xamarinwatchos10/_._",
  8898. "ref/MonoAndroid10/_._",
  8899. "ref/MonoTouch10/_._",
  8900. "ref/net46/System.Threading.Thread.dll",
  8901. "ref/netstandard1.3/System.Threading.Thread.dll",
  8902. "ref/netstandard1.3/System.Threading.Thread.xml",
  8903. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8904. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8905. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8906. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8907. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8908. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8909. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8910. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8911. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8912. "ref/xamarinios10/_._",
  8913. "ref/xamarinmac20/_._",
  8914. "ref/xamarintvos10/_._",
  8915. "ref/xamarinwatchos10/_._",
  8916. "system.threading.thread.4.3.0.nupkg.sha512",
  8917. "system.threading.thread.nuspec"
  8918. ]
  8919. },
  8920. "System.Threading.ThreadPool/4.3.0": {
  8921. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8922. "type": "package",
  8923. "path": "system.threading.threadpool/4.3.0",
  8924. "files": [
  8925. ".nupkg.metadata",
  8926. ".signature.p7s",
  8927. "ThirdPartyNotices.txt",
  8928. "dotnet_library_license.txt",
  8929. "lib/MonoAndroid10/_._",
  8930. "lib/MonoTouch10/_._",
  8931. "lib/net46/System.Threading.ThreadPool.dll",
  8932. "lib/netcore50/_._",
  8933. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net46/System.Threading.ThreadPool.dll",
  8941. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8942. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8943. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8944. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8945. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8946. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8947. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8948. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8949. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8950. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8951. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8952. "ref/xamarinios10/_._",
  8953. "ref/xamarinmac20/_._",
  8954. "ref/xamarintvos10/_._",
  8955. "ref/xamarinwatchos10/_._",
  8956. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8957. "system.threading.threadpool.nuspec"
  8958. ]
  8959. },
  8960. "System.Threading.Timer/4.3.0": {
  8961. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8962. "type": "package",
  8963. "path": "system.threading.timer/4.3.0",
  8964. "files": [
  8965. ".nupkg.metadata",
  8966. ".signature.p7s",
  8967. "ThirdPartyNotices.txt",
  8968. "dotnet_library_license.txt",
  8969. "lib/MonoAndroid10/_._",
  8970. "lib/MonoTouch10/_._",
  8971. "lib/net451/_._",
  8972. "lib/portable-net451+win81+wpa81/_._",
  8973. "lib/win81/_._",
  8974. "lib/wpa81/_._",
  8975. "lib/xamarinios10/_._",
  8976. "lib/xamarinmac20/_._",
  8977. "lib/xamarintvos10/_._",
  8978. "lib/xamarinwatchos10/_._",
  8979. "ref/MonoAndroid10/_._",
  8980. "ref/MonoTouch10/_._",
  8981. "ref/net451/_._",
  8982. "ref/netcore50/System.Threading.Timer.dll",
  8983. "ref/netcore50/System.Threading.Timer.xml",
  8984. "ref/netcore50/de/System.Threading.Timer.xml",
  8985. "ref/netcore50/es/System.Threading.Timer.xml",
  8986. "ref/netcore50/fr/System.Threading.Timer.xml",
  8987. "ref/netcore50/it/System.Threading.Timer.xml",
  8988. "ref/netcore50/ja/System.Threading.Timer.xml",
  8989. "ref/netcore50/ko/System.Threading.Timer.xml",
  8990. "ref/netcore50/ru/System.Threading.Timer.xml",
  8991. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8992. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8993. "ref/netstandard1.2/System.Threading.Timer.dll",
  8994. "ref/netstandard1.2/System.Threading.Timer.xml",
  8995. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8996. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8997. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8998. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8999. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9000. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9001. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9002. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9003. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9004. "ref/portable-net451+win81+wpa81/_._",
  9005. "ref/win81/_._",
  9006. "ref/wpa81/_._",
  9007. "ref/xamarinios10/_._",
  9008. "ref/xamarinmac20/_._",
  9009. "ref/xamarintvos10/_._",
  9010. "ref/xamarinwatchos10/_._",
  9011. "system.threading.timer.4.3.0.nupkg.sha512",
  9012. "system.threading.timer.nuspec"
  9013. ]
  9014. },
  9015. "System.Windows.Extensions/4.7.0": {
  9016. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9017. "type": "package",
  9018. "path": "system.windows.extensions/4.7.0",
  9019. "files": [
  9020. ".nupkg.metadata",
  9021. ".signature.p7s",
  9022. "LICENSE.TXT",
  9023. "THIRD-PARTY-NOTICES.TXT",
  9024. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9025. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9026. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9027. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9028. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9029. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9030. "system.windows.extensions.4.7.0.nupkg.sha512",
  9031. "system.windows.extensions.nuspec",
  9032. "useSharedDesignerContext.txt",
  9033. "version.txt"
  9034. ]
  9035. },
  9036. "System.Xml.ReaderWriter/4.3.0": {
  9037. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9038. "type": "package",
  9039. "path": "system.xml.readerwriter/4.3.0",
  9040. "files": [
  9041. ".nupkg.metadata",
  9042. ".signature.p7s",
  9043. "ThirdPartyNotices.txt",
  9044. "dotnet_library_license.txt",
  9045. "lib/MonoAndroid10/_._",
  9046. "lib/MonoTouch10/_._",
  9047. "lib/net45/_._",
  9048. "lib/net46/System.Xml.ReaderWriter.dll",
  9049. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9050. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9051. "lib/portable-net45+win8+wp8+wpa81/_._",
  9052. "lib/win8/_._",
  9053. "lib/wp80/_._",
  9054. "lib/wpa81/_._",
  9055. "lib/xamarinios10/_._",
  9056. "lib/xamarinmac20/_._",
  9057. "lib/xamarintvos10/_._",
  9058. "lib/xamarinwatchos10/_._",
  9059. "ref/MonoAndroid10/_._",
  9060. "ref/MonoTouch10/_._",
  9061. "ref/net45/_._",
  9062. "ref/net46/System.Xml.ReaderWriter.dll",
  9063. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9064. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9065. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9066. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9067. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9068. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9069. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9070. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9071. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9072. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9073. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9074. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9075. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9076. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9077. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9078. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9079. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9080. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9081. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9082. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9083. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9084. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9085. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9086. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9087. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9088. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9089. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9090. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9091. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9092. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9093. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9094. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9095. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9096. "ref/portable-net45+win8+wp8+wpa81/_._",
  9097. "ref/win8/_._",
  9098. "ref/wp80/_._",
  9099. "ref/wpa81/_._",
  9100. "ref/xamarinios10/_._",
  9101. "ref/xamarinmac20/_._",
  9102. "ref/xamarintvos10/_._",
  9103. "ref/xamarinwatchos10/_._",
  9104. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9105. "system.xml.readerwriter.nuspec"
  9106. ]
  9107. },
  9108. "System.Xml.XDocument/4.3.0": {
  9109. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9110. "type": "package",
  9111. "path": "system.xml.xdocument/4.3.0",
  9112. "files": [
  9113. ".nupkg.metadata",
  9114. ".signature.p7s",
  9115. "ThirdPartyNotices.txt",
  9116. "dotnet_library_license.txt",
  9117. "lib/MonoAndroid10/_._",
  9118. "lib/MonoTouch10/_._",
  9119. "lib/net45/_._",
  9120. "lib/netcore50/System.Xml.XDocument.dll",
  9121. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9122. "lib/portable-net45+win8+wp8+wpa81/_._",
  9123. "lib/win8/_._",
  9124. "lib/wp80/_._",
  9125. "lib/wpa81/_._",
  9126. "lib/xamarinios10/_._",
  9127. "lib/xamarinmac20/_._",
  9128. "lib/xamarintvos10/_._",
  9129. "lib/xamarinwatchos10/_._",
  9130. "ref/MonoAndroid10/_._",
  9131. "ref/MonoTouch10/_._",
  9132. "ref/net45/_._",
  9133. "ref/netcore50/System.Xml.XDocument.dll",
  9134. "ref/netcore50/System.Xml.XDocument.xml",
  9135. "ref/netcore50/de/System.Xml.XDocument.xml",
  9136. "ref/netcore50/es/System.Xml.XDocument.xml",
  9137. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9138. "ref/netcore50/it/System.Xml.XDocument.xml",
  9139. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9140. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9141. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9142. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9143. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9144. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9145. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9146. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9147. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9148. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9149. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9150. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9151. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9152. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9153. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9154. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9155. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9156. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9157. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9158. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9159. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9160. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9161. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9162. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9163. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9164. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9165. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9166. "ref/portable-net45+win8+wp8+wpa81/_._",
  9167. "ref/win8/_._",
  9168. "ref/wp80/_._",
  9169. "ref/wpa81/_._",
  9170. "ref/xamarinios10/_._",
  9171. "ref/xamarinmac20/_._",
  9172. "ref/xamarintvos10/_._",
  9173. "ref/xamarinwatchos10/_._",
  9174. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9175. "system.xml.xdocument.nuspec"
  9176. ]
  9177. },
  9178. "ToolGood.Words/3.1.0.2": {
  9179. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9180. "type": "package",
  9181. "path": "toolgood.words/3.1.0.2",
  9182. "files": [
  9183. ".nupkg.metadata",
  9184. ".signature.p7s",
  9185. "LICENSE",
  9186. "lib/net6.0/ToolGood.Words.dll",
  9187. "lib/net6.0/ToolGood.Words.xml",
  9188. "lib/net8.0/ToolGood.Words.dll",
  9189. "lib/net8.0/ToolGood.Words.xml",
  9190. "lib/net9.0/ToolGood.Words.dll",
  9191. "lib/net9.0/ToolGood.Words.xml",
  9192. "lib/netstandard2.1/ToolGood.Words.dll",
  9193. "lib/netstandard2.1/ToolGood.Words.xml",
  9194. "toolgood.words.3.1.0.2.nupkg.sha512",
  9195. "toolgood.words.nuspec"
  9196. ]
  9197. },
  9198. "Ulid/1.4.1": {
  9199. "sha512": "V6crLJ8a29raWeNwxYGfH9RTKA3H0nR0D9LAGzN3KtEsbiiaWkUjDor6OT5Oz7pxCK+NaY2hu2FLoYEOa8oCkA==",
  9200. "type": "package",
  9201. "path": "ulid/1.4.1",
  9202. "files": [
  9203. ".nupkg.metadata",
  9204. ".signature.p7s",
  9205. "Icon.png",
  9206. "lib/net6.0/Ulid.dll",
  9207. "lib/net6.0/Ulid.xml",
  9208. "lib/net7.0/Ulid.dll",
  9209. "lib/net7.0/Ulid.xml",
  9210. "lib/net8.0/Ulid.dll",
  9211. "lib/net8.0/Ulid.xml",
  9212. "lib/netstandard2.0/Ulid.dll",
  9213. "lib/netstandard2.0/Ulid.xml",
  9214. "lib/netstandard2.1/Ulid.dll",
  9215. "lib/netstandard2.1/Ulid.xml",
  9216. "ulid.1.4.1.nupkg.sha512",
  9217. "ulid.nuspec"
  9218. ]
  9219. },
  9220. "ZXing.Net/0.16.9": {
  9221. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9222. "type": "package",
  9223. "path": "zxing.net/0.16.9",
  9224. "files": [
  9225. ".nupkg.metadata",
  9226. ".signature.p7s",
  9227. "lib/native/zxing.XML",
  9228. "lib/native/zxing.pri",
  9229. "lib/native/zxing.winmd",
  9230. "lib/net20-cf/zxing.ce2.0.dll",
  9231. "lib/net20-cf/zxing.ce2.0.xml",
  9232. "lib/net20/zxing.XML",
  9233. "lib/net20/zxing.dll",
  9234. "lib/net35-cf/zxing.ce3.5.dll",
  9235. "lib/net35-cf/zxing.ce3.5.xml",
  9236. "lib/net35/zxing.XML",
  9237. "lib/net35/zxing.dll",
  9238. "lib/net40/zxing.XML",
  9239. "lib/net40/zxing.dll",
  9240. "lib/net40/zxing.presentation.XML",
  9241. "lib/net40/zxing.presentation.dll",
  9242. "lib/net45/zxing.XML",
  9243. "lib/net45/zxing.dll",
  9244. "lib/net45/zxing.presentation.XML",
  9245. "lib/net45/zxing.presentation.dll",
  9246. "lib/net461/zxing.XML",
  9247. "lib/net461/zxing.dll",
  9248. "lib/net461/zxing.presentation.XML",
  9249. "lib/net461/zxing.presentation.dll",
  9250. "lib/net47/zxing.XML",
  9251. "lib/net47/zxing.dll",
  9252. "lib/net47/zxing.presentation.XML",
  9253. "lib/net47/zxing.presentation.dll",
  9254. "lib/net48/zxing.XML",
  9255. "lib/net48/zxing.dll",
  9256. "lib/net48/zxing.presentation.XML",
  9257. "lib/net48/zxing.presentation.dll",
  9258. "lib/net5.0/zxing.XML",
  9259. "lib/net5.0/zxing.dll",
  9260. "lib/net6.0/zxing.XML",
  9261. "lib/net6.0/zxing.dll",
  9262. "lib/net7.0/zxing.XML",
  9263. "lib/net7.0/zxing.dll",
  9264. "lib/netcoreapp3.0/zxing.dll",
  9265. "lib/netcoreapp3.0/zxing.xml",
  9266. "lib/netcoreapp3.1/zxing.dll",
  9267. "lib/netcoreapp3.1/zxing.xml",
  9268. "lib/netstandard1.0/zxing.dll",
  9269. "lib/netstandard1.0/zxing.xml",
  9270. "lib/netstandard1.1/zxing.dll",
  9271. "lib/netstandard1.1/zxing.xml",
  9272. "lib/netstandard1.3/zxing.dll",
  9273. "lib/netstandard1.3/zxing.xml",
  9274. "lib/netstandard2.0/zxing.dll",
  9275. "lib/netstandard2.0/zxing.xml",
  9276. "lib/netstandard2.1/zxing.dll",
  9277. "lib/netstandard2.1/zxing.xml",
  9278. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9279. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9280. "lib/sl3-wp/zxing.wp7.0.XML",
  9281. "lib/sl3-wp/zxing.wp7.0.dll",
  9282. "lib/sl4-wp71/zxing.wp7.1.XML",
  9283. "lib/sl4-wp71/zxing.wp7.1.dll",
  9284. "lib/sl4/zxing.sl4.XML",
  9285. "lib/sl4/zxing.sl4.dll",
  9286. "lib/sl5/zxing.sl5.XML",
  9287. "lib/sl5/zxing.sl5.dll",
  9288. "lib/uap10/zxing.dll",
  9289. "lib/uap10/zxing.pri",
  9290. "lib/uap10/zxing.xml",
  9291. "lib/windows8-managed/zxing.winrt.XML",
  9292. "lib/windows8-managed/zxing.winrt.dll",
  9293. "lib/windows8/zxing.XML",
  9294. "lib/windows8/zxing.pri",
  9295. "lib/windows8/zxing.winmd",
  9296. "lib/wp8/zxing.wp8.0.XML",
  9297. "lib/wp8/zxing.wp8.0.dll",
  9298. "logo.jpg",
  9299. "zxing.net.0.16.9.nupkg.sha512",
  9300. "zxing.net.nuspec"
  9301. ]
  9302. },
  9303. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9304. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9305. "type": "package",
  9306. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9307. "files": [
  9308. ".nupkg.metadata",
  9309. ".signature.p7s",
  9310. "lib/net472/ZXing.ImageSharp.V2.dll",
  9311. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9312. "lib/net472/ZXing.ImageSharp.V2.xml",
  9313. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9314. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9315. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9316. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9317. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9318. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9319. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9320. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9321. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9322. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9323. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9324. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9325. "logo.jpg",
  9326. "readme.md",
  9327. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9328. "zxing.net.bindings.imagesharp.v2.nuspec"
  9329. ]
  9330. },
  9331. "Ropin.Core.Common/1.0.0": {
  9332. "type": "project",
  9333. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9334. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9335. },
  9336. "Ropin.Inspection.Common/1.0.0": {
  9337. "type": "project",
  9338. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9339. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9340. },
  9341. "Ropin.Inspection.Model/1.0.0": {
  9342. "type": "project",
  9343. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9344. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9345. },
  9346. "Ropin.Inspection.Repository/1.0.0": {
  9347. "type": "project",
  9348. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9349. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9350. }
  9351. },
  9352. "projectFileDependencyGroups": {
  9353. "net5.0": [
  9354. "FBoxClientDriver >= 1.2.0",
  9355. "InfluxData.Net >= 8.0.1",
  9356. "InitQ >= 1.0.0.14",
  9357. "MQTTnet.AspNetCore >= 4.3.7.1207",
  9358. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9359. "RabbitMQ.Client >= 6.8.1",
  9360. "Ropin.Core.Common >= 1.0.0",
  9361. "Ropin.Inspection.Common >= 1.0.0",
  9362. "Ropin.Inspection.Model >= 1.0.0",
  9363. "Ropin.Inspection.Repository >= 1.0.0",
  9364. "Swashbuckle.AspNetCore >= 5.6.3",
  9365. "log4net >= 2.0.17"
  9366. ]
  9367. },
  9368. "packageFolders": {
  9369. "D:\\.nuget\\packages": {},
  9370. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9371. },
  9372. "project": {
  9373. "version": "1.0.0",
  9374. "restore": {
  9375. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9376. "projectName": "Ropin.Environmentally.DcsService",
  9377. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\Ropin.Environmentally.DcsService.csproj",
  9378. "packagesPath": "D:\\.nuget\\packages",
  9379. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.DcsService\\obj\\",
  9380. "projectStyle": "PackageReference",
  9381. "fallbackFolders": [
  9382. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9383. ],
  9384. "configFilePaths": [
  9385. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9386. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9387. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9388. ],
  9389. "originalTargetFrameworks": [
  9390. "net5.0"
  9391. ],
  9392. "sources": {
  9393. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9394. "C:\\Program Files\\dotnet\\library-packs": {},
  9395. "https://api.nuget.org/v3/index.json": {}
  9396. },
  9397. "frameworks": {
  9398. "net5.0": {
  9399. "targetAlias": "net5.0",
  9400. "projectReferences": {
  9401. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9402. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9403. },
  9404. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9405. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9406. },
  9407. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9408. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9409. },
  9410. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9411. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9412. }
  9413. }
  9414. }
  9415. },
  9416. "warningProperties": {
  9417. "warnAsError": [
  9418. "NU1605"
  9419. ]
  9420. }
  9421. },
  9422. "frameworks": {
  9423. "net5.0": {
  9424. "targetAlias": "net5.0",
  9425. "dependencies": {
  9426. "FBoxClientDriver": {
  9427. "target": "Package",
  9428. "version": "[1.2.0, )"
  9429. },
  9430. "InfluxData.Net": {
  9431. "target": "Package",
  9432. "version": "[8.0.1, )"
  9433. },
  9434. "InitQ": {
  9435. "target": "Package",
  9436. "version": "[1.0.0.14, )"
  9437. },
  9438. "MQTTnet.AspNetCore": {
  9439. "target": "Package",
  9440. "version": "[4.3.7.1207, )"
  9441. },
  9442. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9443. "target": "Package",
  9444. "version": "[1.17.2, )"
  9445. },
  9446. "RabbitMQ.Client": {
  9447. "target": "Package",
  9448. "version": "[6.8.1, )"
  9449. },
  9450. "Swashbuckle.AspNetCore": {
  9451. "target": "Package",
  9452. "version": "[5.6.3, )"
  9453. },
  9454. "log4net": {
  9455. "target": "Package",
  9456. "version": "[2.0.17, )"
  9457. }
  9458. },
  9459. "imports": [
  9460. "net461",
  9461. "net462",
  9462. "net47",
  9463. "net471",
  9464. "net472",
  9465. "net48",
  9466. "net481"
  9467. ],
  9468. "assetTargetFallback": true,
  9469. "warn": true,
  9470. "frameworkReferences": {
  9471. "Microsoft.AspNetCore.App": {
  9472. "privateAssets": "none"
  9473. },
  9474. "Microsoft.NETCore.App": {
  9475. "privateAssets": "all"
  9476. }
  9477. },
  9478. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9479. }
  9480. }
  9481. }
  9482. }