project.assets.json 436 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888
  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. "AdysTech.InfluxDB.Client.Net/0.15.0": {
  19. "type": "package",
  20. "compile": {
  21. "lib/net46/AdysTech.InfluxDB.Client.Net.dll": {}
  22. },
  23. "runtime": {
  24. "lib/net46/AdysTech.InfluxDB.Client.Net.dll": {}
  25. }
  26. },
  27. "Autofac/6.2.0": {
  28. "type": "package",
  29. "dependencies": {
  30. "System.Diagnostics.DiagnosticSource": "4.7.1"
  31. },
  32. "compile": {
  33. "lib/net5.0/Autofac.dll": {
  34. "related": ".pdb;.xml"
  35. }
  36. },
  37. "runtime": {
  38. "lib/net5.0/Autofac.dll": {
  39. "related": ".pdb;.xml"
  40. }
  41. }
  42. },
  43. "Autofac.Extensions.DependencyInjection/7.1.0": {
  44. "type": "package",
  45. "dependencies": {
  46. "Autofac": "6.0.0",
  47. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  48. },
  49. "compile": {
  50. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  51. "related": ".pdb;.xml"
  52. }
  53. },
  54. "runtime": {
  55. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  56. "related": ".pdb;.xml"
  57. }
  58. }
  59. },
  60. "Autofac.Extras.DynamicProxy/6.0.0": {
  61. "type": "package",
  62. "dependencies": {
  63. "Autofac": "6.0.0",
  64. "Castle.Core": "4.4.0"
  65. },
  66. "compile": {
  67. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  68. "related": ".pdb;.xml"
  69. }
  70. },
  71. "runtime": {
  72. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  73. "related": ".pdb;.xml"
  74. }
  75. }
  76. },
  77. "AutoMapper/10.1.1": {
  78. "type": "package",
  79. "dependencies": {
  80. "Microsoft.CSharp": "4.7.0",
  81. "System.Reflection.Emit": "4.7.0"
  82. },
  83. "compile": {
  84. "lib/netstandard2.0/AutoMapper.dll": {
  85. "related": ".xml"
  86. }
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/AutoMapper.dll": {
  90. "related": ".xml"
  91. }
  92. }
  93. },
  94. "BouncyCastle.NetCore/1.8.5": {
  95. "type": "package",
  96. "compile": {
  97. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  98. "related": ".xml"
  99. }
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  103. "related": ".xml"
  104. }
  105. }
  106. },
  107. "Castle.Core/4.4.0": {
  108. "type": "package",
  109. "dependencies": {
  110. "NETStandard.Library": "1.6.1",
  111. "System.Collections.Specialized": "4.3.0",
  112. "System.ComponentModel": "4.3.0",
  113. "System.ComponentModel.TypeConverter": "4.3.0",
  114. "System.Diagnostics.TraceSource": "4.3.0",
  115. "System.Dynamic.Runtime": "4.3.0",
  116. "System.Reflection": "4.3.0",
  117. "System.Reflection.Emit": "4.3.0",
  118. "System.Reflection.TypeExtensions": "4.3.0",
  119. "System.Xml.XmlDocument": "4.3.0"
  120. },
  121. "compile": {
  122. "lib/netstandard1.5/Castle.Core.dll": {
  123. "related": ".xml"
  124. }
  125. },
  126. "runtime": {
  127. "lib/netstandard1.5/Castle.Core.dll": {
  128. "related": ".xml"
  129. }
  130. }
  131. },
  132. "Coravel/4.2.1": {
  133. "type": "package",
  134. "dependencies": {
  135. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  136. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  137. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  138. },
  139. "compile": {
  140. "lib/netstandard2.0/Coravel.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "runtime": {
  145. "lib/netstandard2.0/Coravel.dll": {
  146. "related": ".xml"
  147. }
  148. }
  149. },
  150. "FBoxClientDriver/1.2.0": {
  151. "type": "package",
  152. "dependencies": {
  153. "FBoxClientDriver.Contract": "1.2.0",
  154. "IdentityModel": "4.3.1",
  155. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  156. "Microsoft.CSharp": "4.5.0",
  157. "Microsoft.Extensions.Logging": "3.1.5",
  158. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  159. "Newtonsoft.Json": "12.0.3",
  160. "Nito.AsyncEx.Coordination": "5.0.0",
  161. "NodaTime": "2.4.7",
  162. "System.ComponentModel.EventBasedAsync": "4.3.0",
  163. "System.IO.FileSystem": "4.3.0",
  164. "System.Net.Http": "4.3.2",
  165. "System.Reactive": "4.4.1",
  166. "System.Runtime.Serialization.Primitives": "4.3.0",
  167. "System.Threading.Thread": "4.3.0"
  168. },
  169. "compile": {
  170. "lib/netstandard2.0/FBoxClientDriver.dll": {
  171. "related": ".xml"
  172. }
  173. },
  174. "runtime": {
  175. "lib/netstandard2.0/FBoxClientDriver.dll": {
  176. "related": ".xml"
  177. }
  178. }
  179. },
  180. "FBoxClientDriver.Contract/1.2.0": {
  181. "type": "package",
  182. "dependencies": {
  183. "Newtonsoft.Json": "12.0.3",
  184. "System.ComponentModel.Primitives": "4.3.0"
  185. },
  186. "compile": {
  187. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  188. "related": ".xml"
  189. }
  190. },
  191. "runtime": {
  192. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  193. "related": ".xml"
  194. }
  195. }
  196. },
  197. "FluentEmail.Core/3.0.2": {
  198. "type": "package",
  199. "dependencies": {
  200. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  201. },
  202. "compile": {
  203. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  204. },
  205. "runtime": {
  206. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  207. }
  208. },
  209. "FluentEmail.Smtp/3.0.2": {
  210. "type": "package",
  211. "dependencies": {
  212. "FluentEmail.Core": "3.0.2"
  213. },
  214. "compile": {
  215. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  216. },
  217. "runtime": {
  218. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  219. }
  220. },
  221. "Google.Protobuf/3.11.4": {
  222. "type": "package",
  223. "dependencies": {
  224. "System.Memory": "4.5.2"
  225. },
  226. "compile": {
  227. "lib/netstandard2.0/Google.Protobuf.dll": {
  228. "related": ".pdb;.xml"
  229. }
  230. },
  231. "runtime": {
  232. "lib/netstandard2.0/Google.Protobuf.dll": {
  233. "related": ".pdb;.xml"
  234. }
  235. }
  236. },
  237. "IdentityModel/4.3.1": {
  238. "type": "package",
  239. "dependencies": {
  240. "Newtonsoft.Json": "11.0.2",
  241. "System.Text.Encodings.Web": "4.7.0"
  242. },
  243. "compile": {
  244. "lib/netstandard2.0/IdentityModel.dll": {
  245. "related": ".pdb;.xml"
  246. }
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/IdentityModel.dll": {
  250. "related": ".pdb;.xml"
  251. }
  252. }
  253. },
  254. "InfluxData.Net/8.0.1": {
  255. "type": "package",
  256. "dependencies": {
  257. "Newtonsoft.Json": "10.0.3",
  258. "System.Net.Http": "4.3.2"
  259. },
  260. "compile": {
  261. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  262. "related": ".dll.config;.pdb"
  263. },
  264. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  265. "related": ".dll.config;.pdb"
  266. },
  267. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  268. "related": ".dll.config;.pdb"
  269. },
  270. "lib/netstandard2.0/InfluxData.Net.dll": {
  271. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  272. }
  273. },
  274. "runtime": {
  275. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  276. "related": ".dll.config;.pdb"
  277. },
  278. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  279. "related": ".dll.config;.pdb"
  280. },
  281. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  282. "related": ".dll.config;.pdb"
  283. },
  284. "lib/netstandard2.0/InfluxData.Net.dll": {
  285. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  286. }
  287. }
  288. },
  289. "InitQ/1.0.0.14": {
  290. "type": "package",
  291. "dependencies": {
  292. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  293. "Microsoft.Extensions.Hosting": "2.1.0",
  294. "Newtonsoft.Json": "13.0.1",
  295. "StackExchange.Redis": "1.2.4"
  296. },
  297. "compile": {
  298. "lib/netcoreapp2.1/InitQ.dll": {}
  299. },
  300. "runtime": {
  301. "lib/netcoreapp2.1/InitQ.dll": {}
  302. }
  303. },
  304. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  305. "type": "package",
  306. "dependencies": {
  307. "AdvancedStringBuilder": "0.1.0",
  308. "JavaScriptEngineSwitcher.Core": "3.21.0"
  309. },
  310. "compile": {
  311. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  312. "related": ".xml"
  313. }
  314. },
  315. "runtime": {
  316. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "resource": {
  321. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  322. "locale": "ru-RU"
  323. }
  324. }
  325. },
  326. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  327. "type": "package",
  328. "runtimeTargets": {
  329. "runtimes/linux-x64/native/libChakraCore.so": {
  330. "assetType": "native",
  331. "rid": "linux-x64"
  332. }
  333. }
  334. },
  335. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  336. "type": "package",
  337. "build": {
  338. "build/_._": {}
  339. },
  340. "runtimeTargets": {
  341. "runtimes/win-x64/native/ChakraCore.dll": {
  342. "assetType": "native",
  343. "rid": "win-x64"
  344. }
  345. }
  346. },
  347. "JavaScriptEngineSwitcher.Core/3.21.0": {
  348. "type": "package",
  349. "dependencies": {
  350. "AdvancedStringBuilder": "0.1.0"
  351. },
  352. "compile": {
  353. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  354. "related": ".xml"
  355. }
  356. },
  357. "runtime": {
  358. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  359. "related": ".xml"
  360. }
  361. },
  362. "resource": {
  363. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  364. "locale": "ru-RU"
  365. }
  366. }
  367. },
  368. "K4os.Compression.LZ4/1.1.11": {
  369. "type": "package",
  370. "dependencies": {
  371. "System.Memory": "4.5.3"
  372. },
  373. "compile": {
  374. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  375. "related": ".xml"
  376. }
  377. },
  378. "runtime": {
  379. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  380. "related": ".xml"
  381. }
  382. }
  383. },
  384. "K4os.Compression.LZ4.Streams/1.1.11": {
  385. "type": "package",
  386. "dependencies": {
  387. "K4os.Compression.LZ4": "1.1.11",
  388. "K4os.Hash.xxHash": "1.0.6"
  389. },
  390. "compile": {
  391. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  392. "related": ".xml"
  393. }
  394. },
  395. "runtime": {
  396. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  397. "related": ".xml"
  398. }
  399. }
  400. },
  401. "K4os.Hash.xxHash/1.0.6": {
  402. "type": "package",
  403. "dependencies": {
  404. "System.Memory": "4.5.3"
  405. },
  406. "compile": {
  407. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  408. "related": ".xml"
  409. }
  410. },
  411. "runtime": {
  412. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  413. "related": ".xml"
  414. }
  415. }
  416. },
  417. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  418. "type": "package",
  419. "dependencies": {
  420. "Microsoft.EntityFrameworkCore": "5.0.0"
  421. },
  422. "compile": {
  423. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  424. "related": ".xml"
  425. }
  426. },
  427. "runtime": {
  428. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  429. "related": ".xml"
  430. }
  431. }
  432. },
  433. "log4net/2.0.17": {
  434. "type": "package",
  435. "dependencies": {
  436. "System.Configuration.ConfigurationManager": "4.5.0"
  437. },
  438. "compile": {
  439. "lib/netstandard2.0/log4net.dll": {
  440. "related": ".xml"
  441. }
  442. },
  443. "runtime": {
  444. "lib/netstandard2.0/log4net.dll": {
  445. "related": ".xml"
  446. }
  447. }
  448. },
  449. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  450. "type": "package",
  451. "dependencies": {
  452. "Newtonsoft.Json": "11.0.2"
  453. },
  454. "compile": {
  455. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  456. "related": ".pdb;.xml"
  457. }
  458. },
  459. "runtime": {
  460. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  461. "related": ".pdb;.xml"
  462. }
  463. }
  464. },
  465. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  466. "type": "package",
  467. "dependencies": {
  468. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  469. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  470. "Microsoft.Extensions.Options": "2.2.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.AspNetCore.Authorization/2.2.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  487. "Microsoft.Extensions.Options": "2.2.0"
  488. },
  489. "compile": {
  490. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  491. "related": ".xml"
  492. }
  493. },
  494. "runtime": {
  495. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  496. "related": ".xml"
  497. }
  498. }
  499. },
  500. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  504. "Microsoft.AspNetCore.Authorization": "2.2.0"
  505. },
  506. "compile": {
  507. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  508. "related": ".xml"
  509. }
  510. },
  511. "runtime": {
  512. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  513. "related": ".xml"
  514. }
  515. }
  516. },
  517. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  518. "type": "package",
  519. "dependencies": {
  520. "Microsoft.AspNetCore.Http.Features": "3.1.20",
  521. "System.IO.Pipelines": "4.7.4"
  522. },
  523. "compile": {
  524. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  525. "related": ".xml"
  526. }
  527. },
  528. "runtime": {
  529. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  530. "related": ".xml"
  531. }
  532. }
  533. },
  534. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  535. "type": "package",
  536. "dependencies": {
  537. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  538. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  539. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  540. },
  541. "compile": {
  542. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "runtime": {
  547. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  548. "related": ".xml"
  549. }
  550. }
  551. },
  552. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  556. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  557. },
  558. "compile": {
  559. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  560. "related": ".xml"
  561. }
  562. },
  563. "runtime": {
  564. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  565. "related": ".xml"
  566. }
  567. }
  568. },
  569. "Microsoft.AspNetCore.Http/2.2.0": {
  570. "type": "package",
  571. "dependencies": {
  572. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  573. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  574. "Microsoft.Extensions.ObjectPool": "2.2.0",
  575. "Microsoft.Extensions.Options": "2.2.0",
  576. "Microsoft.Net.Http.Headers": "2.2.0"
  577. },
  578. "compile": {
  579. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  580. "related": ".xml"
  581. }
  582. },
  583. "runtime": {
  584. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  585. "related": ".xml"
  586. }
  587. }
  588. },
  589. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  590. "type": "package",
  591. "dependencies": {
  592. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  593. "System.Text.Encodings.Web": "4.5.0"
  594. },
  595. "compile": {
  596. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  597. "related": ".xml"
  598. }
  599. },
  600. "runtime": {
  601. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  602. "related": ".xml"
  603. }
  604. }
  605. },
  606. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  607. "type": "package",
  608. "dependencies": {
  609. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  610. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  611. "Microsoft.AspNetCore.Http": "2.2.0",
  612. "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0",
  613. "Microsoft.AspNetCore.Routing": "2.2.0",
  614. "Microsoft.AspNetCore.WebSockets": "2.2.0",
  615. "Newtonsoft.Json": "11.0.2",
  616. "System.Security.Principal.Windows": "4.5.0"
  617. },
  618. "compile": {
  619. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  620. "related": ".xml"
  621. }
  622. },
  623. "runtime": {
  624. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  625. "related": ".xml"
  626. }
  627. }
  628. },
  629. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  630. "type": "package",
  631. "dependencies": {
  632. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.20",
  633. "Microsoft.Extensions.Logging.Abstractions": "3.1.20",
  634. "Microsoft.Extensions.Options": "3.1.20"
  635. },
  636. "compile": {
  637. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  638. "related": ".xml"
  639. }
  640. },
  641. "runtime": {
  642. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  643. "related": ".xml"
  644. }
  645. }
  646. },
  647. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  648. "type": "package",
  649. "dependencies": {
  650. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20"
  651. },
  652. "compile": {
  653. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  654. "related": ".xml"
  655. }
  656. },
  657. "runtime": {
  658. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  659. "related": ".xml"
  660. }
  661. }
  662. },
  663. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  664. "type": "package",
  665. "dependencies": {
  666. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  667. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  668. "Microsoft.Net.Http.Headers": "2.2.0",
  669. "System.Buffers": "4.5.0"
  670. },
  671. "compile": {
  672. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  683. "type": "package",
  684. "dependencies": {
  685. "Microsoft.Extensions.Primitives": "5.0.0",
  686. "System.IO.Pipelines": "5.0.0"
  687. },
  688. "compile": {
  689. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  690. "related": ".xml"
  691. }
  692. },
  693. "runtime": {
  694. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  695. "related": ".xml"
  696. }
  697. }
  698. },
  699. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  700. "type": "package",
  701. "dependencies": {
  702. "Microsoft.Extensions.Logging.Console": "3.1.30",
  703. "Newtonsoft.Json": "13.0.1"
  704. },
  705. "compile": {
  706. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  707. },
  708. "runtime": {
  709. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  710. },
  711. "frameworkReferences": [
  712. "Microsoft.AspNetCore.App"
  713. ]
  714. },
  715. "Microsoft.AspNetCore.Routing/2.2.0": {
  716. "type": "package",
  717. "dependencies": {
  718. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  719. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  720. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  721. "Microsoft.Extensions.ObjectPool": "2.2.0",
  722. "Microsoft.Extensions.Options": "2.2.0"
  723. },
  724. "compile": {
  725. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  739. },
  740. "compile": {
  741. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "Microsoft.AspNetCore.SignalR/1.1.0": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.AspNetCore.Http.Connections": "1.1.0",
  755. "Microsoft.AspNetCore.SignalR.Core": "1.1.0"
  756. },
  757. "compile": {
  758. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.AspNetCore.Http.Connections.Client": "3.1.20",
  772. "Microsoft.AspNetCore.SignalR.Client.Core": "3.1.20"
  773. },
  774. "compile": {
  775. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  776. "related": ".xml"
  777. }
  778. },
  779. "runtime": {
  780. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  781. "related": ".xml"
  782. }
  783. }
  784. },
  785. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  786. "type": "package",
  787. "dependencies": {
  788. "Microsoft.AspNetCore.SignalR.Common": "3.1.20",
  789. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.20",
  790. "Microsoft.Extensions.DependencyInjection": "3.1.20",
  791. "Microsoft.Extensions.Logging": "3.1.20",
  792. "System.Threading.Channels": "4.7.1"
  793. },
  794. "compile": {
  795. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  796. "related": ".xml"
  797. }
  798. },
  799. "runtime": {
  800. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  801. "related": ".xml"
  802. }
  803. }
  804. },
  805. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  806. "type": "package",
  807. "dependencies": {
  808. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20",
  809. "Microsoft.Extensions.Options": "3.1.20"
  810. },
  811. "compile": {
  812. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  823. "type": "package",
  824. "dependencies": {
  825. "Microsoft.AspNetCore.Authorization": "2.2.0",
  826. "Microsoft.AspNetCore.SignalR.Common": "1.1.0",
  827. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0",
  828. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  829. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  830. "System.Reflection.Emit": "4.3.0",
  831. "System.Threading.Channels": "4.5.0"
  832. },
  833. "compile": {
  834. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  835. "related": ".xml"
  836. }
  837. },
  838. "runtime": {
  839. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  840. "related": ".xml"
  841. }
  842. }
  843. },
  844. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  845. "type": "package",
  846. "dependencies": {
  847. "Microsoft.AspNetCore.SignalR.Common": "3.1.20"
  848. },
  849. "compile": {
  850. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  851. "related": ".xml"
  852. }
  853. },
  854. "runtime": {
  855. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  856. "related": ".xml"
  857. }
  858. }
  859. },
  860. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  861. "type": "package",
  862. "dependencies": {
  863. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  864. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  865. "Microsoft.Extensions.Options": "2.2.0",
  866. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  867. },
  868. "compile": {
  869. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  870. "related": ".xml"
  871. }
  872. },
  873. "runtime": {
  874. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  875. "related": ".xml"
  876. }
  877. }
  878. },
  879. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  880. "type": "package",
  881. "dependencies": {
  882. "Microsoft.Net.Http.Headers": "2.2.0",
  883. "System.Text.Encodings.Web": "4.5.0"
  884. },
  885. "compile": {
  886. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  887. "related": ".xml"
  888. }
  889. },
  890. "runtime": {
  891. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  892. "related": ".xml"
  893. }
  894. }
  895. },
  896. "Microsoft.CSharp/4.7.0": {
  897. "type": "package",
  898. "compile": {
  899. "ref/netcoreapp2.0/_._": {}
  900. },
  901. "runtime": {
  902. "lib/netcoreapp2.0/_._": {}
  903. }
  904. },
  905. "Microsoft.EntityFrameworkCore/5.0.0": {
  906. "type": "package",
  907. "dependencies": {
  908. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  909. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  910. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  911. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  912. "Microsoft.Extensions.Logging": "5.0.0",
  913. "System.Collections.Immutable": "5.0.0",
  914. "System.ComponentModel.Annotations": "5.0.0",
  915. "System.Diagnostics.DiagnosticSource": "5.0.0"
  916. },
  917. "compile": {
  918. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  919. "related": ".xml"
  920. }
  921. },
  922. "runtime": {
  923. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  924. "related": ".xml"
  925. }
  926. }
  927. },
  928. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  929. "type": "package",
  930. "compile": {
  931. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  932. "related": ".xml"
  933. }
  934. },
  935. "runtime": {
  936. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  937. "related": ".xml"
  938. }
  939. }
  940. },
  941. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  942. "type": "package",
  943. "compile": {
  944. "lib/netstandard2.0/_._": {}
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/_._": {}
  948. }
  949. },
  950. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  951. "type": "package",
  952. "dependencies": {
  953. "Microsoft.EntityFrameworkCore": "5.0.0",
  954. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  955. },
  956. "compile": {
  957. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  958. "related": ".xml"
  959. }
  960. },
  961. "runtime": {
  962. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  963. "related": ".xml"
  964. }
  965. }
  966. },
  967. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  968. "type": "package",
  969. "dependencies": {
  970. "Microsoft.Extensions.Primitives": "5.0.0"
  971. },
  972. "compile": {
  973. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  974. "related": ".xml"
  975. }
  976. },
  977. "runtime": {
  978. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  979. "related": ".xml"
  980. }
  981. }
  982. },
  983. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  984. "type": "package",
  985. "dependencies": {
  986. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  987. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  988. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  989. "Microsoft.Extensions.Options": "5.0.0",
  990. "Microsoft.Extensions.Primitives": "5.0.0"
  991. },
  992. "compile": {
  993. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  994. "related": ".xml"
  995. }
  996. },
  997. "runtime": {
  998. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  999. "related": ".xml"
  1000. }
  1001. }
  1002. },
  1003. "Microsoft.Extensions.Configuration/5.0.0": {
  1004. "type": "package",
  1005. "dependencies": {
  1006. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1007. "Microsoft.Extensions.Primitives": "5.0.0"
  1008. },
  1009. "compile": {
  1010. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1011. "related": ".xml"
  1012. }
  1013. },
  1014. "runtime": {
  1015. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1016. "related": ".xml"
  1017. }
  1018. }
  1019. },
  1020. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1021. "type": "package",
  1022. "dependencies": {
  1023. "Microsoft.Extensions.Primitives": "5.0.0"
  1024. },
  1025. "compile": {
  1026. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1027. "related": ".xml"
  1028. }
  1029. },
  1030. "runtime": {
  1031. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1032. "related": ".xml"
  1033. }
  1034. }
  1035. },
  1036. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  1037. "type": "package",
  1038. "dependencies": {
  1039. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  1040. },
  1041. "compile": {
  1042. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1043. "related": ".xml"
  1044. }
  1045. },
  1046. "runtime": {
  1047. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1048. "related": ".xml"
  1049. }
  1050. }
  1051. },
  1052. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.Extensions.Configuration": "5.0.0",
  1056. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1057. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1058. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  1059. "Microsoft.Extensions.Primitives": "5.0.0"
  1060. },
  1061. "compile": {
  1062. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1063. "related": ".xml"
  1064. }
  1065. },
  1066. "runtime": {
  1067. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1068. "related": ".xml"
  1069. }
  1070. }
  1071. },
  1072. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1073. "type": "package",
  1074. "dependencies": {
  1075. "Microsoft.Extensions.Configuration": "5.0.0",
  1076. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1077. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  1078. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  1079. },
  1080. "compile": {
  1081. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1082. "related": ".xml"
  1083. }
  1084. },
  1085. "runtime": {
  1086. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1087. "related": ".xml"
  1088. }
  1089. }
  1090. },
  1091. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  1095. },
  1096. "compile": {
  1097. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1098. "related": ".xml"
  1099. }
  1100. },
  1101. "runtime": {
  1102. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1103. "related": ".xml"
  1104. }
  1105. }
  1106. },
  1107. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1108. "type": "package",
  1109. "compile": {
  1110. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1111. "related": ".xml"
  1112. }
  1113. },
  1114. "runtime": {
  1115. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1116. "related": ".xml"
  1117. }
  1118. }
  1119. },
  1120. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  1121. "type": "package",
  1122. "dependencies": {
  1123. "Microsoft.Extensions.Primitives": "5.0.0"
  1124. },
  1125. "compile": {
  1126. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1127. "related": ".xml"
  1128. }
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1132. "related": ".xml"
  1133. }
  1134. }
  1135. },
  1136. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1137. "type": "package",
  1138. "dependencies": {
  1139. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1140. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  1141. "Microsoft.Extensions.Primitives": "5.0.0"
  1142. },
  1143. "compile": {
  1144. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1145. "related": ".xml"
  1146. }
  1147. },
  1148. "runtime": {
  1149. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1150. "related": ".xml"
  1151. }
  1152. }
  1153. },
  1154. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  1155. "type": "package",
  1156. "compile": {
  1157. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1158. "related": ".xml"
  1159. }
  1160. },
  1161. "runtime": {
  1162. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1163. "related": ".xml"
  1164. }
  1165. }
  1166. },
  1167. "Microsoft.Extensions.Hosting/2.1.0": {
  1168. "type": "package",
  1169. "dependencies": {
  1170. "Microsoft.Extensions.Configuration": "2.1.0",
  1171. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1172. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  1173. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  1174. "Microsoft.Extensions.Logging": "2.1.0"
  1175. },
  1176. "compile": {
  1177. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1178. "related": ".xml"
  1179. }
  1180. },
  1181. "runtime": {
  1182. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1183. "related": ".xml"
  1184. }
  1185. }
  1186. },
  1187. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  1188. "type": "package",
  1189. "dependencies": {
  1190. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1191. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  1192. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  1193. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  1194. },
  1195. "compile": {
  1196. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1202. "related": ".xml"
  1203. }
  1204. }
  1205. },
  1206. "Microsoft.Extensions.Http/5.0.0": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1210. "Microsoft.Extensions.Logging": "5.0.0",
  1211. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1212. "Microsoft.Extensions.Options": "5.0.0"
  1213. },
  1214. "compile": {
  1215. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1216. "related": ".xml"
  1217. }
  1218. },
  1219. "runtime": {
  1220. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1221. "related": ".xml"
  1222. }
  1223. }
  1224. },
  1225. "Microsoft.Extensions.Logging/5.0.0": {
  1226. "type": "package",
  1227. "dependencies": {
  1228. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1229. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1230. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1231. "Microsoft.Extensions.Options": "5.0.0"
  1232. },
  1233. "compile": {
  1234. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1235. "related": ".xml"
  1236. }
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1240. "related": ".xml"
  1241. }
  1242. }
  1243. },
  1244. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1245. "type": "package",
  1246. "compile": {
  1247. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1248. "related": ".xml"
  1249. }
  1250. },
  1251. "runtime": {
  1252. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1253. "related": ".xml"
  1254. }
  1255. }
  1256. },
  1257. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1258. "type": "package",
  1259. "dependencies": {
  1260. "Microsoft.Extensions.Logging": "3.1.30",
  1261. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  1262. },
  1263. "compile": {
  1264. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1265. "related": ".xml"
  1266. }
  1267. },
  1268. "runtime": {
  1269. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1270. "related": ".xml"
  1271. }
  1272. }
  1273. },
  1274. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1275. "type": "package",
  1276. "dependencies": {
  1277. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1278. "Microsoft.Extensions.Logging": "3.1.30",
  1279. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  1280. },
  1281. "compile": {
  1282. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1283. "related": ".xml"
  1284. }
  1285. },
  1286. "runtime": {
  1287. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1288. "related": ".xml"
  1289. }
  1290. }
  1291. },
  1292. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1293. "type": "package",
  1294. "compile": {
  1295. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1296. "related": ".xml"
  1297. }
  1298. },
  1299. "runtime": {
  1300. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1301. "related": ".xml"
  1302. }
  1303. }
  1304. },
  1305. "Microsoft.Extensions.Options/5.0.0": {
  1306. "type": "package",
  1307. "dependencies": {
  1308. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1309. "Microsoft.Extensions.Primitives": "5.0.0"
  1310. },
  1311. "compile": {
  1312. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1313. "related": ".xml"
  1314. }
  1315. },
  1316. "runtime": {
  1317. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1318. "related": ".xml"
  1319. }
  1320. }
  1321. },
  1322. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1323. "type": "package",
  1324. "dependencies": {
  1325. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1326. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1327. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1328. "Microsoft.Extensions.Options": "3.1.30"
  1329. },
  1330. "compile": {
  1331. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1332. "related": ".xml"
  1333. }
  1334. },
  1335. "runtime": {
  1336. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1337. "related": ".xml"
  1338. }
  1339. }
  1340. },
  1341. "Microsoft.Extensions.Primitives/5.0.0": {
  1342. "type": "package",
  1343. "compile": {
  1344. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1345. "related": ".xml"
  1346. }
  1347. },
  1348. "runtime": {
  1349. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1350. "related": ".xml"
  1351. }
  1352. }
  1353. },
  1354. "Microsoft.Net.Http.Headers/2.2.0": {
  1355. "type": "package",
  1356. "dependencies": {
  1357. "Microsoft.Extensions.Primitives": "2.2.0",
  1358. "System.Buffers": "4.5.0"
  1359. },
  1360. "compile": {
  1361. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1362. "related": ".xml"
  1363. }
  1364. },
  1365. "runtime": {
  1366. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1367. "related": ".xml"
  1368. }
  1369. }
  1370. },
  1371. "Microsoft.NETCore.Platforms/5.0.0": {
  1372. "type": "package",
  1373. "compile": {
  1374. "lib/netstandard1.0/_._": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard1.0/_._": {}
  1378. }
  1379. },
  1380. "Microsoft.NETCore.Targets/1.1.0": {
  1381. "type": "package",
  1382. "compile": {
  1383. "lib/netstandard1.0/_._": {}
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard1.0/_._": {}
  1387. }
  1388. },
  1389. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1390. "type": "package",
  1391. "build": {
  1392. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1393. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1394. }
  1395. },
  1396. "Microsoft.Win32.Primitives/4.3.0": {
  1397. "type": "package",
  1398. "dependencies": {
  1399. "Microsoft.NETCore.Platforms": "1.1.0",
  1400. "Microsoft.NETCore.Targets": "1.1.0",
  1401. "System.Runtime": "4.3.0"
  1402. },
  1403. "compile": {
  1404. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1405. "related": ".xml"
  1406. }
  1407. }
  1408. },
  1409. "Microsoft.Win32.SystemEvents/5.0.0": {
  1410. "type": "package",
  1411. "dependencies": {
  1412. "Microsoft.NETCore.Platforms": "5.0.0"
  1413. },
  1414. "compile": {
  1415. "ref/netstandard2.0/_._": {
  1416. "related": ".xml"
  1417. }
  1418. },
  1419. "runtime": {
  1420. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1421. "related": ".xml"
  1422. }
  1423. },
  1424. "runtimeTargets": {
  1425. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1426. "assetType": "runtime",
  1427. "rid": "win"
  1428. }
  1429. }
  1430. },
  1431. "MySql.Data/8.0.23": {
  1432. "type": "package",
  1433. "dependencies": {
  1434. "BouncyCastle.NetCore": "1.8.5",
  1435. "Google.Protobuf": "3.11.4",
  1436. "K4os.Compression.LZ4": "1.1.11",
  1437. "K4os.Compression.LZ4.Streams": "1.1.11",
  1438. "K4os.Hash.xxHash": "1.0.6",
  1439. "SSH.NET": "2020.0.0-beta1",
  1440. "System.Buffers": "4.5.1",
  1441. "System.Configuration.ConfigurationManager": "4.4.1",
  1442. "System.Security.Permissions": "4.7.0",
  1443. "System.Text.Encoding.CodePages": "4.4.0"
  1444. },
  1445. "compile": {
  1446. "lib/net5.0/MySql.Data.dll": {
  1447. "related": ".xml"
  1448. },
  1449. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1450. "lib/net5.0/Zstandard.Net.dll": {}
  1451. },
  1452. "runtime": {
  1453. "lib/net5.0/MySql.Data.dll": {
  1454. "related": ".xml"
  1455. },
  1456. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1457. "lib/net5.0/Zstandard.Net.dll": {}
  1458. }
  1459. },
  1460. "MySqlConnector/1.1.0": {
  1461. "type": "package",
  1462. "compile": {
  1463. "lib/net5.0/MySqlConnector.dll": {
  1464. "related": ".xml"
  1465. }
  1466. },
  1467. "runtime": {
  1468. "lib/net5.0/MySqlConnector.dll": {
  1469. "related": ".xml"
  1470. }
  1471. }
  1472. },
  1473. "NETStandard.Library/1.6.1": {
  1474. "type": "package",
  1475. "dependencies": {
  1476. "Microsoft.NETCore.Platforms": "1.1.0",
  1477. "Microsoft.Win32.Primitives": "4.3.0",
  1478. "System.AppContext": "4.3.0",
  1479. "System.Collections": "4.3.0",
  1480. "System.Collections.Concurrent": "4.3.0",
  1481. "System.Console": "4.3.0",
  1482. "System.Diagnostics.Debug": "4.3.0",
  1483. "System.Diagnostics.Tools": "4.3.0",
  1484. "System.Diagnostics.Tracing": "4.3.0",
  1485. "System.Globalization": "4.3.0",
  1486. "System.Globalization.Calendars": "4.3.0",
  1487. "System.IO": "4.3.0",
  1488. "System.IO.Compression": "4.3.0",
  1489. "System.IO.Compression.ZipFile": "4.3.0",
  1490. "System.IO.FileSystem": "4.3.0",
  1491. "System.IO.FileSystem.Primitives": "4.3.0",
  1492. "System.Linq": "4.3.0",
  1493. "System.Linq.Expressions": "4.3.0",
  1494. "System.Net.Http": "4.3.0",
  1495. "System.Net.Primitives": "4.3.0",
  1496. "System.Net.Sockets": "4.3.0",
  1497. "System.ObjectModel": "4.3.0",
  1498. "System.Reflection": "4.3.0",
  1499. "System.Reflection.Extensions": "4.3.0",
  1500. "System.Reflection.Primitives": "4.3.0",
  1501. "System.Resources.ResourceManager": "4.3.0",
  1502. "System.Runtime": "4.3.0",
  1503. "System.Runtime.Extensions": "4.3.0",
  1504. "System.Runtime.Handles": "4.3.0",
  1505. "System.Runtime.InteropServices": "4.3.0",
  1506. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1507. "System.Runtime.Numerics": "4.3.0",
  1508. "System.Security.Cryptography.Algorithms": "4.3.0",
  1509. "System.Security.Cryptography.Encoding": "4.3.0",
  1510. "System.Security.Cryptography.Primitives": "4.3.0",
  1511. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1512. "System.Text.Encoding": "4.3.0",
  1513. "System.Text.Encoding.Extensions": "4.3.0",
  1514. "System.Text.RegularExpressions": "4.3.0",
  1515. "System.Threading": "4.3.0",
  1516. "System.Threading.Tasks": "4.3.0",
  1517. "System.Threading.Timer": "4.3.0",
  1518. "System.Xml.ReaderWriter": "4.3.0",
  1519. "System.Xml.XDocument": "4.3.0"
  1520. }
  1521. },
  1522. "Newtonsoft.Json/13.0.1": {
  1523. "type": "package",
  1524. "compile": {
  1525. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1526. "related": ".xml"
  1527. }
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1531. "related": ".xml"
  1532. }
  1533. }
  1534. },
  1535. "Nito.AsyncEx.Coordination/5.0.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "Nito.AsyncEx.Tasks": "5.0.0",
  1539. "Nito.Collections.Deque": "1.0.4",
  1540. "Nito.Disposables": "2.0.0"
  1541. },
  1542. "compile": {
  1543. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1544. "related": ".xml"
  1545. }
  1546. },
  1547. "runtime": {
  1548. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1549. "related": ".xml"
  1550. }
  1551. }
  1552. },
  1553. "Nito.AsyncEx.Tasks/5.0.0": {
  1554. "type": "package",
  1555. "dependencies": {
  1556. "Nito.Disposables": "2.0.0"
  1557. },
  1558. "compile": {
  1559. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1560. "related": ".xml"
  1561. }
  1562. },
  1563. "runtime": {
  1564. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1565. "related": ".xml"
  1566. }
  1567. }
  1568. },
  1569. "Nito.Collections.Deque/1.0.4": {
  1570. "type": "package",
  1571. "compile": {
  1572. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1573. "related": ".xml"
  1574. }
  1575. },
  1576. "runtime": {
  1577. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1578. "related": ".xml"
  1579. }
  1580. }
  1581. },
  1582. "Nito.Disposables/2.0.0": {
  1583. "type": "package",
  1584. "dependencies": {
  1585. "System.Collections.Immutable": "1.4.0"
  1586. },
  1587. "compile": {
  1588. "lib/netstandard2.0/Nito.Disposables.dll": {
  1589. "related": ".pdb;.xml"
  1590. }
  1591. },
  1592. "runtime": {
  1593. "lib/netstandard2.0/Nito.Disposables.dll": {
  1594. "related": ".pdb;.xml"
  1595. }
  1596. }
  1597. },
  1598. "NLog/4.7.7": {
  1599. "type": "package",
  1600. "compile": {
  1601. "lib/netstandard2.0/NLog.dll": {
  1602. "related": ".xml"
  1603. }
  1604. },
  1605. "runtime": {
  1606. "lib/netstandard2.0/NLog.dll": {
  1607. "related": ".xml"
  1608. }
  1609. }
  1610. },
  1611. "NodaTime/2.4.7": {
  1612. "type": "package",
  1613. "compile": {
  1614. "lib/netstandard2.0/NodaTime.dll": {
  1615. "related": ".pdb;.xml"
  1616. }
  1617. },
  1618. "runtime": {
  1619. "lib/netstandard2.0/NodaTime.dll": {
  1620. "related": ".pdb;.xml"
  1621. }
  1622. }
  1623. },
  1624. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1625. "type": "package",
  1626. "dependencies": {
  1627. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1628. "MySqlConnector": "1.1.0"
  1629. },
  1630. "compile": {
  1631. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1632. "related": ".xml"
  1633. }
  1634. },
  1635. "runtime": {
  1636. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1637. "related": ".xml"
  1638. }
  1639. }
  1640. },
  1641. "QRCoder/1.4.3": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "System.Drawing.Common": "5.0.3"
  1645. },
  1646. "compile": {
  1647. "lib/net5.0/QRCoder.dll": {}
  1648. },
  1649. "runtime": {
  1650. "lib/net5.0/QRCoder.dll": {}
  1651. }
  1652. },
  1653. "Quartz/3.3.3": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1657. "System.Configuration.ConfigurationManager": "4.7.0",
  1658. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1659. },
  1660. "compile": {
  1661. "lib/netstandard2.0/Quartz.dll": {
  1662. "related": ".xml"
  1663. }
  1664. },
  1665. "runtime": {
  1666. "lib/netstandard2.0/Quartz.dll": {
  1667. "related": ".xml"
  1668. }
  1669. }
  1670. },
  1671. "RabbitMQ.Client/6.8.1": {
  1672. "type": "package",
  1673. "dependencies": {
  1674. "System.Memory": "4.5.5",
  1675. "System.Threading.Channels": "7.0.0"
  1676. },
  1677. "compile": {
  1678. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1679. "related": ".xml"
  1680. }
  1681. },
  1682. "runtime": {
  1683. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1684. "related": ".xml"
  1685. }
  1686. }
  1687. },
  1688. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1689. "type": "package",
  1690. "runtimeTargets": {
  1691. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1692. "assetType": "native",
  1693. "rid": "debian.8-x64"
  1694. }
  1695. }
  1696. },
  1697. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1698. "type": "package",
  1699. "runtimeTargets": {
  1700. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1701. "assetType": "native",
  1702. "rid": "fedora.23-x64"
  1703. }
  1704. }
  1705. },
  1706. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1707. "type": "package",
  1708. "runtimeTargets": {
  1709. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1710. "assetType": "native",
  1711. "rid": "fedora.24-x64"
  1712. }
  1713. }
  1714. },
  1715. "runtime.native.System/4.3.0": {
  1716. "type": "package",
  1717. "dependencies": {
  1718. "Microsoft.NETCore.Platforms": "1.1.0",
  1719. "Microsoft.NETCore.Targets": "1.1.0"
  1720. },
  1721. "compile": {
  1722. "lib/netstandard1.0/_._": {}
  1723. },
  1724. "runtime": {
  1725. "lib/netstandard1.0/_._": {}
  1726. }
  1727. },
  1728. "runtime.native.System.IO.Compression/4.3.0": {
  1729. "type": "package",
  1730. "dependencies": {
  1731. "Microsoft.NETCore.Platforms": "1.1.0",
  1732. "Microsoft.NETCore.Targets": "1.1.0"
  1733. },
  1734. "compile": {
  1735. "lib/netstandard1.0/_._": {}
  1736. },
  1737. "runtime": {
  1738. "lib/netstandard1.0/_._": {}
  1739. }
  1740. },
  1741. "runtime.native.System.Net.Http/4.3.0": {
  1742. "type": "package",
  1743. "dependencies": {
  1744. "Microsoft.NETCore.Platforms": "1.1.0",
  1745. "Microsoft.NETCore.Targets": "1.1.0"
  1746. },
  1747. "compile": {
  1748. "lib/netstandard1.0/_._": {}
  1749. },
  1750. "runtime": {
  1751. "lib/netstandard1.0/_._": {}
  1752. }
  1753. },
  1754. "runtime.native.System.Net.Security/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.1.0",
  1758. "Microsoft.NETCore.Targets": "1.1.0"
  1759. },
  1760. "compile": {
  1761. "lib/netstandard1.0/_._": {}
  1762. },
  1763. "runtime": {
  1764. "lib/netstandard1.0/_._": {}
  1765. }
  1766. },
  1767. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1768. "type": "package",
  1769. "dependencies": {
  1770. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1771. },
  1772. "compile": {
  1773. "lib/netstandard1.0/_._": {}
  1774. },
  1775. "runtime": {
  1776. "lib/netstandard1.0/_._": {}
  1777. }
  1778. },
  1779. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1780. "type": "package",
  1781. "dependencies": {
  1782. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1783. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1784. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1785. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1786. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1787. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1788. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1789. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1790. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1791. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1792. },
  1793. "compile": {
  1794. "lib/netstandard1.0/_._": {}
  1795. },
  1796. "runtime": {
  1797. "lib/netstandard1.0/_._": {}
  1798. }
  1799. },
  1800. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1801. "type": "package",
  1802. "runtimeTargets": {
  1803. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1804. "assetType": "native",
  1805. "rid": "opensuse.13.2-x64"
  1806. }
  1807. }
  1808. },
  1809. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1810. "type": "package",
  1811. "runtimeTargets": {
  1812. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1813. "assetType": "native",
  1814. "rid": "opensuse.42.1-x64"
  1815. }
  1816. }
  1817. },
  1818. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1819. "type": "package",
  1820. "runtimeTargets": {
  1821. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1822. "assetType": "native",
  1823. "rid": "osx.10.10-x64"
  1824. }
  1825. }
  1826. },
  1827. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1828. "type": "package",
  1829. "runtimeTargets": {
  1830. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1831. "assetType": "native",
  1832. "rid": "osx.10.10-x64"
  1833. }
  1834. }
  1835. },
  1836. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1837. "type": "package",
  1838. "runtimeTargets": {
  1839. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1840. "assetType": "native",
  1841. "rid": "rhel.7-x64"
  1842. }
  1843. }
  1844. },
  1845. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1846. "type": "package",
  1847. "runtimeTargets": {
  1848. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1849. "assetType": "native",
  1850. "rid": "ubuntu.14.04-x64"
  1851. }
  1852. }
  1853. },
  1854. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1855. "type": "package",
  1856. "runtimeTargets": {
  1857. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1858. "assetType": "native",
  1859. "rid": "ubuntu.16.04-x64"
  1860. }
  1861. }
  1862. },
  1863. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1864. "type": "package",
  1865. "runtimeTargets": {
  1866. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1867. "assetType": "native",
  1868. "rid": "ubuntu.16.10-x64"
  1869. }
  1870. }
  1871. },
  1872. "Serilog/2.11.0": {
  1873. "type": "package",
  1874. "compile": {
  1875. "lib/net5.0/Serilog.dll": {
  1876. "related": ".xml"
  1877. }
  1878. },
  1879. "runtime": {
  1880. "lib/net5.0/Serilog.dll": {
  1881. "related": ".xml"
  1882. }
  1883. }
  1884. },
  1885. "Serilog.Sinks.Console/4.0.1": {
  1886. "type": "package",
  1887. "dependencies": {
  1888. "Serilog": "2.10.0"
  1889. },
  1890. "compile": {
  1891. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1892. "related": ".xml"
  1893. }
  1894. },
  1895. "runtime": {
  1896. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1897. "related": ".xml"
  1898. }
  1899. }
  1900. },
  1901. "Serilog.Sinks.File/5.0.0": {
  1902. "type": "package",
  1903. "dependencies": {
  1904. "Serilog": "2.10.0"
  1905. },
  1906. "compile": {
  1907. "lib/net5.0/Serilog.Sinks.File.dll": {
  1908. "related": ".pdb;.xml"
  1909. }
  1910. },
  1911. "runtime": {
  1912. "lib/net5.0/Serilog.Sinks.File.dll": {
  1913. "related": ".pdb;.xml"
  1914. }
  1915. }
  1916. },
  1917. "SixLabors.ImageSharp/2.1.6": {
  1918. "type": "package",
  1919. "dependencies": {
  1920. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1921. "System.Text.Encoding.CodePages": "5.0.0"
  1922. },
  1923. "compile": {
  1924. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1925. "related": ".xml"
  1926. }
  1927. },
  1928. "runtime": {
  1929. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1930. "related": ".xml"
  1931. }
  1932. }
  1933. },
  1934. "SSH.NET/2020.0.0-beta1": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "SshNet.Security.Cryptography": "[1.3.0]"
  1938. },
  1939. "compile": {
  1940. "lib/netstandard2.0/Renci.SshNet.dll": {
  1941. "related": ".xml"
  1942. }
  1943. },
  1944. "runtime": {
  1945. "lib/netstandard2.0/Renci.SshNet.dll": {
  1946. "related": ".xml"
  1947. }
  1948. }
  1949. },
  1950. "SshNet.Security.Cryptography/1.3.0": {
  1951. "type": "package",
  1952. "compile": {
  1953. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1954. "related": ".xml"
  1955. }
  1956. },
  1957. "runtime": {
  1958. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1959. "related": ".xml"
  1960. }
  1961. }
  1962. },
  1963. "StackExchange.Redis/1.2.4": {
  1964. "type": "package",
  1965. "dependencies": {
  1966. "NETStandard.Library": "1.6.1",
  1967. "System.Collections": "4.3.0",
  1968. "System.Collections.Concurrent": "4.3.0",
  1969. "System.Collections.NonGeneric": "4.3.0",
  1970. "System.Diagnostics.Tools": "4.3.0",
  1971. "System.IO.Compression": "4.3.0",
  1972. "System.IO.FileSystem": "4.3.0",
  1973. "System.Linq": "4.3.0",
  1974. "System.Net.NameResolution": "4.3.0",
  1975. "System.Net.Security": "4.3.0",
  1976. "System.Net.Sockets": "4.3.0",
  1977. "System.Reflection.Emit": "4.3.0",
  1978. "System.Reflection.Emit.Lightweight": "4.3.0",
  1979. "System.Reflection.TypeExtensions": "4.3.0",
  1980. "System.Runtime.Extensions": "4.3.0",
  1981. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1982. "System.Security.Cryptography.Algorithms": "4.3.0",
  1983. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1984. "System.Text.RegularExpressions": "4.3.0",
  1985. "System.Threading": "4.3.0",
  1986. "System.Threading.Thread": "4.3.0",
  1987. "System.Threading.ThreadPool": "4.3.0",
  1988. "System.Threading.Timer": "4.3.0"
  1989. },
  1990. "compile": {
  1991. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1992. "related": ".xml"
  1993. }
  1994. },
  1995. "runtime": {
  1996. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1997. "related": ".xml"
  1998. }
  1999. }
  2000. },
  2001. "System.AppContext/4.3.0": {
  2002. "type": "package",
  2003. "dependencies": {
  2004. "System.Runtime": "4.3.0"
  2005. },
  2006. "compile": {
  2007. "ref/netstandard1.6/System.AppContext.dll": {
  2008. "related": ".xml"
  2009. }
  2010. },
  2011. "runtime": {
  2012. "lib/netstandard1.6/System.AppContext.dll": {}
  2013. }
  2014. },
  2015. "System.Buffers/4.5.1": {
  2016. "type": "package",
  2017. "compile": {
  2018. "ref/netcoreapp2.0/_._": {}
  2019. },
  2020. "runtime": {
  2021. "lib/netcoreapp2.0/_._": {}
  2022. }
  2023. },
  2024. "System.Collections/4.3.0": {
  2025. "type": "package",
  2026. "dependencies": {
  2027. "Microsoft.NETCore.Platforms": "1.1.0",
  2028. "Microsoft.NETCore.Targets": "1.1.0",
  2029. "System.Runtime": "4.3.0"
  2030. },
  2031. "compile": {
  2032. "ref/netstandard1.3/System.Collections.dll": {
  2033. "related": ".xml"
  2034. }
  2035. }
  2036. },
  2037. "System.Collections.Concurrent/4.3.0": {
  2038. "type": "package",
  2039. "dependencies": {
  2040. "System.Collections": "4.3.0",
  2041. "System.Diagnostics.Debug": "4.3.0",
  2042. "System.Diagnostics.Tracing": "4.3.0",
  2043. "System.Globalization": "4.3.0",
  2044. "System.Reflection": "4.3.0",
  2045. "System.Resources.ResourceManager": "4.3.0",
  2046. "System.Runtime": "4.3.0",
  2047. "System.Runtime.Extensions": "4.3.0",
  2048. "System.Threading": "4.3.0",
  2049. "System.Threading.Tasks": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2053. "related": ".xml"
  2054. }
  2055. },
  2056. "runtime": {
  2057. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2058. }
  2059. },
  2060. "System.Collections.Immutable/5.0.0": {
  2061. "type": "package",
  2062. "compile": {
  2063. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2064. "related": ".xml"
  2065. }
  2066. },
  2067. "runtime": {
  2068. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2069. "related": ".xml"
  2070. }
  2071. }
  2072. },
  2073. "System.Collections.NonGeneric/4.3.0": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "System.Diagnostics.Debug": "4.3.0",
  2077. "System.Globalization": "4.3.0",
  2078. "System.Resources.ResourceManager": "4.3.0",
  2079. "System.Runtime": "4.3.0",
  2080. "System.Runtime.Extensions": "4.3.0",
  2081. "System.Threading": "4.3.0"
  2082. },
  2083. "compile": {
  2084. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  2085. "related": ".xml"
  2086. }
  2087. },
  2088. "runtime": {
  2089. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2090. }
  2091. },
  2092. "System.Collections.Specialized/4.3.0": {
  2093. "type": "package",
  2094. "dependencies": {
  2095. "System.Collections.NonGeneric": "4.3.0",
  2096. "System.Globalization": "4.3.0",
  2097. "System.Globalization.Extensions": "4.3.0",
  2098. "System.Resources.ResourceManager": "4.3.0",
  2099. "System.Runtime": "4.3.0",
  2100. "System.Runtime.Extensions": "4.3.0",
  2101. "System.Threading": "4.3.0"
  2102. },
  2103. "compile": {
  2104. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  2105. "related": ".xml"
  2106. }
  2107. },
  2108. "runtime": {
  2109. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  2110. }
  2111. },
  2112. "System.ComponentModel/4.3.0": {
  2113. "type": "package",
  2114. "dependencies": {
  2115. "System.Runtime": "4.3.0"
  2116. },
  2117. "compile": {
  2118. "ref/netstandard1.0/System.ComponentModel.dll": {
  2119. "related": ".xml"
  2120. }
  2121. },
  2122. "runtime": {
  2123. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2124. }
  2125. },
  2126. "System.ComponentModel.Annotations/5.0.0": {
  2127. "type": "package",
  2128. "compile": {
  2129. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2130. "related": ".xml"
  2131. }
  2132. },
  2133. "runtime": {
  2134. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2135. "related": ".xml"
  2136. }
  2137. }
  2138. },
  2139. "System.ComponentModel.EventBasedAsync/4.3.0": {
  2140. "type": "package",
  2141. "dependencies": {
  2142. "System.Resources.ResourceManager": "4.3.0",
  2143. "System.Runtime": "4.3.0",
  2144. "System.Threading": "4.3.0",
  2145. "System.Threading.Tasks": "4.3.0"
  2146. },
  2147. "compile": {
  2148. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  2149. "related": ".xml"
  2150. }
  2151. },
  2152. "runtime": {
  2153. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  2154. }
  2155. },
  2156. "System.ComponentModel.Primitives/4.3.0": {
  2157. "type": "package",
  2158. "dependencies": {
  2159. "System.ComponentModel": "4.3.0",
  2160. "System.Resources.ResourceManager": "4.3.0",
  2161. "System.Runtime": "4.3.0"
  2162. },
  2163. "compile": {
  2164. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  2165. "related": ".xml"
  2166. }
  2167. },
  2168. "runtime": {
  2169. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2170. }
  2171. },
  2172. "System.ComponentModel.TypeConverter/4.3.0": {
  2173. "type": "package",
  2174. "dependencies": {
  2175. "System.Collections": "4.3.0",
  2176. "System.Collections.NonGeneric": "4.3.0",
  2177. "System.Collections.Specialized": "4.3.0",
  2178. "System.ComponentModel": "4.3.0",
  2179. "System.ComponentModel.Primitives": "4.3.0",
  2180. "System.Globalization": "4.3.0",
  2181. "System.Linq": "4.3.0",
  2182. "System.Reflection": "4.3.0",
  2183. "System.Reflection.Extensions": "4.3.0",
  2184. "System.Reflection.Primitives": "4.3.0",
  2185. "System.Reflection.TypeExtensions": "4.3.0",
  2186. "System.Resources.ResourceManager": "4.3.0",
  2187. "System.Runtime": "4.3.0",
  2188. "System.Runtime.Extensions": "4.3.0",
  2189. "System.Threading": "4.3.0"
  2190. },
  2191. "compile": {
  2192. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  2193. "related": ".xml"
  2194. }
  2195. },
  2196. "runtime": {
  2197. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2198. }
  2199. },
  2200. "System.Configuration.ConfigurationManager/4.7.0": {
  2201. "type": "package",
  2202. "dependencies": {
  2203. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2204. "System.Security.Permissions": "4.7.0"
  2205. },
  2206. "compile": {
  2207. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2208. "related": ".xml"
  2209. }
  2210. },
  2211. "runtime": {
  2212. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2213. "related": ".xml"
  2214. }
  2215. }
  2216. },
  2217. "System.Console/4.3.0": {
  2218. "type": "package",
  2219. "dependencies": {
  2220. "Microsoft.NETCore.Platforms": "1.1.0",
  2221. "Microsoft.NETCore.Targets": "1.1.0",
  2222. "System.IO": "4.3.0",
  2223. "System.Runtime": "4.3.0",
  2224. "System.Text.Encoding": "4.3.0"
  2225. },
  2226. "compile": {
  2227. "ref/netstandard1.3/System.Console.dll": {
  2228. "related": ".xml"
  2229. }
  2230. }
  2231. },
  2232. "System.Diagnostics.Debug/4.3.0": {
  2233. "type": "package",
  2234. "dependencies": {
  2235. "Microsoft.NETCore.Platforms": "1.1.0",
  2236. "Microsoft.NETCore.Targets": "1.1.0",
  2237. "System.Runtime": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2241. "related": ".xml"
  2242. }
  2243. }
  2244. },
  2245. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2246. "type": "package",
  2247. "compile": {
  2248. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2249. "related": ".xml"
  2250. }
  2251. },
  2252. "runtime": {
  2253. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2254. "related": ".xml"
  2255. }
  2256. }
  2257. },
  2258. "System.Diagnostics.Tools/4.3.0": {
  2259. "type": "package",
  2260. "dependencies": {
  2261. "Microsoft.NETCore.Platforms": "1.1.0",
  2262. "Microsoft.NETCore.Targets": "1.1.0",
  2263. "System.Runtime": "4.3.0"
  2264. },
  2265. "compile": {
  2266. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2267. "related": ".xml"
  2268. }
  2269. }
  2270. },
  2271. "System.Diagnostics.TraceSource/4.3.0": {
  2272. "type": "package",
  2273. "dependencies": {
  2274. "Microsoft.NETCore.Platforms": "1.1.0",
  2275. "System.Collections": "4.3.0",
  2276. "System.Diagnostics.Debug": "4.3.0",
  2277. "System.Globalization": "4.3.0",
  2278. "System.Resources.ResourceManager": "4.3.0",
  2279. "System.Runtime": "4.3.0",
  2280. "System.Runtime.Extensions": "4.3.0",
  2281. "System.Threading": "4.3.0",
  2282. "runtime.native.System": "4.3.0"
  2283. },
  2284. "compile": {
  2285. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2286. "related": ".xml"
  2287. }
  2288. },
  2289. "runtimeTargets": {
  2290. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2291. "assetType": "runtime",
  2292. "rid": "unix"
  2293. },
  2294. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2295. "assetType": "runtime",
  2296. "rid": "win"
  2297. }
  2298. }
  2299. },
  2300. "System.Diagnostics.Tracing/4.3.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "Microsoft.NETCore.Platforms": "1.1.0",
  2304. "Microsoft.NETCore.Targets": "1.1.0",
  2305. "System.Runtime": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2309. "related": ".xml"
  2310. }
  2311. }
  2312. },
  2313. "System.Drawing.Common/5.0.3": {
  2314. "type": "package",
  2315. "dependencies": {
  2316. "Microsoft.Win32.SystemEvents": "5.0.0"
  2317. },
  2318. "compile": {
  2319. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2320. "related": ".xml"
  2321. }
  2322. },
  2323. "runtime": {
  2324. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2325. "related": ".xml"
  2326. }
  2327. },
  2328. "runtimeTargets": {
  2329. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2330. "assetType": "runtime",
  2331. "rid": "unix"
  2332. },
  2333. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2334. "assetType": "runtime",
  2335. "rid": "win"
  2336. }
  2337. }
  2338. },
  2339. "System.Dynamic.Runtime/4.3.0": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "System.Collections": "4.3.0",
  2343. "System.Diagnostics.Debug": "4.3.0",
  2344. "System.Linq": "4.3.0",
  2345. "System.Linq.Expressions": "4.3.0",
  2346. "System.ObjectModel": "4.3.0",
  2347. "System.Reflection": "4.3.0",
  2348. "System.Reflection.Emit": "4.3.0",
  2349. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2350. "System.Reflection.Primitives": "4.3.0",
  2351. "System.Reflection.TypeExtensions": "4.3.0",
  2352. "System.Resources.ResourceManager": "4.3.0",
  2353. "System.Runtime": "4.3.0",
  2354. "System.Runtime.Extensions": "4.3.0",
  2355. "System.Threading": "4.3.0"
  2356. },
  2357. "compile": {
  2358. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2359. "related": ".xml"
  2360. }
  2361. },
  2362. "runtime": {
  2363. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2364. }
  2365. },
  2366. "System.Globalization/4.3.0": {
  2367. "type": "package",
  2368. "dependencies": {
  2369. "Microsoft.NETCore.Platforms": "1.1.0",
  2370. "Microsoft.NETCore.Targets": "1.1.0",
  2371. "System.Runtime": "4.3.0"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Globalization.dll": {
  2375. "related": ".xml"
  2376. }
  2377. }
  2378. },
  2379. "System.Globalization.Calendars/4.3.0": {
  2380. "type": "package",
  2381. "dependencies": {
  2382. "Microsoft.NETCore.Platforms": "1.1.0",
  2383. "Microsoft.NETCore.Targets": "1.1.0",
  2384. "System.Globalization": "4.3.0",
  2385. "System.Runtime": "4.3.0"
  2386. },
  2387. "compile": {
  2388. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2389. "related": ".xml"
  2390. }
  2391. }
  2392. },
  2393. "System.Globalization.Extensions/4.3.0": {
  2394. "type": "package",
  2395. "dependencies": {
  2396. "Microsoft.NETCore.Platforms": "1.1.0",
  2397. "System.Globalization": "4.3.0",
  2398. "System.Resources.ResourceManager": "4.3.0",
  2399. "System.Runtime": "4.3.0",
  2400. "System.Runtime.Extensions": "4.3.0",
  2401. "System.Runtime.InteropServices": "4.3.0"
  2402. },
  2403. "compile": {
  2404. "ref/netstandard1.3/_._": {
  2405. "related": ".xml"
  2406. }
  2407. },
  2408. "runtimeTargets": {
  2409. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2410. "assetType": "runtime",
  2411. "rid": "unix"
  2412. },
  2413. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2414. "assetType": "runtime",
  2415. "rid": "win"
  2416. }
  2417. }
  2418. },
  2419. "System.IO/4.3.0": {
  2420. "type": "package",
  2421. "dependencies": {
  2422. "Microsoft.NETCore.Platforms": "1.1.0",
  2423. "Microsoft.NETCore.Targets": "1.1.0",
  2424. "System.Runtime": "4.3.0",
  2425. "System.Text.Encoding": "4.3.0",
  2426. "System.Threading.Tasks": "4.3.0"
  2427. },
  2428. "compile": {
  2429. "ref/netstandard1.5/System.IO.dll": {
  2430. "related": ".xml"
  2431. }
  2432. }
  2433. },
  2434. "System.IO.Compression/4.3.0": {
  2435. "type": "package",
  2436. "dependencies": {
  2437. "Microsoft.NETCore.Platforms": "1.1.0",
  2438. "System.Buffers": "4.3.0",
  2439. "System.Collections": "4.3.0",
  2440. "System.Diagnostics.Debug": "4.3.0",
  2441. "System.IO": "4.3.0",
  2442. "System.Resources.ResourceManager": "4.3.0",
  2443. "System.Runtime": "4.3.0",
  2444. "System.Runtime.Extensions": "4.3.0",
  2445. "System.Runtime.Handles": "4.3.0",
  2446. "System.Runtime.InteropServices": "4.3.0",
  2447. "System.Text.Encoding": "4.3.0",
  2448. "System.Threading": "4.3.0",
  2449. "System.Threading.Tasks": "4.3.0",
  2450. "runtime.native.System": "4.3.0",
  2451. "runtime.native.System.IO.Compression": "4.3.0"
  2452. },
  2453. "compile": {
  2454. "ref/netstandard1.3/System.IO.Compression.dll": {
  2455. "related": ".xml"
  2456. }
  2457. },
  2458. "runtimeTargets": {
  2459. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2460. "assetType": "runtime",
  2461. "rid": "unix"
  2462. },
  2463. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2464. "assetType": "runtime",
  2465. "rid": "win"
  2466. }
  2467. }
  2468. },
  2469. "System.IO.Compression.ZipFile/4.3.0": {
  2470. "type": "package",
  2471. "dependencies": {
  2472. "System.Buffers": "4.3.0",
  2473. "System.IO": "4.3.0",
  2474. "System.IO.Compression": "4.3.0",
  2475. "System.IO.FileSystem": "4.3.0",
  2476. "System.IO.FileSystem.Primitives": "4.3.0",
  2477. "System.Resources.ResourceManager": "4.3.0",
  2478. "System.Runtime": "4.3.0",
  2479. "System.Runtime.Extensions": "4.3.0",
  2480. "System.Text.Encoding": "4.3.0"
  2481. },
  2482. "compile": {
  2483. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2484. "related": ".xml"
  2485. }
  2486. },
  2487. "runtime": {
  2488. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2489. }
  2490. },
  2491. "System.IO.FileSystem/4.3.0": {
  2492. "type": "package",
  2493. "dependencies": {
  2494. "Microsoft.NETCore.Platforms": "1.1.0",
  2495. "Microsoft.NETCore.Targets": "1.1.0",
  2496. "System.IO": "4.3.0",
  2497. "System.IO.FileSystem.Primitives": "4.3.0",
  2498. "System.Runtime": "4.3.0",
  2499. "System.Runtime.Handles": "4.3.0",
  2500. "System.Text.Encoding": "4.3.0",
  2501. "System.Threading.Tasks": "4.3.0"
  2502. },
  2503. "compile": {
  2504. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2505. "related": ".xml"
  2506. }
  2507. }
  2508. },
  2509. "System.IO.FileSystem.Primitives/4.3.0": {
  2510. "type": "package",
  2511. "dependencies": {
  2512. "System.Runtime": "4.3.0"
  2513. },
  2514. "compile": {
  2515. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2516. "related": ".xml"
  2517. }
  2518. },
  2519. "runtime": {
  2520. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2521. }
  2522. },
  2523. "System.IO.Pipelines/5.0.0": {
  2524. "type": "package",
  2525. "compile": {
  2526. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtime": {
  2531. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2532. "related": ".xml"
  2533. }
  2534. }
  2535. },
  2536. "System.Linq/4.3.0": {
  2537. "type": "package",
  2538. "dependencies": {
  2539. "System.Collections": "4.3.0",
  2540. "System.Diagnostics.Debug": "4.3.0",
  2541. "System.Resources.ResourceManager": "4.3.0",
  2542. "System.Runtime": "4.3.0",
  2543. "System.Runtime.Extensions": "4.3.0"
  2544. },
  2545. "compile": {
  2546. "ref/netstandard1.6/System.Linq.dll": {
  2547. "related": ".xml"
  2548. }
  2549. },
  2550. "runtime": {
  2551. "lib/netstandard1.6/System.Linq.dll": {}
  2552. }
  2553. },
  2554. "System.Linq.Expressions/4.3.0": {
  2555. "type": "package",
  2556. "dependencies": {
  2557. "System.Collections": "4.3.0",
  2558. "System.Diagnostics.Debug": "4.3.0",
  2559. "System.Globalization": "4.3.0",
  2560. "System.IO": "4.3.0",
  2561. "System.Linq": "4.3.0",
  2562. "System.ObjectModel": "4.3.0",
  2563. "System.Reflection": "4.3.0",
  2564. "System.Reflection.Emit": "4.3.0",
  2565. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2566. "System.Reflection.Emit.Lightweight": "4.3.0",
  2567. "System.Reflection.Extensions": "4.3.0",
  2568. "System.Reflection.Primitives": "4.3.0",
  2569. "System.Reflection.TypeExtensions": "4.3.0",
  2570. "System.Resources.ResourceManager": "4.3.0",
  2571. "System.Runtime": "4.3.0",
  2572. "System.Runtime.Extensions": "4.3.0",
  2573. "System.Threading": "4.3.0"
  2574. },
  2575. "compile": {
  2576. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2577. "related": ".xml"
  2578. }
  2579. },
  2580. "runtime": {
  2581. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2582. }
  2583. },
  2584. "System.Memory/4.5.5": {
  2585. "type": "package",
  2586. "compile": {
  2587. "ref/netcoreapp2.1/_._": {}
  2588. },
  2589. "runtime": {
  2590. "lib/netcoreapp2.1/_._": {}
  2591. }
  2592. },
  2593. "System.Net.Http/4.3.2": {
  2594. "type": "package",
  2595. "dependencies": {
  2596. "Microsoft.NETCore.Platforms": "1.1.0",
  2597. "System.Collections": "4.3.0",
  2598. "System.Diagnostics.Debug": "4.3.0",
  2599. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2600. "System.Diagnostics.Tracing": "4.3.0",
  2601. "System.Globalization": "4.3.0",
  2602. "System.Globalization.Extensions": "4.3.0",
  2603. "System.IO": "4.3.0",
  2604. "System.IO.FileSystem": "4.3.0",
  2605. "System.Net.Primitives": "4.3.0",
  2606. "System.Resources.ResourceManager": "4.3.0",
  2607. "System.Runtime": "4.3.0",
  2608. "System.Runtime.Extensions": "4.3.0",
  2609. "System.Runtime.Handles": "4.3.0",
  2610. "System.Runtime.InteropServices": "4.3.0",
  2611. "System.Security.Cryptography.Algorithms": "4.3.0",
  2612. "System.Security.Cryptography.Encoding": "4.3.0",
  2613. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2614. "System.Security.Cryptography.Primitives": "4.3.0",
  2615. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2616. "System.Text.Encoding": "4.3.0",
  2617. "System.Threading": "4.3.0",
  2618. "System.Threading.Tasks": "4.3.0",
  2619. "runtime.native.System": "4.3.0",
  2620. "runtime.native.System.Net.Http": "4.3.0",
  2621. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2622. },
  2623. "compile": {
  2624. "ref/netstandard1.3/System.Net.Http.dll": {}
  2625. },
  2626. "runtimeTargets": {
  2627. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2628. "assetType": "runtime",
  2629. "rid": "unix"
  2630. },
  2631. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2632. "assetType": "runtime",
  2633. "rid": "win"
  2634. }
  2635. }
  2636. },
  2637. "System.Net.NameResolution/4.3.0": {
  2638. "type": "package",
  2639. "dependencies": {
  2640. "Microsoft.NETCore.Platforms": "1.1.0",
  2641. "System.Collections": "4.3.0",
  2642. "System.Diagnostics.Tracing": "4.3.0",
  2643. "System.Globalization": "4.3.0",
  2644. "System.Net.Primitives": "4.3.0",
  2645. "System.Resources.ResourceManager": "4.3.0",
  2646. "System.Runtime": "4.3.0",
  2647. "System.Runtime.Extensions": "4.3.0",
  2648. "System.Runtime.Handles": "4.3.0",
  2649. "System.Runtime.InteropServices": "4.3.0",
  2650. "System.Security.Principal.Windows": "4.3.0",
  2651. "System.Threading": "4.3.0",
  2652. "System.Threading.Tasks": "4.3.0",
  2653. "runtime.native.System": "4.3.0"
  2654. },
  2655. "compile": {
  2656. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2657. "related": ".xml"
  2658. }
  2659. },
  2660. "runtimeTargets": {
  2661. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2662. "assetType": "runtime",
  2663. "rid": "unix"
  2664. },
  2665. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2666. "assetType": "runtime",
  2667. "rid": "win"
  2668. }
  2669. }
  2670. },
  2671. "System.Net.Primitives/4.3.0": {
  2672. "type": "package",
  2673. "dependencies": {
  2674. "Microsoft.NETCore.Platforms": "1.1.0",
  2675. "Microsoft.NETCore.Targets": "1.1.0",
  2676. "System.Runtime": "4.3.0",
  2677. "System.Runtime.Handles": "4.3.0"
  2678. },
  2679. "compile": {
  2680. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2681. "related": ".xml"
  2682. }
  2683. }
  2684. },
  2685. "System.Net.Security/4.3.0": {
  2686. "type": "package",
  2687. "dependencies": {
  2688. "Microsoft.NETCore.Platforms": "1.1.0",
  2689. "Microsoft.Win32.Primitives": "4.3.0",
  2690. "System.Collections": "4.3.0",
  2691. "System.Collections.Concurrent": "4.3.0",
  2692. "System.Diagnostics.Tracing": "4.3.0",
  2693. "System.Globalization": "4.3.0",
  2694. "System.Globalization.Extensions": "4.3.0",
  2695. "System.IO": "4.3.0",
  2696. "System.Net.Primitives": "4.3.0",
  2697. "System.Resources.ResourceManager": "4.3.0",
  2698. "System.Runtime": "4.3.0",
  2699. "System.Runtime.Extensions": "4.3.0",
  2700. "System.Runtime.Handles": "4.3.0",
  2701. "System.Runtime.InteropServices": "4.3.0",
  2702. "System.Security.Claims": "4.3.0",
  2703. "System.Security.Cryptography.Algorithms": "4.3.0",
  2704. "System.Security.Cryptography.Encoding": "4.3.0",
  2705. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2706. "System.Security.Cryptography.Primitives": "4.3.0",
  2707. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2708. "System.Security.Principal": "4.3.0",
  2709. "System.Text.Encoding": "4.3.0",
  2710. "System.Threading": "4.3.0",
  2711. "System.Threading.Tasks": "4.3.0",
  2712. "System.Threading.ThreadPool": "4.3.0",
  2713. "runtime.native.System": "4.3.0",
  2714. "runtime.native.System.Net.Security": "4.3.0",
  2715. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2716. },
  2717. "compile": {
  2718. "ref/netstandard1.3/System.Net.Security.dll": {
  2719. "related": ".xml"
  2720. }
  2721. },
  2722. "runtimeTargets": {
  2723. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2724. "assetType": "runtime",
  2725. "rid": "unix"
  2726. },
  2727. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2728. "assetType": "runtime",
  2729. "rid": "win"
  2730. }
  2731. }
  2732. },
  2733. "System.Net.Sockets/4.3.0": {
  2734. "type": "package",
  2735. "dependencies": {
  2736. "Microsoft.NETCore.Platforms": "1.1.0",
  2737. "Microsoft.NETCore.Targets": "1.1.0",
  2738. "System.IO": "4.3.0",
  2739. "System.Net.Primitives": "4.3.0",
  2740. "System.Runtime": "4.3.0",
  2741. "System.Threading.Tasks": "4.3.0"
  2742. },
  2743. "compile": {
  2744. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2745. "related": ".xml"
  2746. }
  2747. }
  2748. },
  2749. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  2750. "type": "package",
  2751. "compile": {
  2752. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2753. },
  2754. "runtime": {
  2755. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2756. }
  2757. },
  2758. "System.ObjectModel/4.3.0": {
  2759. "type": "package",
  2760. "dependencies": {
  2761. "System.Collections": "4.3.0",
  2762. "System.Diagnostics.Debug": "4.3.0",
  2763. "System.Resources.ResourceManager": "4.3.0",
  2764. "System.Runtime": "4.3.0",
  2765. "System.Threading": "4.3.0"
  2766. },
  2767. "compile": {
  2768. "ref/netstandard1.3/System.ObjectModel.dll": {
  2769. "related": ".xml"
  2770. }
  2771. },
  2772. "runtime": {
  2773. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2774. }
  2775. },
  2776. "System.Reactive/4.4.1": {
  2777. "type": "package",
  2778. "compile": {
  2779. "lib/netcoreapp3.0/_._": {}
  2780. },
  2781. "runtime": {
  2782. "lib/netcoreapp3.0/_._": {}
  2783. },
  2784. "build": {
  2785. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2786. }
  2787. },
  2788. "System.Reflection/4.3.0": {
  2789. "type": "package",
  2790. "dependencies": {
  2791. "Microsoft.NETCore.Platforms": "1.1.0",
  2792. "Microsoft.NETCore.Targets": "1.1.0",
  2793. "System.IO": "4.3.0",
  2794. "System.Reflection.Primitives": "4.3.0",
  2795. "System.Runtime": "4.3.0"
  2796. },
  2797. "compile": {
  2798. "ref/netstandard1.5/System.Reflection.dll": {
  2799. "related": ".xml"
  2800. }
  2801. }
  2802. },
  2803. "System.Reflection.Emit/4.7.0": {
  2804. "type": "package",
  2805. "compile": {
  2806. "ref/netcoreapp2.0/_._": {}
  2807. },
  2808. "runtime": {
  2809. "lib/netcoreapp2.0/_._": {}
  2810. }
  2811. },
  2812. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2813. "type": "package",
  2814. "dependencies": {
  2815. "System.Reflection": "4.3.0",
  2816. "System.Reflection.Primitives": "4.3.0",
  2817. "System.Runtime": "4.3.0"
  2818. },
  2819. "compile": {
  2820. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "runtime": {
  2825. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2826. }
  2827. },
  2828. "System.Reflection.Emit.Lightweight/4.3.0": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "System.Reflection": "4.3.0",
  2832. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2833. "System.Reflection.Primitives": "4.3.0",
  2834. "System.Runtime": "4.3.0"
  2835. },
  2836. "compile": {
  2837. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2838. "related": ".xml"
  2839. }
  2840. },
  2841. "runtime": {
  2842. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2843. }
  2844. },
  2845. "System.Reflection.Extensions/4.3.0": {
  2846. "type": "package",
  2847. "dependencies": {
  2848. "Microsoft.NETCore.Platforms": "1.1.0",
  2849. "Microsoft.NETCore.Targets": "1.1.0",
  2850. "System.Reflection": "4.3.0",
  2851. "System.Runtime": "4.3.0"
  2852. },
  2853. "compile": {
  2854. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2855. "related": ".xml"
  2856. }
  2857. }
  2858. },
  2859. "System.Reflection.Primitives/4.3.0": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "Microsoft.NETCore.Platforms": "1.1.0",
  2863. "Microsoft.NETCore.Targets": "1.1.0",
  2864. "System.Runtime": "4.3.0"
  2865. },
  2866. "compile": {
  2867. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2868. "related": ".xml"
  2869. }
  2870. }
  2871. },
  2872. "System.Reflection.TypeExtensions/4.3.0": {
  2873. "type": "package",
  2874. "dependencies": {
  2875. "System.Reflection": "4.3.0",
  2876. "System.Runtime": "4.3.0"
  2877. },
  2878. "compile": {
  2879. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2880. "related": ".xml"
  2881. }
  2882. },
  2883. "runtime": {
  2884. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2885. }
  2886. },
  2887. "System.Resources.ResourceManager/4.3.0": {
  2888. "type": "package",
  2889. "dependencies": {
  2890. "Microsoft.NETCore.Platforms": "1.1.0",
  2891. "Microsoft.NETCore.Targets": "1.1.0",
  2892. "System.Globalization": "4.3.0",
  2893. "System.Reflection": "4.3.0",
  2894. "System.Runtime": "4.3.0"
  2895. },
  2896. "compile": {
  2897. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2898. "related": ".xml"
  2899. }
  2900. }
  2901. },
  2902. "System.Runtime/4.3.0": {
  2903. "type": "package",
  2904. "dependencies": {
  2905. "Microsoft.NETCore.Platforms": "1.1.0",
  2906. "Microsoft.NETCore.Targets": "1.1.0"
  2907. },
  2908. "compile": {
  2909. "ref/netstandard1.5/System.Runtime.dll": {
  2910. "related": ".xml"
  2911. }
  2912. }
  2913. },
  2914. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2915. "type": "package",
  2916. "compile": {
  2917. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2918. "related": ".xml"
  2919. }
  2920. },
  2921. "runtime": {
  2922. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2923. "related": ".xml"
  2924. }
  2925. }
  2926. },
  2927. "System.Runtime.Extensions/4.3.0": {
  2928. "type": "package",
  2929. "dependencies": {
  2930. "Microsoft.NETCore.Platforms": "1.1.0",
  2931. "Microsoft.NETCore.Targets": "1.1.0",
  2932. "System.Runtime": "4.3.0"
  2933. },
  2934. "compile": {
  2935. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2936. "related": ".xml"
  2937. }
  2938. }
  2939. },
  2940. "System.Runtime.Handles/4.3.0": {
  2941. "type": "package",
  2942. "dependencies": {
  2943. "Microsoft.NETCore.Platforms": "1.1.0",
  2944. "Microsoft.NETCore.Targets": "1.1.0",
  2945. "System.Runtime": "4.3.0"
  2946. },
  2947. "compile": {
  2948. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2949. "related": ".xml"
  2950. }
  2951. }
  2952. },
  2953. "System.Runtime.InteropServices/4.3.0": {
  2954. "type": "package",
  2955. "dependencies": {
  2956. "Microsoft.NETCore.Platforms": "1.1.0",
  2957. "Microsoft.NETCore.Targets": "1.1.0",
  2958. "System.Reflection": "4.3.0",
  2959. "System.Reflection.Primitives": "4.3.0",
  2960. "System.Runtime": "4.3.0",
  2961. "System.Runtime.Handles": "4.3.0"
  2962. },
  2963. "compile": {
  2964. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2965. }
  2966. },
  2967. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2968. "type": "package",
  2969. "dependencies": {
  2970. "System.Reflection": "4.3.0",
  2971. "System.Reflection.Extensions": "4.3.0",
  2972. "System.Resources.ResourceManager": "4.3.0",
  2973. "System.Runtime": "4.3.0",
  2974. "System.Runtime.InteropServices": "4.3.0",
  2975. "System.Threading": "4.3.0",
  2976. "runtime.native.System": "4.3.0"
  2977. },
  2978. "compile": {
  2979. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2980. },
  2981. "runtime": {
  2982. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2983. },
  2984. "runtimeTargets": {
  2985. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2986. "assetType": "runtime",
  2987. "rid": "unix"
  2988. },
  2989. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2990. "assetType": "runtime",
  2991. "rid": "win"
  2992. }
  2993. }
  2994. },
  2995. "System.Runtime.Numerics/4.3.0": {
  2996. "type": "package",
  2997. "dependencies": {
  2998. "System.Globalization": "4.3.0",
  2999. "System.Resources.ResourceManager": "4.3.0",
  3000. "System.Runtime": "4.3.0",
  3001. "System.Runtime.Extensions": "4.3.0"
  3002. },
  3003. "compile": {
  3004. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  3005. "related": ".xml"
  3006. }
  3007. },
  3008. "runtime": {
  3009. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3010. }
  3011. },
  3012. "System.Runtime.Serialization.Primitives/4.3.0": {
  3013. "type": "package",
  3014. "dependencies": {
  3015. "System.Resources.ResourceManager": "4.3.0",
  3016. "System.Runtime": "4.3.0"
  3017. },
  3018. "compile": {
  3019. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  3020. "related": ".xml"
  3021. }
  3022. },
  3023. "runtime": {
  3024. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3025. }
  3026. },
  3027. "System.Security.AccessControl/4.7.0": {
  3028. "type": "package",
  3029. "dependencies": {
  3030. "Microsoft.NETCore.Platforms": "3.1.0",
  3031. "System.Security.Principal.Windows": "4.7.0"
  3032. },
  3033. "compile": {
  3034. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  3035. "related": ".xml"
  3036. }
  3037. },
  3038. "runtime": {
  3039. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  3040. "related": ".xml"
  3041. }
  3042. },
  3043. "runtimeTargets": {
  3044. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  3045. "assetType": "runtime",
  3046. "rid": "win"
  3047. }
  3048. }
  3049. },
  3050. "System.Security.Claims/4.3.0": {
  3051. "type": "package",
  3052. "dependencies": {
  3053. "System.Collections": "4.3.0",
  3054. "System.Globalization": "4.3.0",
  3055. "System.IO": "4.3.0",
  3056. "System.Resources.ResourceManager": "4.3.0",
  3057. "System.Runtime": "4.3.0",
  3058. "System.Runtime.Extensions": "4.3.0",
  3059. "System.Security.Principal": "4.3.0"
  3060. },
  3061. "compile": {
  3062. "ref/netstandard1.3/_._": {
  3063. "related": ".xml"
  3064. }
  3065. },
  3066. "runtime": {
  3067. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3068. }
  3069. },
  3070. "System.Security.Cryptography.Algorithms/4.3.0": {
  3071. "type": "package",
  3072. "dependencies": {
  3073. "Microsoft.NETCore.Platforms": "1.1.0",
  3074. "System.Collections": "4.3.0",
  3075. "System.IO": "4.3.0",
  3076. "System.Resources.ResourceManager": "4.3.0",
  3077. "System.Runtime": "4.3.0",
  3078. "System.Runtime.Extensions": "4.3.0",
  3079. "System.Runtime.Handles": "4.3.0",
  3080. "System.Runtime.InteropServices": "4.3.0",
  3081. "System.Runtime.Numerics": "4.3.0",
  3082. "System.Security.Cryptography.Encoding": "4.3.0",
  3083. "System.Security.Cryptography.Primitives": "4.3.0",
  3084. "System.Text.Encoding": "4.3.0",
  3085. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3086. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3087. },
  3088. "compile": {
  3089. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3090. },
  3091. "runtimeTargets": {
  3092. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3093. "assetType": "runtime",
  3094. "rid": "osx"
  3095. },
  3096. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3097. "assetType": "runtime",
  3098. "rid": "unix"
  3099. },
  3100. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3101. "assetType": "runtime",
  3102. "rid": "win"
  3103. }
  3104. }
  3105. },
  3106. "System.Security.Cryptography.Cng/4.3.0": {
  3107. "type": "package",
  3108. "dependencies": {
  3109. "Microsoft.NETCore.Platforms": "1.1.0",
  3110. "System.IO": "4.3.0",
  3111. "System.Resources.ResourceManager": "4.3.0",
  3112. "System.Runtime": "4.3.0",
  3113. "System.Runtime.Extensions": "4.3.0",
  3114. "System.Runtime.Handles": "4.3.0",
  3115. "System.Runtime.InteropServices": "4.3.0",
  3116. "System.Security.Cryptography.Algorithms": "4.3.0",
  3117. "System.Security.Cryptography.Encoding": "4.3.0",
  3118. "System.Security.Cryptography.Primitives": "4.3.0",
  3119. "System.Text.Encoding": "4.3.0"
  3120. },
  3121. "compile": {
  3122. "ref/netstandard1.6/_._": {}
  3123. },
  3124. "runtimeTargets": {
  3125. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3126. "assetType": "runtime",
  3127. "rid": "unix"
  3128. },
  3129. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3130. "assetType": "runtime",
  3131. "rid": "win"
  3132. }
  3133. }
  3134. },
  3135. "System.Security.Cryptography.Csp/4.3.0": {
  3136. "type": "package",
  3137. "dependencies": {
  3138. "Microsoft.NETCore.Platforms": "1.1.0",
  3139. "System.IO": "4.3.0",
  3140. "System.Reflection": "4.3.0",
  3141. "System.Resources.ResourceManager": "4.3.0",
  3142. "System.Runtime": "4.3.0",
  3143. "System.Runtime.Extensions": "4.3.0",
  3144. "System.Runtime.Handles": "4.3.0",
  3145. "System.Runtime.InteropServices": "4.3.0",
  3146. "System.Security.Cryptography.Algorithms": "4.3.0",
  3147. "System.Security.Cryptography.Encoding": "4.3.0",
  3148. "System.Security.Cryptography.Primitives": "4.3.0",
  3149. "System.Text.Encoding": "4.3.0",
  3150. "System.Threading": "4.3.0"
  3151. },
  3152. "compile": {
  3153. "ref/netstandard1.3/_._": {}
  3154. },
  3155. "runtimeTargets": {
  3156. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3157. "assetType": "runtime",
  3158. "rid": "unix"
  3159. },
  3160. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3161. "assetType": "runtime",
  3162. "rid": "win"
  3163. }
  3164. }
  3165. },
  3166. "System.Security.Cryptography.Encoding/4.3.0": {
  3167. "type": "package",
  3168. "dependencies": {
  3169. "Microsoft.NETCore.Platforms": "1.1.0",
  3170. "System.Collections": "4.3.0",
  3171. "System.Collections.Concurrent": "4.3.0",
  3172. "System.Linq": "4.3.0",
  3173. "System.Resources.ResourceManager": "4.3.0",
  3174. "System.Runtime": "4.3.0",
  3175. "System.Runtime.Extensions": "4.3.0",
  3176. "System.Runtime.Handles": "4.3.0",
  3177. "System.Runtime.InteropServices": "4.3.0",
  3178. "System.Security.Cryptography.Primitives": "4.3.0",
  3179. "System.Text.Encoding": "4.3.0",
  3180. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3181. },
  3182. "compile": {
  3183. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3184. "related": ".xml"
  3185. }
  3186. },
  3187. "runtimeTargets": {
  3188. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3189. "assetType": "runtime",
  3190. "rid": "unix"
  3191. },
  3192. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3193. "assetType": "runtime",
  3194. "rid": "win"
  3195. }
  3196. }
  3197. },
  3198. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3199. "type": "package",
  3200. "dependencies": {
  3201. "System.Collections": "4.3.0",
  3202. "System.IO": "4.3.0",
  3203. "System.Resources.ResourceManager": "4.3.0",
  3204. "System.Runtime": "4.3.0",
  3205. "System.Runtime.Extensions": "4.3.0",
  3206. "System.Runtime.Handles": "4.3.0",
  3207. "System.Runtime.InteropServices": "4.3.0",
  3208. "System.Runtime.Numerics": "4.3.0",
  3209. "System.Security.Cryptography.Algorithms": "4.3.0",
  3210. "System.Security.Cryptography.Encoding": "4.3.0",
  3211. "System.Security.Cryptography.Primitives": "4.3.0",
  3212. "System.Text.Encoding": "4.3.0",
  3213. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3214. },
  3215. "compile": {
  3216. "ref/netstandard1.6/_._": {}
  3217. },
  3218. "runtime": {
  3219. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3220. },
  3221. "runtimeTargets": {
  3222. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3223. "assetType": "runtime",
  3224. "rid": "unix"
  3225. }
  3226. }
  3227. },
  3228. "System.Security.Cryptography.Primitives/4.3.0": {
  3229. "type": "package",
  3230. "dependencies": {
  3231. "System.Diagnostics.Debug": "4.3.0",
  3232. "System.Globalization": "4.3.0",
  3233. "System.IO": "4.3.0",
  3234. "System.Resources.ResourceManager": "4.3.0",
  3235. "System.Runtime": "4.3.0",
  3236. "System.Threading": "4.3.0",
  3237. "System.Threading.Tasks": "4.3.0"
  3238. },
  3239. "compile": {
  3240. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3241. },
  3242. "runtime": {
  3243. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3244. }
  3245. },
  3246. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3247. "type": "package",
  3248. "compile": {
  3249. "ref/netstandard2.0/_._": {
  3250. "related": ".xml"
  3251. }
  3252. },
  3253. "runtime": {
  3254. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3255. "related": ".xml"
  3256. }
  3257. },
  3258. "runtimeTargets": {
  3259. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3260. "assetType": "runtime",
  3261. "rid": "win"
  3262. }
  3263. }
  3264. },
  3265. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3266. "type": "package",
  3267. "dependencies": {
  3268. "Microsoft.NETCore.Platforms": "1.1.0",
  3269. "System.Collections": "4.3.0",
  3270. "System.Diagnostics.Debug": "4.3.0",
  3271. "System.Globalization": "4.3.0",
  3272. "System.Globalization.Calendars": "4.3.0",
  3273. "System.IO": "4.3.0",
  3274. "System.IO.FileSystem": "4.3.0",
  3275. "System.IO.FileSystem.Primitives": "4.3.0",
  3276. "System.Resources.ResourceManager": "4.3.0",
  3277. "System.Runtime": "4.3.0",
  3278. "System.Runtime.Extensions": "4.3.0",
  3279. "System.Runtime.Handles": "4.3.0",
  3280. "System.Runtime.InteropServices": "4.3.0",
  3281. "System.Runtime.Numerics": "4.3.0",
  3282. "System.Security.Cryptography.Algorithms": "4.3.0",
  3283. "System.Security.Cryptography.Cng": "4.3.0",
  3284. "System.Security.Cryptography.Csp": "4.3.0",
  3285. "System.Security.Cryptography.Encoding": "4.3.0",
  3286. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3287. "System.Security.Cryptography.Primitives": "4.3.0",
  3288. "System.Text.Encoding": "4.3.0",
  3289. "System.Threading": "4.3.0",
  3290. "runtime.native.System": "4.3.0",
  3291. "runtime.native.System.Net.Http": "4.3.0",
  3292. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3293. },
  3294. "compile": {
  3295. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3296. "related": ".xml"
  3297. }
  3298. },
  3299. "runtimeTargets": {
  3300. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3301. "assetType": "runtime",
  3302. "rid": "unix"
  3303. },
  3304. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3305. "assetType": "runtime",
  3306. "rid": "win"
  3307. }
  3308. }
  3309. },
  3310. "System.Security.Permissions/4.7.0": {
  3311. "type": "package",
  3312. "dependencies": {
  3313. "System.Security.AccessControl": "4.7.0",
  3314. "System.Windows.Extensions": "4.7.0"
  3315. },
  3316. "compile": {
  3317. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3318. "related": ".xml"
  3319. }
  3320. },
  3321. "runtime": {
  3322. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3323. "related": ".xml"
  3324. }
  3325. }
  3326. },
  3327. "System.Security.Principal/4.3.0": {
  3328. "type": "package",
  3329. "dependencies": {
  3330. "System.Runtime": "4.3.0"
  3331. },
  3332. "compile": {
  3333. "ref/netstandard1.0/System.Security.Principal.dll": {
  3334. "related": ".xml"
  3335. }
  3336. },
  3337. "runtime": {
  3338. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3339. }
  3340. },
  3341. "System.Security.Principal.Windows/4.7.0": {
  3342. "type": "package",
  3343. "compile": {
  3344. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3345. "related": ".xml"
  3346. }
  3347. },
  3348. "runtime": {
  3349. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3350. "related": ".xml"
  3351. }
  3352. },
  3353. "runtimeTargets": {
  3354. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3355. "assetType": "runtime",
  3356. "rid": "unix"
  3357. },
  3358. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3359. "assetType": "runtime",
  3360. "rid": "win"
  3361. }
  3362. }
  3363. },
  3364. "System.Text.Encoding/4.3.0": {
  3365. "type": "package",
  3366. "dependencies": {
  3367. "Microsoft.NETCore.Platforms": "1.1.0",
  3368. "Microsoft.NETCore.Targets": "1.1.0",
  3369. "System.Runtime": "4.3.0"
  3370. },
  3371. "compile": {
  3372. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3373. "related": ".xml"
  3374. }
  3375. }
  3376. },
  3377. "System.Text.Encoding.CodePages/5.0.0": {
  3378. "type": "package",
  3379. "dependencies": {
  3380. "Microsoft.NETCore.Platforms": "5.0.0"
  3381. },
  3382. "compile": {
  3383. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3384. "related": ".xml"
  3385. }
  3386. },
  3387. "runtime": {
  3388. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3389. "related": ".xml"
  3390. }
  3391. },
  3392. "runtimeTargets": {
  3393. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3394. "assetType": "runtime",
  3395. "rid": "win"
  3396. }
  3397. }
  3398. },
  3399. "System.Text.Encoding.Extensions/4.3.0": {
  3400. "type": "package",
  3401. "dependencies": {
  3402. "Microsoft.NETCore.Platforms": "1.1.0",
  3403. "Microsoft.NETCore.Targets": "1.1.0",
  3404. "System.Runtime": "4.3.0",
  3405. "System.Text.Encoding": "4.3.0"
  3406. },
  3407. "compile": {
  3408. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3409. "related": ".xml"
  3410. }
  3411. }
  3412. },
  3413. "System.Text.Encodings.Web/4.7.0": {
  3414. "type": "package",
  3415. "compile": {
  3416. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3417. "related": ".xml"
  3418. }
  3419. },
  3420. "runtime": {
  3421. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3422. "related": ".xml"
  3423. }
  3424. }
  3425. },
  3426. "System.Text.RegularExpressions/4.3.0": {
  3427. "type": "package",
  3428. "dependencies": {
  3429. "System.Runtime": "4.3.0"
  3430. },
  3431. "compile": {
  3432. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3433. },
  3434. "runtime": {
  3435. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3436. }
  3437. },
  3438. "System.Threading/4.3.0": {
  3439. "type": "package",
  3440. "dependencies": {
  3441. "System.Runtime": "4.3.0",
  3442. "System.Threading.Tasks": "4.3.0"
  3443. },
  3444. "compile": {
  3445. "ref/netstandard1.3/System.Threading.dll": {
  3446. "related": ".xml"
  3447. }
  3448. },
  3449. "runtime": {
  3450. "lib/netstandard1.3/System.Threading.dll": {}
  3451. }
  3452. },
  3453. "System.Threading.Channels/7.0.0": {
  3454. "type": "package",
  3455. "compile": {
  3456. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3457. "related": ".xml"
  3458. }
  3459. },
  3460. "runtime": {
  3461. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3462. "related": ".xml"
  3463. }
  3464. },
  3465. "build": {
  3466. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3467. }
  3468. },
  3469. "System.Threading.Tasks/4.3.0": {
  3470. "type": "package",
  3471. "dependencies": {
  3472. "Microsoft.NETCore.Platforms": "1.1.0",
  3473. "Microsoft.NETCore.Targets": "1.1.0",
  3474. "System.Runtime": "4.3.0"
  3475. },
  3476. "compile": {
  3477. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3478. "related": ".xml"
  3479. }
  3480. }
  3481. },
  3482. "System.Threading.Tasks.Extensions/4.3.0": {
  3483. "type": "package",
  3484. "dependencies": {
  3485. "System.Collections": "4.3.0",
  3486. "System.Runtime": "4.3.0",
  3487. "System.Threading.Tasks": "4.3.0"
  3488. },
  3489. "compile": {
  3490. "lib/netstandard1.0/_._": {
  3491. "related": ".xml"
  3492. }
  3493. },
  3494. "runtime": {
  3495. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3496. "related": ".xml"
  3497. }
  3498. }
  3499. },
  3500. "System.Threading.Thread/4.3.0": {
  3501. "type": "package",
  3502. "dependencies": {
  3503. "System.Runtime": "4.3.0"
  3504. },
  3505. "compile": {
  3506. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3507. "related": ".xml"
  3508. }
  3509. },
  3510. "runtime": {
  3511. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3512. }
  3513. },
  3514. "System.Threading.ThreadPool/4.3.0": {
  3515. "type": "package",
  3516. "dependencies": {
  3517. "System.Runtime": "4.3.0",
  3518. "System.Runtime.Handles": "4.3.0"
  3519. },
  3520. "compile": {
  3521. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3522. "related": ".xml"
  3523. }
  3524. },
  3525. "runtime": {
  3526. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3527. }
  3528. },
  3529. "System.Threading.Timer/4.3.0": {
  3530. "type": "package",
  3531. "dependencies": {
  3532. "Microsoft.NETCore.Platforms": "1.1.0",
  3533. "Microsoft.NETCore.Targets": "1.1.0",
  3534. "System.Runtime": "4.3.0"
  3535. },
  3536. "compile": {
  3537. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3538. "related": ".xml"
  3539. }
  3540. }
  3541. },
  3542. "System.Windows.Extensions/4.7.0": {
  3543. "type": "package",
  3544. "dependencies": {
  3545. "System.Drawing.Common": "4.7.0"
  3546. },
  3547. "compile": {
  3548. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3549. "related": ".xml"
  3550. }
  3551. },
  3552. "runtime": {
  3553. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3554. "related": ".xml"
  3555. }
  3556. },
  3557. "runtimeTargets": {
  3558. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3559. "assetType": "runtime",
  3560. "rid": "win"
  3561. }
  3562. }
  3563. },
  3564. "System.Xml.ReaderWriter/4.3.0": {
  3565. "type": "package",
  3566. "dependencies": {
  3567. "System.Collections": "4.3.0",
  3568. "System.Diagnostics.Debug": "4.3.0",
  3569. "System.Globalization": "4.3.0",
  3570. "System.IO": "4.3.0",
  3571. "System.IO.FileSystem": "4.3.0",
  3572. "System.IO.FileSystem.Primitives": "4.3.0",
  3573. "System.Resources.ResourceManager": "4.3.0",
  3574. "System.Runtime": "4.3.0",
  3575. "System.Runtime.Extensions": "4.3.0",
  3576. "System.Runtime.InteropServices": "4.3.0",
  3577. "System.Text.Encoding": "4.3.0",
  3578. "System.Text.Encoding.Extensions": "4.3.0",
  3579. "System.Text.RegularExpressions": "4.3.0",
  3580. "System.Threading.Tasks": "4.3.0",
  3581. "System.Threading.Tasks.Extensions": "4.3.0"
  3582. },
  3583. "compile": {
  3584. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3585. "related": ".xml"
  3586. }
  3587. },
  3588. "runtime": {
  3589. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3590. }
  3591. },
  3592. "System.Xml.XDocument/4.3.0": {
  3593. "type": "package",
  3594. "dependencies": {
  3595. "System.Collections": "4.3.0",
  3596. "System.Diagnostics.Debug": "4.3.0",
  3597. "System.Diagnostics.Tools": "4.3.0",
  3598. "System.Globalization": "4.3.0",
  3599. "System.IO": "4.3.0",
  3600. "System.Reflection": "4.3.0",
  3601. "System.Resources.ResourceManager": "4.3.0",
  3602. "System.Runtime": "4.3.0",
  3603. "System.Runtime.Extensions": "4.3.0",
  3604. "System.Text.Encoding": "4.3.0",
  3605. "System.Threading": "4.3.0",
  3606. "System.Xml.ReaderWriter": "4.3.0"
  3607. },
  3608. "compile": {
  3609. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3610. "related": ".xml"
  3611. }
  3612. },
  3613. "runtime": {
  3614. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3615. }
  3616. },
  3617. "System.Xml.XmlDocument/4.3.0": {
  3618. "type": "package",
  3619. "dependencies": {
  3620. "System.Collections": "4.3.0",
  3621. "System.Diagnostics.Debug": "4.3.0",
  3622. "System.Globalization": "4.3.0",
  3623. "System.IO": "4.3.0",
  3624. "System.Resources.ResourceManager": "4.3.0",
  3625. "System.Runtime": "4.3.0",
  3626. "System.Runtime.Extensions": "4.3.0",
  3627. "System.Text.Encoding": "4.3.0",
  3628. "System.Threading": "4.3.0",
  3629. "System.Xml.ReaderWriter": "4.3.0"
  3630. },
  3631. "compile": {
  3632. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3633. "related": ".xml"
  3634. }
  3635. },
  3636. "runtime": {
  3637. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3638. }
  3639. },
  3640. "ToolGood.Words/3.1.0.2": {
  3641. "type": "package",
  3642. "compile": {
  3643. "lib/netstandard2.1/ToolGood.Words.dll": {
  3644. "related": ".xml"
  3645. }
  3646. },
  3647. "runtime": {
  3648. "lib/netstandard2.1/ToolGood.Words.dll": {
  3649. "related": ".xml"
  3650. }
  3651. }
  3652. },
  3653. "Ulid/1.4.1": {
  3654. "type": "package",
  3655. "dependencies": {
  3656. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  3657. },
  3658. "compile": {
  3659. "lib/netstandard2.1/Ulid.dll": {
  3660. "related": ".xml"
  3661. }
  3662. },
  3663. "runtime": {
  3664. "lib/netstandard2.1/Ulid.dll": {
  3665. "related": ".xml"
  3666. }
  3667. }
  3668. },
  3669. "ZXing.Net/0.16.9": {
  3670. "type": "package",
  3671. "compile": {
  3672. "lib/net5.0/zxing.dll": {
  3673. "related": ".XML"
  3674. }
  3675. },
  3676. "runtime": {
  3677. "lib/net5.0/zxing.dll": {
  3678. "related": ".XML"
  3679. }
  3680. }
  3681. },
  3682. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3683. "type": "package",
  3684. "dependencies": {
  3685. "SixLabors.ImageSharp": "2.1.3",
  3686. "ZXing.Net": "0.16.9"
  3687. },
  3688. "compile": {
  3689. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3690. "related": ".pdb;.xml"
  3691. }
  3692. },
  3693. "runtime": {
  3694. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3695. "related": ".pdb;.xml"
  3696. }
  3697. }
  3698. },
  3699. "Ropin.Core.Common/1.0.0": {
  3700. "type": "project",
  3701. "framework": ".NETCoreApp,Version=v5.0",
  3702. "dependencies": {
  3703. "Coravel": "4.2.1",
  3704. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3705. "Newtonsoft.Json": "13.0.1",
  3706. "QRCoder": "1.4.3",
  3707. "SixLabors.ImageSharp": "2.1.6",
  3708. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3709. },
  3710. "compile": {
  3711. "bin/placeholder/Ropin.Core.Common.dll": {}
  3712. },
  3713. "runtime": {
  3714. "bin/placeholder/Ropin.Core.Common.dll": {}
  3715. }
  3716. },
  3717. "Ropin.Core.Extensions/1.0.0": {
  3718. "type": "project",
  3719. "framework": ".NETCoreApp,Version=v5.0",
  3720. "dependencies": {
  3721. "Autofac": "6.2.0",
  3722. "Autofac.Extras.DynamicProxy": "6.0.0",
  3723. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3724. "Ropin.Core.Common": "1.0.0",
  3725. "Ropin.Inspection.Common": "1.0.0",
  3726. "Ropin.Inspection.Service": "1.0.0",
  3727. "Ropin.Inspection.Tasks": "1.0.0",
  3728. "StackExchange.Redis": "1.2.4",
  3729. "log4net": "2.0.17"
  3730. },
  3731. "compile": {
  3732. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3733. },
  3734. "runtime": {
  3735. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3736. }
  3737. },
  3738. "Ropin.Inspection.Common/1.0.0": {
  3739. "type": "project",
  3740. "framework": ".NETCoreApp,Version=v5.0",
  3741. "dependencies": {
  3742. "FluentEmail.Smtp": "3.0.2",
  3743. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3744. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3745. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3746. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3747. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3748. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3749. "Microsoft.Extensions.Configuration": "5.0.0",
  3750. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3751. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3752. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3753. "Microsoft.Extensions.Http": "5.0.0",
  3754. "Newtonsoft.Json": "13.0.1",
  3755. "RabbitMQ.Client": "6.8.1",
  3756. "ToolGood.Words": "3.1.0.2",
  3757. "Ulid": "1.4.1",
  3758. "log4net": "2.0.17"
  3759. },
  3760. "compile": {
  3761. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3762. },
  3763. "runtime": {
  3764. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3765. }
  3766. },
  3767. "Ropin.Inspection.Model/1.0.0": {
  3768. "type": "project",
  3769. "framework": ".NETCoreApp,Version=v5.0",
  3770. "dependencies": {
  3771. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3772. "Microsoft.EntityFrameworkCore": "5.0.0",
  3773. "MySql.Data": "8.0.23",
  3774. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3775. "Ropin.Inspection.Common": "1.0.0"
  3776. },
  3777. "compile": {
  3778. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3779. },
  3780. "runtime": {
  3781. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3782. }
  3783. },
  3784. "Ropin.Inspection.Repository/1.0.0": {
  3785. "type": "project",
  3786. "framework": ".NETCoreApp,Version=v5.0",
  3787. "dependencies": {
  3788. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3789. "Microsoft.EntityFrameworkCore": "5.0.0",
  3790. "Ropin.Inspection.Model": "1.0.0"
  3791. },
  3792. "compile": {
  3793. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3794. },
  3795. "runtime": {
  3796. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3797. }
  3798. },
  3799. "Ropin.Inspection.Service/1.0.0": {
  3800. "type": "project",
  3801. "framework": ".NETCoreApp,Version=v5.0",
  3802. "dependencies": {
  3803. "AutoMapper": "10.1.1",
  3804. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3805. "Newtonsoft.Json": "13.0.1",
  3806. "Ropin.Core.Common": "1.0.0",
  3807. "Ropin.Inspection.Common": "1.0.0",
  3808. "Ropin.Inspection.Model": "1.0.0",
  3809. "Ropin.Inspection.Repository": "1.0.0",
  3810. "log4net": "2.0.17"
  3811. },
  3812. "compile": {
  3813. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3814. },
  3815. "runtime": {
  3816. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3817. }
  3818. },
  3819. "Ropin.Inspection.Tasks/1.0.0": {
  3820. "type": "project",
  3821. "framework": ".NETCoreApp,Version=v5.0",
  3822. "dependencies": {
  3823. "Quartz": "3.3.3",
  3824. "Ropin.Inspection.Common": "1.0.0",
  3825. "Ropin.Inspection.Model": "1.0.0",
  3826. "Ropin.Inspection.Service": "1.0.0"
  3827. },
  3828. "compile": {
  3829. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3830. },
  3831. "runtime": {
  3832. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3833. }
  3834. }
  3835. }
  3836. },
  3837. "libraries": {
  3838. "AdvancedStringBuilder/0.1.0": {
  3839. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3840. "type": "package",
  3841. "path": "advancedstringbuilder/0.1.0",
  3842. "files": [
  3843. ".nupkg.metadata",
  3844. ".signature.p7s",
  3845. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3846. "advancedstringbuilder.nuspec",
  3847. "lib/net40-client/AdvancedStringBuilder.dll",
  3848. "lib/net40-client/AdvancedStringBuilder.xml",
  3849. "lib/net45/AdvancedStringBuilder.dll",
  3850. "lib/net45/AdvancedStringBuilder.xml",
  3851. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3852. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3853. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3854. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3855. ]
  3856. },
  3857. "AdysTech.InfluxDB.Client.Net/0.15.0": {
  3858. "sha512": "QmCGYdKISLmfngXJFig8+qZQ9Sy4952yl/TGu07OQ6ZAazQ4bo3XSp5GvpNmfVw1YNk+smaAWc2u63par1hxXg==",
  3859. "type": "package",
  3860. "path": "adystech.influxdb.client.net/0.15.0",
  3861. "files": [
  3862. ".nupkg.metadata",
  3863. ".signature.p7s",
  3864. "adystech.influxdb.client.net.0.15.0.nupkg.sha512",
  3865. "adystech.influxdb.client.net.nuspec",
  3866. "lib/net46/AdysTech.InfluxDB.Client.Net.dll"
  3867. ]
  3868. },
  3869. "Autofac/6.2.0": {
  3870. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3871. "type": "package",
  3872. "path": "autofac/6.2.0",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "autofac.6.2.0.nupkg.sha512",
  3877. "autofac.nuspec",
  3878. "icon.png",
  3879. "lib/net5.0/Autofac.dll",
  3880. "lib/net5.0/Autofac.pdb",
  3881. "lib/net5.0/Autofac.xml",
  3882. "lib/netstandard2.0/Autofac.dll",
  3883. "lib/netstandard2.0/Autofac.pdb",
  3884. "lib/netstandard2.0/Autofac.xml",
  3885. "lib/netstandard2.1/Autofac.dll",
  3886. "lib/netstandard2.1/Autofac.pdb",
  3887. "lib/netstandard2.1/Autofac.xml"
  3888. ]
  3889. },
  3890. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3891. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3892. "type": "package",
  3893. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3898. "autofac.extensions.dependencyinjection.nuspec",
  3899. "icon.png",
  3900. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3901. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3902. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3903. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3904. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3905. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3906. ]
  3907. },
  3908. "Autofac.Extras.DynamicProxy/6.0.0": {
  3909. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3910. "type": "package",
  3911. "path": "autofac.extras.dynamicproxy/6.0.0",
  3912. "files": [
  3913. ".nupkg.metadata",
  3914. ".signature.p7s",
  3915. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3916. "autofac.extras.dynamicproxy.nuspec",
  3917. "icon.png",
  3918. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3919. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3920. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3921. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3922. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3923. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3924. ]
  3925. },
  3926. "AutoMapper/10.1.1": {
  3927. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3928. "type": "package",
  3929. "path": "automapper/10.1.1",
  3930. "files": [
  3931. ".nupkg.metadata",
  3932. ".signature.p7s",
  3933. "automapper.10.1.1.nupkg.sha512",
  3934. "automapper.nuspec",
  3935. "icon.png",
  3936. "lib/net461/AutoMapper.dll",
  3937. "lib/net461/AutoMapper.xml",
  3938. "lib/netstandard2.0/AutoMapper.dll",
  3939. "lib/netstandard2.0/AutoMapper.xml"
  3940. ]
  3941. },
  3942. "BouncyCastle.NetCore/1.8.5": {
  3943. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3944. "type": "package",
  3945. "path": "bouncycastle.netcore/1.8.5",
  3946. "files": [
  3947. ".nupkg.metadata",
  3948. ".signature.p7s",
  3949. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3950. "bouncycastle.netcore.nuspec",
  3951. "lib/Mono/BouncyCastle.Crypto.dll",
  3952. "lib/Mono/BouncyCastle.Crypto.xml",
  3953. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3954. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3955. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3956. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3957. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3958. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3959. "lib/net20/BouncyCastle.Crypto.dll",
  3960. "lib/net20/BouncyCastle.Crypto.xml",
  3961. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3962. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3963. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3964. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3965. ]
  3966. },
  3967. "Castle.Core/4.4.0": {
  3968. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3969. "type": "package",
  3970. "path": "castle.core/4.4.0",
  3971. "files": [
  3972. ".nupkg.metadata",
  3973. ".signature.p7s",
  3974. "ASL - Apache Software Foundation License.txt",
  3975. "CHANGELOG.md",
  3976. "LICENSE",
  3977. "castle.core.4.4.0.nupkg.sha512",
  3978. "castle.core.nuspec",
  3979. "lib/net35/Castle.Core.dll",
  3980. "lib/net35/Castle.Core.xml",
  3981. "lib/net40/Castle.Core.dll",
  3982. "lib/net40/Castle.Core.xml",
  3983. "lib/net45/Castle.Core.dll",
  3984. "lib/net45/Castle.Core.xml",
  3985. "lib/netstandard1.3/Castle.Core.dll",
  3986. "lib/netstandard1.3/Castle.Core.xml",
  3987. "lib/netstandard1.5/Castle.Core.dll",
  3988. "lib/netstandard1.5/Castle.Core.xml",
  3989. "readme.txt"
  3990. ]
  3991. },
  3992. "Coravel/4.2.1": {
  3993. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3994. "type": "package",
  3995. "path": "coravel/4.2.1",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "coravel.4.2.1.nupkg.sha512",
  4000. "coravel.nuspec",
  4001. "lib/netstandard2.0/Coravel.dll",
  4002. "lib/netstandard2.0/Coravel.xml",
  4003. "logo.png",
  4004. "readme.md"
  4005. ]
  4006. },
  4007. "FBoxClientDriver/1.2.0": {
  4008. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  4009. "type": "package",
  4010. "path": "fboxclientdriver/1.2.0",
  4011. "files": [
  4012. ".nupkg.metadata",
  4013. ".signature.p7s",
  4014. "fboxclientdriver.1.2.0.nupkg.sha512",
  4015. "fboxclientdriver.nuspec",
  4016. "lib/netstandard2.0/FBoxClientDriver.dll",
  4017. "lib/netstandard2.0/FBoxClientDriver.xml"
  4018. ]
  4019. },
  4020. "FBoxClientDriver.Contract/1.2.0": {
  4021. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  4022. "type": "package",
  4023. "path": "fboxclientdriver.contract/1.2.0",
  4024. "files": [
  4025. ".nupkg.metadata",
  4026. ".signature.p7s",
  4027. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  4028. "fboxclientdriver.contract.nuspec",
  4029. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  4030. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  4031. ]
  4032. },
  4033. "FluentEmail.Core/3.0.2": {
  4034. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  4035. "type": "package",
  4036. "path": "fluentemail.core/3.0.2",
  4037. "files": [
  4038. ".nupkg.metadata",
  4039. ".signature.p7s",
  4040. "fluentemail.core.3.0.2.nupkg.sha512",
  4041. "fluentemail.core.nuspec",
  4042. "fluentemail_logo_64x64.png",
  4043. "lib/netstandard2.0/FluentEmail.Core.dll"
  4044. ]
  4045. },
  4046. "FluentEmail.Smtp/3.0.2": {
  4047. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  4048. "type": "package",
  4049. "path": "fluentemail.smtp/3.0.2",
  4050. "files": [
  4051. ".nupkg.metadata",
  4052. ".signature.p7s",
  4053. "fluentemail.smtp.3.0.2.nupkg.sha512",
  4054. "fluentemail.smtp.nuspec",
  4055. "fluentemail_logo_64x64.png",
  4056. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  4057. ]
  4058. },
  4059. "Google.Protobuf/3.11.4": {
  4060. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  4061. "type": "package",
  4062. "path": "google.protobuf/3.11.4",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. ".signature.p7s",
  4066. "google.protobuf.3.11.4.nupkg.sha512",
  4067. "google.protobuf.nuspec",
  4068. "lib/net45/Google.Protobuf.dll",
  4069. "lib/net45/Google.Protobuf.pdb",
  4070. "lib/net45/Google.Protobuf.xml",
  4071. "lib/netstandard1.0/Google.Protobuf.dll",
  4072. "lib/netstandard1.0/Google.Protobuf.pdb",
  4073. "lib/netstandard1.0/Google.Protobuf.xml",
  4074. "lib/netstandard2.0/Google.Protobuf.dll",
  4075. "lib/netstandard2.0/Google.Protobuf.pdb",
  4076. "lib/netstandard2.0/Google.Protobuf.xml"
  4077. ]
  4078. },
  4079. "IdentityModel/4.3.1": {
  4080. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  4081. "type": "package",
  4082. "path": "identitymodel/4.3.1",
  4083. "files": [
  4084. ".nupkg.metadata",
  4085. ".signature.p7s",
  4086. "icon.jpg",
  4087. "identitymodel.4.3.1.nupkg.sha512",
  4088. "identitymodel.nuspec",
  4089. "lib/net461/IdentityModel.dll",
  4090. "lib/net461/IdentityModel.pdb",
  4091. "lib/net461/IdentityModel.xml",
  4092. "lib/net472/IdentityModel.dll",
  4093. "lib/net472/IdentityModel.pdb",
  4094. "lib/net472/IdentityModel.xml",
  4095. "lib/netstandard2.0/IdentityModel.dll",
  4096. "lib/netstandard2.0/IdentityModel.pdb",
  4097. "lib/netstandard2.0/IdentityModel.xml"
  4098. ]
  4099. },
  4100. "InfluxData.Net/8.0.1": {
  4101. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  4102. "type": "package",
  4103. "path": "influxdata.net/8.0.1",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. ".signature.p7s",
  4107. "influxdata.net.8.0.1.nupkg.sha512",
  4108. "influxdata.net.nuspec",
  4109. "lib/net461/InfluxData.Net.Common.dll",
  4110. "lib/net461/InfluxData.Net.Common.dll.config",
  4111. "lib/net461/InfluxData.Net.Common.pdb",
  4112. "lib/net461/InfluxData.Net.InfluxDb.dll",
  4113. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  4114. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  4115. "lib/net461/InfluxData.Net.Kapacitor.dll",
  4116. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  4117. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  4118. "lib/net461/InfluxData.Net.dll",
  4119. "lib/net461/InfluxData.Net.dll.config",
  4120. "lib/net461/InfluxData.Net.pdb",
  4121. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  4122. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  4123. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  4124. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  4125. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  4126. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  4127. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  4128. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  4129. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  4130. "lib/netstandard2.0/InfluxData.Net.deps.json",
  4131. "lib/netstandard2.0/InfluxData.Net.dll",
  4132. "lib/netstandard2.0/InfluxData.Net.dll.config",
  4133. "lib/netstandard2.0/InfluxData.Net.pdb"
  4134. ]
  4135. },
  4136. "InitQ/1.0.0.14": {
  4137. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  4138. "type": "package",
  4139. "path": "initq/1.0.0.14",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "initq.1.0.0.14.nupkg.sha512",
  4144. "initq.nuspec",
  4145. "lib/netcoreapp2.1/InitQ.dll"
  4146. ]
  4147. },
  4148. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4149. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4150. "type": "package",
  4151. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4152. "files": [
  4153. ".nupkg.metadata",
  4154. ".signature.p7s",
  4155. "LICENSE.txt",
  4156. "advanced-string-builder-license.txt",
  4157. "chakra-samples-license.txt",
  4158. "icon.png",
  4159. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4160. "javascriptengineswitcher.chakracore.nuspec",
  4161. "jsrt-dotnet-license.txt",
  4162. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4163. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4164. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4165. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4166. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4167. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4168. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4169. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4170. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4171. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4172. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4173. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4174. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4175. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4176. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4177. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4178. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4179. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4180. "polyfills-for-old-dot-net-license.txt",
  4181. "readme.txt"
  4182. ]
  4183. },
  4184. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4185. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4186. "type": "package",
  4187. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4188. "files": [
  4189. ".nupkg.metadata",
  4190. ".signature.p7s",
  4191. "LICENSE.txt",
  4192. "chakra-core-license.txt",
  4193. "icon.png",
  4194. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4195. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4196. "readme.txt",
  4197. "runtimes/linux-x64/native/libChakraCore.so"
  4198. ]
  4199. },
  4200. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4201. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4202. "type": "package",
  4203. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4204. "hasTools": true,
  4205. "files": [
  4206. ".nupkg.metadata",
  4207. ".signature.p7s",
  4208. "LICENSE.txt",
  4209. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4210. "chakra-core-license.txt",
  4211. "icon.png",
  4212. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4213. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4214. "readme.txt",
  4215. "runtimes/win-x64/native/ChakraCore.dll",
  4216. "tools/Install.ps1",
  4217. "tools/Uninstall.ps1"
  4218. ]
  4219. },
  4220. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4221. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4222. "type": "package",
  4223. "path": "javascriptengineswitcher.core/3.21.0",
  4224. "files": [
  4225. ".nupkg.metadata",
  4226. ".signature.p7s",
  4227. "LICENSE.txt",
  4228. "advanced-string-builder-license.txt",
  4229. "icon.png",
  4230. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4231. "javascriptengineswitcher.core.nuspec",
  4232. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4233. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4234. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4235. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4236. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4237. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4238. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4239. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4240. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4241. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4242. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4243. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4244. "readme.txt"
  4245. ]
  4246. },
  4247. "K4os.Compression.LZ4/1.1.11": {
  4248. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4249. "type": "package",
  4250. "path": "k4os.compression.lz4/1.1.11",
  4251. "files": [
  4252. ".nupkg.metadata",
  4253. ".signature.p7s",
  4254. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4255. "k4os.compression.lz4.nuspec",
  4256. "lib/net45/K4os.Compression.LZ4.dll",
  4257. "lib/net45/K4os.Compression.LZ4.xml",
  4258. "lib/net46/K4os.Compression.LZ4.dll",
  4259. "lib/net46/K4os.Compression.LZ4.xml",
  4260. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4261. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4262. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4263. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4264. ]
  4265. },
  4266. "K4os.Compression.LZ4.Streams/1.1.11": {
  4267. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4268. "type": "package",
  4269. "path": "k4os.compression.lz4.streams/1.1.11",
  4270. "files": [
  4271. ".nupkg.metadata",
  4272. ".signature.p7s",
  4273. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4274. "k4os.compression.lz4.streams.nuspec",
  4275. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4276. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4277. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4278. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4279. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4280. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4281. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4282. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4283. ]
  4284. },
  4285. "K4os.Hash.xxHash/1.0.6": {
  4286. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4287. "type": "package",
  4288. "path": "k4os.hash.xxhash/1.0.6",
  4289. "files": [
  4290. ".nupkg.metadata",
  4291. ".signature.p7s",
  4292. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4293. "k4os.hash.xxhash.nuspec",
  4294. "lib/net45/K4os.Hash.xxHash.dll",
  4295. "lib/net45/K4os.Hash.xxHash.xml",
  4296. "lib/net46/K4os.Hash.xxHash.dll",
  4297. "lib/net46/K4os.Hash.xxHash.xml",
  4298. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4299. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4300. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4301. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4302. ]
  4303. },
  4304. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4305. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4306. "type": "package",
  4307. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4308. "files": [
  4309. ".nupkg.metadata",
  4310. ".signature.p7s",
  4311. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4312. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4313. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4314. "linqkit.microsoft.entityframeworkcore.nuspec"
  4315. ]
  4316. },
  4317. "log4net/2.0.17": {
  4318. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4319. "type": "package",
  4320. "path": "log4net/2.0.17",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "lib/net20/log4net.dll",
  4325. "lib/net20/log4net.xml",
  4326. "lib/net35/log4net.dll",
  4327. "lib/net35/log4net.xml",
  4328. "lib/net40-client/log4net.dll",
  4329. "lib/net40-client/log4net.xml",
  4330. "lib/net40/log4net.dll",
  4331. "lib/net40/log4net.xml",
  4332. "lib/net45/log4net.dll",
  4333. "lib/net45/log4net.xml",
  4334. "lib/netstandard1.3/log4net.dll",
  4335. "lib/netstandard1.3/log4net.xml",
  4336. "lib/netstandard2.0/log4net.dll",
  4337. "lib/netstandard2.0/log4net.xml",
  4338. "log4net.2.0.17.nupkg.sha512",
  4339. "log4net.nuspec",
  4340. "package-icon.png"
  4341. ]
  4342. },
  4343. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4344. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4345. "type": "package",
  4346. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4347. "files": [
  4348. ".nupkg.metadata",
  4349. ".signature.p7s",
  4350. "Microsoft.AspNet.SignalR.Client.2.4.1.nupkg.sha512",
  4351. "Microsoft.AspNet.SignalR.Client.nuspec",
  4352. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4353. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4354. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4355. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4356. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4357. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4358. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4359. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4360. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4361. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4362. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4363. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml"
  4364. ]
  4365. },
  4366. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  4367. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  4368. "type": "package",
  4369. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  4370. "files": [
  4371. ".nupkg.metadata",
  4372. ".signature.p7s",
  4373. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  4374. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  4375. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  4376. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  4377. ]
  4378. },
  4379. "Microsoft.AspNetCore.Authorization/2.2.0": {
  4380. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  4381. "type": "package",
  4382. "path": "microsoft.aspnetcore.authorization/2.2.0",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4387. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4388. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  4389. "microsoft.aspnetcore.authorization.nuspec"
  4390. ]
  4391. },
  4392. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  4393. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  4394. "type": "package",
  4395. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  4396. "files": [
  4397. ".nupkg.metadata",
  4398. ".signature.p7s",
  4399. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  4400. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  4401. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  4402. "microsoft.aspnetcore.authorization.policy.nuspec"
  4403. ]
  4404. },
  4405. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  4406. "sha512": "9bpgnQRo2/dKhUUnKjULeTTXPAsQ/OMGar5HV+MDU8ukArEXmu/cvNo2aWReyf2CHTbUOEE496v8cVgUoDXu6Q==",
  4407. "type": "package",
  4408. "path": "microsoft.aspnetcore.connections.abstractions/3.1.20",
  4409. "files": [
  4410. ".nupkg.metadata",
  4411. ".signature.p7s",
  4412. "Icon.png",
  4413. "THIRD-PARTY-NOTICES.TXT",
  4414. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4415. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4416. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4417. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4418. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4419. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4420. "microsoft.aspnetcore.connections.abstractions.3.1.20.nupkg.sha512",
  4421. "microsoft.aspnetcore.connections.abstractions.nuspec"
  4422. ]
  4423. },
  4424. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  4425. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  4426. "type": "package",
  4427. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  4428. "files": [
  4429. ".nupkg.metadata",
  4430. ".signature.p7s",
  4431. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4432. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4433. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  4434. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  4435. ]
  4436. },
  4437. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  4438. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  4439. "type": "package",
  4440. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  4441. "files": [
  4442. ".nupkg.metadata",
  4443. ".signature.p7s",
  4444. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4445. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4446. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  4447. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  4448. ]
  4449. },
  4450. "Microsoft.AspNetCore.Http/2.2.0": {
  4451. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  4452. "type": "package",
  4453. "path": "microsoft.aspnetcore.http/2.2.0",
  4454. "files": [
  4455. ".nupkg.metadata",
  4456. ".signature.p7s",
  4457. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4458. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4459. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  4460. "microsoft.aspnetcore.http.nuspec"
  4461. ]
  4462. },
  4463. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4464. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4465. "type": "package",
  4466. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4467. "files": [
  4468. ".nupkg.metadata",
  4469. ".signature.p7s",
  4470. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4471. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4472. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4473. "microsoft.aspnetcore.http.abstractions.nuspec"
  4474. ]
  4475. },
  4476. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  4477. "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==",
  4478. "type": "package",
  4479. "path": "microsoft.aspnetcore.http.connections/1.1.0",
  4480. "files": [
  4481. ".nupkg.metadata",
  4482. ".signature.p7s",
  4483. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll",
  4484. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml",
  4485. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll",
  4486. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml",
  4487. "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
  4488. "microsoft.aspnetcore.http.connections.nuspec"
  4489. ]
  4490. },
  4491. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  4492. "sha512": "MLAS2LJeid3Bck1Q5AUfjD5tstqXV6KuVNDD+rJXAz/PYqD4TvYJ1PvUIwMEjQo8OMdoxNQl0xpXcSfz4Fod5A==",
  4493. "type": "package",
  4494. "path": "microsoft.aspnetcore.http.connections.client/3.1.20",
  4495. "files": [
  4496. ".nupkg.metadata",
  4497. ".signature.p7s",
  4498. "Icon.png",
  4499. "THIRD-PARTY-NOTICES.TXT",
  4500. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4501. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4502. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4503. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4504. "microsoft.aspnetcore.http.connections.client.3.1.20.nupkg.sha512",
  4505. "microsoft.aspnetcore.http.connections.client.nuspec"
  4506. ]
  4507. },
  4508. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  4509. "sha512": "HEScvniD1E2Uv1t9Sfpu36u+FYnAQQPc/2obAARWolrOsdUPlSHPT6sXajrAic9JSnpWM9AVIMB22Nb+k/NuEg==",
  4510. "type": "package",
  4511. "path": "microsoft.aspnetcore.http.connections.common/3.1.20",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "Icon.png",
  4516. "THIRD-PARTY-NOTICES.TXT",
  4517. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4518. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4519. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4520. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4521. "microsoft.aspnetcore.http.connections.common.3.1.20.nupkg.sha512",
  4522. "microsoft.aspnetcore.http.connections.common.nuspec"
  4523. ]
  4524. },
  4525. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4526. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4527. "type": "package",
  4528. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4533. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4534. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  4535. "microsoft.aspnetcore.http.extensions.nuspec"
  4536. ]
  4537. },
  4538. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4539. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4540. "type": "package",
  4541. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4542. "files": [
  4543. ".nupkg.metadata",
  4544. ".signature.p7s",
  4545. "Icon.png",
  4546. "THIRD-PARTY-NOTICES.TXT",
  4547. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4548. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4549. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4550. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4551. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4552. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4553. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4554. "microsoft.aspnetcore.http.features.nuspec"
  4555. ]
  4556. },
  4557. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4558. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4559. "type": "package",
  4560. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4561. "files": [
  4562. ".nupkg.metadata",
  4563. ".signature.p7s",
  4564. "Icon.png",
  4565. "THIRD-PARTY-NOTICES.TXT",
  4566. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4567. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4568. "microsoft.aspnetcore.nodeservices.nuspec"
  4569. ]
  4570. },
  4571. "Microsoft.AspNetCore.Routing/2.2.0": {
  4572. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4573. "type": "package",
  4574. "path": "microsoft.aspnetcore.routing/2.2.0",
  4575. "files": [
  4576. ".nupkg.metadata",
  4577. ".signature.p7s",
  4578. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4579. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4580. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4581. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4582. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4583. "microsoft.aspnetcore.routing.nuspec"
  4584. ]
  4585. },
  4586. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4587. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4588. "type": "package",
  4589. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4590. "files": [
  4591. ".nupkg.metadata",
  4592. ".signature.p7s",
  4593. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4594. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4595. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4596. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4597. ]
  4598. },
  4599. "Microsoft.AspNetCore.SignalR/1.1.0": {
  4600. "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==",
  4601. "type": "package",
  4602. "path": "microsoft.aspnetcore.signalr/1.1.0",
  4603. "files": [
  4604. ".nupkg.metadata",
  4605. ".signature.p7s",
  4606. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll",
  4607. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml",
  4608. "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
  4609. "microsoft.aspnetcore.signalr.nuspec"
  4610. ]
  4611. },
  4612. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  4613. "sha512": "Sq8a6+hIAvaYQOPDDfIiEkeZmDYROfecRu/qvRE8e3tWVMFhBTxp2I21ywNNNUj95TSRGX93/X5BbFgnPVDMGQ==",
  4614. "type": "package",
  4615. "path": "microsoft.aspnetcore.signalr.client/3.1.20",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "Icon.png",
  4620. "THIRD-PARTY-NOTICES.TXT",
  4621. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll",
  4622. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml",
  4623. "microsoft.aspnetcore.signalr.client.3.1.20.nupkg.sha512",
  4624. "microsoft.aspnetcore.signalr.client.nuspec"
  4625. ]
  4626. },
  4627. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  4628. "sha512": "ZB2tpDtuLUbYJaG+R/lOpZ3QeQc1J5zCz57sgNtzhxnNQ8iZQmHRdfTsRyFNANTvwbthN0U7YDEGIfXzyh7s7g==",
  4629. "type": "package",
  4630. "path": "microsoft.aspnetcore.signalr.client.core/3.1.20",
  4631. "files": [
  4632. ".nupkg.metadata",
  4633. ".signature.p7s",
  4634. "Icon.png",
  4635. "THIRD-PARTY-NOTICES.TXT",
  4636. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4637. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4638. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4639. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4640. "microsoft.aspnetcore.signalr.client.core.3.1.20.nupkg.sha512",
  4641. "microsoft.aspnetcore.signalr.client.core.nuspec"
  4642. ]
  4643. },
  4644. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  4645. "sha512": "20KE+/GPxmgcKEvHpqg589Tye56WTvhMkh9zLg5JDnvueiXTfsLSr8izc9AceUGhfjBloug2pzwU2glOnhn8Pw==",
  4646. "type": "package",
  4647. "path": "microsoft.aspnetcore.signalr.common/3.1.20",
  4648. "files": [
  4649. ".nupkg.metadata",
  4650. ".signature.p7s",
  4651. "Icon.png",
  4652. "THIRD-PARTY-NOTICES.TXT",
  4653. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll",
  4654. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.xml",
  4655. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll",
  4656. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml",
  4657. "microsoft.aspnetcore.signalr.common.3.1.20.nupkg.sha512",
  4658. "microsoft.aspnetcore.signalr.common.nuspec"
  4659. ]
  4660. },
  4661. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  4662. "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==",
  4663. "type": "package",
  4664. "path": "microsoft.aspnetcore.signalr.core/1.1.0",
  4665. "files": [
  4666. ".nupkg.metadata",
  4667. ".signature.p7s",
  4668. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll",
  4669. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml",
  4670. "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
  4671. "microsoft.aspnetcore.signalr.core.nuspec"
  4672. ]
  4673. },
  4674. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  4675. "sha512": "PlEyHZBxyO9OK+v0fHNFvI330EYtz3NQNp3Y7BtKWnZEotNrNtP/iB0GDkgUTRxfy5/P5lXDmd0wgFgefSzcwA==",
  4676. "type": "package",
  4677. "path": "microsoft.aspnetcore.signalr.protocols.json/3.1.20",
  4678. "files": [
  4679. ".nupkg.metadata",
  4680. ".signature.p7s",
  4681. "Icon.png",
  4682. "THIRD-PARTY-NOTICES.TXT",
  4683. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4684. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4685. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4686. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4687. "microsoft.aspnetcore.signalr.protocols.json.3.1.20.nupkg.sha512",
  4688. "microsoft.aspnetcore.signalr.protocols.json.nuspec"
  4689. ]
  4690. },
  4691. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  4692. "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==",
  4693. "type": "package",
  4694. "path": "microsoft.aspnetcore.websockets/2.2.0",
  4695. "files": [
  4696. ".nupkg.metadata",
  4697. ".signature.p7s",
  4698. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
  4699. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
  4700. "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
  4701. "microsoft.aspnetcore.websockets.nuspec"
  4702. ]
  4703. },
  4704. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4705. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4706. "type": "package",
  4707. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4708. "files": [
  4709. ".nupkg.metadata",
  4710. ".signature.p7s",
  4711. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4712. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4713. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  4714. "microsoft.aspnetcore.webutilities.nuspec"
  4715. ]
  4716. },
  4717. "Microsoft.CSharp/4.7.0": {
  4718. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4719. "type": "package",
  4720. "path": "microsoft.csharp/4.7.0",
  4721. "files": [
  4722. ".nupkg.metadata",
  4723. ".signature.p7s",
  4724. "LICENSE.TXT",
  4725. "THIRD-PARTY-NOTICES.TXT",
  4726. "lib/MonoAndroid10/_._",
  4727. "lib/MonoTouch10/_._",
  4728. "lib/net45/_._",
  4729. "lib/netcore50/Microsoft.CSharp.dll",
  4730. "lib/netcoreapp2.0/_._",
  4731. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4732. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4733. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4734. "lib/portable-net45+win8+wp8+wpa81/_._",
  4735. "lib/uap10.0.16299/_._",
  4736. "lib/win8/_._",
  4737. "lib/wp80/_._",
  4738. "lib/wpa81/_._",
  4739. "lib/xamarinios10/_._",
  4740. "lib/xamarinmac20/_._",
  4741. "lib/xamarintvos10/_._",
  4742. "lib/xamarinwatchos10/_._",
  4743. "microsoft.csharp.4.7.0.nupkg.sha512",
  4744. "microsoft.csharp.nuspec",
  4745. "ref/MonoAndroid10/_._",
  4746. "ref/MonoTouch10/_._",
  4747. "ref/net45/_._",
  4748. "ref/netcore50/Microsoft.CSharp.dll",
  4749. "ref/netcore50/Microsoft.CSharp.xml",
  4750. "ref/netcore50/de/Microsoft.CSharp.xml",
  4751. "ref/netcore50/es/Microsoft.CSharp.xml",
  4752. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4753. "ref/netcore50/it/Microsoft.CSharp.xml",
  4754. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4755. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4756. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4757. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4758. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4759. "ref/netcoreapp2.0/_._",
  4760. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4761. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4762. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4763. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4764. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4765. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4766. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4767. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4768. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4769. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4770. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4771. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4772. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4773. "ref/portable-net45+win8+wp8+wpa81/_._",
  4774. "ref/uap10.0.16299/_._",
  4775. "ref/win8/_._",
  4776. "ref/wp80/_._",
  4777. "ref/wpa81/_._",
  4778. "ref/xamarinios10/_._",
  4779. "ref/xamarinmac20/_._",
  4780. "ref/xamarintvos10/_._",
  4781. "ref/xamarinwatchos10/_._",
  4782. "useSharedDesignerContext.txt",
  4783. "version.txt"
  4784. ]
  4785. },
  4786. "Microsoft.EntityFrameworkCore/5.0.0": {
  4787. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4788. "type": "package",
  4789. "path": "microsoft.entityframeworkcore/5.0.0",
  4790. "files": [
  4791. ".nupkg.metadata",
  4792. ".signature.p7s",
  4793. "Icon.png",
  4794. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4795. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4796. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4797. "microsoft.entityframeworkcore.nuspec"
  4798. ]
  4799. },
  4800. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4801. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4802. "type": "package",
  4803. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4804. "files": [
  4805. ".nupkg.metadata",
  4806. ".signature.p7s",
  4807. "Icon.png",
  4808. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4809. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4810. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4811. "microsoft.entityframeworkcore.abstractions.nuspec"
  4812. ]
  4813. },
  4814. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4815. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4816. "type": "package",
  4817. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "Icon.png",
  4822. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4823. "lib/netstandard2.0/_._",
  4824. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4825. "microsoft.entityframeworkcore.analyzers.nuspec"
  4826. ]
  4827. },
  4828. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4829. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4830. "type": "package",
  4831. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4832. "files": [
  4833. ".nupkg.metadata",
  4834. ".signature.p7s",
  4835. "Icon.png",
  4836. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4837. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4838. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4839. "microsoft.entityframeworkcore.relational.nuspec"
  4840. ]
  4841. },
  4842. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4843. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4844. "type": "package",
  4845. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4846. "files": [
  4847. ".nupkg.metadata",
  4848. ".signature.p7s",
  4849. "Icon.png",
  4850. "LICENSE.TXT",
  4851. "THIRD-PARTY-NOTICES.TXT",
  4852. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4853. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4854. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4855. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4856. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4857. "microsoft.extensions.caching.abstractions.nuspec",
  4858. "useSharedDesignerContext.txt",
  4859. "version.txt"
  4860. ]
  4861. },
  4862. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4863. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4864. "type": "package",
  4865. "path": "microsoft.extensions.caching.memory/5.0.0",
  4866. "files": [
  4867. ".nupkg.metadata",
  4868. ".signature.p7s",
  4869. "Icon.png",
  4870. "LICENSE.TXT",
  4871. "THIRD-PARTY-NOTICES.TXT",
  4872. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4873. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4874. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4875. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4876. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4877. "microsoft.extensions.caching.memory.nuspec",
  4878. "useSharedDesignerContext.txt",
  4879. "version.txt"
  4880. ]
  4881. },
  4882. "Microsoft.Extensions.Configuration/5.0.0": {
  4883. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4884. "type": "package",
  4885. "path": "microsoft.extensions.configuration/5.0.0",
  4886. "files": [
  4887. ".nupkg.metadata",
  4888. ".signature.p7s",
  4889. "Icon.png",
  4890. "LICENSE.TXT",
  4891. "THIRD-PARTY-NOTICES.TXT",
  4892. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4893. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4894. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4895. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4896. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4897. "microsoft.extensions.configuration.nuspec",
  4898. "useSharedDesignerContext.txt",
  4899. "version.txt"
  4900. ]
  4901. },
  4902. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4903. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4904. "type": "package",
  4905. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4906. "files": [
  4907. ".nupkg.metadata",
  4908. ".signature.p7s",
  4909. "Icon.png",
  4910. "LICENSE.TXT",
  4911. "THIRD-PARTY-NOTICES.TXT",
  4912. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4913. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4914. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4915. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4916. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4917. "microsoft.extensions.configuration.abstractions.nuspec",
  4918. "useSharedDesignerContext.txt",
  4919. "version.txt"
  4920. ]
  4921. },
  4922. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4923. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4924. "type": "package",
  4925. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4926. "files": [
  4927. ".nupkg.metadata",
  4928. ".signature.p7s",
  4929. "Icon.png",
  4930. "LICENSE.TXT",
  4931. "THIRD-PARTY-NOTICES.TXT",
  4932. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4933. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4934. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4935. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4936. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4937. "microsoft.extensions.configuration.binder.nuspec",
  4938. "useSharedDesignerContext.txt",
  4939. "version.txt"
  4940. ]
  4941. },
  4942. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4943. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4944. "type": "package",
  4945. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4946. "files": [
  4947. ".nupkg.metadata",
  4948. ".signature.p7s",
  4949. "Icon.png",
  4950. "LICENSE.TXT",
  4951. "THIRD-PARTY-NOTICES.TXT",
  4952. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4953. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4954. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4955. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4956. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4957. "microsoft.extensions.configuration.fileextensions.nuspec",
  4958. "useSharedDesignerContext.txt",
  4959. "version.txt"
  4960. ]
  4961. },
  4962. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4963. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4964. "type": "package",
  4965. "path": "microsoft.extensions.configuration.json/5.0.0",
  4966. "files": [
  4967. ".nupkg.metadata",
  4968. ".signature.p7s",
  4969. "Icon.png",
  4970. "LICENSE.TXT",
  4971. "THIRD-PARTY-NOTICES.TXT",
  4972. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4973. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4974. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4975. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4976. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4977. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4978. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4979. "microsoft.extensions.configuration.json.nuspec",
  4980. "useSharedDesignerContext.txt",
  4981. "version.txt"
  4982. ]
  4983. },
  4984. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4985. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4986. "type": "package",
  4987. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4988. "files": [
  4989. ".nupkg.metadata",
  4990. ".signature.p7s",
  4991. "Icon.png",
  4992. "LICENSE.TXT",
  4993. "THIRD-PARTY-NOTICES.TXT",
  4994. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4995. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4996. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4997. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4998. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4999. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5000. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5001. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5002. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  5003. "microsoft.extensions.dependencyinjection.nuspec",
  5004. "useSharedDesignerContext.txt",
  5005. "version.txt"
  5006. ]
  5007. },
  5008. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  5009. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  5010. "type": "package",
  5011. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  5012. "files": [
  5013. ".nupkg.metadata",
  5014. ".signature.p7s",
  5015. "Icon.png",
  5016. "LICENSE.TXT",
  5017. "THIRD-PARTY-NOTICES.TXT",
  5018. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5019. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5020. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5021. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5022. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  5023. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5024. "useSharedDesignerContext.txt",
  5025. "version.txt"
  5026. ]
  5027. },
  5028. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  5029. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  5030. "type": "package",
  5031. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  5032. "files": [
  5033. ".nupkg.metadata",
  5034. ".signature.p7s",
  5035. "Icon.png",
  5036. "LICENSE.TXT",
  5037. "THIRD-PARTY-NOTICES.TXT",
  5038. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5039. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5040. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5041. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5042. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  5043. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5044. "useSharedDesignerContext.txt",
  5045. "version.txt"
  5046. ]
  5047. },
  5048. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  5049. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  5050. "type": "package",
  5051. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  5052. "files": [
  5053. ".nupkg.metadata",
  5054. ".signature.p7s",
  5055. "Icon.png",
  5056. "LICENSE.TXT",
  5057. "THIRD-PARTY-NOTICES.TXT",
  5058. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5059. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5060. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5061. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5062. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  5063. "microsoft.extensions.fileproviders.physical.nuspec",
  5064. "useSharedDesignerContext.txt",
  5065. "version.txt"
  5066. ]
  5067. },
  5068. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  5069. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  5070. "type": "package",
  5071. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  5072. "files": [
  5073. ".nupkg.metadata",
  5074. ".signature.p7s",
  5075. "Icon.png",
  5076. "LICENSE.TXT",
  5077. "THIRD-PARTY-NOTICES.TXT",
  5078. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5079. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5080. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5081. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5082. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  5083. "microsoft.extensions.filesystemglobbing.nuspec",
  5084. "useSharedDesignerContext.txt",
  5085. "version.txt"
  5086. ]
  5087. },
  5088. "Microsoft.Extensions.Hosting/2.1.0": {
  5089. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  5090. "type": "package",
  5091. "path": "microsoft.extensions.hosting/2.1.0",
  5092. "files": [
  5093. ".nupkg.metadata",
  5094. ".signature.p7s",
  5095. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  5096. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  5097. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  5098. "microsoft.extensions.hosting.nuspec"
  5099. ]
  5100. },
  5101. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  5102. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  5103. "type": "package",
  5104. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  5105. "files": [
  5106. ".nupkg.metadata",
  5107. ".signature.p7s",
  5108. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5109. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5110. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5111. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5112. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  5113. "microsoft.extensions.hosting.abstractions.nuspec",
  5114. "packageIcon.png"
  5115. ]
  5116. },
  5117. "Microsoft.Extensions.Http/5.0.0": {
  5118. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  5119. "type": "package",
  5120. "path": "microsoft.extensions.http/5.0.0",
  5121. "files": [
  5122. ".nupkg.metadata",
  5123. ".signature.p7s",
  5124. "Icon.png",
  5125. "LICENSE.TXT",
  5126. "THIRD-PARTY-NOTICES.TXT",
  5127. "lib/net461/Microsoft.Extensions.Http.dll",
  5128. "lib/net461/Microsoft.Extensions.Http.xml",
  5129. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  5130. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  5131. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  5132. "microsoft.extensions.http.nuspec",
  5133. "useSharedDesignerContext.txt",
  5134. "version.txt"
  5135. ]
  5136. },
  5137. "Microsoft.Extensions.Logging/5.0.0": {
  5138. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  5139. "type": "package",
  5140. "path": "microsoft.extensions.logging/5.0.0",
  5141. "files": [
  5142. ".nupkg.metadata",
  5143. ".signature.p7s",
  5144. "Icon.png",
  5145. "LICENSE.TXT",
  5146. "THIRD-PARTY-NOTICES.TXT",
  5147. "lib/net461/Microsoft.Extensions.Logging.dll",
  5148. "lib/net461/Microsoft.Extensions.Logging.xml",
  5149. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5150. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5151. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5152. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5153. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  5154. "microsoft.extensions.logging.nuspec",
  5155. "useSharedDesignerContext.txt",
  5156. "version.txt"
  5157. ]
  5158. },
  5159. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  5160. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  5161. "type": "package",
  5162. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "Icon.png",
  5167. "LICENSE.TXT",
  5168. "THIRD-PARTY-NOTICES.TXT",
  5169. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5170. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5171. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5172. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5173. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  5174. "microsoft.extensions.logging.abstractions.nuspec",
  5175. "useSharedDesignerContext.txt",
  5176. "version.txt"
  5177. ]
  5178. },
  5179. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  5180. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  5181. "type": "package",
  5182. "path": "microsoft.extensions.logging.configuration/3.1.30",
  5183. "files": [
  5184. ".nupkg.metadata",
  5185. ".signature.p7s",
  5186. "Icon.png",
  5187. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  5188. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  5189. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  5190. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  5191. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  5192. "microsoft.extensions.logging.configuration.nuspec"
  5193. ]
  5194. },
  5195. "Microsoft.Extensions.Logging.Console/3.1.30": {
  5196. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  5197. "type": "package",
  5198. "path": "microsoft.extensions.logging.console/3.1.30",
  5199. "files": [
  5200. ".nupkg.metadata",
  5201. ".signature.p7s",
  5202. "Icon.png",
  5203. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  5204. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  5205. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  5206. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  5207. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  5208. "microsoft.extensions.logging.console.nuspec"
  5209. ]
  5210. },
  5211. "Microsoft.Extensions.ObjectPool/2.2.0": {
  5212. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  5213. "type": "package",
  5214. "path": "microsoft.extensions.objectpool/2.2.0",
  5215. "files": [
  5216. ".nupkg.metadata",
  5217. ".signature.p7s",
  5218. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  5219. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  5220. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  5221. "microsoft.extensions.objectpool.nuspec"
  5222. ]
  5223. },
  5224. "Microsoft.Extensions.Options/5.0.0": {
  5225. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  5226. "type": "package",
  5227. "path": "microsoft.extensions.options/5.0.0",
  5228. "files": [
  5229. ".nupkg.metadata",
  5230. ".signature.p7s",
  5231. "Icon.png",
  5232. "LICENSE.TXT",
  5233. "THIRD-PARTY-NOTICES.TXT",
  5234. "lib/net461/Microsoft.Extensions.Options.dll",
  5235. "lib/net461/Microsoft.Extensions.Options.xml",
  5236. "lib/net5.0/Microsoft.Extensions.Options.dll",
  5237. "lib/net5.0/Microsoft.Extensions.Options.xml",
  5238. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5239. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5240. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  5241. "microsoft.extensions.options.nuspec",
  5242. "useSharedDesignerContext.txt",
  5243. "version.txt"
  5244. ]
  5245. },
  5246. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  5247. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  5248. "type": "package",
  5249. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  5250. "files": [
  5251. ".nupkg.metadata",
  5252. ".signature.p7s",
  5253. "Icon.png",
  5254. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5255. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5256. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5257. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5258. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  5259. "microsoft.extensions.options.configurationextensions.nuspec"
  5260. ]
  5261. },
  5262. "Microsoft.Extensions.Primitives/5.0.0": {
  5263. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  5264. "type": "package",
  5265. "path": "microsoft.extensions.primitives/5.0.0",
  5266. "files": [
  5267. ".nupkg.metadata",
  5268. ".signature.p7s",
  5269. "Icon.png",
  5270. "LICENSE.TXT",
  5271. "THIRD-PARTY-NOTICES.TXT",
  5272. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5273. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5274. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5275. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5276. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5277. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5278. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  5279. "microsoft.extensions.primitives.nuspec",
  5280. "useSharedDesignerContext.txt",
  5281. "version.txt"
  5282. ]
  5283. },
  5284. "Microsoft.Net.Http.Headers/2.2.0": {
  5285. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  5286. "type": "package",
  5287. "path": "microsoft.net.http.headers/2.2.0",
  5288. "files": [
  5289. ".nupkg.metadata",
  5290. ".signature.p7s",
  5291. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  5292. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  5293. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  5294. "microsoft.net.http.headers.nuspec"
  5295. ]
  5296. },
  5297. "Microsoft.NETCore.Platforms/5.0.0": {
  5298. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5299. "type": "package",
  5300. "path": "microsoft.netcore.platforms/5.0.0",
  5301. "files": [
  5302. ".nupkg.metadata",
  5303. ".signature.p7s",
  5304. "Icon.png",
  5305. "LICENSE.TXT",
  5306. "THIRD-PARTY-NOTICES.TXT",
  5307. "lib/netstandard1.0/_._",
  5308. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5309. "microsoft.netcore.platforms.nuspec",
  5310. "runtime.json",
  5311. "useSharedDesignerContext.txt",
  5312. "version.txt"
  5313. ]
  5314. },
  5315. "Microsoft.NETCore.Targets/1.1.0": {
  5316. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5317. "type": "package",
  5318. "path": "microsoft.netcore.targets/1.1.0",
  5319. "files": [
  5320. ".nupkg.metadata",
  5321. ".signature.p7s",
  5322. "ThirdPartyNotices.txt",
  5323. "dotnet_library_license.txt",
  5324. "lib/netstandard1.0/_._",
  5325. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5326. "microsoft.netcore.targets.nuspec",
  5327. "runtime.json"
  5328. ]
  5329. },
  5330. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  5331. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  5332. "type": "package",
  5333. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  5334. "hasTools": true,
  5335. "files": [
  5336. ".nupkg.metadata",
  5337. ".signature.p7s",
  5338. "CHANGELOG.md",
  5339. "EULA.md",
  5340. "ThirdPartyNotices.txt",
  5341. "build/Container.props",
  5342. "build/Container.targets",
  5343. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5344. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5345. "build/Rules/GeneralBrowseObject.xaml",
  5346. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  5347. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  5348. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  5349. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  5350. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  5351. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  5352. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  5353. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  5354. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  5355. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  5356. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  5357. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  5358. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  5359. "build/ToolsTarget.props",
  5360. "build/ToolsTarget.targets",
  5361. "icon.png",
  5362. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  5363. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5364. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5365. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5366. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5367. "tools/Newtonsoft.Json.dll",
  5368. "tools/System.Security.Principal.Windows.dll",
  5369. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5370. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5371. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5372. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5373. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5374. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5375. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5376. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5377. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5378. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5379. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5380. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5381. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5382. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5383. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5384. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5385. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5386. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5387. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5388. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5389. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5390. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5391. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5392. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5393. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5394. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5395. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5396. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5397. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5398. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5399. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5400. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5401. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5402. "tools/utils/KillProcess.exe",
  5403. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5404. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5405. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5406. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5407. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5408. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5409. ]
  5410. },
  5411. "Microsoft.Win32.Primitives/4.3.0": {
  5412. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5413. "type": "package",
  5414. "path": "microsoft.win32.primitives/4.3.0",
  5415. "files": [
  5416. ".nupkg.metadata",
  5417. ".signature.p7s",
  5418. "ThirdPartyNotices.txt",
  5419. "dotnet_library_license.txt",
  5420. "lib/MonoAndroid10/_._",
  5421. "lib/MonoTouch10/_._",
  5422. "lib/net46/Microsoft.Win32.Primitives.dll",
  5423. "lib/xamarinios10/_._",
  5424. "lib/xamarinmac20/_._",
  5425. "lib/xamarintvos10/_._",
  5426. "lib/xamarinwatchos10/_._",
  5427. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5428. "microsoft.win32.primitives.nuspec",
  5429. "ref/MonoAndroid10/_._",
  5430. "ref/MonoTouch10/_._",
  5431. "ref/net46/Microsoft.Win32.Primitives.dll",
  5432. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5433. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5434. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5435. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5436. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5437. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5438. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5439. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5440. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5441. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5442. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5443. "ref/xamarinios10/_._",
  5444. "ref/xamarinmac20/_._",
  5445. "ref/xamarintvos10/_._",
  5446. "ref/xamarinwatchos10/_._"
  5447. ]
  5448. },
  5449. "Microsoft.Win32.SystemEvents/5.0.0": {
  5450. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5451. "type": "package",
  5452. "path": "microsoft.win32.systemevents/5.0.0",
  5453. "files": [
  5454. ".nupkg.metadata",
  5455. ".signature.p7s",
  5456. "Icon.png",
  5457. "LICENSE.TXT",
  5458. "THIRD-PARTY-NOTICES.TXT",
  5459. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5460. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5461. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5462. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5463. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5464. "microsoft.win32.systemevents.nuspec",
  5465. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5466. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5467. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5468. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5469. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5470. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5471. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5472. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5473. "useSharedDesignerContext.txt",
  5474. "version.txt"
  5475. ]
  5476. },
  5477. "MySql.Data/8.0.23": {
  5478. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5479. "type": "package",
  5480. "path": "mysql.data/8.0.23",
  5481. "files": [
  5482. ".nupkg.metadata",
  5483. ".signature.p7s",
  5484. "lib/net452/MySql.Data.dll",
  5485. "lib/net452/MySql.Data.xml",
  5486. "lib/net452/Ubiety.Dns.Core.dll",
  5487. "lib/net452/Zstandard.Net.dll",
  5488. "lib/net48/MySql.Data.dll",
  5489. "lib/net48/MySql.Data.xml",
  5490. "lib/net48/Ubiety.Dns.Core.dll",
  5491. "lib/net48/Zstandard.Net.dll",
  5492. "lib/net5.0/MySql.Data.dll",
  5493. "lib/net5.0/MySql.Data.xml",
  5494. "lib/net5.0/Ubiety.Dns.Core.dll",
  5495. "lib/net5.0/Zstandard.Net.dll",
  5496. "lib/netstandard2.0/MySql.Data.dll",
  5497. "lib/netstandard2.0/MySql.Data.xml",
  5498. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5499. "lib/netstandard2.0/Zstandard.Net.dll",
  5500. "lib/netstandard2.1/MySql.Data.dll",
  5501. "lib/netstandard2.1/MySql.Data.xml",
  5502. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5503. "lib/netstandard2.1/Zstandard.Net.dll",
  5504. "mysql.data.8.0.23.nupkg.sha512",
  5505. "mysql.data.nuspec"
  5506. ]
  5507. },
  5508. "MySqlConnector/1.1.0": {
  5509. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5510. "type": "package",
  5511. "path": "mysqlconnector/1.1.0",
  5512. "files": [
  5513. ".nupkg.metadata",
  5514. ".signature.p7s",
  5515. "lib/net45/MySqlConnector.dll",
  5516. "lib/net45/MySqlConnector.xml",
  5517. "lib/net461/MySqlConnector.dll",
  5518. "lib/net461/MySqlConnector.xml",
  5519. "lib/net471/MySqlConnector.dll",
  5520. "lib/net471/MySqlConnector.xml",
  5521. "lib/net5.0/MySqlConnector.dll",
  5522. "lib/net5.0/MySqlConnector.xml",
  5523. "lib/netcoreapp2.1/MySqlConnector.dll",
  5524. "lib/netcoreapp2.1/MySqlConnector.xml",
  5525. "lib/netcoreapp3.1/MySqlConnector.dll",
  5526. "lib/netcoreapp3.1/MySqlConnector.xml",
  5527. "lib/netstandard1.3/MySqlConnector.dll",
  5528. "lib/netstandard1.3/MySqlConnector.xml",
  5529. "lib/netstandard2.0/MySqlConnector.dll",
  5530. "lib/netstandard2.0/MySqlConnector.xml",
  5531. "lib/netstandard2.1/MySqlConnector.dll",
  5532. "lib/netstandard2.1/MySqlConnector.xml",
  5533. "logo.png",
  5534. "mysqlconnector.1.1.0.nupkg.sha512",
  5535. "mysqlconnector.nuspec"
  5536. ]
  5537. },
  5538. "NETStandard.Library/1.6.1": {
  5539. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5540. "type": "package",
  5541. "path": "netstandard.library/1.6.1",
  5542. "files": [
  5543. ".nupkg.metadata",
  5544. ".signature.p7s",
  5545. "ThirdPartyNotices.txt",
  5546. "dotnet_library_license.txt",
  5547. "netstandard.library.1.6.1.nupkg.sha512",
  5548. "netstandard.library.nuspec"
  5549. ]
  5550. },
  5551. "Newtonsoft.Json/13.0.1": {
  5552. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5553. "type": "package",
  5554. "path": "newtonsoft.json/13.0.1",
  5555. "files": [
  5556. ".nupkg.metadata",
  5557. ".signature.p7s",
  5558. "LICENSE.md",
  5559. "lib/net20/Newtonsoft.Json.dll",
  5560. "lib/net20/Newtonsoft.Json.xml",
  5561. "lib/net35/Newtonsoft.Json.dll",
  5562. "lib/net35/Newtonsoft.Json.xml",
  5563. "lib/net40/Newtonsoft.Json.dll",
  5564. "lib/net40/Newtonsoft.Json.xml",
  5565. "lib/net45/Newtonsoft.Json.dll",
  5566. "lib/net45/Newtonsoft.Json.xml",
  5567. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5568. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5569. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5570. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5571. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5572. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5573. "newtonsoft.json.13.0.1.nupkg.sha512",
  5574. "newtonsoft.json.nuspec",
  5575. "packageIcon.png"
  5576. ]
  5577. },
  5578. "Nito.AsyncEx.Coordination/5.0.0": {
  5579. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5580. "type": "package",
  5581. "path": "nito.asyncex.coordination/5.0.0",
  5582. "files": [
  5583. ".nupkg.metadata",
  5584. ".signature.p7s",
  5585. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5586. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5587. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5588. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5589. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5590. "nito.asyncex.coordination.nuspec"
  5591. ]
  5592. },
  5593. "Nito.AsyncEx.Tasks/5.0.0": {
  5594. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5595. "type": "package",
  5596. "path": "nito.asyncex.tasks/5.0.0",
  5597. "files": [
  5598. ".nupkg.metadata",
  5599. ".signature.p7s",
  5600. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5601. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5602. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5603. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5604. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5605. "nito.asyncex.tasks.nuspec"
  5606. ]
  5607. },
  5608. "Nito.Collections.Deque/1.0.4": {
  5609. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5610. "type": "package",
  5611. "path": "nito.collections.deque/1.0.4",
  5612. "files": [
  5613. ".nupkg.metadata",
  5614. ".signature.p7s",
  5615. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5616. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5617. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5618. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5619. "nito.collections.deque.1.0.4.nupkg.sha512",
  5620. "nito.collections.deque.nuspec"
  5621. ]
  5622. },
  5623. "Nito.Disposables/2.0.0": {
  5624. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5625. "type": "package",
  5626. "path": "nito.disposables/2.0.0",
  5627. "files": [
  5628. ".nupkg.metadata",
  5629. ".signature.p7s",
  5630. "lib/netstandard1.0/Nito.Disposables.dll",
  5631. "lib/netstandard1.0/Nito.Disposables.pdb",
  5632. "lib/netstandard1.0/Nito.Disposables.xml",
  5633. "lib/netstandard2.0/Nito.Disposables.dll",
  5634. "lib/netstandard2.0/Nito.Disposables.pdb",
  5635. "lib/netstandard2.0/Nito.Disposables.xml",
  5636. "nito.disposables.2.0.0.nupkg.sha512",
  5637. "nito.disposables.nuspec"
  5638. ]
  5639. },
  5640. "NLog/4.7.7": {
  5641. "sha512": "lCfAaKel4trne8Suf4/0aR9YPKDFLWKgqBupnHKNYx+cIjutF2BsVxfF2fAb+ObaYN3m5hDjx/ToVS15ouB+SA==",
  5642. "type": "package",
  5643. "path": "nlog/4.7.7",
  5644. "files": [
  5645. ".nupkg.metadata",
  5646. ".signature.p7s",
  5647. "lib/monoandroid44/NLog.dll",
  5648. "lib/monoandroid44/NLog.xml",
  5649. "lib/net35/NLog.dll",
  5650. "lib/net35/NLog.xml",
  5651. "lib/net40-client/NLog.dll",
  5652. "lib/net40-client/NLog.xml",
  5653. "lib/net45/NLog.dll",
  5654. "lib/net45/NLog.xml",
  5655. "lib/netstandard1.3/NLog.dll",
  5656. "lib/netstandard1.3/NLog.xml",
  5657. "lib/netstandard1.5/NLog.dll",
  5658. "lib/netstandard1.5/NLog.xml",
  5659. "lib/netstandard2.0/NLog.dll",
  5660. "lib/netstandard2.0/NLog.xml",
  5661. "lib/sl4/NLog.dll",
  5662. "lib/sl4/NLog.xml",
  5663. "lib/sl5/NLog.dll",
  5664. "lib/sl5/NLog.xml",
  5665. "lib/wp8/NLog.dll",
  5666. "lib/wp8/NLog.xml",
  5667. "lib/xamarinios10/NLog.dll",
  5668. "lib/xamarinios10/NLog.xml",
  5669. "nlog.4.7.7.nupkg.sha512",
  5670. "nlog.nuspec"
  5671. ]
  5672. },
  5673. "NodaTime/2.4.7": {
  5674. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5675. "type": "package",
  5676. "path": "nodatime/2.4.7",
  5677. "files": [
  5678. ".nupkg.metadata",
  5679. ".signature.p7s",
  5680. "lib/net45/NodaTime.dll",
  5681. "lib/net45/NodaTime.pdb",
  5682. "lib/net45/NodaTime.xml",
  5683. "lib/netstandard1.3/NodaTime.dll",
  5684. "lib/netstandard1.3/NodaTime.pdb",
  5685. "lib/netstandard1.3/NodaTime.xml",
  5686. "lib/netstandard2.0/NodaTime.dll",
  5687. "lib/netstandard2.0/NodaTime.pdb",
  5688. "lib/netstandard2.0/NodaTime.xml",
  5689. "nodatime.2.4.7.nupkg.sha512",
  5690. "nodatime.nuspec"
  5691. ]
  5692. },
  5693. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5694. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5695. "type": "package",
  5696. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5697. "files": [
  5698. ".nupkg.metadata",
  5699. ".signature.p7s",
  5700. "icon.png",
  5701. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5702. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5703. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5704. "pomelo.entityframeworkcore.mysql.nuspec"
  5705. ]
  5706. },
  5707. "QRCoder/1.4.3": {
  5708. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5709. "type": "package",
  5710. "path": "qrcoder/1.4.3",
  5711. "files": [
  5712. ".nupkg.metadata",
  5713. ".signature.p7s",
  5714. "lib/net35/QRCoder.dll",
  5715. "lib/net40/QRCoder.dll",
  5716. "lib/net5.0-windows7.0/QRCoder.dll",
  5717. "lib/net5.0/QRCoder.dll",
  5718. "lib/net6.0-windows7.0/QRCoder.dll",
  5719. "lib/net6.0/QRCoder.dll",
  5720. "lib/netstandard1.3/QRCoder.dll",
  5721. "lib/netstandard2.0/QRCoder.dll",
  5722. "nuget-icon.png",
  5723. "nuget-readme.md",
  5724. "qrcoder.1.4.3.nupkg.sha512",
  5725. "qrcoder.nuspec"
  5726. ]
  5727. },
  5728. "Quartz/3.3.3": {
  5729. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5730. "type": "package",
  5731. "path": "quartz/3.3.3",
  5732. "files": [
  5733. ".nupkg.metadata",
  5734. ".signature.p7s",
  5735. "lib/net461/Quartz.dll",
  5736. "lib/net461/Quartz.xml",
  5737. "lib/net472/Quartz.dll",
  5738. "lib/net472/Quartz.xml",
  5739. "lib/netstandard2.0/Quartz.dll",
  5740. "lib/netstandard2.0/Quartz.xml",
  5741. "quartz-logo-small.png",
  5742. "quartz.3.3.3.nupkg.sha512",
  5743. "quartz.nuspec"
  5744. ]
  5745. },
  5746. "RabbitMQ.Client/6.8.1": {
  5747. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5748. "type": "package",
  5749. "path": "rabbitmq.client/6.8.1",
  5750. "files": [
  5751. ".nupkg.metadata",
  5752. ".signature.p7s",
  5753. "README.md",
  5754. "icon.png",
  5755. "lib/net462/RabbitMQ.Client.dll",
  5756. "lib/net462/RabbitMQ.Client.xml",
  5757. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5758. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5759. "rabbitmq.client.6.8.1.nupkg.sha512",
  5760. "rabbitmq.client.nuspec"
  5761. ]
  5762. },
  5763. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5764. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5765. "type": "package",
  5766. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5767. "files": [
  5768. ".nupkg.metadata",
  5769. ".signature.p7s",
  5770. "ThirdPartyNotices.txt",
  5771. "dotnet_library_license.txt",
  5772. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5773. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5774. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5775. ]
  5776. },
  5777. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5778. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5779. "type": "package",
  5780. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5781. "files": [
  5782. ".nupkg.metadata",
  5783. ".signature.p7s",
  5784. "ThirdPartyNotices.txt",
  5785. "dotnet_library_license.txt",
  5786. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5787. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5788. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5789. ]
  5790. },
  5791. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5792. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5793. "type": "package",
  5794. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5795. "files": [
  5796. ".nupkg.metadata",
  5797. ".signature.p7s",
  5798. "ThirdPartyNotices.txt",
  5799. "dotnet_library_license.txt",
  5800. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5801. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5802. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5803. ]
  5804. },
  5805. "runtime.native.System/4.3.0": {
  5806. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5807. "type": "package",
  5808. "path": "runtime.native.system/4.3.0",
  5809. "files": [
  5810. ".nupkg.metadata",
  5811. ".signature.p7s",
  5812. "ThirdPartyNotices.txt",
  5813. "dotnet_library_license.txt",
  5814. "lib/netstandard1.0/_._",
  5815. "runtime.native.system.4.3.0.nupkg.sha512",
  5816. "runtime.native.system.nuspec"
  5817. ]
  5818. },
  5819. "runtime.native.System.IO.Compression/4.3.0": {
  5820. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5821. "type": "package",
  5822. "path": "runtime.native.system.io.compression/4.3.0",
  5823. "files": [
  5824. ".nupkg.metadata",
  5825. ".signature.p7s",
  5826. "ThirdPartyNotices.txt",
  5827. "dotnet_library_license.txt",
  5828. "lib/netstandard1.0/_._",
  5829. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5830. "runtime.native.system.io.compression.nuspec"
  5831. ]
  5832. },
  5833. "runtime.native.System.Net.Http/4.3.0": {
  5834. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5835. "type": "package",
  5836. "path": "runtime.native.system.net.http/4.3.0",
  5837. "files": [
  5838. ".nupkg.metadata",
  5839. ".signature.p7s",
  5840. "ThirdPartyNotices.txt",
  5841. "dotnet_library_license.txt",
  5842. "lib/netstandard1.0/_._",
  5843. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5844. "runtime.native.system.net.http.nuspec"
  5845. ]
  5846. },
  5847. "runtime.native.System.Net.Security/4.3.0": {
  5848. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5849. "type": "package",
  5850. "path": "runtime.native.system.net.security/4.3.0",
  5851. "files": [
  5852. ".nupkg.metadata",
  5853. ".signature.p7s",
  5854. "ThirdPartyNotices.txt",
  5855. "dotnet_library_license.txt",
  5856. "lib/netstandard1.0/_._",
  5857. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5858. "runtime.native.system.net.security.nuspec"
  5859. ]
  5860. },
  5861. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5862. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5863. "type": "package",
  5864. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5865. "files": [
  5866. ".nupkg.metadata",
  5867. ".signature.p7s",
  5868. "ThirdPartyNotices.txt",
  5869. "dotnet_library_license.txt",
  5870. "lib/netstandard1.0/_._",
  5871. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5872. "runtime.native.system.security.cryptography.apple.nuspec"
  5873. ]
  5874. },
  5875. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5876. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5877. "type": "package",
  5878. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5879. "files": [
  5880. ".nupkg.metadata",
  5881. ".signature.p7s",
  5882. "ThirdPartyNotices.txt",
  5883. "dotnet_library_license.txt",
  5884. "lib/netstandard1.0/_._",
  5885. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5886. "runtime.native.system.security.cryptography.openssl.nuspec"
  5887. ]
  5888. },
  5889. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5890. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5891. "type": "package",
  5892. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5893. "files": [
  5894. ".nupkg.metadata",
  5895. ".signature.p7s",
  5896. "ThirdPartyNotices.txt",
  5897. "dotnet_library_license.txt",
  5898. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5899. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5900. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5901. ]
  5902. },
  5903. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5904. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5905. "type": "package",
  5906. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "ThirdPartyNotices.txt",
  5911. "dotnet_library_license.txt",
  5912. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5913. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5914. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5915. ]
  5916. },
  5917. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5918. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5919. "type": "package",
  5920. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5921. "files": [
  5922. ".nupkg.metadata",
  5923. ".signature.p7s",
  5924. "ThirdPartyNotices.txt",
  5925. "dotnet_library_license.txt",
  5926. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5927. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5928. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5929. ]
  5930. },
  5931. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5932. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5933. "type": "package",
  5934. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5935. "files": [
  5936. ".nupkg.metadata",
  5937. ".signature.p7s",
  5938. "ThirdPartyNotices.txt",
  5939. "dotnet_library_license.txt",
  5940. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5941. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5942. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5943. ]
  5944. },
  5945. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5946. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5947. "type": "package",
  5948. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5949. "files": [
  5950. ".nupkg.metadata",
  5951. ".signature.p7s",
  5952. "ThirdPartyNotices.txt",
  5953. "dotnet_library_license.txt",
  5954. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5955. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5956. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5957. ]
  5958. },
  5959. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5960. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5961. "type": "package",
  5962. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5963. "files": [
  5964. ".nupkg.metadata",
  5965. ".signature.p7s",
  5966. "ThirdPartyNotices.txt",
  5967. "dotnet_library_license.txt",
  5968. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5969. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5970. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5971. ]
  5972. },
  5973. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5974. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5975. "type": "package",
  5976. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5977. "files": [
  5978. ".nupkg.metadata",
  5979. ".signature.p7s",
  5980. "ThirdPartyNotices.txt",
  5981. "dotnet_library_license.txt",
  5982. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5983. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5984. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5985. ]
  5986. },
  5987. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5988. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5989. "type": "package",
  5990. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5991. "files": [
  5992. ".nupkg.metadata",
  5993. ".signature.p7s",
  5994. "ThirdPartyNotices.txt",
  5995. "dotnet_library_license.txt",
  5996. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5997. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5998. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5999. ]
  6000. },
  6001. "Serilog/2.11.0": {
  6002. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  6003. "type": "package",
  6004. "path": "serilog/2.11.0",
  6005. "files": [
  6006. ".nupkg.metadata",
  6007. ".signature.p7s",
  6008. "icon.png",
  6009. "lib/net45/Serilog.dll",
  6010. "lib/net45/Serilog.xml",
  6011. "lib/net46/Serilog.dll",
  6012. "lib/net46/Serilog.xml",
  6013. "lib/net5.0/Serilog.dll",
  6014. "lib/net5.0/Serilog.xml",
  6015. "lib/netstandard1.0/Serilog.dll",
  6016. "lib/netstandard1.0/Serilog.xml",
  6017. "lib/netstandard1.3/Serilog.dll",
  6018. "lib/netstandard1.3/Serilog.xml",
  6019. "lib/netstandard2.0/Serilog.dll",
  6020. "lib/netstandard2.0/Serilog.xml",
  6021. "lib/netstandard2.1/Serilog.dll",
  6022. "lib/netstandard2.1/Serilog.xml",
  6023. "serilog.2.11.0.nupkg.sha512",
  6024. "serilog.nuspec"
  6025. ]
  6026. },
  6027. "Serilog.Sinks.Console/4.0.1": {
  6028. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  6029. "type": "package",
  6030. "path": "serilog.sinks.console/4.0.1",
  6031. "files": [
  6032. ".nupkg.metadata",
  6033. ".signature.p7s",
  6034. "icon.png",
  6035. "lib/net45/Serilog.Sinks.Console.dll",
  6036. "lib/net45/Serilog.Sinks.Console.xml",
  6037. "lib/net5.0/Serilog.Sinks.Console.dll",
  6038. "lib/net5.0/Serilog.Sinks.Console.xml",
  6039. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  6040. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  6041. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  6042. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  6043. "serilog.sinks.console.4.0.1.nupkg.sha512",
  6044. "serilog.sinks.console.nuspec"
  6045. ]
  6046. },
  6047. "Serilog.Sinks.File/5.0.0": {
  6048. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  6049. "type": "package",
  6050. "path": "serilog.sinks.file/5.0.0",
  6051. "files": [
  6052. ".nupkg.metadata",
  6053. ".signature.p7s",
  6054. "images/icon.png",
  6055. "lib/net45/Serilog.Sinks.File.dll",
  6056. "lib/net45/Serilog.Sinks.File.pdb",
  6057. "lib/net45/Serilog.Sinks.File.xml",
  6058. "lib/net5.0/Serilog.Sinks.File.dll",
  6059. "lib/net5.0/Serilog.Sinks.File.pdb",
  6060. "lib/net5.0/Serilog.Sinks.File.xml",
  6061. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  6062. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  6063. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  6064. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  6065. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  6066. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  6067. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  6068. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  6069. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  6070. "serilog.sinks.file.5.0.0.nupkg.sha512",
  6071. "serilog.sinks.file.nuspec"
  6072. ]
  6073. },
  6074. "SixLabors.ImageSharp/2.1.6": {
  6075. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  6076. "type": "package",
  6077. "path": "sixlabors.imagesharp/2.1.6",
  6078. "files": [
  6079. ".nupkg.metadata",
  6080. ".signature.p7s",
  6081. "lib/net472/SixLabors.ImageSharp.dll",
  6082. "lib/net472/SixLabors.ImageSharp.xml",
  6083. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  6084. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  6085. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  6086. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  6087. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  6088. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  6089. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  6090. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  6091. "sixlabors.imagesharp.128.png",
  6092. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  6093. "sixlabors.imagesharp.nuspec"
  6094. ]
  6095. },
  6096. "SSH.NET/2020.0.0-beta1": {
  6097. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  6098. "type": "package",
  6099. "path": "ssh.net/2020.0.0-beta1",
  6100. "files": [
  6101. ".nupkg.metadata",
  6102. ".signature.p7s",
  6103. "lib/net35/Renci.SshNet.dll",
  6104. "lib/net35/Renci.SshNet.xml",
  6105. "lib/net40/Renci.SshNet.dll",
  6106. "lib/net40/Renci.SshNet.xml",
  6107. "lib/netstandard1.3/Renci.SshNet.dll",
  6108. "lib/netstandard1.3/Renci.SshNet.xml",
  6109. "lib/netstandard2.0/Renci.SshNet.dll",
  6110. "lib/netstandard2.0/Renci.SshNet.xml",
  6111. "lib/sl4/Renci.SshNet.dll",
  6112. "lib/sl4/Renci.SshNet.xml",
  6113. "lib/sl5/Renci.SshNet.dll",
  6114. "lib/sl5/Renci.SshNet.xml",
  6115. "lib/uap10/Renci.SshNet.dll",
  6116. "lib/uap10/Renci.SshNet.xml",
  6117. "lib/wp71/Renci.SshNet.dll",
  6118. "lib/wp71/Renci.SshNet.xml",
  6119. "lib/wp8/Renci.SshNet.dll",
  6120. "lib/wp8/Renci.SshNet.xml",
  6121. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  6122. "ssh.net.nuspec"
  6123. ]
  6124. },
  6125. "SshNet.Security.Cryptography/1.3.0": {
  6126. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  6127. "type": "package",
  6128. "path": "sshnet.security.cryptography/1.3.0",
  6129. "files": [
  6130. ".nupkg.metadata",
  6131. ".signature.p7s",
  6132. "lib/net20/SshNet.Security.Cryptography.dll",
  6133. "lib/net20/SshNet.Security.Cryptography.xml",
  6134. "lib/net40/SshNet.Security.Cryptography.dll",
  6135. "lib/net40/SshNet.Security.Cryptography.xml",
  6136. "lib/net45/SshNet.Security.Cryptography.dll",
  6137. "lib/net45/SshNet.Security.Cryptography.xml",
  6138. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  6139. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  6140. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  6141. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  6142. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  6143. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  6144. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  6145. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  6146. "lib/sl4/SshNet.Security.Cryptography.dll",
  6147. "lib/sl4/SshNet.Security.Cryptography.xml",
  6148. "lib/sl5/SshNet.Security.Cryptography.dll",
  6149. "lib/sl5/SshNet.Security.Cryptography.xml",
  6150. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  6151. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  6152. "lib/wp71/SshNet.Security.Cryptography.dll",
  6153. "lib/wp71/SshNet.Security.Cryptography.xml",
  6154. "lib/wp8/SshNet.Security.Cryptography.dll",
  6155. "lib/wp8/SshNet.Security.Cryptography.xml",
  6156. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  6157. "sshnet.security.cryptography.nuspec"
  6158. ]
  6159. },
  6160. "StackExchange.Redis/1.2.4": {
  6161. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  6162. "type": "package",
  6163. "path": "stackexchange.redis/1.2.4",
  6164. "files": [
  6165. ".nupkg.metadata",
  6166. ".signature.p7s",
  6167. "lib/net45/StackExchange.Redis.dll",
  6168. "lib/net45/StackExchange.Redis.xml",
  6169. "lib/net46/StackExchange.Redis.dll",
  6170. "lib/net46/StackExchange.Redis.xml",
  6171. "lib/netstandard1.5/StackExchange.Redis.dll",
  6172. "lib/netstandard1.5/StackExchange.Redis.xml",
  6173. "stackexchange.redis.1.2.4.nupkg.sha512",
  6174. "stackexchange.redis.nuspec"
  6175. ]
  6176. },
  6177. "System.AppContext/4.3.0": {
  6178. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6179. "type": "package",
  6180. "path": "system.appcontext/4.3.0",
  6181. "files": [
  6182. ".nupkg.metadata",
  6183. ".signature.p7s",
  6184. "ThirdPartyNotices.txt",
  6185. "dotnet_library_license.txt",
  6186. "lib/MonoAndroid10/_._",
  6187. "lib/MonoTouch10/_._",
  6188. "lib/net46/System.AppContext.dll",
  6189. "lib/net463/System.AppContext.dll",
  6190. "lib/netcore50/System.AppContext.dll",
  6191. "lib/netstandard1.6/System.AppContext.dll",
  6192. "lib/xamarinios10/_._",
  6193. "lib/xamarinmac20/_._",
  6194. "lib/xamarintvos10/_._",
  6195. "lib/xamarinwatchos10/_._",
  6196. "ref/MonoAndroid10/_._",
  6197. "ref/MonoTouch10/_._",
  6198. "ref/net46/System.AppContext.dll",
  6199. "ref/net463/System.AppContext.dll",
  6200. "ref/netstandard/_._",
  6201. "ref/netstandard1.3/System.AppContext.dll",
  6202. "ref/netstandard1.3/System.AppContext.xml",
  6203. "ref/netstandard1.3/de/System.AppContext.xml",
  6204. "ref/netstandard1.3/es/System.AppContext.xml",
  6205. "ref/netstandard1.3/fr/System.AppContext.xml",
  6206. "ref/netstandard1.3/it/System.AppContext.xml",
  6207. "ref/netstandard1.3/ja/System.AppContext.xml",
  6208. "ref/netstandard1.3/ko/System.AppContext.xml",
  6209. "ref/netstandard1.3/ru/System.AppContext.xml",
  6210. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6211. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6212. "ref/netstandard1.6/System.AppContext.dll",
  6213. "ref/netstandard1.6/System.AppContext.xml",
  6214. "ref/netstandard1.6/de/System.AppContext.xml",
  6215. "ref/netstandard1.6/es/System.AppContext.xml",
  6216. "ref/netstandard1.6/fr/System.AppContext.xml",
  6217. "ref/netstandard1.6/it/System.AppContext.xml",
  6218. "ref/netstandard1.6/ja/System.AppContext.xml",
  6219. "ref/netstandard1.6/ko/System.AppContext.xml",
  6220. "ref/netstandard1.6/ru/System.AppContext.xml",
  6221. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6222. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6223. "ref/xamarinios10/_._",
  6224. "ref/xamarinmac20/_._",
  6225. "ref/xamarintvos10/_._",
  6226. "ref/xamarinwatchos10/_._",
  6227. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6228. "system.appcontext.4.3.0.nupkg.sha512",
  6229. "system.appcontext.nuspec"
  6230. ]
  6231. },
  6232. "System.Buffers/4.5.1": {
  6233. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6234. "type": "package",
  6235. "path": "system.buffers/4.5.1",
  6236. "files": [
  6237. ".nupkg.metadata",
  6238. ".signature.p7s",
  6239. "LICENSE.TXT",
  6240. "THIRD-PARTY-NOTICES.TXT",
  6241. "lib/net461/System.Buffers.dll",
  6242. "lib/net461/System.Buffers.xml",
  6243. "lib/netcoreapp2.0/_._",
  6244. "lib/netstandard1.1/System.Buffers.dll",
  6245. "lib/netstandard1.1/System.Buffers.xml",
  6246. "lib/netstandard2.0/System.Buffers.dll",
  6247. "lib/netstandard2.0/System.Buffers.xml",
  6248. "lib/uap10.0.16299/_._",
  6249. "ref/net45/System.Buffers.dll",
  6250. "ref/net45/System.Buffers.xml",
  6251. "ref/netcoreapp2.0/_._",
  6252. "ref/netstandard1.1/System.Buffers.dll",
  6253. "ref/netstandard1.1/System.Buffers.xml",
  6254. "ref/netstandard2.0/System.Buffers.dll",
  6255. "ref/netstandard2.0/System.Buffers.xml",
  6256. "ref/uap10.0.16299/_._",
  6257. "system.buffers.4.5.1.nupkg.sha512",
  6258. "system.buffers.nuspec",
  6259. "useSharedDesignerContext.txt",
  6260. "version.txt"
  6261. ]
  6262. },
  6263. "System.Collections/4.3.0": {
  6264. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6265. "type": "package",
  6266. "path": "system.collections/4.3.0",
  6267. "files": [
  6268. ".nupkg.metadata",
  6269. ".signature.p7s",
  6270. "ThirdPartyNotices.txt",
  6271. "dotnet_library_license.txt",
  6272. "lib/MonoAndroid10/_._",
  6273. "lib/MonoTouch10/_._",
  6274. "lib/net45/_._",
  6275. "lib/portable-net45+win8+wp8+wpa81/_._",
  6276. "lib/win8/_._",
  6277. "lib/wp80/_._",
  6278. "lib/wpa81/_._",
  6279. "lib/xamarinios10/_._",
  6280. "lib/xamarinmac20/_._",
  6281. "lib/xamarintvos10/_._",
  6282. "lib/xamarinwatchos10/_._",
  6283. "ref/MonoAndroid10/_._",
  6284. "ref/MonoTouch10/_._",
  6285. "ref/net45/_._",
  6286. "ref/netcore50/System.Collections.dll",
  6287. "ref/netcore50/System.Collections.xml",
  6288. "ref/netcore50/de/System.Collections.xml",
  6289. "ref/netcore50/es/System.Collections.xml",
  6290. "ref/netcore50/fr/System.Collections.xml",
  6291. "ref/netcore50/it/System.Collections.xml",
  6292. "ref/netcore50/ja/System.Collections.xml",
  6293. "ref/netcore50/ko/System.Collections.xml",
  6294. "ref/netcore50/ru/System.Collections.xml",
  6295. "ref/netcore50/zh-hans/System.Collections.xml",
  6296. "ref/netcore50/zh-hant/System.Collections.xml",
  6297. "ref/netstandard1.0/System.Collections.dll",
  6298. "ref/netstandard1.0/System.Collections.xml",
  6299. "ref/netstandard1.0/de/System.Collections.xml",
  6300. "ref/netstandard1.0/es/System.Collections.xml",
  6301. "ref/netstandard1.0/fr/System.Collections.xml",
  6302. "ref/netstandard1.0/it/System.Collections.xml",
  6303. "ref/netstandard1.0/ja/System.Collections.xml",
  6304. "ref/netstandard1.0/ko/System.Collections.xml",
  6305. "ref/netstandard1.0/ru/System.Collections.xml",
  6306. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6307. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6308. "ref/netstandard1.3/System.Collections.dll",
  6309. "ref/netstandard1.3/System.Collections.xml",
  6310. "ref/netstandard1.3/de/System.Collections.xml",
  6311. "ref/netstandard1.3/es/System.Collections.xml",
  6312. "ref/netstandard1.3/fr/System.Collections.xml",
  6313. "ref/netstandard1.3/it/System.Collections.xml",
  6314. "ref/netstandard1.3/ja/System.Collections.xml",
  6315. "ref/netstandard1.3/ko/System.Collections.xml",
  6316. "ref/netstandard1.3/ru/System.Collections.xml",
  6317. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6318. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6319. "ref/portable-net45+win8+wp8+wpa81/_._",
  6320. "ref/win8/_._",
  6321. "ref/wp80/_._",
  6322. "ref/wpa81/_._",
  6323. "ref/xamarinios10/_._",
  6324. "ref/xamarinmac20/_._",
  6325. "ref/xamarintvos10/_._",
  6326. "ref/xamarinwatchos10/_._",
  6327. "system.collections.4.3.0.nupkg.sha512",
  6328. "system.collections.nuspec"
  6329. ]
  6330. },
  6331. "System.Collections.Concurrent/4.3.0": {
  6332. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6333. "type": "package",
  6334. "path": "system.collections.concurrent/4.3.0",
  6335. "files": [
  6336. ".nupkg.metadata",
  6337. ".signature.p7s",
  6338. "ThirdPartyNotices.txt",
  6339. "dotnet_library_license.txt",
  6340. "lib/MonoAndroid10/_._",
  6341. "lib/MonoTouch10/_._",
  6342. "lib/net45/_._",
  6343. "lib/netcore50/System.Collections.Concurrent.dll",
  6344. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6345. "lib/portable-net45+win8+wpa81/_._",
  6346. "lib/win8/_._",
  6347. "lib/wpa81/_._",
  6348. "lib/xamarinios10/_._",
  6349. "lib/xamarinmac20/_._",
  6350. "lib/xamarintvos10/_._",
  6351. "lib/xamarinwatchos10/_._",
  6352. "ref/MonoAndroid10/_._",
  6353. "ref/MonoTouch10/_._",
  6354. "ref/net45/_._",
  6355. "ref/netcore50/System.Collections.Concurrent.dll",
  6356. "ref/netcore50/System.Collections.Concurrent.xml",
  6357. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6358. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6359. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6360. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6361. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6362. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6363. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6364. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6365. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6366. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6367. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6368. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6369. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6370. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6371. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6372. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6373. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6374. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6375. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6376. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6377. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6378. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6379. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6380. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6381. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6382. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6383. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6384. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6385. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6386. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6387. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6388. "ref/portable-net45+win8+wpa81/_._",
  6389. "ref/win8/_._",
  6390. "ref/wpa81/_._",
  6391. "ref/xamarinios10/_._",
  6392. "ref/xamarinmac20/_._",
  6393. "ref/xamarintvos10/_._",
  6394. "ref/xamarinwatchos10/_._",
  6395. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6396. "system.collections.concurrent.nuspec"
  6397. ]
  6398. },
  6399. "System.Collections.Immutable/5.0.0": {
  6400. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6401. "type": "package",
  6402. "path": "system.collections.immutable/5.0.0",
  6403. "files": [
  6404. ".nupkg.metadata",
  6405. ".signature.p7s",
  6406. "Icon.png",
  6407. "LICENSE.TXT",
  6408. "THIRD-PARTY-NOTICES.TXT",
  6409. "lib/net461/System.Collections.Immutable.dll",
  6410. "lib/net461/System.Collections.Immutable.xml",
  6411. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6412. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6413. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6414. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6415. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6416. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6417. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6418. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6419. "system.collections.immutable.5.0.0.nupkg.sha512",
  6420. "system.collections.immutable.nuspec",
  6421. "useSharedDesignerContext.txt",
  6422. "version.txt"
  6423. ]
  6424. },
  6425. "System.Collections.NonGeneric/4.3.0": {
  6426. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6427. "type": "package",
  6428. "path": "system.collections.nongeneric/4.3.0",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. ".signature.p7s",
  6432. "ThirdPartyNotices.txt",
  6433. "dotnet_library_license.txt",
  6434. "lib/MonoAndroid10/_._",
  6435. "lib/MonoTouch10/_._",
  6436. "lib/net46/System.Collections.NonGeneric.dll",
  6437. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6438. "lib/xamarinios10/_._",
  6439. "lib/xamarinmac20/_._",
  6440. "lib/xamarintvos10/_._",
  6441. "lib/xamarinwatchos10/_._",
  6442. "ref/MonoAndroid10/_._",
  6443. "ref/MonoTouch10/_._",
  6444. "ref/net46/System.Collections.NonGeneric.dll",
  6445. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6446. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6447. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6448. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6449. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6450. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6451. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6452. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6453. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6454. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6455. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6456. "ref/xamarinios10/_._",
  6457. "ref/xamarinmac20/_._",
  6458. "ref/xamarintvos10/_._",
  6459. "ref/xamarinwatchos10/_._",
  6460. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6461. "system.collections.nongeneric.nuspec"
  6462. ]
  6463. },
  6464. "System.Collections.Specialized/4.3.0": {
  6465. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6466. "type": "package",
  6467. "path": "system.collections.specialized/4.3.0",
  6468. "files": [
  6469. ".nupkg.metadata",
  6470. ".signature.p7s",
  6471. "ThirdPartyNotices.txt",
  6472. "dotnet_library_license.txt",
  6473. "lib/MonoAndroid10/_._",
  6474. "lib/MonoTouch10/_._",
  6475. "lib/net46/System.Collections.Specialized.dll",
  6476. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6477. "lib/xamarinios10/_._",
  6478. "lib/xamarinmac20/_._",
  6479. "lib/xamarintvos10/_._",
  6480. "lib/xamarinwatchos10/_._",
  6481. "ref/MonoAndroid10/_._",
  6482. "ref/MonoTouch10/_._",
  6483. "ref/net46/System.Collections.Specialized.dll",
  6484. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6485. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6486. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6487. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6488. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6489. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6490. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6491. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6492. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6493. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6494. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "system.collections.specialized.4.3.0.nupkg.sha512",
  6500. "system.collections.specialized.nuspec"
  6501. ]
  6502. },
  6503. "System.ComponentModel/4.3.0": {
  6504. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6505. "type": "package",
  6506. "path": "system.componentmodel/4.3.0",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "ThirdPartyNotices.txt",
  6511. "dotnet_library_license.txt",
  6512. "lib/MonoAndroid10/_._",
  6513. "lib/MonoTouch10/_._",
  6514. "lib/net45/_._",
  6515. "lib/netcore50/System.ComponentModel.dll",
  6516. "lib/netstandard1.3/System.ComponentModel.dll",
  6517. "lib/portable-net45+win8+wp8+wpa81/_._",
  6518. "lib/win8/_._",
  6519. "lib/wp80/_._",
  6520. "lib/wpa81/_._",
  6521. "lib/xamarinios10/_._",
  6522. "lib/xamarinmac20/_._",
  6523. "lib/xamarintvos10/_._",
  6524. "lib/xamarinwatchos10/_._",
  6525. "ref/MonoAndroid10/_._",
  6526. "ref/MonoTouch10/_._",
  6527. "ref/net45/_._",
  6528. "ref/netcore50/System.ComponentModel.dll",
  6529. "ref/netcore50/System.ComponentModel.xml",
  6530. "ref/netcore50/de/System.ComponentModel.xml",
  6531. "ref/netcore50/es/System.ComponentModel.xml",
  6532. "ref/netcore50/fr/System.ComponentModel.xml",
  6533. "ref/netcore50/it/System.ComponentModel.xml",
  6534. "ref/netcore50/ja/System.ComponentModel.xml",
  6535. "ref/netcore50/ko/System.ComponentModel.xml",
  6536. "ref/netcore50/ru/System.ComponentModel.xml",
  6537. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6538. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6539. "ref/netstandard1.0/System.ComponentModel.dll",
  6540. "ref/netstandard1.0/System.ComponentModel.xml",
  6541. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6542. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6543. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6544. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6545. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6546. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6547. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6548. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6549. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6550. "ref/portable-net45+win8+wp8+wpa81/_._",
  6551. "ref/win8/_._",
  6552. "ref/wp80/_._",
  6553. "ref/wpa81/_._",
  6554. "ref/xamarinios10/_._",
  6555. "ref/xamarinmac20/_._",
  6556. "ref/xamarintvos10/_._",
  6557. "ref/xamarinwatchos10/_._",
  6558. "system.componentmodel.4.3.0.nupkg.sha512",
  6559. "system.componentmodel.nuspec"
  6560. ]
  6561. },
  6562. "System.ComponentModel.Annotations/5.0.0": {
  6563. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6564. "type": "package",
  6565. "path": "system.componentmodel.annotations/5.0.0",
  6566. "files": [
  6567. ".nupkg.metadata",
  6568. ".signature.p7s",
  6569. "Icon.png",
  6570. "LICENSE.TXT",
  6571. "THIRD-PARTY-NOTICES.TXT",
  6572. "lib/MonoAndroid10/_._",
  6573. "lib/MonoTouch10/_._",
  6574. "lib/net45/_._",
  6575. "lib/net461/System.ComponentModel.Annotations.dll",
  6576. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6577. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6578. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6579. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6580. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6581. "lib/portable-net45+win8/_._",
  6582. "lib/win8/_._",
  6583. "lib/xamarinios10/_._",
  6584. "lib/xamarinmac20/_._",
  6585. "lib/xamarintvos10/_._",
  6586. "lib/xamarinwatchos10/_._",
  6587. "ref/MonoAndroid10/_._",
  6588. "ref/MonoTouch10/_._",
  6589. "ref/net45/_._",
  6590. "ref/net461/System.ComponentModel.Annotations.dll",
  6591. "ref/net461/System.ComponentModel.Annotations.xml",
  6592. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6593. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6594. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6595. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6596. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6597. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6598. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6599. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6600. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6601. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6602. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6603. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6604. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6605. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6606. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6607. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6608. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6609. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6610. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6611. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6612. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6613. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6614. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6615. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6616. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6617. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6618. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6619. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6620. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6621. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6622. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6623. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6624. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6625. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6626. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6627. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6628. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6629. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6630. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6631. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6632. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6633. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6634. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6635. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6636. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6637. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6638. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6639. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6640. "ref/portable-net45+win8/_._",
  6641. "ref/win8/_._",
  6642. "ref/xamarinios10/_._",
  6643. "ref/xamarinmac20/_._",
  6644. "ref/xamarintvos10/_._",
  6645. "ref/xamarinwatchos10/_._",
  6646. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6647. "system.componentmodel.annotations.nuspec",
  6648. "useSharedDesignerContext.txt",
  6649. "version.txt"
  6650. ]
  6651. },
  6652. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6653. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6654. "type": "package",
  6655. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "ThirdPartyNotices.txt",
  6660. "dotnet_library_license.txt",
  6661. "lib/MonoAndroid10/_._",
  6662. "lib/MonoTouch10/_._",
  6663. "lib/net45/_._",
  6664. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6665. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6666. "lib/portable-net45+win8+wp8+wpa81/_._",
  6667. "lib/win8/_._",
  6668. "lib/wp80/_._",
  6669. "lib/wpa81/_._",
  6670. "lib/xamarinios10/_._",
  6671. "lib/xamarinmac20/_._",
  6672. "lib/xamarintvos10/_._",
  6673. "lib/xamarinwatchos10/_._",
  6674. "ref/MonoAndroid10/_._",
  6675. "ref/MonoTouch10/_._",
  6676. "ref/net45/_._",
  6677. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6678. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6679. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6680. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6681. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6682. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6683. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6684. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6685. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6686. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6687. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6688. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6689. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6690. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6691. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6692. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6693. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6694. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6695. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6696. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6697. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6698. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6699. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6700. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6701. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6702. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6703. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6704. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6705. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6706. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6707. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6708. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6709. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6710. "ref/portable-net45+win8+wp8+wpa81/_._",
  6711. "ref/win8/_._",
  6712. "ref/wp80/_._",
  6713. "ref/wpa81/_._",
  6714. "ref/xamarinios10/_._",
  6715. "ref/xamarinmac20/_._",
  6716. "ref/xamarintvos10/_._",
  6717. "ref/xamarinwatchos10/_._",
  6718. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6719. "system.componentmodel.eventbasedasync.nuspec"
  6720. ]
  6721. },
  6722. "System.ComponentModel.Primitives/4.3.0": {
  6723. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6724. "type": "package",
  6725. "path": "system.componentmodel.primitives/4.3.0",
  6726. "files": [
  6727. ".nupkg.metadata",
  6728. ".signature.p7s",
  6729. "ThirdPartyNotices.txt",
  6730. "dotnet_library_license.txt",
  6731. "lib/MonoAndroid10/_._",
  6732. "lib/MonoTouch10/_._",
  6733. "lib/net45/System.ComponentModel.Primitives.dll",
  6734. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6735. "lib/xamarinios10/_._",
  6736. "lib/xamarinmac20/_._",
  6737. "lib/xamarintvos10/_._",
  6738. "lib/xamarinwatchos10/_._",
  6739. "ref/MonoAndroid10/_._",
  6740. "ref/MonoTouch10/_._",
  6741. "ref/net45/System.ComponentModel.Primitives.dll",
  6742. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6743. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6744. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6745. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6746. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6747. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6748. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6749. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6750. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6751. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6752. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6753. "ref/xamarinios10/_._",
  6754. "ref/xamarinmac20/_._",
  6755. "ref/xamarintvos10/_._",
  6756. "ref/xamarinwatchos10/_._",
  6757. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6758. "system.componentmodel.primitives.nuspec"
  6759. ]
  6760. },
  6761. "System.ComponentModel.TypeConverter/4.3.0": {
  6762. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6763. "type": "package",
  6764. "path": "system.componentmodel.typeconverter/4.3.0",
  6765. "files": [
  6766. ".nupkg.metadata",
  6767. ".signature.p7s",
  6768. "ThirdPartyNotices.txt",
  6769. "dotnet_library_license.txt",
  6770. "lib/MonoAndroid10/_._",
  6771. "lib/MonoTouch10/_._",
  6772. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6773. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6774. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6775. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6776. "lib/xamarinios10/_._",
  6777. "lib/xamarinmac20/_._",
  6778. "lib/xamarintvos10/_._",
  6779. "lib/xamarinwatchos10/_._",
  6780. "ref/MonoAndroid10/_._",
  6781. "ref/MonoTouch10/_._",
  6782. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6783. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6784. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6785. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6786. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6787. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6788. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6789. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6790. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6791. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6792. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6793. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6794. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6795. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6796. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6797. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6798. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6799. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6800. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6801. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6802. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6803. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6804. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6805. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6806. "ref/xamarinios10/_._",
  6807. "ref/xamarinmac20/_._",
  6808. "ref/xamarintvos10/_._",
  6809. "ref/xamarinwatchos10/_._",
  6810. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6811. "system.componentmodel.typeconverter.nuspec"
  6812. ]
  6813. },
  6814. "System.Configuration.ConfigurationManager/4.7.0": {
  6815. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6816. "type": "package",
  6817. "path": "system.configuration.configurationmanager/4.7.0",
  6818. "files": [
  6819. ".nupkg.metadata",
  6820. ".signature.p7s",
  6821. "LICENSE.TXT",
  6822. "THIRD-PARTY-NOTICES.TXT",
  6823. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6824. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6825. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6826. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6827. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6828. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6829. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6830. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6831. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6832. "system.configuration.configurationmanager.nuspec",
  6833. "useSharedDesignerContext.txt",
  6834. "version.txt"
  6835. ]
  6836. },
  6837. "System.Console/4.3.0": {
  6838. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6839. "type": "package",
  6840. "path": "system.console/4.3.0",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net46/System.Console.dll",
  6849. "lib/xamarinios10/_._",
  6850. "lib/xamarinmac20/_._",
  6851. "lib/xamarintvos10/_._",
  6852. "lib/xamarinwatchos10/_._",
  6853. "ref/MonoAndroid10/_._",
  6854. "ref/MonoTouch10/_._",
  6855. "ref/net46/System.Console.dll",
  6856. "ref/netstandard1.3/System.Console.dll",
  6857. "ref/netstandard1.3/System.Console.xml",
  6858. "ref/netstandard1.3/de/System.Console.xml",
  6859. "ref/netstandard1.3/es/System.Console.xml",
  6860. "ref/netstandard1.3/fr/System.Console.xml",
  6861. "ref/netstandard1.3/it/System.Console.xml",
  6862. "ref/netstandard1.3/ja/System.Console.xml",
  6863. "ref/netstandard1.3/ko/System.Console.xml",
  6864. "ref/netstandard1.3/ru/System.Console.xml",
  6865. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6866. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6867. "ref/xamarinios10/_._",
  6868. "ref/xamarinmac20/_._",
  6869. "ref/xamarintvos10/_._",
  6870. "ref/xamarinwatchos10/_._",
  6871. "system.console.4.3.0.nupkg.sha512",
  6872. "system.console.nuspec"
  6873. ]
  6874. },
  6875. "System.Diagnostics.Debug/4.3.0": {
  6876. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6877. "type": "package",
  6878. "path": "system.diagnostics.debug/4.3.0",
  6879. "files": [
  6880. ".nupkg.metadata",
  6881. ".signature.p7s",
  6882. "ThirdPartyNotices.txt",
  6883. "dotnet_library_license.txt",
  6884. "lib/MonoAndroid10/_._",
  6885. "lib/MonoTouch10/_._",
  6886. "lib/net45/_._",
  6887. "lib/portable-net45+win8+wp8+wpa81/_._",
  6888. "lib/win8/_._",
  6889. "lib/wp80/_._",
  6890. "lib/wpa81/_._",
  6891. "lib/xamarinios10/_._",
  6892. "lib/xamarinmac20/_._",
  6893. "lib/xamarintvos10/_._",
  6894. "lib/xamarinwatchos10/_._",
  6895. "ref/MonoAndroid10/_._",
  6896. "ref/MonoTouch10/_._",
  6897. "ref/net45/_._",
  6898. "ref/netcore50/System.Diagnostics.Debug.dll",
  6899. "ref/netcore50/System.Diagnostics.Debug.xml",
  6900. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6901. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6902. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6903. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6904. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6905. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6906. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6907. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6908. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6909. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6910. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6911. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6912. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6913. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6914. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6915. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6916. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6917. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6918. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6919. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6920. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6921. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6922. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6923. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6924. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6925. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6926. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6927. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6928. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6929. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6930. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6931. "ref/portable-net45+win8+wp8+wpa81/_._",
  6932. "ref/win8/_._",
  6933. "ref/wp80/_._",
  6934. "ref/wpa81/_._",
  6935. "ref/xamarinios10/_._",
  6936. "ref/xamarinmac20/_._",
  6937. "ref/xamarintvos10/_._",
  6938. "ref/xamarinwatchos10/_._",
  6939. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6940. "system.diagnostics.debug.nuspec"
  6941. ]
  6942. },
  6943. "System.Diagnostics.DiagnosticSource/5.0.0": {
  6944. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  6945. "type": "package",
  6946. "path": "system.diagnostics.diagnosticsource/5.0.0",
  6947. "files": [
  6948. ".nupkg.metadata",
  6949. ".signature.p7s",
  6950. "Icon.png",
  6951. "LICENSE.TXT",
  6952. "THIRD-PARTY-NOTICES.TXT",
  6953. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6954. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6955. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6956. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6957. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6958. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6959. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6960. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6961. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6962. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6963. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6964. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6965. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  6966. "system.diagnostics.diagnosticsource.nuspec",
  6967. "useSharedDesignerContext.txt",
  6968. "version.txt"
  6969. ]
  6970. },
  6971. "System.Diagnostics.Tools/4.3.0": {
  6972. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6973. "type": "package",
  6974. "path": "system.diagnostics.tools/4.3.0",
  6975. "files": [
  6976. ".nupkg.metadata",
  6977. ".signature.p7s",
  6978. "ThirdPartyNotices.txt",
  6979. "dotnet_library_license.txt",
  6980. "lib/MonoAndroid10/_._",
  6981. "lib/MonoTouch10/_._",
  6982. "lib/net45/_._",
  6983. "lib/portable-net45+win8+wp8+wpa81/_._",
  6984. "lib/win8/_._",
  6985. "lib/wp80/_._",
  6986. "lib/wpa81/_._",
  6987. "lib/xamarinios10/_._",
  6988. "lib/xamarinmac20/_._",
  6989. "lib/xamarintvos10/_._",
  6990. "lib/xamarinwatchos10/_._",
  6991. "ref/MonoAndroid10/_._",
  6992. "ref/MonoTouch10/_._",
  6993. "ref/net45/_._",
  6994. "ref/netcore50/System.Diagnostics.Tools.dll",
  6995. "ref/netcore50/System.Diagnostics.Tools.xml",
  6996. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6997. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6998. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6999. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  7000. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  7001. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  7002. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  7003. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  7004. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  7005. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  7006. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  7007. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  7008. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  7009. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  7010. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  7011. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  7012. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  7013. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  7014. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  7015. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  7016. "ref/portable-net45+win8+wp8+wpa81/_._",
  7017. "ref/win8/_._",
  7018. "ref/wp80/_._",
  7019. "ref/wpa81/_._",
  7020. "ref/xamarinios10/_._",
  7021. "ref/xamarinmac20/_._",
  7022. "ref/xamarintvos10/_._",
  7023. "ref/xamarinwatchos10/_._",
  7024. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  7025. "system.diagnostics.tools.nuspec"
  7026. ]
  7027. },
  7028. "System.Diagnostics.TraceSource/4.3.0": {
  7029. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  7030. "type": "package",
  7031. "path": "system.diagnostics.tracesource/4.3.0",
  7032. "files": [
  7033. ".nupkg.metadata",
  7034. ".signature.p7s",
  7035. "ThirdPartyNotices.txt",
  7036. "dotnet_library_license.txt",
  7037. "lib/MonoAndroid10/_._",
  7038. "lib/MonoTouch10/_._",
  7039. "lib/net46/System.Diagnostics.TraceSource.dll",
  7040. "lib/xamarinios10/_._",
  7041. "lib/xamarinmac20/_._",
  7042. "lib/xamarintvos10/_._",
  7043. "lib/xamarinwatchos10/_._",
  7044. "ref/MonoAndroid10/_._",
  7045. "ref/MonoTouch10/_._",
  7046. "ref/net46/System.Diagnostics.TraceSource.dll",
  7047. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7048. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  7049. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  7050. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  7051. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  7052. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  7053. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  7054. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  7055. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  7056. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  7057. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  7058. "ref/xamarinios10/_._",
  7059. "ref/xamarinmac20/_._",
  7060. "ref/xamarintvos10/_._",
  7061. "ref/xamarinwatchos10/_._",
  7062. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7063. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  7064. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7065. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  7066. "system.diagnostics.tracesource.nuspec"
  7067. ]
  7068. },
  7069. "System.Diagnostics.Tracing/4.3.0": {
  7070. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  7071. "type": "package",
  7072. "path": "system.diagnostics.tracing/4.3.0",
  7073. "files": [
  7074. ".nupkg.metadata",
  7075. ".signature.p7s",
  7076. "ThirdPartyNotices.txt",
  7077. "dotnet_library_license.txt",
  7078. "lib/MonoAndroid10/_._",
  7079. "lib/MonoTouch10/_._",
  7080. "lib/net45/_._",
  7081. "lib/net462/System.Diagnostics.Tracing.dll",
  7082. "lib/portable-net45+win8+wpa81/_._",
  7083. "lib/win8/_._",
  7084. "lib/wpa81/_._",
  7085. "lib/xamarinios10/_._",
  7086. "lib/xamarinmac20/_._",
  7087. "lib/xamarintvos10/_._",
  7088. "lib/xamarinwatchos10/_._",
  7089. "ref/MonoAndroid10/_._",
  7090. "ref/MonoTouch10/_._",
  7091. "ref/net45/_._",
  7092. "ref/net462/System.Diagnostics.Tracing.dll",
  7093. "ref/netcore50/System.Diagnostics.Tracing.dll",
  7094. "ref/netcore50/System.Diagnostics.Tracing.xml",
  7095. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  7096. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  7097. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  7098. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  7099. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  7100. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  7101. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  7102. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  7103. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  7104. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  7105. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  7106. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  7107. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  7108. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  7109. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  7110. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  7111. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  7112. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  7113. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  7114. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  7115. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  7116. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  7117. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  7118. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  7119. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  7120. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  7121. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  7122. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  7123. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  7124. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  7125. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  7126. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  7127. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  7128. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  7129. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  7130. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  7131. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  7132. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  7133. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  7134. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  7135. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  7136. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  7137. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  7138. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  7139. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  7140. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  7141. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  7142. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  7143. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  7144. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  7145. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  7146. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  7147. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  7148. "ref/portable-net45+win8+wpa81/_._",
  7149. "ref/win8/_._",
  7150. "ref/wpa81/_._",
  7151. "ref/xamarinios10/_._",
  7152. "ref/xamarinmac20/_._",
  7153. "ref/xamarintvos10/_._",
  7154. "ref/xamarinwatchos10/_._",
  7155. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  7156. "system.diagnostics.tracing.nuspec"
  7157. ]
  7158. },
  7159. "System.Drawing.Common/5.0.3": {
  7160. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  7161. "type": "package",
  7162. "path": "system.drawing.common/5.0.3",
  7163. "files": [
  7164. ".nupkg.metadata",
  7165. ".signature.p7s",
  7166. "Icon.png",
  7167. "LICENSE.TXT",
  7168. "THIRD-PARTY-NOTICES.TXT",
  7169. "lib/MonoAndroid10/_._",
  7170. "lib/MonoTouch10/_._",
  7171. "lib/net461/System.Drawing.Common.dll",
  7172. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  7173. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  7174. "lib/netstandard2.0/System.Drawing.Common.dll",
  7175. "lib/xamarinios10/_._",
  7176. "lib/xamarinmac20/_._",
  7177. "lib/xamarintvos10/_._",
  7178. "lib/xamarinwatchos10/_._",
  7179. "ref/MonoAndroid10/_._",
  7180. "ref/MonoTouch10/_._",
  7181. "ref/net461/System.Drawing.Common.dll",
  7182. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  7183. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  7184. "ref/netstandard2.0/System.Drawing.Common.dll",
  7185. "ref/xamarinios10/_._",
  7186. "ref/xamarinmac20/_._",
  7187. "ref/xamarintvos10/_._",
  7188. "ref/xamarinwatchos10/_._",
  7189. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7190. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7191. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7192. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7193. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7194. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7195. "system.drawing.common.5.0.3.nupkg.sha512",
  7196. "system.drawing.common.nuspec",
  7197. "useSharedDesignerContext.txt",
  7198. "version.txt"
  7199. ]
  7200. },
  7201. "System.Dynamic.Runtime/4.3.0": {
  7202. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  7203. "type": "package",
  7204. "path": "system.dynamic.runtime/4.3.0",
  7205. "files": [
  7206. ".nupkg.metadata",
  7207. ".signature.p7s",
  7208. "ThirdPartyNotices.txt",
  7209. "dotnet_library_license.txt",
  7210. "lib/MonoAndroid10/_._",
  7211. "lib/MonoTouch10/_._",
  7212. "lib/net45/_._",
  7213. "lib/netcore50/System.Dynamic.Runtime.dll",
  7214. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7215. "lib/portable-net45+win8+wp8+wpa81/_._",
  7216. "lib/win8/_._",
  7217. "lib/wp80/_._",
  7218. "lib/wpa81/_._",
  7219. "lib/xamarinios10/_._",
  7220. "lib/xamarinmac20/_._",
  7221. "lib/xamarintvos10/_._",
  7222. "lib/xamarinwatchos10/_._",
  7223. "ref/MonoAndroid10/_._",
  7224. "ref/MonoTouch10/_._",
  7225. "ref/net45/_._",
  7226. "ref/netcore50/System.Dynamic.Runtime.dll",
  7227. "ref/netcore50/System.Dynamic.Runtime.xml",
  7228. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7229. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7230. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7231. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7232. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7233. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7234. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7235. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7236. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7237. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7238. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7239. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7240. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7241. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7242. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7243. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7244. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7245. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7246. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7247. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7248. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7249. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7250. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7251. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7252. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7253. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7254. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7255. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7256. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7257. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7258. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7259. "ref/portable-net45+win8+wp8+wpa81/_._",
  7260. "ref/win8/_._",
  7261. "ref/wp80/_._",
  7262. "ref/wpa81/_._",
  7263. "ref/xamarinios10/_._",
  7264. "ref/xamarinmac20/_._",
  7265. "ref/xamarintvos10/_._",
  7266. "ref/xamarinwatchos10/_._",
  7267. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7268. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7269. "system.dynamic.runtime.nuspec"
  7270. ]
  7271. },
  7272. "System.Globalization/4.3.0": {
  7273. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7274. "type": "package",
  7275. "path": "system.globalization/4.3.0",
  7276. "files": [
  7277. ".nupkg.metadata",
  7278. ".signature.p7s",
  7279. "ThirdPartyNotices.txt",
  7280. "dotnet_library_license.txt",
  7281. "lib/MonoAndroid10/_._",
  7282. "lib/MonoTouch10/_._",
  7283. "lib/net45/_._",
  7284. "lib/portable-net45+win8+wp8+wpa81/_._",
  7285. "lib/win8/_._",
  7286. "lib/wp80/_._",
  7287. "lib/wpa81/_._",
  7288. "lib/xamarinios10/_._",
  7289. "lib/xamarinmac20/_._",
  7290. "lib/xamarintvos10/_._",
  7291. "lib/xamarinwatchos10/_._",
  7292. "ref/MonoAndroid10/_._",
  7293. "ref/MonoTouch10/_._",
  7294. "ref/net45/_._",
  7295. "ref/netcore50/System.Globalization.dll",
  7296. "ref/netcore50/System.Globalization.xml",
  7297. "ref/netcore50/de/System.Globalization.xml",
  7298. "ref/netcore50/es/System.Globalization.xml",
  7299. "ref/netcore50/fr/System.Globalization.xml",
  7300. "ref/netcore50/it/System.Globalization.xml",
  7301. "ref/netcore50/ja/System.Globalization.xml",
  7302. "ref/netcore50/ko/System.Globalization.xml",
  7303. "ref/netcore50/ru/System.Globalization.xml",
  7304. "ref/netcore50/zh-hans/System.Globalization.xml",
  7305. "ref/netcore50/zh-hant/System.Globalization.xml",
  7306. "ref/netstandard1.0/System.Globalization.dll",
  7307. "ref/netstandard1.0/System.Globalization.xml",
  7308. "ref/netstandard1.0/de/System.Globalization.xml",
  7309. "ref/netstandard1.0/es/System.Globalization.xml",
  7310. "ref/netstandard1.0/fr/System.Globalization.xml",
  7311. "ref/netstandard1.0/it/System.Globalization.xml",
  7312. "ref/netstandard1.0/ja/System.Globalization.xml",
  7313. "ref/netstandard1.0/ko/System.Globalization.xml",
  7314. "ref/netstandard1.0/ru/System.Globalization.xml",
  7315. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7316. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7317. "ref/netstandard1.3/System.Globalization.dll",
  7318. "ref/netstandard1.3/System.Globalization.xml",
  7319. "ref/netstandard1.3/de/System.Globalization.xml",
  7320. "ref/netstandard1.3/es/System.Globalization.xml",
  7321. "ref/netstandard1.3/fr/System.Globalization.xml",
  7322. "ref/netstandard1.3/it/System.Globalization.xml",
  7323. "ref/netstandard1.3/ja/System.Globalization.xml",
  7324. "ref/netstandard1.3/ko/System.Globalization.xml",
  7325. "ref/netstandard1.3/ru/System.Globalization.xml",
  7326. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7327. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7328. "ref/portable-net45+win8+wp8+wpa81/_._",
  7329. "ref/win8/_._",
  7330. "ref/wp80/_._",
  7331. "ref/wpa81/_._",
  7332. "ref/xamarinios10/_._",
  7333. "ref/xamarinmac20/_._",
  7334. "ref/xamarintvos10/_._",
  7335. "ref/xamarinwatchos10/_._",
  7336. "system.globalization.4.3.0.nupkg.sha512",
  7337. "system.globalization.nuspec"
  7338. ]
  7339. },
  7340. "System.Globalization.Calendars/4.3.0": {
  7341. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7342. "type": "package",
  7343. "path": "system.globalization.calendars/4.3.0",
  7344. "files": [
  7345. ".nupkg.metadata",
  7346. ".signature.p7s",
  7347. "ThirdPartyNotices.txt",
  7348. "dotnet_library_license.txt",
  7349. "lib/MonoAndroid10/_._",
  7350. "lib/MonoTouch10/_._",
  7351. "lib/net46/System.Globalization.Calendars.dll",
  7352. "lib/xamarinios10/_._",
  7353. "lib/xamarinmac20/_._",
  7354. "lib/xamarintvos10/_._",
  7355. "lib/xamarinwatchos10/_._",
  7356. "ref/MonoAndroid10/_._",
  7357. "ref/MonoTouch10/_._",
  7358. "ref/net46/System.Globalization.Calendars.dll",
  7359. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7360. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7361. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7362. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7363. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7364. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7365. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7366. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7367. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7368. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7369. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7370. "ref/xamarinios10/_._",
  7371. "ref/xamarinmac20/_._",
  7372. "ref/xamarintvos10/_._",
  7373. "ref/xamarinwatchos10/_._",
  7374. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7375. "system.globalization.calendars.nuspec"
  7376. ]
  7377. },
  7378. "System.Globalization.Extensions/4.3.0": {
  7379. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7380. "type": "package",
  7381. "path": "system.globalization.extensions/4.3.0",
  7382. "files": [
  7383. ".nupkg.metadata",
  7384. ".signature.p7s",
  7385. "ThirdPartyNotices.txt",
  7386. "dotnet_library_license.txt",
  7387. "lib/MonoAndroid10/_._",
  7388. "lib/MonoTouch10/_._",
  7389. "lib/net46/System.Globalization.Extensions.dll",
  7390. "lib/xamarinios10/_._",
  7391. "lib/xamarinmac20/_._",
  7392. "lib/xamarintvos10/_._",
  7393. "lib/xamarinwatchos10/_._",
  7394. "ref/MonoAndroid10/_._",
  7395. "ref/MonoTouch10/_._",
  7396. "ref/net46/System.Globalization.Extensions.dll",
  7397. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7398. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7399. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7400. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7401. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7402. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7403. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7404. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7405. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7406. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7407. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7408. "ref/xamarinios10/_._",
  7409. "ref/xamarinmac20/_._",
  7410. "ref/xamarintvos10/_._",
  7411. "ref/xamarinwatchos10/_._",
  7412. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7413. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7414. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7415. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7416. "system.globalization.extensions.nuspec"
  7417. ]
  7418. },
  7419. "System.IO/4.3.0": {
  7420. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7421. "type": "package",
  7422. "path": "system.io/4.3.0",
  7423. "files": [
  7424. ".nupkg.metadata",
  7425. ".signature.p7s",
  7426. "ThirdPartyNotices.txt",
  7427. "dotnet_library_license.txt",
  7428. "lib/MonoAndroid10/_._",
  7429. "lib/MonoTouch10/_._",
  7430. "lib/net45/_._",
  7431. "lib/net462/System.IO.dll",
  7432. "lib/portable-net45+win8+wp8+wpa81/_._",
  7433. "lib/win8/_._",
  7434. "lib/wp80/_._",
  7435. "lib/wpa81/_._",
  7436. "lib/xamarinios10/_._",
  7437. "lib/xamarinmac20/_._",
  7438. "lib/xamarintvos10/_._",
  7439. "lib/xamarinwatchos10/_._",
  7440. "ref/MonoAndroid10/_._",
  7441. "ref/MonoTouch10/_._",
  7442. "ref/net45/_._",
  7443. "ref/net462/System.IO.dll",
  7444. "ref/netcore50/System.IO.dll",
  7445. "ref/netcore50/System.IO.xml",
  7446. "ref/netcore50/de/System.IO.xml",
  7447. "ref/netcore50/es/System.IO.xml",
  7448. "ref/netcore50/fr/System.IO.xml",
  7449. "ref/netcore50/it/System.IO.xml",
  7450. "ref/netcore50/ja/System.IO.xml",
  7451. "ref/netcore50/ko/System.IO.xml",
  7452. "ref/netcore50/ru/System.IO.xml",
  7453. "ref/netcore50/zh-hans/System.IO.xml",
  7454. "ref/netcore50/zh-hant/System.IO.xml",
  7455. "ref/netstandard1.0/System.IO.dll",
  7456. "ref/netstandard1.0/System.IO.xml",
  7457. "ref/netstandard1.0/de/System.IO.xml",
  7458. "ref/netstandard1.0/es/System.IO.xml",
  7459. "ref/netstandard1.0/fr/System.IO.xml",
  7460. "ref/netstandard1.0/it/System.IO.xml",
  7461. "ref/netstandard1.0/ja/System.IO.xml",
  7462. "ref/netstandard1.0/ko/System.IO.xml",
  7463. "ref/netstandard1.0/ru/System.IO.xml",
  7464. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7465. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7466. "ref/netstandard1.3/System.IO.dll",
  7467. "ref/netstandard1.3/System.IO.xml",
  7468. "ref/netstandard1.3/de/System.IO.xml",
  7469. "ref/netstandard1.3/es/System.IO.xml",
  7470. "ref/netstandard1.3/fr/System.IO.xml",
  7471. "ref/netstandard1.3/it/System.IO.xml",
  7472. "ref/netstandard1.3/ja/System.IO.xml",
  7473. "ref/netstandard1.3/ko/System.IO.xml",
  7474. "ref/netstandard1.3/ru/System.IO.xml",
  7475. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7476. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7477. "ref/netstandard1.5/System.IO.dll",
  7478. "ref/netstandard1.5/System.IO.xml",
  7479. "ref/netstandard1.5/de/System.IO.xml",
  7480. "ref/netstandard1.5/es/System.IO.xml",
  7481. "ref/netstandard1.5/fr/System.IO.xml",
  7482. "ref/netstandard1.5/it/System.IO.xml",
  7483. "ref/netstandard1.5/ja/System.IO.xml",
  7484. "ref/netstandard1.5/ko/System.IO.xml",
  7485. "ref/netstandard1.5/ru/System.IO.xml",
  7486. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7487. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7488. "ref/portable-net45+win8+wp8+wpa81/_._",
  7489. "ref/win8/_._",
  7490. "ref/wp80/_._",
  7491. "ref/wpa81/_._",
  7492. "ref/xamarinios10/_._",
  7493. "ref/xamarinmac20/_._",
  7494. "ref/xamarintvos10/_._",
  7495. "ref/xamarinwatchos10/_._",
  7496. "system.io.4.3.0.nupkg.sha512",
  7497. "system.io.nuspec"
  7498. ]
  7499. },
  7500. "System.IO.Compression/4.3.0": {
  7501. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7502. "type": "package",
  7503. "path": "system.io.compression/4.3.0",
  7504. "files": [
  7505. ".nupkg.metadata",
  7506. ".signature.p7s",
  7507. "ThirdPartyNotices.txt",
  7508. "dotnet_library_license.txt",
  7509. "lib/MonoAndroid10/_._",
  7510. "lib/MonoTouch10/_._",
  7511. "lib/net45/_._",
  7512. "lib/net46/System.IO.Compression.dll",
  7513. "lib/portable-net45+win8+wpa81/_._",
  7514. "lib/win8/_._",
  7515. "lib/wpa81/_._",
  7516. "lib/xamarinios10/_._",
  7517. "lib/xamarinmac20/_._",
  7518. "lib/xamarintvos10/_._",
  7519. "lib/xamarinwatchos10/_._",
  7520. "ref/MonoAndroid10/_._",
  7521. "ref/MonoTouch10/_._",
  7522. "ref/net45/_._",
  7523. "ref/net46/System.IO.Compression.dll",
  7524. "ref/netcore50/System.IO.Compression.dll",
  7525. "ref/netcore50/System.IO.Compression.xml",
  7526. "ref/netcore50/de/System.IO.Compression.xml",
  7527. "ref/netcore50/es/System.IO.Compression.xml",
  7528. "ref/netcore50/fr/System.IO.Compression.xml",
  7529. "ref/netcore50/it/System.IO.Compression.xml",
  7530. "ref/netcore50/ja/System.IO.Compression.xml",
  7531. "ref/netcore50/ko/System.IO.Compression.xml",
  7532. "ref/netcore50/ru/System.IO.Compression.xml",
  7533. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7534. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7535. "ref/netstandard1.1/System.IO.Compression.dll",
  7536. "ref/netstandard1.1/System.IO.Compression.xml",
  7537. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7538. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7539. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7540. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7541. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7542. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7543. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7544. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7545. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7546. "ref/netstandard1.3/System.IO.Compression.dll",
  7547. "ref/netstandard1.3/System.IO.Compression.xml",
  7548. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7549. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7550. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7551. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7552. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7553. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7554. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7555. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7556. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7557. "ref/portable-net45+win8+wpa81/_._",
  7558. "ref/win8/_._",
  7559. "ref/wpa81/_._",
  7560. "ref/xamarinios10/_._",
  7561. "ref/xamarinmac20/_._",
  7562. "ref/xamarintvos10/_._",
  7563. "ref/xamarinwatchos10/_._",
  7564. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7565. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7566. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7567. "system.io.compression.4.3.0.nupkg.sha512",
  7568. "system.io.compression.nuspec"
  7569. ]
  7570. },
  7571. "System.IO.Compression.ZipFile/4.3.0": {
  7572. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7573. "type": "package",
  7574. "path": "system.io.compression.zipfile/4.3.0",
  7575. "files": [
  7576. ".nupkg.metadata",
  7577. ".signature.p7s",
  7578. "ThirdPartyNotices.txt",
  7579. "dotnet_library_license.txt",
  7580. "lib/MonoAndroid10/_._",
  7581. "lib/MonoTouch10/_._",
  7582. "lib/net46/System.IO.Compression.ZipFile.dll",
  7583. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7584. "lib/xamarinios10/_._",
  7585. "lib/xamarinmac20/_._",
  7586. "lib/xamarintvos10/_._",
  7587. "lib/xamarinwatchos10/_._",
  7588. "ref/MonoAndroid10/_._",
  7589. "ref/MonoTouch10/_._",
  7590. "ref/net46/System.IO.Compression.ZipFile.dll",
  7591. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7592. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7593. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7594. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7595. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7596. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7597. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7598. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7599. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7600. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7601. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7602. "ref/xamarinios10/_._",
  7603. "ref/xamarinmac20/_._",
  7604. "ref/xamarintvos10/_._",
  7605. "ref/xamarinwatchos10/_._",
  7606. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7607. "system.io.compression.zipfile.nuspec"
  7608. ]
  7609. },
  7610. "System.IO.FileSystem/4.3.0": {
  7611. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7612. "type": "package",
  7613. "path": "system.io.filesystem/4.3.0",
  7614. "files": [
  7615. ".nupkg.metadata",
  7616. ".signature.p7s",
  7617. "ThirdPartyNotices.txt",
  7618. "dotnet_library_license.txt",
  7619. "lib/MonoAndroid10/_._",
  7620. "lib/MonoTouch10/_._",
  7621. "lib/net46/System.IO.FileSystem.dll",
  7622. "lib/xamarinios10/_._",
  7623. "lib/xamarinmac20/_._",
  7624. "lib/xamarintvos10/_._",
  7625. "lib/xamarinwatchos10/_._",
  7626. "ref/MonoAndroid10/_._",
  7627. "ref/MonoTouch10/_._",
  7628. "ref/net46/System.IO.FileSystem.dll",
  7629. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7630. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7631. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7632. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7633. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7634. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7635. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7636. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7637. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7638. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7639. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7640. "ref/xamarinios10/_._",
  7641. "ref/xamarinmac20/_._",
  7642. "ref/xamarintvos10/_._",
  7643. "ref/xamarinwatchos10/_._",
  7644. "system.io.filesystem.4.3.0.nupkg.sha512",
  7645. "system.io.filesystem.nuspec"
  7646. ]
  7647. },
  7648. "System.IO.FileSystem.Primitives/4.3.0": {
  7649. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7650. "type": "package",
  7651. "path": "system.io.filesystem.primitives/4.3.0",
  7652. "files": [
  7653. ".nupkg.metadata",
  7654. ".signature.p7s",
  7655. "ThirdPartyNotices.txt",
  7656. "dotnet_library_license.txt",
  7657. "lib/MonoAndroid10/_._",
  7658. "lib/MonoTouch10/_._",
  7659. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7660. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7661. "lib/xamarinios10/_._",
  7662. "lib/xamarinmac20/_._",
  7663. "lib/xamarintvos10/_._",
  7664. "lib/xamarinwatchos10/_._",
  7665. "ref/MonoAndroid10/_._",
  7666. "ref/MonoTouch10/_._",
  7667. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7668. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7669. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7670. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7671. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7672. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7673. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7674. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7675. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7676. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7677. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7678. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7679. "ref/xamarinios10/_._",
  7680. "ref/xamarinmac20/_._",
  7681. "ref/xamarintvos10/_._",
  7682. "ref/xamarinwatchos10/_._",
  7683. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7684. "system.io.filesystem.primitives.nuspec"
  7685. ]
  7686. },
  7687. "System.IO.Pipelines/5.0.0": {
  7688. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7689. "type": "package",
  7690. "path": "system.io.pipelines/5.0.0",
  7691. "files": [
  7692. ".nupkg.metadata",
  7693. ".signature.p7s",
  7694. "Icon.png",
  7695. "LICENSE.TXT",
  7696. "THIRD-PARTY-NOTICES.TXT",
  7697. "lib/net461/System.IO.Pipelines.dll",
  7698. "lib/net461/System.IO.Pipelines.xml",
  7699. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7700. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7701. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7702. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7703. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7704. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7705. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7706. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7707. "system.io.pipelines.5.0.0.nupkg.sha512",
  7708. "system.io.pipelines.nuspec",
  7709. "useSharedDesignerContext.txt",
  7710. "version.txt"
  7711. ]
  7712. },
  7713. "System.Linq/4.3.0": {
  7714. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7715. "type": "package",
  7716. "path": "system.linq/4.3.0",
  7717. "files": [
  7718. ".nupkg.metadata",
  7719. ".signature.p7s",
  7720. "ThirdPartyNotices.txt",
  7721. "dotnet_library_license.txt",
  7722. "lib/MonoAndroid10/_._",
  7723. "lib/MonoTouch10/_._",
  7724. "lib/net45/_._",
  7725. "lib/net463/System.Linq.dll",
  7726. "lib/netcore50/System.Linq.dll",
  7727. "lib/netstandard1.6/System.Linq.dll",
  7728. "lib/portable-net45+win8+wp8+wpa81/_._",
  7729. "lib/win8/_._",
  7730. "lib/wp80/_._",
  7731. "lib/wpa81/_._",
  7732. "lib/xamarinios10/_._",
  7733. "lib/xamarinmac20/_._",
  7734. "lib/xamarintvos10/_._",
  7735. "lib/xamarinwatchos10/_._",
  7736. "ref/MonoAndroid10/_._",
  7737. "ref/MonoTouch10/_._",
  7738. "ref/net45/_._",
  7739. "ref/net463/System.Linq.dll",
  7740. "ref/netcore50/System.Linq.dll",
  7741. "ref/netcore50/System.Linq.xml",
  7742. "ref/netcore50/de/System.Linq.xml",
  7743. "ref/netcore50/es/System.Linq.xml",
  7744. "ref/netcore50/fr/System.Linq.xml",
  7745. "ref/netcore50/it/System.Linq.xml",
  7746. "ref/netcore50/ja/System.Linq.xml",
  7747. "ref/netcore50/ko/System.Linq.xml",
  7748. "ref/netcore50/ru/System.Linq.xml",
  7749. "ref/netcore50/zh-hans/System.Linq.xml",
  7750. "ref/netcore50/zh-hant/System.Linq.xml",
  7751. "ref/netstandard1.0/System.Linq.dll",
  7752. "ref/netstandard1.0/System.Linq.xml",
  7753. "ref/netstandard1.0/de/System.Linq.xml",
  7754. "ref/netstandard1.0/es/System.Linq.xml",
  7755. "ref/netstandard1.0/fr/System.Linq.xml",
  7756. "ref/netstandard1.0/it/System.Linq.xml",
  7757. "ref/netstandard1.0/ja/System.Linq.xml",
  7758. "ref/netstandard1.0/ko/System.Linq.xml",
  7759. "ref/netstandard1.0/ru/System.Linq.xml",
  7760. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7761. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7762. "ref/netstandard1.6/System.Linq.dll",
  7763. "ref/netstandard1.6/System.Linq.xml",
  7764. "ref/netstandard1.6/de/System.Linq.xml",
  7765. "ref/netstandard1.6/es/System.Linq.xml",
  7766. "ref/netstandard1.6/fr/System.Linq.xml",
  7767. "ref/netstandard1.6/it/System.Linq.xml",
  7768. "ref/netstandard1.6/ja/System.Linq.xml",
  7769. "ref/netstandard1.6/ko/System.Linq.xml",
  7770. "ref/netstandard1.6/ru/System.Linq.xml",
  7771. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7772. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7773. "ref/portable-net45+win8+wp8+wpa81/_._",
  7774. "ref/win8/_._",
  7775. "ref/wp80/_._",
  7776. "ref/wpa81/_._",
  7777. "ref/xamarinios10/_._",
  7778. "ref/xamarinmac20/_._",
  7779. "ref/xamarintvos10/_._",
  7780. "ref/xamarinwatchos10/_._",
  7781. "system.linq.4.3.0.nupkg.sha512",
  7782. "system.linq.nuspec"
  7783. ]
  7784. },
  7785. "System.Linq.Expressions/4.3.0": {
  7786. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7787. "type": "package",
  7788. "path": "system.linq.expressions/4.3.0",
  7789. "files": [
  7790. ".nupkg.metadata",
  7791. ".signature.p7s",
  7792. "ThirdPartyNotices.txt",
  7793. "dotnet_library_license.txt",
  7794. "lib/MonoAndroid10/_._",
  7795. "lib/MonoTouch10/_._",
  7796. "lib/net45/_._",
  7797. "lib/net463/System.Linq.Expressions.dll",
  7798. "lib/netcore50/System.Linq.Expressions.dll",
  7799. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7800. "lib/portable-net45+win8+wp8+wpa81/_._",
  7801. "lib/win8/_._",
  7802. "lib/wp80/_._",
  7803. "lib/wpa81/_._",
  7804. "lib/xamarinios10/_._",
  7805. "lib/xamarinmac20/_._",
  7806. "lib/xamarintvos10/_._",
  7807. "lib/xamarinwatchos10/_._",
  7808. "ref/MonoAndroid10/_._",
  7809. "ref/MonoTouch10/_._",
  7810. "ref/net45/_._",
  7811. "ref/net463/System.Linq.Expressions.dll",
  7812. "ref/netcore50/System.Linq.Expressions.dll",
  7813. "ref/netcore50/System.Linq.Expressions.xml",
  7814. "ref/netcore50/de/System.Linq.Expressions.xml",
  7815. "ref/netcore50/es/System.Linq.Expressions.xml",
  7816. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7817. "ref/netcore50/it/System.Linq.Expressions.xml",
  7818. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7819. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7820. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7821. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7822. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7823. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7824. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7825. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7826. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7827. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7828. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7829. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7830. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7831. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7832. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7833. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7834. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7835. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7836. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7837. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7838. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7839. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7840. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7841. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7842. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7845. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7846. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7847. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7848. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7849. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7850. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7851. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7852. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7853. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7854. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7855. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7856. "ref/portable-net45+win8+wp8+wpa81/_._",
  7857. "ref/win8/_._",
  7858. "ref/wp80/_._",
  7859. "ref/wpa81/_._",
  7860. "ref/xamarinios10/_._",
  7861. "ref/xamarinmac20/_._",
  7862. "ref/xamarintvos10/_._",
  7863. "ref/xamarinwatchos10/_._",
  7864. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7865. "system.linq.expressions.4.3.0.nupkg.sha512",
  7866. "system.linq.expressions.nuspec"
  7867. ]
  7868. },
  7869. "System.Memory/4.5.5": {
  7870. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7871. "type": "package",
  7872. "path": "system.memory/4.5.5",
  7873. "files": [
  7874. ".nupkg.metadata",
  7875. ".signature.p7s",
  7876. "LICENSE.TXT",
  7877. "THIRD-PARTY-NOTICES.TXT",
  7878. "lib/net461/System.Memory.dll",
  7879. "lib/net461/System.Memory.xml",
  7880. "lib/netcoreapp2.1/_._",
  7881. "lib/netstandard1.1/System.Memory.dll",
  7882. "lib/netstandard1.1/System.Memory.xml",
  7883. "lib/netstandard2.0/System.Memory.dll",
  7884. "lib/netstandard2.0/System.Memory.xml",
  7885. "ref/netcoreapp2.1/_._",
  7886. "system.memory.4.5.5.nupkg.sha512",
  7887. "system.memory.nuspec",
  7888. "useSharedDesignerContext.txt",
  7889. "version.txt"
  7890. ]
  7891. },
  7892. "System.Net.Http/4.3.2": {
  7893. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7894. "type": "package",
  7895. "path": "system.net.http/4.3.2",
  7896. "files": [
  7897. ".nupkg.metadata",
  7898. ".signature.p7s",
  7899. "ThirdPartyNotices.txt",
  7900. "dotnet_library_license.txt",
  7901. "lib/Xamarinmac20/_._",
  7902. "lib/monoandroid10/_._",
  7903. "lib/monotouch10/_._",
  7904. "lib/net45/_._",
  7905. "lib/net46/System.Net.Http.dll",
  7906. "lib/portable-net45+win8+wpa81/_._",
  7907. "lib/win8/_._",
  7908. "lib/wpa81/_._",
  7909. "lib/xamarinios10/_._",
  7910. "lib/xamarintvos10/_._",
  7911. "lib/xamarinwatchos10/_._",
  7912. "ref/Xamarinmac20/_._",
  7913. "ref/monoandroid10/_._",
  7914. "ref/monotouch10/_._",
  7915. "ref/net45/_._",
  7916. "ref/net46/System.Net.Http.dll",
  7917. "ref/netcore50/System.Net.Http.dll",
  7918. "ref/netstandard1.1/System.Net.Http.dll",
  7919. "ref/netstandard1.3/System.Net.Http.dll",
  7920. "ref/portable-net45+win8+wpa81/_._",
  7921. "ref/win8/_._",
  7922. "ref/wpa81/_._",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarintvos10/_._",
  7925. "ref/xamarinwatchos10/_._",
  7926. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7927. "runtimes/win/lib/net46/System.Net.Http.dll",
  7928. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7929. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7930. "system.net.http.4.3.2.nupkg.sha512",
  7931. "system.net.http.nuspec"
  7932. ]
  7933. },
  7934. "System.Net.NameResolution/4.3.0": {
  7935. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7936. "type": "package",
  7937. "path": "system.net.nameresolution/4.3.0",
  7938. "files": [
  7939. ".nupkg.metadata",
  7940. ".signature.p7s",
  7941. "ThirdPartyNotices.txt",
  7942. "dotnet_library_license.txt",
  7943. "lib/MonoAndroid10/_._",
  7944. "lib/MonoTouch10/_._",
  7945. "lib/net46/System.Net.NameResolution.dll",
  7946. "lib/xamarinios10/_._",
  7947. "lib/xamarinmac20/_._",
  7948. "lib/xamarintvos10/_._",
  7949. "lib/xamarinwatchos10/_._",
  7950. "ref/MonoAndroid10/_._",
  7951. "ref/MonoTouch10/_._",
  7952. "ref/net46/System.Net.NameResolution.dll",
  7953. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7954. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7955. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7956. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7957. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7958. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7959. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7960. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7961. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7962. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7963. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7964. "ref/xamarinios10/_._",
  7965. "ref/xamarinmac20/_._",
  7966. "ref/xamarintvos10/_._",
  7967. "ref/xamarinwatchos10/_._",
  7968. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7969. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7970. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7971. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7972. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7973. "system.net.nameresolution.nuspec"
  7974. ]
  7975. },
  7976. "System.Net.Primitives/4.3.0": {
  7977. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7978. "type": "package",
  7979. "path": "system.net.primitives/4.3.0",
  7980. "files": [
  7981. ".nupkg.metadata",
  7982. ".signature.p7s",
  7983. "ThirdPartyNotices.txt",
  7984. "dotnet_library_license.txt",
  7985. "lib/MonoAndroid10/_._",
  7986. "lib/MonoTouch10/_._",
  7987. "lib/net45/_._",
  7988. "lib/portable-net45+win8+wp8+wpa81/_._",
  7989. "lib/win8/_._",
  7990. "lib/wp80/_._",
  7991. "lib/wpa81/_._",
  7992. "lib/xamarinios10/_._",
  7993. "lib/xamarinmac20/_._",
  7994. "lib/xamarintvos10/_._",
  7995. "lib/xamarinwatchos10/_._",
  7996. "ref/MonoAndroid10/_._",
  7997. "ref/MonoTouch10/_._",
  7998. "ref/net45/_._",
  7999. "ref/netcore50/System.Net.Primitives.dll",
  8000. "ref/netcore50/System.Net.Primitives.xml",
  8001. "ref/netcore50/de/System.Net.Primitives.xml",
  8002. "ref/netcore50/es/System.Net.Primitives.xml",
  8003. "ref/netcore50/fr/System.Net.Primitives.xml",
  8004. "ref/netcore50/it/System.Net.Primitives.xml",
  8005. "ref/netcore50/ja/System.Net.Primitives.xml",
  8006. "ref/netcore50/ko/System.Net.Primitives.xml",
  8007. "ref/netcore50/ru/System.Net.Primitives.xml",
  8008. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  8009. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  8010. "ref/netstandard1.0/System.Net.Primitives.dll",
  8011. "ref/netstandard1.0/System.Net.Primitives.xml",
  8012. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  8013. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  8014. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  8015. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  8016. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  8017. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  8018. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  8019. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  8020. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  8021. "ref/netstandard1.1/System.Net.Primitives.dll",
  8022. "ref/netstandard1.1/System.Net.Primitives.xml",
  8023. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  8024. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  8025. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  8026. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  8027. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  8028. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  8029. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  8030. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  8031. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  8032. "ref/netstandard1.3/System.Net.Primitives.dll",
  8033. "ref/netstandard1.3/System.Net.Primitives.xml",
  8034. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  8035. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  8036. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  8037. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  8038. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  8039. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  8040. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  8041. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  8042. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  8043. "ref/portable-net45+win8+wp8+wpa81/_._",
  8044. "ref/win8/_._",
  8045. "ref/wp80/_._",
  8046. "ref/wpa81/_._",
  8047. "ref/xamarinios10/_._",
  8048. "ref/xamarinmac20/_._",
  8049. "ref/xamarintvos10/_._",
  8050. "ref/xamarinwatchos10/_._",
  8051. "system.net.primitives.4.3.0.nupkg.sha512",
  8052. "system.net.primitives.nuspec"
  8053. ]
  8054. },
  8055. "System.Net.Security/4.3.0": {
  8056. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  8057. "type": "package",
  8058. "path": "system.net.security/4.3.0",
  8059. "files": [
  8060. ".nupkg.metadata",
  8061. ".signature.p7s",
  8062. "ThirdPartyNotices.txt",
  8063. "dotnet_library_license.txt",
  8064. "lib/MonoAndroid10/_._",
  8065. "lib/MonoTouch10/_._",
  8066. "lib/net46/System.Net.Security.dll",
  8067. "lib/xamarinios10/_._",
  8068. "lib/xamarinmac20/_._",
  8069. "lib/xamarintvos10/_._",
  8070. "lib/xamarinwatchos10/_._",
  8071. "ref/MonoAndroid10/_._",
  8072. "ref/MonoTouch10/_._",
  8073. "ref/net46/System.Net.Security.dll",
  8074. "ref/netstandard1.3/System.Net.Security.dll",
  8075. "ref/netstandard1.3/System.Net.Security.xml",
  8076. "ref/netstandard1.3/de/System.Net.Security.xml",
  8077. "ref/netstandard1.3/es/System.Net.Security.xml",
  8078. "ref/netstandard1.3/fr/System.Net.Security.xml",
  8079. "ref/netstandard1.3/it/System.Net.Security.xml",
  8080. "ref/netstandard1.3/ja/System.Net.Security.xml",
  8081. "ref/netstandard1.3/ko/System.Net.Security.xml",
  8082. "ref/netstandard1.3/ru/System.Net.Security.xml",
  8083. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  8084. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  8085. "ref/xamarinios10/_._",
  8086. "ref/xamarinmac20/_._",
  8087. "ref/xamarintvos10/_._",
  8088. "ref/xamarinwatchos10/_._",
  8089. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  8090. "runtimes/win/lib/net46/System.Net.Security.dll",
  8091. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  8092. "runtimes/win7/lib/netcore50/_._",
  8093. "system.net.security.4.3.0.nupkg.sha512",
  8094. "system.net.security.nuspec"
  8095. ]
  8096. },
  8097. "System.Net.Sockets/4.3.0": {
  8098. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  8099. "type": "package",
  8100. "path": "system.net.sockets/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net46/System.Net.Sockets.dll",
  8109. "lib/xamarinios10/_._",
  8110. "lib/xamarinmac20/_._",
  8111. "lib/xamarintvos10/_._",
  8112. "lib/xamarinwatchos10/_._",
  8113. "ref/MonoAndroid10/_._",
  8114. "ref/MonoTouch10/_._",
  8115. "ref/net46/System.Net.Sockets.dll",
  8116. "ref/netstandard1.3/System.Net.Sockets.dll",
  8117. "ref/netstandard1.3/System.Net.Sockets.xml",
  8118. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  8119. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  8120. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  8121. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  8122. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  8123. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  8124. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  8125. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  8126. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  8127. "ref/xamarinios10/_._",
  8128. "ref/xamarinmac20/_._",
  8129. "ref/xamarintvos10/_._",
  8130. "ref/xamarinwatchos10/_._",
  8131. "system.net.sockets.4.3.0.nupkg.sha512",
  8132. "system.net.sockets.nuspec"
  8133. ]
  8134. },
  8135. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  8136. "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  8137. "type": "package",
  8138. "path": "system.net.websockets.websocketprotocol/4.5.1",
  8139. "files": [
  8140. ".nupkg.metadata",
  8141. ".signature.p7s",
  8142. "LICENSE.TXT",
  8143. "THIRD-PARTY-NOTICES.TXT",
  8144. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll",
  8145. "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8146. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  8147. "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
  8148. "system.net.websockets.websocketprotocol.nuspec",
  8149. "useSharedDesignerContext.txt",
  8150. "version.txt"
  8151. ]
  8152. },
  8153. "System.ObjectModel/4.3.0": {
  8154. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  8155. "type": "package",
  8156. "path": "system.objectmodel/4.3.0",
  8157. "files": [
  8158. ".nupkg.metadata",
  8159. ".signature.p7s",
  8160. "ThirdPartyNotices.txt",
  8161. "dotnet_library_license.txt",
  8162. "lib/MonoAndroid10/_._",
  8163. "lib/MonoTouch10/_._",
  8164. "lib/net45/_._",
  8165. "lib/netcore50/System.ObjectModel.dll",
  8166. "lib/netstandard1.3/System.ObjectModel.dll",
  8167. "lib/portable-net45+win8+wp8+wpa81/_._",
  8168. "lib/win8/_._",
  8169. "lib/wp80/_._",
  8170. "lib/wpa81/_._",
  8171. "lib/xamarinios10/_._",
  8172. "lib/xamarinmac20/_._",
  8173. "lib/xamarintvos10/_._",
  8174. "lib/xamarinwatchos10/_._",
  8175. "ref/MonoAndroid10/_._",
  8176. "ref/MonoTouch10/_._",
  8177. "ref/net45/_._",
  8178. "ref/netcore50/System.ObjectModel.dll",
  8179. "ref/netcore50/System.ObjectModel.xml",
  8180. "ref/netcore50/de/System.ObjectModel.xml",
  8181. "ref/netcore50/es/System.ObjectModel.xml",
  8182. "ref/netcore50/fr/System.ObjectModel.xml",
  8183. "ref/netcore50/it/System.ObjectModel.xml",
  8184. "ref/netcore50/ja/System.ObjectModel.xml",
  8185. "ref/netcore50/ko/System.ObjectModel.xml",
  8186. "ref/netcore50/ru/System.ObjectModel.xml",
  8187. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8188. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8189. "ref/netstandard1.0/System.ObjectModel.dll",
  8190. "ref/netstandard1.0/System.ObjectModel.xml",
  8191. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8192. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8193. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8194. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8195. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8196. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8197. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8198. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8199. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8200. "ref/netstandard1.3/System.ObjectModel.dll",
  8201. "ref/netstandard1.3/System.ObjectModel.xml",
  8202. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8203. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8204. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8205. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8206. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8207. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8208. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8209. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8210. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8211. "ref/portable-net45+win8+wp8+wpa81/_._",
  8212. "ref/win8/_._",
  8213. "ref/wp80/_._",
  8214. "ref/wpa81/_._",
  8215. "ref/xamarinios10/_._",
  8216. "ref/xamarinmac20/_._",
  8217. "ref/xamarintvos10/_._",
  8218. "ref/xamarinwatchos10/_._",
  8219. "system.objectmodel.4.3.0.nupkg.sha512",
  8220. "system.objectmodel.nuspec"
  8221. ]
  8222. },
  8223. "System.Reactive/4.4.1": {
  8224. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  8225. "type": "package",
  8226. "path": "system.reactive/4.4.1",
  8227. "files": [
  8228. ".nupkg.metadata",
  8229. ".signature.p7s",
  8230. "build/netcoreapp3.0/System.Reactive.dll",
  8231. "build/netcoreapp3.0/System.Reactive.targets",
  8232. "build/netcoreapp3.0/System.Reactive.xml",
  8233. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  8234. "lib/net46/System.Reactive.dll",
  8235. "lib/net46/System.Reactive.xml",
  8236. "lib/netcoreapp3.0/_._",
  8237. "lib/netstandard2.0/System.Reactive.dll",
  8238. "lib/netstandard2.0/System.Reactive.xml",
  8239. "lib/uap10.0.16299/System.Reactive.dll",
  8240. "lib/uap10.0.16299/System.Reactive.pri",
  8241. "lib/uap10.0.16299/System.Reactive.xml",
  8242. "lib/uap10.0/System.Reactive.dll",
  8243. "lib/uap10.0/System.Reactive.pri",
  8244. "lib/uap10.0/System.Reactive.xml",
  8245. "system.reactive.4.4.1.nupkg.sha512",
  8246. "system.reactive.nuspec"
  8247. ]
  8248. },
  8249. "System.Reflection/4.3.0": {
  8250. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  8251. "type": "package",
  8252. "path": "system.reflection/4.3.0",
  8253. "files": [
  8254. ".nupkg.metadata",
  8255. ".signature.p7s",
  8256. "ThirdPartyNotices.txt",
  8257. "dotnet_library_license.txt",
  8258. "lib/MonoAndroid10/_._",
  8259. "lib/MonoTouch10/_._",
  8260. "lib/net45/_._",
  8261. "lib/net462/System.Reflection.dll",
  8262. "lib/portable-net45+win8+wp8+wpa81/_._",
  8263. "lib/win8/_._",
  8264. "lib/wp80/_._",
  8265. "lib/wpa81/_._",
  8266. "lib/xamarinios10/_._",
  8267. "lib/xamarinmac20/_._",
  8268. "lib/xamarintvos10/_._",
  8269. "lib/xamarinwatchos10/_._",
  8270. "ref/MonoAndroid10/_._",
  8271. "ref/MonoTouch10/_._",
  8272. "ref/net45/_._",
  8273. "ref/net462/System.Reflection.dll",
  8274. "ref/netcore50/System.Reflection.dll",
  8275. "ref/netcore50/System.Reflection.xml",
  8276. "ref/netcore50/de/System.Reflection.xml",
  8277. "ref/netcore50/es/System.Reflection.xml",
  8278. "ref/netcore50/fr/System.Reflection.xml",
  8279. "ref/netcore50/it/System.Reflection.xml",
  8280. "ref/netcore50/ja/System.Reflection.xml",
  8281. "ref/netcore50/ko/System.Reflection.xml",
  8282. "ref/netcore50/ru/System.Reflection.xml",
  8283. "ref/netcore50/zh-hans/System.Reflection.xml",
  8284. "ref/netcore50/zh-hant/System.Reflection.xml",
  8285. "ref/netstandard1.0/System.Reflection.dll",
  8286. "ref/netstandard1.0/System.Reflection.xml",
  8287. "ref/netstandard1.0/de/System.Reflection.xml",
  8288. "ref/netstandard1.0/es/System.Reflection.xml",
  8289. "ref/netstandard1.0/fr/System.Reflection.xml",
  8290. "ref/netstandard1.0/it/System.Reflection.xml",
  8291. "ref/netstandard1.0/ja/System.Reflection.xml",
  8292. "ref/netstandard1.0/ko/System.Reflection.xml",
  8293. "ref/netstandard1.0/ru/System.Reflection.xml",
  8294. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8295. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8296. "ref/netstandard1.3/System.Reflection.dll",
  8297. "ref/netstandard1.3/System.Reflection.xml",
  8298. "ref/netstandard1.3/de/System.Reflection.xml",
  8299. "ref/netstandard1.3/es/System.Reflection.xml",
  8300. "ref/netstandard1.3/fr/System.Reflection.xml",
  8301. "ref/netstandard1.3/it/System.Reflection.xml",
  8302. "ref/netstandard1.3/ja/System.Reflection.xml",
  8303. "ref/netstandard1.3/ko/System.Reflection.xml",
  8304. "ref/netstandard1.3/ru/System.Reflection.xml",
  8305. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8306. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8307. "ref/netstandard1.5/System.Reflection.dll",
  8308. "ref/netstandard1.5/System.Reflection.xml",
  8309. "ref/netstandard1.5/de/System.Reflection.xml",
  8310. "ref/netstandard1.5/es/System.Reflection.xml",
  8311. "ref/netstandard1.5/fr/System.Reflection.xml",
  8312. "ref/netstandard1.5/it/System.Reflection.xml",
  8313. "ref/netstandard1.5/ja/System.Reflection.xml",
  8314. "ref/netstandard1.5/ko/System.Reflection.xml",
  8315. "ref/netstandard1.5/ru/System.Reflection.xml",
  8316. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8317. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8318. "ref/portable-net45+win8+wp8+wpa81/_._",
  8319. "ref/win8/_._",
  8320. "ref/wp80/_._",
  8321. "ref/wpa81/_._",
  8322. "ref/xamarinios10/_._",
  8323. "ref/xamarinmac20/_._",
  8324. "ref/xamarintvos10/_._",
  8325. "ref/xamarinwatchos10/_._",
  8326. "system.reflection.4.3.0.nupkg.sha512",
  8327. "system.reflection.nuspec"
  8328. ]
  8329. },
  8330. "System.Reflection.Emit/4.7.0": {
  8331. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8332. "type": "package",
  8333. "path": "system.reflection.emit/4.7.0",
  8334. "files": [
  8335. ".nupkg.metadata",
  8336. ".signature.p7s",
  8337. "LICENSE.TXT",
  8338. "THIRD-PARTY-NOTICES.TXT",
  8339. "lib/MonoAndroid10/_._",
  8340. "lib/MonoTouch10/_._",
  8341. "lib/net45/_._",
  8342. "lib/netcore50/System.Reflection.Emit.dll",
  8343. "lib/netcoreapp2.0/_._",
  8344. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8345. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8346. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8347. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8348. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8349. "lib/netstandard2.1/_._",
  8350. "lib/xamarinios10/_._",
  8351. "lib/xamarinmac20/_._",
  8352. "lib/xamarintvos10/_._",
  8353. "lib/xamarinwatchos10/_._",
  8354. "ref/MonoAndroid10/_._",
  8355. "ref/MonoTouch10/_._",
  8356. "ref/net45/_._",
  8357. "ref/netcoreapp2.0/_._",
  8358. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8359. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8360. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8361. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8362. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8363. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8364. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8365. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8366. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8367. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8368. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8369. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8370. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8371. "ref/netstandard2.1/_._",
  8372. "ref/xamarinios10/_._",
  8373. "ref/xamarinmac20/_._",
  8374. "ref/xamarintvos10/_._",
  8375. "ref/xamarinwatchos10/_._",
  8376. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8377. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8378. "system.reflection.emit.4.7.0.nupkg.sha512",
  8379. "system.reflection.emit.nuspec",
  8380. "useSharedDesignerContext.txt",
  8381. "version.txt"
  8382. ]
  8383. },
  8384. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8385. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8386. "type": "package",
  8387. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8388. "files": [
  8389. ".nupkg.metadata",
  8390. ".signature.p7s",
  8391. "ThirdPartyNotices.txt",
  8392. "dotnet_library_license.txt",
  8393. "lib/MonoAndroid10/_._",
  8394. "lib/MonoTouch10/_._",
  8395. "lib/net45/_._",
  8396. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8397. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8398. "lib/portable-net45+wp8/_._",
  8399. "lib/wp80/_._",
  8400. "lib/xamarinios10/_._",
  8401. "lib/xamarinmac20/_._",
  8402. "lib/xamarintvos10/_._",
  8403. "lib/xamarinwatchos10/_._",
  8404. "ref/MonoAndroid10/_._",
  8405. "ref/MonoTouch10/_._",
  8406. "ref/net45/_._",
  8407. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8408. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8409. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8410. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8411. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8412. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8413. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8414. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8415. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8416. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8417. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8418. "ref/portable-net45+wp8/_._",
  8419. "ref/wp80/_._",
  8420. "ref/xamarinios10/_._",
  8421. "ref/xamarinmac20/_._",
  8422. "ref/xamarintvos10/_._",
  8423. "ref/xamarinwatchos10/_._",
  8424. "runtimes/aot/lib/netcore50/_._",
  8425. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8426. "system.reflection.emit.ilgeneration.nuspec"
  8427. ]
  8428. },
  8429. "System.Reflection.Emit.Lightweight/4.3.0": {
  8430. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8431. "type": "package",
  8432. "path": "system.reflection.emit.lightweight/4.3.0",
  8433. "files": [
  8434. ".nupkg.metadata",
  8435. ".signature.p7s",
  8436. "ThirdPartyNotices.txt",
  8437. "dotnet_library_license.txt",
  8438. "lib/MonoAndroid10/_._",
  8439. "lib/MonoTouch10/_._",
  8440. "lib/net45/_._",
  8441. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8442. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8443. "lib/portable-net45+wp8/_._",
  8444. "lib/wp80/_._",
  8445. "lib/xamarinios10/_._",
  8446. "lib/xamarinmac20/_._",
  8447. "lib/xamarintvos10/_._",
  8448. "lib/xamarinwatchos10/_._",
  8449. "ref/MonoAndroid10/_._",
  8450. "ref/MonoTouch10/_._",
  8451. "ref/net45/_._",
  8452. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8453. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8454. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8455. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8456. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8457. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8458. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8459. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8460. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8461. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8462. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8463. "ref/portable-net45+wp8/_._",
  8464. "ref/wp80/_._",
  8465. "ref/xamarinios10/_._",
  8466. "ref/xamarinmac20/_._",
  8467. "ref/xamarintvos10/_._",
  8468. "ref/xamarinwatchos10/_._",
  8469. "runtimes/aot/lib/netcore50/_._",
  8470. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8471. "system.reflection.emit.lightweight.nuspec"
  8472. ]
  8473. },
  8474. "System.Reflection.Extensions/4.3.0": {
  8475. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8476. "type": "package",
  8477. "path": "system.reflection.extensions/4.3.0",
  8478. "files": [
  8479. ".nupkg.metadata",
  8480. ".signature.p7s",
  8481. "ThirdPartyNotices.txt",
  8482. "dotnet_library_license.txt",
  8483. "lib/MonoAndroid10/_._",
  8484. "lib/MonoTouch10/_._",
  8485. "lib/net45/_._",
  8486. "lib/portable-net45+win8+wp8+wpa81/_._",
  8487. "lib/win8/_._",
  8488. "lib/wp80/_._",
  8489. "lib/wpa81/_._",
  8490. "lib/xamarinios10/_._",
  8491. "lib/xamarinmac20/_._",
  8492. "lib/xamarintvos10/_._",
  8493. "lib/xamarinwatchos10/_._",
  8494. "ref/MonoAndroid10/_._",
  8495. "ref/MonoTouch10/_._",
  8496. "ref/net45/_._",
  8497. "ref/netcore50/System.Reflection.Extensions.dll",
  8498. "ref/netcore50/System.Reflection.Extensions.xml",
  8499. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8500. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8501. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8502. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8503. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8504. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8505. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8506. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8507. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8508. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8509. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8510. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8511. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8512. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8513. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8514. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8515. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8516. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8517. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8518. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8519. "ref/portable-net45+win8+wp8+wpa81/_._",
  8520. "ref/win8/_._",
  8521. "ref/wp80/_._",
  8522. "ref/wpa81/_._",
  8523. "ref/xamarinios10/_._",
  8524. "ref/xamarinmac20/_._",
  8525. "ref/xamarintvos10/_._",
  8526. "ref/xamarinwatchos10/_._",
  8527. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8528. "system.reflection.extensions.nuspec"
  8529. ]
  8530. },
  8531. "System.Reflection.Primitives/4.3.0": {
  8532. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8533. "type": "package",
  8534. "path": "system.reflection.primitives/4.3.0",
  8535. "files": [
  8536. ".nupkg.metadata",
  8537. ".signature.p7s",
  8538. "ThirdPartyNotices.txt",
  8539. "dotnet_library_license.txt",
  8540. "lib/MonoAndroid10/_._",
  8541. "lib/MonoTouch10/_._",
  8542. "lib/net45/_._",
  8543. "lib/portable-net45+win8+wp8+wpa81/_._",
  8544. "lib/win8/_._",
  8545. "lib/wp80/_._",
  8546. "lib/wpa81/_._",
  8547. "lib/xamarinios10/_._",
  8548. "lib/xamarinmac20/_._",
  8549. "lib/xamarintvos10/_._",
  8550. "lib/xamarinwatchos10/_._",
  8551. "ref/MonoAndroid10/_._",
  8552. "ref/MonoTouch10/_._",
  8553. "ref/net45/_._",
  8554. "ref/netcore50/System.Reflection.Primitives.dll",
  8555. "ref/netcore50/System.Reflection.Primitives.xml",
  8556. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8557. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8558. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8559. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8560. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8561. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8562. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8563. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8564. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8565. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8566. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8567. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8568. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8569. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8570. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8571. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8572. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8573. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8574. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8575. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8576. "ref/portable-net45+win8+wp8+wpa81/_._",
  8577. "ref/win8/_._",
  8578. "ref/wp80/_._",
  8579. "ref/wpa81/_._",
  8580. "ref/xamarinios10/_._",
  8581. "ref/xamarinmac20/_._",
  8582. "ref/xamarintvos10/_._",
  8583. "ref/xamarinwatchos10/_._",
  8584. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8585. "system.reflection.primitives.nuspec"
  8586. ]
  8587. },
  8588. "System.Reflection.TypeExtensions/4.3.0": {
  8589. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8590. "type": "package",
  8591. "path": "system.reflection.typeextensions/4.3.0",
  8592. "files": [
  8593. ".nupkg.metadata",
  8594. ".signature.p7s",
  8595. "ThirdPartyNotices.txt",
  8596. "dotnet_library_license.txt",
  8597. "lib/MonoAndroid10/_._",
  8598. "lib/MonoTouch10/_._",
  8599. "lib/net46/System.Reflection.TypeExtensions.dll",
  8600. "lib/net462/System.Reflection.TypeExtensions.dll",
  8601. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8602. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8603. "lib/xamarinios10/_._",
  8604. "lib/xamarinmac20/_._",
  8605. "lib/xamarintvos10/_._",
  8606. "lib/xamarinwatchos10/_._",
  8607. "ref/MonoAndroid10/_._",
  8608. "ref/MonoTouch10/_._",
  8609. "ref/net46/System.Reflection.TypeExtensions.dll",
  8610. "ref/net462/System.Reflection.TypeExtensions.dll",
  8611. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8612. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8613. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8614. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8615. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8616. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8617. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8618. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8619. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8620. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8621. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8622. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8623. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8624. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8625. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8626. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8627. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8628. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8629. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8630. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8631. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8632. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8633. "ref/xamarinios10/_._",
  8634. "ref/xamarinmac20/_._",
  8635. "ref/xamarintvos10/_._",
  8636. "ref/xamarinwatchos10/_._",
  8637. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8638. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8639. "system.reflection.typeextensions.nuspec"
  8640. ]
  8641. },
  8642. "System.Resources.ResourceManager/4.3.0": {
  8643. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8644. "type": "package",
  8645. "path": "system.resources.resourcemanager/4.3.0",
  8646. "files": [
  8647. ".nupkg.metadata",
  8648. ".signature.p7s",
  8649. "ThirdPartyNotices.txt",
  8650. "dotnet_library_license.txt",
  8651. "lib/MonoAndroid10/_._",
  8652. "lib/MonoTouch10/_._",
  8653. "lib/net45/_._",
  8654. "lib/portable-net45+win8+wp8+wpa81/_._",
  8655. "lib/win8/_._",
  8656. "lib/wp80/_._",
  8657. "lib/wpa81/_._",
  8658. "lib/xamarinios10/_._",
  8659. "lib/xamarinmac20/_._",
  8660. "lib/xamarintvos10/_._",
  8661. "lib/xamarinwatchos10/_._",
  8662. "ref/MonoAndroid10/_._",
  8663. "ref/MonoTouch10/_._",
  8664. "ref/net45/_._",
  8665. "ref/netcore50/System.Resources.ResourceManager.dll",
  8666. "ref/netcore50/System.Resources.ResourceManager.xml",
  8667. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8668. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8669. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8670. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8671. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8672. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8673. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8674. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8675. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8676. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8677. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8678. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8679. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8680. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8681. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8682. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8683. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8684. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8685. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8686. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8687. "ref/portable-net45+win8+wp8+wpa81/_._",
  8688. "ref/win8/_._",
  8689. "ref/wp80/_._",
  8690. "ref/wpa81/_._",
  8691. "ref/xamarinios10/_._",
  8692. "ref/xamarinmac20/_._",
  8693. "ref/xamarintvos10/_._",
  8694. "ref/xamarinwatchos10/_._",
  8695. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8696. "system.resources.resourcemanager.nuspec"
  8697. ]
  8698. },
  8699. "System.Runtime/4.3.0": {
  8700. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8701. "type": "package",
  8702. "path": "system.runtime/4.3.0",
  8703. "files": [
  8704. ".nupkg.metadata",
  8705. ".signature.p7s",
  8706. "ThirdPartyNotices.txt",
  8707. "dotnet_library_license.txt",
  8708. "lib/MonoAndroid10/_._",
  8709. "lib/MonoTouch10/_._",
  8710. "lib/net45/_._",
  8711. "lib/net462/System.Runtime.dll",
  8712. "lib/portable-net45+win8+wp80+wpa81/_._",
  8713. "lib/win8/_._",
  8714. "lib/wp80/_._",
  8715. "lib/wpa81/_._",
  8716. "lib/xamarinios10/_._",
  8717. "lib/xamarinmac20/_._",
  8718. "lib/xamarintvos10/_._",
  8719. "lib/xamarinwatchos10/_._",
  8720. "ref/MonoAndroid10/_._",
  8721. "ref/MonoTouch10/_._",
  8722. "ref/net45/_._",
  8723. "ref/net462/System.Runtime.dll",
  8724. "ref/netcore50/System.Runtime.dll",
  8725. "ref/netcore50/System.Runtime.xml",
  8726. "ref/netcore50/de/System.Runtime.xml",
  8727. "ref/netcore50/es/System.Runtime.xml",
  8728. "ref/netcore50/fr/System.Runtime.xml",
  8729. "ref/netcore50/it/System.Runtime.xml",
  8730. "ref/netcore50/ja/System.Runtime.xml",
  8731. "ref/netcore50/ko/System.Runtime.xml",
  8732. "ref/netcore50/ru/System.Runtime.xml",
  8733. "ref/netcore50/zh-hans/System.Runtime.xml",
  8734. "ref/netcore50/zh-hant/System.Runtime.xml",
  8735. "ref/netstandard1.0/System.Runtime.dll",
  8736. "ref/netstandard1.0/System.Runtime.xml",
  8737. "ref/netstandard1.0/de/System.Runtime.xml",
  8738. "ref/netstandard1.0/es/System.Runtime.xml",
  8739. "ref/netstandard1.0/fr/System.Runtime.xml",
  8740. "ref/netstandard1.0/it/System.Runtime.xml",
  8741. "ref/netstandard1.0/ja/System.Runtime.xml",
  8742. "ref/netstandard1.0/ko/System.Runtime.xml",
  8743. "ref/netstandard1.0/ru/System.Runtime.xml",
  8744. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8745. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8746. "ref/netstandard1.2/System.Runtime.dll",
  8747. "ref/netstandard1.2/System.Runtime.xml",
  8748. "ref/netstandard1.2/de/System.Runtime.xml",
  8749. "ref/netstandard1.2/es/System.Runtime.xml",
  8750. "ref/netstandard1.2/fr/System.Runtime.xml",
  8751. "ref/netstandard1.2/it/System.Runtime.xml",
  8752. "ref/netstandard1.2/ja/System.Runtime.xml",
  8753. "ref/netstandard1.2/ko/System.Runtime.xml",
  8754. "ref/netstandard1.2/ru/System.Runtime.xml",
  8755. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8756. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8757. "ref/netstandard1.3/System.Runtime.dll",
  8758. "ref/netstandard1.3/System.Runtime.xml",
  8759. "ref/netstandard1.3/de/System.Runtime.xml",
  8760. "ref/netstandard1.3/es/System.Runtime.xml",
  8761. "ref/netstandard1.3/fr/System.Runtime.xml",
  8762. "ref/netstandard1.3/it/System.Runtime.xml",
  8763. "ref/netstandard1.3/ja/System.Runtime.xml",
  8764. "ref/netstandard1.3/ko/System.Runtime.xml",
  8765. "ref/netstandard1.3/ru/System.Runtime.xml",
  8766. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8767. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8768. "ref/netstandard1.5/System.Runtime.dll",
  8769. "ref/netstandard1.5/System.Runtime.xml",
  8770. "ref/netstandard1.5/de/System.Runtime.xml",
  8771. "ref/netstandard1.5/es/System.Runtime.xml",
  8772. "ref/netstandard1.5/fr/System.Runtime.xml",
  8773. "ref/netstandard1.5/it/System.Runtime.xml",
  8774. "ref/netstandard1.5/ja/System.Runtime.xml",
  8775. "ref/netstandard1.5/ko/System.Runtime.xml",
  8776. "ref/netstandard1.5/ru/System.Runtime.xml",
  8777. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8778. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8779. "ref/portable-net45+win8+wp80+wpa81/_._",
  8780. "ref/win8/_._",
  8781. "ref/wp80/_._",
  8782. "ref/wpa81/_._",
  8783. "ref/xamarinios10/_._",
  8784. "ref/xamarinmac20/_._",
  8785. "ref/xamarintvos10/_._",
  8786. "ref/xamarinwatchos10/_._",
  8787. "system.runtime.4.3.0.nupkg.sha512",
  8788. "system.runtime.nuspec"
  8789. ]
  8790. },
  8791. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8792. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8793. "type": "package",
  8794. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8795. "files": [
  8796. ".nupkg.metadata",
  8797. ".signature.p7s",
  8798. "Icon.png",
  8799. "LICENSE.TXT",
  8800. "THIRD-PARTY-NOTICES.TXT",
  8801. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8802. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8803. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8804. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8805. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8806. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8807. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8808. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8809. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8810. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8811. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8812. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8813. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8814. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8815. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8816. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8817. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8818. "system.runtime.compilerservices.unsafe.nuspec",
  8819. "useSharedDesignerContext.txt",
  8820. "version.txt"
  8821. ]
  8822. },
  8823. "System.Runtime.Extensions/4.3.0": {
  8824. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8825. "type": "package",
  8826. "path": "system.runtime.extensions/4.3.0",
  8827. "files": [
  8828. ".nupkg.metadata",
  8829. ".signature.p7s",
  8830. "ThirdPartyNotices.txt",
  8831. "dotnet_library_license.txt",
  8832. "lib/MonoAndroid10/_._",
  8833. "lib/MonoTouch10/_._",
  8834. "lib/net45/_._",
  8835. "lib/net462/System.Runtime.Extensions.dll",
  8836. "lib/portable-net45+win8+wp8+wpa81/_._",
  8837. "lib/win8/_._",
  8838. "lib/wp80/_._",
  8839. "lib/wpa81/_._",
  8840. "lib/xamarinios10/_._",
  8841. "lib/xamarinmac20/_._",
  8842. "lib/xamarintvos10/_._",
  8843. "lib/xamarinwatchos10/_._",
  8844. "ref/MonoAndroid10/_._",
  8845. "ref/MonoTouch10/_._",
  8846. "ref/net45/_._",
  8847. "ref/net462/System.Runtime.Extensions.dll",
  8848. "ref/netcore50/System.Runtime.Extensions.dll",
  8849. "ref/netcore50/System.Runtime.Extensions.xml",
  8850. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8851. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8852. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8853. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8854. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8855. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8856. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8857. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8858. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8859. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8860. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8861. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8862. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8863. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8864. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8865. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8866. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8867. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8868. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8869. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8870. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8871. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8872. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8873. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8874. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8875. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8876. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8877. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8878. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8879. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8880. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8881. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8882. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8883. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8884. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8885. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8886. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8887. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8888. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8889. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8890. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8891. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8892. "ref/portable-net45+win8+wp8+wpa81/_._",
  8893. "ref/win8/_._",
  8894. "ref/wp80/_._",
  8895. "ref/wpa81/_._",
  8896. "ref/xamarinios10/_._",
  8897. "ref/xamarinmac20/_._",
  8898. "ref/xamarintvos10/_._",
  8899. "ref/xamarinwatchos10/_._",
  8900. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8901. "system.runtime.extensions.nuspec"
  8902. ]
  8903. },
  8904. "System.Runtime.Handles/4.3.0": {
  8905. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8906. "type": "package",
  8907. "path": "system.runtime.handles/4.3.0",
  8908. "files": [
  8909. ".nupkg.metadata",
  8910. ".signature.p7s",
  8911. "ThirdPartyNotices.txt",
  8912. "dotnet_library_license.txt",
  8913. "lib/MonoAndroid10/_._",
  8914. "lib/MonoTouch10/_._",
  8915. "lib/net46/_._",
  8916. "lib/xamarinios10/_._",
  8917. "lib/xamarinmac20/_._",
  8918. "lib/xamarintvos10/_._",
  8919. "lib/xamarinwatchos10/_._",
  8920. "ref/MonoAndroid10/_._",
  8921. "ref/MonoTouch10/_._",
  8922. "ref/net46/_._",
  8923. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8924. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8925. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8926. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8927. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8928. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8929. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8930. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8931. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8932. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8933. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8934. "ref/xamarinios10/_._",
  8935. "ref/xamarinmac20/_._",
  8936. "ref/xamarintvos10/_._",
  8937. "ref/xamarinwatchos10/_._",
  8938. "system.runtime.handles.4.3.0.nupkg.sha512",
  8939. "system.runtime.handles.nuspec"
  8940. ]
  8941. },
  8942. "System.Runtime.InteropServices/4.3.0": {
  8943. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8944. "type": "package",
  8945. "path": "system.runtime.interopservices/4.3.0",
  8946. "files": [
  8947. ".nupkg.metadata",
  8948. ".signature.p7s",
  8949. "ThirdPartyNotices.txt",
  8950. "dotnet_library_license.txt",
  8951. "lib/MonoAndroid10/_._",
  8952. "lib/MonoTouch10/_._",
  8953. "lib/net45/_._",
  8954. "lib/net462/System.Runtime.InteropServices.dll",
  8955. "lib/net463/System.Runtime.InteropServices.dll",
  8956. "lib/portable-net45+win8+wpa81/_._",
  8957. "lib/win8/_._",
  8958. "lib/wpa81/_._",
  8959. "lib/xamarinios10/_._",
  8960. "lib/xamarinmac20/_._",
  8961. "lib/xamarintvos10/_._",
  8962. "lib/xamarinwatchos10/_._",
  8963. "ref/MonoAndroid10/_._",
  8964. "ref/MonoTouch10/_._",
  8965. "ref/net45/_._",
  8966. "ref/net462/System.Runtime.InteropServices.dll",
  8967. "ref/net463/System.Runtime.InteropServices.dll",
  8968. "ref/netcore50/System.Runtime.InteropServices.dll",
  8969. "ref/netcore50/System.Runtime.InteropServices.xml",
  8970. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8971. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8972. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8973. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8974. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8975. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8976. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8977. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8978. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8979. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8980. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8981. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8982. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8983. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8984. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8985. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8986. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8987. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8988. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8989. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8990. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8991. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8992. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8993. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8994. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8995. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8996. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8997. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8998. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8999. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  9000. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  9001. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  9002. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  9003. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  9004. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  9005. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  9006. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  9007. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  9008. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  9009. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  9010. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  9011. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  9012. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  9013. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  9014. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  9015. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  9016. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  9017. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  9018. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  9019. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  9020. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  9021. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  9022. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  9023. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  9024. "ref/portable-net45+win8+wpa81/_._",
  9025. "ref/win8/_._",
  9026. "ref/wpa81/_._",
  9027. "ref/xamarinios10/_._",
  9028. "ref/xamarinmac20/_._",
  9029. "ref/xamarintvos10/_._",
  9030. "ref/xamarinwatchos10/_._",
  9031. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  9032. "system.runtime.interopservices.nuspec"
  9033. ]
  9034. },
  9035. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  9036. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  9037. "type": "package",
  9038. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  9039. "files": [
  9040. ".nupkg.metadata",
  9041. ".signature.p7s",
  9042. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  9043. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  9044. "ThirdPartyNotices.txt",
  9045. "dotnet_library_license.txt",
  9046. "lib/MonoAndroid10/_._",
  9047. "lib/MonoTouch10/_._",
  9048. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9049. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9050. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  9051. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  9052. "lib/xamarinios10/_._",
  9053. "lib/xamarinmac20/_._",
  9054. "lib/xamarintvos10/_._",
  9055. "lib/xamarinwatchos10/_._",
  9056. "ref/MonoAndroid10/_._",
  9057. "ref/MonoTouch10/_._",
  9058. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9059. "ref/xamarinios10/_._",
  9060. "ref/xamarinmac20/_._",
  9061. "ref/xamarintvos10/_._",
  9062. "ref/xamarinwatchos10/_._",
  9063. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9064. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9065. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9066. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9067. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  9068. ]
  9069. },
  9070. "System.Runtime.Numerics/4.3.0": {
  9071. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  9072. "type": "package",
  9073. "path": "system.runtime.numerics/4.3.0",
  9074. "files": [
  9075. ".nupkg.metadata",
  9076. ".signature.p7s",
  9077. "ThirdPartyNotices.txt",
  9078. "dotnet_library_license.txt",
  9079. "lib/MonoAndroid10/_._",
  9080. "lib/MonoTouch10/_._",
  9081. "lib/net45/_._",
  9082. "lib/netcore50/System.Runtime.Numerics.dll",
  9083. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  9084. "lib/portable-net45+win8+wpa81/_._",
  9085. "lib/win8/_._",
  9086. "lib/wpa81/_._",
  9087. "lib/xamarinios10/_._",
  9088. "lib/xamarinmac20/_._",
  9089. "lib/xamarintvos10/_._",
  9090. "lib/xamarinwatchos10/_._",
  9091. "ref/MonoAndroid10/_._",
  9092. "ref/MonoTouch10/_._",
  9093. "ref/net45/_._",
  9094. "ref/netcore50/System.Runtime.Numerics.dll",
  9095. "ref/netcore50/System.Runtime.Numerics.xml",
  9096. "ref/netcore50/de/System.Runtime.Numerics.xml",
  9097. "ref/netcore50/es/System.Runtime.Numerics.xml",
  9098. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  9099. "ref/netcore50/it/System.Runtime.Numerics.xml",
  9100. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  9101. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  9102. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  9103. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  9104. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  9105. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  9106. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  9107. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  9108. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  9109. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  9110. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  9111. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  9112. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  9113. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  9114. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  9115. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  9116. "ref/portable-net45+win8+wpa81/_._",
  9117. "ref/win8/_._",
  9118. "ref/wpa81/_._",
  9119. "ref/xamarinios10/_._",
  9120. "ref/xamarinmac20/_._",
  9121. "ref/xamarintvos10/_._",
  9122. "ref/xamarinwatchos10/_._",
  9123. "system.runtime.numerics.4.3.0.nupkg.sha512",
  9124. "system.runtime.numerics.nuspec"
  9125. ]
  9126. },
  9127. "System.Runtime.Serialization.Primitives/4.3.0": {
  9128. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  9129. "type": "package",
  9130. "path": "system.runtime.serialization.primitives/4.3.0",
  9131. "files": [
  9132. ".nupkg.metadata",
  9133. ".signature.p7s",
  9134. "ThirdPartyNotices.txt",
  9135. "dotnet_library_license.txt",
  9136. "lib/MonoAndroid10/_._",
  9137. "lib/MonoTouch10/_._",
  9138. "lib/net45/_._",
  9139. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  9140. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9141. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9142. "lib/portable-net45+win8+wp8+wpa81/_._",
  9143. "lib/win8/_._",
  9144. "lib/wp80/_._",
  9145. "lib/wpa81/_._",
  9146. "lib/xamarinios10/_._",
  9147. "lib/xamarinmac20/_._",
  9148. "lib/xamarintvos10/_._",
  9149. "lib/xamarinwatchos10/_._",
  9150. "ref/MonoAndroid10/_._",
  9151. "ref/MonoTouch10/_._",
  9152. "ref/net45/_._",
  9153. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  9154. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  9155. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  9156. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  9157. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  9158. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  9159. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  9160. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  9161. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  9162. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  9163. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9164. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9165. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  9166. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  9167. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  9168. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  9169. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  9170. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  9171. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  9172. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  9173. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  9174. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9175. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9176. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9177. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  9178. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  9179. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  9180. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  9181. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  9182. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  9183. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  9184. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  9185. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9186. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9187. "ref/portable-net45+win8+wp8+wpa81/_._",
  9188. "ref/win8/_._",
  9189. "ref/wp80/_._",
  9190. "ref/wpa81/_._",
  9191. "ref/xamarinios10/_._",
  9192. "ref/xamarinmac20/_._",
  9193. "ref/xamarintvos10/_._",
  9194. "ref/xamarinwatchos10/_._",
  9195. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9196. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  9197. "system.runtime.serialization.primitives.nuspec"
  9198. ]
  9199. },
  9200. "System.Security.AccessControl/4.7.0": {
  9201. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  9202. "type": "package",
  9203. "path": "system.security.accesscontrol/4.7.0",
  9204. "files": [
  9205. ".nupkg.metadata",
  9206. ".signature.p7s",
  9207. "LICENSE.TXT",
  9208. "THIRD-PARTY-NOTICES.TXT",
  9209. "lib/net46/System.Security.AccessControl.dll",
  9210. "lib/net461/System.Security.AccessControl.dll",
  9211. "lib/net461/System.Security.AccessControl.xml",
  9212. "lib/netstandard1.3/System.Security.AccessControl.dll",
  9213. "lib/netstandard2.0/System.Security.AccessControl.dll",
  9214. "lib/netstandard2.0/System.Security.AccessControl.xml",
  9215. "lib/uap10.0.16299/_._",
  9216. "ref/net46/System.Security.AccessControl.dll",
  9217. "ref/net461/System.Security.AccessControl.dll",
  9218. "ref/net461/System.Security.AccessControl.xml",
  9219. "ref/netstandard1.3/System.Security.AccessControl.dll",
  9220. "ref/netstandard1.3/System.Security.AccessControl.xml",
  9221. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  9222. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  9223. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  9224. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  9225. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  9226. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  9227. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  9228. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  9229. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  9230. "ref/netstandard2.0/System.Security.AccessControl.dll",
  9231. "ref/netstandard2.0/System.Security.AccessControl.xml",
  9232. "ref/uap10.0.16299/_._",
  9233. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  9234. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  9235. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  9236. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  9237. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  9238. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  9239. "runtimes/win/lib/uap10.0.16299/_._",
  9240. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  9241. "system.security.accesscontrol.nuspec",
  9242. "useSharedDesignerContext.txt",
  9243. "version.txt"
  9244. ]
  9245. },
  9246. "System.Security.Claims/4.3.0": {
  9247. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  9248. "type": "package",
  9249. "path": "system.security.claims/4.3.0",
  9250. "files": [
  9251. ".nupkg.metadata",
  9252. ".signature.p7s",
  9253. "ThirdPartyNotices.txt",
  9254. "dotnet_library_license.txt",
  9255. "lib/MonoAndroid10/_._",
  9256. "lib/MonoTouch10/_._",
  9257. "lib/net46/System.Security.Claims.dll",
  9258. "lib/netstandard1.3/System.Security.Claims.dll",
  9259. "lib/xamarinios10/_._",
  9260. "lib/xamarinmac20/_._",
  9261. "lib/xamarintvos10/_._",
  9262. "lib/xamarinwatchos10/_._",
  9263. "ref/MonoAndroid10/_._",
  9264. "ref/MonoTouch10/_._",
  9265. "ref/net46/System.Security.Claims.dll",
  9266. "ref/netstandard1.3/System.Security.Claims.dll",
  9267. "ref/netstandard1.3/System.Security.Claims.xml",
  9268. "ref/netstandard1.3/de/System.Security.Claims.xml",
  9269. "ref/netstandard1.3/es/System.Security.Claims.xml",
  9270. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  9271. "ref/netstandard1.3/it/System.Security.Claims.xml",
  9272. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  9273. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  9274. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  9275. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  9276. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  9277. "ref/xamarinios10/_._",
  9278. "ref/xamarinmac20/_._",
  9279. "ref/xamarintvos10/_._",
  9280. "ref/xamarinwatchos10/_._",
  9281. "system.security.claims.4.3.0.nupkg.sha512",
  9282. "system.security.claims.nuspec"
  9283. ]
  9284. },
  9285. "System.Security.Cryptography.Algorithms/4.3.0": {
  9286. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  9287. "type": "package",
  9288. "path": "system.security.cryptography.algorithms/4.3.0",
  9289. "files": [
  9290. ".nupkg.metadata",
  9291. ".signature.p7s",
  9292. "ThirdPartyNotices.txt",
  9293. "dotnet_library_license.txt",
  9294. "lib/MonoAndroid10/_._",
  9295. "lib/MonoTouch10/_._",
  9296. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9297. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9298. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9299. "lib/xamarinios10/_._",
  9300. "lib/xamarinmac20/_._",
  9301. "lib/xamarintvos10/_._",
  9302. "lib/xamarinwatchos10/_._",
  9303. "ref/MonoAndroid10/_._",
  9304. "ref/MonoTouch10/_._",
  9305. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9306. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9307. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9308. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9309. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9310. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9311. "ref/xamarinios10/_._",
  9312. "ref/xamarinmac20/_._",
  9313. "ref/xamarintvos10/_._",
  9314. "ref/xamarinwatchos10/_._",
  9315. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9316. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9317. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9318. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9319. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9320. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9321. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9322. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  9323. "system.security.cryptography.algorithms.nuspec"
  9324. ]
  9325. },
  9326. "System.Security.Cryptography.Cng/4.3.0": {
  9327. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  9328. "type": "package",
  9329. "path": "system.security.cryptography.cng/4.3.0",
  9330. "files": [
  9331. ".nupkg.metadata",
  9332. ".signature.p7s",
  9333. "ThirdPartyNotices.txt",
  9334. "dotnet_library_license.txt",
  9335. "lib/net46/System.Security.Cryptography.Cng.dll",
  9336. "lib/net461/System.Security.Cryptography.Cng.dll",
  9337. "lib/net463/System.Security.Cryptography.Cng.dll",
  9338. "ref/net46/System.Security.Cryptography.Cng.dll",
  9339. "ref/net461/System.Security.Cryptography.Cng.dll",
  9340. "ref/net463/System.Security.Cryptography.Cng.dll",
  9341. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9342. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9343. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9344. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9345. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9346. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9347. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  9348. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9349. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9350. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  9351. "system.security.cryptography.cng.nuspec"
  9352. ]
  9353. },
  9354. "System.Security.Cryptography.Csp/4.3.0": {
  9355. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9356. "type": "package",
  9357. "path": "system.security.cryptography.csp/4.3.0",
  9358. "files": [
  9359. ".nupkg.metadata",
  9360. ".signature.p7s",
  9361. "ThirdPartyNotices.txt",
  9362. "dotnet_library_license.txt",
  9363. "lib/MonoAndroid10/_._",
  9364. "lib/MonoTouch10/_._",
  9365. "lib/net46/System.Security.Cryptography.Csp.dll",
  9366. "lib/xamarinios10/_._",
  9367. "lib/xamarinmac20/_._",
  9368. "lib/xamarintvos10/_._",
  9369. "lib/xamarinwatchos10/_._",
  9370. "ref/MonoAndroid10/_._",
  9371. "ref/MonoTouch10/_._",
  9372. "ref/net46/System.Security.Cryptography.Csp.dll",
  9373. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9374. "ref/xamarinios10/_._",
  9375. "ref/xamarinmac20/_._",
  9376. "ref/xamarintvos10/_._",
  9377. "ref/xamarinwatchos10/_._",
  9378. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9379. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9380. "runtimes/win/lib/netcore50/_._",
  9381. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9382. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9383. "system.security.cryptography.csp.nuspec"
  9384. ]
  9385. },
  9386. "System.Security.Cryptography.Encoding/4.3.0": {
  9387. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9388. "type": "package",
  9389. "path": "system.security.cryptography.encoding/4.3.0",
  9390. "files": [
  9391. ".nupkg.metadata",
  9392. ".signature.p7s",
  9393. "ThirdPartyNotices.txt",
  9394. "dotnet_library_license.txt",
  9395. "lib/MonoAndroid10/_._",
  9396. "lib/MonoTouch10/_._",
  9397. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9398. "lib/xamarinios10/_._",
  9399. "lib/xamarinmac20/_._",
  9400. "lib/xamarintvos10/_._",
  9401. "lib/xamarinwatchos10/_._",
  9402. "ref/MonoAndroid10/_._",
  9403. "ref/MonoTouch10/_._",
  9404. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9405. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9406. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9407. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9408. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9409. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9410. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9411. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9412. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9413. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9414. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9415. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9416. "ref/xamarinios10/_._",
  9417. "ref/xamarinmac20/_._",
  9418. "ref/xamarintvos10/_._",
  9419. "ref/xamarinwatchos10/_._",
  9420. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9421. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9422. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9423. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9424. "system.security.cryptography.encoding.nuspec"
  9425. ]
  9426. },
  9427. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9428. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9429. "type": "package",
  9430. "path": "system.security.cryptography.openssl/4.3.0",
  9431. "files": [
  9432. ".nupkg.metadata",
  9433. ".signature.p7s",
  9434. "ThirdPartyNotices.txt",
  9435. "dotnet_library_license.txt",
  9436. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9437. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9438. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9439. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9440. "system.security.cryptography.openssl.nuspec"
  9441. ]
  9442. },
  9443. "System.Security.Cryptography.Primitives/4.3.0": {
  9444. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9445. "type": "package",
  9446. "path": "system.security.cryptography.primitives/4.3.0",
  9447. "files": [
  9448. ".nupkg.metadata",
  9449. ".signature.p7s",
  9450. "ThirdPartyNotices.txt",
  9451. "dotnet_library_license.txt",
  9452. "lib/MonoAndroid10/_._",
  9453. "lib/MonoTouch10/_._",
  9454. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9455. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9456. "lib/xamarinios10/_._",
  9457. "lib/xamarinmac20/_._",
  9458. "lib/xamarintvos10/_._",
  9459. "lib/xamarinwatchos10/_._",
  9460. "ref/MonoAndroid10/_._",
  9461. "ref/MonoTouch10/_._",
  9462. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9463. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9464. "ref/xamarinios10/_._",
  9465. "ref/xamarinmac20/_._",
  9466. "ref/xamarintvos10/_._",
  9467. "ref/xamarinwatchos10/_._",
  9468. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9469. "system.security.cryptography.primitives.nuspec"
  9470. ]
  9471. },
  9472. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9473. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9474. "type": "package",
  9475. "path": "system.security.cryptography.protecteddata/4.7.0",
  9476. "files": [
  9477. ".nupkg.metadata",
  9478. ".signature.p7s",
  9479. "LICENSE.TXT",
  9480. "THIRD-PARTY-NOTICES.TXT",
  9481. "lib/MonoAndroid10/_._",
  9482. "lib/MonoTouch10/_._",
  9483. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9484. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9485. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9486. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9487. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9488. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9489. "lib/xamarinios10/_._",
  9490. "lib/xamarinmac20/_._",
  9491. "lib/xamarintvos10/_._",
  9492. "lib/xamarinwatchos10/_._",
  9493. "ref/MonoAndroid10/_._",
  9494. "ref/MonoTouch10/_._",
  9495. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9496. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9497. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9498. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9499. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9500. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9501. "ref/xamarinios10/_._",
  9502. "ref/xamarinmac20/_._",
  9503. "ref/xamarintvos10/_._",
  9504. "ref/xamarinwatchos10/_._",
  9505. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9506. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9507. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9508. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9509. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9510. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9511. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9512. "system.security.cryptography.protecteddata.nuspec",
  9513. "useSharedDesignerContext.txt",
  9514. "version.txt"
  9515. ]
  9516. },
  9517. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9518. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9519. "type": "package",
  9520. "path": "system.security.cryptography.x509certificates/4.3.0",
  9521. "files": [
  9522. ".nupkg.metadata",
  9523. ".signature.p7s",
  9524. "ThirdPartyNotices.txt",
  9525. "dotnet_library_license.txt",
  9526. "lib/MonoAndroid10/_._",
  9527. "lib/MonoTouch10/_._",
  9528. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9529. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9530. "lib/xamarinios10/_._",
  9531. "lib/xamarinmac20/_._",
  9532. "lib/xamarintvos10/_._",
  9533. "lib/xamarinwatchos10/_._",
  9534. "ref/MonoAndroid10/_._",
  9535. "ref/MonoTouch10/_._",
  9536. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9537. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9538. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9539. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9540. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9541. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9542. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9543. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9544. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9545. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9546. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9547. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9548. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9549. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9550. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9551. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9552. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9553. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9554. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9555. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9556. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9557. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9558. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9559. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9560. "ref/xamarinios10/_._",
  9561. "ref/xamarinmac20/_._",
  9562. "ref/xamarintvos10/_._",
  9563. "ref/xamarinwatchos10/_._",
  9564. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9565. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9566. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9567. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9568. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9569. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9570. "system.security.cryptography.x509certificates.nuspec"
  9571. ]
  9572. },
  9573. "System.Security.Permissions/4.7.0": {
  9574. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9575. "type": "package",
  9576. "path": "system.security.permissions/4.7.0",
  9577. "files": [
  9578. ".nupkg.metadata",
  9579. ".signature.p7s",
  9580. "LICENSE.TXT",
  9581. "THIRD-PARTY-NOTICES.TXT",
  9582. "lib/net461/System.Security.Permissions.dll",
  9583. "lib/net461/System.Security.Permissions.xml",
  9584. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9585. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9586. "lib/netstandard2.0/System.Security.Permissions.dll",
  9587. "lib/netstandard2.0/System.Security.Permissions.xml",
  9588. "ref/net461/System.Security.Permissions.dll",
  9589. "ref/net461/System.Security.Permissions.xml",
  9590. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9591. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9592. "ref/netstandard2.0/System.Security.Permissions.dll",
  9593. "ref/netstandard2.0/System.Security.Permissions.xml",
  9594. "system.security.permissions.4.7.0.nupkg.sha512",
  9595. "system.security.permissions.nuspec",
  9596. "useSharedDesignerContext.txt",
  9597. "version.txt"
  9598. ]
  9599. },
  9600. "System.Security.Principal/4.3.0": {
  9601. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9602. "type": "package",
  9603. "path": "system.security.principal/4.3.0",
  9604. "files": [
  9605. ".nupkg.metadata",
  9606. ".signature.p7s",
  9607. "ThirdPartyNotices.txt",
  9608. "dotnet_library_license.txt",
  9609. "lib/MonoAndroid10/_._",
  9610. "lib/MonoTouch10/_._",
  9611. "lib/net45/_._",
  9612. "lib/netcore50/System.Security.Principal.dll",
  9613. "lib/netstandard1.0/System.Security.Principal.dll",
  9614. "lib/portable-net45+win8+wp8+wpa81/_._",
  9615. "lib/win8/_._",
  9616. "lib/wp80/_._",
  9617. "lib/wpa81/_._",
  9618. "lib/xamarinios10/_._",
  9619. "lib/xamarinmac20/_._",
  9620. "lib/xamarintvos10/_._",
  9621. "lib/xamarinwatchos10/_._",
  9622. "ref/MonoAndroid10/_._",
  9623. "ref/MonoTouch10/_._",
  9624. "ref/net45/_._",
  9625. "ref/netcore50/System.Security.Principal.dll",
  9626. "ref/netcore50/System.Security.Principal.xml",
  9627. "ref/netcore50/de/System.Security.Principal.xml",
  9628. "ref/netcore50/es/System.Security.Principal.xml",
  9629. "ref/netcore50/fr/System.Security.Principal.xml",
  9630. "ref/netcore50/it/System.Security.Principal.xml",
  9631. "ref/netcore50/ja/System.Security.Principal.xml",
  9632. "ref/netcore50/ko/System.Security.Principal.xml",
  9633. "ref/netcore50/ru/System.Security.Principal.xml",
  9634. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9635. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9636. "ref/netstandard1.0/System.Security.Principal.dll",
  9637. "ref/netstandard1.0/System.Security.Principal.xml",
  9638. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9639. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9640. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9641. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9642. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9643. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9644. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9645. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9646. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9647. "ref/portable-net45+win8+wp8+wpa81/_._",
  9648. "ref/win8/_._",
  9649. "ref/wp80/_._",
  9650. "ref/wpa81/_._",
  9651. "ref/xamarinios10/_._",
  9652. "ref/xamarinmac20/_._",
  9653. "ref/xamarintvos10/_._",
  9654. "ref/xamarinwatchos10/_._",
  9655. "system.security.principal.4.3.0.nupkg.sha512",
  9656. "system.security.principal.nuspec"
  9657. ]
  9658. },
  9659. "System.Security.Principal.Windows/4.7.0": {
  9660. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9661. "type": "package",
  9662. "path": "system.security.principal.windows/4.7.0",
  9663. "files": [
  9664. ".nupkg.metadata",
  9665. ".signature.p7s",
  9666. "LICENSE.TXT",
  9667. "THIRD-PARTY-NOTICES.TXT",
  9668. "lib/net46/System.Security.Principal.Windows.dll",
  9669. "lib/net461/System.Security.Principal.Windows.dll",
  9670. "lib/net461/System.Security.Principal.Windows.xml",
  9671. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9672. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9673. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9674. "lib/uap10.0.16299/_._",
  9675. "ref/net46/System.Security.Principal.Windows.dll",
  9676. "ref/net461/System.Security.Principal.Windows.dll",
  9677. "ref/net461/System.Security.Principal.Windows.xml",
  9678. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9679. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9680. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9681. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9682. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9683. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9684. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9685. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9686. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9687. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9688. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9689. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9690. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9691. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9692. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9693. "ref/uap10.0.16299/_._",
  9694. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9695. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9696. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9697. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9698. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9699. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9700. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9701. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9702. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9703. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9704. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9705. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9706. "runtimes/win/lib/uap10.0.16299/_._",
  9707. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9708. "system.security.principal.windows.nuspec",
  9709. "useSharedDesignerContext.txt",
  9710. "version.txt"
  9711. ]
  9712. },
  9713. "System.Text.Encoding/4.3.0": {
  9714. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9715. "type": "package",
  9716. "path": "system.text.encoding/4.3.0",
  9717. "files": [
  9718. ".nupkg.metadata",
  9719. ".signature.p7s",
  9720. "ThirdPartyNotices.txt",
  9721. "dotnet_library_license.txt",
  9722. "lib/MonoAndroid10/_._",
  9723. "lib/MonoTouch10/_._",
  9724. "lib/net45/_._",
  9725. "lib/portable-net45+win8+wp8+wpa81/_._",
  9726. "lib/win8/_._",
  9727. "lib/wp80/_._",
  9728. "lib/wpa81/_._",
  9729. "lib/xamarinios10/_._",
  9730. "lib/xamarinmac20/_._",
  9731. "lib/xamarintvos10/_._",
  9732. "lib/xamarinwatchos10/_._",
  9733. "ref/MonoAndroid10/_._",
  9734. "ref/MonoTouch10/_._",
  9735. "ref/net45/_._",
  9736. "ref/netcore50/System.Text.Encoding.dll",
  9737. "ref/netcore50/System.Text.Encoding.xml",
  9738. "ref/netcore50/de/System.Text.Encoding.xml",
  9739. "ref/netcore50/es/System.Text.Encoding.xml",
  9740. "ref/netcore50/fr/System.Text.Encoding.xml",
  9741. "ref/netcore50/it/System.Text.Encoding.xml",
  9742. "ref/netcore50/ja/System.Text.Encoding.xml",
  9743. "ref/netcore50/ko/System.Text.Encoding.xml",
  9744. "ref/netcore50/ru/System.Text.Encoding.xml",
  9745. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9746. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9747. "ref/netstandard1.0/System.Text.Encoding.dll",
  9748. "ref/netstandard1.0/System.Text.Encoding.xml",
  9749. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9750. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9751. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9752. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9753. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9754. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9755. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9756. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9757. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9758. "ref/netstandard1.3/System.Text.Encoding.dll",
  9759. "ref/netstandard1.3/System.Text.Encoding.xml",
  9760. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9761. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9762. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9763. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9764. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9765. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9766. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9767. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9768. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9769. "ref/portable-net45+win8+wp8+wpa81/_._",
  9770. "ref/win8/_._",
  9771. "ref/wp80/_._",
  9772. "ref/wpa81/_._",
  9773. "ref/xamarinios10/_._",
  9774. "ref/xamarinmac20/_._",
  9775. "ref/xamarintvos10/_._",
  9776. "ref/xamarinwatchos10/_._",
  9777. "system.text.encoding.4.3.0.nupkg.sha512",
  9778. "system.text.encoding.nuspec"
  9779. ]
  9780. },
  9781. "System.Text.Encoding.CodePages/5.0.0": {
  9782. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9783. "type": "package",
  9784. "path": "system.text.encoding.codepages/5.0.0",
  9785. "files": [
  9786. ".nupkg.metadata",
  9787. ".signature.p7s",
  9788. "Icon.png",
  9789. "LICENSE.TXT",
  9790. "THIRD-PARTY-NOTICES.TXT",
  9791. "lib/MonoAndroid10/_._",
  9792. "lib/MonoTouch10/_._",
  9793. "lib/net46/System.Text.Encoding.CodePages.dll",
  9794. "lib/net461/System.Text.Encoding.CodePages.dll",
  9795. "lib/net461/System.Text.Encoding.CodePages.xml",
  9796. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9797. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9798. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9799. "lib/xamarinios10/_._",
  9800. "lib/xamarinmac20/_._",
  9801. "lib/xamarintvos10/_._",
  9802. "lib/xamarinwatchos10/_._",
  9803. "ref/MonoAndroid10/_._",
  9804. "ref/MonoTouch10/_._",
  9805. "ref/xamarinios10/_._",
  9806. "ref/xamarinmac20/_._",
  9807. "ref/xamarintvos10/_._",
  9808. "ref/xamarinwatchos10/_._",
  9809. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9810. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9811. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9812. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9813. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9814. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9815. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9816. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9817. "system.text.encoding.codepages.nuspec",
  9818. "useSharedDesignerContext.txt",
  9819. "version.txt"
  9820. ]
  9821. },
  9822. "System.Text.Encoding.Extensions/4.3.0": {
  9823. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9824. "type": "package",
  9825. "path": "system.text.encoding.extensions/4.3.0",
  9826. "files": [
  9827. ".nupkg.metadata",
  9828. ".signature.p7s",
  9829. "ThirdPartyNotices.txt",
  9830. "dotnet_library_license.txt",
  9831. "lib/MonoAndroid10/_._",
  9832. "lib/MonoTouch10/_._",
  9833. "lib/net45/_._",
  9834. "lib/portable-net45+win8+wp8+wpa81/_._",
  9835. "lib/win8/_._",
  9836. "lib/wp80/_._",
  9837. "lib/wpa81/_._",
  9838. "lib/xamarinios10/_._",
  9839. "lib/xamarinmac20/_._",
  9840. "lib/xamarintvos10/_._",
  9841. "lib/xamarinwatchos10/_._",
  9842. "ref/MonoAndroid10/_._",
  9843. "ref/MonoTouch10/_._",
  9844. "ref/net45/_._",
  9845. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9846. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9847. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9848. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9849. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9850. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9851. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9852. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9853. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9854. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9855. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9856. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9857. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9858. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9859. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9860. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9861. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9862. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9863. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9864. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9865. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9866. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9867. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9868. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9869. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9870. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9871. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9872. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9873. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9874. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9875. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9876. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9877. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9878. "ref/portable-net45+win8+wp8+wpa81/_._",
  9879. "ref/win8/_._",
  9880. "ref/wp80/_._",
  9881. "ref/wpa81/_._",
  9882. "ref/xamarinios10/_._",
  9883. "ref/xamarinmac20/_._",
  9884. "ref/xamarintvos10/_._",
  9885. "ref/xamarinwatchos10/_._",
  9886. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9887. "system.text.encoding.extensions.nuspec"
  9888. ]
  9889. },
  9890. "System.Text.Encodings.Web/4.7.0": {
  9891. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  9892. "type": "package",
  9893. "path": "system.text.encodings.web/4.7.0",
  9894. "files": [
  9895. ".nupkg.metadata",
  9896. ".signature.p7s",
  9897. "LICENSE.TXT",
  9898. "THIRD-PARTY-NOTICES.TXT",
  9899. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9900. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9901. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9902. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9903. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  9904. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  9905. "system.text.encodings.web.4.7.0.nupkg.sha512",
  9906. "system.text.encodings.web.nuspec",
  9907. "useSharedDesignerContext.txt",
  9908. "version.txt"
  9909. ]
  9910. },
  9911. "System.Text.RegularExpressions/4.3.0": {
  9912. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9913. "type": "package",
  9914. "path": "system.text.regularexpressions/4.3.0",
  9915. "files": [
  9916. ".nupkg.metadata",
  9917. ".signature.p7s",
  9918. "ThirdPartyNotices.txt",
  9919. "dotnet_library_license.txt",
  9920. "lib/MonoAndroid10/_._",
  9921. "lib/MonoTouch10/_._",
  9922. "lib/net45/_._",
  9923. "lib/net463/System.Text.RegularExpressions.dll",
  9924. "lib/netcore50/System.Text.RegularExpressions.dll",
  9925. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9926. "lib/portable-net45+win8+wp8+wpa81/_._",
  9927. "lib/win8/_._",
  9928. "lib/wp80/_._",
  9929. "lib/wpa81/_._",
  9930. "lib/xamarinios10/_._",
  9931. "lib/xamarinmac20/_._",
  9932. "lib/xamarintvos10/_._",
  9933. "lib/xamarinwatchos10/_._",
  9934. "ref/MonoAndroid10/_._",
  9935. "ref/MonoTouch10/_._",
  9936. "ref/net45/_._",
  9937. "ref/net463/System.Text.RegularExpressions.dll",
  9938. "ref/netcore50/System.Text.RegularExpressions.dll",
  9939. "ref/netcore50/System.Text.RegularExpressions.xml",
  9940. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9941. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9942. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9943. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9944. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9945. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9946. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9947. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9948. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9949. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9950. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9951. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9952. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9953. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9954. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9955. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9956. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9957. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9958. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9959. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9960. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9961. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9962. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9963. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9964. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9965. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9966. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9967. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9968. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9969. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9970. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9971. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9972. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9973. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9974. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9975. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9976. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9977. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9978. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9979. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9980. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9981. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9982. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9983. "ref/portable-net45+win8+wp8+wpa81/_._",
  9984. "ref/win8/_._",
  9985. "ref/wp80/_._",
  9986. "ref/wpa81/_._",
  9987. "ref/xamarinios10/_._",
  9988. "ref/xamarinmac20/_._",
  9989. "ref/xamarintvos10/_._",
  9990. "ref/xamarinwatchos10/_._",
  9991. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9992. "system.text.regularexpressions.nuspec"
  9993. ]
  9994. },
  9995. "System.Threading/4.3.0": {
  9996. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9997. "type": "package",
  9998. "path": "system.threading/4.3.0",
  9999. "files": [
  10000. ".nupkg.metadata",
  10001. ".signature.p7s",
  10002. "ThirdPartyNotices.txt",
  10003. "dotnet_library_license.txt",
  10004. "lib/MonoAndroid10/_._",
  10005. "lib/MonoTouch10/_._",
  10006. "lib/net45/_._",
  10007. "lib/netcore50/System.Threading.dll",
  10008. "lib/netstandard1.3/System.Threading.dll",
  10009. "lib/portable-net45+win8+wp8+wpa81/_._",
  10010. "lib/win8/_._",
  10011. "lib/wp80/_._",
  10012. "lib/wpa81/_._",
  10013. "lib/xamarinios10/_._",
  10014. "lib/xamarinmac20/_._",
  10015. "lib/xamarintvos10/_._",
  10016. "lib/xamarinwatchos10/_._",
  10017. "ref/MonoAndroid10/_._",
  10018. "ref/MonoTouch10/_._",
  10019. "ref/net45/_._",
  10020. "ref/netcore50/System.Threading.dll",
  10021. "ref/netcore50/System.Threading.xml",
  10022. "ref/netcore50/de/System.Threading.xml",
  10023. "ref/netcore50/es/System.Threading.xml",
  10024. "ref/netcore50/fr/System.Threading.xml",
  10025. "ref/netcore50/it/System.Threading.xml",
  10026. "ref/netcore50/ja/System.Threading.xml",
  10027. "ref/netcore50/ko/System.Threading.xml",
  10028. "ref/netcore50/ru/System.Threading.xml",
  10029. "ref/netcore50/zh-hans/System.Threading.xml",
  10030. "ref/netcore50/zh-hant/System.Threading.xml",
  10031. "ref/netstandard1.0/System.Threading.dll",
  10032. "ref/netstandard1.0/System.Threading.xml",
  10033. "ref/netstandard1.0/de/System.Threading.xml",
  10034. "ref/netstandard1.0/es/System.Threading.xml",
  10035. "ref/netstandard1.0/fr/System.Threading.xml",
  10036. "ref/netstandard1.0/it/System.Threading.xml",
  10037. "ref/netstandard1.0/ja/System.Threading.xml",
  10038. "ref/netstandard1.0/ko/System.Threading.xml",
  10039. "ref/netstandard1.0/ru/System.Threading.xml",
  10040. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  10041. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  10042. "ref/netstandard1.3/System.Threading.dll",
  10043. "ref/netstandard1.3/System.Threading.xml",
  10044. "ref/netstandard1.3/de/System.Threading.xml",
  10045. "ref/netstandard1.3/es/System.Threading.xml",
  10046. "ref/netstandard1.3/fr/System.Threading.xml",
  10047. "ref/netstandard1.3/it/System.Threading.xml",
  10048. "ref/netstandard1.3/ja/System.Threading.xml",
  10049. "ref/netstandard1.3/ko/System.Threading.xml",
  10050. "ref/netstandard1.3/ru/System.Threading.xml",
  10051. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  10052. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  10053. "ref/portable-net45+win8+wp8+wpa81/_._",
  10054. "ref/win8/_._",
  10055. "ref/wp80/_._",
  10056. "ref/wpa81/_._",
  10057. "ref/xamarinios10/_._",
  10058. "ref/xamarinmac20/_._",
  10059. "ref/xamarintvos10/_._",
  10060. "ref/xamarinwatchos10/_._",
  10061. "runtimes/aot/lib/netcore50/System.Threading.dll",
  10062. "system.threading.4.3.0.nupkg.sha512",
  10063. "system.threading.nuspec"
  10064. ]
  10065. },
  10066. "System.Threading.Channels/7.0.0": {
  10067. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  10068. "type": "package",
  10069. "path": "system.threading.channels/7.0.0",
  10070. "files": [
  10071. ".nupkg.metadata",
  10072. ".signature.p7s",
  10073. "Icon.png",
  10074. "LICENSE.TXT",
  10075. "THIRD-PARTY-NOTICES.TXT",
  10076. "buildTransitive/net461/System.Threading.Channels.targets",
  10077. "buildTransitive/net462/_._",
  10078. "buildTransitive/net6.0/_._",
  10079. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  10080. "lib/net462/System.Threading.Channels.dll",
  10081. "lib/net462/System.Threading.Channels.xml",
  10082. "lib/net6.0/System.Threading.Channels.dll",
  10083. "lib/net6.0/System.Threading.Channels.xml",
  10084. "lib/net7.0/System.Threading.Channels.dll",
  10085. "lib/net7.0/System.Threading.Channels.xml",
  10086. "lib/netstandard2.0/System.Threading.Channels.dll",
  10087. "lib/netstandard2.0/System.Threading.Channels.xml",
  10088. "lib/netstandard2.1/System.Threading.Channels.dll",
  10089. "lib/netstandard2.1/System.Threading.Channels.xml",
  10090. "system.threading.channels.7.0.0.nupkg.sha512",
  10091. "system.threading.channels.nuspec",
  10092. "useSharedDesignerContext.txt"
  10093. ]
  10094. },
  10095. "System.Threading.Tasks/4.3.0": {
  10096. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  10097. "type": "package",
  10098. "path": "system.threading.tasks/4.3.0",
  10099. "files": [
  10100. ".nupkg.metadata",
  10101. ".signature.p7s",
  10102. "ThirdPartyNotices.txt",
  10103. "dotnet_library_license.txt",
  10104. "lib/MonoAndroid10/_._",
  10105. "lib/MonoTouch10/_._",
  10106. "lib/net45/_._",
  10107. "lib/portable-net45+win8+wp8+wpa81/_._",
  10108. "lib/win8/_._",
  10109. "lib/wp80/_._",
  10110. "lib/wpa81/_._",
  10111. "lib/xamarinios10/_._",
  10112. "lib/xamarinmac20/_._",
  10113. "lib/xamarintvos10/_._",
  10114. "lib/xamarinwatchos10/_._",
  10115. "ref/MonoAndroid10/_._",
  10116. "ref/MonoTouch10/_._",
  10117. "ref/net45/_._",
  10118. "ref/netcore50/System.Threading.Tasks.dll",
  10119. "ref/netcore50/System.Threading.Tasks.xml",
  10120. "ref/netcore50/de/System.Threading.Tasks.xml",
  10121. "ref/netcore50/es/System.Threading.Tasks.xml",
  10122. "ref/netcore50/fr/System.Threading.Tasks.xml",
  10123. "ref/netcore50/it/System.Threading.Tasks.xml",
  10124. "ref/netcore50/ja/System.Threading.Tasks.xml",
  10125. "ref/netcore50/ko/System.Threading.Tasks.xml",
  10126. "ref/netcore50/ru/System.Threading.Tasks.xml",
  10127. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  10128. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  10129. "ref/netstandard1.0/System.Threading.Tasks.dll",
  10130. "ref/netstandard1.0/System.Threading.Tasks.xml",
  10131. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  10132. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  10133. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  10134. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  10135. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  10136. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  10137. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  10138. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  10139. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  10140. "ref/netstandard1.3/System.Threading.Tasks.dll",
  10141. "ref/netstandard1.3/System.Threading.Tasks.xml",
  10142. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  10143. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  10144. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  10145. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  10146. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  10147. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  10148. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  10149. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  10150. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  10151. "ref/portable-net45+win8+wp8+wpa81/_._",
  10152. "ref/win8/_._",
  10153. "ref/wp80/_._",
  10154. "ref/wpa81/_._",
  10155. "ref/xamarinios10/_._",
  10156. "ref/xamarinmac20/_._",
  10157. "ref/xamarintvos10/_._",
  10158. "ref/xamarinwatchos10/_._",
  10159. "system.threading.tasks.4.3.0.nupkg.sha512",
  10160. "system.threading.tasks.nuspec"
  10161. ]
  10162. },
  10163. "System.Threading.Tasks.Extensions/4.3.0": {
  10164. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  10165. "type": "package",
  10166. "path": "system.threading.tasks.extensions/4.3.0",
  10167. "files": [
  10168. ".nupkg.metadata",
  10169. ".signature.p7s",
  10170. "ThirdPartyNotices.txt",
  10171. "dotnet_library_license.txt",
  10172. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  10173. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  10174. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  10175. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  10176. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  10177. "system.threading.tasks.extensions.nuspec"
  10178. ]
  10179. },
  10180. "System.Threading.Thread/4.3.0": {
  10181. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  10182. "type": "package",
  10183. "path": "system.threading.thread/4.3.0",
  10184. "files": [
  10185. ".nupkg.metadata",
  10186. ".signature.p7s",
  10187. "ThirdPartyNotices.txt",
  10188. "dotnet_library_license.txt",
  10189. "lib/MonoAndroid10/_._",
  10190. "lib/MonoTouch10/_._",
  10191. "lib/net46/System.Threading.Thread.dll",
  10192. "lib/netcore50/_._",
  10193. "lib/netstandard1.3/System.Threading.Thread.dll",
  10194. "lib/xamarinios10/_._",
  10195. "lib/xamarinmac20/_._",
  10196. "lib/xamarintvos10/_._",
  10197. "lib/xamarinwatchos10/_._",
  10198. "ref/MonoAndroid10/_._",
  10199. "ref/MonoTouch10/_._",
  10200. "ref/net46/System.Threading.Thread.dll",
  10201. "ref/netstandard1.3/System.Threading.Thread.dll",
  10202. "ref/netstandard1.3/System.Threading.Thread.xml",
  10203. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  10204. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  10205. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  10206. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  10207. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  10208. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  10209. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  10210. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  10211. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  10212. "ref/xamarinios10/_._",
  10213. "ref/xamarinmac20/_._",
  10214. "ref/xamarintvos10/_._",
  10215. "ref/xamarinwatchos10/_._",
  10216. "system.threading.thread.4.3.0.nupkg.sha512",
  10217. "system.threading.thread.nuspec"
  10218. ]
  10219. },
  10220. "System.Threading.ThreadPool/4.3.0": {
  10221. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  10222. "type": "package",
  10223. "path": "system.threading.threadpool/4.3.0",
  10224. "files": [
  10225. ".nupkg.metadata",
  10226. ".signature.p7s",
  10227. "ThirdPartyNotices.txt",
  10228. "dotnet_library_license.txt",
  10229. "lib/MonoAndroid10/_._",
  10230. "lib/MonoTouch10/_._",
  10231. "lib/net46/System.Threading.ThreadPool.dll",
  10232. "lib/netcore50/_._",
  10233. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  10234. "lib/xamarinios10/_._",
  10235. "lib/xamarinmac20/_._",
  10236. "lib/xamarintvos10/_._",
  10237. "lib/xamarinwatchos10/_._",
  10238. "ref/MonoAndroid10/_._",
  10239. "ref/MonoTouch10/_._",
  10240. "ref/net46/System.Threading.ThreadPool.dll",
  10241. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  10242. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  10243. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  10244. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  10245. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  10246. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  10247. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  10248. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  10249. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  10250. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  10251. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  10252. "ref/xamarinios10/_._",
  10253. "ref/xamarinmac20/_._",
  10254. "ref/xamarintvos10/_._",
  10255. "ref/xamarinwatchos10/_._",
  10256. "system.threading.threadpool.4.3.0.nupkg.sha512",
  10257. "system.threading.threadpool.nuspec"
  10258. ]
  10259. },
  10260. "System.Threading.Timer/4.3.0": {
  10261. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  10262. "type": "package",
  10263. "path": "system.threading.timer/4.3.0",
  10264. "files": [
  10265. ".nupkg.metadata",
  10266. ".signature.p7s",
  10267. "ThirdPartyNotices.txt",
  10268. "dotnet_library_license.txt",
  10269. "lib/MonoAndroid10/_._",
  10270. "lib/MonoTouch10/_._",
  10271. "lib/net451/_._",
  10272. "lib/portable-net451+win81+wpa81/_._",
  10273. "lib/win81/_._",
  10274. "lib/wpa81/_._",
  10275. "lib/xamarinios10/_._",
  10276. "lib/xamarinmac20/_._",
  10277. "lib/xamarintvos10/_._",
  10278. "lib/xamarinwatchos10/_._",
  10279. "ref/MonoAndroid10/_._",
  10280. "ref/MonoTouch10/_._",
  10281. "ref/net451/_._",
  10282. "ref/netcore50/System.Threading.Timer.dll",
  10283. "ref/netcore50/System.Threading.Timer.xml",
  10284. "ref/netcore50/de/System.Threading.Timer.xml",
  10285. "ref/netcore50/es/System.Threading.Timer.xml",
  10286. "ref/netcore50/fr/System.Threading.Timer.xml",
  10287. "ref/netcore50/it/System.Threading.Timer.xml",
  10288. "ref/netcore50/ja/System.Threading.Timer.xml",
  10289. "ref/netcore50/ko/System.Threading.Timer.xml",
  10290. "ref/netcore50/ru/System.Threading.Timer.xml",
  10291. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10292. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10293. "ref/netstandard1.2/System.Threading.Timer.dll",
  10294. "ref/netstandard1.2/System.Threading.Timer.xml",
  10295. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10296. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10297. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10298. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10299. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10300. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10301. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10302. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10303. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10304. "ref/portable-net451+win81+wpa81/_._",
  10305. "ref/win81/_._",
  10306. "ref/wpa81/_._",
  10307. "ref/xamarinios10/_._",
  10308. "ref/xamarinmac20/_._",
  10309. "ref/xamarintvos10/_._",
  10310. "ref/xamarinwatchos10/_._",
  10311. "system.threading.timer.4.3.0.nupkg.sha512",
  10312. "system.threading.timer.nuspec"
  10313. ]
  10314. },
  10315. "System.Windows.Extensions/4.7.0": {
  10316. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  10317. "type": "package",
  10318. "path": "system.windows.extensions/4.7.0",
  10319. "files": [
  10320. ".nupkg.metadata",
  10321. ".signature.p7s",
  10322. "LICENSE.TXT",
  10323. "THIRD-PARTY-NOTICES.TXT",
  10324. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10325. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10326. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  10327. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  10328. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10329. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10330. "system.windows.extensions.4.7.0.nupkg.sha512",
  10331. "system.windows.extensions.nuspec",
  10332. "useSharedDesignerContext.txt",
  10333. "version.txt"
  10334. ]
  10335. },
  10336. "System.Xml.ReaderWriter/4.3.0": {
  10337. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10338. "type": "package",
  10339. "path": "system.xml.readerwriter/4.3.0",
  10340. "files": [
  10341. ".nupkg.metadata",
  10342. ".signature.p7s",
  10343. "ThirdPartyNotices.txt",
  10344. "dotnet_library_license.txt",
  10345. "lib/MonoAndroid10/_._",
  10346. "lib/MonoTouch10/_._",
  10347. "lib/net45/_._",
  10348. "lib/net46/System.Xml.ReaderWriter.dll",
  10349. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10350. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10351. "lib/portable-net45+win8+wp8+wpa81/_._",
  10352. "lib/win8/_._",
  10353. "lib/wp80/_._",
  10354. "lib/wpa81/_._",
  10355. "lib/xamarinios10/_._",
  10356. "lib/xamarinmac20/_._",
  10357. "lib/xamarintvos10/_._",
  10358. "lib/xamarinwatchos10/_._",
  10359. "ref/MonoAndroid10/_._",
  10360. "ref/MonoTouch10/_._",
  10361. "ref/net45/_._",
  10362. "ref/net46/System.Xml.ReaderWriter.dll",
  10363. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10364. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10365. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10366. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10367. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10368. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10369. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10370. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10371. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10372. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10373. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10374. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10375. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10376. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10377. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10378. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10379. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10380. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10381. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10382. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10383. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10384. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10385. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10386. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10387. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10388. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10389. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10390. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10391. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10392. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10393. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10394. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10395. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10396. "ref/portable-net45+win8+wp8+wpa81/_._",
  10397. "ref/win8/_._",
  10398. "ref/wp80/_._",
  10399. "ref/wpa81/_._",
  10400. "ref/xamarinios10/_._",
  10401. "ref/xamarinmac20/_._",
  10402. "ref/xamarintvos10/_._",
  10403. "ref/xamarinwatchos10/_._",
  10404. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10405. "system.xml.readerwriter.nuspec"
  10406. ]
  10407. },
  10408. "System.Xml.XDocument/4.3.0": {
  10409. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10410. "type": "package",
  10411. "path": "system.xml.xdocument/4.3.0",
  10412. "files": [
  10413. ".nupkg.metadata",
  10414. ".signature.p7s",
  10415. "ThirdPartyNotices.txt",
  10416. "dotnet_library_license.txt",
  10417. "lib/MonoAndroid10/_._",
  10418. "lib/MonoTouch10/_._",
  10419. "lib/net45/_._",
  10420. "lib/netcore50/System.Xml.XDocument.dll",
  10421. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10422. "lib/portable-net45+win8+wp8+wpa81/_._",
  10423. "lib/win8/_._",
  10424. "lib/wp80/_._",
  10425. "lib/wpa81/_._",
  10426. "lib/xamarinios10/_._",
  10427. "lib/xamarinmac20/_._",
  10428. "lib/xamarintvos10/_._",
  10429. "lib/xamarinwatchos10/_._",
  10430. "ref/MonoAndroid10/_._",
  10431. "ref/MonoTouch10/_._",
  10432. "ref/net45/_._",
  10433. "ref/netcore50/System.Xml.XDocument.dll",
  10434. "ref/netcore50/System.Xml.XDocument.xml",
  10435. "ref/netcore50/de/System.Xml.XDocument.xml",
  10436. "ref/netcore50/es/System.Xml.XDocument.xml",
  10437. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10438. "ref/netcore50/it/System.Xml.XDocument.xml",
  10439. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10440. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10441. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10442. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10443. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10444. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10445. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10446. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10447. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10448. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10449. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10450. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10451. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10452. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10453. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10454. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10455. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10456. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10457. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10458. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10459. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10460. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10461. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10462. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10463. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10464. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10465. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10466. "ref/portable-net45+win8+wp8+wpa81/_._",
  10467. "ref/win8/_._",
  10468. "ref/wp80/_._",
  10469. "ref/wpa81/_._",
  10470. "ref/xamarinios10/_._",
  10471. "ref/xamarinmac20/_._",
  10472. "ref/xamarintvos10/_._",
  10473. "ref/xamarinwatchos10/_._",
  10474. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10475. "system.xml.xdocument.nuspec"
  10476. ]
  10477. },
  10478. "System.Xml.XmlDocument/4.3.0": {
  10479. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10480. "type": "package",
  10481. "path": "system.xml.xmldocument/4.3.0",
  10482. "files": [
  10483. ".nupkg.metadata",
  10484. ".signature.p7s",
  10485. "ThirdPartyNotices.txt",
  10486. "dotnet_library_license.txt",
  10487. "lib/MonoAndroid10/_._",
  10488. "lib/MonoTouch10/_._",
  10489. "lib/net46/System.Xml.XmlDocument.dll",
  10490. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10491. "lib/xamarinios10/_._",
  10492. "lib/xamarinmac20/_._",
  10493. "lib/xamarintvos10/_._",
  10494. "lib/xamarinwatchos10/_._",
  10495. "ref/MonoAndroid10/_._",
  10496. "ref/MonoTouch10/_._",
  10497. "ref/net46/System.Xml.XmlDocument.dll",
  10498. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10499. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10500. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10501. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10502. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10503. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10504. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10505. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10506. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10507. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10508. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10509. "ref/xamarinios10/_._",
  10510. "ref/xamarinmac20/_._",
  10511. "ref/xamarintvos10/_._",
  10512. "ref/xamarinwatchos10/_._",
  10513. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10514. "system.xml.xmldocument.nuspec"
  10515. ]
  10516. },
  10517. "ToolGood.Words/3.1.0.2": {
  10518. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  10519. "type": "package",
  10520. "path": "toolgood.words/3.1.0.2",
  10521. "files": [
  10522. ".nupkg.metadata",
  10523. ".signature.p7s",
  10524. "LICENSE",
  10525. "lib/net6.0/ToolGood.Words.dll",
  10526. "lib/net6.0/ToolGood.Words.xml",
  10527. "lib/net8.0/ToolGood.Words.dll",
  10528. "lib/net8.0/ToolGood.Words.xml",
  10529. "lib/net9.0/ToolGood.Words.dll",
  10530. "lib/net9.0/ToolGood.Words.xml",
  10531. "lib/netstandard2.1/ToolGood.Words.dll",
  10532. "lib/netstandard2.1/ToolGood.Words.xml",
  10533. "toolgood.words.3.1.0.2.nupkg.sha512",
  10534. "toolgood.words.nuspec"
  10535. ]
  10536. },
  10537. "Ulid/1.4.1": {
  10538. "sha512": "V6crLJ8a29raWeNwxYGfH9RTKA3H0nR0D9LAGzN3KtEsbiiaWkUjDor6OT5Oz7pxCK+NaY2hu2FLoYEOa8oCkA==",
  10539. "type": "package",
  10540. "path": "ulid/1.4.1",
  10541. "files": [
  10542. ".nupkg.metadata",
  10543. ".signature.p7s",
  10544. "Icon.png",
  10545. "lib/net6.0/Ulid.dll",
  10546. "lib/net6.0/Ulid.xml",
  10547. "lib/net7.0/Ulid.dll",
  10548. "lib/net7.0/Ulid.xml",
  10549. "lib/net8.0/Ulid.dll",
  10550. "lib/net8.0/Ulid.xml",
  10551. "lib/netstandard2.0/Ulid.dll",
  10552. "lib/netstandard2.0/Ulid.xml",
  10553. "lib/netstandard2.1/Ulid.dll",
  10554. "lib/netstandard2.1/Ulid.xml",
  10555. "ulid.1.4.1.nupkg.sha512",
  10556. "ulid.nuspec"
  10557. ]
  10558. },
  10559. "ZXing.Net/0.16.9": {
  10560. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10561. "type": "package",
  10562. "path": "zxing.net/0.16.9",
  10563. "files": [
  10564. ".nupkg.metadata",
  10565. ".signature.p7s",
  10566. "lib/native/zxing.XML",
  10567. "lib/native/zxing.pri",
  10568. "lib/native/zxing.winmd",
  10569. "lib/net20-cf/zxing.ce2.0.dll",
  10570. "lib/net20-cf/zxing.ce2.0.xml",
  10571. "lib/net20/zxing.XML",
  10572. "lib/net20/zxing.dll",
  10573. "lib/net35-cf/zxing.ce3.5.dll",
  10574. "lib/net35-cf/zxing.ce3.5.xml",
  10575. "lib/net35/zxing.XML",
  10576. "lib/net35/zxing.dll",
  10577. "lib/net40/zxing.XML",
  10578. "lib/net40/zxing.dll",
  10579. "lib/net40/zxing.presentation.XML",
  10580. "lib/net40/zxing.presentation.dll",
  10581. "lib/net45/zxing.XML",
  10582. "lib/net45/zxing.dll",
  10583. "lib/net45/zxing.presentation.XML",
  10584. "lib/net45/zxing.presentation.dll",
  10585. "lib/net461/zxing.XML",
  10586. "lib/net461/zxing.dll",
  10587. "lib/net461/zxing.presentation.XML",
  10588. "lib/net461/zxing.presentation.dll",
  10589. "lib/net47/zxing.XML",
  10590. "lib/net47/zxing.dll",
  10591. "lib/net47/zxing.presentation.XML",
  10592. "lib/net47/zxing.presentation.dll",
  10593. "lib/net48/zxing.XML",
  10594. "lib/net48/zxing.dll",
  10595. "lib/net48/zxing.presentation.XML",
  10596. "lib/net48/zxing.presentation.dll",
  10597. "lib/net5.0/zxing.XML",
  10598. "lib/net5.0/zxing.dll",
  10599. "lib/net6.0/zxing.XML",
  10600. "lib/net6.0/zxing.dll",
  10601. "lib/net7.0/zxing.XML",
  10602. "lib/net7.0/zxing.dll",
  10603. "lib/netcoreapp3.0/zxing.dll",
  10604. "lib/netcoreapp3.0/zxing.xml",
  10605. "lib/netcoreapp3.1/zxing.dll",
  10606. "lib/netcoreapp3.1/zxing.xml",
  10607. "lib/netstandard1.0/zxing.dll",
  10608. "lib/netstandard1.0/zxing.xml",
  10609. "lib/netstandard1.1/zxing.dll",
  10610. "lib/netstandard1.1/zxing.xml",
  10611. "lib/netstandard1.3/zxing.dll",
  10612. "lib/netstandard1.3/zxing.xml",
  10613. "lib/netstandard2.0/zxing.dll",
  10614. "lib/netstandard2.0/zxing.xml",
  10615. "lib/netstandard2.1/zxing.dll",
  10616. "lib/netstandard2.1/zxing.xml",
  10617. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10618. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10619. "lib/sl3-wp/zxing.wp7.0.XML",
  10620. "lib/sl3-wp/zxing.wp7.0.dll",
  10621. "lib/sl4-wp71/zxing.wp7.1.XML",
  10622. "lib/sl4-wp71/zxing.wp7.1.dll",
  10623. "lib/sl4/zxing.sl4.XML",
  10624. "lib/sl4/zxing.sl4.dll",
  10625. "lib/sl5/zxing.sl5.XML",
  10626. "lib/sl5/zxing.sl5.dll",
  10627. "lib/uap10/zxing.dll",
  10628. "lib/uap10/zxing.pri",
  10629. "lib/uap10/zxing.xml",
  10630. "lib/windows8-managed/zxing.winrt.XML",
  10631. "lib/windows8-managed/zxing.winrt.dll",
  10632. "lib/windows8/zxing.XML",
  10633. "lib/windows8/zxing.pri",
  10634. "lib/windows8/zxing.winmd",
  10635. "lib/wp8/zxing.wp8.0.XML",
  10636. "lib/wp8/zxing.wp8.0.dll",
  10637. "logo.jpg",
  10638. "zxing.net.0.16.9.nupkg.sha512",
  10639. "zxing.net.nuspec"
  10640. ]
  10641. },
  10642. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10643. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10644. "type": "package",
  10645. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10646. "files": [
  10647. ".nupkg.metadata",
  10648. ".signature.p7s",
  10649. "lib/net472/ZXing.ImageSharp.V2.dll",
  10650. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10651. "lib/net472/ZXing.ImageSharp.V2.xml",
  10652. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10653. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10654. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10655. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10656. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10657. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10658. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10659. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10660. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10661. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10662. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10663. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10664. "logo.jpg",
  10665. "readme.md",
  10666. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10667. "zxing.net.bindings.imagesharp.v2.nuspec"
  10668. ]
  10669. },
  10670. "Ropin.Core.Common/1.0.0": {
  10671. "type": "project",
  10672. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10673. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10674. },
  10675. "Ropin.Core.Extensions/1.0.0": {
  10676. "type": "project",
  10677. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10678. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10679. },
  10680. "Ropin.Inspection.Common/1.0.0": {
  10681. "type": "project",
  10682. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10683. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10684. },
  10685. "Ropin.Inspection.Model/1.0.0": {
  10686. "type": "project",
  10687. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10688. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10689. },
  10690. "Ropin.Inspection.Repository/1.0.0": {
  10691. "type": "project",
  10692. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10693. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10694. },
  10695. "Ropin.Inspection.Service/1.0.0": {
  10696. "type": "project",
  10697. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10698. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10699. },
  10700. "Ropin.Inspection.Tasks/1.0.0": {
  10701. "type": "project",
  10702. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10703. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10704. }
  10705. },
  10706. "projectFileDependencyGroups": {
  10707. "net5.0": [
  10708. "AdysTech.InfluxDB.Client.Net >= 0.15.0",
  10709. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10710. "FBoxClientDriver >= 1.2.0",
  10711. "FBoxClientDriver.Contract >= 1.2.0",
  10712. "InfluxData.Net >= 8.0.1",
  10713. "InitQ >= 1.0.0.14",
  10714. "Microsoft.AspNetCore.NodeServices >= 3.1.30",
  10715. "Microsoft.AspNetCore.SignalR >= 1.1.0",
  10716. "Microsoft.AspNetCore.SignalR.Client >= 3.1.20",
  10717. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  10718. "NLog >= 4.7.7",
  10719. "Newtonsoft.Json >= 13.0.1",
  10720. "RabbitMQ.Client >= 6.8.1",
  10721. "Ropin.Core.Extensions >= 1.0.0",
  10722. "Ropin.Inspection.Common >= 1.0.0",
  10723. "Ropin.Inspection.Model >= 1.0.0",
  10724. "Ropin.Inspection.Repository >= 1.0.0",
  10725. "Serilog >= 2.11.0",
  10726. "Serilog.Sinks.Console >= 4.0.1",
  10727. "Serilog.Sinks.File >= 5.0.0"
  10728. ]
  10729. },
  10730. "packageFolders": {
  10731. "D:\\.nuget\\packages": {},
  10732. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10733. },
  10734. "project": {
  10735. "version": "1.0.0",
  10736. "restore": {
  10737. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10738. "projectName": "Ropin.Environmentally.WebScada",
  10739. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10740. "packagesPath": "D:\\.nuget\\packages",
  10741. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\obj\\",
  10742. "projectStyle": "PackageReference",
  10743. "fallbackFolders": [
  10744. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10745. ],
  10746. "configFilePaths": [
  10747. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10748. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10749. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10750. ],
  10751. "originalTargetFrameworks": [
  10752. "net5.0"
  10753. ],
  10754. "sources": {
  10755. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10756. "C:\\Program Files\\dotnet\\library-packs": {},
  10757. "https://api.nuget.org/v3/index.json": {}
  10758. },
  10759. "frameworks": {
  10760. "net5.0": {
  10761. "targetAlias": "net5.0",
  10762. "projectReferences": {
  10763. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10764. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10765. },
  10766. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10767. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10768. },
  10769. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10770. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10771. },
  10772. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10773. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10774. }
  10775. }
  10776. }
  10777. },
  10778. "warningProperties": {
  10779. "warnAsError": [
  10780. "NU1605"
  10781. ]
  10782. }
  10783. },
  10784. "frameworks": {
  10785. "net5.0": {
  10786. "targetAlias": "net5.0",
  10787. "dependencies": {
  10788. "AdysTech.InfluxDB.Client.Net": {
  10789. "target": "Package",
  10790. "version": "[0.15.0, )"
  10791. },
  10792. "Autofac.Extensions.DependencyInjection": {
  10793. "target": "Package",
  10794. "version": "[7.1.0, )"
  10795. },
  10796. "FBoxClientDriver": {
  10797. "target": "Package",
  10798. "version": "[1.2.0, )"
  10799. },
  10800. "FBoxClientDriver.Contract": {
  10801. "target": "Package",
  10802. "version": "[1.2.0, )"
  10803. },
  10804. "InfluxData.Net": {
  10805. "target": "Package",
  10806. "version": "[8.0.1, )"
  10807. },
  10808. "InitQ": {
  10809. "target": "Package",
  10810. "version": "[1.0.0.14, )"
  10811. },
  10812. "Microsoft.AspNetCore.NodeServices": {
  10813. "target": "Package",
  10814. "version": "[3.1.30, )"
  10815. },
  10816. "Microsoft.AspNetCore.SignalR": {
  10817. "target": "Package",
  10818. "version": "[1.1.0, )"
  10819. },
  10820. "Microsoft.AspNetCore.SignalR.Client": {
  10821. "target": "Package",
  10822. "version": "[3.1.20, )"
  10823. },
  10824. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10825. "target": "Package",
  10826. "version": "[1.17.2, )"
  10827. },
  10828. "NLog": {
  10829. "target": "Package",
  10830. "version": "[4.7.7, )"
  10831. },
  10832. "Newtonsoft.Json": {
  10833. "target": "Package",
  10834. "version": "[13.0.1, )"
  10835. },
  10836. "RabbitMQ.Client": {
  10837. "target": "Package",
  10838. "version": "[6.8.1, )"
  10839. },
  10840. "Serilog": {
  10841. "target": "Package",
  10842. "version": "[2.11.0, )"
  10843. },
  10844. "Serilog.Sinks.Console": {
  10845. "target": "Package",
  10846. "version": "[4.0.1, )"
  10847. },
  10848. "Serilog.Sinks.File": {
  10849. "target": "Package",
  10850. "version": "[5.0.0, )"
  10851. }
  10852. },
  10853. "imports": [
  10854. "net461",
  10855. "net462",
  10856. "net47",
  10857. "net471",
  10858. "net472",
  10859. "net48",
  10860. "net481"
  10861. ],
  10862. "assetTargetFallback": true,
  10863. "warn": true,
  10864. "frameworkReferences": {
  10865. "Microsoft.AspNetCore.App": {
  10866. "privateAssets": "none"
  10867. },
  10868. "Microsoft.NETCore.App": {
  10869. "privateAssets": "all"
  10870. }
  10871. },
  10872. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10873. }
  10874. }
  10875. },
  10876. "logs": [
  10877. {
  10878. "code": "NU1701",
  10879. "level": "Warning",
  10880. "warningLevel": 1,
  10881. "message": "已使用“.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1”而不是项目目标框架“net5.0”还原包“AdysTech.InfluxDB.Client.Net 0.15.0”。此包可能与项目不完全兼容。",
  10882. "libraryId": "AdysTech.InfluxDB.Client.Net",
  10883. "targetGraphs": [
  10884. "net5.0"
  10885. ]
  10886. }
  10887. ]
  10888. }