project.assets.json 432 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "Autofac.Extras.DynamicProxy/6.0.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Autofac": "6.0.0",
  55. "Castle.Core": "4.4.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  59. "related": ".pdb;.xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  64. "related": ".pdb;.xml"
  65. }
  66. }
  67. },
  68. "AutoMapper/10.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "Microsoft.CSharp": "4.7.0",
  72. "System.Reflection.Emit": "4.7.0"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/AutoMapper.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/AutoMapper.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "BouncyCastle.NetCore/1.8.5": {
  86. "type": "package",
  87. "compile": {
  88. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  89. "related": ".xml"
  90. }
  91. },
  92. "runtime": {
  93. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  94. "related": ".xml"
  95. }
  96. }
  97. },
  98. "Castle.Core/4.4.0": {
  99. "type": "package",
  100. "dependencies": {
  101. "NETStandard.Library": "1.6.1",
  102. "System.Collections.Specialized": "4.3.0",
  103. "System.ComponentModel": "4.3.0",
  104. "System.ComponentModel.TypeConverter": "4.3.0",
  105. "System.Diagnostics.TraceSource": "4.3.0",
  106. "System.Dynamic.Runtime": "4.3.0",
  107. "System.Reflection": "4.3.0",
  108. "System.Reflection.Emit": "4.3.0",
  109. "System.Reflection.TypeExtensions": "4.3.0",
  110. "System.Xml.XmlDocument": "4.3.0"
  111. },
  112. "compile": {
  113. "lib/netstandard1.5/Castle.Core.dll": {
  114. "related": ".xml"
  115. }
  116. },
  117. "runtime": {
  118. "lib/netstandard1.5/Castle.Core.dll": {
  119. "related": ".xml"
  120. }
  121. }
  122. },
  123. "Coravel/4.2.1": {
  124. "type": "package",
  125. "dependencies": {
  126. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  127. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  128. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  129. },
  130. "compile": {
  131. "lib/netstandard2.0/Coravel.dll": {
  132. "related": ".xml"
  133. }
  134. },
  135. "runtime": {
  136. "lib/netstandard2.0/Coravel.dll": {
  137. "related": ".xml"
  138. }
  139. }
  140. },
  141. "FBoxClientDriver/1.2.0": {
  142. "type": "package",
  143. "dependencies": {
  144. "FBoxClientDriver.Contract": "1.2.0",
  145. "IdentityModel": "4.3.1",
  146. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  147. "Microsoft.CSharp": "4.5.0",
  148. "Microsoft.Extensions.Logging": "3.1.5",
  149. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  150. "Newtonsoft.Json": "12.0.3",
  151. "Nito.AsyncEx.Coordination": "5.0.0",
  152. "NodaTime": "2.4.7",
  153. "System.ComponentModel.EventBasedAsync": "4.3.0",
  154. "System.IO.FileSystem": "4.3.0",
  155. "System.Net.Http": "4.3.2",
  156. "System.Reactive": "4.4.1",
  157. "System.Runtime.Serialization.Primitives": "4.3.0",
  158. "System.Threading.Thread": "4.3.0"
  159. },
  160. "compile": {
  161. "lib/netstandard2.0/FBoxClientDriver.dll": {
  162. "related": ".xml"
  163. }
  164. },
  165. "runtime": {
  166. "lib/netstandard2.0/FBoxClientDriver.dll": {
  167. "related": ".xml"
  168. }
  169. }
  170. },
  171. "FBoxClientDriver.Contract/1.2.0": {
  172. "type": "package",
  173. "dependencies": {
  174. "Newtonsoft.Json": "12.0.3",
  175. "System.ComponentModel.Primitives": "4.3.0"
  176. },
  177. "compile": {
  178. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  179. "related": ".xml"
  180. }
  181. },
  182. "runtime": {
  183. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  184. "related": ".xml"
  185. }
  186. }
  187. },
  188. "FluentEmail.Core/3.0.2": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  192. },
  193. "compile": {
  194. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  198. }
  199. },
  200. "FluentEmail.Smtp/3.0.2": {
  201. "type": "package",
  202. "dependencies": {
  203. "FluentEmail.Core": "3.0.2"
  204. },
  205. "compile": {
  206. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  207. },
  208. "runtime": {
  209. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  210. }
  211. },
  212. "Google.Protobuf/3.11.4": {
  213. "type": "package",
  214. "dependencies": {
  215. "System.Memory": "4.5.2"
  216. },
  217. "compile": {
  218. "lib/netstandard2.0/Google.Protobuf.dll": {
  219. "related": ".pdb;.xml"
  220. }
  221. },
  222. "runtime": {
  223. "lib/netstandard2.0/Google.Protobuf.dll": {
  224. "related": ".pdb;.xml"
  225. }
  226. }
  227. },
  228. "IdentityModel/4.3.1": {
  229. "type": "package",
  230. "dependencies": {
  231. "Newtonsoft.Json": "11.0.2",
  232. "System.Text.Encodings.Web": "4.7.0"
  233. },
  234. "compile": {
  235. "lib/netstandard2.0/IdentityModel.dll": {
  236. "related": ".pdb;.xml"
  237. }
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/IdentityModel.dll": {
  241. "related": ".pdb;.xml"
  242. }
  243. }
  244. },
  245. "InfluxData.Net/8.0.1": {
  246. "type": "package",
  247. "dependencies": {
  248. "Newtonsoft.Json": "10.0.3",
  249. "System.Net.Http": "4.3.2"
  250. },
  251. "compile": {
  252. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  253. "related": ".dll.config;.pdb"
  254. },
  255. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  256. "related": ".dll.config;.pdb"
  257. },
  258. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  259. "related": ".dll.config;.pdb"
  260. },
  261. "lib/netstandard2.0/InfluxData.Net.dll": {
  262. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  263. }
  264. },
  265. "runtime": {
  266. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  267. "related": ".dll.config;.pdb"
  268. },
  269. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  270. "related": ".dll.config;.pdb"
  271. },
  272. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  273. "related": ".dll.config;.pdb"
  274. },
  275. "lib/netstandard2.0/InfluxData.Net.dll": {
  276. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  277. }
  278. }
  279. },
  280. "InitQ/1.0.0.14": {
  281. "type": "package",
  282. "dependencies": {
  283. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  284. "Microsoft.Extensions.Hosting": "2.1.0",
  285. "Newtonsoft.Json": "13.0.1",
  286. "StackExchange.Redis": "1.2.4"
  287. },
  288. "compile": {
  289. "lib/netcoreapp2.1/InitQ.dll": {}
  290. },
  291. "runtime": {
  292. "lib/netcoreapp2.1/InitQ.dll": {}
  293. }
  294. },
  295. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  296. "type": "package",
  297. "dependencies": {
  298. "AdvancedStringBuilder": "0.1.0",
  299. "JavaScriptEngineSwitcher.Core": "3.21.0"
  300. },
  301. "compile": {
  302. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "runtime": {
  307. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  308. "related": ".xml"
  309. }
  310. },
  311. "resource": {
  312. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  313. "locale": "ru-RU"
  314. }
  315. }
  316. },
  317. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  318. "type": "package",
  319. "runtimeTargets": {
  320. "runtimes/linux-x64/native/libChakraCore.so": {
  321. "assetType": "native",
  322. "rid": "linux-x64"
  323. }
  324. }
  325. },
  326. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  327. "type": "package",
  328. "build": {
  329. "build/_._": {}
  330. },
  331. "runtimeTargets": {
  332. "runtimes/win-x64/native/ChakraCore.dll": {
  333. "assetType": "native",
  334. "rid": "win-x64"
  335. }
  336. }
  337. },
  338. "JavaScriptEngineSwitcher.Core/3.21.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "AdvancedStringBuilder": "0.1.0"
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  350. "related": ".xml"
  351. }
  352. },
  353. "resource": {
  354. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  355. "locale": "ru-RU"
  356. }
  357. }
  358. },
  359. "K4os.Compression.LZ4/1.1.11": {
  360. "type": "package",
  361. "dependencies": {
  362. "System.Memory": "4.5.3"
  363. },
  364. "compile": {
  365. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  366. "related": ".xml"
  367. }
  368. },
  369. "runtime": {
  370. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  371. "related": ".xml"
  372. }
  373. }
  374. },
  375. "K4os.Compression.LZ4.Streams/1.1.11": {
  376. "type": "package",
  377. "dependencies": {
  378. "K4os.Compression.LZ4": "1.1.11",
  379. "K4os.Hash.xxHash": "1.0.6"
  380. },
  381. "compile": {
  382. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  383. "related": ".xml"
  384. }
  385. },
  386. "runtime": {
  387. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  388. "related": ".xml"
  389. }
  390. }
  391. },
  392. "K4os.Hash.xxHash/1.0.6": {
  393. "type": "package",
  394. "dependencies": {
  395. "System.Memory": "4.5.3"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  404. "related": ".xml"
  405. }
  406. }
  407. },
  408. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.EntityFrameworkCore": "5.0.0"
  412. },
  413. "compile": {
  414. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  415. "related": ".xml"
  416. }
  417. },
  418. "runtime": {
  419. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  420. "related": ".xml"
  421. }
  422. }
  423. },
  424. "log4net/2.0.17": {
  425. "type": "package",
  426. "dependencies": {
  427. "System.Configuration.ConfigurationManager": "4.5.0"
  428. },
  429. "compile": {
  430. "lib/netstandard2.0/log4net.dll": {
  431. "related": ".xml"
  432. }
  433. },
  434. "runtime": {
  435. "lib/netstandard2.0/log4net.dll": {
  436. "related": ".xml"
  437. }
  438. }
  439. },
  440. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  441. "type": "package",
  442. "dependencies": {
  443. "Newtonsoft.Json": "11.0.2"
  444. },
  445. "compile": {
  446. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  447. "related": ".pdb;.xml"
  448. }
  449. },
  450. "runtime": {
  451. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  452. "related": ".pdb;.xml"
  453. }
  454. }
  455. },
  456. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  460. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  461. "Microsoft.Extensions.Options": "2.2.0"
  462. },
  463. "compile": {
  464. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  465. "related": ".xml"
  466. }
  467. },
  468. "runtime": {
  469. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  470. "related": ".xml"
  471. }
  472. }
  473. },
  474. "Microsoft.AspNetCore.Authorization/2.2.0": {
  475. "type": "package",
  476. "dependencies": {
  477. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  478. "Microsoft.Extensions.Options": "2.2.0"
  479. },
  480. "compile": {
  481. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "runtime": {
  486. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  487. "related": ".xml"
  488. }
  489. }
  490. },
  491. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  492. "type": "package",
  493. "dependencies": {
  494. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  495. "Microsoft.AspNetCore.Authorization": "2.2.0"
  496. },
  497. "compile": {
  498. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  499. "related": ".xml"
  500. }
  501. },
  502. "runtime": {
  503. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  504. "related": ".xml"
  505. }
  506. }
  507. },
  508. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  509. "type": "package",
  510. "dependencies": {
  511. "Microsoft.AspNetCore.Http.Features": "3.1.20",
  512. "System.IO.Pipelines": "4.7.4"
  513. },
  514. "compile": {
  515. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  521. "related": ".xml"
  522. }
  523. }
  524. },
  525. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  529. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  530. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  531. },
  532. "compile": {
  533. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  534. "related": ".xml"
  535. }
  536. },
  537. "runtime": {
  538. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  539. "related": ".xml"
  540. }
  541. }
  542. },
  543. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  544. "type": "package",
  545. "dependencies": {
  546. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  547. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  548. },
  549. "compile": {
  550. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  551. "related": ".xml"
  552. }
  553. },
  554. "runtime": {
  555. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  556. "related": ".xml"
  557. }
  558. }
  559. },
  560. "Microsoft.AspNetCore.Http/2.2.0": {
  561. "type": "package",
  562. "dependencies": {
  563. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  564. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  565. "Microsoft.Extensions.ObjectPool": "2.2.0",
  566. "Microsoft.Extensions.Options": "2.2.0",
  567. "Microsoft.Net.Http.Headers": "2.2.0"
  568. },
  569. "compile": {
  570. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  571. "related": ".xml"
  572. }
  573. },
  574. "runtime": {
  575. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  576. "related": ".xml"
  577. }
  578. }
  579. },
  580. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  581. "type": "package",
  582. "dependencies": {
  583. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  584. "System.Text.Encodings.Web": "4.5.0"
  585. },
  586. "compile": {
  587. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  588. "related": ".xml"
  589. }
  590. },
  591. "runtime": {
  592. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  593. "related": ".xml"
  594. }
  595. }
  596. },
  597. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  598. "type": "package",
  599. "dependencies": {
  600. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  601. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  602. "Microsoft.AspNetCore.Http": "2.2.0",
  603. "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0",
  604. "Microsoft.AspNetCore.Routing": "2.2.0",
  605. "Microsoft.AspNetCore.WebSockets": "2.2.0",
  606. "Newtonsoft.Json": "11.0.2",
  607. "System.Security.Principal.Windows": "4.5.0"
  608. },
  609. "compile": {
  610. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  611. "related": ".xml"
  612. }
  613. },
  614. "runtime": {
  615. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  616. "related": ".xml"
  617. }
  618. }
  619. },
  620. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  621. "type": "package",
  622. "dependencies": {
  623. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.20",
  624. "Microsoft.Extensions.Logging.Abstractions": "3.1.20",
  625. "Microsoft.Extensions.Options": "3.1.20"
  626. },
  627. "compile": {
  628. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  629. "related": ".xml"
  630. }
  631. },
  632. "runtime": {
  633. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  634. "related": ".xml"
  635. }
  636. }
  637. },
  638. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  639. "type": "package",
  640. "dependencies": {
  641. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20"
  642. },
  643. "compile": {
  644. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  645. "related": ".xml"
  646. }
  647. },
  648. "runtime": {
  649. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  650. "related": ".xml"
  651. }
  652. }
  653. },
  654. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  655. "type": "package",
  656. "dependencies": {
  657. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  658. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  659. "Microsoft.Net.Http.Headers": "2.2.0",
  660. "System.Buffers": "4.5.0"
  661. },
  662. "compile": {
  663. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  664. "related": ".xml"
  665. }
  666. },
  667. "runtime": {
  668. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  669. "related": ".xml"
  670. }
  671. }
  672. },
  673. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.Extensions.Primitives": "5.0.0",
  677. "System.IO.Pipelines": "5.0.0"
  678. },
  679. "compile": {
  680. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  681. "related": ".xml"
  682. }
  683. },
  684. "runtime": {
  685. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  686. "related": ".xml"
  687. }
  688. }
  689. },
  690. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  691. "type": "package",
  692. "dependencies": {
  693. "Microsoft.Extensions.Logging.Console": "3.1.30",
  694. "Newtonsoft.Json": "13.0.1"
  695. },
  696. "compile": {
  697. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  698. },
  699. "runtime": {
  700. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  701. },
  702. "frameworkReferences": [
  703. "Microsoft.AspNetCore.App"
  704. ]
  705. },
  706. "Microsoft.AspNetCore.Routing/2.2.0": {
  707. "type": "package",
  708. "dependencies": {
  709. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  710. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  711. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  712. "Microsoft.Extensions.ObjectPool": "2.2.0",
  713. "Microsoft.Extensions.Options": "2.2.0"
  714. },
  715. "compile": {
  716. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  717. "related": ".xml"
  718. }
  719. },
  720. "runtime": {
  721. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  722. "related": ".xml"
  723. }
  724. }
  725. },
  726. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  727. "type": "package",
  728. "dependencies": {
  729. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  730. },
  731. "compile": {
  732. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  733. "related": ".xml"
  734. }
  735. },
  736. "runtime": {
  737. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  738. "related": ".xml"
  739. }
  740. }
  741. },
  742. "Microsoft.AspNetCore.SignalR/1.1.0": {
  743. "type": "package",
  744. "dependencies": {
  745. "Microsoft.AspNetCore.Http.Connections": "1.1.0",
  746. "Microsoft.AspNetCore.SignalR.Core": "1.1.0"
  747. },
  748. "compile": {
  749. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  750. "related": ".xml"
  751. }
  752. },
  753. "runtime": {
  754. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  755. "related": ".xml"
  756. }
  757. }
  758. },
  759. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  760. "type": "package",
  761. "dependencies": {
  762. "Microsoft.AspNetCore.Http.Connections.Client": "3.1.20",
  763. "Microsoft.AspNetCore.SignalR.Client.Core": "3.1.20"
  764. },
  765. "compile": {
  766. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  767. "related": ".xml"
  768. }
  769. },
  770. "runtime": {
  771. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  772. "related": ".xml"
  773. }
  774. }
  775. },
  776. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.AspNetCore.SignalR.Common": "3.1.20",
  780. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.20",
  781. "Microsoft.Extensions.DependencyInjection": "3.1.20",
  782. "Microsoft.Extensions.Logging": "3.1.20",
  783. "System.Threading.Channels": "4.7.1"
  784. },
  785. "compile": {
  786. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  787. "related": ".xml"
  788. }
  789. },
  790. "runtime": {
  791. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  792. "related": ".xml"
  793. }
  794. }
  795. },
  796. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  797. "type": "package",
  798. "dependencies": {
  799. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20",
  800. "Microsoft.Extensions.Options": "3.1.20"
  801. },
  802. "compile": {
  803. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  809. "related": ".xml"
  810. }
  811. }
  812. },
  813. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  814. "type": "package",
  815. "dependencies": {
  816. "Microsoft.AspNetCore.Authorization": "2.2.0",
  817. "Microsoft.AspNetCore.SignalR.Common": "1.1.0",
  818. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0",
  819. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  820. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  821. "System.Reflection.Emit": "4.3.0",
  822. "System.Threading.Channels": "4.5.0"
  823. },
  824. "compile": {
  825. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  826. "related": ".xml"
  827. }
  828. },
  829. "runtime": {
  830. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  831. "related": ".xml"
  832. }
  833. }
  834. },
  835. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  836. "type": "package",
  837. "dependencies": {
  838. "Microsoft.AspNetCore.SignalR.Common": "3.1.20"
  839. },
  840. "compile": {
  841. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  847. "related": ".xml"
  848. }
  849. }
  850. },
  851. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  855. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  856. "Microsoft.Extensions.Options": "2.2.0",
  857. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  858. },
  859. "compile": {
  860. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "runtime": {
  865. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  866. "related": ".xml"
  867. }
  868. }
  869. },
  870. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  871. "type": "package",
  872. "dependencies": {
  873. "Microsoft.Net.Http.Headers": "2.2.0",
  874. "System.Text.Encodings.Web": "4.5.0"
  875. },
  876. "compile": {
  877. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  878. "related": ".xml"
  879. }
  880. },
  881. "runtime": {
  882. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  883. "related": ".xml"
  884. }
  885. }
  886. },
  887. "Microsoft.CSharp/4.7.0": {
  888. "type": "package",
  889. "compile": {
  890. "ref/netcoreapp2.0/_._": {}
  891. },
  892. "runtime": {
  893. "lib/netcoreapp2.0/_._": {}
  894. }
  895. },
  896. "Microsoft.EntityFrameworkCore/5.0.0": {
  897. "type": "package",
  898. "dependencies": {
  899. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  900. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  901. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  902. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  903. "Microsoft.Extensions.Logging": "5.0.0",
  904. "System.Collections.Immutable": "5.0.0",
  905. "System.ComponentModel.Annotations": "5.0.0",
  906. "System.Diagnostics.DiagnosticSource": "5.0.0"
  907. },
  908. "compile": {
  909. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  910. "related": ".xml"
  911. }
  912. },
  913. "runtime": {
  914. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  915. "related": ".xml"
  916. }
  917. }
  918. },
  919. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  920. "type": "package",
  921. "compile": {
  922. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "runtime": {
  927. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  928. "related": ".xml"
  929. }
  930. }
  931. },
  932. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  933. "type": "package",
  934. "compile": {
  935. "lib/netstandard2.0/_._": {}
  936. },
  937. "runtime": {
  938. "lib/netstandard2.0/_._": {}
  939. }
  940. },
  941. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.EntityFrameworkCore": "5.0.0",
  945. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  946. },
  947. "compile": {
  948. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  949. "related": ".xml"
  950. }
  951. },
  952. "runtime": {
  953. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  954. "related": ".xml"
  955. }
  956. }
  957. },
  958. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "Microsoft.Extensions.Primitives": "5.0.0"
  962. },
  963. "compile": {
  964. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  965. "related": ".xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  970. "related": ".xml"
  971. }
  972. }
  973. },
  974. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  975. "type": "package",
  976. "dependencies": {
  977. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  978. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  979. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  980. "Microsoft.Extensions.Options": "5.0.0",
  981. "Microsoft.Extensions.Primitives": "5.0.0"
  982. },
  983. "compile": {
  984. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  985. "related": ".xml"
  986. }
  987. },
  988. "runtime": {
  989. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  990. "related": ".xml"
  991. }
  992. }
  993. },
  994. "Microsoft.Extensions.Configuration/5.0.0": {
  995. "type": "package",
  996. "dependencies": {
  997. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  998. "Microsoft.Extensions.Primitives": "5.0.0"
  999. },
  1000. "compile": {
  1001. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1002. "related": ".xml"
  1003. }
  1004. },
  1005. "runtime": {
  1006. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1007. "related": ".xml"
  1008. }
  1009. }
  1010. },
  1011. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1012. "type": "package",
  1013. "dependencies": {
  1014. "Microsoft.Extensions.Primitives": "5.0.0"
  1015. },
  1016. "compile": {
  1017. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1018. "related": ".xml"
  1019. }
  1020. },
  1021. "runtime": {
  1022. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1023. "related": ".xml"
  1024. }
  1025. }
  1026. },
  1027. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  1031. },
  1032. "compile": {
  1033. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1034. "related": ".xml"
  1035. }
  1036. },
  1037. "runtime": {
  1038. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1039. "related": ".xml"
  1040. }
  1041. }
  1042. },
  1043. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "Microsoft.Extensions.Configuration": "5.0.0",
  1047. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1048. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1049. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  1050. "Microsoft.Extensions.Primitives": "5.0.0"
  1051. },
  1052. "compile": {
  1053. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1054. "related": ".xml"
  1055. }
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1059. "related": ".xml"
  1060. }
  1061. }
  1062. },
  1063. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1064. "type": "package",
  1065. "dependencies": {
  1066. "Microsoft.Extensions.Configuration": "5.0.0",
  1067. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1068. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  1069. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  1070. },
  1071. "compile": {
  1072. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1073. "related": ".xml"
  1074. }
  1075. },
  1076. "runtime": {
  1077. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1078. "related": ".xml"
  1079. }
  1080. }
  1081. },
  1082. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1083. "type": "package",
  1084. "dependencies": {
  1085. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  1086. },
  1087. "compile": {
  1088. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "runtime": {
  1093. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1094. "related": ".xml"
  1095. }
  1096. }
  1097. },
  1098. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1099. "type": "package",
  1100. "compile": {
  1101. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1102. "related": ".xml"
  1103. }
  1104. },
  1105. "runtime": {
  1106. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1107. "related": ".xml"
  1108. }
  1109. }
  1110. },
  1111. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "Microsoft.Extensions.Primitives": "5.0.0"
  1115. },
  1116. "compile": {
  1117. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1118. "related": ".xml"
  1119. }
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1123. "related": ".xml"
  1124. }
  1125. }
  1126. },
  1127. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1131. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  1132. "Microsoft.Extensions.Primitives": "5.0.0"
  1133. },
  1134. "compile": {
  1135. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1136. "related": ".xml"
  1137. }
  1138. },
  1139. "runtime": {
  1140. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1141. "related": ".xml"
  1142. }
  1143. }
  1144. },
  1145. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  1146. "type": "package",
  1147. "compile": {
  1148. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1149. "related": ".xml"
  1150. }
  1151. },
  1152. "runtime": {
  1153. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1154. "related": ".xml"
  1155. }
  1156. }
  1157. },
  1158. "Microsoft.Extensions.Hosting/2.1.0": {
  1159. "type": "package",
  1160. "dependencies": {
  1161. "Microsoft.Extensions.Configuration": "2.1.0",
  1162. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1163. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  1164. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  1165. "Microsoft.Extensions.Logging": "2.1.0"
  1166. },
  1167. "compile": {
  1168. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  1179. "type": "package",
  1180. "dependencies": {
  1181. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1182. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  1183. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  1184. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  1185. },
  1186. "compile": {
  1187. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1188. "related": ".xml"
  1189. }
  1190. },
  1191. "runtime": {
  1192. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1193. "related": ".xml"
  1194. }
  1195. }
  1196. },
  1197. "Microsoft.Extensions.Http/5.0.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1201. "Microsoft.Extensions.Logging": "5.0.0",
  1202. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1203. "Microsoft.Extensions.Options": "5.0.0"
  1204. },
  1205. "compile": {
  1206. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1207. "related": ".xml"
  1208. }
  1209. },
  1210. "runtime": {
  1211. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1212. "related": ".xml"
  1213. }
  1214. }
  1215. },
  1216. "Microsoft.Extensions.Logging/5.0.0": {
  1217. "type": "package",
  1218. "dependencies": {
  1219. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1220. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1221. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1222. "Microsoft.Extensions.Options": "5.0.0"
  1223. },
  1224. "compile": {
  1225. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1226. "related": ".xml"
  1227. }
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1231. "related": ".xml"
  1232. }
  1233. }
  1234. },
  1235. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1236. "type": "package",
  1237. "compile": {
  1238. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1239. "related": ".xml"
  1240. }
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1244. "related": ".xml"
  1245. }
  1246. }
  1247. },
  1248. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1249. "type": "package",
  1250. "dependencies": {
  1251. "Microsoft.Extensions.Logging": "3.1.30",
  1252. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  1253. },
  1254. "compile": {
  1255. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1256. "related": ".xml"
  1257. }
  1258. },
  1259. "runtime": {
  1260. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1261. "related": ".xml"
  1262. }
  1263. }
  1264. },
  1265. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1266. "type": "package",
  1267. "dependencies": {
  1268. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1269. "Microsoft.Extensions.Logging": "3.1.30",
  1270. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  1271. },
  1272. "compile": {
  1273. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1274. "related": ".xml"
  1275. }
  1276. },
  1277. "runtime": {
  1278. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1279. "related": ".xml"
  1280. }
  1281. }
  1282. },
  1283. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1284. "type": "package",
  1285. "compile": {
  1286. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1287. "related": ".xml"
  1288. }
  1289. },
  1290. "runtime": {
  1291. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1292. "related": ".xml"
  1293. }
  1294. }
  1295. },
  1296. "Microsoft.Extensions.Options/5.0.0": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1300. "Microsoft.Extensions.Primitives": "5.0.0"
  1301. },
  1302. "compile": {
  1303. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1304. "related": ".xml"
  1305. }
  1306. },
  1307. "runtime": {
  1308. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1309. "related": ".xml"
  1310. }
  1311. }
  1312. },
  1313. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1314. "type": "package",
  1315. "dependencies": {
  1316. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1317. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1318. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1319. "Microsoft.Extensions.Options": "3.1.30"
  1320. },
  1321. "compile": {
  1322. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1323. "related": ".xml"
  1324. }
  1325. },
  1326. "runtime": {
  1327. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1328. "related": ".xml"
  1329. }
  1330. }
  1331. },
  1332. "Microsoft.Extensions.Primitives/5.0.0": {
  1333. "type": "package",
  1334. "compile": {
  1335. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1341. "related": ".xml"
  1342. }
  1343. }
  1344. },
  1345. "Microsoft.Net.Http.Headers/2.2.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "Microsoft.Extensions.Primitives": "2.2.0",
  1349. "System.Buffers": "4.5.0"
  1350. },
  1351. "compile": {
  1352. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1353. "related": ".xml"
  1354. }
  1355. },
  1356. "runtime": {
  1357. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1358. "related": ".xml"
  1359. }
  1360. }
  1361. },
  1362. "Microsoft.NETCore.Platforms/5.0.0": {
  1363. "type": "package",
  1364. "compile": {
  1365. "lib/netstandard1.0/_._": {}
  1366. },
  1367. "runtime": {
  1368. "lib/netstandard1.0/_._": {}
  1369. }
  1370. },
  1371. "Microsoft.NETCore.Targets/1.1.0": {
  1372. "type": "package",
  1373. "compile": {
  1374. "lib/netstandard1.0/_._": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard1.0/_._": {}
  1378. }
  1379. },
  1380. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1381. "type": "package",
  1382. "build": {
  1383. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1384. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1385. }
  1386. },
  1387. "Microsoft.Win32.Primitives/4.3.0": {
  1388. "type": "package",
  1389. "dependencies": {
  1390. "Microsoft.NETCore.Platforms": "1.1.0",
  1391. "Microsoft.NETCore.Targets": "1.1.0",
  1392. "System.Runtime": "4.3.0"
  1393. },
  1394. "compile": {
  1395. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1396. "related": ".xml"
  1397. }
  1398. }
  1399. },
  1400. "Microsoft.Win32.SystemEvents/5.0.0": {
  1401. "type": "package",
  1402. "dependencies": {
  1403. "Microsoft.NETCore.Platforms": "5.0.0"
  1404. },
  1405. "compile": {
  1406. "ref/netstandard2.0/_._": {
  1407. "related": ".xml"
  1408. }
  1409. },
  1410. "runtime": {
  1411. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1412. "related": ".xml"
  1413. }
  1414. },
  1415. "runtimeTargets": {
  1416. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1417. "assetType": "runtime",
  1418. "rid": "win"
  1419. }
  1420. }
  1421. },
  1422. "MySql.Data/8.0.23": {
  1423. "type": "package",
  1424. "dependencies": {
  1425. "BouncyCastle.NetCore": "1.8.5",
  1426. "Google.Protobuf": "3.11.4",
  1427. "K4os.Compression.LZ4": "1.1.11",
  1428. "K4os.Compression.LZ4.Streams": "1.1.11",
  1429. "K4os.Hash.xxHash": "1.0.6",
  1430. "SSH.NET": "2020.0.0-beta1",
  1431. "System.Buffers": "4.5.1",
  1432. "System.Configuration.ConfigurationManager": "4.4.1",
  1433. "System.Security.Permissions": "4.7.0",
  1434. "System.Text.Encoding.CodePages": "4.4.0"
  1435. },
  1436. "compile": {
  1437. "lib/net5.0/MySql.Data.dll": {
  1438. "related": ".xml"
  1439. },
  1440. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1441. "lib/net5.0/Zstandard.Net.dll": {}
  1442. },
  1443. "runtime": {
  1444. "lib/net5.0/MySql.Data.dll": {
  1445. "related": ".xml"
  1446. },
  1447. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1448. "lib/net5.0/Zstandard.Net.dll": {}
  1449. }
  1450. },
  1451. "MySqlConnector/1.1.0": {
  1452. "type": "package",
  1453. "compile": {
  1454. "lib/net5.0/MySqlConnector.dll": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "runtime": {
  1459. "lib/net5.0/MySqlConnector.dll": {
  1460. "related": ".xml"
  1461. }
  1462. }
  1463. },
  1464. "NETStandard.Library/1.6.1": {
  1465. "type": "package",
  1466. "dependencies": {
  1467. "Microsoft.NETCore.Platforms": "1.1.0",
  1468. "Microsoft.Win32.Primitives": "4.3.0",
  1469. "System.AppContext": "4.3.0",
  1470. "System.Collections": "4.3.0",
  1471. "System.Collections.Concurrent": "4.3.0",
  1472. "System.Console": "4.3.0",
  1473. "System.Diagnostics.Debug": "4.3.0",
  1474. "System.Diagnostics.Tools": "4.3.0",
  1475. "System.Diagnostics.Tracing": "4.3.0",
  1476. "System.Globalization": "4.3.0",
  1477. "System.Globalization.Calendars": "4.3.0",
  1478. "System.IO": "4.3.0",
  1479. "System.IO.Compression": "4.3.0",
  1480. "System.IO.Compression.ZipFile": "4.3.0",
  1481. "System.IO.FileSystem": "4.3.0",
  1482. "System.IO.FileSystem.Primitives": "4.3.0",
  1483. "System.Linq": "4.3.0",
  1484. "System.Linq.Expressions": "4.3.0",
  1485. "System.Net.Http": "4.3.0",
  1486. "System.Net.Primitives": "4.3.0",
  1487. "System.Net.Sockets": "4.3.0",
  1488. "System.ObjectModel": "4.3.0",
  1489. "System.Reflection": "4.3.0",
  1490. "System.Reflection.Extensions": "4.3.0",
  1491. "System.Reflection.Primitives": "4.3.0",
  1492. "System.Resources.ResourceManager": "4.3.0",
  1493. "System.Runtime": "4.3.0",
  1494. "System.Runtime.Extensions": "4.3.0",
  1495. "System.Runtime.Handles": "4.3.0",
  1496. "System.Runtime.InteropServices": "4.3.0",
  1497. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1498. "System.Runtime.Numerics": "4.3.0",
  1499. "System.Security.Cryptography.Algorithms": "4.3.0",
  1500. "System.Security.Cryptography.Encoding": "4.3.0",
  1501. "System.Security.Cryptography.Primitives": "4.3.0",
  1502. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1503. "System.Text.Encoding": "4.3.0",
  1504. "System.Text.Encoding.Extensions": "4.3.0",
  1505. "System.Text.RegularExpressions": "4.3.0",
  1506. "System.Threading": "4.3.0",
  1507. "System.Threading.Tasks": "4.3.0",
  1508. "System.Threading.Timer": "4.3.0",
  1509. "System.Xml.ReaderWriter": "4.3.0",
  1510. "System.Xml.XDocument": "4.3.0"
  1511. }
  1512. },
  1513. "Newtonsoft.Json/13.0.1": {
  1514. "type": "package",
  1515. "compile": {
  1516. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1517. "related": ".xml"
  1518. }
  1519. },
  1520. "runtime": {
  1521. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1522. "related": ".xml"
  1523. }
  1524. }
  1525. },
  1526. "Nito.AsyncEx.Coordination/5.0.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "Nito.AsyncEx.Tasks": "5.0.0",
  1530. "Nito.Collections.Deque": "1.0.4",
  1531. "Nito.Disposables": "2.0.0"
  1532. },
  1533. "compile": {
  1534. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1535. "related": ".xml"
  1536. }
  1537. },
  1538. "runtime": {
  1539. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1540. "related": ".xml"
  1541. }
  1542. }
  1543. },
  1544. "Nito.AsyncEx.Tasks/5.0.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Nito.Disposables": "2.0.0"
  1548. },
  1549. "compile": {
  1550. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1551. "related": ".xml"
  1552. }
  1553. },
  1554. "runtime": {
  1555. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1556. "related": ".xml"
  1557. }
  1558. }
  1559. },
  1560. "Nito.Collections.Deque/1.0.4": {
  1561. "type": "package",
  1562. "compile": {
  1563. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1564. "related": ".xml"
  1565. }
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1569. "related": ".xml"
  1570. }
  1571. }
  1572. },
  1573. "Nito.Disposables/2.0.0": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "System.Collections.Immutable": "1.4.0"
  1577. },
  1578. "compile": {
  1579. "lib/netstandard2.0/Nito.Disposables.dll": {
  1580. "related": ".pdb;.xml"
  1581. }
  1582. },
  1583. "runtime": {
  1584. "lib/netstandard2.0/Nito.Disposables.dll": {
  1585. "related": ".pdb;.xml"
  1586. }
  1587. }
  1588. },
  1589. "NLog/4.7.7": {
  1590. "type": "package",
  1591. "compile": {
  1592. "lib/netstandard2.0/NLog.dll": {
  1593. "related": ".xml"
  1594. }
  1595. },
  1596. "runtime": {
  1597. "lib/netstandard2.0/NLog.dll": {
  1598. "related": ".xml"
  1599. }
  1600. }
  1601. },
  1602. "NodaTime/2.4.7": {
  1603. "type": "package",
  1604. "compile": {
  1605. "lib/netstandard2.0/NodaTime.dll": {
  1606. "related": ".pdb;.xml"
  1607. }
  1608. },
  1609. "runtime": {
  1610. "lib/netstandard2.0/NodaTime.dll": {
  1611. "related": ".pdb;.xml"
  1612. }
  1613. }
  1614. },
  1615. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1619. "MySqlConnector": "1.1.0"
  1620. },
  1621. "compile": {
  1622. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1623. "related": ".xml"
  1624. }
  1625. },
  1626. "runtime": {
  1627. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1628. "related": ".xml"
  1629. }
  1630. }
  1631. },
  1632. "QRCoder/1.4.3": {
  1633. "type": "package",
  1634. "dependencies": {
  1635. "System.Drawing.Common": "5.0.3"
  1636. },
  1637. "compile": {
  1638. "lib/net5.0/QRCoder.dll": {}
  1639. },
  1640. "runtime": {
  1641. "lib/net5.0/QRCoder.dll": {}
  1642. }
  1643. },
  1644. "Quartz/3.3.3": {
  1645. "type": "package",
  1646. "dependencies": {
  1647. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1648. "System.Configuration.ConfigurationManager": "4.7.0",
  1649. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1650. },
  1651. "compile": {
  1652. "lib/netstandard2.0/Quartz.dll": {
  1653. "related": ".xml"
  1654. }
  1655. },
  1656. "runtime": {
  1657. "lib/netstandard2.0/Quartz.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "RabbitMQ.Client/6.8.1": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "System.Memory": "4.5.5",
  1666. "System.Threading.Channels": "7.0.0"
  1667. },
  1668. "compile": {
  1669. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtime": {
  1674. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1675. "related": ".xml"
  1676. }
  1677. }
  1678. },
  1679. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1680. "type": "package",
  1681. "runtimeTargets": {
  1682. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1683. "assetType": "native",
  1684. "rid": "debian.8-x64"
  1685. }
  1686. }
  1687. },
  1688. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1689. "type": "package",
  1690. "runtimeTargets": {
  1691. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1692. "assetType": "native",
  1693. "rid": "fedora.23-x64"
  1694. }
  1695. }
  1696. },
  1697. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1698. "type": "package",
  1699. "runtimeTargets": {
  1700. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1701. "assetType": "native",
  1702. "rid": "fedora.24-x64"
  1703. }
  1704. }
  1705. },
  1706. "runtime.native.System/4.3.0": {
  1707. "type": "package",
  1708. "dependencies": {
  1709. "Microsoft.NETCore.Platforms": "1.1.0",
  1710. "Microsoft.NETCore.Targets": "1.1.0"
  1711. },
  1712. "compile": {
  1713. "lib/netstandard1.0/_._": {}
  1714. },
  1715. "runtime": {
  1716. "lib/netstandard1.0/_._": {}
  1717. }
  1718. },
  1719. "runtime.native.System.IO.Compression/4.3.0": {
  1720. "type": "package",
  1721. "dependencies": {
  1722. "Microsoft.NETCore.Platforms": "1.1.0",
  1723. "Microsoft.NETCore.Targets": "1.1.0"
  1724. },
  1725. "compile": {
  1726. "lib/netstandard1.0/_._": {}
  1727. },
  1728. "runtime": {
  1729. "lib/netstandard1.0/_._": {}
  1730. }
  1731. },
  1732. "runtime.native.System.Net.Http/4.3.0": {
  1733. "type": "package",
  1734. "dependencies": {
  1735. "Microsoft.NETCore.Platforms": "1.1.0",
  1736. "Microsoft.NETCore.Targets": "1.1.0"
  1737. },
  1738. "compile": {
  1739. "lib/netstandard1.0/_._": {}
  1740. },
  1741. "runtime": {
  1742. "lib/netstandard1.0/_._": {}
  1743. }
  1744. },
  1745. "runtime.native.System.Net.Security/4.3.0": {
  1746. "type": "package",
  1747. "dependencies": {
  1748. "Microsoft.NETCore.Platforms": "1.1.0",
  1749. "Microsoft.NETCore.Targets": "1.1.0"
  1750. },
  1751. "compile": {
  1752. "lib/netstandard1.0/_._": {}
  1753. },
  1754. "runtime": {
  1755. "lib/netstandard1.0/_._": {}
  1756. }
  1757. },
  1758. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1759. "type": "package",
  1760. "dependencies": {
  1761. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1762. },
  1763. "compile": {
  1764. "lib/netstandard1.0/_._": {}
  1765. },
  1766. "runtime": {
  1767. "lib/netstandard1.0/_._": {}
  1768. }
  1769. },
  1770. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1771. "type": "package",
  1772. "dependencies": {
  1773. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1774. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1775. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1776. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1777. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1778. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1779. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1780. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1781. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1782. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1783. },
  1784. "compile": {
  1785. "lib/netstandard1.0/_._": {}
  1786. },
  1787. "runtime": {
  1788. "lib/netstandard1.0/_._": {}
  1789. }
  1790. },
  1791. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1792. "type": "package",
  1793. "runtimeTargets": {
  1794. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1795. "assetType": "native",
  1796. "rid": "opensuse.13.2-x64"
  1797. }
  1798. }
  1799. },
  1800. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1801. "type": "package",
  1802. "runtimeTargets": {
  1803. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1804. "assetType": "native",
  1805. "rid": "opensuse.42.1-x64"
  1806. }
  1807. }
  1808. },
  1809. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1810. "type": "package",
  1811. "runtimeTargets": {
  1812. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1813. "assetType": "native",
  1814. "rid": "osx.10.10-x64"
  1815. }
  1816. }
  1817. },
  1818. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1819. "type": "package",
  1820. "runtimeTargets": {
  1821. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1822. "assetType": "native",
  1823. "rid": "osx.10.10-x64"
  1824. }
  1825. }
  1826. },
  1827. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1828. "type": "package",
  1829. "runtimeTargets": {
  1830. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1831. "assetType": "native",
  1832. "rid": "rhel.7-x64"
  1833. }
  1834. }
  1835. },
  1836. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1837. "type": "package",
  1838. "runtimeTargets": {
  1839. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1840. "assetType": "native",
  1841. "rid": "ubuntu.14.04-x64"
  1842. }
  1843. }
  1844. },
  1845. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1846. "type": "package",
  1847. "runtimeTargets": {
  1848. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1849. "assetType": "native",
  1850. "rid": "ubuntu.16.04-x64"
  1851. }
  1852. }
  1853. },
  1854. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1855. "type": "package",
  1856. "runtimeTargets": {
  1857. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1858. "assetType": "native",
  1859. "rid": "ubuntu.16.10-x64"
  1860. }
  1861. }
  1862. },
  1863. "Serilog/2.11.0": {
  1864. "type": "package",
  1865. "compile": {
  1866. "lib/net5.0/Serilog.dll": {
  1867. "related": ".xml"
  1868. }
  1869. },
  1870. "runtime": {
  1871. "lib/net5.0/Serilog.dll": {
  1872. "related": ".xml"
  1873. }
  1874. }
  1875. },
  1876. "Serilog.Sinks.Console/4.0.1": {
  1877. "type": "package",
  1878. "dependencies": {
  1879. "Serilog": "2.10.0"
  1880. },
  1881. "compile": {
  1882. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1883. "related": ".xml"
  1884. }
  1885. },
  1886. "runtime": {
  1887. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1888. "related": ".xml"
  1889. }
  1890. }
  1891. },
  1892. "Serilog.Sinks.File/5.0.0": {
  1893. "type": "package",
  1894. "dependencies": {
  1895. "Serilog": "2.10.0"
  1896. },
  1897. "compile": {
  1898. "lib/net5.0/Serilog.Sinks.File.dll": {
  1899. "related": ".pdb;.xml"
  1900. }
  1901. },
  1902. "runtime": {
  1903. "lib/net5.0/Serilog.Sinks.File.dll": {
  1904. "related": ".pdb;.xml"
  1905. }
  1906. }
  1907. },
  1908. "SixLabors.ImageSharp/2.1.6": {
  1909. "type": "package",
  1910. "dependencies": {
  1911. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1912. "System.Text.Encoding.CodePages": "5.0.0"
  1913. },
  1914. "compile": {
  1915. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1916. "related": ".xml"
  1917. }
  1918. },
  1919. "runtime": {
  1920. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1921. "related": ".xml"
  1922. }
  1923. }
  1924. },
  1925. "SSH.NET/2020.0.0-beta1": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "SshNet.Security.Cryptography": "[1.3.0]"
  1929. },
  1930. "compile": {
  1931. "lib/netstandard2.0/Renci.SshNet.dll": {
  1932. "related": ".xml"
  1933. }
  1934. },
  1935. "runtime": {
  1936. "lib/netstandard2.0/Renci.SshNet.dll": {
  1937. "related": ".xml"
  1938. }
  1939. }
  1940. },
  1941. "SshNet.Security.Cryptography/1.3.0": {
  1942. "type": "package",
  1943. "compile": {
  1944. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1945. "related": ".xml"
  1946. }
  1947. },
  1948. "runtime": {
  1949. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1950. "related": ".xml"
  1951. }
  1952. }
  1953. },
  1954. "StackExchange.Redis/1.2.4": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "NETStandard.Library": "1.6.1",
  1958. "System.Collections": "4.3.0",
  1959. "System.Collections.Concurrent": "4.3.0",
  1960. "System.Collections.NonGeneric": "4.3.0",
  1961. "System.Diagnostics.Tools": "4.3.0",
  1962. "System.IO.Compression": "4.3.0",
  1963. "System.IO.FileSystem": "4.3.0",
  1964. "System.Linq": "4.3.0",
  1965. "System.Net.NameResolution": "4.3.0",
  1966. "System.Net.Security": "4.3.0",
  1967. "System.Net.Sockets": "4.3.0",
  1968. "System.Reflection.Emit": "4.3.0",
  1969. "System.Reflection.Emit.Lightweight": "4.3.0",
  1970. "System.Reflection.TypeExtensions": "4.3.0",
  1971. "System.Runtime.Extensions": "4.3.0",
  1972. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1973. "System.Security.Cryptography.Algorithms": "4.3.0",
  1974. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1975. "System.Text.RegularExpressions": "4.3.0",
  1976. "System.Threading": "4.3.0",
  1977. "System.Threading.Thread": "4.3.0",
  1978. "System.Threading.ThreadPool": "4.3.0",
  1979. "System.Threading.Timer": "4.3.0"
  1980. },
  1981. "compile": {
  1982. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1983. "related": ".xml"
  1984. }
  1985. },
  1986. "runtime": {
  1987. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1988. "related": ".xml"
  1989. }
  1990. }
  1991. },
  1992. "System.AppContext/4.3.0": {
  1993. "type": "package",
  1994. "dependencies": {
  1995. "System.Runtime": "4.3.0"
  1996. },
  1997. "compile": {
  1998. "ref/netstandard1.6/System.AppContext.dll": {
  1999. "related": ".xml"
  2000. }
  2001. },
  2002. "runtime": {
  2003. "lib/netstandard1.6/System.AppContext.dll": {}
  2004. }
  2005. },
  2006. "System.Buffers/4.5.1": {
  2007. "type": "package",
  2008. "compile": {
  2009. "ref/netcoreapp2.0/_._": {}
  2010. },
  2011. "runtime": {
  2012. "lib/netcoreapp2.0/_._": {}
  2013. }
  2014. },
  2015. "System.Collections/4.3.0": {
  2016. "type": "package",
  2017. "dependencies": {
  2018. "Microsoft.NETCore.Platforms": "1.1.0",
  2019. "Microsoft.NETCore.Targets": "1.1.0",
  2020. "System.Runtime": "4.3.0"
  2021. },
  2022. "compile": {
  2023. "ref/netstandard1.3/System.Collections.dll": {
  2024. "related": ".xml"
  2025. }
  2026. }
  2027. },
  2028. "System.Collections.Concurrent/4.3.0": {
  2029. "type": "package",
  2030. "dependencies": {
  2031. "System.Collections": "4.3.0",
  2032. "System.Diagnostics.Debug": "4.3.0",
  2033. "System.Diagnostics.Tracing": "4.3.0",
  2034. "System.Globalization": "4.3.0",
  2035. "System.Reflection": "4.3.0",
  2036. "System.Resources.ResourceManager": "4.3.0",
  2037. "System.Runtime": "4.3.0",
  2038. "System.Runtime.Extensions": "4.3.0",
  2039. "System.Threading": "4.3.0",
  2040. "System.Threading.Tasks": "4.3.0"
  2041. },
  2042. "compile": {
  2043. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2044. "related": ".xml"
  2045. }
  2046. },
  2047. "runtime": {
  2048. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2049. }
  2050. },
  2051. "System.Collections.Immutable/5.0.0": {
  2052. "type": "package",
  2053. "compile": {
  2054. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2055. "related": ".xml"
  2056. }
  2057. },
  2058. "runtime": {
  2059. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2060. "related": ".xml"
  2061. }
  2062. }
  2063. },
  2064. "System.Collections.NonGeneric/4.3.0": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.Diagnostics.Debug": "4.3.0",
  2068. "System.Globalization": "4.3.0",
  2069. "System.Resources.ResourceManager": "4.3.0",
  2070. "System.Runtime": "4.3.0",
  2071. "System.Runtime.Extensions": "4.3.0",
  2072. "System.Threading": "4.3.0"
  2073. },
  2074. "compile": {
  2075. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  2076. "related": ".xml"
  2077. }
  2078. },
  2079. "runtime": {
  2080. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2081. }
  2082. },
  2083. "System.Collections.Specialized/4.3.0": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Collections.NonGeneric": "4.3.0",
  2087. "System.Globalization": "4.3.0",
  2088. "System.Globalization.Extensions": "4.3.0",
  2089. "System.Resources.ResourceManager": "4.3.0",
  2090. "System.Runtime": "4.3.0",
  2091. "System.Runtime.Extensions": "4.3.0",
  2092. "System.Threading": "4.3.0"
  2093. },
  2094. "compile": {
  2095. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  2096. "related": ".xml"
  2097. }
  2098. },
  2099. "runtime": {
  2100. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  2101. }
  2102. },
  2103. "System.ComponentModel/4.3.0": {
  2104. "type": "package",
  2105. "dependencies": {
  2106. "System.Runtime": "4.3.0"
  2107. },
  2108. "compile": {
  2109. "ref/netstandard1.0/System.ComponentModel.dll": {
  2110. "related": ".xml"
  2111. }
  2112. },
  2113. "runtime": {
  2114. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2115. }
  2116. },
  2117. "System.ComponentModel.Annotations/5.0.0": {
  2118. "type": "package",
  2119. "compile": {
  2120. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2121. "related": ".xml"
  2122. }
  2123. },
  2124. "runtime": {
  2125. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2126. "related": ".xml"
  2127. }
  2128. }
  2129. },
  2130. "System.ComponentModel.EventBasedAsync/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "System.Resources.ResourceManager": "4.3.0",
  2134. "System.Runtime": "4.3.0",
  2135. "System.Threading": "4.3.0",
  2136. "System.Threading.Tasks": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  2140. "related": ".xml"
  2141. }
  2142. },
  2143. "runtime": {
  2144. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  2145. }
  2146. },
  2147. "System.ComponentModel.Primitives/4.3.0": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "System.ComponentModel": "4.3.0",
  2151. "System.Resources.ResourceManager": "4.3.0",
  2152. "System.Runtime": "4.3.0"
  2153. },
  2154. "compile": {
  2155. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  2156. "related": ".xml"
  2157. }
  2158. },
  2159. "runtime": {
  2160. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2161. }
  2162. },
  2163. "System.ComponentModel.TypeConverter/4.3.0": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "System.Collections": "4.3.0",
  2167. "System.Collections.NonGeneric": "4.3.0",
  2168. "System.Collections.Specialized": "4.3.0",
  2169. "System.ComponentModel": "4.3.0",
  2170. "System.ComponentModel.Primitives": "4.3.0",
  2171. "System.Globalization": "4.3.0",
  2172. "System.Linq": "4.3.0",
  2173. "System.Reflection": "4.3.0",
  2174. "System.Reflection.Extensions": "4.3.0",
  2175. "System.Reflection.Primitives": "4.3.0",
  2176. "System.Reflection.TypeExtensions": "4.3.0",
  2177. "System.Resources.ResourceManager": "4.3.0",
  2178. "System.Runtime": "4.3.0",
  2179. "System.Runtime.Extensions": "4.3.0",
  2180. "System.Threading": "4.3.0"
  2181. },
  2182. "compile": {
  2183. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  2184. "related": ".xml"
  2185. }
  2186. },
  2187. "runtime": {
  2188. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2189. }
  2190. },
  2191. "System.Configuration.ConfigurationManager/4.7.0": {
  2192. "type": "package",
  2193. "dependencies": {
  2194. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2195. "System.Security.Permissions": "4.7.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2204. "related": ".xml"
  2205. }
  2206. }
  2207. },
  2208. "System.Console/4.3.0": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "Microsoft.NETCore.Platforms": "1.1.0",
  2212. "Microsoft.NETCore.Targets": "1.1.0",
  2213. "System.IO": "4.3.0",
  2214. "System.Runtime": "4.3.0",
  2215. "System.Text.Encoding": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.3/System.Console.dll": {
  2219. "related": ".xml"
  2220. }
  2221. }
  2222. },
  2223. "System.Diagnostics.Debug/4.3.0": {
  2224. "type": "package",
  2225. "dependencies": {
  2226. "Microsoft.NETCore.Platforms": "1.1.0",
  2227. "Microsoft.NETCore.Targets": "1.1.0",
  2228. "System.Runtime": "4.3.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2232. "related": ".xml"
  2233. }
  2234. }
  2235. },
  2236. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2237. "type": "package",
  2238. "compile": {
  2239. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2245. "related": ".xml"
  2246. }
  2247. }
  2248. },
  2249. "System.Diagnostics.Tools/4.3.0": {
  2250. "type": "package",
  2251. "dependencies": {
  2252. "Microsoft.NETCore.Platforms": "1.1.0",
  2253. "Microsoft.NETCore.Targets": "1.1.0",
  2254. "System.Runtime": "4.3.0"
  2255. },
  2256. "compile": {
  2257. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2258. "related": ".xml"
  2259. }
  2260. }
  2261. },
  2262. "System.Diagnostics.TraceSource/4.3.0": {
  2263. "type": "package",
  2264. "dependencies": {
  2265. "Microsoft.NETCore.Platforms": "1.1.0",
  2266. "System.Collections": "4.3.0",
  2267. "System.Diagnostics.Debug": "4.3.0",
  2268. "System.Globalization": "4.3.0",
  2269. "System.Resources.ResourceManager": "4.3.0",
  2270. "System.Runtime": "4.3.0",
  2271. "System.Runtime.Extensions": "4.3.0",
  2272. "System.Threading": "4.3.0",
  2273. "runtime.native.System": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2277. "related": ".xml"
  2278. }
  2279. },
  2280. "runtimeTargets": {
  2281. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2282. "assetType": "runtime",
  2283. "rid": "unix"
  2284. },
  2285. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2286. "assetType": "runtime",
  2287. "rid": "win"
  2288. }
  2289. }
  2290. },
  2291. "System.Diagnostics.Tracing/4.3.0": {
  2292. "type": "package",
  2293. "dependencies": {
  2294. "Microsoft.NETCore.Platforms": "1.1.0",
  2295. "Microsoft.NETCore.Targets": "1.1.0",
  2296. "System.Runtime": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2300. "related": ".xml"
  2301. }
  2302. }
  2303. },
  2304. "System.Drawing.Common/5.0.3": {
  2305. "type": "package",
  2306. "dependencies": {
  2307. "Microsoft.Win32.SystemEvents": "5.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2311. "related": ".xml"
  2312. }
  2313. },
  2314. "runtime": {
  2315. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2316. "related": ".xml"
  2317. }
  2318. },
  2319. "runtimeTargets": {
  2320. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2321. "assetType": "runtime",
  2322. "rid": "unix"
  2323. },
  2324. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2325. "assetType": "runtime",
  2326. "rid": "win"
  2327. }
  2328. }
  2329. },
  2330. "System.Dynamic.Runtime/4.3.0": {
  2331. "type": "package",
  2332. "dependencies": {
  2333. "System.Collections": "4.3.0",
  2334. "System.Diagnostics.Debug": "4.3.0",
  2335. "System.Linq": "4.3.0",
  2336. "System.Linq.Expressions": "4.3.0",
  2337. "System.ObjectModel": "4.3.0",
  2338. "System.Reflection": "4.3.0",
  2339. "System.Reflection.Emit": "4.3.0",
  2340. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2341. "System.Reflection.Primitives": "4.3.0",
  2342. "System.Reflection.TypeExtensions": "4.3.0",
  2343. "System.Resources.ResourceManager": "4.3.0",
  2344. "System.Runtime": "4.3.0",
  2345. "System.Runtime.Extensions": "4.3.0",
  2346. "System.Threading": "4.3.0"
  2347. },
  2348. "compile": {
  2349. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2350. "related": ".xml"
  2351. }
  2352. },
  2353. "runtime": {
  2354. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2355. }
  2356. },
  2357. "System.Globalization/4.3.0": {
  2358. "type": "package",
  2359. "dependencies": {
  2360. "Microsoft.NETCore.Platforms": "1.1.0",
  2361. "Microsoft.NETCore.Targets": "1.1.0",
  2362. "System.Runtime": "4.3.0"
  2363. },
  2364. "compile": {
  2365. "ref/netstandard1.3/System.Globalization.dll": {
  2366. "related": ".xml"
  2367. }
  2368. }
  2369. },
  2370. "System.Globalization.Calendars/4.3.0": {
  2371. "type": "package",
  2372. "dependencies": {
  2373. "Microsoft.NETCore.Platforms": "1.1.0",
  2374. "Microsoft.NETCore.Targets": "1.1.0",
  2375. "System.Globalization": "4.3.0",
  2376. "System.Runtime": "4.3.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2380. "related": ".xml"
  2381. }
  2382. }
  2383. },
  2384. "System.Globalization.Extensions/4.3.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "Microsoft.NETCore.Platforms": "1.1.0",
  2388. "System.Globalization": "4.3.0",
  2389. "System.Resources.ResourceManager": "4.3.0",
  2390. "System.Runtime": "4.3.0",
  2391. "System.Runtime.Extensions": "4.3.0",
  2392. "System.Runtime.InteropServices": "4.3.0"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/_._": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtimeTargets": {
  2400. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2401. "assetType": "runtime",
  2402. "rid": "unix"
  2403. },
  2404. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2405. "assetType": "runtime",
  2406. "rid": "win"
  2407. }
  2408. }
  2409. },
  2410. "System.IO/4.3.0": {
  2411. "type": "package",
  2412. "dependencies": {
  2413. "Microsoft.NETCore.Platforms": "1.1.0",
  2414. "Microsoft.NETCore.Targets": "1.1.0",
  2415. "System.Runtime": "4.3.0",
  2416. "System.Text.Encoding": "4.3.0",
  2417. "System.Threading.Tasks": "4.3.0"
  2418. },
  2419. "compile": {
  2420. "ref/netstandard1.5/System.IO.dll": {
  2421. "related": ".xml"
  2422. }
  2423. }
  2424. },
  2425. "System.IO.Compression/4.3.0": {
  2426. "type": "package",
  2427. "dependencies": {
  2428. "Microsoft.NETCore.Platforms": "1.1.0",
  2429. "System.Buffers": "4.3.0",
  2430. "System.Collections": "4.3.0",
  2431. "System.Diagnostics.Debug": "4.3.0",
  2432. "System.IO": "4.3.0",
  2433. "System.Resources.ResourceManager": "4.3.0",
  2434. "System.Runtime": "4.3.0",
  2435. "System.Runtime.Extensions": "4.3.0",
  2436. "System.Runtime.Handles": "4.3.0",
  2437. "System.Runtime.InteropServices": "4.3.0",
  2438. "System.Text.Encoding": "4.3.0",
  2439. "System.Threading": "4.3.0",
  2440. "System.Threading.Tasks": "4.3.0",
  2441. "runtime.native.System": "4.3.0",
  2442. "runtime.native.System.IO.Compression": "4.3.0"
  2443. },
  2444. "compile": {
  2445. "ref/netstandard1.3/System.IO.Compression.dll": {
  2446. "related": ".xml"
  2447. }
  2448. },
  2449. "runtimeTargets": {
  2450. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2451. "assetType": "runtime",
  2452. "rid": "unix"
  2453. },
  2454. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2455. "assetType": "runtime",
  2456. "rid": "win"
  2457. }
  2458. }
  2459. },
  2460. "System.IO.Compression.ZipFile/4.3.0": {
  2461. "type": "package",
  2462. "dependencies": {
  2463. "System.Buffers": "4.3.0",
  2464. "System.IO": "4.3.0",
  2465. "System.IO.Compression": "4.3.0",
  2466. "System.IO.FileSystem": "4.3.0",
  2467. "System.IO.FileSystem.Primitives": "4.3.0",
  2468. "System.Resources.ResourceManager": "4.3.0",
  2469. "System.Runtime": "4.3.0",
  2470. "System.Runtime.Extensions": "4.3.0",
  2471. "System.Text.Encoding": "4.3.0"
  2472. },
  2473. "compile": {
  2474. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2475. "related": ".xml"
  2476. }
  2477. },
  2478. "runtime": {
  2479. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2480. }
  2481. },
  2482. "System.IO.FileSystem/4.3.0": {
  2483. "type": "package",
  2484. "dependencies": {
  2485. "Microsoft.NETCore.Platforms": "1.1.0",
  2486. "Microsoft.NETCore.Targets": "1.1.0",
  2487. "System.IO": "4.3.0",
  2488. "System.IO.FileSystem.Primitives": "4.3.0",
  2489. "System.Runtime": "4.3.0",
  2490. "System.Runtime.Handles": "4.3.0",
  2491. "System.Text.Encoding": "4.3.0",
  2492. "System.Threading.Tasks": "4.3.0"
  2493. },
  2494. "compile": {
  2495. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2496. "related": ".xml"
  2497. }
  2498. }
  2499. },
  2500. "System.IO.FileSystem.Primitives/4.3.0": {
  2501. "type": "package",
  2502. "dependencies": {
  2503. "System.Runtime": "4.3.0"
  2504. },
  2505. "compile": {
  2506. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2507. "related": ".xml"
  2508. }
  2509. },
  2510. "runtime": {
  2511. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2512. }
  2513. },
  2514. "System.IO.Pipelines/5.0.0": {
  2515. "type": "package",
  2516. "compile": {
  2517. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2518. "related": ".xml"
  2519. }
  2520. },
  2521. "runtime": {
  2522. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2523. "related": ".xml"
  2524. }
  2525. }
  2526. },
  2527. "System.Linq/4.3.0": {
  2528. "type": "package",
  2529. "dependencies": {
  2530. "System.Collections": "4.3.0",
  2531. "System.Diagnostics.Debug": "4.3.0",
  2532. "System.Resources.ResourceManager": "4.3.0",
  2533. "System.Runtime": "4.3.0",
  2534. "System.Runtime.Extensions": "4.3.0"
  2535. },
  2536. "compile": {
  2537. "ref/netstandard1.6/System.Linq.dll": {
  2538. "related": ".xml"
  2539. }
  2540. },
  2541. "runtime": {
  2542. "lib/netstandard1.6/System.Linq.dll": {}
  2543. }
  2544. },
  2545. "System.Linq.Expressions/4.3.0": {
  2546. "type": "package",
  2547. "dependencies": {
  2548. "System.Collections": "4.3.0",
  2549. "System.Diagnostics.Debug": "4.3.0",
  2550. "System.Globalization": "4.3.0",
  2551. "System.IO": "4.3.0",
  2552. "System.Linq": "4.3.0",
  2553. "System.ObjectModel": "4.3.0",
  2554. "System.Reflection": "4.3.0",
  2555. "System.Reflection.Emit": "4.3.0",
  2556. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2557. "System.Reflection.Emit.Lightweight": "4.3.0",
  2558. "System.Reflection.Extensions": "4.3.0",
  2559. "System.Reflection.Primitives": "4.3.0",
  2560. "System.Reflection.TypeExtensions": "4.3.0",
  2561. "System.Resources.ResourceManager": "4.3.0",
  2562. "System.Runtime": "4.3.0",
  2563. "System.Runtime.Extensions": "4.3.0",
  2564. "System.Threading": "4.3.0"
  2565. },
  2566. "compile": {
  2567. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2568. "related": ".xml"
  2569. }
  2570. },
  2571. "runtime": {
  2572. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2573. }
  2574. },
  2575. "System.Memory/4.5.5": {
  2576. "type": "package",
  2577. "compile": {
  2578. "ref/netcoreapp2.1/_._": {}
  2579. },
  2580. "runtime": {
  2581. "lib/netcoreapp2.1/_._": {}
  2582. }
  2583. },
  2584. "System.Net.Http/4.3.2": {
  2585. "type": "package",
  2586. "dependencies": {
  2587. "Microsoft.NETCore.Platforms": "1.1.0",
  2588. "System.Collections": "4.3.0",
  2589. "System.Diagnostics.Debug": "4.3.0",
  2590. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2591. "System.Diagnostics.Tracing": "4.3.0",
  2592. "System.Globalization": "4.3.0",
  2593. "System.Globalization.Extensions": "4.3.0",
  2594. "System.IO": "4.3.0",
  2595. "System.IO.FileSystem": "4.3.0",
  2596. "System.Net.Primitives": "4.3.0",
  2597. "System.Resources.ResourceManager": "4.3.0",
  2598. "System.Runtime": "4.3.0",
  2599. "System.Runtime.Extensions": "4.3.0",
  2600. "System.Runtime.Handles": "4.3.0",
  2601. "System.Runtime.InteropServices": "4.3.0",
  2602. "System.Security.Cryptography.Algorithms": "4.3.0",
  2603. "System.Security.Cryptography.Encoding": "4.3.0",
  2604. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2605. "System.Security.Cryptography.Primitives": "4.3.0",
  2606. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2607. "System.Text.Encoding": "4.3.0",
  2608. "System.Threading": "4.3.0",
  2609. "System.Threading.Tasks": "4.3.0",
  2610. "runtime.native.System": "4.3.0",
  2611. "runtime.native.System.Net.Http": "4.3.0",
  2612. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2613. },
  2614. "compile": {
  2615. "ref/netstandard1.3/System.Net.Http.dll": {}
  2616. },
  2617. "runtimeTargets": {
  2618. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "unix"
  2621. },
  2622. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2623. "assetType": "runtime",
  2624. "rid": "win"
  2625. }
  2626. }
  2627. },
  2628. "System.Net.NameResolution/4.3.0": {
  2629. "type": "package",
  2630. "dependencies": {
  2631. "Microsoft.NETCore.Platforms": "1.1.0",
  2632. "System.Collections": "4.3.0",
  2633. "System.Diagnostics.Tracing": "4.3.0",
  2634. "System.Globalization": "4.3.0",
  2635. "System.Net.Primitives": "4.3.0",
  2636. "System.Resources.ResourceManager": "4.3.0",
  2637. "System.Runtime": "4.3.0",
  2638. "System.Runtime.Extensions": "4.3.0",
  2639. "System.Runtime.Handles": "4.3.0",
  2640. "System.Runtime.InteropServices": "4.3.0",
  2641. "System.Security.Principal.Windows": "4.3.0",
  2642. "System.Threading": "4.3.0",
  2643. "System.Threading.Tasks": "4.3.0",
  2644. "runtime.native.System": "4.3.0"
  2645. },
  2646. "compile": {
  2647. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2648. "related": ".xml"
  2649. }
  2650. },
  2651. "runtimeTargets": {
  2652. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2653. "assetType": "runtime",
  2654. "rid": "unix"
  2655. },
  2656. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2657. "assetType": "runtime",
  2658. "rid": "win"
  2659. }
  2660. }
  2661. },
  2662. "System.Net.Primitives/4.3.0": {
  2663. "type": "package",
  2664. "dependencies": {
  2665. "Microsoft.NETCore.Platforms": "1.1.0",
  2666. "Microsoft.NETCore.Targets": "1.1.0",
  2667. "System.Runtime": "4.3.0",
  2668. "System.Runtime.Handles": "4.3.0"
  2669. },
  2670. "compile": {
  2671. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2672. "related": ".xml"
  2673. }
  2674. }
  2675. },
  2676. "System.Net.Security/4.3.0": {
  2677. "type": "package",
  2678. "dependencies": {
  2679. "Microsoft.NETCore.Platforms": "1.1.0",
  2680. "Microsoft.Win32.Primitives": "4.3.0",
  2681. "System.Collections": "4.3.0",
  2682. "System.Collections.Concurrent": "4.3.0",
  2683. "System.Diagnostics.Tracing": "4.3.0",
  2684. "System.Globalization": "4.3.0",
  2685. "System.Globalization.Extensions": "4.3.0",
  2686. "System.IO": "4.3.0",
  2687. "System.Net.Primitives": "4.3.0",
  2688. "System.Resources.ResourceManager": "4.3.0",
  2689. "System.Runtime": "4.3.0",
  2690. "System.Runtime.Extensions": "4.3.0",
  2691. "System.Runtime.Handles": "4.3.0",
  2692. "System.Runtime.InteropServices": "4.3.0",
  2693. "System.Security.Claims": "4.3.0",
  2694. "System.Security.Cryptography.Algorithms": "4.3.0",
  2695. "System.Security.Cryptography.Encoding": "4.3.0",
  2696. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2697. "System.Security.Cryptography.Primitives": "4.3.0",
  2698. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2699. "System.Security.Principal": "4.3.0",
  2700. "System.Text.Encoding": "4.3.0",
  2701. "System.Threading": "4.3.0",
  2702. "System.Threading.Tasks": "4.3.0",
  2703. "System.Threading.ThreadPool": "4.3.0",
  2704. "runtime.native.System": "4.3.0",
  2705. "runtime.native.System.Net.Security": "4.3.0",
  2706. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2707. },
  2708. "compile": {
  2709. "ref/netstandard1.3/System.Net.Security.dll": {
  2710. "related": ".xml"
  2711. }
  2712. },
  2713. "runtimeTargets": {
  2714. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2715. "assetType": "runtime",
  2716. "rid": "unix"
  2717. },
  2718. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2719. "assetType": "runtime",
  2720. "rid": "win"
  2721. }
  2722. }
  2723. },
  2724. "System.Net.Sockets/4.3.0": {
  2725. "type": "package",
  2726. "dependencies": {
  2727. "Microsoft.NETCore.Platforms": "1.1.0",
  2728. "Microsoft.NETCore.Targets": "1.1.0",
  2729. "System.IO": "4.3.0",
  2730. "System.Net.Primitives": "4.3.0",
  2731. "System.Runtime": "4.3.0",
  2732. "System.Threading.Tasks": "4.3.0"
  2733. },
  2734. "compile": {
  2735. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2736. "related": ".xml"
  2737. }
  2738. }
  2739. },
  2740. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  2741. "type": "package",
  2742. "compile": {
  2743. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2744. },
  2745. "runtime": {
  2746. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2747. }
  2748. },
  2749. "System.ObjectModel/4.3.0": {
  2750. "type": "package",
  2751. "dependencies": {
  2752. "System.Collections": "4.3.0",
  2753. "System.Diagnostics.Debug": "4.3.0",
  2754. "System.Resources.ResourceManager": "4.3.0",
  2755. "System.Runtime": "4.3.0",
  2756. "System.Threading": "4.3.0"
  2757. },
  2758. "compile": {
  2759. "ref/netstandard1.3/System.ObjectModel.dll": {
  2760. "related": ".xml"
  2761. }
  2762. },
  2763. "runtime": {
  2764. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2765. }
  2766. },
  2767. "System.Reactive/4.4.1": {
  2768. "type": "package",
  2769. "compile": {
  2770. "lib/netcoreapp3.0/_._": {}
  2771. },
  2772. "runtime": {
  2773. "lib/netcoreapp3.0/_._": {}
  2774. },
  2775. "build": {
  2776. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2777. }
  2778. },
  2779. "System.Reflection/4.3.0": {
  2780. "type": "package",
  2781. "dependencies": {
  2782. "Microsoft.NETCore.Platforms": "1.1.0",
  2783. "Microsoft.NETCore.Targets": "1.1.0",
  2784. "System.IO": "4.3.0",
  2785. "System.Reflection.Primitives": "4.3.0",
  2786. "System.Runtime": "4.3.0"
  2787. },
  2788. "compile": {
  2789. "ref/netstandard1.5/System.Reflection.dll": {
  2790. "related": ".xml"
  2791. }
  2792. }
  2793. },
  2794. "System.Reflection.Emit/4.7.0": {
  2795. "type": "package",
  2796. "compile": {
  2797. "ref/netcoreapp2.0/_._": {}
  2798. },
  2799. "runtime": {
  2800. "lib/netcoreapp2.0/_._": {}
  2801. }
  2802. },
  2803. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "System.Reflection": "4.3.0",
  2807. "System.Reflection.Primitives": "4.3.0",
  2808. "System.Runtime": "4.3.0"
  2809. },
  2810. "compile": {
  2811. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "runtime": {
  2816. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2817. }
  2818. },
  2819. "System.Reflection.Emit.Lightweight/4.3.0": {
  2820. "type": "package",
  2821. "dependencies": {
  2822. "System.Reflection": "4.3.0",
  2823. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2824. "System.Reflection.Primitives": "4.3.0",
  2825. "System.Runtime": "4.3.0"
  2826. },
  2827. "compile": {
  2828. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2829. "related": ".xml"
  2830. }
  2831. },
  2832. "runtime": {
  2833. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2834. }
  2835. },
  2836. "System.Reflection.Extensions/4.3.0": {
  2837. "type": "package",
  2838. "dependencies": {
  2839. "Microsoft.NETCore.Platforms": "1.1.0",
  2840. "Microsoft.NETCore.Targets": "1.1.0",
  2841. "System.Reflection": "4.3.0",
  2842. "System.Runtime": "4.3.0"
  2843. },
  2844. "compile": {
  2845. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2846. "related": ".xml"
  2847. }
  2848. }
  2849. },
  2850. "System.Reflection.Primitives/4.3.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "Microsoft.NETCore.Platforms": "1.1.0",
  2854. "Microsoft.NETCore.Targets": "1.1.0",
  2855. "System.Runtime": "4.3.0"
  2856. },
  2857. "compile": {
  2858. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2859. "related": ".xml"
  2860. }
  2861. }
  2862. },
  2863. "System.Reflection.TypeExtensions/4.3.0": {
  2864. "type": "package",
  2865. "dependencies": {
  2866. "System.Reflection": "4.3.0",
  2867. "System.Runtime": "4.3.0"
  2868. },
  2869. "compile": {
  2870. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2871. "related": ".xml"
  2872. }
  2873. },
  2874. "runtime": {
  2875. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2876. }
  2877. },
  2878. "System.Resources.ResourceManager/4.3.0": {
  2879. "type": "package",
  2880. "dependencies": {
  2881. "Microsoft.NETCore.Platforms": "1.1.0",
  2882. "Microsoft.NETCore.Targets": "1.1.0",
  2883. "System.Globalization": "4.3.0",
  2884. "System.Reflection": "4.3.0",
  2885. "System.Runtime": "4.3.0"
  2886. },
  2887. "compile": {
  2888. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2889. "related": ".xml"
  2890. }
  2891. }
  2892. },
  2893. "System.Runtime/4.3.0": {
  2894. "type": "package",
  2895. "dependencies": {
  2896. "Microsoft.NETCore.Platforms": "1.1.0",
  2897. "Microsoft.NETCore.Targets": "1.1.0"
  2898. },
  2899. "compile": {
  2900. "ref/netstandard1.5/System.Runtime.dll": {
  2901. "related": ".xml"
  2902. }
  2903. }
  2904. },
  2905. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2906. "type": "package",
  2907. "compile": {
  2908. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtime": {
  2913. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2914. "related": ".xml"
  2915. }
  2916. }
  2917. },
  2918. "System.Runtime.Extensions/4.3.0": {
  2919. "type": "package",
  2920. "dependencies": {
  2921. "Microsoft.NETCore.Platforms": "1.1.0",
  2922. "Microsoft.NETCore.Targets": "1.1.0",
  2923. "System.Runtime": "4.3.0"
  2924. },
  2925. "compile": {
  2926. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2927. "related": ".xml"
  2928. }
  2929. }
  2930. },
  2931. "System.Runtime.Handles/4.3.0": {
  2932. "type": "package",
  2933. "dependencies": {
  2934. "Microsoft.NETCore.Platforms": "1.1.0",
  2935. "Microsoft.NETCore.Targets": "1.1.0",
  2936. "System.Runtime": "4.3.0"
  2937. },
  2938. "compile": {
  2939. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2940. "related": ".xml"
  2941. }
  2942. }
  2943. },
  2944. "System.Runtime.InteropServices/4.3.0": {
  2945. "type": "package",
  2946. "dependencies": {
  2947. "Microsoft.NETCore.Platforms": "1.1.0",
  2948. "Microsoft.NETCore.Targets": "1.1.0",
  2949. "System.Reflection": "4.3.0",
  2950. "System.Reflection.Primitives": "4.3.0",
  2951. "System.Runtime": "4.3.0",
  2952. "System.Runtime.Handles": "4.3.0"
  2953. },
  2954. "compile": {
  2955. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2956. }
  2957. },
  2958. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2959. "type": "package",
  2960. "dependencies": {
  2961. "System.Reflection": "4.3.0",
  2962. "System.Reflection.Extensions": "4.3.0",
  2963. "System.Resources.ResourceManager": "4.3.0",
  2964. "System.Runtime": "4.3.0",
  2965. "System.Runtime.InteropServices": "4.3.0",
  2966. "System.Threading": "4.3.0",
  2967. "runtime.native.System": "4.3.0"
  2968. },
  2969. "compile": {
  2970. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2971. },
  2972. "runtime": {
  2973. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2974. },
  2975. "runtimeTargets": {
  2976. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "unix"
  2979. },
  2980. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2981. "assetType": "runtime",
  2982. "rid": "win"
  2983. }
  2984. }
  2985. },
  2986. "System.Runtime.Numerics/4.3.0": {
  2987. "type": "package",
  2988. "dependencies": {
  2989. "System.Globalization": "4.3.0",
  2990. "System.Resources.ResourceManager": "4.3.0",
  2991. "System.Runtime": "4.3.0",
  2992. "System.Runtime.Extensions": "4.3.0"
  2993. },
  2994. "compile": {
  2995. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2996. "related": ".xml"
  2997. }
  2998. },
  2999. "runtime": {
  3000. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3001. }
  3002. },
  3003. "System.Runtime.Serialization.Primitives/4.3.0": {
  3004. "type": "package",
  3005. "dependencies": {
  3006. "System.Resources.ResourceManager": "4.3.0",
  3007. "System.Runtime": "4.3.0"
  3008. },
  3009. "compile": {
  3010. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  3011. "related": ".xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3016. }
  3017. },
  3018. "System.Security.AccessControl/4.7.0": {
  3019. "type": "package",
  3020. "dependencies": {
  3021. "Microsoft.NETCore.Platforms": "3.1.0",
  3022. "System.Security.Principal.Windows": "4.7.0"
  3023. },
  3024. "compile": {
  3025. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  3026. "related": ".xml"
  3027. }
  3028. },
  3029. "runtime": {
  3030. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  3031. "related": ".xml"
  3032. }
  3033. },
  3034. "runtimeTargets": {
  3035. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  3036. "assetType": "runtime",
  3037. "rid": "win"
  3038. }
  3039. }
  3040. },
  3041. "System.Security.Claims/4.3.0": {
  3042. "type": "package",
  3043. "dependencies": {
  3044. "System.Collections": "4.3.0",
  3045. "System.Globalization": "4.3.0",
  3046. "System.IO": "4.3.0",
  3047. "System.Resources.ResourceManager": "4.3.0",
  3048. "System.Runtime": "4.3.0",
  3049. "System.Runtime.Extensions": "4.3.0",
  3050. "System.Security.Principal": "4.3.0"
  3051. },
  3052. "compile": {
  3053. "ref/netstandard1.3/_._": {
  3054. "related": ".xml"
  3055. }
  3056. },
  3057. "runtime": {
  3058. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3059. }
  3060. },
  3061. "System.Security.Cryptography.Algorithms/4.3.0": {
  3062. "type": "package",
  3063. "dependencies": {
  3064. "Microsoft.NETCore.Platforms": "1.1.0",
  3065. "System.Collections": "4.3.0",
  3066. "System.IO": "4.3.0",
  3067. "System.Resources.ResourceManager": "4.3.0",
  3068. "System.Runtime": "4.3.0",
  3069. "System.Runtime.Extensions": "4.3.0",
  3070. "System.Runtime.Handles": "4.3.0",
  3071. "System.Runtime.InteropServices": "4.3.0",
  3072. "System.Runtime.Numerics": "4.3.0",
  3073. "System.Security.Cryptography.Encoding": "4.3.0",
  3074. "System.Security.Cryptography.Primitives": "4.3.0",
  3075. "System.Text.Encoding": "4.3.0",
  3076. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3077. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3078. },
  3079. "compile": {
  3080. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3081. },
  3082. "runtimeTargets": {
  3083. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3084. "assetType": "runtime",
  3085. "rid": "osx"
  3086. },
  3087. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3088. "assetType": "runtime",
  3089. "rid": "unix"
  3090. },
  3091. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3092. "assetType": "runtime",
  3093. "rid": "win"
  3094. }
  3095. }
  3096. },
  3097. "System.Security.Cryptography.Cng/4.3.0": {
  3098. "type": "package",
  3099. "dependencies": {
  3100. "Microsoft.NETCore.Platforms": "1.1.0",
  3101. "System.IO": "4.3.0",
  3102. "System.Resources.ResourceManager": "4.3.0",
  3103. "System.Runtime": "4.3.0",
  3104. "System.Runtime.Extensions": "4.3.0",
  3105. "System.Runtime.Handles": "4.3.0",
  3106. "System.Runtime.InteropServices": "4.3.0",
  3107. "System.Security.Cryptography.Algorithms": "4.3.0",
  3108. "System.Security.Cryptography.Encoding": "4.3.0",
  3109. "System.Security.Cryptography.Primitives": "4.3.0",
  3110. "System.Text.Encoding": "4.3.0"
  3111. },
  3112. "compile": {
  3113. "ref/netstandard1.6/_._": {}
  3114. },
  3115. "runtimeTargets": {
  3116. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3117. "assetType": "runtime",
  3118. "rid": "unix"
  3119. },
  3120. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3121. "assetType": "runtime",
  3122. "rid": "win"
  3123. }
  3124. }
  3125. },
  3126. "System.Security.Cryptography.Csp/4.3.0": {
  3127. "type": "package",
  3128. "dependencies": {
  3129. "Microsoft.NETCore.Platforms": "1.1.0",
  3130. "System.IO": "4.3.0",
  3131. "System.Reflection": "4.3.0",
  3132. "System.Resources.ResourceManager": "4.3.0",
  3133. "System.Runtime": "4.3.0",
  3134. "System.Runtime.Extensions": "4.3.0",
  3135. "System.Runtime.Handles": "4.3.0",
  3136. "System.Runtime.InteropServices": "4.3.0",
  3137. "System.Security.Cryptography.Algorithms": "4.3.0",
  3138. "System.Security.Cryptography.Encoding": "4.3.0",
  3139. "System.Security.Cryptography.Primitives": "4.3.0",
  3140. "System.Text.Encoding": "4.3.0",
  3141. "System.Threading": "4.3.0"
  3142. },
  3143. "compile": {
  3144. "ref/netstandard1.3/_._": {}
  3145. },
  3146. "runtimeTargets": {
  3147. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3148. "assetType": "runtime",
  3149. "rid": "unix"
  3150. },
  3151. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3152. "assetType": "runtime",
  3153. "rid": "win"
  3154. }
  3155. }
  3156. },
  3157. "System.Security.Cryptography.Encoding/4.3.0": {
  3158. "type": "package",
  3159. "dependencies": {
  3160. "Microsoft.NETCore.Platforms": "1.1.0",
  3161. "System.Collections": "4.3.0",
  3162. "System.Collections.Concurrent": "4.3.0",
  3163. "System.Linq": "4.3.0",
  3164. "System.Resources.ResourceManager": "4.3.0",
  3165. "System.Runtime": "4.3.0",
  3166. "System.Runtime.Extensions": "4.3.0",
  3167. "System.Runtime.Handles": "4.3.0",
  3168. "System.Runtime.InteropServices": "4.3.0",
  3169. "System.Security.Cryptography.Primitives": "4.3.0",
  3170. "System.Text.Encoding": "4.3.0",
  3171. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3172. },
  3173. "compile": {
  3174. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3175. "related": ".xml"
  3176. }
  3177. },
  3178. "runtimeTargets": {
  3179. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3180. "assetType": "runtime",
  3181. "rid": "unix"
  3182. },
  3183. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3184. "assetType": "runtime",
  3185. "rid": "win"
  3186. }
  3187. }
  3188. },
  3189. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3190. "type": "package",
  3191. "dependencies": {
  3192. "System.Collections": "4.3.0",
  3193. "System.IO": "4.3.0",
  3194. "System.Resources.ResourceManager": "4.3.0",
  3195. "System.Runtime": "4.3.0",
  3196. "System.Runtime.Extensions": "4.3.0",
  3197. "System.Runtime.Handles": "4.3.0",
  3198. "System.Runtime.InteropServices": "4.3.0",
  3199. "System.Runtime.Numerics": "4.3.0",
  3200. "System.Security.Cryptography.Algorithms": "4.3.0",
  3201. "System.Security.Cryptography.Encoding": "4.3.0",
  3202. "System.Security.Cryptography.Primitives": "4.3.0",
  3203. "System.Text.Encoding": "4.3.0",
  3204. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3205. },
  3206. "compile": {
  3207. "ref/netstandard1.6/_._": {}
  3208. },
  3209. "runtime": {
  3210. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3211. },
  3212. "runtimeTargets": {
  3213. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3214. "assetType": "runtime",
  3215. "rid": "unix"
  3216. }
  3217. }
  3218. },
  3219. "System.Security.Cryptography.Primitives/4.3.0": {
  3220. "type": "package",
  3221. "dependencies": {
  3222. "System.Diagnostics.Debug": "4.3.0",
  3223. "System.Globalization": "4.3.0",
  3224. "System.IO": "4.3.0",
  3225. "System.Resources.ResourceManager": "4.3.0",
  3226. "System.Runtime": "4.3.0",
  3227. "System.Threading": "4.3.0",
  3228. "System.Threading.Tasks": "4.3.0"
  3229. },
  3230. "compile": {
  3231. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3232. },
  3233. "runtime": {
  3234. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3235. }
  3236. },
  3237. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3238. "type": "package",
  3239. "compile": {
  3240. "ref/netstandard2.0/_._": {
  3241. "related": ".xml"
  3242. }
  3243. },
  3244. "runtime": {
  3245. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3246. "related": ".xml"
  3247. }
  3248. },
  3249. "runtimeTargets": {
  3250. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3251. "assetType": "runtime",
  3252. "rid": "win"
  3253. }
  3254. }
  3255. },
  3256. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3257. "type": "package",
  3258. "dependencies": {
  3259. "Microsoft.NETCore.Platforms": "1.1.0",
  3260. "System.Collections": "4.3.0",
  3261. "System.Diagnostics.Debug": "4.3.0",
  3262. "System.Globalization": "4.3.0",
  3263. "System.Globalization.Calendars": "4.3.0",
  3264. "System.IO": "4.3.0",
  3265. "System.IO.FileSystem": "4.3.0",
  3266. "System.IO.FileSystem.Primitives": "4.3.0",
  3267. "System.Resources.ResourceManager": "4.3.0",
  3268. "System.Runtime": "4.3.0",
  3269. "System.Runtime.Extensions": "4.3.0",
  3270. "System.Runtime.Handles": "4.3.0",
  3271. "System.Runtime.InteropServices": "4.3.0",
  3272. "System.Runtime.Numerics": "4.3.0",
  3273. "System.Security.Cryptography.Algorithms": "4.3.0",
  3274. "System.Security.Cryptography.Cng": "4.3.0",
  3275. "System.Security.Cryptography.Csp": "4.3.0",
  3276. "System.Security.Cryptography.Encoding": "4.3.0",
  3277. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3278. "System.Security.Cryptography.Primitives": "4.3.0",
  3279. "System.Text.Encoding": "4.3.0",
  3280. "System.Threading": "4.3.0",
  3281. "runtime.native.System": "4.3.0",
  3282. "runtime.native.System.Net.Http": "4.3.0",
  3283. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3284. },
  3285. "compile": {
  3286. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3287. "related": ".xml"
  3288. }
  3289. },
  3290. "runtimeTargets": {
  3291. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3292. "assetType": "runtime",
  3293. "rid": "unix"
  3294. },
  3295. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3296. "assetType": "runtime",
  3297. "rid": "win"
  3298. }
  3299. }
  3300. },
  3301. "System.Security.Permissions/4.7.0": {
  3302. "type": "package",
  3303. "dependencies": {
  3304. "System.Security.AccessControl": "4.7.0",
  3305. "System.Windows.Extensions": "4.7.0"
  3306. },
  3307. "compile": {
  3308. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3309. "related": ".xml"
  3310. }
  3311. },
  3312. "runtime": {
  3313. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3314. "related": ".xml"
  3315. }
  3316. }
  3317. },
  3318. "System.Security.Principal/4.3.0": {
  3319. "type": "package",
  3320. "dependencies": {
  3321. "System.Runtime": "4.3.0"
  3322. },
  3323. "compile": {
  3324. "ref/netstandard1.0/System.Security.Principal.dll": {
  3325. "related": ".xml"
  3326. }
  3327. },
  3328. "runtime": {
  3329. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3330. }
  3331. },
  3332. "System.Security.Principal.Windows/4.7.0": {
  3333. "type": "package",
  3334. "compile": {
  3335. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3336. "related": ".xml"
  3337. }
  3338. },
  3339. "runtime": {
  3340. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3341. "related": ".xml"
  3342. }
  3343. },
  3344. "runtimeTargets": {
  3345. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3346. "assetType": "runtime",
  3347. "rid": "unix"
  3348. },
  3349. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3350. "assetType": "runtime",
  3351. "rid": "win"
  3352. }
  3353. }
  3354. },
  3355. "System.Text.Encoding/4.3.0": {
  3356. "type": "package",
  3357. "dependencies": {
  3358. "Microsoft.NETCore.Platforms": "1.1.0",
  3359. "Microsoft.NETCore.Targets": "1.1.0",
  3360. "System.Runtime": "4.3.0"
  3361. },
  3362. "compile": {
  3363. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3364. "related": ".xml"
  3365. }
  3366. }
  3367. },
  3368. "System.Text.Encoding.CodePages/5.0.0": {
  3369. "type": "package",
  3370. "dependencies": {
  3371. "Microsoft.NETCore.Platforms": "5.0.0"
  3372. },
  3373. "compile": {
  3374. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3375. "related": ".xml"
  3376. }
  3377. },
  3378. "runtime": {
  3379. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3380. "related": ".xml"
  3381. }
  3382. },
  3383. "runtimeTargets": {
  3384. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3385. "assetType": "runtime",
  3386. "rid": "win"
  3387. }
  3388. }
  3389. },
  3390. "System.Text.Encoding.Extensions/4.3.0": {
  3391. "type": "package",
  3392. "dependencies": {
  3393. "Microsoft.NETCore.Platforms": "1.1.0",
  3394. "Microsoft.NETCore.Targets": "1.1.0",
  3395. "System.Runtime": "4.3.0",
  3396. "System.Text.Encoding": "4.3.0"
  3397. },
  3398. "compile": {
  3399. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3400. "related": ".xml"
  3401. }
  3402. }
  3403. },
  3404. "System.Text.Encodings.Web/4.7.0": {
  3405. "type": "package",
  3406. "compile": {
  3407. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3408. "related": ".xml"
  3409. }
  3410. },
  3411. "runtime": {
  3412. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3413. "related": ".xml"
  3414. }
  3415. }
  3416. },
  3417. "System.Text.RegularExpressions/4.3.0": {
  3418. "type": "package",
  3419. "dependencies": {
  3420. "System.Runtime": "4.3.0"
  3421. },
  3422. "compile": {
  3423. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3424. },
  3425. "runtime": {
  3426. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3427. }
  3428. },
  3429. "System.Threading/4.3.0": {
  3430. "type": "package",
  3431. "dependencies": {
  3432. "System.Runtime": "4.3.0",
  3433. "System.Threading.Tasks": "4.3.0"
  3434. },
  3435. "compile": {
  3436. "ref/netstandard1.3/System.Threading.dll": {
  3437. "related": ".xml"
  3438. }
  3439. },
  3440. "runtime": {
  3441. "lib/netstandard1.3/System.Threading.dll": {}
  3442. }
  3443. },
  3444. "System.Threading.Channels/7.0.0": {
  3445. "type": "package",
  3446. "compile": {
  3447. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3448. "related": ".xml"
  3449. }
  3450. },
  3451. "runtime": {
  3452. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3453. "related": ".xml"
  3454. }
  3455. },
  3456. "build": {
  3457. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3458. }
  3459. },
  3460. "System.Threading.Tasks/4.3.0": {
  3461. "type": "package",
  3462. "dependencies": {
  3463. "Microsoft.NETCore.Platforms": "1.1.0",
  3464. "Microsoft.NETCore.Targets": "1.1.0",
  3465. "System.Runtime": "4.3.0"
  3466. },
  3467. "compile": {
  3468. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3469. "related": ".xml"
  3470. }
  3471. }
  3472. },
  3473. "System.Threading.Tasks.Extensions/4.3.0": {
  3474. "type": "package",
  3475. "dependencies": {
  3476. "System.Collections": "4.3.0",
  3477. "System.Runtime": "4.3.0",
  3478. "System.Threading.Tasks": "4.3.0"
  3479. },
  3480. "compile": {
  3481. "lib/netstandard1.0/_._": {
  3482. "related": ".xml"
  3483. }
  3484. },
  3485. "runtime": {
  3486. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3487. "related": ".xml"
  3488. }
  3489. }
  3490. },
  3491. "System.Threading.Thread/4.3.0": {
  3492. "type": "package",
  3493. "dependencies": {
  3494. "System.Runtime": "4.3.0"
  3495. },
  3496. "compile": {
  3497. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3498. "related": ".xml"
  3499. }
  3500. },
  3501. "runtime": {
  3502. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3503. }
  3504. },
  3505. "System.Threading.ThreadPool/4.3.0": {
  3506. "type": "package",
  3507. "dependencies": {
  3508. "System.Runtime": "4.3.0",
  3509. "System.Runtime.Handles": "4.3.0"
  3510. },
  3511. "compile": {
  3512. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3513. "related": ".xml"
  3514. }
  3515. },
  3516. "runtime": {
  3517. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3518. }
  3519. },
  3520. "System.Threading.Timer/4.3.0": {
  3521. "type": "package",
  3522. "dependencies": {
  3523. "Microsoft.NETCore.Platforms": "1.1.0",
  3524. "Microsoft.NETCore.Targets": "1.1.0",
  3525. "System.Runtime": "4.3.0"
  3526. },
  3527. "compile": {
  3528. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3529. "related": ".xml"
  3530. }
  3531. }
  3532. },
  3533. "System.Windows.Extensions/4.7.0": {
  3534. "type": "package",
  3535. "dependencies": {
  3536. "System.Drawing.Common": "4.7.0"
  3537. },
  3538. "compile": {
  3539. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3540. "related": ".xml"
  3541. }
  3542. },
  3543. "runtime": {
  3544. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3545. "related": ".xml"
  3546. }
  3547. },
  3548. "runtimeTargets": {
  3549. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3550. "assetType": "runtime",
  3551. "rid": "win"
  3552. }
  3553. }
  3554. },
  3555. "System.Xml.ReaderWriter/4.3.0": {
  3556. "type": "package",
  3557. "dependencies": {
  3558. "System.Collections": "4.3.0",
  3559. "System.Diagnostics.Debug": "4.3.0",
  3560. "System.Globalization": "4.3.0",
  3561. "System.IO": "4.3.0",
  3562. "System.IO.FileSystem": "4.3.0",
  3563. "System.IO.FileSystem.Primitives": "4.3.0",
  3564. "System.Resources.ResourceManager": "4.3.0",
  3565. "System.Runtime": "4.3.0",
  3566. "System.Runtime.Extensions": "4.3.0",
  3567. "System.Runtime.InteropServices": "4.3.0",
  3568. "System.Text.Encoding": "4.3.0",
  3569. "System.Text.Encoding.Extensions": "4.3.0",
  3570. "System.Text.RegularExpressions": "4.3.0",
  3571. "System.Threading.Tasks": "4.3.0",
  3572. "System.Threading.Tasks.Extensions": "4.3.0"
  3573. },
  3574. "compile": {
  3575. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3576. "related": ".xml"
  3577. }
  3578. },
  3579. "runtime": {
  3580. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3581. }
  3582. },
  3583. "System.Xml.XDocument/4.3.0": {
  3584. "type": "package",
  3585. "dependencies": {
  3586. "System.Collections": "4.3.0",
  3587. "System.Diagnostics.Debug": "4.3.0",
  3588. "System.Diagnostics.Tools": "4.3.0",
  3589. "System.Globalization": "4.3.0",
  3590. "System.IO": "4.3.0",
  3591. "System.Reflection": "4.3.0",
  3592. "System.Resources.ResourceManager": "4.3.0",
  3593. "System.Runtime": "4.3.0",
  3594. "System.Runtime.Extensions": "4.3.0",
  3595. "System.Text.Encoding": "4.3.0",
  3596. "System.Threading": "4.3.0",
  3597. "System.Xml.ReaderWriter": "4.3.0"
  3598. },
  3599. "compile": {
  3600. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3601. "related": ".xml"
  3602. }
  3603. },
  3604. "runtime": {
  3605. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3606. }
  3607. },
  3608. "System.Xml.XmlDocument/4.3.0": {
  3609. "type": "package",
  3610. "dependencies": {
  3611. "System.Collections": "4.3.0",
  3612. "System.Diagnostics.Debug": "4.3.0",
  3613. "System.Globalization": "4.3.0",
  3614. "System.IO": "4.3.0",
  3615. "System.Resources.ResourceManager": "4.3.0",
  3616. "System.Runtime": "4.3.0",
  3617. "System.Runtime.Extensions": "4.3.0",
  3618. "System.Text.Encoding": "4.3.0",
  3619. "System.Threading": "4.3.0",
  3620. "System.Xml.ReaderWriter": "4.3.0"
  3621. },
  3622. "compile": {
  3623. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3624. "related": ".xml"
  3625. }
  3626. },
  3627. "runtime": {
  3628. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3629. }
  3630. },
  3631. "ZXing.Net/0.16.9": {
  3632. "type": "package",
  3633. "compile": {
  3634. "lib/net5.0/zxing.dll": {
  3635. "related": ".XML"
  3636. }
  3637. },
  3638. "runtime": {
  3639. "lib/net5.0/zxing.dll": {
  3640. "related": ".XML"
  3641. }
  3642. }
  3643. },
  3644. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3645. "type": "package",
  3646. "dependencies": {
  3647. "SixLabors.ImageSharp": "2.1.3",
  3648. "ZXing.Net": "0.16.9"
  3649. },
  3650. "compile": {
  3651. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3652. "related": ".pdb;.xml"
  3653. }
  3654. },
  3655. "runtime": {
  3656. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3657. "related": ".pdb;.xml"
  3658. }
  3659. }
  3660. },
  3661. "Ropin.Core.Common/1.0.0": {
  3662. "type": "project",
  3663. "framework": ".NETCoreApp,Version=v5.0",
  3664. "dependencies": {
  3665. "Coravel": "4.2.1",
  3666. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3667. "Newtonsoft.Json": "13.0.1",
  3668. "QRCoder": "1.4.3",
  3669. "SixLabors.ImageSharp": "2.1.6",
  3670. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3671. },
  3672. "compile": {
  3673. "bin/placeholder/Ropin.Core.Common.dll": {}
  3674. },
  3675. "runtime": {
  3676. "bin/placeholder/Ropin.Core.Common.dll": {}
  3677. }
  3678. },
  3679. "Ropin.Core.Extensions/1.0.0": {
  3680. "type": "project",
  3681. "framework": ".NETCoreApp,Version=v5.0",
  3682. "dependencies": {
  3683. "Autofac": "6.2.0",
  3684. "Autofac.Extras.DynamicProxy": "6.0.0",
  3685. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3686. "Ropin.Core.Common": "1.0.0",
  3687. "Ropin.Inspection.Common": "1.0.0",
  3688. "Ropin.Inspection.Service": "1.0.0",
  3689. "Ropin.Inspection.Tasks": "1.0.0",
  3690. "StackExchange.Redis": "1.2.4",
  3691. "log4net": "2.0.17"
  3692. },
  3693. "compile": {
  3694. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3695. },
  3696. "runtime": {
  3697. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3698. }
  3699. },
  3700. "Ropin.Inspection.Common/1.0.0": {
  3701. "type": "project",
  3702. "framework": ".NETCoreApp,Version=v5.0",
  3703. "dependencies": {
  3704. "FluentEmail.Smtp": "3.0.2",
  3705. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3706. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3707. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3708. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3709. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3710. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3711. "Microsoft.Extensions.Configuration": "5.0.0",
  3712. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3713. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3714. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3715. "Microsoft.Extensions.Http": "5.0.0",
  3716. "Newtonsoft.Json": "13.0.1",
  3717. "RabbitMQ.Client": "6.8.1",
  3718. "log4net": "2.0.17"
  3719. },
  3720. "compile": {
  3721. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3722. },
  3723. "runtime": {
  3724. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3725. }
  3726. },
  3727. "Ropin.Inspection.Model/1.0.0": {
  3728. "type": "project",
  3729. "framework": ".NETCoreApp,Version=v5.0",
  3730. "dependencies": {
  3731. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3732. "Microsoft.EntityFrameworkCore": "5.0.0",
  3733. "MySql.Data": "8.0.23",
  3734. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3735. "Ropin.Inspection.Common": "1.0.0"
  3736. },
  3737. "compile": {
  3738. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3739. },
  3740. "runtime": {
  3741. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3742. }
  3743. },
  3744. "Ropin.Inspection.Repository/1.0.0": {
  3745. "type": "project",
  3746. "framework": ".NETCoreApp,Version=v5.0",
  3747. "dependencies": {
  3748. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3749. "Microsoft.EntityFrameworkCore": "5.0.0",
  3750. "Ropin.Inspection.Model": "1.0.0"
  3751. },
  3752. "compile": {
  3753. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3754. },
  3755. "runtime": {
  3756. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3757. }
  3758. },
  3759. "Ropin.Inspection.Service/1.0.0": {
  3760. "type": "project",
  3761. "framework": ".NETCoreApp,Version=v5.0",
  3762. "dependencies": {
  3763. "AutoMapper": "10.1.1",
  3764. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3765. "Newtonsoft.Json": "13.0.1",
  3766. "Ropin.Core.Common": "1.0.0",
  3767. "Ropin.Inspection.Common": "1.0.0",
  3768. "Ropin.Inspection.Model": "1.0.0",
  3769. "Ropin.Inspection.Repository": "1.0.0",
  3770. "log4net": "2.0.17"
  3771. },
  3772. "compile": {
  3773. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3774. },
  3775. "runtime": {
  3776. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3777. }
  3778. },
  3779. "Ropin.Inspection.Tasks/1.0.0": {
  3780. "type": "project",
  3781. "framework": ".NETCoreApp,Version=v5.0",
  3782. "dependencies": {
  3783. "Quartz": "3.3.3",
  3784. "Ropin.Inspection.Common": "1.0.0",
  3785. "Ropin.Inspection.Model": "1.0.0",
  3786. "Ropin.Inspection.Service": "1.0.0"
  3787. },
  3788. "compile": {
  3789. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3790. },
  3791. "runtime": {
  3792. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3793. }
  3794. }
  3795. }
  3796. },
  3797. "libraries": {
  3798. "AdvancedStringBuilder/0.1.0": {
  3799. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3800. "type": "package",
  3801. "path": "advancedstringbuilder/0.1.0",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3806. "advancedstringbuilder.nuspec",
  3807. "lib/net40-client/AdvancedStringBuilder.dll",
  3808. "lib/net40-client/AdvancedStringBuilder.xml",
  3809. "lib/net45/AdvancedStringBuilder.dll",
  3810. "lib/net45/AdvancedStringBuilder.xml",
  3811. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3812. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3813. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3814. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3815. ]
  3816. },
  3817. "Autofac/6.2.0": {
  3818. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3819. "type": "package",
  3820. "path": "autofac/6.2.0",
  3821. "files": [
  3822. ".nupkg.metadata",
  3823. ".signature.p7s",
  3824. "autofac.6.2.0.nupkg.sha512",
  3825. "autofac.nuspec",
  3826. "icon.png",
  3827. "lib/net5.0/Autofac.dll",
  3828. "lib/net5.0/Autofac.pdb",
  3829. "lib/net5.0/Autofac.xml",
  3830. "lib/netstandard2.0/Autofac.dll",
  3831. "lib/netstandard2.0/Autofac.pdb",
  3832. "lib/netstandard2.0/Autofac.xml",
  3833. "lib/netstandard2.1/Autofac.dll",
  3834. "lib/netstandard2.1/Autofac.pdb",
  3835. "lib/netstandard2.1/Autofac.xml"
  3836. ]
  3837. },
  3838. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3839. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3840. "type": "package",
  3841. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3842. "files": [
  3843. ".nupkg.metadata",
  3844. ".signature.p7s",
  3845. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3846. "autofac.extensions.dependencyinjection.nuspec",
  3847. "icon.png",
  3848. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3849. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3850. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3851. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3852. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3853. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3854. ]
  3855. },
  3856. "Autofac.Extras.DynamicProxy/6.0.0": {
  3857. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3858. "type": "package",
  3859. "path": "autofac.extras.dynamicproxy/6.0.0",
  3860. "files": [
  3861. ".nupkg.metadata",
  3862. ".signature.p7s",
  3863. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3864. "autofac.extras.dynamicproxy.nuspec",
  3865. "icon.png",
  3866. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3867. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3868. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3869. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3870. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3871. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3872. ]
  3873. },
  3874. "AutoMapper/10.1.1": {
  3875. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3876. "type": "package",
  3877. "path": "automapper/10.1.1",
  3878. "files": [
  3879. ".nupkg.metadata",
  3880. ".signature.p7s",
  3881. "automapper.10.1.1.nupkg.sha512",
  3882. "automapper.nuspec",
  3883. "icon.png",
  3884. "lib/net461/AutoMapper.dll",
  3885. "lib/net461/AutoMapper.xml",
  3886. "lib/netstandard2.0/AutoMapper.dll",
  3887. "lib/netstandard2.0/AutoMapper.xml"
  3888. ]
  3889. },
  3890. "BouncyCastle.NetCore/1.8.5": {
  3891. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3892. "type": "package",
  3893. "path": "bouncycastle.netcore/1.8.5",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3898. "bouncycastle.netcore.nuspec",
  3899. "lib/Mono/BouncyCastle.Crypto.dll",
  3900. "lib/Mono/BouncyCastle.Crypto.xml",
  3901. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3902. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3903. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3904. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3905. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3906. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3907. "lib/net20/BouncyCastle.Crypto.dll",
  3908. "lib/net20/BouncyCastle.Crypto.xml",
  3909. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3910. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3911. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3912. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3913. ]
  3914. },
  3915. "Castle.Core/4.4.0": {
  3916. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3917. "type": "package",
  3918. "path": "castle.core/4.4.0",
  3919. "files": [
  3920. ".nupkg.metadata",
  3921. ".signature.p7s",
  3922. "ASL - Apache Software Foundation License.txt",
  3923. "CHANGELOG.md",
  3924. "LICENSE",
  3925. "castle.core.4.4.0.nupkg.sha512",
  3926. "castle.core.nuspec",
  3927. "lib/net35/Castle.Core.dll",
  3928. "lib/net35/Castle.Core.xml",
  3929. "lib/net40/Castle.Core.dll",
  3930. "lib/net40/Castle.Core.xml",
  3931. "lib/net45/Castle.Core.dll",
  3932. "lib/net45/Castle.Core.xml",
  3933. "lib/netstandard1.3/Castle.Core.dll",
  3934. "lib/netstandard1.3/Castle.Core.xml",
  3935. "lib/netstandard1.5/Castle.Core.dll",
  3936. "lib/netstandard1.5/Castle.Core.xml",
  3937. "readme.txt"
  3938. ]
  3939. },
  3940. "Coravel/4.2.1": {
  3941. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3942. "type": "package",
  3943. "path": "coravel/4.2.1",
  3944. "files": [
  3945. ".nupkg.metadata",
  3946. ".signature.p7s",
  3947. "coravel.4.2.1.nupkg.sha512",
  3948. "coravel.nuspec",
  3949. "lib/netstandard2.0/Coravel.dll",
  3950. "lib/netstandard2.0/Coravel.xml",
  3951. "logo.png",
  3952. "readme.md"
  3953. ]
  3954. },
  3955. "FBoxClientDriver/1.2.0": {
  3956. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3957. "type": "package",
  3958. "path": "fboxclientdriver/1.2.0",
  3959. "files": [
  3960. ".nupkg.metadata",
  3961. ".signature.p7s",
  3962. "fboxclientdriver.1.2.0.nupkg.sha512",
  3963. "fboxclientdriver.nuspec",
  3964. "lib/netstandard2.0/FBoxClientDriver.dll",
  3965. "lib/netstandard2.0/FBoxClientDriver.xml"
  3966. ]
  3967. },
  3968. "FBoxClientDriver.Contract/1.2.0": {
  3969. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3970. "type": "package",
  3971. "path": "fboxclientdriver.contract/1.2.0",
  3972. "files": [
  3973. ".nupkg.metadata",
  3974. ".signature.p7s",
  3975. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3976. "fboxclientdriver.contract.nuspec",
  3977. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3978. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3979. ]
  3980. },
  3981. "FluentEmail.Core/3.0.2": {
  3982. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3983. "type": "package",
  3984. "path": "fluentemail.core/3.0.2",
  3985. "files": [
  3986. ".nupkg.metadata",
  3987. ".signature.p7s",
  3988. "fluentemail.core.3.0.2.nupkg.sha512",
  3989. "fluentemail.core.nuspec",
  3990. "fluentemail_logo_64x64.png",
  3991. "lib/netstandard2.0/FluentEmail.Core.dll"
  3992. ]
  3993. },
  3994. "FluentEmail.Smtp/3.0.2": {
  3995. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3996. "type": "package",
  3997. "path": "fluentemail.smtp/3.0.2",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "fluentemail.smtp.3.0.2.nupkg.sha512",
  4002. "fluentemail.smtp.nuspec",
  4003. "fluentemail_logo_64x64.png",
  4004. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  4005. ]
  4006. },
  4007. "Google.Protobuf/3.11.4": {
  4008. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  4009. "type": "package",
  4010. "path": "google.protobuf/3.11.4",
  4011. "files": [
  4012. ".nupkg.metadata",
  4013. ".signature.p7s",
  4014. "google.protobuf.3.11.4.nupkg.sha512",
  4015. "google.protobuf.nuspec",
  4016. "lib/net45/Google.Protobuf.dll",
  4017. "lib/net45/Google.Protobuf.pdb",
  4018. "lib/net45/Google.Protobuf.xml",
  4019. "lib/netstandard1.0/Google.Protobuf.dll",
  4020. "lib/netstandard1.0/Google.Protobuf.pdb",
  4021. "lib/netstandard1.0/Google.Protobuf.xml",
  4022. "lib/netstandard2.0/Google.Protobuf.dll",
  4023. "lib/netstandard2.0/Google.Protobuf.pdb",
  4024. "lib/netstandard2.0/Google.Protobuf.xml"
  4025. ]
  4026. },
  4027. "IdentityModel/4.3.1": {
  4028. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  4029. "type": "package",
  4030. "path": "identitymodel/4.3.1",
  4031. "files": [
  4032. ".nupkg.metadata",
  4033. ".signature.p7s",
  4034. "icon.jpg",
  4035. "identitymodel.4.3.1.nupkg.sha512",
  4036. "identitymodel.nuspec",
  4037. "lib/net461/IdentityModel.dll",
  4038. "lib/net461/IdentityModel.pdb",
  4039. "lib/net461/IdentityModel.xml",
  4040. "lib/net472/IdentityModel.dll",
  4041. "lib/net472/IdentityModel.pdb",
  4042. "lib/net472/IdentityModel.xml",
  4043. "lib/netstandard2.0/IdentityModel.dll",
  4044. "lib/netstandard2.0/IdentityModel.pdb",
  4045. "lib/netstandard2.0/IdentityModel.xml"
  4046. ]
  4047. },
  4048. "InfluxData.Net/8.0.1": {
  4049. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  4050. "type": "package",
  4051. "path": "influxdata.net/8.0.1",
  4052. "files": [
  4053. ".nupkg.metadata",
  4054. ".signature.p7s",
  4055. "influxdata.net.8.0.1.nupkg.sha512",
  4056. "influxdata.net.nuspec",
  4057. "lib/net461/InfluxData.Net.Common.dll",
  4058. "lib/net461/InfluxData.Net.Common.dll.config",
  4059. "lib/net461/InfluxData.Net.Common.pdb",
  4060. "lib/net461/InfluxData.Net.InfluxDb.dll",
  4061. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  4062. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  4063. "lib/net461/InfluxData.Net.Kapacitor.dll",
  4064. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  4065. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  4066. "lib/net461/InfluxData.Net.dll",
  4067. "lib/net461/InfluxData.Net.dll.config",
  4068. "lib/net461/InfluxData.Net.pdb",
  4069. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  4070. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  4071. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  4072. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  4073. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  4074. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  4075. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  4076. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  4077. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  4078. "lib/netstandard2.0/InfluxData.Net.deps.json",
  4079. "lib/netstandard2.0/InfluxData.Net.dll",
  4080. "lib/netstandard2.0/InfluxData.Net.dll.config",
  4081. "lib/netstandard2.0/InfluxData.Net.pdb"
  4082. ]
  4083. },
  4084. "InitQ/1.0.0.14": {
  4085. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  4086. "type": "package",
  4087. "path": "initq/1.0.0.14",
  4088. "files": [
  4089. ".nupkg.metadata",
  4090. ".signature.p7s",
  4091. "initq.1.0.0.14.nupkg.sha512",
  4092. "initq.nuspec",
  4093. "lib/netcoreapp2.1/InitQ.dll"
  4094. ]
  4095. },
  4096. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4097. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4098. "type": "package",
  4099. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4100. "files": [
  4101. ".nupkg.metadata",
  4102. ".signature.p7s",
  4103. "LICENSE.txt",
  4104. "advanced-string-builder-license.txt",
  4105. "chakra-samples-license.txt",
  4106. "icon.png",
  4107. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4108. "javascriptengineswitcher.chakracore.nuspec",
  4109. "jsrt-dotnet-license.txt",
  4110. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4111. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4112. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4113. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4114. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4115. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4116. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4117. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4118. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4119. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4120. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4121. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4122. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4123. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4124. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4125. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4126. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4127. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4128. "polyfills-for-old-dot-net-license.txt",
  4129. "readme.txt"
  4130. ]
  4131. },
  4132. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4133. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4134. "type": "package",
  4135. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4136. "files": [
  4137. ".nupkg.metadata",
  4138. ".signature.p7s",
  4139. "LICENSE.txt",
  4140. "chakra-core-license.txt",
  4141. "icon.png",
  4142. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4143. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4144. "readme.txt",
  4145. "runtimes/linux-x64/native/libChakraCore.so"
  4146. ]
  4147. },
  4148. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4149. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4150. "type": "package",
  4151. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4152. "hasTools": true,
  4153. "files": [
  4154. ".nupkg.metadata",
  4155. ".signature.p7s",
  4156. "LICENSE.txt",
  4157. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4158. "chakra-core-license.txt",
  4159. "icon.png",
  4160. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4161. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4162. "readme.txt",
  4163. "runtimes/win-x64/native/ChakraCore.dll",
  4164. "tools/Install.ps1",
  4165. "tools/Uninstall.ps1"
  4166. ]
  4167. },
  4168. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4169. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4170. "type": "package",
  4171. "path": "javascriptengineswitcher.core/3.21.0",
  4172. "files": [
  4173. ".nupkg.metadata",
  4174. ".signature.p7s",
  4175. "LICENSE.txt",
  4176. "advanced-string-builder-license.txt",
  4177. "icon.png",
  4178. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4179. "javascriptengineswitcher.core.nuspec",
  4180. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4181. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4182. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4183. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4184. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4185. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4186. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4187. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4188. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4189. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4190. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4191. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4192. "readme.txt"
  4193. ]
  4194. },
  4195. "K4os.Compression.LZ4/1.1.11": {
  4196. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4197. "type": "package",
  4198. "path": "k4os.compression.lz4/1.1.11",
  4199. "files": [
  4200. ".nupkg.metadata",
  4201. ".signature.p7s",
  4202. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4203. "k4os.compression.lz4.nuspec",
  4204. "lib/net45/K4os.Compression.LZ4.dll",
  4205. "lib/net45/K4os.Compression.LZ4.xml",
  4206. "lib/net46/K4os.Compression.LZ4.dll",
  4207. "lib/net46/K4os.Compression.LZ4.xml",
  4208. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4209. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4210. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4211. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4212. ]
  4213. },
  4214. "K4os.Compression.LZ4.Streams/1.1.11": {
  4215. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4216. "type": "package",
  4217. "path": "k4os.compression.lz4.streams/1.1.11",
  4218. "files": [
  4219. ".nupkg.metadata",
  4220. ".signature.p7s",
  4221. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4222. "k4os.compression.lz4.streams.nuspec",
  4223. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4224. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4225. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4226. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4227. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4228. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4229. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4230. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4231. ]
  4232. },
  4233. "K4os.Hash.xxHash/1.0.6": {
  4234. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4235. "type": "package",
  4236. "path": "k4os.hash.xxhash/1.0.6",
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4241. "k4os.hash.xxhash.nuspec",
  4242. "lib/net45/K4os.Hash.xxHash.dll",
  4243. "lib/net45/K4os.Hash.xxHash.xml",
  4244. "lib/net46/K4os.Hash.xxHash.dll",
  4245. "lib/net46/K4os.Hash.xxHash.xml",
  4246. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4247. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4248. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4249. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4250. ]
  4251. },
  4252. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4253. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4254. "type": "package",
  4255. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4256. "files": [
  4257. ".nupkg.metadata",
  4258. ".signature.p7s",
  4259. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4260. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4261. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4262. "linqkit.microsoft.entityframeworkcore.nuspec"
  4263. ]
  4264. },
  4265. "log4net/2.0.17": {
  4266. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4267. "type": "package",
  4268. "path": "log4net/2.0.17",
  4269. "files": [
  4270. ".nupkg.metadata",
  4271. ".signature.p7s",
  4272. "lib/net20/log4net.dll",
  4273. "lib/net20/log4net.xml",
  4274. "lib/net35/log4net.dll",
  4275. "lib/net35/log4net.xml",
  4276. "lib/net40-client/log4net.dll",
  4277. "lib/net40-client/log4net.xml",
  4278. "lib/net40/log4net.dll",
  4279. "lib/net40/log4net.xml",
  4280. "lib/net45/log4net.dll",
  4281. "lib/net45/log4net.xml",
  4282. "lib/netstandard1.3/log4net.dll",
  4283. "lib/netstandard1.3/log4net.xml",
  4284. "lib/netstandard2.0/log4net.dll",
  4285. "lib/netstandard2.0/log4net.xml",
  4286. "log4net.2.0.17.nupkg.sha512",
  4287. "log4net.nuspec",
  4288. "package-icon.png"
  4289. ]
  4290. },
  4291. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4292. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4293. "type": "package",
  4294. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4295. "files": [
  4296. ".nupkg.metadata",
  4297. ".signature.p7s",
  4298. "Microsoft.AspNet.SignalR.Client.2.4.1.nupkg.sha512",
  4299. "Microsoft.AspNet.SignalR.Client.nuspec",
  4300. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4301. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4302. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4303. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4304. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4305. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4306. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4307. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4308. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4309. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4310. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4311. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml"
  4312. ]
  4313. },
  4314. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  4315. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  4316. "type": "package",
  4317. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  4318. "files": [
  4319. ".nupkg.metadata",
  4320. ".signature.p7s",
  4321. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  4322. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  4323. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  4324. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  4325. ]
  4326. },
  4327. "Microsoft.AspNetCore.Authorization/2.2.0": {
  4328. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  4329. "type": "package",
  4330. "path": "microsoft.aspnetcore.authorization/2.2.0",
  4331. "files": [
  4332. ".nupkg.metadata",
  4333. ".signature.p7s",
  4334. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4335. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4336. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  4337. "microsoft.aspnetcore.authorization.nuspec"
  4338. ]
  4339. },
  4340. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  4341. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  4342. "type": "package",
  4343. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  4348. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  4349. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  4350. "microsoft.aspnetcore.authorization.policy.nuspec"
  4351. ]
  4352. },
  4353. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  4354. "sha512": "9bpgnQRo2/dKhUUnKjULeTTXPAsQ/OMGar5HV+MDU8ukArEXmu/cvNo2aWReyf2CHTbUOEE496v8cVgUoDXu6Q==",
  4355. "type": "package",
  4356. "path": "microsoft.aspnetcore.connections.abstractions/3.1.20",
  4357. "files": [
  4358. ".nupkg.metadata",
  4359. ".signature.p7s",
  4360. "Icon.png",
  4361. "THIRD-PARTY-NOTICES.TXT",
  4362. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4363. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4364. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4365. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4366. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4367. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4368. "microsoft.aspnetcore.connections.abstractions.3.1.20.nupkg.sha512",
  4369. "microsoft.aspnetcore.connections.abstractions.nuspec"
  4370. ]
  4371. },
  4372. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  4373. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  4374. "type": "package",
  4375. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  4376. "files": [
  4377. ".nupkg.metadata",
  4378. ".signature.p7s",
  4379. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4380. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4381. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  4382. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  4383. ]
  4384. },
  4385. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  4386. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  4387. "type": "package",
  4388. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  4389. "files": [
  4390. ".nupkg.metadata",
  4391. ".signature.p7s",
  4392. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4393. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4394. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  4395. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  4396. ]
  4397. },
  4398. "Microsoft.AspNetCore.Http/2.2.0": {
  4399. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  4400. "type": "package",
  4401. "path": "microsoft.aspnetcore.http/2.2.0",
  4402. "files": [
  4403. ".nupkg.metadata",
  4404. ".signature.p7s",
  4405. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4406. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4407. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  4408. "microsoft.aspnetcore.http.nuspec"
  4409. ]
  4410. },
  4411. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4412. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4413. "type": "package",
  4414. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4415. "files": [
  4416. ".nupkg.metadata",
  4417. ".signature.p7s",
  4418. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4419. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4420. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4421. "microsoft.aspnetcore.http.abstractions.nuspec"
  4422. ]
  4423. },
  4424. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  4425. "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==",
  4426. "type": "package",
  4427. "path": "microsoft.aspnetcore.http.connections/1.1.0",
  4428. "files": [
  4429. ".nupkg.metadata",
  4430. ".signature.p7s",
  4431. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll",
  4432. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml",
  4433. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll",
  4434. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml",
  4435. "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
  4436. "microsoft.aspnetcore.http.connections.nuspec"
  4437. ]
  4438. },
  4439. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  4440. "sha512": "MLAS2LJeid3Bck1Q5AUfjD5tstqXV6KuVNDD+rJXAz/PYqD4TvYJ1PvUIwMEjQo8OMdoxNQl0xpXcSfz4Fod5A==",
  4441. "type": "package",
  4442. "path": "microsoft.aspnetcore.http.connections.client/3.1.20",
  4443. "files": [
  4444. ".nupkg.metadata",
  4445. ".signature.p7s",
  4446. "Icon.png",
  4447. "THIRD-PARTY-NOTICES.TXT",
  4448. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4449. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4450. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4451. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4452. "microsoft.aspnetcore.http.connections.client.3.1.20.nupkg.sha512",
  4453. "microsoft.aspnetcore.http.connections.client.nuspec"
  4454. ]
  4455. },
  4456. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  4457. "sha512": "HEScvniD1E2Uv1t9Sfpu36u+FYnAQQPc/2obAARWolrOsdUPlSHPT6sXajrAic9JSnpWM9AVIMB22Nb+k/NuEg==",
  4458. "type": "package",
  4459. "path": "microsoft.aspnetcore.http.connections.common/3.1.20",
  4460. "files": [
  4461. ".nupkg.metadata",
  4462. ".signature.p7s",
  4463. "Icon.png",
  4464. "THIRD-PARTY-NOTICES.TXT",
  4465. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4466. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4467. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4468. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4469. "microsoft.aspnetcore.http.connections.common.3.1.20.nupkg.sha512",
  4470. "microsoft.aspnetcore.http.connections.common.nuspec"
  4471. ]
  4472. },
  4473. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4474. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4475. "type": "package",
  4476. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4477. "files": [
  4478. ".nupkg.metadata",
  4479. ".signature.p7s",
  4480. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4481. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4482. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  4483. "microsoft.aspnetcore.http.extensions.nuspec"
  4484. ]
  4485. },
  4486. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4487. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4488. "type": "package",
  4489. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4490. "files": [
  4491. ".nupkg.metadata",
  4492. ".signature.p7s",
  4493. "Icon.png",
  4494. "THIRD-PARTY-NOTICES.TXT",
  4495. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4496. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4497. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4498. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4499. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4500. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4501. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4502. "microsoft.aspnetcore.http.features.nuspec"
  4503. ]
  4504. },
  4505. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4506. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4507. "type": "package",
  4508. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "Icon.png",
  4513. "THIRD-PARTY-NOTICES.TXT",
  4514. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4515. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4516. "microsoft.aspnetcore.nodeservices.nuspec"
  4517. ]
  4518. },
  4519. "Microsoft.AspNetCore.Routing/2.2.0": {
  4520. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4521. "type": "package",
  4522. "path": "microsoft.aspnetcore.routing/2.2.0",
  4523. "files": [
  4524. ".nupkg.metadata",
  4525. ".signature.p7s",
  4526. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4527. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4528. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4529. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4530. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4531. "microsoft.aspnetcore.routing.nuspec"
  4532. ]
  4533. },
  4534. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4535. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4536. "type": "package",
  4537. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4538. "files": [
  4539. ".nupkg.metadata",
  4540. ".signature.p7s",
  4541. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4542. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4543. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4544. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4545. ]
  4546. },
  4547. "Microsoft.AspNetCore.SignalR/1.1.0": {
  4548. "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==",
  4549. "type": "package",
  4550. "path": "microsoft.aspnetcore.signalr/1.1.0",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll",
  4555. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml",
  4556. "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
  4557. "microsoft.aspnetcore.signalr.nuspec"
  4558. ]
  4559. },
  4560. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  4561. "sha512": "Sq8a6+hIAvaYQOPDDfIiEkeZmDYROfecRu/qvRE8e3tWVMFhBTxp2I21ywNNNUj95TSRGX93/X5BbFgnPVDMGQ==",
  4562. "type": "package",
  4563. "path": "microsoft.aspnetcore.signalr.client/3.1.20",
  4564. "files": [
  4565. ".nupkg.metadata",
  4566. ".signature.p7s",
  4567. "Icon.png",
  4568. "THIRD-PARTY-NOTICES.TXT",
  4569. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll",
  4570. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml",
  4571. "microsoft.aspnetcore.signalr.client.3.1.20.nupkg.sha512",
  4572. "microsoft.aspnetcore.signalr.client.nuspec"
  4573. ]
  4574. },
  4575. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  4576. "sha512": "ZB2tpDtuLUbYJaG+R/lOpZ3QeQc1J5zCz57sgNtzhxnNQ8iZQmHRdfTsRyFNANTvwbthN0U7YDEGIfXzyh7s7g==",
  4577. "type": "package",
  4578. "path": "microsoft.aspnetcore.signalr.client.core/3.1.20",
  4579. "files": [
  4580. ".nupkg.metadata",
  4581. ".signature.p7s",
  4582. "Icon.png",
  4583. "THIRD-PARTY-NOTICES.TXT",
  4584. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4585. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4586. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4587. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4588. "microsoft.aspnetcore.signalr.client.core.3.1.20.nupkg.sha512",
  4589. "microsoft.aspnetcore.signalr.client.core.nuspec"
  4590. ]
  4591. },
  4592. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  4593. "sha512": "20KE+/GPxmgcKEvHpqg589Tye56WTvhMkh9zLg5JDnvueiXTfsLSr8izc9AceUGhfjBloug2pzwU2glOnhn8Pw==",
  4594. "type": "package",
  4595. "path": "microsoft.aspnetcore.signalr.common/3.1.20",
  4596. "files": [
  4597. ".nupkg.metadata",
  4598. ".signature.p7s",
  4599. "Icon.png",
  4600. "THIRD-PARTY-NOTICES.TXT",
  4601. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll",
  4602. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.xml",
  4603. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll",
  4604. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml",
  4605. "microsoft.aspnetcore.signalr.common.3.1.20.nupkg.sha512",
  4606. "microsoft.aspnetcore.signalr.common.nuspec"
  4607. ]
  4608. },
  4609. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  4610. "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==",
  4611. "type": "package",
  4612. "path": "microsoft.aspnetcore.signalr.core/1.1.0",
  4613. "files": [
  4614. ".nupkg.metadata",
  4615. ".signature.p7s",
  4616. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll",
  4617. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml",
  4618. "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
  4619. "microsoft.aspnetcore.signalr.core.nuspec"
  4620. ]
  4621. },
  4622. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  4623. "sha512": "PlEyHZBxyO9OK+v0fHNFvI330EYtz3NQNp3Y7BtKWnZEotNrNtP/iB0GDkgUTRxfy5/P5lXDmd0wgFgefSzcwA==",
  4624. "type": "package",
  4625. "path": "microsoft.aspnetcore.signalr.protocols.json/3.1.20",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "Icon.png",
  4630. "THIRD-PARTY-NOTICES.TXT",
  4631. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4632. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4633. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4634. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4635. "microsoft.aspnetcore.signalr.protocols.json.3.1.20.nupkg.sha512",
  4636. "microsoft.aspnetcore.signalr.protocols.json.nuspec"
  4637. ]
  4638. },
  4639. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  4640. "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==",
  4641. "type": "package",
  4642. "path": "microsoft.aspnetcore.websockets/2.2.0",
  4643. "files": [
  4644. ".nupkg.metadata",
  4645. ".signature.p7s",
  4646. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
  4647. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
  4648. "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
  4649. "microsoft.aspnetcore.websockets.nuspec"
  4650. ]
  4651. },
  4652. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4653. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4654. "type": "package",
  4655. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4656. "files": [
  4657. ".nupkg.metadata",
  4658. ".signature.p7s",
  4659. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4660. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4661. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  4662. "microsoft.aspnetcore.webutilities.nuspec"
  4663. ]
  4664. },
  4665. "Microsoft.CSharp/4.7.0": {
  4666. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4667. "type": "package",
  4668. "path": "microsoft.csharp/4.7.0",
  4669. "files": [
  4670. ".nupkg.metadata",
  4671. ".signature.p7s",
  4672. "LICENSE.TXT",
  4673. "THIRD-PARTY-NOTICES.TXT",
  4674. "lib/MonoAndroid10/_._",
  4675. "lib/MonoTouch10/_._",
  4676. "lib/net45/_._",
  4677. "lib/netcore50/Microsoft.CSharp.dll",
  4678. "lib/netcoreapp2.0/_._",
  4679. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4680. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4681. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4682. "lib/portable-net45+win8+wp8+wpa81/_._",
  4683. "lib/uap10.0.16299/_._",
  4684. "lib/win8/_._",
  4685. "lib/wp80/_._",
  4686. "lib/wpa81/_._",
  4687. "lib/xamarinios10/_._",
  4688. "lib/xamarinmac20/_._",
  4689. "lib/xamarintvos10/_._",
  4690. "lib/xamarinwatchos10/_._",
  4691. "microsoft.csharp.4.7.0.nupkg.sha512",
  4692. "microsoft.csharp.nuspec",
  4693. "ref/MonoAndroid10/_._",
  4694. "ref/MonoTouch10/_._",
  4695. "ref/net45/_._",
  4696. "ref/netcore50/Microsoft.CSharp.dll",
  4697. "ref/netcore50/Microsoft.CSharp.xml",
  4698. "ref/netcore50/de/Microsoft.CSharp.xml",
  4699. "ref/netcore50/es/Microsoft.CSharp.xml",
  4700. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4701. "ref/netcore50/it/Microsoft.CSharp.xml",
  4702. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4703. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4704. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4705. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4706. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4707. "ref/netcoreapp2.0/_._",
  4708. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4709. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4710. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4711. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4712. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4713. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4714. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4715. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4716. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4717. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4718. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4719. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4720. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4721. "ref/portable-net45+win8+wp8+wpa81/_._",
  4722. "ref/uap10.0.16299/_._",
  4723. "ref/win8/_._",
  4724. "ref/wp80/_._",
  4725. "ref/wpa81/_._",
  4726. "ref/xamarinios10/_._",
  4727. "ref/xamarinmac20/_._",
  4728. "ref/xamarintvos10/_._",
  4729. "ref/xamarinwatchos10/_._",
  4730. "useSharedDesignerContext.txt",
  4731. "version.txt"
  4732. ]
  4733. },
  4734. "Microsoft.EntityFrameworkCore/5.0.0": {
  4735. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4736. "type": "package",
  4737. "path": "microsoft.entityframeworkcore/5.0.0",
  4738. "files": [
  4739. ".nupkg.metadata",
  4740. ".signature.p7s",
  4741. "Icon.png",
  4742. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4743. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4744. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4745. "microsoft.entityframeworkcore.nuspec"
  4746. ]
  4747. },
  4748. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4749. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4750. "type": "package",
  4751. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4752. "files": [
  4753. ".nupkg.metadata",
  4754. ".signature.p7s",
  4755. "Icon.png",
  4756. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4757. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4758. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4759. "microsoft.entityframeworkcore.abstractions.nuspec"
  4760. ]
  4761. },
  4762. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4763. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4764. "type": "package",
  4765. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4766. "files": [
  4767. ".nupkg.metadata",
  4768. ".signature.p7s",
  4769. "Icon.png",
  4770. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4771. "lib/netstandard2.0/_._",
  4772. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4773. "microsoft.entityframeworkcore.analyzers.nuspec"
  4774. ]
  4775. },
  4776. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4777. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4778. "type": "package",
  4779. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "Icon.png",
  4784. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4785. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4786. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4787. "microsoft.entityframeworkcore.relational.nuspec"
  4788. ]
  4789. },
  4790. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4791. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4792. "type": "package",
  4793. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "Icon.png",
  4798. "LICENSE.TXT",
  4799. "THIRD-PARTY-NOTICES.TXT",
  4800. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4801. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4802. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4803. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4804. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4805. "microsoft.extensions.caching.abstractions.nuspec",
  4806. "useSharedDesignerContext.txt",
  4807. "version.txt"
  4808. ]
  4809. },
  4810. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4811. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4812. "type": "package",
  4813. "path": "microsoft.extensions.caching.memory/5.0.0",
  4814. "files": [
  4815. ".nupkg.metadata",
  4816. ".signature.p7s",
  4817. "Icon.png",
  4818. "LICENSE.TXT",
  4819. "THIRD-PARTY-NOTICES.TXT",
  4820. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4821. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4822. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4823. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4824. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4825. "microsoft.extensions.caching.memory.nuspec",
  4826. "useSharedDesignerContext.txt",
  4827. "version.txt"
  4828. ]
  4829. },
  4830. "Microsoft.Extensions.Configuration/5.0.0": {
  4831. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4832. "type": "package",
  4833. "path": "microsoft.extensions.configuration/5.0.0",
  4834. "files": [
  4835. ".nupkg.metadata",
  4836. ".signature.p7s",
  4837. "Icon.png",
  4838. "LICENSE.TXT",
  4839. "THIRD-PARTY-NOTICES.TXT",
  4840. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4841. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4842. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4843. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4844. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4845. "microsoft.extensions.configuration.nuspec",
  4846. "useSharedDesignerContext.txt",
  4847. "version.txt"
  4848. ]
  4849. },
  4850. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4851. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4852. "type": "package",
  4853. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4854. "files": [
  4855. ".nupkg.metadata",
  4856. ".signature.p7s",
  4857. "Icon.png",
  4858. "LICENSE.TXT",
  4859. "THIRD-PARTY-NOTICES.TXT",
  4860. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4861. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4862. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4863. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4864. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4865. "microsoft.extensions.configuration.abstractions.nuspec",
  4866. "useSharedDesignerContext.txt",
  4867. "version.txt"
  4868. ]
  4869. },
  4870. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4871. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4872. "type": "package",
  4873. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "Icon.png",
  4878. "LICENSE.TXT",
  4879. "THIRD-PARTY-NOTICES.TXT",
  4880. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4881. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4882. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4883. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4884. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4885. "microsoft.extensions.configuration.binder.nuspec",
  4886. "useSharedDesignerContext.txt",
  4887. "version.txt"
  4888. ]
  4889. },
  4890. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4891. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4892. "type": "package",
  4893. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4894. "files": [
  4895. ".nupkg.metadata",
  4896. ".signature.p7s",
  4897. "Icon.png",
  4898. "LICENSE.TXT",
  4899. "THIRD-PARTY-NOTICES.TXT",
  4900. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4901. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4902. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4903. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4904. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4905. "microsoft.extensions.configuration.fileextensions.nuspec",
  4906. "useSharedDesignerContext.txt",
  4907. "version.txt"
  4908. ]
  4909. },
  4910. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4911. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4912. "type": "package",
  4913. "path": "microsoft.extensions.configuration.json/5.0.0",
  4914. "files": [
  4915. ".nupkg.metadata",
  4916. ".signature.p7s",
  4917. "Icon.png",
  4918. "LICENSE.TXT",
  4919. "THIRD-PARTY-NOTICES.TXT",
  4920. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4921. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4922. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4923. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4924. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4925. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4926. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4927. "microsoft.extensions.configuration.json.nuspec",
  4928. "useSharedDesignerContext.txt",
  4929. "version.txt"
  4930. ]
  4931. },
  4932. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4933. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4934. "type": "package",
  4935. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4936. "files": [
  4937. ".nupkg.metadata",
  4938. ".signature.p7s",
  4939. "Icon.png",
  4940. "LICENSE.TXT",
  4941. "THIRD-PARTY-NOTICES.TXT",
  4942. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4943. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4944. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4945. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4946. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4947. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4948. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4949. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4950. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4951. "microsoft.extensions.dependencyinjection.nuspec",
  4952. "useSharedDesignerContext.txt",
  4953. "version.txt"
  4954. ]
  4955. },
  4956. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4957. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4958. "type": "package",
  4959. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "Icon.png",
  4964. "LICENSE.TXT",
  4965. "THIRD-PARTY-NOTICES.TXT",
  4966. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4967. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4968. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4969. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4970. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4971. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4972. "useSharedDesignerContext.txt",
  4973. "version.txt"
  4974. ]
  4975. },
  4976. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4977. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4978. "type": "package",
  4979. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4980. "files": [
  4981. ".nupkg.metadata",
  4982. ".signature.p7s",
  4983. "Icon.png",
  4984. "LICENSE.TXT",
  4985. "THIRD-PARTY-NOTICES.TXT",
  4986. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4987. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4988. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4989. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4990. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4991. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4992. "useSharedDesignerContext.txt",
  4993. "version.txt"
  4994. ]
  4995. },
  4996. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4997. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4998. "type": "package",
  4999. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  5000. "files": [
  5001. ".nupkg.metadata",
  5002. ".signature.p7s",
  5003. "Icon.png",
  5004. "LICENSE.TXT",
  5005. "THIRD-PARTY-NOTICES.TXT",
  5006. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5007. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5008. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5009. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5010. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  5011. "microsoft.extensions.fileproviders.physical.nuspec",
  5012. "useSharedDesignerContext.txt",
  5013. "version.txt"
  5014. ]
  5015. },
  5016. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  5017. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  5018. "type": "package",
  5019. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "Icon.png",
  5024. "LICENSE.TXT",
  5025. "THIRD-PARTY-NOTICES.TXT",
  5026. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5027. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5028. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5029. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5030. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  5031. "microsoft.extensions.filesystemglobbing.nuspec",
  5032. "useSharedDesignerContext.txt",
  5033. "version.txt"
  5034. ]
  5035. },
  5036. "Microsoft.Extensions.Hosting/2.1.0": {
  5037. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  5038. "type": "package",
  5039. "path": "microsoft.extensions.hosting/2.1.0",
  5040. "files": [
  5041. ".nupkg.metadata",
  5042. ".signature.p7s",
  5043. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  5044. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  5045. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  5046. "microsoft.extensions.hosting.nuspec"
  5047. ]
  5048. },
  5049. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  5050. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  5051. "type": "package",
  5052. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  5053. "files": [
  5054. ".nupkg.metadata",
  5055. ".signature.p7s",
  5056. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5057. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5058. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5059. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5060. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  5061. "microsoft.extensions.hosting.abstractions.nuspec",
  5062. "packageIcon.png"
  5063. ]
  5064. },
  5065. "Microsoft.Extensions.Http/5.0.0": {
  5066. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  5067. "type": "package",
  5068. "path": "microsoft.extensions.http/5.0.0",
  5069. "files": [
  5070. ".nupkg.metadata",
  5071. ".signature.p7s",
  5072. "Icon.png",
  5073. "LICENSE.TXT",
  5074. "THIRD-PARTY-NOTICES.TXT",
  5075. "lib/net461/Microsoft.Extensions.Http.dll",
  5076. "lib/net461/Microsoft.Extensions.Http.xml",
  5077. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  5078. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  5079. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  5080. "microsoft.extensions.http.nuspec",
  5081. "useSharedDesignerContext.txt",
  5082. "version.txt"
  5083. ]
  5084. },
  5085. "Microsoft.Extensions.Logging/5.0.0": {
  5086. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  5087. "type": "package",
  5088. "path": "microsoft.extensions.logging/5.0.0",
  5089. "files": [
  5090. ".nupkg.metadata",
  5091. ".signature.p7s",
  5092. "Icon.png",
  5093. "LICENSE.TXT",
  5094. "THIRD-PARTY-NOTICES.TXT",
  5095. "lib/net461/Microsoft.Extensions.Logging.dll",
  5096. "lib/net461/Microsoft.Extensions.Logging.xml",
  5097. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5098. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5099. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5100. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5101. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  5102. "microsoft.extensions.logging.nuspec",
  5103. "useSharedDesignerContext.txt",
  5104. "version.txt"
  5105. ]
  5106. },
  5107. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  5108. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  5109. "type": "package",
  5110. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  5111. "files": [
  5112. ".nupkg.metadata",
  5113. ".signature.p7s",
  5114. "Icon.png",
  5115. "LICENSE.TXT",
  5116. "THIRD-PARTY-NOTICES.TXT",
  5117. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5118. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5119. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5120. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5121. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  5122. "microsoft.extensions.logging.abstractions.nuspec",
  5123. "useSharedDesignerContext.txt",
  5124. "version.txt"
  5125. ]
  5126. },
  5127. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  5128. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  5129. "type": "package",
  5130. "path": "microsoft.extensions.logging.configuration/3.1.30",
  5131. "files": [
  5132. ".nupkg.metadata",
  5133. ".signature.p7s",
  5134. "Icon.png",
  5135. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  5136. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  5137. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  5138. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  5139. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  5140. "microsoft.extensions.logging.configuration.nuspec"
  5141. ]
  5142. },
  5143. "Microsoft.Extensions.Logging.Console/3.1.30": {
  5144. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  5145. "type": "package",
  5146. "path": "microsoft.extensions.logging.console/3.1.30",
  5147. "files": [
  5148. ".nupkg.metadata",
  5149. ".signature.p7s",
  5150. "Icon.png",
  5151. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  5152. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  5153. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  5154. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  5155. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  5156. "microsoft.extensions.logging.console.nuspec"
  5157. ]
  5158. },
  5159. "Microsoft.Extensions.ObjectPool/2.2.0": {
  5160. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  5161. "type": "package",
  5162. "path": "microsoft.extensions.objectpool/2.2.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  5167. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  5168. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  5169. "microsoft.extensions.objectpool.nuspec"
  5170. ]
  5171. },
  5172. "Microsoft.Extensions.Options/5.0.0": {
  5173. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  5174. "type": "package",
  5175. "path": "microsoft.extensions.options/5.0.0",
  5176. "files": [
  5177. ".nupkg.metadata",
  5178. ".signature.p7s",
  5179. "Icon.png",
  5180. "LICENSE.TXT",
  5181. "THIRD-PARTY-NOTICES.TXT",
  5182. "lib/net461/Microsoft.Extensions.Options.dll",
  5183. "lib/net461/Microsoft.Extensions.Options.xml",
  5184. "lib/net5.0/Microsoft.Extensions.Options.dll",
  5185. "lib/net5.0/Microsoft.Extensions.Options.xml",
  5186. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5187. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5188. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  5189. "microsoft.extensions.options.nuspec",
  5190. "useSharedDesignerContext.txt",
  5191. "version.txt"
  5192. ]
  5193. },
  5194. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  5195. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  5196. "type": "package",
  5197. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  5198. "files": [
  5199. ".nupkg.metadata",
  5200. ".signature.p7s",
  5201. "Icon.png",
  5202. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5203. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5204. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5205. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5206. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  5207. "microsoft.extensions.options.configurationextensions.nuspec"
  5208. ]
  5209. },
  5210. "Microsoft.Extensions.Primitives/5.0.0": {
  5211. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  5212. "type": "package",
  5213. "path": "microsoft.extensions.primitives/5.0.0",
  5214. "files": [
  5215. ".nupkg.metadata",
  5216. ".signature.p7s",
  5217. "Icon.png",
  5218. "LICENSE.TXT",
  5219. "THIRD-PARTY-NOTICES.TXT",
  5220. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5221. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5222. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5223. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5224. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5225. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5226. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  5227. "microsoft.extensions.primitives.nuspec",
  5228. "useSharedDesignerContext.txt",
  5229. "version.txt"
  5230. ]
  5231. },
  5232. "Microsoft.Net.Http.Headers/2.2.0": {
  5233. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  5234. "type": "package",
  5235. "path": "microsoft.net.http.headers/2.2.0",
  5236. "files": [
  5237. ".nupkg.metadata",
  5238. ".signature.p7s",
  5239. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  5240. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  5241. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  5242. "microsoft.net.http.headers.nuspec"
  5243. ]
  5244. },
  5245. "Microsoft.NETCore.Platforms/5.0.0": {
  5246. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5247. "type": "package",
  5248. "path": "microsoft.netcore.platforms/5.0.0",
  5249. "files": [
  5250. ".nupkg.metadata",
  5251. ".signature.p7s",
  5252. "Icon.png",
  5253. "LICENSE.TXT",
  5254. "THIRD-PARTY-NOTICES.TXT",
  5255. "lib/netstandard1.0/_._",
  5256. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5257. "microsoft.netcore.platforms.nuspec",
  5258. "runtime.json",
  5259. "useSharedDesignerContext.txt",
  5260. "version.txt"
  5261. ]
  5262. },
  5263. "Microsoft.NETCore.Targets/1.1.0": {
  5264. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5265. "type": "package",
  5266. "path": "microsoft.netcore.targets/1.1.0",
  5267. "files": [
  5268. ".nupkg.metadata",
  5269. ".signature.p7s",
  5270. "ThirdPartyNotices.txt",
  5271. "dotnet_library_license.txt",
  5272. "lib/netstandard1.0/_._",
  5273. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5274. "microsoft.netcore.targets.nuspec",
  5275. "runtime.json"
  5276. ]
  5277. },
  5278. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  5279. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  5280. "type": "package",
  5281. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  5282. "hasTools": true,
  5283. "files": [
  5284. ".nupkg.metadata",
  5285. ".signature.p7s",
  5286. "CHANGELOG.md",
  5287. "EULA.md",
  5288. "ThirdPartyNotices.txt",
  5289. "build/Container.props",
  5290. "build/Container.targets",
  5291. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5292. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5293. "build/Rules/GeneralBrowseObject.xaml",
  5294. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  5295. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  5296. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  5297. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  5298. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  5299. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  5300. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  5301. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  5302. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  5303. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  5304. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  5305. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  5306. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  5307. "build/ToolsTarget.props",
  5308. "build/ToolsTarget.targets",
  5309. "icon.png",
  5310. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  5311. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5312. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5313. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5314. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5315. "tools/Newtonsoft.Json.dll",
  5316. "tools/System.Security.Principal.Windows.dll",
  5317. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5318. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5319. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5320. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5321. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5322. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5323. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5324. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5325. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5326. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5327. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5328. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5329. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5330. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5331. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5332. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5333. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5334. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5335. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5336. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5337. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5338. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5339. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5340. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5341. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5342. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5343. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5344. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5345. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5346. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5347. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5348. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5349. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5350. "tools/utils/KillProcess.exe",
  5351. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5352. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5353. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5354. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5355. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5356. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5357. ]
  5358. },
  5359. "Microsoft.Win32.Primitives/4.3.0": {
  5360. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5361. "type": "package",
  5362. "path": "microsoft.win32.primitives/4.3.0",
  5363. "files": [
  5364. ".nupkg.metadata",
  5365. ".signature.p7s",
  5366. "ThirdPartyNotices.txt",
  5367. "dotnet_library_license.txt",
  5368. "lib/MonoAndroid10/_._",
  5369. "lib/MonoTouch10/_._",
  5370. "lib/net46/Microsoft.Win32.Primitives.dll",
  5371. "lib/xamarinios10/_._",
  5372. "lib/xamarinmac20/_._",
  5373. "lib/xamarintvos10/_._",
  5374. "lib/xamarinwatchos10/_._",
  5375. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5376. "microsoft.win32.primitives.nuspec",
  5377. "ref/MonoAndroid10/_._",
  5378. "ref/MonoTouch10/_._",
  5379. "ref/net46/Microsoft.Win32.Primitives.dll",
  5380. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5381. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5382. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5383. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5384. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5385. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5386. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5387. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5388. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5389. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5390. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5391. "ref/xamarinios10/_._",
  5392. "ref/xamarinmac20/_._",
  5393. "ref/xamarintvos10/_._",
  5394. "ref/xamarinwatchos10/_._"
  5395. ]
  5396. },
  5397. "Microsoft.Win32.SystemEvents/5.0.0": {
  5398. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5399. "type": "package",
  5400. "path": "microsoft.win32.systemevents/5.0.0",
  5401. "files": [
  5402. ".nupkg.metadata",
  5403. ".signature.p7s",
  5404. "Icon.png",
  5405. "LICENSE.TXT",
  5406. "THIRD-PARTY-NOTICES.TXT",
  5407. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5408. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5409. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5410. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5411. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5412. "microsoft.win32.systemevents.nuspec",
  5413. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5414. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5415. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5416. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5417. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5418. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5419. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5420. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5421. "useSharedDesignerContext.txt",
  5422. "version.txt"
  5423. ]
  5424. },
  5425. "MySql.Data/8.0.23": {
  5426. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5427. "type": "package",
  5428. "path": "mysql.data/8.0.23",
  5429. "files": [
  5430. ".nupkg.metadata",
  5431. ".signature.p7s",
  5432. "lib/net452/MySql.Data.dll",
  5433. "lib/net452/MySql.Data.xml",
  5434. "lib/net452/Ubiety.Dns.Core.dll",
  5435. "lib/net452/Zstandard.Net.dll",
  5436. "lib/net48/MySql.Data.dll",
  5437. "lib/net48/MySql.Data.xml",
  5438. "lib/net48/Ubiety.Dns.Core.dll",
  5439. "lib/net48/Zstandard.Net.dll",
  5440. "lib/net5.0/MySql.Data.dll",
  5441. "lib/net5.0/MySql.Data.xml",
  5442. "lib/net5.0/Ubiety.Dns.Core.dll",
  5443. "lib/net5.0/Zstandard.Net.dll",
  5444. "lib/netstandard2.0/MySql.Data.dll",
  5445. "lib/netstandard2.0/MySql.Data.xml",
  5446. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5447. "lib/netstandard2.0/Zstandard.Net.dll",
  5448. "lib/netstandard2.1/MySql.Data.dll",
  5449. "lib/netstandard2.1/MySql.Data.xml",
  5450. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5451. "lib/netstandard2.1/Zstandard.Net.dll",
  5452. "mysql.data.8.0.23.nupkg.sha512",
  5453. "mysql.data.nuspec"
  5454. ]
  5455. },
  5456. "MySqlConnector/1.1.0": {
  5457. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5458. "type": "package",
  5459. "path": "mysqlconnector/1.1.0",
  5460. "files": [
  5461. ".nupkg.metadata",
  5462. ".signature.p7s",
  5463. "lib/net45/MySqlConnector.dll",
  5464. "lib/net45/MySqlConnector.xml",
  5465. "lib/net461/MySqlConnector.dll",
  5466. "lib/net461/MySqlConnector.xml",
  5467. "lib/net471/MySqlConnector.dll",
  5468. "lib/net471/MySqlConnector.xml",
  5469. "lib/net5.0/MySqlConnector.dll",
  5470. "lib/net5.0/MySqlConnector.xml",
  5471. "lib/netcoreapp2.1/MySqlConnector.dll",
  5472. "lib/netcoreapp2.1/MySqlConnector.xml",
  5473. "lib/netcoreapp3.1/MySqlConnector.dll",
  5474. "lib/netcoreapp3.1/MySqlConnector.xml",
  5475. "lib/netstandard1.3/MySqlConnector.dll",
  5476. "lib/netstandard1.3/MySqlConnector.xml",
  5477. "lib/netstandard2.0/MySqlConnector.dll",
  5478. "lib/netstandard2.0/MySqlConnector.xml",
  5479. "lib/netstandard2.1/MySqlConnector.dll",
  5480. "lib/netstandard2.1/MySqlConnector.xml",
  5481. "logo.png",
  5482. "mysqlconnector.1.1.0.nupkg.sha512",
  5483. "mysqlconnector.nuspec"
  5484. ]
  5485. },
  5486. "NETStandard.Library/1.6.1": {
  5487. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5488. "type": "package",
  5489. "path": "netstandard.library/1.6.1",
  5490. "files": [
  5491. ".nupkg.metadata",
  5492. ".signature.p7s",
  5493. "ThirdPartyNotices.txt",
  5494. "dotnet_library_license.txt",
  5495. "netstandard.library.1.6.1.nupkg.sha512",
  5496. "netstandard.library.nuspec"
  5497. ]
  5498. },
  5499. "Newtonsoft.Json/13.0.1": {
  5500. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5501. "type": "package",
  5502. "path": "newtonsoft.json/13.0.1",
  5503. "files": [
  5504. ".nupkg.metadata",
  5505. ".signature.p7s",
  5506. "LICENSE.md",
  5507. "lib/net20/Newtonsoft.Json.dll",
  5508. "lib/net20/Newtonsoft.Json.xml",
  5509. "lib/net35/Newtonsoft.Json.dll",
  5510. "lib/net35/Newtonsoft.Json.xml",
  5511. "lib/net40/Newtonsoft.Json.dll",
  5512. "lib/net40/Newtonsoft.Json.xml",
  5513. "lib/net45/Newtonsoft.Json.dll",
  5514. "lib/net45/Newtonsoft.Json.xml",
  5515. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5516. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5517. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5518. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5519. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5520. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5521. "newtonsoft.json.13.0.1.nupkg.sha512",
  5522. "newtonsoft.json.nuspec",
  5523. "packageIcon.png"
  5524. ]
  5525. },
  5526. "Nito.AsyncEx.Coordination/5.0.0": {
  5527. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5528. "type": "package",
  5529. "path": "nito.asyncex.coordination/5.0.0",
  5530. "files": [
  5531. ".nupkg.metadata",
  5532. ".signature.p7s",
  5533. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5534. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5535. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5536. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5537. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5538. "nito.asyncex.coordination.nuspec"
  5539. ]
  5540. },
  5541. "Nito.AsyncEx.Tasks/5.0.0": {
  5542. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5543. "type": "package",
  5544. "path": "nito.asyncex.tasks/5.0.0",
  5545. "files": [
  5546. ".nupkg.metadata",
  5547. ".signature.p7s",
  5548. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5549. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5550. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5551. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5552. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5553. "nito.asyncex.tasks.nuspec"
  5554. ]
  5555. },
  5556. "Nito.Collections.Deque/1.0.4": {
  5557. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5558. "type": "package",
  5559. "path": "nito.collections.deque/1.0.4",
  5560. "files": [
  5561. ".nupkg.metadata",
  5562. ".signature.p7s",
  5563. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5564. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5565. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5566. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5567. "nito.collections.deque.1.0.4.nupkg.sha512",
  5568. "nito.collections.deque.nuspec"
  5569. ]
  5570. },
  5571. "Nito.Disposables/2.0.0": {
  5572. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5573. "type": "package",
  5574. "path": "nito.disposables/2.0.0",
  5575. "files": [
  5576. ".nupkg.metadata",
  5577. ".signature.p7s",
  5578. "lib/netstandard1.0/Nito.Disposables.dll",
  5579. "lib/netstandard1.0/Nito.Disposables.pdb",
  5580. "lib/netstandard1.0/Nito.Disposables.xml",
  5581. "lib/netstandard2.0/Nito.Disposables.dll",
  5582. "lib/netstandard2.0/Nito.Disposables.pdb",
  5583. "lib/netstandard2.0/Nito.Disposables.xml",
  5584. "nito.disposables.2.0.0.nupkg.sha512",
  5585. "nito.disposables.nuspec"
  5586. ]
  5587. },
  5588. "NLog/4.7.7": {
  5589. "sha512": "lCfAaKel4trne8Suf4/0aR9YPKDFLWKgqBupnHKNYx+cIjutF2BsVxfF2fAb+ObaYN3m5hDjx/ToVS15ouB+SA==",
  5590. "type": "package",
  5591. "path": "nlog/4.7.7",
  5592. "files": [
  5593. ".nupkg.metadata",
  5594. ".signature.p7s",
  5595. "lib/monoandroid44/NLog.dll",
  5596. "lib/monoandroid44/NLog.xml",
  5597. "lib/net35/NLog.dll",
  5598. "lib/net35/NLog.xml",
  5599. "lib/net40-client/NLog.dll",
  5600. "lib/net40-client/NLog.xml",
  5601. "lib/net45/NLog.dll",
  5602. "lib/net45/NLog.xml",
  5603. "lib/netstandard1.3/NLog.dll",
  5604. "lib/netstandard1.3/NLog.xml",
  5605. "lib/netstandard1.5/NLog.dll",
  5606. "lib/netstandard1.5/NLog.xml",
  5607. "lib/netstandard2.0/NLog.dll",
  5608. "lib/netstandard2.0/NLog.xml",
  5609. "lib/sl4/NLog.dll",
  5610. "lib/sl4/NLog.xml",
  5611. "lib/sl5/NLog.dll",
  5612. "lib/sl5/NLog.xml",
  5613. "lib/wp8/NLog.dll",
  5614. "lib/wp8/NLog.xml",
  5615. "lib/xamarinios10/NLog.dll",
  5616. "lib/xamarinios10/NLog.xml",
  5617. "nlog.4.7.7.nupkg.sha512",
  5618. "nlog.nuspec"
  5619. ]
  5620. },
  5621. "NodaTime/2.4.7": {
  5622. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5623. "type": "package",
  5624. "path": "nodatime/2.4.7",
  5625. "files": [
  5626. ".nupkg.metadata",
  5627. ".signature.p7s",
  5628. "lib/net45/NodaTime.dll",
  5629. "lib/net45/NodaTime.pdb",
  5630. "lib/net45/NodaTime.xml",
  5631. "lib/netstandard1.3/NodaTime.dll",
  5632. "lib/netstandard1.3/NodaTime.pdb",
  5633. "lib/netstandard1.3/NodaTime.xml",
  5634. "lib/netstandard2.0/NodaTime.dll",
  5635. "lib/netstandard2.0/NodaTime.pdb",
  5636. "lib/netstandard2.0/NodaTime.xml",
  5637. "nodatime.2.4.7.nupkg.sha512",
  5638. "nodatime.nuspec"
  5639. ]
  5640. },
  5641. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5642. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5643. "type": "package",
  5644. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5645. "files": [
  5646. ".nupkg.metadata",
  5647. ".signature.p7s",
  5648. "icon.png",
  5649. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5650. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5651. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5652. "pomelo.entityframeworkcore.mysql.nuspec"
  5653. ]
  5654. },
  5655. "QRCoder/1.4.3": {
  5656. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5657. "type": "package",
  5658. "path": "qrcoder/1.4.3",
  5659. "files": [
  5660. ".nupkg.metadata",
  5661. ".signature.p7s",
  5662. "lib/net35/QRCoder.dll",
  5663. "lib/net40/QRCoder.dll",
  5664. "lib/net5.0-windows7.0/QRCoder.dll",
  5665. "lib/net5.0/QRCoder.dll",
  5666. "lib/net6.0-windows7.0/QRCoder.dll",
  5667. "lib/net6.0/QRCoder.dll",
  5668. "lib/netstandard1.3/QRCoder.dll",
  5669. "lib/netstandard2.0/QRCoder.dll",
  5670. "nuget-icon.png",
  5671. "nuget-readme.md",
  5672. "qrcoder.1.4.3.nupkg.sha512",
  5673. "qrcoder.nuspec"
  5674. ]
  5675. },
  5676. "Quartz/3.3.3": {
  5677. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5678. "type": "package",
  5679. "path": "quartz/3.3.3",
  5680. "files": [
  5681. ".nupkg.metadata",
  5682. ".signature.p7s",
  5683. "lib/net461/Quartz.dll",
  5684. "lib/net461/Quartz.xml",
  5685. "lib/net472/Quartz.dll",
  5686. "lib/net472/Quartz.xml",
  5687. "lib/netstandard2.0/Quartz.dll",
  5688. "lib/netstandard2.0/Quartz.xml",
  5689. "quartz-logo-small.png",
  5690. "quartz.3.3.3.nupkg.sha512",
  5691. "quartz.nuspec"
  5692. ]
  5693. },
  5694. "RabbitMQ.Client/6.8.1": {
  5695. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5696. "type": "package",
  5697. "path": "rabbitmq.client/6.8.1",
  5698. "files": [
  5699. ".nupkg.metadata",
  5700. ".signature.p7s",
  5701. "README.md",
  5702. "icon.png",
  5703. "lib/net462/RabbitMQ.Client.dll",
  5704. "lib/net462/RabbitMQ.Client.xml",
  5705. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5706. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5707. "rabbitmq.client.6.8.1.nupkg.sha512",
  5708. "rabbitmq.client.nuspec"
  5709. ]
  5710. },
  5711. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5712. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5713. "type": "package",
  5714. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5715. "files": [
  5716. ".nupkg.metadata",
  5717. ".signature.p7s",
  5718. "ThirdPartyNotices.txt",
  5719. "dotnet_library_license.txt",
  5720. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5721. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5722. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5723. ]
  5724. },
  5725. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5726. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5727. "type": "package",
  5728. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5729. "files": [
  5730. ".nupkg.metadata",
  5731. ".signature.p7s",
  5732. "ThirdPartyNotices.txt",
  5733. "dotnet_library_license.txt",
  5734. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5735. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5736. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5737. ]
  5738. },
  5739. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5740. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5741. "type": "package",
  5742. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5743. "files": [
  5744. ".nupkg.metadata",
  5745. ".signature.p7s",
  5746. "ThirdPartyNotices.txt",
  5747. "dotnet_library_license.txt",
  5748. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5749. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5750. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5751. ]
  5752. },
  5753. "runtime.native.System/4.3.0": {
  5754. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5755. "type": "package",
  5756. "path": "runtime.native.system/4.3.0",
  5757. "files": [
  5758. ".nupkg.metadata",
  5759. ".signature.p7s",
  5760. "ThirdPartyNotices.txt",
  5761. "dotnet_library_license.txt",
  5762. "lib/netstandard1.0/_._",
  5763. "runtime.native.system.4.3.0.nupkg.sha512",
  5764. "runtime.native.system.nuspec"
  5765. ]
  5766. },
  5767. "runtime.native.System.IO.Compression/4.3.0": {
  5768. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5769. "type": "package",
  5770. "path": "runtime.native.system.io.compression/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/netstandard1.0/_._",
  5777. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5778. "runtime.native.system.io.compression.nuspec"
  5779. ]
  5780. },
  5781. "runtime.native.System.Net.Http/4.3.0": {
  5782. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5783. "type": "package",
  5784. "path": "runtime.native.system.net.http/4.3.0",
  5785. "files": [
  5786. ".nupkg.metadata",
  5787. ".signature.p7s",
  5788. "ThirdPartyNotices.txt",
  5789. "dotnet_library_license.txt",
  5790. "lib/netstandard1.0/_._",
  5791. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5792. "runtime.native.system.net.http.nuspec"
  5793. ]
  5794. },
  5795. "runtime.native.System.Net.Security/4.3.0": {
  5796. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5797. "type": "package",
  5798. "path": "runtime.native.system.net.security/4.3.0",
  5799. "files": [
  5800. ".nupkg.metadata",
  5801. ".signature.p7s",
  5802. "ThirdPartyNotices.txt",
  5803. "dotnet_library_license.txt",
  5804. "lib/netstandard1.0/_._",
  5805. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5806. "runtime.native.system.net.security.nuspec"
  5807. ]
  5808. },
  5809. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5810. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5811. "type": "package",
  5812. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5813. "files": [
  5814. ".nupkg.metadata",
  5815. ".signature.p7s",
  5816. "ThirdPartyNotices.txt",
  5817. "dotnet_library_license.txt",
  5818. "lib/netstandard1.0/_._",
  5819. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5820. "runtime.native.system.security.cryptography.apple.nuspec"
  5821. ]
  5822. },
  5823. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5824. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5825. "type": "package",
  5826. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. ".signature.p7s",
  5830. "ThirdPartyNotices.txt",
  5831. "dotnet_library_license.txt",
  5832. "lib/netstandard1.0/_._",
  5833. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5834. "runtime.native.system.security.cryptography.openssl.nuspec"
  5835. ]
  5836. },
  5837. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5838. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5839. "type": "package",
  5840. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5841. "files": [
  5842. ".nupkg.metadata",
  5843. ".signature.p7s",
  5844. "ThirdPartyNotices.txt",
  5845. "dotnet_library_license.txt",
  5846. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5847. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5848. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5849. ]
  5850. },
  5851. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5852. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5853. "type": "package",
  5854. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "ThirdPartyNotices.txt",
  5859. "dotnet_library_license.txt",
  5860. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5861. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5862. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5863. ]
  5864. },
  5865. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5866. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5867. "type": "package",
  5868. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. ".signature.p7s",
  5872. "ThirdPartyNotices.txt",
  5873. "dotnet_library_license.txt",
  5874. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5875. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5876. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5877. ]
  5878. },
  5879. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5880. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5881. "type": "package",
  5882. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5883. "files": [
  5884. ".nupkg.metadata",
  5885. ".signature.p7s",
  5886. "ThirdPartyNotices.txt",
  5887. "dotnet_library_license.txt",
  5888. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5889. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5890. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5891. ]
  5892. },
  5893. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5894. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5895. "type": "package",
  5896. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5897. "files": [
  5898. ".nupkg.metadata",
  5899. ".signature.p7s",
  5900. "ThirdPartyNotices.txt",
  5901. "dotnet_library_license.txt",
  5902. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5903. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5904. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5905. ]
  5906. },
  5907. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5908. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5909. "type": "package",
  5910. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5911. "files": [
  5912. ".nupkg.metadata",
  5913. ".signature.p7s",
  5914. "ThirdPartyNotices.txt",
  5915. "dotnet_library_license.txt",
  5916. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5917. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5918. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5919. ]
  5920. },
  5921. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5922. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5923. "type": "package",
  5924. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5925. "files": [
  5926. ".nupkg.metadata",
  5927. ".signature.p7s",
  5928. "ThirdPartyNotices.txt",
  5929. "dotnet_library_license.txt",
  5930. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5931. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5932. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5933. ]
  5934. },
  5935. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5936. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5937. "type": "package",
  5938. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5939. "files": [
  5940. ".nupkg.metadata",
  5941. ".signature.p7s",
  5942. "ThirdPartyNotices.txt",
  5943. "dotnet_library_license.txt",
  5944. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5945. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5946. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5947. ]
  5948. },
  5949. "Serilog/2.11.0": {
  5950. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  5951. "type": "package",
  5952. "path": "serilog/2.11.0",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "icon.png",
  5957. "lib/net45/Serilog.dll",
  5958. "lib/net45/Serilog.xml",
  5959. "lib/net46/Serilog.dll",
  5960. "lib/net46/Serilog.xml",
  5961. "lib/net5.0/Serilog.dll",
  5962. "lib/net5.0/Serilog.xml",
  5963. "lib/netstandard1.0/Serilog.dll",
  5964. "lib/netstandard1.0/Serilog.xml",
  5965. "lib/netstandard1.3/Serilog.dll",
  5966. "lib/netstandard1.3/Serilog.xml",
  5967. "lib/netstandard2.0/Serilog.dll",
  5968. "lib/netstandard2.0/Serilog.xml",
  5969. "lib/netstandard2.1/Serilog.dll",
  5970. "lib/netstandard2.1/Serilog.xml",
  5971. "serilog.2.11.0.nupkg.sha512",
  5972. "serilog.nuspec"
  5973. ]
  5974. },
  5975. "Serilog.Sinks.Console/4.0.1": {
  5976. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  5977. "type": "package",
  5978. "path": "serilog.sinks.console/4.0.1",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "icon.png",
  5983. "lib/net45/Serilog.Sinks.Console.dll",
  5984. "lib/net45/Serilog.Sinks.Console.xml",
  5985. "lib/net5.0/Serilog.Sinks.Console.dll",
  5986. "lib/net5.0/Serilog.Sinks.Console.xml",
  5987. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  5988. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  5989. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  5990. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  5991. "serilog.sinks.console.4.0.1.nupkg.sha512",
  5992. "serilog.sinks.console.nuspec"
  5993. ]
  5994. },
  5995. "Serilog.Sinks.File/5.0.0": {
  5996. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  5997. "type": "package",
  5998. "path": "serilog.sinks.file/5.0.0",
  5999. "files": [
  6000. ".nupkg.metadata",
  6001. ".signature.p7s",
  6002. "images/icon.png",
  6003. "lib/net45/Serilog.Sinks.File.dll",
  6004. "lib/net45/Serilog.Sinks.File.pdb",
  6005. "lib/net45/Serilog.Sinks.File.xml",
  6006. "lib/net5.0/Serilog.Sinks.File.dll",
  6007. "lib/net5.0/Serilog.Sinks.File.pdb",
  6008. "lib/net5.0/Serilog.Sinks.File.xml",
  6009. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  6010. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  6011. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  6012. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  6013. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  6014. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  6015. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  6016. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  6017. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  6018. "serilog.sinks.file.5.0.0.nupkg.sha512",
  6019. "serilog.sinks.file.nuspec"
  6020. ]
  6021. },
  6022. "SixLabors.ImageSharp/2.1.6": {
  6023. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  6024. "type": "package",
  6025. "path": "sixlabors.imagesharp/2.1.6",
  6026. "files": [
  6027. ".nupkg.metadata",
  6028. ".signature.p7s",
  6029. "lib/net472/SixLabors.ImageSharp.dll",
  6030. "lib/net472/SixLabors.ImageSharp.xml",
  6031. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  6032. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  6033. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  6034. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  6035. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  6036. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  6037. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  6038. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  6039. "sixlabors.imagesharp.128.png",
  6040. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  6041. "sixlabors.imagesharp.nuspec"
  6042. ]
  6043. },
  6044. "SSH.NET/2020.0.0-beta1": {
  6045. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  6046. "type": "package",
  6047. "path": "ssh.net/2020.0.0-beta1",
  6048. "files": [
  6049. ".nupkg.metadata",
  6050. ".signature.p7s",
  6051. "lib/net35/Renci.SshNet.dll",
  6052. "lib/net35/Renci.SshNet.xml",
  6053. "lib/net40/Renci.SshNet.dll",
  6054. "lib/net40/Renci.SshNet.xml",
  6055. "lib/netstandard1.3/Renci.SshNet.dll",
  6056. "lib/netstandard1.3/Renci.SshNet.xml",
  6057. "lib/netstandard2.0/Renci.SshNet.dll",
  6058. "lib/netstandard2.0/Renci.SshNet.xml",
  6059. "lib/sl4/Renci.SshNet.dll",
  6060. "lib/sl4/Renci.SshNet.xml",
  6061. "lib/sl5/Renci.SshNet.dll",
  6062. "lib/sl5/Renci.SshNet.xml",
  6063. "lib/uap10/Renci.SshNet.dll",
  6064. "lib/uap10/Renci.SshNet.xml",
  6065. "lib/wp71/Renci.SshNet.dll",
  6066. "lib/wp71/Renci.SshNet.xml",
  6067. "lib/wp8/Renci.SshNet.dll",
  6068. "lib/wp8/Renci.SshNet.xml",
  6069. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  6070. "ssh.net.nuspec"
  6071. ]
  6072. },
  6073. "SshNet.Security.Cryptography/1.3.0": {
  6074. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  6075. "type": "package",
  6076. "path": "sshnet.security.cryptography/1.3.0",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "lib/net20/SshNet.Security.Cryptography.dll",
  6081. "lib/net20/SshNet.Security.Cryptography.xml",
  6082. "lib/net40/SshNet.Security.Cryptography.dll",
  6083. "lib/net40/SshNet.Security.Cryptography.xml",
  6084. "lib/net45/SshNet.Security.Cryptography.dll",
  6085. "lib/net45/SshNet.Security.Cryptography.xml",
  6086. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  6087. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  6088. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  6089. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  6090. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  6091. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  6092. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  6093. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  6094. "lib/sl4/SshNet.Security.Cryptography.dll",
  6095. "lib/sl4/SshNet.Security.Cryptography.xml",
  6096. "lib/sl5/SshNet.Security.Cryptography.dll",
  6097. "lib/sl5/SshNet.Security.Cryptography.xml",
  6098. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  6099. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  6100. "lib/wp71/SshNet.Security.Cryptography.dll",
  6101. "lib/wp71/SshNet.Security.Cryptography.xml",
  6102. "lib/wp8/SshNet.Security.Cryptography.dll",
  6103. "lib/wp8/SshNet.Security.Cryptography.xml",
  6104. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  6105. "sshnet.security.cryptography.nuspec"
  6106. ]
  6107. },
  6108. "StackExchange.Redis/1.2.4": {
  6109. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  6110. "type": "package",
  6111. "path": "stackexchange.redis/1.2.4",
  6112. "files": [
  6113. ".nupkg.metadata",
  6114. ".signature.p7s",
  6115. "lib/net45/StackExchange.Redis.dll",
  6116. "lib/net45/StackExchange.Redis.xml",
  6117. "lib/net46/StackExchange.Redis.dll",
  6118. "lib/net46/StackExchange.Redis.xml",
  6119. "lib/netstandard1.5/StackExchange.Redis.dll",
  6120. "lib/netstandard1.5/StackExchange.Redis.xml",
  6121. "stackexchange.redis.1.2.4.nupkg.sha512",
  6122. "stackexchange.redis.nuspec"
  6123. ]
  6124. },
  6125. "System.AppContext/4.3.0": {
  6126. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6127. "type": "package",
  6128. "path": "system.appcontext/4.3.0",
  6129. "files": [
  6130. ".nupkg.metadata",
  6131. ".signature.p7s",
  6132. "ThirdPartyNotices.txt",
  6133. "dotnet_library_license.txt",
  6134. "lib/MonoAndroid10/_._",
  6135. "lib/MonoTouch10/_._",
  6136. "lib/net46/System.AppContext.dll",
  6137. "lib/net463/System.AppContext.dll",
  6138. "lib/netcore50/System.AppContext.dll",
  6139. "lib/netstandard1.6/System.AppContext.dll",
  6140. "lib/xamarinios10/_._",
  6141. "lib/xamarinmac20/_._",
  6142. "lib/xamarintvos10/_._",
  6143. "lib/xamarinwatchos10/_._",
  6144. "ref/MonoAndroid10/_._",
  6145. "ref/MonoTouch10/_._",
  6146. "ref/net46/System.AppContext.dll",
  6147. "ref/net463/System.AppContext.dll",
  6148. "ref/netstandard/_._",
  6149. "ref/netstandard1.3/System.AppContext.dll",
  6150. "ref/netstandard1.3/System.AppContext.xml",
  6151. "ref/netstandard1.3/de/System.AppContext.xml",
  6152. "ref/netstandard1.3/es/System.AppContext.xml",
  6153. "ref/netstandard1.3/fr/System.AppContext.xml",
  6154. "ref/netstandard1.3/it/System.AppContext.xml",
  6155. "ref/netstandard1.3/ja/System.AppContext.xml",
  6156. "ref/netstandard1.3/ko/System.AppContext.xml",
  6157. "ref/netstandard1.3/ru/System.AppContext.xml",
  6158. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6159. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6160. "ref/netstandard1.6/System.AppContext.dll",
  6161. "ref/netstandard1.6/System.AppContext.xml",
  6162. "ref/netstandard1.6/de/System.AppContext.xml",
  6163. "ref/netstandard1.6/es/System.AppContext.xml",
  6164. "ref/netstandard1.6/fr/System.AppContext.xml",
  6165. "ref/netstandard1.6/it/System.AppContext.xml",
  6166. "ref/netstandard1.6/ja/System.AppContext.xml",
  6167. "ref/netstandard1.6/ko/System.AppContext.xml",
  6168. "ref/netstandard1.6/ru/System.AppContext.xml",
  6169. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6170. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6171. "ref/xamarinios10/_._",
  6172. "ref/xamarinmac20/_._",
  6173. "ref/xamarintvos10/_._",
  6174. "ref/xamarinwatchos10/_._",
  6175. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6176. "system.appcontext.4.3.0.nupkg.sha512",
  6177. "system.appcontext.nuspec"
  6178. ]
  6179. },
  6180. "System.Buffers/4.5.1": {
  6181. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6182. "type": "package",
  6183. "path": "system.buffers/4.5.1",
  6184. "files": [
  6185. ".nupkg.metadata",
  6186. ".signature.p7s",
  6187. "LICENSE.TXT",
  6188. "THIRD-PARTY-NOTICES.TXT",
  6189. "lib/net461/System.Buffers.dll",
  6190. "lib/net461/System.Buffers.xml",
  6191. "lib/netcoreapp2.0/_._",
  6192. "lib/netstandard1.1/System.Buffers.dll",
  6193. "lib/netstandard1.1/System.Buffers.xml",
  6194. "lib/netstandard2.0/System.Buffers.dll",
  6195. "lib/netstandard2.0/System.Buffers.xml",
  6196. "lib/uap10.0.16299/_._",
  6197. "ref/net45/System.Buffers.dll",
  6198. "ref/net45/System.Buffers.xml",
  6199. "ref/netcoreapp2.0/_._",
  6200. "ref/netstandard1.1/System.Buffers.dll",
  6201. "ref/netstandard1.1/System.Buffers.xml",
  6202. "ref/netstandard2.0/System.Buffers.dll",
  6203. "ref/netstandard2.0/System.Buffers.xml",
  6204. "ref/uap10.0.16299/_._",
  6205. "system.buffers.4.5.1.nupkg.sha512",
  6206. "system.buffers.nuspec",
  6207. "useSharedDesignerContext.txt",
  6208. "version.txt"
  6209. ]
  6210. },
  6211. "System.Collections/4.3.0": {
  6212. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6213. "type": "package",
  6214. "path": "system.collections/4.3.0",
  6215. "files": [
  6216. ".nupkg.metadata",
  6217. ".signature.p7s",
  6218. "ThirdPartyNotices.txt",
  6219. "dotnet_library_license.txt",
  6220. "lib/MonoAndroid10/_._",
  6221. "lib/MonoTouch10/_._",
  6222. "lib/net45/_._",
  6223. "lib/portable-net45+win8+wp8+wpa81/_._",
  6224. "lib/win8/_._",
  6225. "lib/wp80/_._",
  6226. "lib/wpa81/_._",
  6227. "lib/xamarinios10/_._",
  6228. "lib/xamarinmac20/_._",
  6229. "lib/xamarintvos10/_._",
  6230. "lib/xamarinwatchos10/_._",
  6231. "ref/MonoAndroid10/_._",
  6232. "ref/MonoTouch10/_._",
  6233. "ref/net45/_._",
  6234. "ref/netcore50/System.Collections.dll",
  6235. "ref/netcore50/System.Collections.xml",
  6236. "ref/netcore50/de/System.Collections.xml",
  6237. "ref/netcore50/es/System.Collections.xml",
  6238. "ref/netcore50/fr/System.Collections.xml",
  6239. "ref/netcore50/it/System.Collections.xml",
  6240. "ref/netcore50/ja/System.Collections.xml",
  6241. "ref/netcore50/ko/System.Collections.xml",
  6242. "ref/netcore50/ru/System.Collections.xml",
  6243. "ref/netcore50/zh-hans/System.Collections.xml",
  6244. "ref/netcore50/zh-hant/System.Collections.xml",
  6245. "ref/netstandard1.0/System.Collections.dll",
  6246. "ref/netstandard1.0/System.Collections.xml",
  6247. "ref/netstandard1.0/de/System.Collections.xml",
  6248. "ref/netstandard1.0/es/System.Collections.xml",
  6249. "ref/netstandard1.0/fr/System.Collections.xml",
  6250. "ref/netstandard1.0/it/System.Collections.xml",
  6251. "ref/netstandard1.0/ja/System.Collections.xml",
  6252. "ref/netstandard1.0/ko/System.Collections.xml",
  6253. "ref/netstandard1.0/ru/System.Collections.xml",
  6254. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6255. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6256. "ref/netstandard1.3/System.Collections.dll",
  6257. "ref/netstandard1.3/System.Collections.xml",
  6258. "ref/netstandard1.3/de/System.Collections.xml",
  6259. "ref/netstandard1.3/es/System.Collections.xml",
  6260. "ref/netstandard1.3/fr/System.Collections.xml",
  6261. "ref/netstandard1.3/it/System.Collections.xml",
  6262. "ref/netstandard1.3/ja/System.Collections.xml",
  6263. "ref/netstandard1.3/ko/System.Collections.xml",
  6264. "ref/netstandard1.3/ru/System.Collections.xml",
  6265. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6266. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6267. "ref/portable-net45+win8+wp8+wpa81/_._",
  6268. "ref/win8/_._",
  6269. "ref/wp80/_._",
  6270. "ref/wpa81/_._",
  6271. "ref/xamarinios10/_._",
  6272. "ref/xamarinmac20/_._",
  6273. "ref/xamarintvos10/_._",
  6274. "ref/xamarinwatchos10/_._",
  6275. "system.collections.4.3.0.nupkg.sha512",
  6276. "system.collections.nuspec"
  6277. ]
  6278. },
  6279. "System.Collections.Concurrent/4.3.0": {
  6280. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6281. "type": "package",
  6282. "path": "system.collections.concurrent/4.3.0",
  6283. "files": [
  6284. ".nupkg.metadata",
  6285. ".signature.p7s",
  6286. "ThirdPartyNotices.txt",
  6287. "dotnet_library_license.txt",
  6288. "lib/MonoAndroid10/_._",
  6289. "lib/MonoTouch10/_._",
  6290. "lib/net45/_._",
  6291. "lib/netcore50/System.Collections.Concurrent.dll",
  6292. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6293. "lib/portable-net45+win8+wpa81/_._",
  6294. "lib/win8/_._",
  6295. "lib/wpa81/_._",
  6296. "lib/xamarinios10/_._",
  6297. "lib/xamarinmac20/_._",
  6298. "lib/xamarintvos10/_._",
  6299. "lib/xamarinwatchos10/_._",
  6300. "ref/MonoAndroid10/_._",
  6301. "ref/MonoTouch10/_._",
  6302. "ref/net45/_._",
  6303. "ref/netcore50/System.Collections.Concurrent.dll",
  6304. "ref/netcore50/System.Collections.Concurrent.xml",
  6305. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6306. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6307. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6308. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6309. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6310. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6311. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6312. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6313. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6314. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6315. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6316. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6317. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6318. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6319. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6320. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6321. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6322. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6323. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6324. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6325. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6326. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6327. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6328. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6329. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6330. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6331. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6332. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6333. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6334. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6335. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6336. "ref/portable-net45+win8+wpa81/_._",
  6337. "ref/win8/_._",
  6338. "ref/wpa81/_._",
  6339. "ref/xamarinios10/_._",
  6340. "ref/xamarinmac20/_._",
  6341. "ref/xamarintvos10/_._",
  6342. "ref/xamarinwatchos10/_._",
  6343. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6344. "system.collections.concurrent.nuspec"
  6345. ]
  6346. },
  6347. "System.Collections.Immutable/5.0.0": {
  6348. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6349. "type": "package",
  6350. "path": "system.collections.immutable/5.0.0",
  6351. "files": [
  6352. ".nupkg.metadata",
  6353. ".signature.p7s",
  6354. "Icon.png",
  6355. "LICENSE.TXT",
  6356. "THIRD-PARTY-NOTICES.TXT",
  6357. "lib/net461/System.Collections.Immutable.dll",
  6358. "lib/net461/System.Collections.Immutable.xml",
  6359. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6360. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6361. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6362. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6363. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6364. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6365. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6366. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6367. "system.collections.immutable.5.0.0.nupkg.sha512",
  6368. "system.collections.immutable.nuspec",
  6369. "useSharedDesignerContext.txt",
  6370. "version.txt"
  6371. ]
  6372. },
  6373. "System.Collections.NonGeneric/4.3.0": {
  6374. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6375. "type": "package",
  6376. "path": "system.collections.nongeneric/4.3.0",
  6377. "files": [
  6378. ".nupkg.metadata",
  6379. ".signature.p7s",
  6380. "ThirdPartyNotices.txt",
  6381. "dotnet_library_license.txt",
  6382. "lib/MonoAndroid10/_._",
  6383. "lib/MonoTouch10/_._",
  6384. "lib/net46/System.Collections.NonGeneric.dll",
  6385. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6386. "lib/xamarinios10/_._",
  6387. "lib/xamarinmac20/_._",
  6388. "lib/xamarintvos10/_._",
  6389. "lib/xamarinwatchos10/_._",
  6390. "ref/MonoAndroid10/_._",
  6391. "ref/MonoTouch10/_._",
  6392. "ref/net46/System.Collections.NonGeneric.dll",
  6393. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6394. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6395. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6396. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6397. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6398. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6399. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6400. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6401. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6402. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6403. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6404. "ref/xamarinios10/_._",
  6405. "ref/xamarinmac20/_._",
  6406. "ref/xamarintvos10/_._",
  6407. "ref/xamarinwatchos10/_._",
  6408. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6409. "system.collections.nongeneric.nuspec"
  6410. ]
  6411. },
  6412. "System.Collections.Specialized/4.3.0": {
  6413. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6414. "type": "package",
  6415. "path": "system.collections.specialized/4.3.0",
  6416. "files": [
  6417. ".nupkg.metadata",
  6418. ".signature.p7s",
  6419. "ThirdPartyNotices.txt",
  6420. "dotnet_library_license.txt",
  6421. "lib/MonoAndroid10/_._",
  6422. "lib/MonoTouch10/_._",
  6423. "lib/net46/System.Collections.Specialized.dll",
  6424. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6425. "lib/xamarinios10/_._",
  6426. "lib/xamarinmac20/_._",
  6427. "lib/xamarintvos10/_._",
  6428. "lib/xamarinwatchos10/_._",
  6429. "ref/MonoAndroid10/_._",
  6430. "ref/MonoTouch10/_._",
  6431. "ref/net46/System.Collections.Specialized.dll",
  6432. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6433. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6434. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6435. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6436. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6437. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6438. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6439. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6440. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6441. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6442. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6443. "ref/xamarinios10/_._",
  6444. "ref/xamarinmac20/_._",
  6445. "ref/xamarintvos10/_._",
  6446. "ref/xamarinwatchos10/_._",
  6447. "system.collections.specialized.4.3.0.nupkg.sha512",
  6448. "system.collections.specialized.nuspec"
  6449. ]
  6450. },
  6451. "System.ComponentModel/4.3.0": {
  6452. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6453. "type": "package",
  6454. "path": "system.componentmodel/4.3.0",
  6455. "files": [
  6456. ".nupkg.metadata",
  6457. ".signature.p7s",
  6458. "ThirdPartyNotices.txt",
  6459. "dotnet_library_license.txt",
  6460. "lib/MonoAndroid10/_._",
  6461. "lib/MonoTouch10/_._",
  6462. "lib/net45/_._",
  6463. "lib/netcore50/System.ComponentModel.dll",
  6464. "lib/netstandard1.3/System.ComponentModel.dll",
  6465. "lib/portable-net45+win8+wp8+wpa81/_._",
  6466. "lib/win8/_._",
  6467. "lib/wp80/_._",
  6468. "lib/wpa81/_._",
  6469. "lib/xamarinios10/_._",
  6470. "lib/xamarinmac20/_._",
  6471. "lib/xamarintvos10/_._",
  6472. "lib/xamarinwatchos10/_._",
  6473. "ref/MonoAndroid10/_._",
  6474. "ref/MonoTouch10/_._",
  6475. "ref/net45/_._",
  6476. "ref/netcore50/System.ComponentModel.dll",
  6477. "ref/netcore50/System.ComponentModel.xml",
  6478. "ref/netcore50/de/System.ComponentModel.xml",
  6479. "ref/netcore50/es/System.ComponentModel.xml",
  6480. "ref/netcore50/fr/System.ComponentModel.xml",
  6481. "ref/netcore50/it/System.ComponentModel.xml",
  6482. "ref/netcore50/ja/System.ComponentModel.xml",
  6483. "ref/netcore50/ko/System.ComponentModel.xml",
  6484. "ref/netcore50/ru/System.ComponentModel.xml",
  6485. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6486. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6487. "ref/netstandard1.0/System.ComponentModel.dll",
  6488. "ref/netstandard1.0/System.ComponentModel.xml",
  6489. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6490. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6491. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6492. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6493. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6494. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6495. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6496. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6497. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6498. "ref/portable-net45+win8+wp8+wpa81/_._",
  6499. "ref/win8/_._",
  6500. "ref/wp80/_._",
  6501. "ref/wpa81/_._",
  6502. "ref/xamarinios10/_._",
  6503. "ref/xamarinmac20/_._",
  6504. "ref/xamarintvos10/_._",
  6505. "ref/xamarinwatchos10/_._",
  6506. "system.componentmodel.4.3.0.nupkg.sha512",
  6507. "system.componentmodel.nuspec"
  6508. ]
  6509. },
  6510. "System.ComponentModel.Annotations/5.0.0": {
  6511. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6512. "type": "package",
  6513. "path": "system.componentmodel.annotations/5.0.0",
  6514. "files": [
  6515. ".nupkg.metadata",
  6516. ".signature.p7s",
  6517. "Icon.png",
  6518. "LICENSE.TXT",
  6519. "THIRD-PARTY-NOTICES.TXT",
  6520. "lib/MonoAndroid10/_._",
  6521. "lib/MonoTouch10/_._",
  6522. "lib/net45/_._",
  6523. "lib/net461/System.ComponentModel.Annotations.dll",
  6524. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6525. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6526. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6527. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6528. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6529. "lib/portable-net45+win8/_._",
  6530. "lib/win8/_._",
  6531. "lib/xamarinios10/_._",
  6532. "lib/xamarinmac20/_._",
  6533. "lib/xamarintvos10/_._",
  6534. "lib/xamarinwatchos10/_._",
  6535. "ref/MonoAndroid10/_._",
  6536. "ref/MonoTouch10/_._",
  6537. "ref/net45/_._",
  6538. "ref/net461/System.ComponentModel.Annotations.dll",
  6539. "ref/net461/System.ComponentModel.Annotations.xml",
  6540. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6541. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6542. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6543. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6544. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6545. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6546. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6547. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6548. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6549. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6550. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6551. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6552. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6553. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6554. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6555. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6556. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6557. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6558. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6559. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6560. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6561. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6562. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6563. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6564. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6565. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6566. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6567. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6568. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6569. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6570. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6571. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6572. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6573. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6574. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6575. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6576. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6577. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6578. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6579. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6580. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6581. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6582. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6583. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6584. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6585. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6586. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6587. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6588. "ref/portable-net45+win8/_._",
  6589. "ref/win8/_._",
  6590. "ref/xamarinios10/_._",
  6591. "ref/xamarinmac20/_._",
  6592. "ref/xamarintvos10/_._",
  6593. "ref/xamarinwatchos10/_._",
  6594. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6595. "system.componentmodel.annotations.nuspec",
  6596. "useSharedDesignerContext.txt",
  6597. "version.txt"
  6598. ]
  6599. },
  6600. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6601. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6602. "type": "package",
  6603. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6604. "files": [
  6605. ".nupkg.metadata",
  6606. ".signature.p7s",
  6607. "ThirdPartyNotices.txt",
  6608. "dotnet_library_license.txt",
  6609. "lib/MonoAndroid10/_._",
  6610. "lib/MonoTouch10/_._",
  6611. "lib/net45/_._",
  6612. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6613. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6614. "lib/portable-net45+win8+wp8+wpa81/_._",
  6615. "lib/win8/_._",
  6616. "lib/wp80/_._",
  6617. "lib/wpa81/_._",
  6618. "lib/xamarinios10/_._",
  6619. "lib/xamarinmac20/_._",
  6620. "lib/xamarintvos10/_._",
  6621. "lib/xamarinwatchos10/_._",
  6622. "ref/MonoAndroid10/_._",
  6623. "ref/MonoTouch10/_._",
  6624. "ref/net45/_._",
  6625. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6626. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6627. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6628. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6629. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6630. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6631. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6632. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6633. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6634. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6635. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6636. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6637. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6638. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6639. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6640. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6641. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6642. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6643. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6644. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6645. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6646. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6647. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6648. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6649. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6650. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6651. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6652. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6653. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6654. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6655. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6656. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6657. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6658. "ref/portable-net45+win8+wp8+wpa81/_._",
  6659. "ref/win8/_._",
  6660. "ref/wp80/_._",
  6661. "ref/wpa81/_._",
  6662. "ref/xamarinios10/_._",
  6663. "ref/xamarinmac20/_._",
  6664. "ref/xamarintvos10/_._",
  6665. "ref/xamarinwatchos10/_._",
  6666. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6667. "system.componentmodel.eventbasedasync.nuspec"
  6668. ]
  6669. },
  6670. "System.ComponentModel.Primitives/4.3.0": {
  6671. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6672. "type": "package",
  6673. "path": "system.componentmodel.primitives/4.3.0",
  6674. "files": [
  6675. ".nupkg.metadata",
  6676. ".signature.p7s",
  6677. "ThirdPartyNotices.txt",
  6678. "dotnet_library_license.txt",
  6679. "lib/MonoAndroid10/_._",
  6680. "lib/MonoTouch10/_._",
  6681. "lib/net45/System.ComponentModel.Primitives.dll",
  6682. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6683. "lib/xamarinios10/_._",
  6684. "lib/xamarinmac20/_._",
  6685. "lib/xamarintvos10/_._",
  6686. "lib/xamarinwatchos10/_._",
  6687. "ref/MonoAndroid10/_._",
  6688. "ref/MonoTouch10/_._",
  6689. "ref/net45/System.ComponentModel.Primitives.dll",
  6690. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6691. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6692. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6693. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6694. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6695. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6696. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6697. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6698. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6699. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6700. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarinmac20/_._",
  6703. "ref/xamarintvos10/_._",
  6704. "ref/xamarinwatchos10/_._",
  6705. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6706. "system.componentmodel.primitives.nuspec"
  6707. ]
  6708. },
  6709. "System.ComponentModel.TypeConverter/4.3.0": {
  6710. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6711. "type": "package",
  6712. "path": "system.componentmodel.typeconverter/4.3.0",
  6713. "files": [
  6714. ".nupkg.metadata",
  6715. ".signature.p7s",
  6716. "ThirdPartyNotices.txt",
  6717. "dotnet_library_license.txt",
  6718. "lib/MonoAndroid10/_._",
  6719. "lib/MonoTouch10/_._",
  6720. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6721. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6722. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6723. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6731. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6732. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6733. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6734. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6735. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6736. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6737. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6738. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6739. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6740. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6741. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6742. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6743. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6744. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6745. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6746. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6747. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6748. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6749. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6750. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6751. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6752. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6753. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6754. "ref/xamarinios10/_._",
  6755. "ref/xamarinmac20/_._",
  6756. "ref/xamarintvos10/_._",
  6757. "ref/xamarinwatchos10/_._",
  6758. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6759. "system.componentmodel.typeconverter.nuspec"
  6760. ]
  6761. },
  6762. "System.Configuration.ConfigurationManager/4.7.0": {
  6763. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6764. "type": "package",
  6765. "path": "system.configuration.configurationmanager/4.7.0",
  6766. "files": [
  6767. ".nupkg.metadata",
  6768. ".signature.p7s",
  6769. "LICENSE.TXT",
  6770. "THIRD-PARTY-NOTICES.TXT",
  6771. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6772. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6773. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6774. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6775. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6776. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6777. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6778. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6779. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6780. "system.configuration.configurationmanager.nuspec",
  6781. "useSharedDesignerContext.txt",
  6782. "version.txt"
  6783. ]
  6784. },
  6785. "System.Console/4.3.0": {
  6786. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6787. "type": "package",
  6788. "path": "system.console/4.3.0",
  6789. "files": [
  6790. ".nupkg.metadata",
  6791. ".signature.p7s",
  6792. "ThirdPartyNotices.txt",
  6793. "dotnet_library_license.txt",
  6794. "lib/MonoAndroid10/_._",
  6795. "lib/MonoTouch10/_._",
  6796. "lib/net46/System.Console.dll",
  6797. "lib/xamarinios10/_._",
  6798. "lib/xamarinmac20/_._",
  6799. "lib/xamarintvos10/_._",
  6800. "lib/xamarinwatchos10/_._",
  6801. "ref/MonoAndroid10/_._",
  6802. "ref/MonoTouch10/_._",
  6803. "ref/net46/System.Console.dll",
  6804. "ref/netstandard1.3/System.Console.dll",
  6805. "ref/netstandard1.3/System.Console.xml",
  6806. "ref/netstandard1.3/de/System.Console.xml",
  6807. "ref/netstandard1.3/es/System.Console.xml",
  6808. "ref/netstandard1.3/fr/System.Console.xml",
  6809. "ref/netstandard1.3/it/System.Console.xml",
  6810. "ref/netstandard1.3/ja/System.Console.xml",
  6811. "ref/netstandard1.3/ko/System.Console.xml",
  6812. "ref/netstandard1.3/ru/System.Console.xml",
  6813. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6814. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6815. "ref/xamarinios10/_._",
  6816. "ref/xamarinmac20/_._",
  6817. "ref/xamarintvos10/_._",
  6818. "ref/xamarinwatchos10/_._",
  6819. "system.console.4.3.0.nupkg.sha512",
  6820. "system.console.nuspec"
  6821. ]
  6822. },
  6823. "System.Diagnostics.Debug/4.3.0": {
  6824. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6825. "type": "package",
  6826. "path": "system.diagnostics.debug/4.3.0",
  6827. "files": [
  6828. ".nupkg.metadata",
  6829. ".signature.p7s",
  6830. "ThirdPartyNotices.txt",
  6831. "dotnet_library_license.txt",
  6832. "lib/MonoAndroid10/_._",
  6833. "lib/MonoTouch10/_._",
  6834. "lib/net45/_._",
  6835. "lib/portable-net45+win8+wp8+wpa81/_._",
  6836. "lib/win8/_._",
  6837. "lib/wp80/_._",
  6838. "lib/wpa81/_._",
  6839. "lib/xamarinios10/_._",
  6840. "lib/xamarinmac20/_._",
  6841. "lib/xamarintvos10/_._",
  6842. "lib/xamarinwatchos10/_._",
  6843. "ref/MonoAndroid10/_._",
  6844. "ref/MonoTouch10/_._",
  6845. "ref/net45/_._",
  6846. "ref/netcore50/System.Diagnostics.Debug.dll",
  6847. "ref/netcore50/System.Diagnostics.Debug.xml",
  6848. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6849. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6850. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6851. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6852. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6853. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6854. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6855. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6856. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6857. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6858. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6859. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6860. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6861. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6862. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6863. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6864. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6865. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6866. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6867. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6868. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6869. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6870. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6871. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6872. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6873. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6874. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6875. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6876. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6877. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6878. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6879. "ref/portable-net45+win8+wp8+wpa81/_._",
  6880. "ref/win8/_._",
  6881. "ref/wp80/_._",
  6882. "ref/wpa81/_._",
  6883. "ref/xamarinios10/_._",
  6884. "ref/xamarinmac20/_._",
  6885. "ref/xamarintvos10/_._",
  6886. "ref/xamarinwatchos10/_._",
  6887. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6888. "system.diagnostics.debug.nuspec"
  6889. ]
  6890. },
  6891. "System.Diagnostics.DiagnosticSource/5.0.0": {
  6892. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  6893. "type": "package",
  6894. "path": "system.diagnostics.diagnosticsource/5.0.0",
  6895. "files": [
  6896. ".nupkg.metadata",
  6897. ".signature.p7s",
  6898. "Icon.png",
  6899. "LICENSE.TXT",
  6900. "THIRD-PARTY-NOTICES.TXT",
  6901. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6902. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6903. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6904. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6905. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6906. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6907. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6908. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6909. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6910. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6911. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6912. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6913. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  6914. "system.diagnostics.diagnosticsource.nuspec",
  6915. "useSharedDesignerContext.txt",
  6916. "version.txt"
  6917. ]
  6918. },
  6919. "System.Diagnostics.Tools/4.3.0": {
  6920. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6921. "type": "package",
  6922. "path": "system.diagnostics.tools/4.3.0",
  6923. "files": [
  6924. ".nupkg.metadata",
  6925. ".signature.p7s",
  6926. "ThirdPartyNotices.txt",
  6927. "dotnet_library_license.txt",
  6928. "lib/MonoAndroid10/_._",
  6929. "lib/MonoTouch10/_._",
  6930. "lib/net45/_._",
  6931. "lib/portable-net45+win8+wp8+wpa81/_._",
  6932. "lib/win8/_._",
  6933. "lib/wp80/_._",
  6934. "lib/wpa81/_._",
  6935. "lib/xamarinios10/_._",
  6936. "lib/xamarinmac20/_._",
  6937. "lib/xamarintvos10/_._",
  6938. "lib/xamarinwatchos10/_._",
  6939. "ref/MonoAndroid10/_._",
  6940. "ref/MonoTouch10/_._",
  6941. "ref/net45/_._",
  6942. "ref/netcore50/System.Diagnostics.Tools.dll",
  6943. "ref/netcore50/System.Diagnostics.Tools.xml",
  6944. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6945. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6946. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6947. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6948. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6949. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6950. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6951. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6952. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6953. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6954. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6955. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6956. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6957. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6958. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6959. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6960. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6961. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6962. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6963. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6964. "ref/portable-net45+win8+wp8+wpa81/_._",
  6965. "ref/win8/_._",
  6966. "ref/wp80/_._",
  6967. "ref/wpa81/_._",
  6968. "ref/xamarinios10/_._",
  6969. "ref/xamarinmac20/_._",
  6970. "ref/xamarintvos10/_._",
  6971. "ref/xamarinwatchos10/_._",
  6972. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6973. "system.diagnostics.tools.nuspec"
  6974. ]
  6975. },
  6976. "System.Diagnostics.TraceSource/4.3.0": {
  6977. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6978. "type": "package",
  6979. "path": "system.diagnostics.tracesource/4.3.0",
  6980. "files": [
  6981. ".nupkg.metadata",
  6982. ".signature.p7s",
  6983. "ThirdPartyNotices.txt",
  6984. "dotnet_library_license.txt",
  6985. "lib/MonoAndroid10/_._",
  6986. "lib/MonoTouch10/_._",
  6987. "lib/net46/System.Diagnostics.TraceSource.dll",
  6988. "lib/xamarinios10/_._",
  6989. "lib/xamarinmac20/_._",
  6990. "lib/xamarintvos10/_._",
  6991. "lib/xamarinwatchos10/_._",
  6992. "ref/MonoAndroid10/_._",
  6993. "ref/MonoTouch10/_._",
  6994. "ref/net46/System.Diagnostics.TraceSource.dll",
  6995. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6996. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6997. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6998. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6999. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  7000. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  7001. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  7002. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  7003. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  7004. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  7005. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  7006. "ref/xamarinios10/_._",
  7007. "ref/xamarinmac20/_._",
  7008. "ref/xamarintvos10/_._",
  7009. "ref/xamarinwatchos10/_._",
  7010. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7011. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  7012. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7013. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  7014. "system.diagnostics.tracesource.nuspec"
  7015. ]
  7016. },
  7017. "System.Diagnostics.Tracing/4.3.0": {
  7018. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  7019. "type": "package",
  7020. "path": "system.diagnostics.tracing/4.3.0",
  7021. "files": [
  7022. ".nupkg.metadata",
  7023. ".signature.p7s",
  7024. "ThirdPartyNotices.txt",
  7025. "dotnet_library_license.txt",
  7026. "lib/MonoAndroid10/_._",
  7027. "lib/MonoTouch10/_._",
  7028. "lib/net45/_._",
  7029. "lib/net462/System.Diagnostics.Tracing.dll",
  7030. "lib/portable-net45+win8+wpa81/_._",
  7031. "lib/win8/_._",
  7032. "lib/wpa81/_._",
  7033. "lib/xamarinios10/_._",
  7034. "lib/xamarinmac20/_._",
  7035. "lib/xamarintvos10/_._",
  7036. "lib/xamarinwatchos10/_._",
  7037. "ref/MonoAndroid10/_._",
  7038. "ref/MonoTouch10/_._",
  7039. "ref/net45/_._",
  7040. "ref/net462/System.Diagnostics.Tracing.dll",
  7041. "ref/netcore50/System.Diagnostics.Tracing.dll",
  7042. "ref/netcore50/System.Diagnostics.Tracing.xml",
  7043. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  7044. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  7045. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  7046. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  7047. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  7048. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  7049. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  7050. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  7051. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  7052. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  7053. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  7054. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  7055. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  7056. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  7057. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  7058. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  7059. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  7060. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  7061. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  7062. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  7063. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  7064. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  7065. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  7066. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  7067. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  7068. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  7069. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  7070. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  7071. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  7072. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  7073. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  7074. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  7075. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  7076. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  7077. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  7078. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  7079. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  7080. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  7081. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  7082. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  7083. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  7084. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  7085. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  7086. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  7087. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  7088. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  7089. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  7090. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  7091. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  7092. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  7093. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  7094. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  7095. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  7096. "ref/portable-net45+win8+wpa81/_._",
  7097. "ref/win8/_._",
  7098. "ref/wpa81/_._",
  7099. "ref/xamarinios10/_._",
  7100. "ref/xamarinmac20/_._",
  7101. "ref/xamarintvos10/_._",
  7102. "ref/xamarinwatchos10/_._",
  7103. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  7104. "system.diagnostics.tracing.nuspec"
  7105. ]
  7106. },
  7107. "System.Drawing.Common/5.0.3": {
  7108. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  7109. "type": "package",
  7110. "path": "system.drawing.common/5.0.3",
  7111. "files": [
  7112. ".nupkg.metadata",
  7113. ".signature.p7s",
  7114. "Icon.png",
  7115. "LICENSE.TXT",
  7116. "THIRD-PARTY-NOTICES.TXT",
  7117. "lib/MonoAndroid10/_._",
  7118. "lib/MonoTouch10/_._",
  7119. "lib/net461/System.Drawing.Common.dll",
  7120. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  7121. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  7122. "lib/netstandard2.0/System.Drawing.Common.dll",
  7123. "lib/xamarinios10/_._",
  7124. "lib/xamarinmac20/_._",
  7125. "lib/xamarintvos10/_._",
  7126. "lib/xamarinwatchos10/_._",
  7127. "ref/MonoAndroid10/_._",
  7128. "ref/MonoTouch10/_._",
  7129. "ref/net461/System.Drawing.Common.dll",
  7130. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  7131. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  7132. "ref/netstandard2.0/System.Drawing.Common.dll",
  7133. "ref/xamarinios10/_._",
  7134. "ref/xamarinmac20/_._",
  7135. "ref/xamarintvos10/_._",
  7136. "ref/xamarinwatchos10/_._",
  7137. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7138. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7139. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7140. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7141. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7142. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7143. "system.drawing.common.5.0.3.nupkg.sha512",
  7144. "system.drawing.common.nuspec",
  7145. "useSharedDesignerContext.txt",
  7146. "version.txt"
  7147. ]
  7148. },
  7149. "System.Dynamic.Runtime/4.3.0": {
  7150. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  7151. "type": "package",
  7152. "path": "system.dynamic.runtime/4.3.0",
  7153. "files": [
  7154. ".nupkg.metadata",
  7155. ".signature.p7s",
  7156. "ThirdPartyNotices.txt",
  7157. "dotnet_library_license.txt",
  7158. "lib/MonoAndroid10/_._",
  7159. "lib/MonoTouch10/_._",
  7160. "lib/net45/_._",
  7161. "lib/netcore50/System.Dynamic.Runtime.dll",
  7162. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7163. "lib/portable-net45+win8+wp8+wpa81/_._",
  7164. "lib/win8/_._",
  7165. "lib/wp80/_._",
  7166. "lib/wpa81/_._",
  7167. "lib/xamarinios10/_._",
  7168. "lib/xamarinmac20/_._",
  7169. "lib/xamarintvos10/_._",
  7170. "lib/xamarinwatchos10/_._",
  7171. "ref/MonoAndroid10/_._",
  7172. "ref/MonoTouch10/_._",
  7173. "ref/net45/_._",
  7174. "ref/netcore50/System.Dynamic.Runtime.dll",
  7175. "ref/netcore50/System.Dynamic.Runtime.xml",
  7176. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7177. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7178. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7179. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7180. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7181. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7182. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7183. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7184. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7185. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7186. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7187. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7188. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7189. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7190. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7191. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7192. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7193. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7194. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7195. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7196. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7197. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7198. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7199. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7200. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7201. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7202. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7203. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7204. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7205. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7206. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7207. "ref/portable-net45+win8+wp8+wpa81/_._",
  7208. "ref/win8/_._",
  7209. "ref/wp80/_._",
  7210. "ref/wpa81/_._",
  7211. "ref/xamarinios10/_._",
  7212. "ref/xamarinmac20/_._",
  7213. "ref/xamarintvos10/_._",
  7214. "ref/xamarinwatchos10/_._",
  7215. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7216. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7217. "system.dynamic.runtime.nuspec"
  7218. ]
  7219. },
  7220. "System.Globalization/4.3.0": {
  7221. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7222. "type": "package",
  7223. "path": "system.globalization/4.3.0",
  7224. "files": [
  7225. ".nupkg.metadata",
  7226. ".signature.p7s",
  7227. "ThirdPartyNotices.txt",
  7228. "dotnet_library_license.txt",
  7229. "lib/MonoAndroid10/_._",
  7230. "lib/MonoTouch10/_._",
  7231. "lib/net45/_._",
  7232. "lib/portable-net45+win8+wp8+wpa81/_._",
  7233. "lib/win8/_._",
  7234. "lib/wp80/_._",
  7235. "lib/wpa81/_._",
  7236. "lib/xamarinios10/_._",
  7237. "lib/xamarinmac20/_._",
  7238. "lib/xamarintvos10/_._",
  7239. "lib/xamarinwatchos10/_._",
  7240. "ref/MonoAndroid10/_._",
  7241. "ref/MonoTouch10/_._",
  7242. "ref/net45/_._",
  7243. "ref/netcore50/System.Globalization.dll",
  7244. "ref/netcore50/System.Globalization.xml",
  7245. "ref/netcore50/de/System.Globalization.xml",
  7246. "ref/netcore50/es/System.Globalization.xml",
  7247. "ref/netcore50/fr/System.Globalization.xml",
  7248. "ref/netcore50/it/System.Globalization.xml",
  7249. "ref/netcore50/ja/System.Globalization.xml",
  7250. "ref/netcore50/ko/System.Globalization.xml",
  7251. "ref/netcore50/ru/System.Globalization.xml",
  7252. "ref/netcore50/zh-hans/System.Globalization.xml",
  7253. "ref/netcore50/zh-hant/System.Globalization.xml",
  7254. "ref/netstandard1.0/System.Globalization.dll",
  7255. "ref/netstandard1.0/System.Globalization.xml",
  7256. "ref/netstandard1.0/de/System.Globalization.xml",
  7257. "ref/netstandard1.0/es/System.Globalization.xml",
  7258. "ref/netstandard1.0/fr/System.Globalization.xml",
  7259. "ref/netstandard1.0/it/System.Globalization.xml",
  7260. "ref/netstandard1.0/ja/System.Globalization.xml",
  7261. "ref/netstandard1.0/ko/System.Globalization.xml",
  7262. "ref/netstandard1.0/ru/System.Globalization.xml",
  7263. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7264. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7265. "ref/netstandard1.3/System.Globalization.dll",
  7266. "ref/netstandard1.3/System.Globalization.xml",
  7267. "ref/netstandard1.3/de/System.Globalization.xml",
  7268. "ref/netstandard1.3/es/System.Globalization.xml",
  7269. "ref/netstandard1.3/fr/System.Globalization.xml",
  7270. "ref/netstandard1.3/it/System.Globalization.xml",
  7271. "ref/netstandard1.3/ja/System.Globalization.xml",
  7272. "ref/netstandard1.3/ko/System.Globalization.xml",
  7273. "ref/netstandard1.3/ru/System.Globalization.xml",
  7274. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7275. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7276. "ref/portable-net45+win8+wp8+wpa81/_._",
  7277. "ref/win8/_._",
  7278. "ref/wp80/_._",
  7279. "ref/wpa81/_._",
  7280. "ref/xamarinios10/_._",
  7281. "ref/xamarinmac20/_._",
  7282. "ref/xamarintvos10/_._",
  7283. "ref/xamarinwatchos10/_._",
  7284. "system.globalization.4.3.0.nupkg.sha512",
  7285. "system.globalization.nuspec"
  7286. ]
  7287. },
  7288. "System.Globalization.Calendars/4.3.0": {
  7289. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7290. "type": "package",
  7291. "path": "system.globalization.calendars/4.3.0",
  7292. "files": [
  7293. ".nupkg.metadata",
  7294. ".signature.p7s",
  7295. "ThirdPartyNotices.txt",
  7296. "dotnet_library_license.txt",
  7297. "lib/MonoAndroid10/_._",
  7298. "lib/MonoTouch10/_._",
  7299. "lib/net46/System.Globalization.Calendars.dll",
  7300. "lib/xamarinios10/_._",
  7301. "lib/xamarinmac20/_._",
  7302. "lib/xamarintvos10/_._",
  7303. "lib/xamarinwatchos10/_._",
  7304. "ref/MonoAndroid10/_._",
  7305. "ref/MonoTouch10/_._",
  7306. "ref/net46/System.Globalization.Calendars.dll",
  7307. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7308. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7309. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7310. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7311. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7312. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7313. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7314. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7315. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7316. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7317. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7318. "ref/xamarinios10/_._",
  7319. "ref/xamarinmac20/_._",
  7320. "ref/xamarintvos10/_._",
  7321. "ref/xamarinwatchos10/_._",
  7322. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7323. "system.globalization.calendars.nuspec"
  7324. ]
  7325. },
  7326. "System.Globalization.Extensions/4.3.0": {
  7327. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7328. "type": "package",
  7329. "path": "system.globalization.extensions/4.3.0",
  7330. "files": [
  7331. ".nupkg.metadata",
  7332. ".signature.p7s",
  7333. "ThirdPartyNotices.txt",
  7334. "dotnet_library_license.txt",
  7335. "lib/MonoAndroid10/_._",
  7336. "lib/MonoTouch10/_._",
  7337. "lib/net46/System.Globalization.Extensions.dll",
  7338. "lib/xamarinios10/_._",
  7339. "lib/xamarinmac20/_._",
  7340. "lib/xamarintvos10/_._",
  7341. "lib/xamarinwatchos10/_._",
  7342. "ref/MonoAndroid10/_._",
  7343. "ref/MonoTouch10/_._",
  7344. "ref/net46/System.Globalization.Extensions.dll",
  7345. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7346. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7347. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7348. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7349. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7350. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7351. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7352. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7353. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7354. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7355. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7356. "ref/xamarinios10/_._",
  7357. "ref/xamarinmac20/_._",
  7358. "ref/xamarintvos10/_._",
  7359. "ref/xamarinwatchos10/_._",
  7360. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7361. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7362. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7363. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7364. "system.globalization.extensions.nuspec"
  7365. ]
  7366. },
  7367. "System.IO/4.3.0": {
  7368. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7369. "type": "package",
  7370. "path": "system.io/4.3.0",
  7371. "files": [
  7372. ".nupkg.metadata",
  7373. ".signature.p7s",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net45/_._",
  7379. "lib/net462/System.IO.dll",
  7380. "lib/portable-net45+win8+wp8+wpa81/_._",
  7381. "lib/win8/_._",
  7382. "lib/wp80/_._",
  7383. "lib/wpa81/_._",
  7384. "lib/xamarinios10/_._",
  7385. "lib/xamarinmac20/_._",
  7386. "lib/xamarintvos10/_._",
  7387. "lib/xamarinwatchos10/_._",
  7388. "ref/MonoAndroid10/_._",
  7389. "ref/MonoTouch10/_._",
  7390. "ref/net45/_._",
  7391. "ref/net462/System.IO.dll",
  7392. "ref/netcore50/System.IO.dll",
  7393. "ref/netcore50/System.IO.xml",
  7394. "ref/netcore50/de/System.IO.xml",
  7395. "ref/netcore50/es/System.IO.xml",
  7396. "ref/netcore50/fr/System.IO.xml",
  7397. "ref/netcore50/it/System.IO.xml",
  7398. "ref/netcore50/ja/System.IO.xml",
  7399. "ref/netcore50/ko/System.IO.xml",
  7400. "ref/netcore50/ru/System.IO.xml",
  7401. "ref/netcore50/zh-hans/System.IO.xml",
  7402. "ref/netcore50/zh-hant/System.IO.xml",
  7403. "ref/netstandard1.0/System.IO.dll",
  7404. "ref/netstandard1.0/System.IO.xml",
  7405. "ref/netstandard1.0/de/System.IO.xml",
  7406. "ref/netstandard1.0/es/System.IO.xml",
  7407. "ref/netstandard1.0/fr/System.IO.xml",
  7408. "ref/netstandard1.0/it/System.IO.xml",
  7409. "ref/netstandard1.0/ja/System.IO.xml",
  7410. "ref/netstandard1.0/ko/System.IO.xml",
  7411. "ref/netstandard1.0/ru/System.IO.xml",
  7412. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7413. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7414. "ref/netstandard1.3/System.IO.dll",
  7415. "ref/netstandard1.3/System.IO.xml",
  7416. "ref/netstandard1.3/de/System.IO.xml",
  7417. "ref/netstandard1.3/es/System.IO.xml",
  7418. "ref/netstandard1.3/fr/System.IO.xml",
  7419. "ref/netstandard1.3/it/System.IO.xml",
  7420. "ref/netstandard1.3/ja/System.IO.xml",
  7421. "ref/netstandard1.3/ko/System.IO.xml",
  7422. "ref/netstandard1.3/ru/System.IO.xml",
  7423. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7424. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7425. "ref/netstandard1.5/System.IO.dll",
  7426. "ref/netstandard1.5/System.IO.xml",
  7427. "ref/netstandard1.5/de/System.IO.xml",
  7428. "ref/netstandard1.5/es/System.IO.xml",
  7429. "ref/netstandard1.5/fr/System.IO.xml",
  7430. "ref/netstandard1.5/it/System.IO.xml",
  7431. "ref/netstandard1.5/ja/System.IO.xml",
  7432. "ref/netstandard1.5/ko/System.IO.xml",
  7433. "ref/netstandard1.5/ru/System.IO.xml",
  7434. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7435. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7436. "ref/portable-net45+win8+wp8+wpa81/_._",
  7437. "ref/win8/_._",
  7438. "ref/wp80/_._",
  7439. "ref/wpa81/_._",
  7440. "ref/xamarinios10/_._",
  7441. "ref/xamarinmac20/_._",
  7442. "ref/xamarintvos10/_._",
  7443. "ref/xamarinwatchos10/_._",
  7444. "system.io.4.3.0.nupkg.sha512",
  7445. "system.io.nuspec"
  7446. ]
  7447. },
  7448. "System.IO.Compression/4.3.0": {
  7449. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7450. "type": "package",
  7451. "path": "system.io.compression/4.3.0",
  7452. "files": [
  7453. ".nupkg.metadata",
  7454. ".signature.p7s",
  7455. "ThirdPartyNotices.txt",
  7456. "dotnet_library_license.txt",
  7457. "lib/MonoAndroid10/_._",
  7458. "lib/MonoTouch10/_._",
  7459. "lib/net45/_._",
  7460. "lib/net46/System.IO.Compression.dll",
  7461. "lib/portable-net45+win8+wpa81/_._",
  7462. "lib/win8/_._",
  7463. "lib/wpa81/_._",
  7464. "lib/xamarinios10/_._",
  7465. "lib/xamarinmac20/_._",
  7466. "lib/xamarintvos10/_._",
  7467. "lib/xamarinwatchos10/_._",
  7468. "ref/MonoAndroid10/_._",
  7469. "ref/MonoTouch10/_._",
  7470. "ref/net45/_._",
  7471. "ref/net46/System.IO.Compression.dll",
  7472. "ref/netcore50/System.IO.Compression.dll",
  7473. "ref/netcore50/System.IO.Compression.xml",
  7474. "ref/netcore50/de/System.IO.Compression.xml",
  7475. "ref/netcore50/es/System.IO.Compression.xml",
  7476. "ref/netcore50/fr/System.IO.Compression.xml",
  7477. "ref/netcore50/it/System.IO.Compression.xml",
  7478. "ref/netcore50/ja/System.IO.Compression.xml",
  7479. "ref/netcore50/ko/System.IO.Compression.xml",
  7480. "ref/netcore50/ru/System.IO.Compression.xml",
  7481. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7482. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7483. "ref/netstandard1.1/System.IO.Compression.dll",
  7484. "ref/netstandard1.1/System.IO.Compression.xml",
  7485. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7486. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7487. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7488. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7489. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7490. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7491. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7492. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7493. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7494. "ref/netstandard1.3/System.IO.Compression.dll",
  7495. "ref/netstandard1.3/System.IO.Compression.xml",
  7496. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7497. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7498. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7499. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7500. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7501. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7502. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7503. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7504. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7505. "ref/portable-net45+win8+wpa81/_._",
  7506. "ref/win8/_._",
  7507. "ref/wpa81/_._",
  7508. "ref/xamarinios10/_._",
  7509. "ref/xamarinmac20/_._",
  7510. "ref/xamarintvos10/_._",
  7511. "ref/xamarinwatchos10/_._",
  7512. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7513. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7514. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7515. "system.io.compression.4.3.0.nupkg.sha512",
  7516. "system.io.compression.nuspec"
  7517. ]
  7518. },
  7519. "System.IO.Compression.ZipFile/4.3.0": {
  7520. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7521. "type": "package",
  7522. "path": "system.io.compression.zipfile/4.3.0",
  7523. "files": [
  7524. ".nupkg.metadata",
  7525. ".signature.p7s",
  7526. "ThirdPartyNotices.txt",
  7527. "dotnet_library_license.txt",
  7528. "lib/MonoAndroid10/_._",
  7529. "lib/MonoTouch10/_._",
  7530. "lib/net46/System.IO.Compression.ZipFile.dll",
  7531. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7532. "lib/xamarinios10/_._",
  7533. "lib/xamarinmac20/_._",
  7534. "lib/xamarintvos10/_._",
  7535. "lib/xamarinwatchos10/_._",
  7536. "ref/MonoAndroid10/_._",
  7537. "ref/MonoTouch10/_._",
  7538. "ref/net46/System.IO.Compression.ZipFile.dll",
  7539. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7540. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7541. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7542. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7543. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7544. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7545. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7546. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7547. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7548. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7549. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7550. "ref/xamarinios10/_._",
  7551. "ref/xamarinmac20/_._",
  7552. "ref/xamarintvos10/_._",
  7553. "ref/xamarinwatchos10/_._",
  7554. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7555. "system.io.compression.zipfile.nuspec"
  7556. ]
  7557. },
  7558. "System.IO.FileSystem/4.3.0": {
  7559. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7560. "type": "package",
  7561. "path": "system.io.filesystem/4.3.0",
  7562. "files": [
  7563. ".nupkg.metadata",
  7564. ".signature.p7s",
  7565. "ThirdPartyNotices.txt",
  7566. "dotnet_library_license.txt",
  7567. "lib/MonoAndroid10/_._",
  7568. "lib/MonoTouch10/_._",
  7569. "lib/net46/System.IO.FileSystem.dll",
  7570. "lib/xamarinios10/_._",
  7571. "lib/xamarinmac20/_._",
  7572. "lib/xamarintvos10/_._",
  7573. "lib/xamarinwatchos10/_._",
  7574. "ref/MonoAndroid10/_._",
  7575. "ref/MonoTouch10/_._",
  7576. "ref/net46/System.IO.FileSystem.dll",
  7577. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7578. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7579. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7580. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7581. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7582. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7583. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7584. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7585. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7586. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7587. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7588. "ref/xamarinios10/_._",
  7589. "ref/xamarinmac20/_._",
  7590. "ref/xamarintvos10/_._",
  7591. "ref/xamarinwatchos10/_._",
  7592. "system.io.filesystem.4.3.0.nupkg.sha512",
  7593. "system.io.filesystem.nuspec"
  7594. ]
  7595. },
  7596. "System.IO.FileSystem.Primitives/4.3.0": {
  7597. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7598. "type": "package",
  7599. "path": "system.io.filesystem.primitives/4.3.0",
  7600. "files": [
  7601. ".nupkg.metadata",
  7602. ".signature.p7s",
  7603. "ThirdPartyNotices.txt",
  7604. "dotnet_library_license.txt",
  7605. "lib/MonoAndroid10/_._",
  7606. "lib/MonoTouch10/_._",
  7607. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7608. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7609. "lib/xamarinios10/_._",
  7610. "lib/xamarinmac20/_._",
  7611. "lib/xamarintvos10/_._",
  7612. "lib/xamarinwatchos10/_._",
  7613. "ref/MonoAndroid10/_._",
  7614. "ref/MonoTouch10/_._",
  7615. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7616. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7617. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7618. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7619. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7620. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7621. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7622. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7623. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7624. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7625. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7626. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7627. "ref/xamarinios10/_._",
  7628. "ref/xamarinmac20/_._",
  7629. "ref/xamarintvos10/_._",
  7630. "ref/xamarinwatchos10/_._",
  7631. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7632. "system.io.filesystem.primitives.nuspec"
  7633. ]
  7634. },
  7635. "System.IO.Pipelines/5.0.0": {
  7636. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7637. "type": "package",
  7638. "path": "system.io.pipelines/5.0.0",
  7639. "files": [
  7640. ".nupkg.metadata",
  7641. ".signature.p7s",
  7642. "Icon.png",
  7643. "LICENSE.TXT",
  7644. "THIRD-PARTY-NOTICES.TXT",
  7645. "lib/net461/System.IO.Pipelines.dll",
  7646. "lib/net461/System.IO.Pipelines.xml",
  7647. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7648. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7649. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7650. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7651. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7652. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7653. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7654. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7655. "system.io.pipelines.5.0.0.nupkg.sha512",
  7656. "system.io.pipelines.nuspec",
  7657. "useSharedDesignerContext.txt",
  7658. "version.txt"
  7659. ]
  7660. },
  7661. "System.Linq/4.3.0": {
  7662. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7663. "type": "package",
  7664. "path": "system.linq/4.3.0",
  7665. "files": [
  7666. ".nupkg.metadata",
  7667. ".signature.p7s",
  7668. "ThirdPartyNotices.txt",
  7669. "dotnet_library_license.txt",
  7670. "lib/MonoAndroid10/_._",
  7671. "lib/MonoTouch10/_._",
  7672. "lib/net45/_._",
  7673. "lib/net463/System.Linq.dll",
  7674. "lib/netcore50/System.Linq.dll",
  7675. "lib/netstandard1.6/System.Linq.dll",
  7676. "lib/portable-net45+win8+wp8+wpa81/_._",
  7677. "lib/win8/_._",
  7678. "lib/wp80/_._",
  7679. "lib/wpa81/_._",
  7680. "lib/xamarinios10/_._",
  7681. "lib/xamarinmac20/_._",
  7682. "lib/xamarintvos10/_._",
  7683. "lib/xamarinwatchos10/_._",
  7684. "ref/MonoAndroid10/_._",
  7685. "ref/MonoTouch10/_._",
  7686. "ref/net45/_._",
  7687. "ref/net463/System.Linq.dll",
  7688. "ref/netcore50/System.Linq.dll",
  7689. "ref/netcore50/System.Linq.xml",
  7690. "ref/netcore50/de/System.Linq.xml",
  7691. "ref/netcore50/es/System.Linq.xml",
  7692. "ref/netcore50/fr/System.Linq.xml",
  7693. "ref/netcore50/it/System.Linq.xml",
  7694. "ref/netcore50/ja/System.Linq.xml",
  7695. "ref/netcore50/ko/System.Linq.xml",
  7696. "ref/netcore50/ru/System.Linq.xml",
  7697. "ref/netcore50/zh-hans/System.Linq.xml",
  7698. "ref/netcore50/zh-hant/System.Linq.xml",
  7699. "ref/netstandard1.0/System.Linq.dll",
  7700. "ref/netstandard1.0/System.Linq.xml",
  7701. "ref/netstandard1.0/de/System.Linq.xml",
  7702. "ref/netstandard1.0/es/System.Linq.xml",
  7703. "ref/netstandard1.0/fr/System.Linq.xml",
  7704. "ref/netstandard1.0/it/System.Linq.xml",
  7705. "ref/netstandard1.0/ja/System.Linq.xml",
  7706. "ref/netstandard1.0/ko/System.Linq.xml",
  7707. "ref/netstandard1.0/ru/System.Linq.xml",
  7708. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7709. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7710. "ref/netstandard1.6/System.Linq.dll",
  7711. "ref/netstandard1.6/System.Linq.xml",
  7712. "ref/netstandard1.6/de/System.Linq.xml",
  7713. "ref/netstandard1.6/es/System.Linq.xml",
  7714. "ref/netstandard1.6/fr/System.Linq.xml",
  7715. "ref/netstandard1.6/it/System.Linq.xml",
  7716. "ref/netstandard1.6/ja/System.Linq.xml",
  7717. "ref/netstandard1.6/ko/System.Linq.xml",
  7718. "ref/netstandard1.6/ru/System.Linq.xml",
  7719. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7720. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7721. "ref/portable-net45+win8+wp8+wpa81/_._",
  7722. "ref/win8/_._",
  7723. "ref/wp80/_._",
  7724. "ref/wpa81/_._",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "system.linq.4.3.0.nupkg.sha512",
  7730. "system.linq.nuspec"
  7731. ]
  7732. },
  7733. "System.Linq.Expressions/4.3.0": {
  7734. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7735. "type": "package",
  7736. "path": "system.linq.expressions/4.3.0",
  7737. "files": [
  7738. ".nupkg.metadata",
  7739. ".signature.p7s",
  7740. "ThirdPartyNotices.txt",
  7741. "dotnet_library_license.txt",
  7742. "lib/MonoAndroid10/_._",
  7743. "lib/MonoTouch10/_._",
  7744. "lib/net45/_._",
  7745. "lib/net463/System.Linq.Expressions.dll",
  7746. "lib/netcore50/System.Linq.Expressions.dll",
  7747. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7748. "lib/portable-net45+win8+wp8+wpa81/_._",
  7749. "lib/win8/_._",
  7750. "lib/wp80/_._",
  7751. "lib/wpa81/_._",
  7752. "lib/xamarinios10/_._",
  7753. "lib/xamarinmac20/_._",
  7754. "lib/xamarintvos10/_._",
  7755. "lib/xamarinwatchos10/_._",
  7756. "ref/MonoAndroid10/_._",
  7757. "ref/MonoTouch10/_._",
  7758. "ref/net45/_._",
  7759. "ref/net463/System.Linq.Expressions.dll",
  7760. "ref/netcore50/System.Linq.Expressions.dll",
  7761. "ref/netcore50/System.Linq.Expressions.xml",
  7762. "ref/netcore50/de/System.Linq.Expressions.xml",
  7763. "ref/netcore50/es/System.Linq.Expressions.xml",
  7764. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7765. "ref/netcore50/it/System.Linq.Expressions.xml",
  7766. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7767. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7768. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7769. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7770. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7771. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7772. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7773. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7774. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7775. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7776. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7777. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7778. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7779. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7780. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7781. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7782. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7783. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7784. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7785. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7786. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7787. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7788. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7789. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7790. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7791. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7792. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7793. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7794. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7795. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7796. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7797. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7798. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7799. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7800. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7801. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7802. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7803. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7804. "ref/portable-net45+win8+wp8+wpa81/_._",
  7805. "ref/win8/_._",
  7806. "ref/wp80/_._",
  7807. "ref/wpa81/_._",
  7808. "ref/xamarinios10/_._",
  7809. "ref/xamarinmac20/_._",
  7810. "ref/xamarintvos10/_._",
  7811. "ref/xamarinwatchos10/_._",
  7812. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7813. "system.linq.expressions.4.3.0.nupkg.sha512",
  7814. "system.linq.expressions.nuspec"
  7815. ]
  7816. },
  7817. "System.Memory/4.5.5": {
  7818. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7819. "type": "package",
  7820. "path": "system.memory/4.5.5",
  7821. "files": [
  7822. ".nupkg.metadata",
  7823. ".signature.p7s",
  7824. "LICENSE.TXT",
  7825. "THIRD-PARTY-NOTICES.TXT",
  7826. "lib/net461/System.Memory.dll",
  7827. "lib/net461/System.Memory.xml",
  7828. "lib/netcoreapp2.1/_._",
  7829. "lib/netstandard1.1/System.Memory.dll",
  7830. "lib/netstandard1.1/System.Memory.xml",
  7831. "lib/netstandard2.0/System.Memory.dll",
  7832. "lib/netstandard2.0/System.Memory.xml",
  7833. "ref/netcoreapp2.1/_._",
  7834. "system.memory.4.5.5.nupkg.sha512",
  7835. "system.memory.nuspec",
  7836. "useSharedDesignerContext.txt",
  7837. "version.txt"
  7838. ]
  7839. },
  7840. "System.Net.Http/4.3.2": {
  7841. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7842. "type": "package",
  7843. "path": "system.net.http/4.3.2",
  7844. "files": [
  7845. ".nupkg.metadata",
  7846. ".signature.p7s",
  7847. "ThirdPartyNotices.txt",
  7848. "dotnet_library_license.txt",
  7849. "lib/Xamarinmac20/_._",
  7850. "lib/monoandroid10/_._",
  7851. "lib/monotouch10/_._",
  7852. "lib/net45/_._",
  7853. "lib/net46/System.Net.Http.dll",
  7854. "lib/portable-net45+win8+wpa81/_._",
  7855. "lib/win8/_._",
  7856. "lib/wpa81/_._",
  7857. "lib/xamarinios10/_._",
  7858. "lib/xamarintvos10/_._",
  7859. "lib/xamarinwatchos10/_._",
  7860. "ref/Xamarinmac20/_._",
  7861. "ref/monoandroid10/_._",
  7862. "ref/monotouch10/_._",
  7863. "ref/net45/_._",
  7864. "ref/net46/System.Net.Http.dll",
  7865. "ref/netcore50/System.Net.Http.dll",
  7866. "ref/netstandard1.1/System.Net.Http.dll",
  7867. "ref/netstandard1.3/System.Net.Http.dll",
  7868. "ref/portable-net45+win8+wpa81/_._",
  7869. "ref/win8/_._",
  7870. "ref/wpa81/_._",
  7871. "ref/xamarinios10/_._",
  7872. "ref/xamarintvos10/_._",
  7873. "ref/xamarinwatchos10/_._",
  7874. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7875. "runtimes/win/lib/net46/System.Net.Http.dll",
  7876. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7877. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7878. "system.net.http.4.3.2.nupkg.sha512",
  7879. "system.net.http.nuspec"
  7880. ]
  7881. },
  7882. "System.Net.NameResolution/4.3.0": {
  7883. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7884. "type": "package",
  7885. "path": "system.net.nameresolution/4.3.0",
  7886. "files": [
  7887. ".nupkg.metadata",
  7888. ".signature.p7s",
  7889. "ThirdPartyNotices.txt",
  7890. "dotnet_library_license.txt",
  7891. "lib/MonoAndroid10/_._",
  7892. "lib/MonoTouch10/_._",
  7893. "lib/net46/System.Net.NameResolution.dll",
  7894. "lib/xamarinios10/_._",
  7895. "lib/xamarinmac20/_._",
  7896. "lib/xamarintvos10/_._",
  7897. "lib/xamarinwatchos10/_._",
  7898. "ref/MonoAndroid10/_._",
  7899. "ref/MonoTouch10/_._",
  7900. "ref/net46/System.Net.NameResolution.dll",
  7901. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7902. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7903. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7904. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7905. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7906. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7907. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7908. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7909. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7910. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7911. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7912. "ref/xamarinios10/_._",
  7913. "ref/xamarinmac20/_._",
  7914. "ref/xamarintvos10/_._",
  7915. "ref/xamarinwatchos10/_._",
  7916. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7917. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7918. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7919. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7920. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7921. "system.net.nameresolution.nuspec"
  7922. ]
  7923. },
  7924. "System.Net.Primitives/4.3.0": {
  7925. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7926. "type": "package",
  7927. "path": "system.net.primitives/4.3.0",
  7928. "files": [
  7929. ".nupkg.metadata",
  7930. ".signature.p7s",
  7931. "ThirdPartyNotices.txt",
  7932. "dotnet_library_license.txt",
  7933. "lib/MonoAndroid10/_._",
  7934. "lib/MonoTouch10/_._",
  7935. "lib/net45/_._",
  7936. "lib/portable-net45+win8+wp8+wpa81/_._",
  7937. "lib/win8/_._",
  7938. "lib/wp80/_._",
  7939. "lib/wpa81/_._",
  7940. "lib/xamarinios10/_._",
  7941. "lib/xamarinmac20/_._",
  7942. "lib/xamarintvos10/_._",
  7943. "lib/xamarinwatchos10/_._",
  7944. "ref/MonoAndroid10/_._",
  7945. "ref/MonoTouch10/_._",
  7946. "ref/net45/_._",
  7947. "ref/netcore50/System.Net.Primitives.dll",
  7948. "ref/netcore50/System.Net.Primitives.xml",
  7949. "ref/netcore50/de/System.Net.Primitives.xml",
  7950. "ref/netcore50/es/System.Net.Primitives.xml",
  7951. "ref/netcore50/fr/System.Net.Primitives.xml",
  7952. "ref/netcore50/it/System.Net.Primitives.xml",
  7953. "ref/netcore50/ja/System.Net.Primitives.xml",
  7954. "ref/netcore50/ko/System.Net.Primitives.xml",
  7955. "ref/netcore50/ru/System.Net.Primitives.xml",
  7956. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7957. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7958. "ref/netstandard1.0/System.Net.Primitives.dll",
  7959. "ref/netstandard1.0/System.Net.Primitives.xml",
  7960. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7961. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7962. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7963. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7964. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7965. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7966. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7967. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7968. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7969. "ref/netstandard1.1/System.Net.Primitives.dll",
  7970. "ref/netstandard1.1/System.Net.Primitives.xml",
  7971. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7972. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7973. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7974. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7975. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7976. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7977. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7978. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7979. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7980. "ref/netstandard1.3/System.Net.Primitives.dll",
  7981. "ref/netstandard1.3/System.Net.Primitives.xml",
  7982. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7983. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7984. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7985. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7986. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7987. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7988. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7989. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7990. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7991. "ref/portable-net45+win8+wp8+wpa81/_._",
  7992. "ref/win8/_._",
  7993. "ref/wp80/_._",
  7994. "ref/wpa81/_._",
  7995. "ref/xamarinios10/_._",
  7996. "ref/xamarinmac20/_._",
  7997. "ref/xamarintvos10/_._",
  7998. "ref/xamarinwatchos10/_._",
  7999. "system.net.primitives.4.3.0.nupkg.sha512",
  8000. "system.net.primitives.nuspec"
  8001. ]
  8002. },
  8003. "System.Net.Security/4.3.0": {
  8004. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  8005. "type": "package",
  8006. "path": "system.net.security/4.3.0",
  8007. "files": [
  8008. ".nupkg.metadata",
  8009. ".signature.p7s",
  8010. "ThirdPartyNotices.txt",
  8011. "dotnet_library_license.txt",
  8012. "lib/MonoAndroid10/_._",
  8013. "lib/MonoTouch10/_._",
  8014. "lib/net46/System.Net.Security.dll",
  8015. "lib/xamarinios10/_._",
  8016. "lib/xamarinmac20/_._",
  8017. "lib/xamarintvos10/_._",
  8018. "lib/xamarinwatchos10/_._",
  8019. "ref/MonoAndroid10/_._",
  8020. "ref/MonoTouch10/_._",
  8021. "ref/net46/System.Net.Security.dll",
  8022. "ref/netstandard1.3/System.Net.Security.dll",
  8023. "ref/netstandard1.3/System.Net.Security.xml",
  8024. "ref/netstandard1.3/de/System.Net.Security.xml",
  8025. "ref/netstandard1.3/es/System.Net.Security.xml",
  8026. "ref/netstandard1.3/fr/System.Net.Security.xml",
  8027. "ref/netstandard1.3/it/System.Net.Security.xml",
  8028. "ref/netstandard1.3/ja/System.Net.Security.xml",
  8029. "ref/netstandard1.3/ko/System.Net.Security.xml",
  8030. "ref/netstandard1.3/ru/System.Net.Security.xml",
  8031. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  8032. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  8033. "ref/xamarinios10/_._",
  8034. "ref/xamarinmac20/_._",
  8035. "ref/xamarintvos10/_._",
  8036. "ref/xamarinwatchos10/_._",
  8037. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  8038. "runtimes/win/lib/net46/System.Net.Security.dll",
  8039. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  8040. "runtimes/win7/lib/netcore50/_._",
  8041. "system.net.security.4.3.0.nupkg.sha512",
  8042. "system.net.security.nuspec"
  8043. ]
  8044. },
  8045. "System.Net.Sockets/4.3.0": {
  8046. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  8047. "type": "package",
  8048. "path": "system.net.sockets/4.3.0",
  8049. "files": [
  8050. ".nupkg.metadata",
  8051. ".signature.p7s",
  8052. "ThirdPartyNotices.txt",
  8053. "dotnet_library_license.txt",
  8054. "lib/MonoAndroid10/_._",
  8055. "lib/MonoTouch10/_._",
  8056. "lib/net46/System.Net.Sockets.dll",
  8057. "lib/xamarinios10/_._",
  8058. "lib/xamarinmac20/_._",
  8059. "lib/xamarintvos10/_._",
  8060. "lib/xamarinwatchos10/_._",
  8061. "ref/MonoAndroid10/_._",
  8062. "ref/MonoTouch10/_._",
  8063. "ref/net46/System.Net.Sockets.dll",
  8064. "ref/netstandard1.3/System.Net.Sockets.dll",
  8065. "ref/netstandard1.3/System.Net.Sockets.xml",
  8066. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  8067. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  8068. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  8069. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  8070. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  8071. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  8072. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  8073. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  8074. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  8075. "ref/xamarinios10/_._",
  8076. "ref/xamarinmac20/_._",
  8077. "ref/xamarintvos10/_._",
  8078. "ref/xamarinwatchos10/_._",
  8079. "system.net.sockets.4.3.0.nupkg.sha512",
  8080. "system.net.sockets.nuspec"
  8081. ]
  8082. },
  8083. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  8084. "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  8085. "type": "package",
  8086. "path": "system.net.websockets.websocketprotocol/4.5.1",
  8087. "files": [
  8088. ".nupkg.metadata",
  8089. ".signature.p7s",
  8090. "LICENSE.TXT",
  8091. "THIRD-PARTY-NOTICES.TXT",
  8092. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll",
  8093. "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8094. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8095. "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
  8096. "system.net.websockets.websocketprotocol.nuspec",
  8097. "useSharedDesignerContext.txt",
  8098. "version.txt"
  8099. ]
  8100. },
  8101. "System.ObjectModel/4.3.0": {
  8102. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  8103. "type": "package",
  8104. "path": "system.objectmodel/4.3.0",
  8105. "files": [
  8106. ".nupkg.metadata",
  8107. ".signature.p7s",
  8108. "ThirdPartyNotices.txt",
  8109. "dotnet_library_license.txt",
  8110. "lib/MonoAndroid10/_._",
  8111. "lib/MonoTouch10/_._",
  8112. "lib/net45/_._",
  8113. "lib/netcore50/System.ObjectModel.dll",
  8114. "lib/netstandard1.3/System.ObjectModel.dll",
  8115. "lib/portable-net45+win8+wp8+wpa81/_._",
  8116. "lib/win8/_._",
  8117. "lib/wp80/_._",
  8118. "lib/wpa81/_._",
  8119. "lib/xamarinios10/_._",
  8120. "lib/xamarinmac20/_._",
  8121. "lib/xamarintvos10/_._",
  8122. "lib/xamarinwatchos10/_._",
  8123. "ref/MonoAndroid10/_._",
  8124. "ref/MonoTouch10/_._",
  8125. "ref/net45/_._",
  8126. "ref/netcore50/System.ObjectModel.dll",
  8127. "ref/netcore50/System.ObjectModel.xml",
  8128. "ref/netcore50/de/System.ObjectModel.xml",
  8129. "ref/netcore50/es/System.ObjectModel.xml",
  8130. "ref/netcore50/fr/System.ObjectModel.xml",
  8131. "ref/netcore50/it/System.ObjectModel.xml",
  8132. "ref/netcore50/ja/System.ObjectModel.xml",
  8133. "ref/netcore50/ko/System.ObjectModel.xml",
  8134. "ref/netcore50/ru/System.ObjectModel.xml",
  8135. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8136. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8137. "ref/netstandard1.0/System.ObjectModel.dll",
  8138. "ref/netstandard1.0/System.ObjectModel.xml",
  8139. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8140. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8141. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8142. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8143. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8144. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8145. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8146. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8147. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8148. "ref/netstandard1.3/System.ObjectModel.dll",
  8149. "ref/netstandard1.3/System.ObjectModel.xml",
  8150. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8151. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8152. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8153. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8154. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8155. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8156. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8157. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8158. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8159. "ref/portable-net45+win8+wp8+wpa81/_._",
  8160. "ref/win8/_._",
  8161. "ref/wp80/_._",
  8162. "ref/wpa81/_._",
  8163. "ref/xamarinios10/_._",
  8164. "ref/xamarinmac20/_._",
  8165. "ref/xamarintvos10/_._",
  8166. "ref/xamarinwatchos10/_._",
  8167. "system.objectmodel.4.3.0.nupkg.sha512",
  8168. "system.objectmodel.nuspec"
  8169. ]
  8170. },
  8171. "System.Reactive/4.4.1": {
  8172. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  8173. "type": "package",
  8174. "path": "system.reactive/4.4.1",
  8175. "files": [
  8176. ".nupkg.metadata",
  8177. ".signature.p7s",
  8178. "build/netcoreapp3.0/System.Reactive.dll",
  8179. "build/netcoreapp3.0/System.Reactive.targets",
  8180. "build/netcoreapp3.0/System.Reactive.xml",
  8181. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  8182. "lib/net46/System.Reactive.dll",
  8183. "lib/net46/System.Reactive.xml",
  8184. "lib/netcoreapp3.0/_._",
  8185. "lib/netstandard2.0/System.Reactive.dll",
  8186. "lib/netstandard2.0/System.Reactive.xml",
  8187. "lib/uap10.0.16299/System.Reactive.dll",
  8188. "lib/uap10.0.16299/System.Reactive.pri",
  8189. "lib/uap10.0.16299/System.Reactive.xml",
  8190. "lib/uap10.0/System.Reactive.dll",
  8191. "lib/uap10.0/System.Reactive.pri",
  8192. "lib/uap10.0/System.Reactive.xml",
  8193. "system.reactive.4.4.1.nupkg.sha512",
  8194. "system.reactive.nuspec"
  8195. ]
  8196. },
  8197. "System.Reflection/4.3.0": {
  8198. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  8199. "type": "package",
  8200. "path": "system.reflection/4.3.0",
  8201. "files": [
  8202. ".nupkg.metadata",
  8203. ".signature.p7s",
  8204. "ThirdPartyNotices.txt",
  8205. "dotnet_library_license.txt",
  8206. "lib/MonoAndroid10/_._",
  8207. "lib/MonoTouch10/_._",
  8208. "lib/net45/_._",
  8209. "lib/net462/System.Reflection.dll",
  8210. "lib/portable-net45+win8+wp8+wpa81/_._",
  8211. "lib/win8/_._",
  8212. "lib/wp80/_._",
  8213. "lib/wpa81/_._",
  8214. "lib/xamarinios10/_._",
  8215. "lib/xamarinmac20/_._",
  8216. "lib/xamarintvos10/_._",
  8217. "lib/xamarinwatchos10/_._",
  8218. "ref/MonoAndroid10/_._",
  8219. "ref/MonoTouch10/_._",
  8220. "ref/net45/_._",
  8221. "ref/net462/System.Reflection.dll",
  8222. "ref/netcore50/System.Reflection.dll",
  8223. "ref/netcore50/System.Reflection.xml",
  8224. "ref/netcore50/de/System.Reflection.xml",
  8225. "ref/netcore50/es/System.Reflection.xml",
  8226. "ref/netcore50/fr/System.Reflection.xml",
  8227. "ref/netcore50/it/System.Reflection.xml",
  8228. "ref/netcore50/ja/System.Reflection.xml",
  8229. "ref/netcore50/ko/System.Reflection.xml",
  8230. "ref/netcore50/ru/System.Reflection.xml",
  8231. "ref/netcore50/zh-hans/System.Reflection.xml",
  8232. "ref/netcore50/zh-hant/System.Reflection.xml",
  8233. "ref/netstandard1.0/System.Reflection.dll",
  8234. "ref/netstandard1.0/System.Reflection.xml",
  8235. "ref/netstandard1.0/de/System.Reflection.xml",
  8236. "ref/netstandard1.0/es/System.Reflection.xml",
  8237. "ref/netstandard1.0/fr/System.Reflection.xml",
  8238. "ref/netstandard1.0/it/System.Reflection.xml",
  8239. "ref/netstandard1.0/ja/System.Reflection.xml",
  8240. "ref/netstandard1.0/ko/System.Reflection.xml",
  8241. "ref/netstandard1.0/ru/System.Reflection.xml",
  8242. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8243. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8244. "ref/netstandard1.3/System.Reflection.dll",
  8245. "ref/netstandard1.3/System.Reflection.xml",
  8246. "ref/netstandard1.3/de/System.Reflection.xml",
  8247. "ref/netstandard1.3/es/System.Reflection.xml",
  8248. "ref/netstandard1.3/fr/System.Reflection.xml",
  8249. "ref/netstandard1.3/it/System.Reflection.xml",
  8250. "ref/netstandard1.3/ja/System.Reflection.xml",
  8251. "ref/netstandard1.3/ko/System.Reflection.xml",
  8252. "ref/netstandard1.3/ru/System.Reflection.xml",
  8253. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8254. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8255. "ref/netstandard1.5/System.Reflection.dll",
  8256. "ref/netstandard1.5/System.Reflection.xml",
  8257. "ref/netstandard1.5/de/System.Reflection.xml",
  8258. "ref/netstandard1.5/es/System.Reflection.xml",
  8259. "ref/netstandard1.5/fr/System.Reflection.xml",
  8260. "ref/netstandard1.5/it/System.Reflection.xml",
  8261. "ref/netstandard1.5/ja/System.Reflection.xml",
  8262. "ref/netstandard1.5/ko/System.Reflection.xml",
  8263. "ref/netstandard1.5/ru/System.Reflection.xml",
  8264. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8265. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8266. "ref/portable-net45+win8+wp8+wpa81/_._",
  8267. "ref/win8/_._",
  8268. "ref/wp80/_._",
  8269. "ref/wpa81/_._",
  8270. "ref/xamarinios10/_._",
  8271. "ref/xamarinmac20/_._",
  8272. "ref/xamarintvos10/_._",
  8273. "ref/xamarinwatchos10/_._",
  8274. "system.reflection.4.3.0.nupkg.sha512",
  8275. "system.reflection.nuspec"
  8276. ]
  8277. },
  8278. "System.Reflection.Emit/4.7.0": {
  8279. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8280. "type": "package",
  8281. "path": "system.reflection.emit/4.7.0",
  8282. "files": [
  8283. ".nupkg.metadata",
  8284. ".signature.p7s",
  8285. "LICENSE.TXT",
  8286. "THIRD-PARTY-NOTICES.TXT",
  8287. "lib/MonoAndroid10/_._",
  8288. "lib/MonoTouch10/_._",
  8289. "lib/net45/_._",
  8290. "lib/netcore50/System.Reflection.Emit.dll",
  8291. "lib/netcoreapp2.0/_._",
  8292. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8293. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8294. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8295. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8296. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8297. "lib/netstandard2.1/_._",
  8298. "lib/xamarinios10/_._",
  8299. "lib/xamarinmac20/_._",
  8300. "lib/xamarintvos10/_._",
  8301. "lib/xamarinwatchos10/_._",
  8302. "ref/MonoAndroid10/_._",
  8303. "ref/MonoTouch10/_._",
  8304. "ref/net45/_._",
  8305. "ref/netcoreapp2.0/_._",
  8306. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8307. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8308. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8309. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8310. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8311. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8312. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8313. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8314. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8315. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8316. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8317. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8318. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8319. "ref/netstandard2.1/_._",
  8320. "ref/xamarinios10/_._",
  8321. "ref/xamarinmac20/_._",
  8322. "ref/xamarintvos10/_._",
  8323. "ref/xamarinwatchos10/_._",
  8324. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8325. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8326. "system.reflection.emit.4.7.0.nupkg.sha512",
  8327. "system.reflection.emit.nuspec",
  8328. "useSharedDesignerContext.txt",
  8329. "version.txt"
  8330. ]
  8331. },
  8332. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8333. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8334. "type": "package",
  8335. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8336. "files": [
  8337. ".nupkg.metadata",
  8338. ".signature.p7s",
  8339. "ThirdPartyNotices.txt",
  8340. "dotnet_library_license.txt",
  8341. "lib/MonoAndroid10/_._",
  8342. "lib/MonoTouch10/_._",
  8343. "lib/net45/_._",
  8344. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8345. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8346. "lib/portable-net45+wp8/_._",
  8347. "lib/wp80/_._",
  8348. "lib/xamarinios10/_._",
  8349. "lib/xamarinmac20/_._",
  8350. "lib/xamarintvos10/_._",
  8351. "lib/xamarinwatchos10/_._",
  8352. "ref/MonoAndroid10/_._",
  8353. "ref/MonoTouch10/_._",
  8354. "ref/net45/_._",
  8355. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8356. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8357. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8358. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8359. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8360. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8361. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8362. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8363. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8364. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8365. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8366. "ref/portable-net45+wp8/_._",
  8367. "ref/wp80/_._",
  8368. "ref/xamarinios10/_._",
  8369. "ref/xamarinmac20/_._",
  8370. "ref/xamarintvos10/_._",
  8371. "ref/xamarinwatchos10/_._",
  8372. "runtimes/aot/lib/netcore50/_._",
  8373. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8374. "system.reflection.emit.ilgeneration.nuspec"
  8375. ]
  8376. },
  8377. "System.Reflection.Emit.Lightweight/4.3.0": {
  8378. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8379. "type": "package",
  8380. "path": "system.reflection.emit.lightweight/4.3.0",
  8381. "files": [
  8382. ".nupkg.metadata",
  8383. ".signature.p7s",
  8384. "ThirdPartyNotices.txt",
  8385. "dotnet_library_license.txt",
  8386. "lib/MonoAndroid10/_._",
  8387. "lib/MonoTouch10/_._",
  8388. "lib/net45/_._",
  8389. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8390. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8391. "lib/portable-net45+wp8/_._",
  8392. "lib/wp80/_._",
  8393. "lib/xamarinios10/_._",
  8394. "lib/xamarinmac20/_._",
  8395. "lib/xamarintvos10/_._",
  8396. "lib/xamarinwatchos10/_._",
  8397. "ref/MonoAndroid10/_._",
  8398. "ref/MonoTouch10/_._",
  8399. "ref/net45/_._",
  8400. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8401. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8402. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8403. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8404. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8405. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8406. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8407. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8408. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8409. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8410. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8411. "ref/portable-net45+wp8/_._",
  8412. "ref/wp80/_._",
  8413. "ref/xamarinios10/_._",
  8414. "ref/xamarinmac20/_._",
  8415. "ref/xamarintvos10/_._",
  8416. "ref/xamarinwatchos10/_._",
  8417. "runtimes/aot/lib/netcore50/_._",
  8418. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8419. "system.reflection.emit.lightweight.nuspec"
  8420. ]
  8421. },
  8422. "System.Reflection.Extensions/4.3.0": {
  8423. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8424. "type": "package",
  8425. "path": "system.reflection.extensions/4.3.0",
  8426. "files": [
  8427. ".nupkg.metadata",
  8428. ".signature.p7s",
  8429. "ThirdPartyNotices.txt",
  8430. "dotnet_library_license.txt",
  8431. "lib/MonoAndroid10/_._",
  8432. "lib/MonoTouch10/_._",
  8433. "lib/net45/_._",
  8434. "lib/portable-net45+win8+wp8+wpa81/_._",
  8435. "lib/win8/_._",
  8436. "lib/wp80/_._",
  8437. "lib/wpa81/_._",
  8438. "lib/xamarinios10/_._",
  8439. "lib/xamarinmac20/_._",
  8440. "lib/xamarintvos10/_._",
  8441. "lib/xamarinwatchos10/_._",
  8442. "ref/MonoAndroid10/_._",
  8443. "ref/MonoTouch10/_._",
  8444. "ref/net45/_._",
  8445. "ref/netcore50/System.Reflection.Extensions.dll",
  8446. "ref/netcore50/System.Reflection.Extensions.xml",
  8447. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8448. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8449. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8450. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8451. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8452. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8453. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8454. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8455. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8456. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8457. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8458. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8459. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8460. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8461. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8462. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8463. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8464. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8465. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8466. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8467. "ref/portable-net45+win8+wp8+wpa81/_._",
  8468. "ref/win8/_._",
  8469. "ref/wp80/_._",
  8470. "ref/wpa81/_._",
  8471. "ref/xamarinios10/_._",
  8472. "ref/xamarinmac20/_._",
  8473. "ref/xamarintvos10/_._",
  8474. "ref/xamarinwatchos10/_._",
  8475. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8476. "system.reflection.extensions.nuspec"
  8477. ]
  8478. },
  8479. "System.Reflection.Primitives/4.3.0": {
  8480. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8481. "type": "package",
  8482. "path": "system.reflection.primitives/4.3.0",
  8483. "files": [
  8484. ".nupkg.metadata",
  8485. ".signature.p7s",
  8486. "ThirdPartyNotices.txt",
  8487. "dotnet_library_license.txt",
  8488. "lib/MonoAndroid10/_._",
  8489. "lib/MonoTouch10/_._",
  8490. "lib/net45/_._",
  8491. "lib/portable-net45+win8+wp8+wpa81/_._",
  8492. "lib/win8/_._",
  8493. "lib/wp80/_._",
  8494. "lib/wpa81/_._",
  8495. "lib/xamarinios10/_._",
  8496. "lib/xamarinmac20/_._",
  8497. "lib/xamarintvos10/_._",
  8498. "lib/xamarinwatchos10/_._",
  8499. "ref/MonoAndroid10/_._",
  8500. "ref/MonoTouch10/_._",
  8501. "ref/net45/_._",
  8502. "ref/netcore50/System.Reflection.Primitives.dll",
  8503. "ref/netcore50/System.Reflection.Primitives.xml",
  8504. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8505. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8506. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8507. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8508. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8509. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8510. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8511. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8512. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8513. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8514. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8515. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8516. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8517. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8518. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8519. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8520. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8521. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8522. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8523. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8524. "ref/portable-net45+win8+wp8+wpa81/_._",
  8525. "ref/win8/_._",
  8526. "ref/wp80/_._",
  8527. "ref/wpa81/_._",
  8528. "ref/xamarinios10/_._",
  8529. "ref/xamarinmac20/_._",
  8530. "ref/xamarintvos10/_._",
  8531. "ref/xamarinwatchos10/_._",
  8532. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8533. "system.reflection.primitives.nuspec"
  8534. ]
  8535. },
  8536. "System.Reflection.TypeExtensions/4.3.0": {
  8537. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8538. "type": "package",
  8539. "path": "system.reflection.typeextensions/4.3.0",
  8540. "files": [
  8541. ".nupkg.metadata",
  8542. ".signature.p7s",
  8543. "ThirdPartyNotices.txt",
  8544. "dotnet_library_license.txt",
  8545. "lib/MonoAndroid10/_._",
  8546. "lib/MonoTouch10/_._",
  8547. "lib/net46/System.Reflection.TypeExtensions.dll",
  8548. "lib/net462/System.Reflection.TypeExtensions.dll",
  8549. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8550. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8551. "lib/xamarinios10/_._",
  8552. "lib/xamarinmac20/_._",
  8553. "lib/xamarintvos10/_._",
  8554. "lib/xamarinwatchos10/_._",
  8555. "ref/MonoAndroid10/_._",
  8556. "ref/MonoTouch10/_._",
  8557. "ref/net46/System.Reflection.TypeExtensions.dll",
  8558. "ref/net462/System.Reflection.TypeExtensions.dll",
  8559. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8560. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8561. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8562. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8563. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8564. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8565. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8566. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8567. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8568. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8569. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8570. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8571. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8572. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8573. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8574. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8575. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8576. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8577. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8578. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8579. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8580. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8581. "ref/xamarinios10/_._",
  8582. "ref/xamarinmac20/_._",
  8583. "ref/xamarintvos10/_._",
  8584. "ref/xamarinwatchos10/_._",
  8585. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8586. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8587. "system.reflection.typeextensions.nuspec"
  8588. ]
  8589. },
  8590. "System.Resources.ResourceManager/4.3.0": {
  8591. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8592. "type": "package",
  8593. "path": "system.resources.resourcemanager/4.3.0",
  8594. "files": [
  8595. ".nupkg.metadata",
  8596. ".signature.p7s",
  8597. "ThirdPartyNotices.txt",
  8598. "dotnet_library_license.txt",
  8599. "lib/MonoAndroid10/_._",
  8600. "lib/MonoTouch10/_._",
  8601. "lib/net45/_._",
  8602. "lib/portable-net45+win8+wp8+wpa81/_._",
  8603. "lib/win8/_._",
  8604. "lib/wp80/_._",
  8605. "lib/wpa81/_._",
  8606. "lib/xamarinios10/_._",
  8607. "lib/xamarinmac20/_._",
  8608. "lib/xamarintvos10/_._",
  8609. "lib/xamarinwatchos10/_._",
  8610. "ref/MonoAndroid10/_._",
  8611. "ref/MonoTouch10/_._",
  8612. "ref/net45/_._",
  8613. "ref/netcore50/System.Resources.ResourceManager.dll",
  8614. "ref/netcore50/System.Resources.ResourceManager.xml",
  8615. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8616. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8617. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8618. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8619. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8620. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8621. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8622. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8623. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8624. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8625. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8626. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8627. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8628. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8629. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8630. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8631. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8632. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8633. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8634. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8635. "ref/portable-net45+win8+wp8+wpa81/_._",
  8636. "ref/win8/_._",
  8637. "ref/wp80/_._",
  8638. "ref/wpa81/_._",
  8639. "ref/xamarinios10/_._",
  8640. "ref/xamarinmac20/_._",
  8641. "ref/xamarintvos10/_._",
  8642. "ref/xamarinwatchos10/_._",
  8643. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8644. "system.resources.resourcemanager.nuspec"
  8645. ]
  8646. },
  8647. "System.Runtime/4.3.0": {
  8648. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8649. "type": "package",
  8650. "path": "system.runtime/4.3.0",
  8651. "files": [
  8652. ".nupkg.metadata",
  8653. ".signature.p7s",
  8654. "ThirdPartyNotices.txt",
  8655. "dotnet_library_license.txt",
  8656. "lib/MonoAndroid10/_._",
  8657. "lib/MonoTouch10/_._",
  8658. "lib/net45/_._",
  8659. "lib/net462/System.Runtime.dll",
  8660. "lib/portable-net45+win8+wp80+wpa81/_._",
  8661. "lib/win8/_._",
  8662. "lib/wp80/_._",
  8663. "lib/wpa81/_._",
  8664. "lib/xamarinios10/_._",
  8665. "lib/xamarinmac20/_._",
  8666. "lib/xamarintvos10/_._",
  8667. "lib/xamarinwatchos10/_._",
  8668. "ref/MonoAndroid10/_._",
  8669. "ref/MonoTouch10/_._",
  8670. "ref/net45/_._",
  8671. "ref/net462/System.Runtime.dll",
  8672. "ref/netcore50/System.Runtime.dll",
  8673. "ref/netcore50/System.Runtime.xml",
  8674. "ref/netcore50/de/System.Runtime.xml",
  8675. "ref/netcore50/es/System.Runtime.xml",
  8676. "ref/netcore50/fr/System.Runtime.xml",
  8677. "ref/netcore50/it/System.Runtime.xml",
  8678. "ref/netcore50/ja/System.Runtime.xml",
  8679. "ref/netcore50/ko/System.Runtime.xml",
  8680. "ref/netcore50/ru/System.Runtime.xml",
  8681. "ref/netcore50/zh-hans/System.Runtime.xml",
  8682. "ref/netcore50/zh-hant/System.Runtime.xml",
  8683. "ref/netstandard1.0/System.Runtime.dll",
  8684. "ref/netstandard1.0/System.Runtime.xml",
  8685. "ref/netstandard1.0/de/System.Runtime.xml",
  8686. "ref/netstandard1.0/es/System.Runtime.xml",
  8687. "ref/netstandard1.0/fr/System.Runtime.xml",
  8688. "ref/netstandard1.0/it/System.Runtime.xml",
  8689. "ref/netstandard1.0/ja/System.Runtime.xml",
  8690. "ref/netstandard1.0/ko/System.Runtime.xml",
  8691. "ref/netstandard1.0/ru/System.Runtime.xml",
  8692. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8693. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8694. "ref/netstandard1.2/System.Runtime.dll",
  8695. "ref/netstandard1.2/System.Runtime.xml",
  8696. "ref/netstandard1.2/de/System.Runtime.xml",
  8697. "ref/netstandard1.2/es/System.Runtime.xml",
  8698. "ref/netstandard1.2/fr/System.Runtime.xml",
  8699. "ref/netstandard1.2/it/System.Runtime.xml",
  8700. "ref/netstandard1.2/ja/System.Runtime.xml",
  8701. "ref/netstandard1.2/ko/System.Runtime.xml",
  8702. "ref/netstandard1.2/ru/System.Runtime.xml",
  8703. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8704. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8705. "ref/netstandard1.3/System.Runtime.dll",
  8706. "ref/netstandard1.3/System.Runtime.xml",
  8707. "ref/netstandard1.3/de/System.Runtime.xml",
  8708. "ref/netstandard1.3/es/System.Runtime.xml",
  8709. "ref/netstandard1.3/fr/System.Runtime.xml",
  8710. "ref/netstandard1.3/it/System.Runtime.xml",
  8711. "ref/netstandard1.3/ja/System.Runtime.xml",
  8712. "ref/netstandard1.3/ko/System.Runtime.xml",
  8713. "ref/netstandard1.3/ru/System.Runtime.xml",
  8714. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8715. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8716. "ref/netstandard1.5/System.Runtime.dll",
  8717. "ref/netstandard1.5/System.Runtime.xml",
  8718. "ref/netstandard1.5/de/System.Runtime.xml",
  8719. "ref/netstandard1.5/es/System.Runtime.xml",
  8720. "ref/netstandard1.5/fr/System.Runtime.xml",
  8721. "ref/netstandard1.5/it/System.Runtime.xml",
  8722. "ref/netstandard1.5/ja/System.Runtime.xml",
  8723. "ref/netstandard1.5/ko/System.Runtime.xml",
  8724. "ref/netstandard1.5/ru/System.Runtime.xml",
  8725. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8726. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8727. "ref/portable-net45+win8+wp80+wpa81/_._",
  8728. "ref/win8/_._",
  8729. "ref/wp80/_._",
  8730. "ref/wpa81/_._",
  8731. "ref/xamarinios10/_._",
  8732. "ref/xamarinmac20/_._",
  8733. "ref/xamarintvos10/_._",
  8734. "ref/xamarinwatchos10/_._",
  8735. "system.runtime.4.3.0.nupkg.sha512",
  8736. "system.runtime.nuspec"
  8737. ]
  8738. },
  8739. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8740. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8741. "type": "package",
  8742. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8743. "files": [
  8744. ".nupkg.metadata",
  8745. ".signature.p7s",
  8746. "Icon.png",
  8747. "LICENSE.TXT",
  8748. "THIRD-PARTY-NOTICES.TXT",
  8749. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8750. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8751. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8752. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8753. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8754. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8755. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8756. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8757. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8758. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8759. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8760. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8761. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8762. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8763. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8764. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8765. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8766. "system.runtime.compilerservices.unsafe.nuspec",
  8767. "useSharedDesignerContext.txt",
  8768. "version.txt"
  8769. ]
  8770. },
  8771. "System.Runtime.Extensions/4.3.0": {
  8772. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8773. "type": "package",
  8774. "path": "system.runtime.extensions/4.3.0",
  8775. "files": [
  8776. ".nupkg.metadata",
  8777. ".signature.p7s",
  8778. "ThirdPartyNotices.txt",
  8779. "dotnet_library_license.txt",
  8780. "lib/MonoAndroid10/_._",
  8781. "lib/MonoTouch10/_._",
  8782. "lib/net45/_._",
  8783. "lib/net462/System.Runtime.Extensions.dll",
  8784. "lib/portable-net45+win8+wp8+wpa81/_._",
  8785. "lib/win8/_._",
  8786. "lib/wp80/_._",
  8787. "lib/wpa81/_._",
  8788. "lib/xamarinios10/_._",
  8789. "lib/xamarinmac20/_._",
  8790. "lib/xamarintvos10/_._",
  8791. "lib/xamarinwatchos10/_._",
  8792. "ref/MonoAndroid10/_._",
  8793. "ref/MonoTouch10/_._",
  8794. "ref/net45/_._",
  8795. "ref/net462/System.Runtime.Extensions.dll",
  8796. "ref/netcore50/System.Runtime.Extensions.dll",
  8797. "ref/netcore50/System.Runtime.Extensions.xml",
  8798. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8799. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8800. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8801. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8802. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8803. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8804. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8805. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8806. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8807. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8808. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8809. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8810. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8811. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8812. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8813. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8814. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8815. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8816. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8817. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8818. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8819. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8820. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8821. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8822. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8823. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8824. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8825. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8826. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8827. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8828. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8829. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8830. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8831. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8832. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8833. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8834. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8835. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8836. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8837. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8838. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8839. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8840. "ref/portable-net45+win8+wp8+wpa81/_._",
  8841. "ref/win8/_._",
  8842. "ref/wp80/_._",
  8843. "ref/wpa81/_._",
  8844. "ref/xamarinios10/_._",
  8845. "ref/xamarinmac20/_._",
  8846. "ref/xamarintvos10/_._",
  8847. "ref/xamarinwatchos10/_._",
  8848. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8849. "system.runtime.extensions.nuspec"
  8850. ]
  8851. },
  8852. "System.Runtime.Handles/4.3.0": {
  8853. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8854. "type": "package",
  8855. "path": "system.runtime.handles/4.3.0",
  8856. "files": [
  8857. ".nupkg.metadata",
  8858. ".signature.p7s",
  8859. "ThirdPartyNotices.txt",
  8860. "dotnet_library_license.txt",
  8861. "lib/MonoAndroid10/_._",
  8862. "lib/MonoTouch10/_._",
  8863. "lib/net46/_._",
  8864. "lib/xamarinios10/_._",
  8865. "lib/xamarinmac20/_._",
  8866. "lib/xamarintvos10/_._",
  8867. "lib/xamarinwatchos10/_._",
  8868. "ref/MonoAndroid10/_._",
  8869. "ref/MonoTouch10/_._",
  8870. "ref/net46/_._",
  8871. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8872. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8873. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8874. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8875. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8876. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8877. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8878. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8879. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8880. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8881. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8882. "ref/xamarinios10/_._",
  8883. "ref/xamarinmac20/_._",
  8884. "ref/xamarintvos10/_._",
  8885. "ref/xamarinwatchos10/_._",
  8886. "system.runtime.handles.4.3.0.nupkg.sha512",
  8887. "system.runtime.handles.nuspec"
  8888. ]
  8889. },
  8890. "System.Runtime.InteropServices/4.3.0": {
  8891. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8892. "type": "package",
  8893. "path": "system.runtime.interopservices/4.3.0",
  8894. "files": [
  8895. ".nupkg.metadata",
  8896. ".signature.p7s",
  8897. "ThirdPartyNotices.txt",
  8898. "dotnet_library_license.txt",
  8899. "lib/MonoAndroid10/_._",
  8900. "lib/MonoTouch10/_._",
  8901. "lib/net45/_._",
  8902. "lib/net462/System.Runtime.InteropServices.dll",
  8903. "lib/net463/System.Runtime.InteropServices.dll",
  8904. "lib/portable-net45+win8+wpa81/_._",
  8905. "lib/win8/_._",
  8906. "lib/wpa81/_._",
  8907. "lib/xamarinios10/_._",
  8908. "lib/xamarinmac20/_._",
  8909. "lib/xamarintvos10/_._",
  8910. "lib/xamarinwatchos10/_._",
  8911. "ref/MonoAndroid10/_._",
  8912. "ref/MonoTouch10/_._",
  8913. "ref/net45/_._",
  8914. "ref/net462/System.Runtime.InteropServices.dll",
  8915. "ref/net463/System.Runtime.InteropServices.dll",
  8916. "ref/netcore50/System.Runtime.InteropServices.dll",
  8917. "ref/netcore50/System.Runtime.InteropServices.xml",
  8918. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8919. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8920. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8921. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8922. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8923. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8924. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8925. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8926. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8927. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8928. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8929. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8930. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8931. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8932. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8933. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8934. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8935. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8936. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8937. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8938. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8939. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8940. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8941. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8942. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8943. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8944. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8945. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8946. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8947. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8948. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8949. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8950. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8951. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8952. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8953. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8954. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8955. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8956. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8957. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8958. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8959. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8960. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8961. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8962. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8963. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8964. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8965. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8966. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8967. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8968. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8969. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8970. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8971. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8972. "ref/portable-net45+win8+wpa81/_._",
  8973. "ref/win8/_._",
  8974. "ref/wpa81/_._",
  8975. "ref/xamarinios10/_._",
  8976. "ref/xamarinmac20/_._",
  8977. "ref/xamarintvos10/_._",
  8978. "ref/xamarinwatchos10/_._",
  8979. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8980. "system.runtime.interopservices.nuspec"
  8981. ]
  8982. },
  8983. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8984. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8985. "type": "package",
  8986. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8987. "files": [
  8988. ".nupkg.metadata",
  8989. ".signature.p7s",
  8990. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8991. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8992. "ThirdPartyNotices.txt",
  8993. "dotnet_library_license.txt",
  8994. "lib/MonoAndroid10/_._",
  8995. "lib/MonoTouch10/_._",
  8996. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8997. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8998. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8999. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  9000. "lib/xamarinios10/_._",
  9001. "lib/xamarinmac20/_._",
  9002. "lib/xamarintvos10/_._",
  9003. "lib/xamarinwatchos10/_._",
  9004. "ref/MonoAndroid10/_._",
  9005. "ref/MonoTouch10/_._",
  9006. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9007. "ref/xamarinios10/_._",
  9008. "ref/xamarinmac20/_._",
  9009. "ref/xamarintvos10/_._",
  9010. "ref/xamarinwatchos10/_._",
  9011. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9012. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9013. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9014. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9015. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  9016. ]
  9017. },
  9018. "System.Runtime.Numerics/4.3.0": {
  9019. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  9020. "type": "package",
  9021. "path": "system.runtime.numerics/4.3.0",
  9022. "files": [
  9023. ".nupkg.metadata",
  9024. ".signature.p7s",
  9025. "ThirdPartyNotices.txt",
  9026. "dotnet_library_license.txt",
  9027. "lib/MonoAndroid10/_._",
  9028. "lib/MonoTouch10/_._",
  9029. "lib/net45/_._",
  9030. "lib/netcore50/System.Runtime.Numerics.dll",
  9031. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  9032. "lib/portable-net45+win8+wpa81/_._",
  9033. "lib/win8/_._",
  9034. "lib/wpa81/_._",
  9035. "lib/xamarinios10/_._",
  9036. "lib/xamarinmac20/_._",
  9037. "lib/xamarintvos10/_._",
  9038. "lib/xamarinwatchos10/_._",
  9039. "ref/MonoAndroid10/_._",
  9040. "ref/MonoTouch10/_._",
  9041. "ref/net45/_._",
  9042. "ref/netcore50/System.Runtime.Numerics.dll",
  9043. "ref/netcore50/System.Runtime.Numerics.xml",
  9044. "ref/netcore50/de/System.Runtime.Numerics.xml",
  9045. "ref/netcore50/es/System.Runtime.Numerics.xml",
  9046. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  9047. "ref/netcore50/it/System.Runtime.Numerics.xml",
  9048. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  9049. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  9050. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  9051. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  9052. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  9053. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  9054. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  9055. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  9056. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  9057. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  9058. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  9059. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  9060. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  9061. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  9062. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  9063. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  9064. "ref/portable-net45+win8+wpa81/_._",
  9065. "ref/win8/_._",
  9066. "ref/wpa81/_._",
  9067. "ref/xamarinios10/_._",
  9068. "ref/xamarinmac20/_._",
  9069. "ref/xamarintvos10/_._",
  9070. "ref/xamarinwatchos10/_._",
  9071. "system.runtime.numerics.4.3.0.nupkg.sha512",
  9072. "system.runtime.numerics.nuspec"
  9073. ]
  9074. },
  9075. "System.Runtime.Serialization.Primitives/4.3.0": {
  9076. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  9077. "type": "package",
  9078. "path": "system.runtime.serialization.primitives/4.3.0",
  9079. "files": [
  9080. ".nupkg.metadata",
  9081. ".signature.p7s",
  9082. "ThirdPartyNotices.txt",
  9083. "dotnet_library_license.txt",
  9084. "lib/MonoAndroid10/_._",
  9085. "lib/MonoTouch10/_._",
  9086. "lib/net45/_._",
  9087. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  9088. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9089. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9090. "lib/portable-net45+win8+wp8+wpa81/_._",
  9091. "lib/win8/_._",
  9092. "lib/wp80/_._",
  9093. "lib/wpa81/_._",
  9094. "lib/xamarinios10/_._",
  9095. "lib/xamarinmac20/_._",
  9096. "lib/xamarintvos10/_._",
  9097. "lib/xamarinwatchos10/_._",
  9098. "ref/MonoAndroid10/_._",
  9099. "ref/MonoTouch10/_._",
  9100. "ref/net45/_._",
  9101. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  9102. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  9103. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  9104. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  9105. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  9106. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  9107. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  9108. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  9109. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  9110. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  9111. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9112. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9113. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  9114. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  9115. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  9116. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  9117. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  9118. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  9119. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  9120. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  9121. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  9122. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9123. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9124. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9125. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  9126. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  9127. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  9128. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  9129. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  9130. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  9131. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  9132. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  9133. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9134. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9135. "ref/portable-net45+win8+wp8+wpa81/_._",
  9136. "ref/win8/_._",
  9137. "ref/wp80/_._",
  9138. "ref/wpa81/_._",
  9139. "ref/xamarinios10/_._",
  9140. "ref/xamarinmac20/_._",
  9141. "ref/xamarintvos10/_._",
  9142. "ref/xamarinwatchos10/_._",
  9143. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9144. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  9145. "system.runtime.serialization.primitives.nuspec"
  9146. ]
  9147. },
  9148. "System.Security.AccessControl/4.7.0": {
  9149. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  9150. "type": "package",
  9151. "path": "system.security.accesscontrol/4.7.0",
  9152. "files": [
  9153. ".nupkg.metadata",
  9154. ".signature.p7s",
  9155. "LICENSE.TXT",
  9156. "THIRD-PARTY-NOTICES.TXT",
  9157. "lib/net46/System.Security.AccessControl.dll",
  9158. "lib/net461/System.Security.AccessControl.dll",
  9159. "lib/net461/System.Security.AccessControl.xml",
  9160. "lib/netstandard1.3/System.Security.AccessControl.dll",
  9161. "lib/netstandard2.0/System.Security.AccessControl.dll",
  9162. "lib/netstandard2.0/System.Security.AccessControl.xml",
  9163. "lib/uap10.0.16299/_._",
  9164. "ref/net46/System.Security.AccessControl.dll",
  9165. "ref/net461/System.Security.AccessControl.dll",
  9166. "ref/net461/System.Security.AccessControl.xml",
  9167. "ref/netstandard1.3/System.Security.AccessControl.dll",
  9168. "ref/netstandard1.3/System.Security.AccessControl.xml",
  9169. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  9170. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  9171. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  9172. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  9173. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  9174. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  9175. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  9176. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  9177. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  9178. "ref/netstandard2.0/System.Security.AccessControl.dll",
  9179. "ref/netstandard2.0/System.Security.AccessControl.xml",
  9180. "ref/uap10.0.16299/_._",
  9181. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  9182. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  9183. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  9184. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  9185. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  9186. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  9187. "runtimes/win/lib/uap10.0.16299/_._",
  9188. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  9189. "system.security.accesscontrol.nuspec",
  9190. "useSharedDesignerContext.txt",
  9191. "version.txt"
  9192. ]
  9193. },
  9194. "System.Security.Claims/4.3.0": {
  9195. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  9196. "type": "package",
  9197. "path": "system.security.claims/4.3.0",
  9198. "files": [
  9199. ".nupkg.metadata",
  9200. ".signature.p7s",
  9201. "ThirdPartyNotices.txt",
  9202. "dotnet_library_license.txt",
  9203. "lib/MonoAndroid10/_._",
  9204. "lib/MonoTouch10/_._",
  9205. "lib/net46/System.Security.Claims.dll",
  9206. "lib/netstandard1.3/System.Security.Claims.dll",
  9207. "lib/xamarinios10/_._",
  9208. "lib/xamarinmac20/_._",
  9209. "lib/xamarintvos10/_._",
  9210. "lib/xamarinwatchos10/_._",
  9211. "ref/MonoAndroid10/_._",
  9212. "ref/MonoTouch10/_._",
  9213. "ref/net46/System.Security.Claims.dll",
  9214. "ref/netstandard1.3/System.Security.Claims.dll",
  9215. "ref/netstandard1.3/System.Security.Claims.xml",
  9216. "ref/netstandard1.3/de/System.Security.Claims.xml",
  9217. "ref/netstandard1.3/es/System.Security.Claims.xml",
  9218. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  9219. "ref/netstandard1.3/it/System.Security.Claims.xml",
  9220. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  9221. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  9222. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  9223. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  9224. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  9225. "ref/xamarinios10/_._",
  9226. "ref/xamarinmac20/_._",
  9227. "ref/xamarintvos10/_._",
  9228. "ref/xamarinwatchos10/_._",
  9229. "system.security.claims.4.3.0.nupkg.sha512",
  9230. "system.security.claims.nuspec"
  9231. ]
  9232. },
  9233. "System.Security.Cryptography.Algorithms/4.3.0": {
  9234. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  9235. "type": "package",
  9236. "path": "system.security.cryptography.algorithms/4.3.0",
  9237. "files": [
  9238. ".nupkg.metadata",
  9239. ".signature.p7s",
  9240. "ThirdPartyNotices.txt",
  9241. "dotnet_library_license.txt",
  9242. "lib/MonoAndroid10/_._",
  9243. "lib/MonoTouch10/_._",
  9244. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9245. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9246. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9247. "lib/xamarinios10/_._",
  9248. "lib/xamarinmac20/_._",
  9249. "lib/xamarintvos10/_._",
  9250. "lib/xamarinwatchos10/_._",
  9251. "ref/MonoAndroid10/_._",
  9252. "ref/MonoTouch10/_._",
  9253. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9254. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9255. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9256. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9257. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9258. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9259. "ref/xamarinios10/_._",
  9260. "ref/xamarinmac20/_._",
  9261. "ref/xamarintvos10/_._",
  9262. "ref/xamarinwatchos10/_._",
  9263. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9264. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9265. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9266. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9267. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9268. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9269. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9270. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  9271. "system.security.cryptography.algorithms.nuspec"
  9272. ]
  9273. },
  9274. "System.Security.Cryptography.Cng/4.3.0": {
  9275. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  9276. "type": "package",
  9277. "path": "system.security.cryptography.cng/4.3.0",
  9278. "files": [
  9279. ".nupkg.metadata",
  9280. ".signature.p7s",
  9281. "ThirdPartyNotices.txt",
  9282. "dotnet_library_license.txt",
  9283. "lib/net46/System.Security.Cryptography.Cng.dll",
  9284. "lib/net461/System.Security.Cryptography.Cng.dll",
  9285. "lib/net463/System.Security.Cryptography.Cng.dll",
  9286. "ref/net46/System.Security.Cryptography.Cng.dll",
  9287. "ref/net461/System.Security.Cryptography.Cng.dll",
  9288. "ref/net463/System.Security.Cryptography.Cng.dll",
  9289. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9290. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9291. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9292. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9293. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9294. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9295. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  9296. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9297. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9298. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  9299. "system.security.cryptography.cng.nuspec"
  9300. ]
  9301. },
  9302. "System.Security.Cryptography.Csp/4.3.0": {
  9303. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9304. "type": "package",
  9305. "path": "system.security.cryptography.csp/4.3.0",
  9306. "files": [
  9307. ".nupkg.metadata",
  9308. ".signature.p7s",
  9309. "ThirdPartyNotices.txt",
  9310. "dotnet_library_license.txt",
  9311. "lib/MonoAndroid10/_._",
  9312. "lib/MonoTouch10/_._",
  9313. "lib/net46/System.Security.Cryptography.Csp.dll",
  9314. "lib/xamarinios10/_._",
  9315. "lib/xamarinmac20/_._",
  9316. "lib/xamarintvos10/_._",
  9317. "lib/xamarinwatchos10/_._",
  9318. "ref/MonoAndroid10/_._",
  9319. "ref/MonoTouch10/_._",
  9320. "ref/net46/System.Security.Cryptography.Csp.dll",
  9321. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9322. "ref/xamarinios10/_._",
  9323. "ref/xamarinmac20/_._",
  9324. "ref/xamarintvos10/_._",
  9325. "ref/xamarinwatchos10/_._",
  9326. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9327. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9328. "runtimes/win/lib/netcore50/_._",
  9329. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9330. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9331. "system.security.cryptography.csp.nuspec"
  9332. ]
  9333. },
  9334. "System.Security.Cryptography.Encoding/4.3.0": {
  9335. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9336. "type": "package",
  9337. "path": "system.security.cryptography.encoding/4.3.0",
  9338. "files": [
  9339. ".nupkg.metadata",
  9340. ".signature.p7s",
  9341. "ThirdPartyNotices.txt",
  9342. "dotnet_library_license.txt",
  9343. "lib/MonoAndroid10/_._",
  9344. "lib/MonoTouch10/_._",
  9345. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9346. "lib/xamarinios10/_._",
  9347. "lib/xamarinmac20/_._",
  9348. "lib/xamarintvos10/_._",
  9349. "lib/xamarinwatchos10/_._",
  9350. "ref/MonoAndroid10/_._",
  9351. "ref/MonoTouch10/_._",
  9352. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9353. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9354. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9355. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9356. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9357. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9358. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9359. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9360. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9361. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9362. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9363. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9364. "ref/xamarinios10/_._",
  9365. "ref/xamarinmac20/_._",
  9366. "ref/xamarintvos10/_._",
  9367. "ref/xamarinwatchos10/_._",
  9368. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9369. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9370. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9371. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9372. "system.security.cryptography.encoding.nuspec"
  9373. ]
  9374. },
  9375. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9376. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9377. "type": "package",
  9378. "path": "system.security.cryptography.openssl/4.3.0",
  9379. "files": [
  9380. ".nupkg.metadata",
  9381. ".signature.p7s",
  9382. "ThirdPartyNotices.txt",
  9383. "dotnet_library_license.txt",
  9384. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9385. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9386. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9387. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9388. "system.security.cryptography.openssl.nuspec"
  9389. ]
  9390. },
  9391. "System.Security.Cryptography.Primitives/4.3.0": {
  9392. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9393. "type": "package",
  9394. "path": "system.security.cryptography.primitives/4.3.0",
  9395. "files": [
  9396. ".nupkg.metadata",
  9397. ".signature.p7s",
  9398. "ThirdPartyNotices.txt",
  9399. "dotnet_library_license.txt",
  9400. "lib/MonoAndroid10/_._",
  9401. "lib/MonoTouch10/_._",
  9402. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9403. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9404. "lib/xamarinios10/_._",
  9405. "lib/xamarinmac20/_._",
  9406. "lib/xamarintvos10/_._",
  9407. "lib/xamarinwatchos10/_._",
  9408. "ref/MonoAndroid10/_._",
  9409. "ref/MonoTouch10/_._",
  9410. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9411. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9412. "ref/xamarinios10/_._",
  9413. "ref/xamarinmac20/_._",
  9414. "ref/xamarintvos10/_._",
  9415. "ref/xamarinwatchos10/_._",
  9416. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9417. "system.security.cryptography.primitives.nuspec"
  9418. ]
  9419. },
  9420. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9421. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9422. "type": "package",
  9423. "path": "system.security.cryptography.protecteddata/4.7.0",
  9424. "files": [
  9425. ".nupkg.metadata",
  9426. ".signature.p7s",
  9427. "LICENSE.TXT",
  9428. "THIRD-PARTY-NOTICES.TXT",
  9429. "lib/MonoAndroid10/_._",
  9430. "lib/MonoTouch10/_._",
  9431. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9432. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9433. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9434. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9435. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9436. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9437. "lib/xamarinios10/_._",
  9438. "lib/xamarinmac20/_._",
  9439. "lib/xamarintvos10/_._",
  9440. "lib/xamarinwatchos10/_._",
  9441. "ref/MonoAndroid10/_._",
  9442. "ref/MonoTouch10/_._",
  9443. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9444. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9445. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9446. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9447. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9448. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9449. "ref/xamarinios10/_._",
  9450. "ref/xamarinmac20/_._",
  9451. "ref/xamarintvos10/_._",
  9452. "ref/xamarinwatchos10/_._",
  9453. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9454. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9455. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9456. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9457. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9458. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9459. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9460. "system.security.cryptography.protecteddata.nuspec",
  9461. "useSharedDesignerContext.txt",
  9462. "version.txt"
  9463. ]
  9464. },
  9465. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9466. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9467. "type": "package",
  9468. "path": "system.security.cryptography.x509certificates/4.3.0",
  9469. "files": [
  9470. ".nupkg.metadata",
  9471. ".signature.p7s",
  9472. "ThirdPartyNotices.txt",
  9473. "dotnet_library_license.txt",
  9474. "lib/MonoAndroid10/_._",
  9475. "lib/MonoTouch10/_._",
  9476. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9477. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9478. "lib/xamarinios10/_._",
  9479. "lib/xamarinmac20/_._",
  9480. "lib/xamarintvos10/_._",
  9481. "lib/xamarinwatchos10/_._",
  9482. "ref/MonoAndroid10/_._",
  9483. "ref/MonoTouch10/_._",
  9484. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9485. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9486. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9487. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9488. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9489. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9490. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9491. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9492. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9493. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9494. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9495. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9496. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9497. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9498. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9499. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9500. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9501. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9502. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9503. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9504. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9505. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9506. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9507. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9508. "ref/xamarinios10/_._",
  9509. "ref/xamarinmac20/_._",
  9510. "ref/xamarintvos10/_._",
  9511. "ref/xamarinwatchos10/_._",
  9512. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9513. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9514. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9515. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9516. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9517. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9518. "system.security.cryptography.x509certificates.nuspec"
  9519. ]
  9520. },
  9521. "System.Security.Permissions/4.7.0": {
  9522. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9523. "type": "package",
  9524. "path": "system.security.permissions/4.7.0",
  9525. "files": [
  9526. ".nupkg.metadata",
  9527. ".signature.p7s",
  9528. "LICENSE.TXT",
  9529. "THIRD-PARTY-NOTICES.TXT",
  9530. "lib/net461/System.Security.Permissions.dll",
  9531. "lib/net461/System.Security.Permissions.xml",
  9532. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9533. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9534. "lib/netstandard2.0/System.Security.Permissions.dll",
  9535. "lib/netstandard2.0/System.Security.Permissions.xml",
  9536. "ref/net461/System.Security.Permissions.dll",
  9537. "ref/net461/System.Security.Permissions.xml",
  9538. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9539. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9540. "ref/netstandard2.0/System.Security.Permissions.dll",
  9541. "ref/netstandard2.0/System.Security.Permissions.xml",
  9542. "system.security.permissions.4.7.0.nupkg.sha512",
  9543. "system.security.permissions.nuspec",
  9544. "useSharedDesignerContext.txt",
  9545. "version.txt"
  9546. ]
  9547. },
  9548. "System.Security.Principal/4.3.0": {
  9549. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9550. "type": "package",
  9551. "path": "system.security.principal/4.3.0",
  9552. "files": [
  9553. ".nupkg.metadata",
  9554. ".signature.p7s",
  9555. "ThirdPartyNotices.txt",
  9556. "dotnet_library_license.txt",
  9557. "lib/MonoAndroid10/_._",
  9558. "lib/MonoTouch10/_._",
  9559. "lib/net45/_._",
  9560. "lib/netcore50/System.Security.Principal.dll",
  9561. "lib/netstandard1.0/System.Security.Principal.dll",
  9562. "lib/portable-net45+win8+wp8+wpa81/_._",
  9563. "lib/win8/_._",
  9564. "lib/wp80/_._",
  9565. "lib/wpa81/_._",
  9566. "lib/xamarinios10/_._",
  9567. "lib/xamarinmac20/_._",
  9568. "lib/xamarintvos10/_._",
  9569. "lib/xamarinwatchos10/_._",
  9570. "ref/MonoAndroid10/_._",
  9571. "ref/MonoTouch10/_._",
  9572. "ref/net45/_._",
  9573. "ref/netcore50/System.Security.Principal.dll",
  9574. "ref/netcore50/System.Security.Principal.xml",
  9575. "ref/netcore50/de/System.Security.Principal.xml",
  9576. "ref/netcore50/es/System.Security.Principal.xml",
  9577. "ref/netcore50/fr/System.Security.Principal.xml",
  9578. "ref/netcore50/it/System.Security.Principal.xml",
  9579. "ref/netcore50/ja/System.Security.Principal.xml",
  9580. "ref/netcore50/ko/System.Security.Principal.xml",
  9581. "ref/netcore50/ru/System.Security.Principal.xml",
  9582. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9583. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9584. "ref/netstandard1.0/System.Security.Principal.dll",
  9585. "ref/netstandard1.0/System.Security.Principal.xml",
  9586. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9587. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9588. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9589. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9590. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9591. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9592. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9593. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9594. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9595. "ref/portable-net45+win8+wp8+wpa81/_._",
  9596. "ref/win8/_._",
  9597. "ref/wp80/_._",
  9598. "ref/wpa81/_._",
  9599. "ref/xamarinios10/_._",
  9600. "ref/xamarinmac20/_._",
  9601. "ref/xamarintvos10/_._",
  9602. "ref/xamarinwatchos10/_._",
  9603. "system.security.principal.4.3.0.nupkg.sha512",
  9604. "system.security.principal.nuspec"
  9605. ]
  9606. },
  9607. "System.Security.Principal.Windows/4.7.0": {
  9608. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9609. "type": "package",
  9610. "path": "system.security.principal.windows/4.7.0",
  9611. "files": [
  9612. ".nupkg.metadata",
  9613. ".signature.p7s",
  9614. "LICENSE.TXT",
  9615. "THIRD-PARTY-NOTICES.TXT",
  9616. "lib/net46/System.Security.Principal.Windows.dll",
  9617. "lib/net461/System.Security.Principal.Windows.dll",
  9618. "lib/net461/System.Security.Principal.Windows.xml",
  9619. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9620. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9621. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9622. "lib/uap10.0.16299/_._",
  9623. "ref/net46/System.Security.Principal.Windows.dll",
  9624. "ref/net461/System.Security.Principal.Windows.dll",
  9625. "ref/net461/System.Security.Principal.Windows.xml",
  9626. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9627. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9628. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9629. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9630. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9631. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9632. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9633. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9634. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9635. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9636. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9637. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9638. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9639. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9640. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9641. "ref/uap10.0.16299/_._",
  9642. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9643. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9644. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9645. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9646. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9647. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9648. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9649. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9650. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9651. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9652. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9653. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9654. "runtimes/win/lib/uap10.0.16299/_._",
  9655. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9656. "system.security.principal.windows.nuspec",
  9657. "useSharedDesignerContext.txt",
  9658. "version.txt"
  9659. ]
  9660. },
  9661. "System.Text.Encoding/4.3.0": {
  9662. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9663. "type": "package",
  9664. "path": "system.text.encoding/4.3.0",
  9665. "files": [
  9666. ".nupkg.metadata",
  9667. ".signature.p7s",
  9668. "ThirdPartyNotices.txt",
  9669. "dotnet_library_license.txt",
  9670. "lib/MonoAndroid10/_._",
  9671. "lib/MonoTouch10/_._",
  9672. "lib/net45/_._",
  9673. "lib/portable-net45+win8+wp8+wpa81/_._",
  9674. "lib/win8/_._",
  9675. "lib/wp80/_._",
  9676. "lib/wpa81/_._",
  9677. "lib/xamarinios10/_._",
  9678. "lib/xamarinmac20/_._",
  9679. "lib/xamarintvos10/_._",
  9680. "lib/xamarinwatchos10/_._",
  9681. "ref/MonoAndroid10/_._",
  9682. "ref/MonoTouch10/_._",
  9683. "ref/net45/_._",
  9684. "ref/netcore50/System.Text.Encoding.dll",
  9685. "ref/netcore50/System.Text.Encoding.xml",
  9686. "ref/netcore50/de/System.Text.Encoding.xml",
  9687. "ref/netcore50/es/System.Text.Encoding.xml",
  9688. "ref/netcore50/fr/System.Text.Encoding.xml",
  9689. "ref/netcore50/it/System.Text.Encoding.xml",
  9690. "ref/netcore50/ja/System.Text.Encoding.xml",
  9691. "ref/netcore50/ko/System.Text.Encoding.xml",
  9692. "ref/netcore50/ru/System.Text.Encoding.xml",
  9693. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9694. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9695. "ref/netstandard1.0/System.Text.Encoding.dll",
  9696. "ref/netstandard1.0/System.Text.Encoding.xml",
  9697. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9698. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9699. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9700. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9701. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9702. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9703. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9704. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9705. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9706. "ref/netstandard1.3/System.Text.Encoding.dll",
  9707. "ref/netstandard1.3/System.Text.Encoding.xml",
  9708. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9709. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9710. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9711. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9712. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9713. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9714. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9715. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9716. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9717. "ref/portable-net45+win8+wp8+wpa81/_._",
  9718. "ref/win8/_._",
  9719. "ref/wp80/_._",
  9720. "ref/wpa81/_._",
  9721. "ref/xamarinios10/_._",
  9722. "ref/xamarinmac20/_._",
  9723. "ref/xamarintvos10/_._",
  9724. "ref/xamarinwatchos10/_._",
  9725. "system.text.encoding.4.3.0.nupkg.sha512",
  9726. "system.text.encoding.nuspec"
  9727. ]
  9728. },
  9729. "System.Text.Encoding.CodePages/5.0.0": {
  9730. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9731. "type": "package",
  9732. "path": "system.text.encoding.codepages/5.0.0",
  9733. "files": [
  9734. ".nupkg.metadata",
  9735. ".signature.p7s",
  9736. "Icon.png",
  9737. "LICENSE.TXT",
  9738. "THIRD-PARTY-NOTICES.TXT",
  9739. "lib/MonoAndroid10/_._",
  9740. "lib/MonoTouch10/_._",
  9741. "lib/net46/System.Text.Encoding.CodePages.dll",
  9742. "lib/net461/System.Text.Encoding.CodePages.dll",
  9743. "lib/net461/System.Text.Encoding.CodePages.xml",
  9744. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9745. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9746. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9747. "lib/xamarinios10/_._",
  9748. "lib/xamarinmac20/_._",
  9749. "lib/xamarintvos10/_._",
  9750. "lib/xamarinwatchos10/_._",
  9751. "ref/MonoAndroid10/_._",
  9752. "ref/MonoTouch10/_._",
  9753. "ref/xamarinios10/_._",
  9754. "ref/xamarinmac20/_._",
  9755. "ref/xamarintvos10/_._",
  9756. "ref/xamarinwatchos10/_._",
  9757. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9758. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9759. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9760. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9761. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9762. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9763. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9764. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9765. "system.text.encoding.codepages.nuspec",
  9766. "useSharedDesignerContext.txt",
  9767. "version.txt"
  9768. ]
  9769. },
  9770. "System.Text.Encoding.Extensions/4.3.0": {
  9771. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9772. "type": "package",
  9773. "path": "system.text.encoding.extensions/4.3.0",
  9774. "files": [
  9775. ".nupkg.metadata",
  9776. ".signature.p7s",
  9777. "ThirdPartyNotices.txt",
  9778. "dotnet_library_license.txt",
  9779. "lib/MonoAndroid10/_._",
  9780. "lib/MonoTouch10/_._",
  9781. "lib/net45/_._",
  9782. "lib/portable-net45+win8+wp8+wpa81/_._",
  9783. "lib/win8/_._",
  9784. "lib/wp80/_._",
  9785. "lib/wpa81/_._",
  9786. "lib/xamarinios10/_._",
  9787. "lib/xamarinmac20/_._",
  9788. "lib/xamarintvos10/_._",
  9789. "lib/xamarinwatchos10/_._",
  9790. "ref/MonoAndroid10/_._",
  9791. "ref/MonoTouch10/_._",
  9792. "ref/net45/_._",
  9793. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9794. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9795. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9796. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9797. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9798. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9799. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9800. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9801. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9802. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9803. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9804. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9805. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9806. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9807. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9808. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9809. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9810. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9811. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9812. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9813. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9814. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9815. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9816. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9817. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9818. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9819. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9820. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9821. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9822. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9823. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9824. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9825. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9826. "ref/portable-net45+win8+wp8+wpa81/_._",
  9827. "ref/win8/_._",
  9828. "ref/wp80/_._",
  9829. "ref/wpa81/_._",
  9830. "ref/xamarinios10/_._",
  9831. "ref/xamarinmac20/_._",
  9832. "ref/xamarintvos10/_._",
  9833. "ref/xamarinwatchos10/_._",
  9834. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9835. "system.text.encoding.extensions.nuspec"
  9836. ]
  9837. },
  9838. "System.Text.Encodings.Web/4.7.0": {
  9839. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  9840. "type": "package",
  9841. "path": "system.text.encodings.web/4.7.0",
  9842. "files": [
  9843. ".nupkg.metadata",
  9844. ".signature.p7s",
  9845. "LICENSE.TXT",
  9846. "THIRD-PARTY-NOTICES.TXT",
  9847. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9848. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9849. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9850. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9851. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  9852. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  9853. "system.text.encodings.web.4.7.0.nupkg.sha512",
  9854. "system.text.encodings.web.nuspec",
  9855. "useSharedDesignerContext.txt",
  9856. "version.txt"
  9857. ]
  9858. },
  9859. "System.Text.RegularExpressions/4.3.0": {
  9860. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9861. "type": "package",
  9862. "path": "system.text.regularexpressions/4.3.0",
  9863. "files": [
  9864. ".nupkg.metadata",
  9865. ".signature.p7s",
  9866. "ThirdPartyNotices.txt",
  9867. "dotnet_library_license.txt",
  9868. "lib/MonoAndroid10/_._",
  9869. "lib/MonoTouch10/_._",
  9870. "lib/net45/_._",
  9871. "lib/net463/System.Text.RegularExpressions.dll",
  9872. "lib/netcore50/System.Text.RegularExpressions.dll",
  9873. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9874. "lib/portable-net45+win8+wp8+wpa81/_._",
  9875. "lib/win8/_._",
  9876. "lib/wp80/_._",
  9877. "lib/wpa81/_._",
  9878. "lib/xamarinios10/_._",
  9879. "lib/xamarinmac20/_._",
  9880. "lib/xamarintvos10/_._",
  9881. "lib/xamarinwatchos10/_._",
  9882. "ref/MonoAndroid10/_._",
  9883. "ref/MonoTouch10/_._",
  9884. "ref/net45/_._",
  9885. "ref/net463/System.Text.RegularExpressions.dll",
  9886. "ref/netcore50/System.Text.RegularExpressions.dll",
  9887. "ref/netcore50/System.Text.RegularExpressions.xml",
  9888. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9889. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9890. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9891. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9892. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9893. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9894. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9895. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9896. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9897. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9898. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9899. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9900. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9901. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9902. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9903. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9904. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9905. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9906. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9907. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9908. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9909. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9910. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9911. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9912. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9913. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9914. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9915. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9916. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9917. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9918. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9919. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9920. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9921. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9922. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9923. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9924. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9925. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9926. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9927. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9928. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9929. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9930. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9931. "ref/portable-net45+win8+wp8+wpa81/_._",
  9932. "ref/win8/_._",
  9933. "ref/wp80/_._",
  9934. "ref/wpa81/_._",
  9935. "ref/xamarinios10/_._",
  9936. "ref/xamarinmac20/_._",
  9937. "ref/xamarintvos10/_._",
  9938. "ref/xamarinwatchos10/_._",
  9939. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9940. "system.text.regularexpressions.nuspec"
  9941. ]
  9942. },
  9943. "System.Threading/4.3.0": {
  9944. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9945. "type": "package",
  9946. "path": "system.threading/4.3.0",
  9947. "files": [
  9948. ".nupkg.metadata",
  9949. ".signature.p7s",
  9950. "ThirdPartyNotices.txt",
  9951. "dotnet_library_license.txt",
  9952. "lib/MonoAndroid10/_._",
  9953. "lib/MonoTouch10/_._",
  9954. "lib/net45/_._",
  9955. "lib/netcore50/System.Threading.dll",
  9956. "lib/netstandard1.3/System.Threading.dll",
  9957. "lib/portable-net45+win8+wp8+wpa81/_._",
  9958. "lib/win8/_._",
  9959. "lib/wp80/_._",
  9960. "lib/wpa81/_._",
  9961. "lib/xamarinios10/_._",
  9962. "lib/xamarinmac20/_._",
  9963. "lib/xamarintvos10/_._",
  9964. "lib/xamarinwatchos10/_._",
  9965. "ref/MonoAndroid10/_._",
  9966. "ref/MonoTouch10/_._",
  9967. "ref/net45/_._",
  9968. "ref/netcore50/System.Threading.dll",
  9969. "ref/netcore50/System.Threading.xml",
  9970. "ref/netcore50/de/System.Threading.xml",
  9971. "ref/netcore50/es/System.Threading.xml",
  9972. "ref/netcore50/fr/System.Threading.xml",
  9973. "ref/netcore50/it/System.Threading.xml",
  9974. "ref/netcore50/ja/System.Threading.xml",
  9975. "ref/netcore50/ko/System.Threading.xml",
  9976. "ref/netcore50/ru/System.Threading.xml",
  9977. "ref/netcore50/zh-hans/System.Threading.xml",
  9978. "ref/netcore50/zh-hant/System.Threading.xml",
  9979. "ref/netstandard1.0/System.Threading.dll",
  9980. "ref/netstandard1.0/System.Threading.xml",
  9981. "ref/netstandard1.0/de/System.Threading.xml",
  9982. "ref/netstandard1.0/es/System.Threading.xml",
  9983. "ref/netstandard1.0/fr/System.Threading.xml",
  9984. "ref/netstandard1.0/it/System.Threading.xml",
  9985. "ref/netstandard1.0/ja/System.Threading.xml",
  9986. "ref/netstandard1.0/ko/System.Threading.xml",
  9987. "ref/netstandard1.0/ru/System.Threading.xml",
  9988. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9989. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9990. "ref/netstandard1.3/System.Threading.dll",
  9991. "ref/netstandard1.3/System.Threading.xml",
  9992. "ref/netstandard1.3/de/System.Threading.xml",
  9993. "ref/netstandard1.3/es/System.Threading.xml",
  9994. "ref/netstandard1.3/fr/System.Threading.xml",
  9995. "ref/netstandard1.3/it/System.Threading.xml",
  9996. "ref/netstandard1.3/ja/System.Threading.xml",
  9997. "ref/netstandard1.3/ko/System.Threading.xml",
  9998. "ref/netstandard1.3/ru/System.Threading.xml",
  9999. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  10000. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  10001. "ref/portable-net45+win8+wp8+wpa81/_._",
  10002. "ref/win8/_._",
  10003. "ref/wp80/_._",
  10004. "ref/wpa81/_._",
  10005. "ref/xamarinios10/_._",
  10006. "ref/xamarinmac20/_._",
  10007. "ref/xamarintvos10/_._",
  10008. "ref/xamarinwatchos10/_._",
  10009. "runtimes/aot/lib/netcore50/System.Threading.dll",
  10010. "system.threading.4.3.0.nupkg.sha512",
  10011. "system.threading.nuspec"
  10012. ]
  10013. },
  10014. "System.Threading.Channels/7.0.0": {
  10015. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  10016. "type": "package",
  10017. "path": "system.threading.channels/7.0.0",
  10018. "files": [
  10019. ".nupkg.metadata",
  10020. ".signature.p7s",
  10021. "Icon.png",
  10022. "LICENSE.TXT",
  10023. "THIRD-PARTY-NOTICES.TXT",
  10024. "buildTransitive/net461/System.Threading.Channels.targets",
  10025. "buildTransitive/net462/_._",
  10026. "buildTransitive/net6.0/_._",
  10027. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  10028. "lib/net462/System.Threading.Channels.dll",
  10029. "lib/net462/System.Threading.Channels.xml",
  10030. "lib/net6.0/System.Threading.Channels.dll",
  10031. "lib/net6.0/System.Threading.Channels.xml",
  10032. "lib/net7.0/System.Threading.Channels.dll",
  10033. "lib/net7.0/System.Threading.Channels.xml",
  10034. "lib/netstandard2.0/System.Threading.Channels.dll",
  10035. "lib/netstandard2.0/System.Threading.Channels.xml",
  10036. "lib/netstandard2.1/System.Threading.Channels.dll",
  10037. "lib/netstandard2.1/System.Threading.Channels.xml",
  10038. "system.threading.channels.7.0.0.nupkg.sha512",
  10039. "system.threading.channels.nuspec",
  10040. "useSharedDesignerContext.txt"
  10041. ]
  10042. },
  10043. "System.Threading.Tasks/4.3.0": {
  10044. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  10045. "type": "package",
  10046. "path": "system.threading.tasks/4.3.0",
  10047. "files": [
  10048. ".nupkg.metadata",
  10049. ".signature.p7s",
  10050. "ThirdPartyNotices.txt",
  10051. "dotnet_library_license.txt",
  10052. "lib/MonoAndroid10/_._",
  10053. "lib/MonoTouch10/_._",
  10054. "lib/net45/_._",
  10055. "lib/portable-net45+win8+wp8+wpa81/_._",
  10056. "lib/win8/_._",
  10057. "lib/wp80/_._",
  10058. "lib/wpa81/_._",
  10059. "lib/xamarinios10/_._",
  10060. "lib/xamarinmac20/_._",
  10061. "lib/xamarintvos10/_._",
  10062. "lib/xamarinwatchos10/_._",
  10063. "ref/MonoAndroid10/_._",
  10064. "ref/MonoTouch10/_._",
  10065. "ref/net45/_._",
  10066. "ref/netcore50/System.Threading.Tasks.dll",
  10067. "ref/netcore50/System.Threading.Tasks.xml",
  10068. "ref/netcore50/de/System.Threading.Tasks.xml",
  10069. "ref/netcore50/es/System.Threading.Tasks.xml",
  10070. "ref/netcore50/fr/System.Threading.Tasks.xml",
  10071. "ref/netcore50/it/System.Threading.Tasks.xml",
  10072. "ref/netcore50/ja/System.Threading.Tasks.xml",
  10073. "ref/netcore50/ko/System.Threading.Tasks.xml",
  10074. "ref/netcore50/ru/System.Threading.Tasks.xml",
  10075. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  10076. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  10077. "ref/netstandard1.0/System.Threading.Tasks.dll",
  10078. "ref/netstandard1.0/System.Threading.Tasks.xml",
  10079. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  10080. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  10081. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  10082. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  10083. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  10084. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  10085. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  10086. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  10087. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  10088. "ref/netstandard1.3/System.Threading.Tasks.dll",
  10089. "ref/netstandard1.3/System.Threading.Tasks.xml",
  10090. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  10091. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  10092. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  10093. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  10094. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  10095. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  10096. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  10097. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  10098. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  10099. "ref/portable-net45+win8+wp8+wpa81/_._",
  10100. "ref/win8/_._",
  10101. "ref/wp80/_._",
  10102. "ref/wpa81/_._",
  10103. "ref/xamarinios10/_._",
  10104. "ref/xamarinmac20/_._",
  10105. "ref/xamarintvos10/_._",
  10106. "ref/xamarinwatchos10/_._",
  10107. "system.threading.tasks.4.3.0.nupkg.sha512",
  10108. "system.threading.tasks.nuspec"
  10109. ]
  10110. },
  10111. "System.Threading.Tasks.Extensions/4.3.0": {
  10112. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  10113. "type": "package",
  10114. "path": "system.threading.tasks.extensions/4.3.0",
  10115. "files": [
  10116. ".nupkg.metadata",
  10117. ".signature.p7s",
  10118. "ThirdPartyNotices.txt",
  10119. "dotnet_library_license.txt",
  10120. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  10121. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  10122. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  10123. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  10124. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  10125. "system.threading.tasks.extensions.nuspec"
  10126. ]
  10127. },
  10128. "System.Threading.Thread/4.3.0": {
  10129. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  10130. "type": "package",
  10131. "path": "system.threading.thread/4.3.0",
  10132. "files": [
  10133. ".nupkg.metadata",
  10134. ".signature.p7s",
  10135. "ThirdPartyNotices.txt",
  10136. "dotnet_library_license.txt",
  10137. "lib/MonoAndroid10/_._",
  10138. "lib/MonoTouch10/_._",
  10139. "lib/net46/System.Threading.Thread.dll",
  10140. "lib/netcore50/_._",
  10141. "lib/netstandard1.3/System.Threading.Thread.dll",
  10142. "lib/xamarinios10/_._",
  10143. "lib/xamarinmac20/_._",
  10144. "lib/xamarintvos10/_._",
  10145. "lib/xamarinwatchos10/_._",
  10146. "ref/MonoAndroid10/_._",
  10147. "ref/MonoTouch10/_._",
  10148. "ref/net46/System.Threading.Thread.dll",
  10149. "ref/netstandard1.3/System.Threading.Thread.dll",
  10150. "ref/netstandard1.3/System.Threading.Thread.xml",
  10151. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  10152. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  10153. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  10154. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  10155. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  10156. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  10157. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  10158. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  10159. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  10160. "ref/xamarinios10/_._",
  10161. "ref/xamarinmac20/_._",
  10162. "ref/xamarintvos10/_._",
  10163. "ref/xamarinwatchos10/_._",
  10164. "system.threading.thread.4.3.0.nupkg.sha512",
  10165. "system.threading.thread.nuspec"
  10166. ]
  10167. },
  10168. "System.Threading.ThreadPool/4.3.0": {
  10169. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  10170. "type": "package",
  10171. "path": "system.threading.threadpool/4.3.0",
  10172. "files": [
  10173. ".nupkg.metadata",
  10174. ".signature.p7s",
  10175. "ThirdPartyNotices.txt",
  10176. "dotnet_library_license.txt",
  10177. "lib/MonoAndroid10/_._",
  10178. "lib/MonoTouch10/_._",
  10179. "lib/net46/System.Threading.ThreadPool.dll",
  10180. "lib/netcore50/_._",
  10181. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  10182. "lib/xamarinios10/_._",
  10183. "lib/xamarinmac20/_._",
  10184. "lib/xamarintvos10/_._",
  10185. "lib/xamarinwatchos10/_._",
  10186. "ref/MonoAndroid10/_._",
  10187. "ref/MonoTouch10/_._",
  10188. "ref/net46/System.Threading.ThreadPool.dll",
  10189. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  10190. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  10191. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  10192. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  10193. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  10194. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  10195. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  10196. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  10197. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  10198. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  10199. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  10200. "ref/xamarinios10/_._",
  10201. "ref/xamarinmac20/_._",
  10202. "ref/xamarintvos10/_._",
  10203. "ref/xamarinwatchos10/_._",
  10204. "system.threading.threadpool.4.3.0.nupkg.sha512",
  10205. "system.threading.threadpool.nuspec"
  10206. ]
  10207. },
  10208. "System.Threading.Timer/4.3.0": {
  10209. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  10210. "type": "package",
  10211. "path": "system.threading.timer/4.3.0",
  10212. "files": [
  10213. ".nupkg.metadata",
  10214. ".signature.p7s",
  10215. "ThirdPartyNotices.txt",
  10216. "dotnet_library_license.txt",
  10217. "lib/MonoAndroid10/_._",
  10218. "lib/MonoTouch10/_._",
  10219. "lib/net451/_._",
  10220. "lib/portable-net451+win81+wpa81/_._",
  10221. "lib/win81/_._",
  10222. "lib/wpa81/_._",
  10223. "lib/xamarinios10/_._",
  10224. "lib/xamarinmac20/_._",
  10225. "lib/xamarintvos10/_._",
  10226. "lib/xamarinwatchos10/_._",
  10227. "ref/MonoAndroid10/_._",
  10228. "ref/MonoTouch10/_._",
  10229. "ref/net451/_._",
  10230. "ref/netcore50/System.Threading.Timer.dll",
  10231. "ref/netcore50/System.Threading.Timer.xml",
  10232. "ref/netcore50/de/System.Threading.Timer.xml",
  10233. "ref/netcore50/es/System.Threading.Timer.xml",
  10234. "ref/netcore50/fr/System.Threading.Timer.xml",
  10235. "ref/netcore50/it/System.Threading.Timer.xml",
  10236. "ref/netcore50/ja/System.Threading.Timer.xml",
  10237. "ref/netcore50/ko/System.Threading.Timer.xml",
  10238. "ref/netcore50/ru/System.Threading.Timer.xml",
  10239. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10240. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10241. "ref/netstandard1.2/System.Threading.Timer.dll",
  10242. "ref/netstandard1.2/System.Threading.Timer.xml",
  10243. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10244. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10245. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10246. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10247. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10248. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10249. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10250. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10251. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10252. "ref/portable-net451+win81+wpa81/_._",
  10253. "ref/win81/_._",
  10254. "ref/wpa81/_._",
  10255. "ref/xamarinios10/_._",
  10256. "ref/xamarinmac20/_._",
  10257. "ref/xamarintvos10/_._",
  10258. "ref/xamarinwatchos10/_._",
  10259. "system.threading.timer.4.3.0.nupkg.sha512",
  10260. "system.threading.timer.nuspec"
  10261. ]
  10262. },
  10263. "System.Windows.Extensions/4.7.0": {
  10264. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  10265. "type": "package",
  10266. "path": "system.windows.extensions/4.7.0",
  10267. "files": [
  10268. ".nupkg.metadata",
  10269. ".signature.p7s",
  10270. "LICENSE.TXT",
  10271. "THIRD-PARTY-NOTICES.TXT",
  10272. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10273. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10274. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  10275. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  10276. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10277. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10278. "system.windows.extensions.4.7.0.nupkg.sha512",
  10279. "system.windows.extensions.nuspec",
  10280. "useSharedDesignerContext.txt",
  10281. "version.txt"
  10282. ]
  10283. },
  10284. "System.Xml.ReaderWriter/4.3.0": {
  10285. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10286. "type": "package",
  10287. "path": "system.xml.readerwriter/4.3.0",
  10288. "files": [
  10289. ".nupkg.metadata",
  10290. ".signature.p7s",
  10291. "ThirdPartyNotices.txt",
  10292. "dotnet_library_license.txt",
  10293. "lib/MonoAndroid10/_._",
  10294. "lib/MonoTouch10/_._",
  10295. "lib/net45/_._",
  10296. "lib/net46/System.Xml.ReaderWriter.dll",
  10297. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10298. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10299. "lib/portable-net45+win8+wp8+wpa81/_._",
  10300. "lib/win8/_._",
  10301. "lib/wp80/_._",
  10302. "lib/wpa81/_._",
  10303. "lib/xamarinios10/_._",
  10304. "lib/xamarinmac20/_._",
  10305. "lib/xamarintvos10/_._",
  10306. "lib/xamarinwatchos10/_._",
  10307. "ref/MonoAndroid10/_._",
  10308. "ref/MonoTouch10/_._",
  10309. "ref/net45/_._",
  10310. "ref/net46/System.Xml.ReaderWriter.dll",
  10311. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10312. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10313. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10314. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10315. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10316. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10317. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10318. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10319. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10320. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10321. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10322. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10323. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10324. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10325. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10326. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10327. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10328. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10329. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10330. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10331. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10332. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10333. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10334. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10335. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10336. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10337. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10338. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10339. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10340. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10341. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10342. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10343. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10344. "ref/portable-net45+win8+wp8+wpa81/_._",
  10345. "ref/win8/_._",
  10346. "ref/wp80/_._",
  10347. "ref/wpa81/_._",
  10348. "ref/xamarinios10/_._",
  10349. "ref/xamarinmac20/_._",
  10350. "ref/xamarintvos10/_._",
  10351. "ref/xamarinwatchos10/_._",
  10352. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10353. "system.xml.readerwriter.nuspec"
  10354. ]
  10355. },
  10356. "System.Xml.XDocument/4.3.0": {
  10357. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10358. "type": "package",
  10359. "path": "system.xml.xdocument/4.3.0",
  10360. "files": [
  10361. ".nupkg.metadata",
  10362. ".signature.p7s",
  10363. "ThirdPartyNotices.txt",
  10364. "dotnet_library_license.txt",
  10365. "lib/MonoAndroid10/_._",
  10366. "lib/MonoTouch10/_._",
  10367. "lib/net45/_._",
  10368. "lib/netcore50/System.Xml.XDocument.dll",
  10369. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10370. "lib/portable-net45+win8+wp8+wpa81/_._",
  10371. "lib/win8/_._",
  10372. "lib/wp80/_._",
  10373. "lib/wpa81/_._",
  10374. "lib/xamarinios10/_._",
  10375. "lib/xamarinmac20/_._",
  10376. "lib/xamarintvos10/_._",
  10377. "lib/xamarinwatchos10/_._",
  10378. "ref/MonoAndroid10/_._",
  10379. "ref/MonoTouch10/_._",
  10380. "ref/net45/_._",
  10381. "ref/netcore50/System.Xml.XDocument.dll",
  10382. "ref/netcore50/System.Xml.XDocument.xml",
  10383. "ref/netcore50/de/System.Xml.XDocument.xml",
  10384. "ref/netcore50/es/System.Xml.XDocument.xml",
  10385. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10386. "ref/netcore50/it/System.Xml.XDocument.xml",
  10387. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10388. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10389. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10390. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10391. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10392. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10393. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10394. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10395. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10396. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10397. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10398. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10399. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10400. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10401. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10402. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10403. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10404. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10405. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10406. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10407. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10408. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10409. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10410. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10411. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10412. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10413. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10414. "ref/portable-net45+win8+wp8+wpa81/_._",
  10415. "ref/win8/_._",
  10416. "ref/wp80/_._",
  10417. "ref/wpa81/_._",
  10418. "ref/xamarinios10/_._",
  10419. "ref/xamarinmac20/_._",
  10420. "ref/xamarintvos10/_._",
  10421. "ref/xamarinwatchos10/_._",
  10422. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10423. "system.xml.xdocument.nuspec"
  10424. ]
  10425. },
  10426. "System.Xml.XmlDocument/4.3.0": {
  10427. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10428. "type": "package",
  10429. "path": "system.xml.xmldocument/4.3.0",
  10430. "files": [
  10431. ".nupkg.metadata",
  10432. ".signature.p7s",
  10433. "ThirdPartyNotices.txt",
  10434. "dotnet_library_license.txt",
  10435. "lib/MonoAndroid10/_._",
  10436. "lib/MonoTouch10/_._",
  10437. "lib/net46/System.Xml.XmlDocument.dll",
  10438. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10439. "lib/xamarinios10/_._",
  10440. "lib/xamarinmac20/_._",
  10441. "lib/xamarintvos10/_._",
  10442. "lib/xamarinwatchos10/_._",
  10443. "ref/MonoAndroid10/_._",
  10444. "ref/MonoTouch10/_._",
  10445. "ref/net46/System.Xml.XmlDocument.dll",
  10446. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10447. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10448. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10449. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10450. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10451. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10452. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10453. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10454. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10455. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10456. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10457. "ref/xamarinios10/_._",
  10458. "ref/xamarinmac20/_._",
  10459. "ref/xamarintvos10/_._",
  10460. "ref/xamarinwatchos10/_._",
  10461. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10462. "system.xml.xmldocument.nuspec"
  10463. ]
  10464. },
  10465. "ZXing.Net/0.16.9": {
  10466. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10467. "type": "package",
  10468. "path": "zxing.net/0.16.9",
  10469. "files": [
  10470. ".nupkg.metadata",
  10471. ".signature.p7s",
  10472. "lib/native/zxing.XML",
  10473. "lib/native/zxing.pri",
  10474. "lib/native/zxing.winmd",
  10475. "lib/net20-cf/zxing.ce2.0.dll",
  10476. "lib/net20-cf/zxing.ce2.0.xml",
  10477. "lib/net20/zxing.XML",
  10478. "lib/net20/zxing.dll",
  10479. "lib/net35-cf/zxing.ce3.5.dll",
  10480. "lib/net35-cf/zxing.ce3.5.xml",
  10481. "lib/net35/zxing.XML",
  10482. "lib/net35/zxing.dll",
  10483. "lib/net40/zxing.XML",
  10484. "lib/net40/zxing.dll",
  10485. "lib/net40/zxing.presentation.XML",
  10486. "lib/net40/zxing.presentation.dll",
  10487. "lib/net45/zxing.XML",
  10488. "lib/net45/zxing.dll",
  10489. "lib/net45/zxing.presentation.XML",
  10490. "lib/net45/zxing.presentation.dll",
  10491. "lib/net461/zxing.XML",
  10492. "lib/net461/zxing.dll",
  10493. "lib/net461/zxing.presentation.XML",
  10494. "lib/net461/zxing.presentation.dll",
  10495. "lib/net47/zxing.XML",
  10496. "lib/net47/zxing.dll",
  10497. "lib/net47/zxing.presentation.XML",
  10498. "lib/net47/zxing.presentation.dll",
  10499. "lib/net48/zxing.XML",
  10500. "lib/net48/zxing.dll",
  10501. "lib/net48/zxing.presentation.XML",
  10502. "lib/net48/zxing.presentation.dll",
  10503. "lib/net5.0/zxing.XML",
  10504. "lib/net5.0/zxing.dll",
  10505. "lib/net6.0/zxing.XML",
  10506. "lib/net6.0/zxing.dll",
  10507. "lib/net7.0/zxing.XML",
  10508. "lib/net7.0/zxing.dll",
  10509. "lib/netcoreapp3.0/zxing.dll",
  10510. "lib/netcoreapp3.0/zxing.xml",
  10511. "lib/netcoreapp3.1/zxing.dll",
  10512. "lib/netcoreapp3.1/zxing.xml",
  10513. "lib/netstandard1.0/zxing.dll",
  10514. "lib/netstandard1.0/zxing.xml",
  10515. "lib/netstandard1.1/zxing.dll",
  10516. "lib/netstandard1.1/zxing.xml",
  10517. "lib/netstandard1.3/zxing.dll",
  10518. "lib/netstandard1.3/zxing.xml",
  10519. "lib/netstandard2.0/zxing.dll",
  10520. "lib/netstandard2.0/zxing.xml",
  10521. "lib/netstandard2.1/zxing.dll",
  10522. "lib/netstandard2.1/zxing.xml",
  10523. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10524. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10525. "lib/sl3-wp/zxing.wp7.0.XML",
  10526. "lib/sl3-wp/zxing.wp7.0.dll",
  10527. "lib/sl4-wp71/zxing.wp7.1.XML",
  10528. "lib/sl4-wp71/zxing.wp7.1.dll",
  10529. "lib/sl4/zxing.sl4.XML",
  10530. "lib/sl4/zxing.sl4.dll",
  10531. "lib/sl5/zxing.sl5.XML",
  10532. "lib/sl5/zxing.sl5.dll",
  10533. "lib/uap10/zxing.dll",
  10534. "lib/uap10/zxing.pri",
  10535. "lib/uap10/zxing.xml",
  10536. "lib/windows8-managed/zxing.winrt.XML",
  10537. "lib/windows8-managed/zxing.winrt.dll",
  10538. "lib/windows8/zxing.XML",
  10539. "lib/windows8/zxing.pri",
  10540. "lib/windows8/zxing.winmd",
  10541. "lib/wp8/zxing.wp8.0.XML",
  10542. "lib/wp8/zxing.wp8.0.dll",
  10543. "logo.jpg",
  10544. "zxing.net.0.16.9.nupkg.sha512",
  10545. "zxing.net.nuspec"
  10546. ]
  10547. },
  10548. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10549. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10550. "type": "package",
  10551. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10552. "files": [
  10553. ".nupkg.metadata",
  10554. ".signature.p7s",
  10555. "lib/net472/ZXing.ImageSharp.V2.dll",
  10556. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10557. "lib/net472/ZXing.ImageSharp.V2.xml",
  10558. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10559. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10560. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10561. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10562. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10563. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10564. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10565. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10566. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10567. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10568. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10569. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10570. "logo.jpg",
  10571. "readme.md",
  10572. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10573. "zxing.net.bindings.imagesharp.v2.nuspec"
  10574. ]
  10575. },
  10576. "Ropin.Core.Common/1.0.0": {
  10577. "type": "project",
  10578. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10579. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10580. },
  10581. "Ropin.Core.Extensions/1.0.0": {
  10582. "type": "project",
  10583. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10584. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10585. },
  10586. "Ropin.Inspection.Common/1.0.0": {
  10587. "type": "project",
  10588. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10589. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10590. },
  10591. "Ropin.Inspection.Model/1.0.0": {
  10592. "type": "project",
  10593. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10594. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10595. },
  10596. "Ropin.Inspection.Repository/1.0.0": {
  10597. "type": "project",
  10598. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10599. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10600. },
  10601. "Ropin.Inspection.Service/1.0.0": {
  10602. "type": "project",
  10603. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10604. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10605. },
  10606. "Ropin.Inspection.Tasks/1.0.0": {
  10607. "type": "project",
  10608. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10609. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10610. }
  10611. },
  10612. "projectFileDependencyGroups": {
  10613. "net5.0": [
  10614. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10615. "FBoxClientDriver >= 1.2.0",
  10616. "FBoxClientDriver.Contract >= 1.2.0",
  10617. "InfluxData.Net >= 8.0.1",
  10618. "InitQ >= 1.0.0.14",
  10619. "Microsoft.AspNetCore.NodeServices >= 3.1.30",
  10620. "Microsoft.AspNetCore.SignalR >= 1.1.0",
  10621. "Microsoft.AspNetCore.SignalR.Client >= 3.1.20",
  10622. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  10623. "NLog >= 4.7.7",
  10624. "Newtonsoft.Json >= 13.0.1",
  10625. "RabbitMQ.Client >= 6.8.1",
  10626. "Ropin.Core.Extensions >= 1.0.0",
  10627. "Ropin.Inspection.Common >= 1.0.0",
  10628. "Ropin.Inspection.Model >= 1.0.0",
  10629. "Ropin.Inspection.Repository >= 1.0.0",
  10630. "Serilog >= 2.11.0",
  10631. "Serilog.Sinks.Console >= 4.0.1",
  10632. "Serilog.Sinks.File >= 5.0.0"
  10633. ]
  10634. },
  10635. "packageFolders": {
  10636. "D:\\.nuget\\packages": {},
  10637. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10638. },
  10639. "project": {
  10640. "version": "1.0.0",
  10641. "restore": {
  10642. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10643. "projectName": "Ropin.Environmentally.WebScada",
  10644. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10645. "packagesPath": "D:\\.nuget\\packages",
  10646. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\obj\\",
  10647. "projectStyle": "PackageReference",
  10648. "fallbackFolders": [
  10649. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10650. ],
  10651. "configFilePaths": [
  10652. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10653. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10654. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10655. ],
  10656. "originalTargetFrameworks": [
  10657. "net5.0"
  10658. ],
  10659. "sources": {
  10660. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10661. "C:\\Program Files\\dotnet\\library-packs": {},
  10662. "https://api.nuget.org/v3/index.json": {}
  10663. },
  10664. "frameworks": {
  10665. "net5.0": {
  10666. "targetAlias": "net5.0",
  10667. "projectReferences": {
  10668. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10669. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10670. },
  10671. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10672. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10673. },
  10674. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10675. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10676. },
  10677. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10678. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10679. }
  10680. }
  10681. }
  10682. },
  10683. "warningProperties": {
  10684. "warnAsError": [
  10685. "NU1605"
  10686. ]
  10687. }
  10688. },
  10689. "frameworks": {
  10690. "net5.0": {
  10691. "targetAlias": "net5.0",
  10692. "dependencies": {
  10693. "Autofac.Extensions.DependencyInjection": {
  10694. "target": "Package",
  10695. "version": "[7.1.0, )"
  10696. },
  10697. "FBoxClientDriver": {
  10698. "target": "Package",
  10699. "version": "[1.2.0, )"
  10700. },
  10701. "FBoxClientDriver.Contract": {
  10702. "target": "Package",
  10703. "version": "[1.2.0, )"
  10704. },
  10705. "InfluxData.Net": {
  10706. "target": "Package",
  10707. "version": "[8.0.1, )"
  10708. },
  10709. "InitQ": {
  10710. "target": "Package",
  10711. "version": "[1.0.0.14, )"
  10712. },
  10713. "Microsoft.AspNetCore.NodeServices": {
  10714. "target": "Package",
  10715. "version": "[3.1.30, )"
  10716. },
  10717. "Microsoft.AspNetCore.SignalR": {
  10718. "target": "Package",
  10719. "version": "[1.1.0, )"
  10720. },
  10721. "Microsoft.AspNetCore.SignalR.Client": {
  10722. "target": "Package",
  10723. "version": "[3.1.20, )"
  10724. },
  10725. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10726. "target": "Package",
  10727. "version": "[1.17.2, )"
  10728. },
  10729. "NLog": {
  10730. "target": "Package",
  10731. "version": "[4.7.7, )"
  10732. },
  10733. "Newtonsoft.Json": {
  10734. "target": "Package",
  10735. "version": "[13.0.1, )"
  10736. },
  10737. "RabbitMQ.Client": {
  10738. "target": "Package",
  10739. "version": "[6.8.1, )"
  10740. },
  10741. "Serilog": {
  10742. "target": "Package",
  10743. "version": "[2.11.0, )"
  10744. },
  10745. "Serilog.Sinks.Console": {
  10746. "target": "Package",
  10747. "version": "[4.0.1, )"
  10748. },
  10749. "Serilog.Sinks.File": {
  10750. "target": "Package",
  10751. "version": "[5.0.0, )"
  10752. }
  10753. },
  10754. "imports": [
  10755. "net461",
  10756. "net462",
  10757. "net47",
  10758. "net471",
  10759. "net472",
  10760. "net48",
  10761. "net481"
  10762. ],
  10763. "assetTargetFallback": true,
  10764. "warn": true,
  10765. "frameworkReferences": {
  10766. "Microsoft.AspNetCore.App": {
  10767. "privateAssets": "none"
  10768. },
  10769. "Microsoft.NETCore.App": {
  10770. "privateAssets": "all"
  10771. }
  10772. },
  10773. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10774. }
  10775. }
  10776. }
  10777. }