project.assets.json 452 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "Autofac.Extras.DynamicProxy/6.0.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Autofac": "6.0.0",
  55. "Castle.Core": "4.4.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  59. "related": ".pdb;.xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  64. "related": ".pdb;.xml"
  65. }
  66. }
  67. },
  68. "AutoMapper/10.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "Microsoft.CSharp": "4.7.0",
  72. "System.Reflection.Emit": "4.7.0"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/AutoMapper.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/AutoMapper.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  86. "type": "package",
  87. "dependencies": {
  88. "AutoMapper": "[10.1.1, 11.0.0)",
  89. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  90. "Microsoft.Extensions.Options": "3.0.0"
  91. },
  92. "compile": {
  93. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  94. },
  95. "runtime": {
  96. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  97. }
  98. },
  99. "BouncyCastle.Cryptography/2.2.1": {
  100. "type": "package",
  101. "compile": {
  102. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "BouncyCastle.NetCore/1.8.5": {
  113. "type": "package",
  114. "compile": {
  115. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  116. "related": ".xml"
  117. }
  118. },
  119. "runtime": {
  120. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  121. "related": ".xml"
  122. }
  123. }
  124. },
  125. "Castle.Core/4.4.0": {
  126. "type": "package",
  127. "dependencies": {
  128. "NETStandard.Library": "1.6.1",
  129. "System.Collections.Specialized": "4.3.0",
  130. "System.ComponentModel": "4.3.0",
  131. "System.ComponentModel.TypeConverter": "4.3.0",
  132. "System.Diagnostics.TraceSource": "4.3.0",
  133. "System.Dynamic.Runtime": "4.3.0",
  134. "System.Reflection": "4.3.0",
  135. "System.Reflection.Emit": "4.3.0",
  136. "System.Reflection.TypeExtensions": "4.3.0",
  137. "System.Xml.XmlDocument": "4.3.0"
  138. },
  139. "compile": {
  140. "lib/netstandard1.5/Castle.Core.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "runtime": {
  145. "lib/netstandard1.5/Castle.Core.dll": {
  146. "related": ".xml"
  147. }
  148. }
  149. },
  150. "CommunityToolkit.HighPerformance/8.4.0": {
  151. "type": "package",
  152. "dependencies": {
  153. "System.Runtime.CompilerServices.Unsafe": "6.1.0"
  154. },
  155. "compile": {
  156. "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll": {
  157. "related": ".pdb;.xml"
  158. }
  159. },
  160. "runtime": {
  161. "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll": {
  162. "related": ".pdb;.xml"
  163. }
  164. }
  165. },
  166. "Coravel/4.2.1": {
  167. "type": "package",
  168. "dependencies": {
  169. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  170. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  171. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  172. },
  173. "compile": {
  174. "lib/netstandard2.0/Coravel.dll": {
  175. "related": ".xml"
  176. }
  177. },
  178. "runtime": {
  179. "lib/netstandard2.0/Coravel.dll": {
  180. "related": ".xml"
  181. }
  182. }
  183. },
  184. "Enums.NET/4.0.1": {
  185. "type": "package",
  186. "compile": {
  187. "lib/netcoreapp3.0/Enums.NET.dll": {
  188. "related": ".pdb;.xml"
  189. }
  190. },
  191. "runtime": {
  192. "lib/netcoreapp3.0/Enums.NET.dll": {
  193. "related": ".pdb;.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. "Humanizer.Core/2.8.26": {
  238. "type": "package",
  239. "compile": {
  240. "lib/netstandard2.0/_._": {
  241. "related": ".xml"
  242. }
  243. },
  244. "runtime": {
  245. "lib/netstandard2.0/Humanizer.dll": {
  246. "related": ".xml"
  247. }
  248. }
  249. },
  250. "InfluxData.Net/8.0.1": {
  251. "type": "package",
  252. "dependencies": {
  253. "Newtonsoft.Json": "10.0.3",
  254. "System.Net.Http": "4.3.2"
  255. },
  256. "compile": {
  257. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  258. "related": ".dll.config;.pdb"
  259. },
  260. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  261. "related": ".dll.config;.pdb"
  262. },
  263. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  264. "related": ".dll.config;.pdb"
  265. },
  266. "lib/netstandard2.0/InfluxData.Net.dll": {
  267. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  268. }
  269. },
  270. "runtime": {
  271. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  272. "related": ".dll.config;.pdb"
  273. },
  274. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  275. "related": ".dll.config;.pdb"
  276. },
  277. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  278. "related": ".dll.config;.pdb"
  279. },
  280. "lib/netstandard2.0/InfluxData.Net.dll": {
  281. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  282. }
  283. }
  284. },
  285. "IP2Region.Ex/1.2.0": {
  286. "type": "package",
  287. "compile": {
  288. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  289. },
  290. "runtime": {
  291. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  292. }
  293. },
  294. "IPTools.China/1.6.0": {
  295. "type": "package",
  296. "dependencies": {
  297. "IP2Region.Ex": "1.2.0",
  298. "IPTools.Core": "1.6.0"
  299. },
  300. "compile": {
  301. "lib/net5.0/IPTools.China.dll": {}
  302. },
  303. "runtime": {
  304. "lib/net5.0/IPTools.China.dll": {}
  305. }
  306. },
  307. "IPTools.Core/1.6.0": {
  308. "type": "package",
  309. "dependencies": {
  310. "IP2Region.Ex": "1.2.0"
  311. },
  312. "compile": {
  313. "lib/net5.0/IPTools.Core.dll": {}
  314. },
  315. "runtime": {
  316. "lib/net5.0/IPTools.Core.dll": {}
  317. },
  318. "frameworkReferences": [
  319. "Microsoft.AspNetCore.App"
  320. ]
  321. },
  322. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  323. "type": "package",
  324. "dependencies": {
  325. "AdvancedStringBuilder": "0.1.0",
  326. "JavaScriptEngineSwitcher.Core": "3.21.0"
  327. },
  328. "compile": {
  329. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  330. "related": ".xml"
  331. }
  332. },
  333. "runtime": {
  334. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  335. "related": ".xml"
  336. }
  337. },
  338. "resource": {
  339. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  340. "locale": "ru-RU"
  341. }
  342. }
  343. },
  344. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  345. "type": "package",
  346. "runtimeTargets": {
  347. "runtimes/linux-x64/native/libChakraCore.so": {
  348. "assetType": "native",
  349. "rid": "linux-x64"
  350. }
  351. }
  352. },
  353. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  354. "type": "package",
  355. "build": {
  356. "build/_._": {}
  357. },
  358. "runtimeTargets": {
  359. "runtimes/win-x64/native/ChakraCore.dll": {
  360. "assetType": "native",
  361. "rid": "win-x64"
  362. }
  363. }
  364. },
  365. "JavaScriptEngineSwitcher.Core/3.21.0": {
  366. "type": "package",
  367. "dependencies": {
  368. "AdvancedStringBuilder": "0.1.0"
  369. },
  370. "compile": {
  371. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "resource": {
  381. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  382. "locale": "ru-RU"
  383. }
  384. }
  385. },
  386. "K4os.Compression.LZ4/1.1.11": {
  387. "type": "package",
  388. "dependencies": {
  389. "System.Memory": "4.5.3"
  390. },
  391. "compile": {
  392. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  393. "related": ".xml"
  394. }
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  398. "related": ".xml"
  399. }
  400. }
  401. },
  402. "K4os.Compression.LZ4.Streams/1.1.11": {
  403. "type": "package",
  404. "dependencies": {
  405. "K4os.Compression.LZ4": "1.1.11",
  406. "K4os.Hash.xxHash": "1.0.6"
  407. },
  408. "compile": {
  409. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  410. "related": ".xml"
  411. }
  412. },
  413. "runtime": {
  414. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  415. "related": ".xml"
  416. }
  417. }
  418. },
  419. "K4os.Hash.xxHash/1.0.6": {
  420. "type": "package",
  421. "dependencies": {
  422. "System.Memory": "4.5.3"
  423. },
  424. "compile": {
  425. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  431. "related": ".xml"
  432. }
  433. }
  434. },
  435. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  436. "type": "package",
  437. "dependencies": {
  438. "Microsoft.EntityFrameworkCore": "5.0.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  442. "related": ".xml"
  443. }
  444. },
  445. "runtime": {
  446. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  447. "related": ".xml"
  448. }
  449. }
  450. },
  451. "log4net/2.0.17": {
  452. "type": "package",
  453. "dependencies": {
  454. "System.Configuration.ConfigurationManager": "4.5.0"
  455. },
  456. "compile": {
  457. "lib/netstandard2.0/log4net.dll": {
  458. "related": ".xml"
  459. }
  460. },
  461. "runtime": {
  462. "lib/netstandard2.0/log4net.dll": {
  463. "related": ".xml"
  464. }
  465. }
  466. },
  467. "MathNet.Numerics.Signed/4.15.0": {
  468. "type": "package",
  469. "compile": {
  470. "lib/netstandard2.0/MathNet.Numerics.dll": {
  471. "related": ".xml"
  472. }
  473. },
  474. "runtime": {
  475. "lib/netstandard2.0/MathNet.Numerics.dll": {
  476. "related": ".xml"
  477. }
  478. }
  479. },
  480. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  481. "type": "package",
  482. "dependencies": {
  483. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  484. },
  485. "compile": {
  486. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  487. "related": ".xml"
  488. }
  489. },
  490. "runtime": {
  491. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  492. "related": ".xml"
  493. }
  494. },
  495. "frameworkReferences": [
  496. "Microsoft.AspNetCore.App"
  497. ]
  498. },
  499. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  503. },
  504. "compile": {
  505. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  506. "related": ".xml"
  507. }
  508. },
  509. "runtime": {
  510. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  511. "related": ".xml"
  512. }
  513. },
  514. "frameworkReferences": [
  515. "Microsoft.AspNetCore.App"
  516. ]
  517. },
  518. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  519. "type": "package",
  520. "dependencies": {
  521. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  522. "System.Text.Encodings.Web": "4.5.0"
  523. },
  524. "compile": {
  525. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  531. "related": ".xml"
  532. }
  533. }
  534. },
  535. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  536. "type": "package",
  537. "dependencies": {
  538. "Microsoft.Extensions.Primitives": "5.0.0",
  539. "System.IO.Pipelines": "5.0.0"
  540. },
  541. "compile": {
  542. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "runtime": {
  547. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  548. "related": ".xml"
  549. }
  550. }
  551. },
  552. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.CSharp": "4.7.0",
  556. "Newtonsoft.Json": "12.0.2"
  557. },
  558. "compile": {
  559. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  560. "related": ".xml"
  561. }
  562. },
  563. "runtime": {
  564. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  565. "related": ".xml"
  566. }
  567. }
  568. },
  569. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  570. "type": "package",
  571. "dependencies": {
  572. "Microsoft.AspNetCore.JsonPatch": "5.0.0",
  573. "Newtonsoft.Json": "12.0.2",
  574. "Newtonsoft.Json.Bson": "1.0.2"
  575. },
  576. "compile": {
  577. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  578. "related": ".xml"
  579. }
  580. },
  581. "runtime": {
  582. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  583. "related": ".xml"
  584. }
  585. },
  586. "frameworkReferences": [
  587. "Microsoft.AspNetCore.App"
  588. ]
  589. },
  590. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  591. "type": "package",
  592. "dependencies": {
  593. "Microsoft.Extensions.Logging.Console": "3.1.30",
  594. "Newtonsoft.Json": "13.0.1"
  595. },
  596. "compile": {
  597. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  598. },
  599. "runtime": {
  600. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  601. },
  602. "frameworkReferences": [
  603. "Microsoft.AspNetCore.App"
  604. ]
  605. },
  606. "Microsoft.Bcl.AsyncInterfaces/9.0.8": {
  607. "type": "package",
  608. "compile": {
  609. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  610. "related": ".xml"
  611. }
  612. },
  613. "runtime": {
  614. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  615. "related": ".xml"
  616. }
  617. },
  618. "build": {
  619. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets": {}
  620. }
  621. },
  622. "Microsoft.CSharp/4.7.0": {
  623. "type": "package",
  624. "compile": {
  625. "ref/netcoreapp2.0/_._": {}
  626. },
  627. "runtime": {
  628. "lib/netcoreapp2.0/_._": {}
  629. }
  630. },
  631. "Microsoft.EntityFrameworkCore/5.0.4": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.4",
  635. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.4",
  636. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  637. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  638. "Microsoft.Extensions.Logging": "5.0.0",
  639. "System.Collections.Immutable": "5.0.0",
  640. "System.ComponentModel.Annotations": "5.0.0",
  641. "System.Diagnostics.DiagnosticSource": "5.0.1"
  642. },
  643. "compile": {
  644. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  645. "related": ".xml"
  646. }
  647. },
  648. "runtime": {
  649. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  650. "related": ".xml"
  651. }
  652. }
  653. },
  654. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  655. "type": "package",
  656. "compile": {
  657. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "runtime": {
  662. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. }
  666. },
  667. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  668. "type": "package",
  669. "compile": {
  670. "lib/netstandard2.0/_._": {}
  671. },
  672. "runtime": {
  673. "lib/netstandard2.0/_._": {}
  674. }
  675. },
  676. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  677. "type": "package",
  678. "dependencies": {
  679. "Humanizer.Core": "2.8.26",
  680. "Microsoft.CSharp": "4.7.0",
  681. "Microsoft.EntityFrameworkCore.Relational": "5.0.4"
  682. },
  683. "compile": {
  684. "lib/netstandard2.1/_._": {
  685. "related": ".xml"
  686. }
  687. },
  688. "runtime": {
  689. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {
  690. "related": ".xml"
  691. }
  692. },
  693. "build": {
  694. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  695. }
  696. },
  697. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  698. "type": "package",
  699. "dependencies": {
  700. "Microsoft.EntityFrameworkCore": "5.0.4",
  701. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  702. },
  703. "compile": {
  704. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  705. "related": ".xml"
  706. }
  707. },
  708. "runtime": {
  709. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  710. "related": ".xml"
  711. }
  712. }
  713. },
  714. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  715. "type": "package",
  716. "build": {
  717. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  718. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  719. },
  720. "buildMultiTargeting": {
  721. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  722. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  723. }
  724. },
  725. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  726. "type": "package",
  727. "dependencies": {
  728. "Microsoft.Extensions.Primitives": "5.0.0"
  729. },
  730. "compile": {
  731. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  732. "related": ".xml"
  733. }
  734. },
  735. "runtime": {
  736. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  737. "related": ".xml"
  738. }
  739. }
  740. },
  741. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  742. "type": "package",
  743. "dependencies": {
  744. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  745. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  746. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  747. "Microsoft.Extensions.Options": "5.0.0",
  748. "Microsoft.Extensions.Primitives": "5.0.0"
  749. },
  750. "compile": {
  751. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  752. "related": ".xml"
  753. }
  754. },
  755. "runtime": {
  756. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  757. "related": ".xml"
  758. }
  759. }
  760. },
  761. "Microsoft.Extensions.Configuration/5.0.0": {
  762. "type": "package",
  763. "dependencies": {
  764. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  765. "Microsoft.Extensions.Primitives": "5.0.0"
  766. },
  767. "compile": {
  768. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "runtime": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  774. "related": ".xml"
  775. }
  776. }
  777. },
  778. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.Extensions.Primitives": "5.0.0"
  782. },
  783. "compile": {
  784. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  785. "related": ".xml"
  786. }
  787. },
  788. "runtime": {
  789. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  790. "related": ".xml"
  791. }
  792. }
  793. },
  794. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  795. "type": "package",
  796. "dependencies": {
  797. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  798. },
  799. "compile": {
  800. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  801. "related": ".xml"
  802. }
  803. },
  804. "runtime": {
  805. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  806. "related": ".xml"
  807. }
  808. }
  809. },
  810. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  811. "type": "package",
  812. "dependencies": {
  813. "Microsoft.Extensions.Configuration": "5.0.0",
  814. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  815. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  816. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  817. "Microsoft.Extensions.Primitives": "5.0.0"
  818. },
  819. "compile": {
  820. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  821. "related": ".xml"
  822. }
  823. },
  824. "runtime": {
  825. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  826. "related": ".xml"
  827. }
  828. }
  829. },
  830. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  831. "type": "package",
  832. "dependencies": {
  833. "Microsoft.Extensions.Configuration": "5.0.0",
  834. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  835. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  836. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  837. },
  838. "compile": {
  839. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  840. "related": ".xml"
  841. }
  842. },
  843. "runtime": {
  844. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  845. "related": ".xml"
  846. }
  847. }
  848. },
  849. "Microsoft.Extensions.DependencyInjection/9.0.4": {
  850. "type": "package",
  851. "dependencies": {
  852. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4"
  853. },
  854. "compile": {
  855. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  856. "related": ".xml"
  857. }
  858. },
  859. "runtime": {
  860. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  861. "related": ".xml"
  862. }
  863. },
  864. "build": {
  865. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  866. }
  867. },
  868. "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": {
  869. "type": "package",
  870. "compile": {
  871. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  872. "related": ".xml"
  873. }
  874. },
  875. "runtime": {
  876. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  877. "related": ".xml"
  878. }
  879. },
  880. "build": {
  881. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  882. }
  883. },
  884. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  885. "type": "package",
  886. "dependencies": {
  887. "Microsoft.Extensions.Primitives": "5.0.0"
  888. },
  889. "compile": {
  890. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  891. "related": ".xml"
  892. }
  893. },
  894. "runtime": {
  895. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  896. "related": ".xml"
  897. }
  898. }
  899. },
  900. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  901. "type": "package",
  902. "dependencies": {
  903. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  904. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  905. "Microsoft.Extensions.Primitives": "5.0.0"
  906. },
  907. "compile": {
  908. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  914. "related": ".xml"
  915. }
  916. }
  917. },
  918. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  919. "type": "package",
  920. "compile": {
  921. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  922. "related": ".xml"
  923. }
  924. },
  925. "runtime": {
  926. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  927. "related": ".xml"
  928. }
  929. }
  930. },
  931. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  932. "type": "package",
  933. "dependencies": {
  934. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  935. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  936. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  937. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  938. },
  939. "compile": {
  940. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "Microsoft.Extensions.Http/5.0.0": {
  951. "type": "package",
  952. "dependencies": {
  953. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  954. "Microsoft.Extensions.Logging": "5.0.0",
  955. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  956. "Microsoft.Extensions.Options": "5.0.0"
  957. },
  958. "compile": {
  959. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  960. "related": ".xml"
  961. }
  962. },
  963. "runtime": {
  964. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  965. "related": ".xml"
  966. }
  967. }
  968. },
  969. "Microsoft.Extensions.Logging/9.0.4": {
  970. "type": "package",
  971. "dependencies": {
  972. "Microsoft.Extensions.DependencyInjection": "9.0.4",
  973. "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
  974. "Microsoft.Extensions.Options": "9.0.4",
  975. "System.Diagnostics.DiagnosticSource": "9.0.4"
  976. },
  977. "compile": {
  978. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  984. "related": ".xml"
  985. }
  986. },
  987. "build": {
  988. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  989. }
  990. },
  991. "Microsoft.Extensions.Logging.Abstractions/9.0.4": {
  992. "type": "package",
  993. "dependencies": {
  994. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  995. "System.Buffers": "4.5.1",
  996. "System.Diagnostics.DiagnosticSource": "9.0.4",
  997. "System.Memory": "4.5.5"
  998. },
  999. "compile": {
  1000. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1001. "related": ".xml"
  1002. }
  1003. },
  1004. "runtime": {
  1005. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "build": {
  1010. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  1011. }
  1012. },
  1013. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1014. "type": "package",
  1015. "dependencies": {
  1016. "Microsoft.Extensions.Logging": "3.1.30",
  1017. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  1018. },
  1019. "compile": {
  1020. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1021. "related": ".xml"
  1022. }
  1023. },
  1024. "runtime": {
  1025. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1026. "related": ".xml"
  1027. }
  1028. }
  1029. },
  1030. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1034. "Microsoft.Extensions.Logging": "3.1.30",
  1035. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  1036. },
  1037. "compile": {
  1038. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1039. "related": ".xml"
  1040. }
  1041. },
  1042. "runtime": {
  1043. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1044. "related": ".xml"
  1045. }
  1046. }
  1047. },
  1048. "Microsoft.Extensions.Options/9.0.4": {
  1049. "type": "package",
  1050. "dependencies": {
  1051. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  1052. "Microsoft.Extensions.Primitives": "9.0.4",
  1053. "System.ComponentModel.Annotations": "5.0.0"
  1054. },
  1055. "compile": {
  1056. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1057. "related": ".xml"
  1058. }
  1059. },
  1060. "runtime": {
  1061. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1062. "related": ".xml"
  1063. }
  1064. },
  1065. "build": {
  1066. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  1067. }
  1068. },
  1069. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1070. "type": "package",
  1071. "dependencies": {
  1072. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1073. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1074. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1075. "Microsoft.Extensions.Options": "3.1.30"
  1076. },
  1077. "compile": {
  1078. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1079. "related": ".xml"
  1080. }
  1081. },
  1082. "runtime": {
  1083. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1084. "related": ".xml"
  1085. }
  1086. }
  1087. },
  1088. "Microsoft.Extensions.Primitives/9.0.4": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "System.Memory": "4.5.5",
  1092. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1096. "related": ".xml"
  1097. }
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1101. "related": ".xml"
  1102. }
  1103. },
  1104. "build": {
  1105. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  1106. }
  1107. },
  1108. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  1109. "type": "package",
  1110. "dependencies": {
  1111. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1112. },
  1113. "compile": {
  1114. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1115. "related": ".xml"
  1116. }
  1117. },
  1118. "runtime": {
  1119. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1120. "related": ".xml"
  1121. }
  1122. }
  1123. },
  1124. "Microsoft.IdentityModel.Logging/6.7.1": {
  1125. "type": "package",
  1126. "compile": {
  1127. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1128. "related": ".xml"
  1129. }
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1133. "related": ".xml"
  1134. }
  1135. }
  1136. },
  1137. "Microsoft.IdentityModel.Protocols/6.7.1": {
  1138. "type": "package",
  1139. "dependencies": {
  1140. "Microsoft.IdentityModel.Logging": "6.7.1",
  1141. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1142. },
  1143. "compile": {
  1144. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1145. "related": ".xml"
  1146. }
  1147. },
  1148. "runtime": {
  1149. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1150. "related": ".xml"
  1151. }
  1152. }
  1153. },
  1154. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  1155. "type": "package",
  1156. "dependencies": {
  1157. "Microsoft.IdentityModel.Protocols": "6.7.1",
  1158. "System.IdentityModel.Tokens.Jwt": "6.7.1"
  1159. },
  1160. "compile": {
  1161. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1162. "related": ".xml"
  1163. }
  1164. },
  1165. "runtime": {
  1166. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1167. "related": ".xml"
  1168. }
  1169. }
  1170. },
  1171. "Microsoft.IdentityModel.Tokens/6.7.1": {
  1172. "type": "package",
  1173. "dependencies": {
  1174. "Microsoft.CSharp": "4.5.0",
  1175. "Microsoft.IdentityModel.Logging": "6.7.1",
  1176. "System.Security.Cryptography.Cng": "4.5.0"
  1177. },
  1178. "compile": {
  1179. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1180. "related": ".xml"
  1181. }
  1182. },
  1183. "runtime": {
  1184. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1185. "related": ".xml"
  1186. }
  1187. }
  1188. },
  1189. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1190. "type": "package",
  1191. "compile": {
  1192. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1193. "related": ".xml"
  1194. }
  1195. },
  1196. "runtime": {
  1197. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1198. "related": ".xml"
  1199. }
  1200. }
  1201. },
  1202. "Microsoft.NETCore.Platforms/5.0.0": {
  1203. "type": "package",
  1204. "compile": {
  1205. "lib/netstandard1.0/_._": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netstandard1.0/_._": {}
  1209. }
  1210. },
  1211. "Microsoft.NETCore.Targets/1.1.3": {
  1212. "type": "package",
  1213. "compile": {
  1214. "lib/netstandard1.0/_._": {}
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard1.0/_._": {}
  1218. }
  1219. },
  1220. "Microsoft.OpenApi/1.2.3": {
  1221. "type": "package",
  1222. "compile": {
  1223. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1224. "related": ".pdb;.xml"
  1225. }
  1226. },
  1227. "runtime": {
  1228. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1229. "related": ".pdb;.xml"
  1230. }
  1231. }
  1232. },
  1233. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  1234. "type": "package",
  1235. "build": {
  1236. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1237. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1238. }
  1239. },
  1240. "Microsoft.Win32.Primitives/4.3.0": {
  1241. "type": "package",
  1242. "dependencies": {
  1243. "Microsoft.NETCore.Platforms": "1.1.0",
  1244. "Microsoft.NETCore.Targets": "1.1.0",
  1245. "System.Runtime": "4.3.0"
  1246. },
  1247. "compile": {
  1248. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1249. "related": ".xml"
  1250. }
  1251. }
  1252. },
  1253. "Microsoft.Win32.SystemEvents/6.0.0": {
  1254. "type": "package",
  1255. "compile": {
  1256. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1262. "related": ".xml"
  1263. }
  1264. },
  1265. "build": {
  1266. "buildTransitive/netcoreapp3.1/_._": {}
  1267. },
  1268. "runtimeTargets": {
  1269. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1270. "assetType": "runtime",
  1271. "rid": "win"
  1272. }
  1273. }
  1274. },
  1275. "Minio/6.0.5": {
  1276. "type": "package",
  1277. "dependencies": {
  1278. "CommunityToolkit.HighPerformance": "8.4.0",
  1279. "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
  1280. "Microsoft.Extensions.Logging": "9.0.4",
  1281. "System.IO.Hashing": "9.0.4",
  1282. "System.Net.Http": "4.3.4",
  1283. "System.Net.Primitives": "4.3.1",
  1284. "System.Reactive": "6.0.1",
  1285. "System.Security.Cryptography.Algorithms": "4.3.1",
  1286. "System.Text.Json": "9.0.1",
  1287. "System.Threading.Tasks.Extensions": "4.6.0",
  1288. "System.ValueTuple": "4.5.0"
  1289. },
  1290. "compile": {
  1291. "lib/netstandard2.0/Minio.dll": {
  1292. "related": ".pdb;.xml"
  1293. }
  1294. },
  1295. "runtime": {
  1296. "lib/netstandard2.0/Minio.dll": {
  1297. "related": ".pdb;.xml"
  1298. }
  1299. }
  1300. },
  1301. "MySql.Data/8.0.23": {
  1302. "type": "package",
  1303. "dependencies": {
  1304. "BouncyCastle.NetCore": "1.8.5",
  1305. "Google.Protobuf": "3.11.4",
  1306. "K4os.Compression.LZ4": "1.1.11",
  1307. "K4os.Compression.LZ4.Streams": "1.1.11",
  1308. "K4os.Hash.xxHash": "1.0.6",
  1309. "SSH.NET": "2020.0.0-beta1",
  1310. "System.Buffers": "4.5.1",
  1311. "System.Configuration.ConfigurationManager": "4.4.1",
  1312. "System.Security.Permissions": "4.7.0",
  1313. "System.Text.Encoding.CodePages": "4.4.0"
  1314. },
  1315. "compile": {
  1316. "lib/net5.0/MySql.Data.dll": {
  1317. "related": ".xml"
  1318. },
  1319. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1320. "lib/net5.0/Zstandard.Net.dll": {}
  1321. },
  1322. "runtime": {
  1323. "lib/net5.0/MySql.Data.dll": {
  1324. "related": ".xml"
  1325. },
  1326. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1327. "lib/net5.0/Zstandard.Net.dll": {}
  1328. }
  1329. },
  1330. "MySqlConnector/1.1.0": {
  1331. "type": "package",
  1332. "compile": {
  1333. "lib/net5.0/MySqlConnector.dll": {
  1334. "related": ".xml"
  1335. }
  1336. },
  1337. "runtime": {
  1338. "lib/net5.0/MySqlConnector.dll": {
  1339. "related": ".xml"
  1340. }
  1341. }
  1342. },
  1343. "NETStandard.Library/1.6.1": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.1.0",
  1347. "Microsoft.Win32.Primitives": "4.3.0",
  1348. "System.AppContext": "4.3.0",
  1349. "System.Collections": "4.3.0",
  1350. "System.Collections.Concurrent": "4.3.0",
  1351. "System.Console": "4.3.0",
  1352. "System.Diagnostics.Debug": "4.3.0",
  1353. "System.Diagnostics.Tools": "4.3.0",
  1354. "System.Diagnostics.Tracing": "4.3.0",
  1355. "System.Globalization": "4.3.0",
  1356. "System.Globalization.Calendars": "4.3.0",
  1357. "System.IO": "4.3.0",
  1358. "System.IO.Compression": "4.3.0",
  1359. "System.IO.Compression.ZipFile": "4.3.0",
  1360. "System.IO.FileSystem": "4.3.0",
  1361. "System.IO.FileSystem.Primitives": "4.3.0",
  1362. "System.Linq": "4.3.0",
  1363. "System.Linq.Expressions": "4.3.0",
  1364. "System.Net.Http": "4.3.0",
  1365. "System.Net.Primitives": "4.3.0",
  1366. "System.Net.Sockets": "4.3.0",
  1367. "System.ObjectModel": "4.3.0",
  1368. "System.Reflection": "4.3.0",
  1369. "System.Reflection.Extensions": "4.3.0",
  1370. "System.Reflection.Primitives": "4.3.0",
  1371. "System.Resources.ResourceManager": "4.3.0",
  1372. "System.Runtime": "4.3.0",
  1373. "System.Runtime.Extensions": "4.3.0",
  1374. "System.Runtime.Handles": "4.3.0",
  1375. "System.Runtime.InteropServices": "4.3.0",
  1376. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1377. "System.Runtime.Numerics": "4.3.0",
  1378. "System.Security.Cryptography.Algorithms": "4.3.0",
  1379. "System.Security.Cryptography.Encoding": "4.3.0",
  1380. "System.Security.Cryptography.Primitives": "4.3.0",
  1381. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1382. "System.Text.Encoding": "4.3.0",
  1383. "System.Text.Encoding.Extensions": "4.3.0",
  1384. "System.Text.RegularExpressions": "4.3.0",
  1385. "System.Threading": "4.3.0",
  1386. "System.Threading.Tasks": "4.3.0",
  1387. "System.Threading.Timer": "4.3.0",
  1388. "System.Xml.ReaderWriter": "4.3.0",
  1389. "System.Xml.XDocument": "4.3.0"
  1390. }
  1391. },
  1392. "Newtonsoft.Json/13.0.1": {
  1393. "type": "package",
  1394. "compile": {
  1395. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1396. "related": ".xml"
  1397. }
  1398. },
  1399. "runtime": {
  1400. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1401. "related": ".xml"
  1402. }
  1403. }
  1404. },
  1405. "Newtonsoft.Json.Bson/1.0.2": {
  1406. "type": "package",
  1407. "dependencies": {
  1408. "Newtonsoft.Json": "12.0.1"
  1409. },
  1410. "compile": {
  1411. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1412. "related": ".pdb;.xml"
  1413. }
  1414. },
  1415. "runtime": {
  1416. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1417. "related": ".pdb;.xml"
  1418. }
  1419. }
  1420. },
  1421. "NPOI/2.6.2": {
  1422. "type": "package",
  1423. "dependencies": {
  1424. "BouncyCastle.Cryptography": "2.2.1",
  1425. "Enums.NET": "4.0.1",
  1426. "MathNet.Numerics.Signed": "4.15.0",
  1427. "Microsoft.IO.RecyclableMemoryStream": "2.3.2",
  1428. "SharpZipLib": "1.3.3",
  1429. "SixLabors.Fonts": "1.0.0",
  1430. "SixLabors.ImageSharp": "2.1.4",
  1431. "System.Configuration.ConfigurationManager": "6.0.0",
  1432. "System.Security.Cryptography.Xml": "6.0.1"
  1433. },
  1434. "compile": {
  1435. "lib/netstandard2.1/NPOI.Core.dll": {
  1436. "related": ".pdb;.xml"
  1437. },
  1438. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1439. "related": ".pdb;.xml"
  1440. },
  1441. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1442. "related": ".pdb;.xml"
  1443. },
  1444. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1445. "related": ".pdb;.xml"
  1446. }
  1447. },
  1448. "runtime": {
  1449. "lib/netstandard2.1/NPOI.Core.dll": {
  1450. "related": ".pdb;.xml"
  1451. },
  1452. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1453. "related": ".pdb;.xml"
  1454. },
  1455. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1456. "related": ".pdb;.xml"
  1457. },
  1458. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1459. "related": ".pdb;.xml"
  1460. }
  1461. }
  1462. },
  1463. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1464. "type": "package",
  1465. "dependencies": {
  1466. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1467. "MySqlConnector": "1.1.0"
  1468. },
  1469. "compile": {
  1470. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1471. "related": ".xml"
  1472. }
  1473. },
  1474. "runtime": {
  1475. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1476. "related": ".xml"
  1477. }
  1478. }
  1479. },
  1480. "QRCoder/1.4.3": {
  1481. "type": "package",
  1482. "dependencies": {
  1483. "System.Drawing.Common": "5.0.3"
  1484. },
  1485. "compile": {
  1486. "lib/net5.0/QRCoder.dll": {}
  1487. },
  1488. "runtime": {
  1489. "lib/net5.0/QRCoder.dll": {}
  1490. }
  1491. },
  1492. "Quartz/3.3.3": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1496. "System.Configuration.ConfigurationManager": "4.7.0",
  1497. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1498. },
  1499. "compile": {
  1500. "lib/netstandard2.0/Quartz.dll": {
  1501. "related": ".xml"
  1502. }
  1503. },
  1504. "runtime": {
  1505. "lib/netstandard2.0/Quartz.dll": {
  1506. "related": ".xml"
  1507. }
  1508. }
  1509. },
  1510. "RabbitMQ.Client/6.8.1": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Memory": "4.5.5",
  1514. "System.Threading.Channels": "7.0.0"
  1515. },
  1516. "compile": {
  1517. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1518. "related": ".xml"
  1519. }
  1520. },
  1521. "runtime": {
  1522. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1523. "related": ".xml"
  1524. }
  1525. }
  1526. },
  1527. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1528. "type": "package",
  1529. "runtimeTargets": {
  1530. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1531. "assetType": "native",
  1532. "rid": "debian.8-x64"
  1533. }
  1534. }
  1535. },
  1536. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1537. "type": "package",
  1538. "runtimeTargets": {
  1539. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1540. "assetType": "native",
  1541. "rid": "fedora.23-x64"
  1542. }
  1543. }
  1544. },
  1545. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1546. "type": "package",
  1547. "runtimeTargets": {
  1548. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1549. "assetType": "native",
  1550. "rid": "fedora.24-x64"
  1551. }
  1552. }
  1553. },
  1554. "runtime.native.System/4.3.0": {
  1555. "type": "package",
  1556. "dependencies": {
  1557. "Microsoft.NETCore.Platforms": "1.1.0",
  1558. "Microsoft.NETCore.Targets": "1.1.0"
  1559. },
  1560. "compile": {
  1561. "lib/netstandard1.0/_._": {}
  1562. },
  1563. "runtime": {
  1564. "lib/netstandard1.0/_._": {}
  1565. }
  1566. },
  1567. "runtime.native.System.IO.Compression/4.3.0": {
  1568. "type": "package",
  1569. "dependencies": {
  1570. "Microsoft.NETCore.Platforms": "1.1.0",
  1571. "Microsoft.NETCore.Targets": "1.1.0"
  1572. },
  1573. "compile": {
  1574. "lib/netstandard1.0/_._": {}
  1575. },
  1576. "runtime": {
  1577. "lib/netstandard1.0/_._": {}
  1578. }
  1579. },
  1580. "runtime.native.System.Net.Http/4.3.0": {
  1581. "type": "package",
  1582. "dependencies": {
  1583. "Microsoft.NETCore.Platforms": "1.1.0",
  1584. "Microsoft.NETCore.Targets": "1.1.0"
  1585. },
  1586. "compile": {
  1587. "lib/netstandard1.0/_._": {}
  1588. },
  1589. "runtime": {
  1590. "lib/netstandard1.0/_._": {}
  1591. }
  1592. },
  1593. "runtime.native.System.Net.Security/4.3.0": {
  1594. "type": "package",
  1595. "dependencies": {
  1596. "Microsoft.NETCore.Platforms": "1.1.0",
  1597. "Microsoft.NETCore.Targets": "1.1.0"
  1598. },
  1599. "compile": {
  1600. "lib/netstandard1.0/_._": {}
  1601. },
  1602. "runtime": {
  1603. "lib/netstandard1.0/_._": {}
  1604. }
  1605. },
  1606. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1607. "type": "package",
  1608. "dependencies": {
  1609. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1610. },
  1611. "compile": {
  1612. "lib/netstandard1.0/_._": {}
  1613. },
  1614. "runtime": {
  1615. "lib/netstandard1.0/_._": {}
  1616. }
  1617. },
  1618. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1619. "type": "package",
  1620. "dependencies": {
  1621. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1622. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1623. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1624. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1625. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1626. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1627. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1628. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1629. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1630. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1631. },
  1632. "compile": {
  1633. "lib/netstandard1.0/_._": {}
  1634. },
  1635. "runtime": {
  1636. "lib/netstandard1.0/_._": {}
  1637. }
  1638. },
  1639. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1640. "type": "package",
  1641. "runtimeTargets": {
  1642. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1643. "assetType": "native",
  1644. "rid": "opensuse.13.2-x64"
  1645. }
  1646. }
  1647. },
  1648. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1649. "type": "package",
  1650. "runtimeTargets": {
  1651. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1652. "assetType": "native",
  1653. "rid": "opensuse.42.1-x64"
  1654. }
  1655. }
  1656. },
  1657. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1658. "type": "package",
  1659. "runtimeTargets": {
  1660. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1661. "assetType": "native",
  1662. "rid": "osx.10.10-x64"
  1663. }
  1664. }
  1665. },
  1666. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1667. "type": "package",
  1668. "runtimeTargets": {
  1669. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1670. "assetType": "native",
  1671. "rid": "osx.10.10-x64"
  1672. }
  1673. }
  1674. },
  1675. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1676. "type": "package",
  1677. "runtimeTargets": {
  1678. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1679. "assetType": "native",
  1680. "rid": "rhel.7-x64"
  1681. }
  1682. }
  1683. },
  1684. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1685. "type": "package",
  1686. "runtimeTargets": {
  1687. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1688. "assetType": "native",
  1689. "rid": "ubuntu.14.04-x64"
  1690. }
  1691. }
  1692. },
  1693. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1694. "type": "package",
  1695. "runtimeTargets": {
  1696. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1697. "assetType": "native",
  1698. "rid": "ubuntu.16.04-x64"
  1699. }
  1700. }
  1701. },
  1702. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1703. "type": "package",
  1704. "runtimeTargets": {
  1705. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1706. "assetType": "native",
  1707. "rid": "ubuntu.16.10-x64"
  1708. }
  1709. }
  1710. },
  1711. "SharpZipLib/1.3.3": {
  1712. "type": "package",
  1713. "compile": {
  1714. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1715. "related": ".pdb;.xml"
  1716. }
  1717. },
  1718. "runtime": {
  1719. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1720. "related": ".pdb;.xml"
  1721. }
  1722. }
  1723. },
  1724. "SixLabors.Fonts/1.0.0": {
  1725. "type": "package",
  1726. "compile": {
  1727. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1728. "related": ".xml"
  1729. }
  1730. },
  1731. "runtime": {
  1732. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1733. "related": ".xml"
  1734. }
  1735. }
  1736. },
  1737. "SixLabors.ImageSharp/2.1.6": {
  1738. "type": "package",
  1739. "dependencies": {
  1740. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1741. "System.Text.Encoding.CodePages": "5.0.0"
  1742. },
  1743. "compile": {
  1744. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1745. "related": ".xml"
  1746. }
  1747. },
  1748. "runtime": {
  1749. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1750. "related": ".xml"
  1751. }
  1752. }
  1753. },
  1754. "SSH.NET/2020.0.0-beta1": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "SshNet.Security.Cryptography": "[1.3.0]"
  1758. },
  1759. "compile": {
  1760. "lib/netstandard2.0/Renci.SshNet.dll": {
  1761. "related": ".xml"
  1762. }
  1763. },
  1764. "runtime": {
  1765. "lib/netstandard2.0/Renci.SshNet.dll": {
  1766. "related": ".xml"
  1767. }
  1768. }
  1769. },
  1770. "SshNet.Security.Cryptography/1.3.0": {
  1771. "type": "package",
  1772. "compile": {
  1773. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1774. "related": ".xml"
  1775. }
  1776. },
  1777. "runtime": {
  1778. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1779. "related": ".xml"
  1780. }
  1781. }
  1782. },
  1783. "StackExchange.Redis/1.2.4": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "NETStandard.Library": "1.6.1",
  1787. "System.Collections": "4.3.0",
  1788. "System.Collections.Concurrent": "4.3.0",
  1789. "System.Collections.NonGeneric": "4.3.0",
  1790. "System.Diagnostics.Tools": "4.3.0",
  1791. "System.IO.Compression": "4.3.0",
  1792. "System.IO.FileSystem": "4.3.0",
  1793. "System.Linq": "4.3.0",
  1794. "System.Net.NameResolution": "4.3.0",
  1795. "System.Net.Security": "4.3.0",
  1796. "System.Net.Sockets": "4.3.0",
  1797. "System.Reflection.Emit": "4.3.0",
  1798. "System.Reflection.Emit.Lightweight": "4.3.0",
  1799. "System.Reflection.TypeExtensions": "4.3.0",
  1800. "System.Runtime.Extensions": "4.3.0",
  1801. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1802. "System.Security.Cryptography.Algorithms": "4.3.0",
  1803. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1804. "System.Text.RegularExpressions": "4.3.0",
  1805. "System.Threading": "4.3.0",
  1806. "System.Threading.Thread": "4.3.0",
  1807. "System.Threading.ThreadPool": "4.3.0",
  1808. "System.Threading.Timer": "4.3.0"
  1809. },
  1810. "compile": {
  1811. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1812. "related": ".xml"
  1813. }
  1814. },
  1815. "runtime": {
  1816. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1817. "related": ".xml"
  1818. }
  1819. }
  1820. },
  1821. "Swashbuckle.AspNetCore/5.6.3": {
  1822. "type": "package",
  1823. "dependencies": {
  1824. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1825. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1826. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1827. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1828. },
  1829. "build": {
  1830. "build/Swashbuckle.AspNetCore.props": {}
  1831. }
  1832. },
  1833. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "Microsoft.OpenApi": "1.2.3"
  1837. },
  1838. "compile": {
  1839. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1840. "related": ".pdb;.xml"
  1841. }
  1842. },
  1843. "runtime": {
  1844. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1845. "related": ".pdb;.xml"
  1846. }
  1847. },
  1848. "frameworkReferences": [
  1849. "Microsoft.AspNetCore.App"
  1850. ]
  1851. },
  1852. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1853. "type": "package",
  1854. "dependencies": {
  1855. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1856. },
  1857. "compile": {
  1858. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1859. "related": ".pdb;.xml"
  1860. }
  1861. },
  1862. "runtime": {
  1863. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1864. "related": ".pdb;.xml"
  1865. }
  1866. },
  1867. "frameworkReferences": [
  1868. "Microsoft.AspNetCore.App"
  1869. ]
  1870. },
  1871. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1872. "type": "package",
  1873. "compile": {
  1874. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1875. "related": ".pdb;.xml"
  1876. }
  1877. },
  1878. "runtime": {
  1879. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1880. "related": ".pdb;.xml"
  1881. }
  1882. },
  1883. "frameworkReferences": [
  1884. "Microsoft.AspNetCore.App"
  1885. ]
  1886. },
  1887. "System.AppContext/4.3.0": {
  1888. "type": "package",
  1889. "dependencies": {
  1890. "System.Runtime": "4.3.0"
  1891. },
  1892. "compile": {
  1893. "ref/netstandard1.6/System.AppContext.dll": {
  1894. "related": ".xml"
  1895. }
  1896. },
  1897. "runtime": {
  1898. "lib/netstandard1.6/System.AppContext.dll": {}
  1899. }
  1900. },
  1901. "System.Buffers/4.5.1": {
  1902. "type": "package",
  1903. "compile": {
  1904. "ref/netcoreapp2.0/_._": {}
  1905. },
  1906. "runtime": {
  1907. "lib/netcoreapp2.0/_._": {}
  1908. }
  1909. },
  1910. "System.Collections/4.3.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "Microsoft.NETCore.Platforms": "1.1.0",
  1914. "Microsoft.NETCore.Targets": "1.1.0",
  1915. "System.Runtime": "4.3.0"
  1916. },
  1917. "compile": {
  1918. "ref/netstandard1.3/System.Collections.dll": {
  1919. "related": ".xml"
  1920. }
  1921. }
  1922. },
  1923. "System.Collections.Concurrent/4.3.0": {
  1924. "type": "package",
  1925. "dependencies": {
  1926. "System.Collections": "4.3.0",
  1927. "System.Diagnostics.Debug": "4.3.0",
  1928. "System.Diagnostics.Tracing": "4.3.0",
  1929. "System.Globalization": "4.3.0",
  1930. "System.Reflection": "4.3.0",
  1931. "System.Resources.ResourceManager": "4.3.0",
  1932. "System.Runtime": "4.3.0",
  1933. "System.Runtime.Extensions": "4.3.0",
  1934. "System.Threading": "4.3.0",
  1935. "System.Threading.Tasks": "4.3.0"
  1936. },
  1937. "compile": {
  1938. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1939. "related": ".xml"
  1940. }
  1941. },
  1942. "runtime": {
  1943. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1944. }
  1945. },
  1946. "System.Collections.Immutable/5.0.0": {
  1947. "type": "package",
  1948. "compile": {
  1949. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1950. "related": ".xml"
  1951. }
  1952. },
  1953. "runtime": {
  1954. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1955. "related": ".xml"
  1956. }
  1957. }
  1958. },
  1959. "System.Collections.NonGeneric/4.3.0": {
  1960. "type": "package",
  1961. "dependencies": {
  1962. "System.Diagnostics.Debug": "4.3.0",
  1963. "System.Globalization": "4.3.0",
  1964. "System.Resources.ResourceManager": "4.3.0",
  1965. "System.Runtime": "4.3.0",
  1966. "System.Runtime.Extensions": "4.3.0",
  1967. "System.Threading": "4.3.0"
  1968. },
  1969. "compile": {
  1970. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1971. "related": ".xml"
  1972. }
  1973. },
  1974. "runtime": {
  1975. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1976. }
  1977. },
  1978. "System.Collections.Specialized/4.3.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "System.Collections.NonGeneric": "4.3.0",
  1982. "System.Globalization": "4.3.0",
  1983. "System.Globalization.Extensions": "4.3.0",
  1984. "System.Resources.ResourceManager": "4.3.0",
  1985. "System.Runtime": "4.3.0",
  1986. "System.Runtime.Extensions": "4.3.0",
  1987. "System.Threading": "4.3.0"
  1988. },
  1989. "compile": {
  1990. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1991. "related": ".xml"
  1992. }
  1993. },
  1994. "runtime": {
  1995. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1996. }
  1997. },
  1998. "System.ComponentModel/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "System.Runtime": "4.3.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.0/System.ComponentModel.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2010. }
  2011. },
  2012. "System.ComponentModel.Annotations/5.0.0": {
  2013. "type": "package",
  2014. "compile": {
  2015. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2016. "related": ".xml"
  2017. }
  2018. },
  2019. "runtime": {
  2020. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2021. "related": ".xml"
  2022. }
  2023. }
  2024. },
  2025. "System.ComponentModel.Primitives/4.3.0": {
  2026. "type": "package",
  2027. "dependencies": {
  2028. "System.ComponentModel": "4.3.0",
  2029. "System.Resources.ResourceManager": "4.3.0",
  2030. "System.Runtime": "4.3.0"
  2031. },
  2032. "compile": {
  2033. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  2034. "related": ".xml"
  2035. }
  2036. },
  2037. "runtime": {
  2038. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2039. }
  2040. },
  2041. "System.ComponentModel.TypeConverter/4.3.0": {
  2042. "type": "package",
  2043. "dependencies": {
  2044. "System.Collections": "4.3.0",
  2045. "System.Collections.NonGeneric": "4.3.0",
  2046. "System.Collections.Specialized": "4.3.0",
  2047. "System.ComponentModel": "4.3.0",
  2048. "System.ComponentModel.Primitives": "4.3.0",
  2049. "System.Globalization": "4.3.0",
  2050. "System.Linq": "4.3.0",
  2051. "System.Reflection": "4.3.0",
  2052. "System.Reflection.Extensions": "4.3.0",
  2053. "System.Reflection.Primitives": "4.3.0",
  2054. "System.Reflection.TypeExtensions": "4.3.0",
  2055. "System.Resources.ResourceManager": "4.3.0",
  2056. "System.Runtime": "4.3.0",
  2057. "System.Runtime.Extensions": "4.3.0",
  2058. "System.Threading": "4.3.0"
  2059. },
  2060. "compile": {
  2061. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  2062. "related": ".xml"
  2063. }
  2064. },
  2065. "runtime": {
  2066. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2067. }
  2068. },
  2069. "System.Configuration.ConfigurationManager/6.0.0": {
  2070. "type": "package",
  2071. "dependencies": {
  2072. "System.Security.Cryptography.ProtectedData": "6.0.0",
  2073. "System.Security.Permissions": "6.0.0"
  2074. },
  2075. "compile": {
  2076. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2077. "related": ".xml"
  2078. }
  2079. },
  2080. "runtime": {
  2081. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2082. "related": ".xml"
  2083. }
  2084. },
  2085. "build": {
  2086. "buildTransitive/netcoreapp3.1/_._": {}
  2087. }
  2088. },
  2089. "System.Console/4.3.0": {
  2090. "type": "package",
  2091. "dependencies": {
  2092. "Microsoft.NETCore.Platforms": "1.1.0",
  2093. "Microsoft.NETCore.Targets": "1.1.0",
  2094. "System.IO": "4.3.0",
  2095. "System.Runtime": "4.3.0",
  2096. "System.Text.Encoding": "4.3.0"
  2097. },
  2098. "compile": {
  2099. "ref/netstandard1.3/System.Console.dll": {
  2100. "related": ".xml"
  2101. }
  2102. }
  2103. },
  2104. "System.Diagnostics.Debug/4.3.0": {
  2105. "type": "package",
  2106. "dependencies": {
  2107. "Microsoft.NETCore.Platforms": "1.1.0",
  2108. "Microsoft.NETCore.Targets": "1.1.0",
  2109. "System.Runtime": "4.3.0"
  2110. },
  2111. "compile": {
  2112. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2113. "related": ".xml"
  2114. }
  2115. }
  2116. },
  2117. "System.Diagnostics.DiagnosticSource/9.0.4": {
  2118. "type": "package",
  2119. "dependencies": {
  2120. "System.Memory": "4.5.5",
  2121. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2122. },
  2123. "compile": {
  2124. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  2125. "related": ".xml"
  2126. }
  2127. },
  2128. "runtime": {
  2129. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  2130. "related": ".xml"
  2131. }
  2132. },
  2133. "build": {
  2134. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  2135. }
  2136. },
  2137. "System.Diagnostics.Tools/4.3.0": {
  2138. "type": "package",
  2139. "dependencies": {
  2140. "Microsoft.NETCore.Platforms": "1.1.0",
  2141. "Microsoft.NETCore.Targets": "1.1.0",
  2142. "System.Runtime": "4.3.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.Diagnostics.TraceSource/4.3.0": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "Microsoft.NETCore.Platforms": "1.1.0",
  2154. "System.Collections": "4.3.0",
  2155. "System.Diagnostics.Debug": "4.3.0",
  2156. "System.Globalization": "4.3.0",
  2157. "System.Resources.ResourceManager": "4.3.0",
  2158. "System.Runtime": "4.3.0",
  2159. "System.Runtime.Extensions": "4.3.0",
  2160. "System.Threading": "4.3.0",
  2161. "runtime.native.System": "4.3.0"
  2162. },
  2163. "compile": {
  2164. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2165. "related": ".xml"
  2166. }
  2167. },
  2168. "runtimeTargets": {
  2169. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2170. "assetType": "runtime",
  2171. "rid": "unix"
  2172. },
  2173. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2174. "assetType": "runtime",
  2175. "rid": "win"
  2176. }
  2177. }
  2178. },
  2179. "System.Diagnostics.Tracing/4.3.0": {
  2180. "type": "package",
  2181. "dependencies": {
  2182. "Microsoft.NETCore.Platforms": "1.1.0",
  2183. "Microsoft.NETCore.Targets": "1.1.0",
  2184. "System.Runtime": "4.3.0"
  2185. },
  2186. "compile": {
  2187. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2188. "related": ".xml"
  2189. }
  2190. }
  2191. },
  2192. "System.Drawing.Common/6.0.0": {
  2193. "type": "package",
  2194. "dependencies": {
  2195. "Microsoft.Win32.SystemEvents": "6.0.0"
  2196. },
  2197. "compile": {
  2198. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2204. "related": ".xml"
  2205. }
  2206. },
  2207. "build": {
  2208. "buildTransitive/netcoreapp3.1/_._": {}
  2209. },
  2210. "runtimeTargets": {
  2211. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2212. "assetType": "runtime",
  2213. "rid": "unix"
  2214. },
  2215. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2216. "assetType": "runtime",
  2217. "rid": "win"
  2218. }
  2219. }
  2220. },
  2221. "System.Dynamic.Runtime/4.3.0": {
  2222. "type": "package",
  2223. "dependencies": {
  2224. "System.Collections": "4.3.0",
  2225. "System.Diagnostics.Debug": "4.3.0",
  2226. "System.Linq": "4.3.0",
  2227. "System.Linq.Expressions": "4.3.0",
  2228. "System.ObjectModel": "4.3.0",
  2229. "System.Reflection": "4.3.0",
  2230. "System.Reflection.Emit": "4.3.0",
  2231. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2232. "System.Reflection.Primitives": "4.3.0",
  2233. "System.Reflection.TypeExtensions": "4.3.0",
  2234. "System.Resources.ResourceManager": "4.3.0",
  2235. "System.Runtime": "4.3.0",
  2236. "System.Runtime.Extensions": "4.3.0",
  2237. "System.Threading": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2246. }
  2247. },
  2248. "System.Formats.Asn1/6.0.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "System.Buffers": "4.5.1",
  2252. "System.Memory": "4.5.4"
  2253. },
  2254. "compile": {
  2255. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2256. "related": ".xml"
  2257. }
  2258. },
  2259. "runtime": {
  2260. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2261. "related": ".xml"
  2262. }
  2263. },
  2264. "build": {
  2265. "buildTransitive/netcoreapp3.1/_._": {}
  2266. }
  2267. },
  2268. "System.Globalization/4.3.0": {
  2269. "type": "package",
  2270. "dependencies": {
  2271. "Microsoft.NETCore.Platforms": "1.1.0",
  2272. "Microsoft.NETCore.Targets": "1.1.0",
  2273. "System.Runtime": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.3/System.Globalization.dll": {
  2277. "related": ".xml"
  2278. }
  2279. }
  2280. },
  2281. "System.Globalization.Calendars/4.3.0": {
  2282. "type": "package",
  2283. "dependencies": {
  2284. "Microsoft.NETCore.Platforms": "1.1.0",
  2285. "Microsoft.NETCore.Targets": "1.1.0",
  2286. "System.Globalization": "4.3.0",
  2287. "System.Runtime": "4.3.0"
  2288. },
  2289. "compile": {
  2290. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2291. "related": ".xml"
  2292. }
  2293. }
  2294. },
  2295. "System.Globalization.Extensions/4.3.0": {
  2296. "type": "package",
  2297. "dependencies": {
  2298. "Microsoft.NETCore.Platforms": "1.1.0",
  2299. "System.Globalization": "4.3.0",
  2300. "System.Resources.ResourceManager": "4.3.0",
  2301. "System.Runtime": "4.3.0",
  2302. "System.Runtime.Extensions": "4.3.0",
  2303. "System.Runtime.InteropServices": "4.3.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.3/_._": {
  2307. "related": ".xml"
  2308. }
  2309. },
  2310. "runtimeTargets": {
  2311. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2312. "assetType": "runtime",
  2313. "rid": "unix"
  2314. },
  2315. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2316. "assetType": "runtime",
  2317. "rid": "win"
  2318. }
  2319. }
  2320. },
  2321. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  2322. "type": "package",
  2323. "dependencies": {
  2324. "Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
  2325. "Microsoft.IdentityModel.Tokens": "6.7.1"
  2326. },
  2327. "compile": {
  2328. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2334. "related": ".xml"
  2335. }
  2336. }
  2337. },
  2338. "System.IO/4.3.0": {
  2339. "type": "package",
  2340. "dependencies": {
  2341. "Microsoft.NETCore.Platforms": "1.1.0",
  2342. "Microsoft.NETCore.Targets": "1.1.0",
  2343. "System.Runtime": "4.3.0",
  2344. "System.Text.Encoding": "4.3.0",
  2345. "System.Threading.Tasks": "4.3.0"
  2346. },
  2347. "compile": {
  2348. "ref/netstandard1.5/System.IO.dll": {
  2349. "related": ".xml"
  2350. }
  2351. }
  2352. },
  2353. "System.IO.Compression/4.3.0": {
  2354. "type": "package",
  2355. "dependencies": {
  2356. "Microsoft.NETCore.Platforms": "1.1.0",
  2357. "System.Buffers": "4.3.0",
  2358. "System.Collections": "4.3.0",
  2359. "System.Diagnostics.Debug": "4.3.0",
  2360. "System.IO": "4.3.0",
  2361. "System.Resources.ResourceManager": "4.3.0",
  2362. "System.Runtime": "4.3.0",
  2363. "System.Runtime.Extensions": "4.3.0",
  2364. "System.Runtime.Handles": "4.3.0",
  2365. "System.Runtime.InteropServices": "4.3.0",
  2366. "System.Text.Encoding": "4.3.0",
  2367. "System.Threading": "4.3.0",
  2368. "System.Threading.Tasks": "4.3.0",
  2369. "runtime.native.System": "4.3.0",
  2370. "runtime.native.System.IO.Compression": "4.3.0"
  2371. },
  2372. "compile": {
  2373. "ref/netstandard1.3/System.IO.Compression.dll": {
  2374. "related": ".xml"
  2375. }
  2376. },
  2377. "runtimeTargets": {
  2378. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2379. "assetType": "runtime",
  2380. "rid": "unix"
  2381. },
  2382. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2383. "assetType": "runtime",
  2384. "rid": "win"
  2385. }
  2386. }
  2387. },
  2388. "System.IO.Compression.ZipFile/4.3.0": {
  2389. "type": "package",
  2390. "dependencies": {
  2391. "System.Buffers": "4.3.0",
  2392. "System.IO": "4.3.0",
  2393. "System.IO.Compression": "4.3.0",
  2394. "System.IO.FileSystem": "4.3.0",
  2395. "System.IO.FileSystem.Primitives": "4.3.0",
  2396. "System.Resources.ResourceManager": "4.3.0",
  2397. "System.Runtime": "4.3.0",
  2398. "System.Runtime.Extensions": "4.3.0",
  2399. "System.Text.Encoding": "4.3.0"
  2400. },
  2401. "compile": {
  2402. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2403. "related": ".xml"
  2404. }
  2405. },
  2406. "runtime": {
  2407. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2408. }
  2409. },
  2410. "System.IO.FileSystem/4.3.0": {
  2411. "type": "package",
  2412. "dependencies": {
  2413. "Microsoft.NETCore.Platforms": "1.1.0",
  2414. "Microsoft.NETCore.Targets": "1.1.0",
  2415. "System.IO": "4.3.0",
  2416. "System.IO.FileSystem.Primitives": "4.3.0",
  2417. "System.Runtime": "4.3.0",
  2418. "System.Runtime.Handles": "4.3.0",
  2419. "System.Text.Encoding": "4.3.0",
  2420. "System.Threading.Tasks": "4.3.0"
  2421. },
  2422. "compile": {
  2423. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2424. "related": ".xml"
  2425. }
  2426. }
  2427. },
  2428. "System.IO.FileSystem.Primitives/4.3.0": {
  2429. "type": "package",
  2430. "dependencies": {
  2431. "System.Runtime": "4.3.0"
  2432. },
  2433. "compile": {
  2434. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2435. "related": ".xml"
  2436. }
  2437. },
  2438. "runtime": {
  2439. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2440. }
  2441. },
  2442. "System.IO.Hashing/9.0.4": {
  2443. "type": "package",
  2444. "dependencies": {
  2445. "System.Buffers": "4.5.1",
  2446. "System.Memory": "4.5.5"
  2447. },
  2448. "compile": {
  2449. "lib/netstandard2.0/System.IO.Hashing.dll": {
  2450. "related": ".xml"
  2451. }
  2452. },
  2453. "runtime": {
  2454. "lib/netstandard2.0/System.IO.Hashing.dll": {
  2455. "related": ".xml"
  2456. }
  2457. },
  2458. "build": {
  2459. "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets": {}
  2460. }
  2461. },
  2462. "System.IO.Pipelines/9.0.1": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "System.Buffers": "4.5.1",
  2466. "System.Memory": "4.5.5",
  2467. "System.Threading.Tasks.Extensions": "4.5.4"
  2468. },
  2469. "compile": {
  2470. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  2471. "related": ".xml"
  2472. }
  2473. },
  2474. "runtime": {
  2475. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  2476. "related": ".xml"
  2477. }
  2478. },
  2479. "build": {
  2480. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets": {}
  2481. }
  2482. },
  2483. "System.Linq/4.3.0": {
  2484. "type": "package",
  2485. "dependencies": {
  2486. "System.Collections": "4.3.0",
  2487. "System.Diagnostics.Debug": "4.3.0",
  2488. "System.Resources.ResourceManager": "4.3.0",
  2489. "System.Runtime": "4.3.0",
  2490. "System.Runtime.Extensions": "4.3.0"
  2491. },
  2492. "compile": {
  2493. "ref/netstandard1.6/System.Linq.dll": {
  2494. "related": ".xml"
  2495. }
  2496. },
  2497. "runtime": {
  2498. "lib/netstandard1.6/System.Linq.dll": {}
  2499. }
  2500. },
  2501. "System.Linq.Expressions/4.3.0": {
  2502. "type": "package",
  2503. "dependencies": {
  2504. "System.Collections": "4.3.0",
  2505. "System.Diagnostics.Debug": "4.3.0",
  2506. "System.Globalization": "4.3.0",
  2507. "System.IO": "4.3.0",
  2508. "System.Linq": "4.3.0",
  2509. "System.ObjectModel": "4.3.0",
  2510. "System.Reflection": "4.3.0",
  2511. "System.Reflection.Emit": "4.3.0",
  2512. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2513. "System.Reflection.Emit.Lightweight": "4.3.0",
  2514. "System.Reflection.Extensions": "4.3.0",
  2515. "System.Reflection.Primitives": "4.3.0",
  2516. "System.Reflection.TypeExtensions": "4.3.0",
  2517. "System.Resources.ResourceManager": "4.3.0",
  2518. "System.Runtime": "4.3.0",
  2519. "System.Runtime.Extensions": "4.3.0",
  2520. "System.Threading": "4.3.0"
  2521. },
  2522. "compile": {
  2523. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2524. "related": ".xml"
  2525. }
  2526. },
  2527. "runtime": {
  2528. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2529. }
  2530. },
  2531. "System.Memory/4.5.5": {
  2532. "type": "package",
  2533. "compile": {
  2534. "ref/netcoreapp2.1/_._": {}
  2535. },
  2536. "runtime": {
  2537. "lib/netcoreapp2.1/_._": {}
  2538. }
  2539. },
  2540. "System.Net.Http/4.3.4": {
  2541. "type": "package",
  2542. "dependencies": {
  2543. "Microsoft.NETCore.Platforms": "1.1.1",
  2544. "System.Collections": "4.3.0",
  2545. "System.Diagnostics.Debug": "4.3.0",
  2546. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2547. "System.Diagnostics.Tracing": "4.3.0",
  2548. "System.Globalization": "4.3.0",
  2549. "System.Globalization.Extensions": "4.3.0",
  2550. "System.IO": "4.3.0",
  2551. "System.IO.FileSystem": "4.3.0",
  2552. "System.Net.Primitives": "4.3.0",
  2553. "System.Resources.ResourceManager": "4.3.0",
  2554. "System.Runtime": "4.3.0",
  2555. "System.Runtime.Extensions": "4.3.0",
  2556. "System.Runtime.Handles": "4.3.0",
  2557. "System.Runtime.InteropServices": "4.3.0",
  2558. "System.Security.Cryptography.Algorithms": "4.3.0",
  2559. "System.Security.Cryptography.Encoding": "4.3.0",
  2560. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2561. "System.Security.Cryptography.Primitives": "4.3.0",
  2562. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2563. "System.Text.Encoding": "4.3.0",
  2564. "System.Threading": "4.3.0",
  2565. "System.Threading.Tasks": "4.3.0",
  2566. "runtime.native.System": "4.3.0",
  2567. "runtime.native.System.Net.Http": "4.3.0",
  2568. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2569. },
  2570. "compile": {
  2571. "ref/netstandard1.3/System.Net.Http.dll": {}
  2572. },
  2573. "runtimeTargets": {
  2574. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2575. "assetType": "runtime",
  2576. "rid": "unix"
  2577. },
  2578. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2579. "assetType": "runtime",
  2580. "rid": "win"
  2581. }
  2582. }
  2583. },
  2584. "System.Net.NameResolution/4.3.0": {
  2585. "type": "package",
  2586. "dependencies": {
  2587. "Microsoft.NETCore.Platforms": "1.1.0",
  2588. "System.Collections": "4.3.0",
  2589. "System.Diagnostics.Tracing": "4.3.0",
  2590. "System.Globalization": "4.3.0",
  2591. "System.Net.Primitives": "4.3.0",
  2592. "System.Resources.ResourceManager": "4.3.0",
  2593. "System.Runtime": "4.3.0",
  2594. "System.Runtime.Extensions": "4.3.0",
  2595. "System.Runtime.Handles": "4.3.0",
  2596. "System.Runtime.InteropServices": "4.3.0",
  2597. "System.Security.Principal.Windows": "4.3.0",
  2598. "System.Threading": "4.3.0",
  2599. "System.Threading.Tasks": "4.3.0",
  2600. "runtime.native.System": "4.3.0"
  2601. },
  2602. "compile": {
  2603. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2604. "related": ".xml"
  2605. }
  2606. },
  2607. "runtimeTargets": {
  2608. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2609. "assetType": "runtime",
  2610. "rid": "unix"
  2611. },
  2612. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2613. "assetType": "runtime",
  2614. "rid": "win"
  2615. }
  2616. }
  2617. },
  2618. "System.Net.Primitives/4.3.1": {
  2619. "type": "package",
  2620. "dependencies": {
  2621. "Microsoft.NETCore.Platforms": "1.1.1",
  2622. "Microsoft.NETCore.Targets": "1.1.3",
  2623. "System.Runtime": "4.3.1",
  2624. "System.Runtime.Handles": "4.3.0"
  2625. },
  2626. "compile": {
  2627. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2628. "related": ".xml"
  2629. }
  2630. }
  2631. },
  2632. "System.Net.Security/4.3.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "Microsoft.NETCore.Platforms": "1.1.0",
  2636. "Microsoft.Win32.Primitives": "4.3.0",
  2637. "System.Collections": "4.3.0",
  2638. "System.Collections.Concurrent": "4.3.0",
  2639. "System.Diagnostics.Tracing": "4.3.0",
  2640. "System.Globalization": "4.3.0",
  2641. "System.Globalization.Extensions": "4.3.0",
  2642. "System.IO": "4.3.0",
  2643. "System.Net.Primitives": "4.3.0",
  2644. "System.Resources.ResourceManager": "4.3.0",
  2645. "System.Runtime": "4.3.0",
  2646. "System.Runtime.Extensions": "4.3.0",
  2647. "System.Runtime.Handles": "4.3.0",
  2648. "System.Runtime.InteropServices": "4.3.0",
  2649. "System.Security.Claims": "4.3.0",
  2650. "System.Security.Cryptography.Algorithms": "4.3.0",
  2651. "System.Security.Cryptography.Encoding": "4.3.0",
  2652. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2653. "System.Security.Cryptography.Primitives": "4.3.0",
  2654. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2655. "System.Security.Principal": "4.3.0",
  2656. "System.Text.Encoding": "4.3.0",
  2657. "System.Threading": "4.3.0",
  2658. "System.Threading.Tasks": "4.3.0",
  2659. "System.Threading.ThreadPool": "4.3.0",
  2660. "runtime.native.System": "4.3.0",
  2661. "runtime.native.System.Net.Security": "4.3.0",
  2662. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2663. },
  2664. "compile": {
  2665. "ref/netstandard1.3/System.Net.Security.dll": {
  2666. "related": ".xml"
  2667. }
  2668. },
  2669. "runtimeTargets": {
  2670. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2671. "assetType": "runtime",
  2672. "rid": "unix"
  2673. },
  2674. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2675. "assetType": "runtime",
  2676. "rid": "win"
  2677. }
  2678. }
  2679. },
  2680. "System.Net.Sockets/4.3.0": {
  2681. "type": "package",
  2682. "dependencies": {
  2683. "Microsoft.NETCore.Platforms": "1.1.0",
  2684. "Microsoft.NETCore.Targets": "1.1.0",
  2685. "System.IO": "4.3.0",
  2686. "System.Net.Primitives": "4.3.0",
  2687. "System.Runtime": "4.3.0",
  2688. "System.Threading.Tasks": "4.3.0"
  2689. },
  2690. "compile": {
  2691. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2692. "related": ".xml"
  2693. }
  2694. }
  2695. },
  2696. "System.ObjectModel/4.3.0": {
  2697. "type": "package",
  2698. "dependencies": {
  2699. "System.Collections": "4.3.0",
  2700. "System.Diagnostics.Debug": "4.3.0",
  2701. "System.Resources.ResourceManager": "4.3.0",
  2702. "System.Runtime": "4.3.0",
  2703. "System.Threading": "4.3.0"
  2704. },
  2705. "compile": {
  2706. "ref/netstandard1.3/System.ObjectModel.dll": {
  2707. "related": ".xml"
  2708. }
  2709. },
  2710. "runtime": {
  2711. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2712. }
  2713. },
  2714. "System.Reactive/6.0.1": {
  2715. "type": "package",
  2716. "dependencies": {
  2717. "System.Threading.Tasks.Extensions": "4.5.4"
  2718. },
  2719. "compile": {
  2720. "lib/netstandard2.0/System.Reactive.dll": {
  2721. "related": ".xml"
  2722. }
  2723. },
  2724. "runtime": {
  2725. "lib/netstandard2.0/System.Reactive.dll": {
  2726. "related": ".xml"
  2727. }
  2728. }
  2729. },
  2730. "System.Reflection/4.3.0": {
  2731. "type": "package",
  2732. "dependencies": {
  2733. "Microsoft.NETCore.Platforms": "1.1.0",
  2734. "Microsoft.NETCore.Targets": "1.1.0",
  2735. "System.IO": "4.3.0",
  2736. "System.Reflection.Primitives": "4.3.0",
  2737. "System.Runtime": "4.3.0"
  2738. },
  2739. "compile": {
  2740. "ref/netstandard1.5/System.Reflection.dll": {
  2741. "related": ".xml"
  2742. }
  2743. }
  2744. },
  2745. "System.Reflection.Emit/4.7.0": {
  2746. "type": "package",
  2747. "compile": {
  2748. "ref/netcoreapp2.0/_._": {}
  2749. },
  2750. "runtime": {
  2751. "lib/netcoreapp2.0/_._": {}
  2752. }
  2753. },
  2754. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2755. "type": "package",
  2756. "dependencies": {
  2757. "System.Reflection": "4.3.0",
  2758. "System.Reflection.Primitives": "4.3.0",
  2759. "System.Runtime": "4.3.0"
  2760. },
  2761. "compile": {
  2762. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2763. "related": ".xml"
  2764. }
  2765. },
  2766. "runtime": {
  2767. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2768. }
  2769. },
  2770. "System.Reflection.Emit.Lightweight/4.3.0": {
  2771. "type": "package",
  2772. "dependencies": {
  2773. "System.Reflection": "4.3.0",
  2774. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2775. "System.Reflection.Primitives": "4.3.0",
  2776. "System.Runtime": "4.3.0"
  2777. },
  2778. "compile": {
  2779. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2780. "related": ".xml"
  2781. }
  2782. },
  2783. "runtime": {
  2784. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2785. }
  2786. },
  2787. "System.Reflection.Extensions/4.3.0": {
  2788. "type": "package",
  2789. "dependencies": {
  2790. "Microsoft.NETCore.Platforms": "1.1.0",
  2791. "Microsoft.NETCore.Targets": "1.1.0",
  2792. "System.Reflection": "4.3.0",
  2793. "System.Runtime": "4.3.0"
  2794. },
  2795. "compile": {
  2796. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2797. "related": ".xml"
  2798. }
  2799. }
  2800. },
  2801. "System.Reflection.Primitives/4.3.0": {
  2802. "type": "package",
  2803. "dependencies": {
  2804. "Microsoft.NETCore.Platforms": "1.1.0",
  2805. "Microsoft.NETCore.Targets": "1.1.0",
  2806. "System.Runtime": "4.3.0"
  2807. },
  2808. "compile": {
  2809. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2810. "related": ".xml"
  2811. }
  2812. }
  2813. },
  2814. "System.Reflection.TypeExtensions/4.3.0": {
  2815. "type": "package",
  2816. "dependencies": {
  2817. "System.Reflection": "4.3.0",
  2818. "System.Runtime": "4.3.0"
  2819. },
  2820. "compile": {
  2821. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2822. "related": ".xml"
  2823. }
  2824. },
  2825. "runtime": {
  2826. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2827. }
  2828. },
  2829. "System.Resources.ResourceManager/4.3.0": {
  2830. "type": "package",
  2831. "dependencies": {
  2832. "Microsoft.NETCore.Platforms": "1.1.0",
  2833. "Microsoft.NETCore.Targets": "1.1.0",
  2834. "System.Globalization": "4.3.0",
  2835. "System.Reflection": "4.3.0",
  2836. "System.Runtime": "4.3.0"
  2837. },
  2838. "compile": {
  2839. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2840. "related": ".xml"
  2841. }
  2842. }
  2843. },
  2844. "System.Runtime/4.3.1": {
  2845. "type": "package",
  2846. "dependencies": {
  2847. "Microsoft.NETCore.Platforms": "1.1.1",
  2848. "Microsoft.NETCore.Targets": "1.1.3"
  2849. },
  2850. "compile": {
  2851. "ref/netstandard1.5/System.Runtime.dll": {
  2852. "related": ".xml"
  2853. }
  2854. }
  2855. },
  2856. "System.Runtime.CompilerServices.Unsafe/6.1.0": {
  2857. "type": "package",
  2858. "compile": {
  2859. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2860. "related": ".xml"
  2861. }
  2862. },
  2863. "runtime": {
  2864. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2865. "related": ".xml"
  2866. }
  2867. },
  2868. "build": {
  2869. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets": {}
  2870. }
  2871. },
  2872. "System.Runtime.Extensions/4.3.0": {
  2873. "type": "package",
  2874. "dependencies": {
  2875. "Microsoft.NETCore.Platforms": "1.1.0",
  2876. "Microsoft.NETCore.Targets": "1.1.0",
  2877. "System.Runtime": "4.3.0"
  2878. },
  2879. "compile": {
  2880. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2881. "related": ".xml"
  2882. }
  2883. }
  2884. },
  2885. "System.Runtime.Handles/4.3.0": {
  2886. "type": "package",
  2887. "dependencies": {
  2888. "Microsoft.NETCore.Platforms": "1.1.0",
  2889. "Microsoft.NETCore.Targets": "1.1.0",
  2890. "System.Runtime": "4.3.0"
  2891. },
  2892. "compile": {
  2893. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2894. "related": ".xml"
  2895. }
  2896. }
  2897. },
  2898. "System.Runtime.InteropServices/4.3.0": {
  2899. "type": "package",
  2900. "dependencies": {
  2901. "Microsoft.NETCore.Platforms": "1.1.0",
  2902. "Microsoft.NETCore.Targets": "1.1.0",
  2903. "System.Reflection": "4.3.0",
  2904. "System.Reflection.Primitives": "4.3.0",
  2905. "System.Runtime": "4.3.0",
  2906. "System.Runtime.Handles": "4.3.0"
  2907. },
  2908. "compile": {
  2909. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2910. }
  2911. },
  2912. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2913. "type": "package",
  2914. "dependencies": {
  2915. "System.Reflection": "4.3.0",
  2916. "System.Reflection.Extensions": "4.3.0",
  2917. "System.Resources.ResourceManager": "4.3.0",
  2918. "System.Runtime": "4.3.0",
  2919. "System.Runtime.InteropServices": "4.3.0",
  2920. "System.Threading": "4.3.0",
  2921. "runtime.native.System": "4.3.0"
  2922. },
  2923. "compile": {
  2924. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2925. },
  2926. "runtime": {
  2927. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2928. },
  2929. "runtimeTargets": {
  2930. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2931. "assetType": "runtime",
  2932. "rid": "unix"
  2933. },
  2934. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2935. "assetType": "runtime",
  2936. "rid": "win"
  2937. }
  2938. }
  2939. },
  2940. "System.Runtime.Numerics/4.3.0": {
  2941. "type": "package",
  2942. "dependencies": {
  2943. "System.Globalization": "4.3.0",
  2944. "System.Resources.ResourceManager": "4.3.0",
  2945. "System.Runtime": "4.3.0",
  2946. "System.Runtime.Extensions": "4.3.0"
  2947. },
  2948. "compile": {
  2949. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2950. "related": ".xml"
  2951. }
  2952. },
  2953. "runtime": {
  2954. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2955. }
  2956. },
  2957. "System.Security.AccessControl/6.0.0": {
  2958. "type": "package",
  2959. "dependencies": {
  2960. "System.Security.Principal.Windows": "5.0.0"
  2961. },
  2962. "compile": {
  2963. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2964. "related": ".xml"
  2965. }
  2966. },
  2967. "runtime": {
  2968. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2969. "related": ".xml"
  2970. }
  2971. },
  2972. "build": {
  2973. "buildTransitive/netcoreapp3.1/_._": {}
  2974. },
  2975. "runtimeTargets": {
  2976. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "win"
  2979. }
  2980. }
  2981. },
  2982. "System.Security.Claims/4.3.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "System.Collections": "4.3.0",
  2986. "System.Globalization": "4.3.0",
  2987. "System.IO": "4.3.0",
  2988. "System.Resources.ResourceManager": "4.3.0",
  2989. "System.Runtime": "4.3.0",
  2990. "System.Runtime.Extensions": "4.3.0",
  2991. "System.Security.Principal": "4.3.0"
  2992. },
  2993. "compile": {
  2994. "ref/netstandard1.3/_._": {
  2995. "related": ".xml"
  2996. }
  2997. },
  2998. "runtime": {
  2999. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3000. }
  3001. },
  3002. "System.Security.Cryptography.Algorithms/4.3.1": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "Microsoft.NETCore.Platforms": "1.1.0",
  3006. "System.Collections": "4.3.0",
  3007. "System.IO": "4.3.0",
  3008. "System.Resources.ResourceManager": "4.3.0",
  3009. "System.Runtime": "4.3.0",
  3010. "System.Runtime.Extensions": "4.3.0",
  3011. "System.Runtime.Handles": "4.3.0",
  3012. "System.Runtime.InteropServices": "4.3.0",
  3013. "System.Runtime.Numerics": "4.3.0",
  3014. "System.Security.Cryptography.Encoding": "4.3.0",
  3015. "System.Security.Cryptography.Primitives": "4.3.0",
  3016. "System.Text.Encoding": "4.3.0",
  3017. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  3018. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  3019. },
  3020. "compile": {
  3021. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3022. },
  3023. "runtimeTargets": {
  3024. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3025. "assetType": "runtime",
  3026. "rid": "osx"
  3027. },
  3028. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3029. "assetType": "runtime",
  3030. "rid": "unix"
  3031. },
  3032. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3033. "assetType": "runtime",
  3034. "rid": "win"
  3035. }
  3036. }
  3037. },
  3038. "System.Security.Cryptography.Cng/5.0.0": {
  3039. "type": "package",
  3040. "dependencies": {
  3041. "System.Formats.Asn1": "5.0.0"
  3042. },
  3043. "compile": {
  3044. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3045. "related": ".xml"
  3046. }
  3047. },
  3048. "runtime": {
  3049. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3050. "related": ".xml"
  3051. }
  3052. },
  3053. "runtimeTargets": {
  3054. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3055. "assetType": "runtime",
  3056. "rid": "win"
  3057. }
  3058. }
  3059. },
  3060. "System.Security.Cryptography.Csp/4.3.0": {
  3061. "type": "package",
  3062. "dependencies": {
  3063. "Microsoft.NETCore.Platforms": "1.1.0",
  3064. "System.IO": "4.3.0",
  3065. "System.Reflection": "4.3.0",
  3066. "System.Resources.ResourceManager": "4.3.0",
  3067. "System.Runtime": "4.3.0",
  3068. "System.Runtime.Extensions": "4.3.0",
  3069. "System.Runtime.Handles": "4.3.0",
  3070. "System.Runtime.InteropServices": "4.3.0",
  3071. "System.Security.Cryptography.Algorithms": "4.3.0",
  3072. "System.Security.Cryptography.Encoding": "4.3.0",
  3073. "System.Security.Cryptography.Primitives": "4.3.0",
  3074. "System.Text.Encoding": "4.3.0",
  3075. "System.Threading": "4.3.0"
  3076. },
  3077. "compile": {
  3078. "ref/netstandard1.3/_._": {}
  3079. },
  3080. "runtimeTargets": {
  3081. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3082. "assetType": "runtime",
  3083. "rid": "unix"
  3084. },
  3085. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3086. "assetType": "runtime",
  3087. "rid": "win"
  3088. }
  3089. }
  3090. },
  3091. "System.Security.Cryptography.Encoding/4.3.0": {
  3092. "type": "package",
  3093. "dependencies": {
  3094. "Microsoft.NETCore.Platforms": "1.1.0",
  3095. "System.Collections": "4.3.0",
  3096. "System.Collections.Concurrent": "4.3.0",
  3097. "System.Linq": "4.3.0",
  3098. "System.Resources.ResourceManager": "4.3.0",
  3099. "System.Runtime": "4.3.0",
  3100. "System.Runtime.Extensions": "4.3.0",
  3101. "System.Runtime.Handles": "4.3.0",
  3102. "System.Runtime.InteropServices": "4.3.0",
  3103. "System.Security.Cryptography.Primitives": "4.3.0",
  3104. "System.Text.Encoding": "4.3.0",
  3105. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3106. },
  3107. "compile": {
  3108. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3109. "related": ".xml"
  3110. }
  3111. },
  3112. "runtimeTargets": {
  3113. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3114. "assetType": "runtime",
  3115. "rid": "unix"
  3116. },
  3117. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3118. "assetType": "runtime",
  3119. "rid": "win"
  3120. }
  3121. }
  3122. },
  3123. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3124. "type": "package",
  3125. "dependencies": {
  3126. "System.Collections": "4.3.0",
  3127. "System.IO": "4.3.0",
  3128. "System.Resources.ResourceManager": "4.3.0",
  3129. "System.Runtime": "4.3.0",
  3130. "System.Runtime.Extensions": "4.3.0",
  3131. "System.Runtime.Handles": "4.3.0",
  3132. "System.Runtime.InteropServices": "4.3.0",
  3133. "System.Runtime.Numerics": "4.3.0",
  3134. "System.Security.Cryptography.Algorithms": "4.3.0",
  3135. "System.Security.Cryptography.Encoding": "4.3.0",
  3136. "System.Security.Cryptography.Primitives": "4.3.0",
  3137. "System.Text.Encoding": "4.3.0",
  3138. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3139. },
  3140. "compile": {
  3141. "ref/netstandard1.6/_._": {}
  3142. },
  3143. "runtime": {
  3144. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3145. },
  3146. "runtimeTargets": {
  3147. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3148. "assetType": "runtime",
  3149. "rid": "unix"
  3150. }
  3151. }
  3152. },
  3153. "System.Security.Cryptography.Pkcs/6.0.1": {
  3154. "type": "package",
  3155. "dependencies": {
  3156. "System.Formats.Asn1": "6.0.0",
  3157. "System.Security.Cryptography.Cng": "5.0.0"
  3158. },
  3159. "compile": {
  3160. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3161. "related": ".xml"
  3162. }
  3163. },
  3164. "runtime": {
  3165. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3166. "related": ".xml"
  3167. }
  3168. },
  3169. "build": {
  3170. "buildTransitive/netcoreapp3.1/_._": {}
  3171. },
  3172. "runtimeTargets": {
  3173. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3174. "assetType": "runtime",
  3175. "rid": "win"
  3176. }
  3177. }
  3178. },
  3179. "System.Security.Cryptography.Primitives/4.3.0": {
  3180. "type": "package",
  3181. "dependencies": {
  3182. "System.Diagnostics.Debug": "4.3.0",
  3183. "System.Globalization": "4.3.0",
  3184. "System.IO": "4.3.0",
  3185. "System.Resources.ResourceManager": "4.3.0",
  3186. "System.Runtime": "4.3.0",
  3187. "System.Threading": "4.3.0",
  3188. "System.Threading.Tasks": "4.3.0"
  3189. },
  3190. "compile": {
  3191. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3192. },
  3193. "runtime": {
  3194. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3195. }
  3196. },
  3197. "System.Security.Cryptography.ProtectedData/6.0.0": {
  3198. "type": "package",
  3199. "dependencies": {
  3200. "System.Memory": "4.5.4"
  3201. },
  3202. "compile": {
  3203. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3204. "related": ".xml"
  3205. }
  3206. },
  3207. "runtime": {
  3208. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3209. "related": ".xml"
  3210. }
  3211. },
  3212. "build": {
  3213. "buildTransitive/netcoreapp3.1/_._": {}
  3214. },
  3215. "runtimeTargets": {
  3216. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3217. "assetType": "runtime",
  3218. "rid": "win"
  3219. }
  3220. }
  3221. },
  3222. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3223. "type": "package",
  3224. "dependencies": {
  3225. "Microsoft.NETCore.Platforms": "1.1.0",
  3226. "System.Collections": "4.3.0",
  3227. "System.Diagnostics.Debug": "4.3.0",
  3228. "System.Globalization": "4.3.0",
  3229. "System.Globalization.Calendars": "4.3.0",
  3230. "System.IO": "4.3.0",
  3231. "System.IO.FileSystem": "4.3.0",
  3232. "System.IO.FileSystem.Primitives": "4.3.0",
  3233. "System.Resources.ResourceManager": "4.3.0",
  3234. "System.Runtime": "4.3.0",
  3235. "System.Runtime.Extensions": "4.3.0",
  3236. "System.Runtime.Handles": "4.3.0",
  3237. "System.Runtime.InteropServices": "4.3.0",
  3238. "System.Runtime.Numerics": "4.3.0",
  3239. "System.Security.Cryptography.Algorithms": "4.3.0",
  3240. "System.Security.Cryptography.Cng": "4.3.0",
  3241. "System.Security.Cryptography.Csp": "4.3.0",
  3242. "System.Security.Cryptography.Encoding": "4.3.0",
  3243. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3244. "System.Security.Cryptography.Primitives": "4.3.0",
  3245. "System.Text.Encoding": "4.3.0",
  3246. "System.Threading": "4.3.0",
  3247. "runtime.native.System": "4.3.0",
  3248. "runtime.native.System.Net.Http": "4.3.0",
  3249. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3250. },
  3251. "compile": {
  3252. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3253. "related": ".xml"
  3254. }
  3255. },
  3256. "runtimeTargets": {
  3257. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3258. "assetType": "runtime",
  3259. "rid": "unix"
  3260. },
  3261. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3262. "assetType": "runtime",
  3263. "rid": "win"
  3264. }
  3265. }
  3266. },
  3267. "System.Security.Cryptography.Xml/6.0.1": {
  3268. "type": "package",
  3269. "dependencies": {
  3270. "System.Memory": "4.5.4",
  3271. "System.Security.AccessControl": "6.0.0",
  3272. "System.Security.Cryptography.Pkcs": "6.0.1"
  3273. },
  3274. "compile": {
  3275. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3276. "related": ".xml"
  3277. }
  3278. },
  3279. "runtime": {
  3280. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3281. "related": ".xml"
  3282. }
  3283. },
  3284. "build": {
  3285. "buildTransitive/netcoreapp3.1/_._": {}
  3286. }
  3287. },
  3288. "System.Security.Permissions/6.0.0": {
  3289. "type": "package",
  3290. "dependencies": {
  3291. "System.Security.AccessControl": "6.0.0",
  3292. "System.Windows.Extensions": "6.0.0"
  3293. },
  3294. "compile": {
  3295. "lib/net5.0/System.Security.Permissions.dll": {
  3296. "related": ".xml"
  3297. }
  3298. },
  3299. "runtime": {
  3300. "lib/net5.0/System.Security.Permissions.dll": {
  3301. "related": ".xml"
  3302. }
  3303. },
  3304. "build": {
  3305. "buildTransitive/netcoreapp3.1/_._": {}
  3306. }
  3307. },
  3308. "System.Security.Principal/4.3.0": {
  3309. "type": "package",
  3310. "dependencies": {
  3311. "System.Runtime": "4.3.0"
  3312. },
  3313. "compile": {
  3314. "ref/netstandard1.0/System.Security.Principal.dll": {
  3315. "related": ".xml"
  3316. }
  3317. },
  3318. "runtime": {
  3319. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3320. }
  3321. },
  3322. "System.Security.Principal.Windows/5.0.0": {
  3323. "type": "package",
  3324. "compile": {
  3325. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3326. "related": ".xml"
  3327. }
  3328. },
  3329. "runtime": {
  3330. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3331. "related": ".xml"
  3332. }
  3333. },
  3334. "runtimeTargets": {
  3335. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3336. "assetType": "runtime",
  3337. "rid": "unix"
  3338. },
  3339. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3340. "assetType": "runtime",
  3341. "rid": "win"
  3342. }
  3343. }
  3344. },
  3345. "System.Text.Encoding/4.3.0": {
  3346. "type": "package",
  3347. "dependencies": {
  3348. "Microsoft.NETCore.Platforms": "1.1.0",
  3349. "Microsoft.NETCore.Targets": "1.1.0",
  3350. "System.Runtime": "4.3.0"
  3351. },
  3352. "compile": {
  3353. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3354. "related": ".xml"
  3355. }
  3356. }
  3357. },
  3358. "System.Text.Encoding.CodePages/5.0.0": {
  3359. "type": "package",
  3360. "dependencies": {
  3361. "Microsoft.NETCore.Platforms": "5.0.0"
  3362. },
  3363. "compile": {
  3364. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3365. "related": ".xml"
  3366. }
  3367. },
  3368. "runtime": {
  3369. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3370. "related": ".xml"
  3371. }
  3372. },
  3373. "runtimeTargets": {
  3374. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3375. "assetType": "runtime",
  3376. "rid": "win"
  3377. }
  3378. }
  3379. },
  3380. "System.Text.Encoding.Extensions/4.3.0": {
  3381. "type": "package",
  3382. "dependencies": {
  3383. "Microsoft.NETCore.Platforms": "1.1.0",
  3384. "Microsoft.NETCore.Targets": "1.1.0",
  3385. "System.Runtime": "4.3.0",
  3386. "System.Text.Encoding": "4.3.0"
  3387. },
  3388. "compile": {
  3389. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3390. "related": ".xml"
  3391. }
  3392. }
  3393. },
  3394. "System.Text.Encodings.Web/9.0.1": {
  3395. "type": "package",
  3396. "dependencies": {
  3397. "System.Buffers": "4.5.1",
  3398. "System.Memory": "4.5.5",
  3399. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3400. },
  3401. "compile": {
  3402. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3403. "related": ".xml"
  3404. }
  3405. },
  3406. "runtime": {
  3407. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3408. "related": ".xml"
  3409. }
  3410. },
  3411. "build": {
  3412. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  3413. }
  3414. },
  3415. "System.Text.Json/9.0.1": {
  3416. "type": "package",
  3417. "dependencies": {
  3418. "Microsoft.Bcl.AsyncInterfaces": "9.0.1",
  3419. "System.Buffers": "4.5.1",
  3420. "System.IO.Pipelines": "9.0.1",
  3421. "System.Memory": "4.5.5",
  3422. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3423. "System.Text.Encodings.Web": "9.0.1",
  3424. "System.Threading.Tasks.Extensions": "4.5.4"
  3425. },
  3426. "compile": {
  3427. "lib/netstandard2.0/System.Text.Json.dll": {
  3428. "related": ".xml"
  3429. }
  3430. },
  3431. "runtime": {
  3432. "lib/netstandard2.0/System.Text.Json.dll": {
  3433. "related": ".xml"
  3434. }
  3435. },
  3436. "build": {
  3437. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  3438. }
  3439. },
  3440. "System.Text.RegularExpressions/4.3.0": {
  3441. "type": "package",
  3442. "dependencies": {
  3443. "System.Runtime": "4.3.0"
  3444. },
  3445. "compile": {
  3446. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3447. },
  3448. "runtime": {
  3449. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3450. }
  3451. },
  3452. "System.Threading/4.3.0": {
  3453. "type": "package",
  3454. "dependencies": {
  3455. "System.Runtime": "4.3.0",
  3456. "System.Threading.Tasks": "4.3.0"
  3457. },
  3458. "compile": {
  3459. "ref/netstandard1.3/System.Threading.dll": {
  3460. "related": ".xml"
  3461. }
  3462. },
  3463. "runtime": {
  3464. "lib/netstandard1.3/System.Threading.dll": {}
  3465. }
  3466. },
  3467. "System.Threading.Channels/7.0.0": {
  3468. "type": "package",
  3469. "compile": {
  3470. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3471. "related": ".xml"
  3472. }
  3473. },
  3474. "runtime": {
  3475. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3476. "related": ".xml"
  3477. }
  3478. },
  3479. "build": {
  3480. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3481. }
  3482. },
  3483. "System.Threading.Tasks/4.3.0": {
  3484. "type": "package",
  3485. "dependencies": {
  3486. "Microsoft.NETCore.Platforms": "1.1.0",
  3487. "Microsoft.NETCore.Targets": "1.1.0",
  3488. "System.Runtime": "4.3.0"
  3489. },
  3490. "compile": {
  3491. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3492. "related": ".xml"
  3493. }
  3494. }
  3495. },
  3496. "System.Threading.Tasks.Extensions/4.6.0": {
  3497. "type": "package",
  3498. "compile": {
  3499. "lib/netcoreapp2.1/_._": {}
  3500. },
  3501. "runtime": {
  3502. "lib/netcoreapp2.1/_._": {}
  3503. }
  3504. },
  3505. "System.Threading.Thread/4.3.0": {
  3506. "type": "package",
  3507. "dependencies": {
  3508. "System.Runtime": "4.3.0"
  3509. },
  3510. "compile": {
  3511. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3512. "related": ".xml"
  3513. }
  3514. },
  3515. "runtime": {
  3516. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3517. }
  3518. },
  3519. "System.Threading.ThreadPool/4.3.0": {
  3520. "type": "package",
  3521. "dependencies": {
  3522. "System.Runtime": "4.3.0",
  3523. "System.Runtime.Handles": "4.3.0"
  3524. },
  3525. "compile": {
  3526. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3527. "related": ".xml"
  3528. }
  3529. },
  3530. "runtime": {
  3531. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3532. }
  3533. },
  3534. "System.Threading.Timer/4.3.0": {
  3535. "type": "package",
  3536. "dependencies": {
  3537. "Microsoft.NETCore.Platforms": "1.1.0",
  3538. "Microsoft.NETCore.Targets": "1.1.0",
  3539. "System.Runtime": "4.3.0"
  3540. },
  3541. "compile": {
  3542. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3543. "related": ".xml"
  3544. }
  3545. }
  3546. },
  3547. "System.ValueTuple/4.5.0": {
  3548. "type": "package",
  3549. "compile": {
  3550. "ref/netcoreapp2.0/_._": {}
  3551. },
  3552. "runtime": {
  3553. "lib/netcoreapp2.0/_._": {}
  3554. }
  3555. },
  3556. "System.Windows.Extensions/6.0.0": {
  3557. "type": "package",
  3558. "dependencies": {
  3559. "System.Drawing.Common": "6.0.0"
  3560. },
  3561. "compile": {
  3562. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3563. "related": ".xml"
  3564. }
  3565. },
  3566. "runtime": {
  3567. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3568. "related": ".xml"
  3569. }
  3570. },
  3571. "runtimeTargets": {
  3572. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3573. "assetType": "runtime",
  3574. "rid": "win"
  3575. }
  3576. }
  3577. },
  3578. "System.Xml.ReaderWriter/4.3.0": {
  3579. "type": "package",
  3580. "dependencies": {
  3581. "System.Collections": "4.3.0",
  3582. "System.Diagnostics.Debug": "4.3.0",
  3583. "System.Globalization": "4.3.0",
  3584. "System.IO": "4.3.0",
  3585. "System.IO.FileSystem": "4.3.0",
  3586. "System.IO.FileSystem.Primitives": "4.3.0",
  3587. "System.Resources.ResourceManager": "4.3.0",
  3588. "System.Runtime": "4.3.0",
  3589. "System.Runtime.Extensions": "4.3.0",
  3590. "System.Runtime.InteropServices": "4.3.0",
  3591. "System.Text.Encoding": "4.3.0",
  3592. "System.Text.Encoding.Extensions": "4.3.0",
  3593. "System.Text.RegularExpressions": "4.3.0",
  3594. "System.Threading.Tasks": "4.3.0",
  3595. "System.Threading.Tasks.Extensions": "4.3.0"
  3596. },
  3597. "compile": {
  3598. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3599. "related": ".xml"
  3600. }
  3601. },
  3602. "runtime": {
  3603. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3604. }
  3605. },
  3606. "System.Xml.XDocument/4.3.0": {
  3607. "type": "package",
  3608. "dependencies": {
  3609. "System.Collections": "4.3.0",
  3610. "System.Diagnostics.Debug": "4.3.0",
  3611. "System.Diagnostics.Tools": "4.3.0",
  3612. "System.Globalization": "4.3.0",
  3613. "System.IO": "4.3.0",
  3614. "System.Reflection": "4.3.0",
  3615. "System.Resources.ResourceManager": "4.3.0",
  3616. "System.Runtime": "4.3.0",
  3617. "System.Runtime.Extensions": "4.3.0",
  3618. "System.Text.Encoding": "4.3.0",
  3619. "System.Threading": "4.3.0",
  3620. "System.Xml.ReaderWriter": "4.3.0"
  3621. },
  3622. "compile": {
  3623. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3624. "related": ".xml"
  3625. }
  3626. },
  3627. "runtime": {
  3628. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3629. }
  3630. },
  3631. "System.Xml.XmlDocument/4.3.0": {
  3632. "type": "package",
  3633. "dependencies": {
  3634. "System.Collections": "4.3.0",
  3635. "System.Diagnostics.Debug": "4.3.0",
  3636. "System.Globalization": "4.3.0",
  3637. "System.IO": "4.3.0",
  3638. "System.Resources.ResourceManager": "4.3.0",
  3639. "System.Runtime": "4.3.0",
  3640. "System.Runtime.Extensions": "4.3.0",
  3641. "System.Text.Encoding": "4.3.0",
  3642. "System.Threading": "4.3.0",
  3643. "System.Xml.ReaderWriter": "4.3.0"
  3644. },
  3645. "compile": {
  3646. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3647. "related": ".xml"
  3648. }
  3649. },
  3650. "runtime": {
  3651. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3652. }
  3653. },
  3654. "ToolGood.Words/3.1.0.2": {
  3655. "type": "package",
  3656. "compile": {
  3657. "lib/netstandard2.1/ToolGood.Words.dll": {
  3658. "related": ".xml"
  3659. }
  3660. },
  3661. "runtime": {
  3662. "lib/netstandard2.1/ToolGood.Words.dll": {
  3663. "related": ".xml"
  3664. }
  3665. }
  3666. },
  3667. "UAParser/3.1.47": {
  3668. "type": "package",
  3669. "compile": {
  3670. "lib/netcoreapp2.0/UAParser.dll": {
  3671. "related": ".xml"
  3672. }
  3673. },
  3674. "runtime": {
  3675. "lib/netcoreapp2.0/UAParser.dll": {
  3676. "related": ".xml"
  3677. }
  3678. }
  3679. },
  3680. "Ulid/1.4.1": {
  3681. "type": "package",
  3682. "dependencies": {
  3683. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  3684. },
  3685. "compile": {
  3686. "lib/netstandard2.1/Ulid.dll": {
  3687. "related": ".xml"
  3688. }
  3689. },
  3690. "runtime": {
  3691. "lib/netstandard2.1/Ulid.dll": {
  3692. "related": ".xml"
  3693. }
  3694. }
  3695. },
  3696. "ZXing.Net/0.16.9": {
  3697. "type": "package",
  3698. "compile": {
  3699. "lib/net5.0/zxing.dll": {
  3700. "related": ".XML"
  3701. }
  3702. },
  3703. "runtime": {
  3704. "lib/net5.0/zxing.dll": {
  3705. "related": ".XML"
  3706. }
  3707. }
  3708. },
  3709. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3710. "type": "package",
  3711. "dependencies": {
  3712. "SixLabors.ImageSharp": "2.1.3",
  3713. "ZXing.Net": "0.16.9"
  3714. },
  3715. "compile": {
  3716. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3717. "related": ".pdb;.xml"
  3718. }
  3719. },
  3720. "runtime": {
  3721. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3722. "related": ".pdb;.xml"
  3723. }
  3724. }
  3725. },
  3726. "Ropin.Core.Common/1.0.0": {
  3727. "type": "project",
  3728. "framework": ".NETCoreApp,Version=v5.0",
  3729. "dependencies": {
  3730. "Coravel": "4.2.1",
  3731. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3732. "Newtonsoft.Json": "13.0.1",
  3733. "QRCoder": "1.4.3",
  3734. "SixLabors.ImageSharp": "2.1.6",
  3735. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3736. },
  3737. "compile": {
  3738. "bin/placeholder/Ropin.Core.Common.dll": {}
  3739. },
  3740. "runtime": {
  3741. "bin/placeholder/Ropin.Core.Common.dll": {}
  3742. }
  3743. },
  3744. "Ropin.Core.Extensions/1.0.0": {
  3745. "type": "project",
  3746. "framework": ".NETCoreApp,Version=v5.0",
  3747. "dependencies": {
  3748. "Autofac": "6.2.0",
  3749. "Autofac.Extras.DynamicProxy": "6.0.0",
  3750. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3751. "Ropin.Core.Common": "1.0.0",
  3752. "Ropin.Inspection.Common": "1.0.0",
  3753. "Ropin.Inspection.Service": "1.0.0",
  3754. "Ropin.Inspection.Tasks": "1.0.0",
  3755. "StackExchange.Redis": "1.2.4",
  3756. "log4net": "2.0.17"
  3757. },
  3758. "compile": {
  3759. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3760. },
  3761. "runtime": {
  3762. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3763. }
  3764. },
  3765. "Ropin.Inspection.Common/1.0.0": {
  3766. "type": "project",
  3767. "framework": ".NETCoreApp,Version=v5.0",
  3768. "dependencies": {
  3769. "FluentEmail.Smtp": "3.0.2",
  3770. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3771. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3772. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3773. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3774. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3775. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3776. "Microsoft.Extensions.Configuration": "5.0.0",
  3777. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3778. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3779. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3780. "Microsoft.Extensions.Http": "5.0.0",
  3781. "Newtonsoft.Json": "13.0.1",
  3782. "RabbitMQ.Client": "6.8.1",
  3783. "ToolGood.Words": "3.1.0.2",
  3784. "Ulid": "1.4.1",
  3785. "log4net": "2.0.17"
  3786. },
  3787. "compile": {
  3788. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3789. },
  3790. "runtime": {
  3791. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3792. }
  3793. },
  3794. "Ropin.Inspection.Model/1.0.0": {
  3795. "type": "project",
  3796. "framework": ".NETCoreApp,Version=v5.0",
  3797. "dependencies": {
  3798. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3799. "Microsoft.EntityFrameworkCore": "5.0.0",
  3800. "MySql.Data": "8.0.23",
  3801. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3802. "Ropin.Inspection.Common": "1.0.0"
  3803. },
  3804. "compile": {
  3805. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3806. },
  3807. "runtime": {
  3808. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3809. }
  3810. },
  3811. "Ropin.Inspection.Repository/1.0.0": {
  3812. "type": "project",
  3813. "framework": ".NETCoreApp,Version=v5.0",
  3814. "dependencies": {
  3815. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3816. "Microsoft.EntityFrameworkCore": "5.0.0",
  3817. "Ropin.Inspection.Model": "1.0.0"
  3818. },
  3819. "compile": {
  3820. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3821. },
  3822. "runtime": {
  3823. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3824. }
  3825. },
  3826. "Ropin.Inspection.Service/1.0.0": {
  3827. "type": "project",
  3828. "framework": ".NETCoreApp,Version=v5.0",
  3829. "dependencies": {
  3830. "AutoMapper": "10.1.1",
  3831. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3832. "Newtonsoft.Json": "13.0.1",
  3833. "Ropin.Core.Common": "1.0.0",
  3834. "Ropin.Inspection.Common": "1.0.0",
  3835. "Ropin.Inspection.Model": "1.0.0",
  3836. "Ropin.Inspection.Repository": "1.0.0",
  3837. "log4net": "2.0.17"
  3838. },
  3839. "compile": {
  3840. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3841. },
  3842. "runtime": {
  3843. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3844. }
  3845. },
  3846. "Ropin.Inspection.Tasks/1.0.0": {
  3847. "type": "project",
  3848. "framework": ".NETCoreApp,Version=v5.0",
  3849. "dependencies": {
  3850. "Quartz": "3.3.3",
  3851. "Ropin.Inspection.Common": "1.0.0",
  3852. "Ropin.Inspection.Model": "1.0.0",
  3853. "Ropin.Inspection.Service": "1.0.0"
  3854. },
  3855. "compile": {
  3856. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3857. },
  3858. "runtime": {
  3859. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3860. }
  3861. }
  3862. }
  3863. },
  3864. "libraries": {
  3865. "AdvancedStringBuilder/0.1.0": {
  3866. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3867. "type": "package",
  3868. "path": "advancedstringbuilder/0.1.0",
  3869. "files": [
  3870. ".nupkg.metadata",
  3871. ".signature.p7s",
  3872. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3873. "advancedstringbuilder.nuspec",
  3874. "lib/net40-client/AdvancedStringBuilder.dll",
  3875. "lib/net40-client/AdvancedStringBuilder.xml",
  3876. "lib/net45/AdvancedStringBuilder.dll",
  3877. "lib/net45/AdvancedStringBuilder.xml",
  3878. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3879. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3880. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3881. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3882. ]
  3883. },
  3884. "Autofac/6.2.0": {
  3885. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3886. "type": "package",
  3887. "path": "autofac/6.2.0",
  3888. "files": [
  3889. ".nupkg.metadata",
  3890. ".signature.p7s",
  3891. "autofac.6.2.0.nupkg.sha512",
  3892. "autofac.nuspec",
  3893. "icon.png",
  3894. "lib/net5.0/Autofac.dll",
  3895. "lib/net5.0/Autofac.pdb",
  3896. "lib/net5.0/Autofac.xml",
  3897. "lib/netstandard2.0/Autofac.dll",
  3898. "lib/netstandard2.0/Autofac.pdb",
  3899. "lib/netstandard2.0/Autofac.xml",
  3900. "lib/netstandard2.1/Autofac.dll",
  3901. "lib/netstandard2.1/Autofac.pdb",
  3902. "lib/netstandard2.1/Autofac.xml"
  3903. ]
  3904. },
  3905. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3906. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3907. "type": "package",
  3908. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3913. "autofac.extensions.dependencyinjection.nuspec",
  3914. "icon.png",
  3915. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3916. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3917. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3918. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3919. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3920. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3921. ]
  3922. },
  3923. "Autofac.Extras.DynamicProxy/6.0.0": {
  3924. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3925. "type": "package",
  3926. "path": "autofac.extras.dynamicproxy/6.0.0",
  3927. "files": [
  3928. ".nupkg.metadata",
  3929. ".signature.p7s",
  3930. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3931. "autofac.extras.dynamicproxy.nuspec",
  3932. "icon.png",
  3933. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3934. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3935. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3936. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3937. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3938. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3939. ]
  3940. },
  3941. "AutoMapper/10.1.1": {
  3942. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3943. "type": "package",
  3944. "path": "automapper/10.1.1",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "automapper.10.1.1.nupkg.sha512",
  3949. "automapper.nuspec",
  3950. "icon.png",
  3951. "lib/net461/AutoMapper.dll",
  3952. "lib/net461/AutoMapper.xml",
  3953. "lib/netstandard2.0/AutoMapper.dll",
  3954. "lib/netstandard2.0/AutoMapper.xml"
  3955. ]
  3956. },
  3957. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3958. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3959. "type": "package",
  3960. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3961. "files": [
  3962. ".nupkg.metadata",
  3963. ".signature.p7s",
  3964. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3965. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3966. "icon.png",
  3967. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3968. ]
  3969. },
  3970. "BouncyCastle.Cryptography/2.2.1": {
  3971. "sha512": "A6Zr52zVqJKt18ZBsTnX0qhG0kwIQftVAjLmszmkiR/trSp8H+xj1gUOzk7XHwaKgyREMSV1v9XaKrBUeIOdvQ==",
  3972. "type": "package",
  3973. "path": "bouncycastle.cryptography/2.2.1",
  3974. "files": [
  3975. ".nupkg.metadata",
  3976. ".signature.p7s",
  3977. "LICENSE.md",
  3978. "README.md",
  3979. "bouncycastle.cryptography.2.2.1.nupkg.sha512",
  3980. "bouncycastle.cryptography.nuspec",
  3981. "lib/net461/BouncyCastle.Cryptography.dll",
  3982. "lib/net461/BouncyCastle.Cryptography.xml",
  3983. "lib/net6.0/BouncyCastle.Cryptography.dll",
  3984. "lib/net6.0/BouncyCastle.Cryptography.xml",
  3985. "lib/netstandard2.0/BouncyCastle.Cryptography.dll",
  3986. "lib/netstandard2.0/BouncyCastle.Cryptography.xml",
  3987. "packageIcon.png"
  3988. ]
  3989. },
  3990. "BouncyCastle.NetCore/1.8.5": {
  3991. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3992. "type": "package",
  3993. "path": "bouncycastle.netcore/1.8.5",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3998. "bouncycastle.netcore.nuspec",
  3999. "lib/Mono/BouncyCastle.Crypto.dll",
  4000. "lib/Mono/BouncyCastle.Crypto.xml",
  4001. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  4002. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  4003. "lib/MonoMac/BouncyCastle.Crypto.dll",
  4004. "lib/MonoMac/BouncyCastle.Crypto.xml",
  4005. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  4006. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  4007. "lib/net20/BouncyCastle.Crypto.dll",
  4008. "lib/net20/BouncyCastle.Crypto.xml",
  4009. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4010. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4011. "lib/xamarinios/BouncyCastle.Crypto.dll",
  4012. "lib/xamarinios/BouncyCastle.Crypto.xml"
  4013. ]
  4014. },
  4015. "Castle.Core/4.4.0": {
  4016. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  4017. "type": "package",
  4018. "path": "castle.core/4.4.0",
  4019. "files": [
  4020. ".nupkg.metadata",
  4021. ".signature.p7s",
  4022. "ASL - Apache Software Foundation License.txt",
  4023. "CHANGELOG.md",
  4024. "LICENSE",
  4025. "castle.core.4.4.0.nupkg.sha512",
  4026. "castle.core.nuspec",
  4027. "lib/net35/Castle.Core.dll",
  4028. "lib/net35/Castle.Core.xml",
  4029. "lib/net40/Castle.Core.dll",
  4030. "lib/net40/Castle.Core.xml",
  4031. "lib/net45/Castle.Core.dll",
  4032. "lib/net45/Castle.Core.xml",
  4033. "lib/netstandard1.3/Castle.Core.dll",
  4034. "lib/netstandard1.3/Castle.Core.xml",
  4035. "lib/netstandard1.5/Castle.Core.dll",
  4036. "lib/netstandard1.5/Castle.Core.xml",
  4037. "readme.txt"
  4038. ]
  4039. },
  4040. "CommunityToolkit.HighPerformance/8.4.0": {
  4041. "sha512": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==",
  4042. "type": "package",
  4043. "path": "communitytoolkit.highperformance/8.4.0",
  4044. "files": [
  4045. ".nupkg.metadata",
  4046. ".signature.p7s",
  4047. "Icon.png",
  4048. "License.md",
  4049. "ThirdPartyNotices.txt",
  4050. "communitytoolkit.highperformance.8.4.0.nupkg.sha512",
  4051. "communitytoolkit.highperformance.nuspec",
  4052. "lib/net7.0/CommunityToolkit.HighPerformance.dll",
  4053. "lib/net7.0/CommunityToolkit.HighPerformance.pdb",
  4054. "lib/net7.0/CommunityToolkit.HighPerformance.xml",
  4055. "lib/net8.0/CommunityToolkit.HighPerformance.dll",
  4056. "lib/net8.0/CommunityToolkit.HighPerformance.pdb",
  4057. "lib/net8.0/CommunityToolkit.HighPerformance.xml",
  4058. "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll",
  4059. "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb",
  4060. "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml",
  4061. "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll",
  4062. "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb",
  4063. "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml"
  4064. ]
  4065. },
  4066. "Coravel/4.2.1": {
  4067. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  4068. "type": "package",
  4069. "path": "coravel/4.2.1",
  4070. "files": [
  4071. ".nupkg.metadata",
  4072. ".signature.p7s",
  4073. "coravel.4.2.1.nupkg.sha512",
  4074. "coravel.nuspec",
  4075. "lib/netstandard2.0/Coravel.dll",
  4076. "lib/netstandard2.0/Coravel.xml",
  4077. "logo.png",
  4078. "readme.md"
  4079. ]
  4080. },
  4081. "Enums.NET/4.0.1": {
  4082. "sha512": "OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==",
  4083. "type": "package",
  4084. "path": "enums.net/4.0.1",
  4085. "files": [
  4086. ".nupkg.metadata",
  4087. ".signature.p7s",
  4088. "enums.net.4.0.1.nupkg.sha512",
  4089. "enums.net.nuspec",
  4090. "lib/net45/Enums.NET.dll",
  4091. "lib/net45/Enums.NET.pdb",
  4092. "lib/net45/Enums.NET.xml",
  4093. "lib/netcoreapp3.0/Enums.NET.dll",
  4094. "lib/netcoreapp3.0/Enums.NET.pdb",
  4095. "lib/netcoreapp3.0/Enums.NET.xml",
  4096. "lib/netstandard1.0/Enums.NET.dll",
  4097. "lib/netstandard1.0/Enums.NET.pdb",
  4098. "lib/netstandard1.0/Enums.NET.xml",
  4099. "lib/netstandard1.1/Enums.NET.dll",
  4100. "lib/netstandard1.1/Enums.NET.pdb",
  4101. "lib/netstandard1.1/Enums.NET.xml",
  4102. "lib/netstandard1.3/Enums.NET.dll",
  4103. "lib/netstandard1.3/Enums.NET.pdb",
  4104. "lib/netstandard1.3/Enums.NET.xml",
  4105. "lib/netstandard2.0/Enums.NET.dll",
  4106. "lib/netstandard2.0/Enums.NET.pdb",
  4107. "lib/netstandard2.0/Enums.NET.xml",
  4108. "lib/netstandard2.1/Enums.NET.dll",
  4109. "lib/netstandard2.1/Enums.NET.pdb",
  4110. "lib/netstandard2.1/Enums.NET.xml"
  4111. ]
  4112. },
  4113. "FluentEmail.Core/3.0.2": {
  4114. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  4115. "type": "package",
  4116. "path": "fluentemail.core/3.0.2",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "fluentemail.core.3.0.2.nupkg.sha512",
  4121. "fluentemail.core.nuspec",
  4122. "fluentemail_logo_64x64.png",
  4123. "lib/netstandard2.0/FluentEmail.Core.dll"
  4124. ]
  4125. },
  4126. "FluentEmail.Smtp/3.0.2": {
  4127. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  4128. "type": "package",
  4129. "path": "fluentemail.smtp/3.0.2",
  4130. "files": [
  4131. ".nupkg.metadata",
  4132. ".signature.p7s",
  4133. "fluentemail.smtp.3.0.2.nupkg.sha512",
  4134. "fluentemail.smtp.nuspec",
  4135. "fluentemail_logo_64x64.png",
  4136. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  4137. ]
  4138. },
  4139. "Google.Protobuf/3.11.4": {
  4140. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  4141. "type": "package",
  4142. "path": "google.protobuf/3.11.4",
  4143. "files": [
  4144. ".nupkg.metadata",
  4145. ".signature.p7s",
  4146. "google.protobuf.3.11.4.nupkg.sha512",
  4147. "google.protobuf.nuspec",
  4148. "lib/net45/Google.Protobuf.dll",
  4149. "lib/net45/Google.Protobuf.pdb",
  4150. "lib/net45/Google.Protobuf.xml",
  4151. "lib/netstandard1.0/Google.Protobuf.dll",
  4152. "lib/netstandard1.0/Google.Protobuf.pdb",
  4153. "lib/netstandard1.0/Google.Protobuf.xml",
  4154. "lib/netstandard2.0/Google.Protobuf.dll",
  4155. "lib/netstandard2.0/Google.Protobuf.pdb",
  4156. "lib/netstandard2.0/Google.Protobuf.xml"
  4157. ]
  4158. },
  4159. "Humanizer.Core/2.8.26": {
  4160. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  4161. "type": "package",
  4162. "path": "humanizer.core/2.8.26",
  4163. "files": [
  4164. ".nupkg.metadata",
  4165. ".signature.p7s",
  4166. "humanizer.core.2.8.26.nupkg.sha512",
  4167. "humanizer.core.nuspec",
  4168. "lib/netstandard1.0/Humanizer.dll",
  4169. "lib/netstandard1.0/Humanizer.xml",
  4170. "lib/netstandard2.0/Humanizer.dll",
  4171. "lib/netstandard2.0/Humanizer.xml",
  4172. "logo.png"
  4173. ]
  4174. },
  4175. "InfluxData.Net/8.0.1": {
  4176. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  4177. "type": "package",
  4178. "path": "influxdata.net/8.0.1",
  4179. "files": [
  4180. ".nupkg.metadata",
  4181. ".signature.p7s",
  4182. "influxdata.net.8.0.1.nupkg.sha512",
  4183. "influxdata.net.nuspec",
  4184. "lib/net461/InfluxData.Net.Common.dll",
  4185. "lib/net461/InfluxData.Net.Common.dll.config",
  4186. "lib/net461/InfluxData.Net.Common.pdb",
  4187. "lib/net461/InfluxData.Net.InfluxDb.dll",
  4188. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  4189. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  4190. "lib/net461/InfluxData.Net.Kapacitor.dll",
  4191. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  4192. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  4193. "lib/net461/InfluxData.Net.dll",
  4194. "lib/net461/InfluxData.Net.dll.config",
  4195. "lib/net461/InfluxData.Net.pdb",
  4196. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  4197. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  4198. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  4199. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  4200. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  4201. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  4202. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  4203. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  4204. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  4205. "lib/netstandard2.0/InfluxData.Net.deps.json",
  4206. "lib/netstandard2.0/InfluxData.Net.dll",
  4207. "lib/netstandard2.0/InfluxData.Net.dll.config",
  4208. "lib/netstandard2.0/InfluxData.Net.pdb"
  4209. ]
  4210. },
  4211. "IP2Region.Ex/1.2.0": {
  4212. "sha512": "B8TxhuAw72cPwjgf8pqDf62l1TJL0jXw4J13fXHg4Igq1OwT7SRotQX6gN6puyIgHVYLtKxnmhFf60oUITxmxA==",
  4213. "type": "package",
  4214. "path": "ip2region.ex/1.2.0",
  4215. "files": [
  4216. ".nupkg.metadata",
  4217. ".signature.p7s",
  4218. "ip2region.ex.1.2.0.nupkg.sha512",
  4219. "ip2region.ex.nuspec",
  4220. "lib/netstandard2.0/IP2Region.Ex.dll"
  4221. ]
  4222. },
  4223. "IPTools.China/1.6.0": {
  4224. "sha512": "12VnC92ffiKlLRwr5Ay3uFvZMCB9SDNn77sVlNycQu1OJAunnuCNBOVZTkg9D2UL2cc+iMwra6if9viXhrrt7w==",
  4225. "type": "package",
  4226. "path": "iptools.china/1.6.0",
  4227. "files": [
  4228. ".nupkg.metadata",
  4229. ".signature.p7s",
  4230. "iptools.china.1.6.0.nupkg.sha512",
  4231. "iptools.china.nuspec",
  4232. "lib/net45/IPTools.China.dll",
  4233. "lib/net451/IPTools.China.dll",
  4234. "lib/net452/IPTools.China.dll",
  4235. "lib/net461/IPTools.China.dll",
  4236. "lib/net5.0/IPTools.China.dll",
  4237. "lib/netcoreapp3.1/IPTools.China.dll"
  4238. ]
  4239. },
  4240. "IPTools.Core/1.6.0": {
  4241. "sha512": "qO+EY5vEwLKtOkQD1aMweM9pIVSFLwTi/Z2ZnX08qBXI4yPdRuguJJvzT2YVk2Addv999A+bWifIS8ahiwJcTg==",
  4242. "type": "package",
  4243. "path": "iptools.core/1.6.0",
  4244. "files": [
  4245. ".nupkg.metadata",
  4246. ".signature.p7s",
  4247. "iptools.core.1.6.0.nupkg.sha512",
  4248. "iptools.core.nuspec",
  4249. "lib/net45/IPTools.Core.dll",
  4250. "lib/net451/IPTools.Core.dll",
  4251. "lib/net452/IPTools.Core.dll",
  4252. "lib/net461/IPTools.Core.dll",
  4253. "lib/net5.0/IPTools.Core.dll",
  4254. "lib/netcoreapp3.1/IPTools.Core.dll"
  4255. ]
  4256. },
  4257. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4258. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4259. "type": "package",
  4260. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4261. "files": [
  4262. ".nupkg.metadata",
  4263. ".signature.p7s",
  4264. "LICENSE.txt",
  4265. "advanced-string-builder-license.txt",
  4266. "chakra-samples-license.txt",
  4267. "icon.png",
  4268. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4269. "javascriptengineswitcher.chakracore.nuspec",
  4270. "jsrt-dotnet-license.txt",
  4271. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4272. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4273. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4274. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4275. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4276. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4277. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4278. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4279. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4280. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4281. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4282. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4283. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4284. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4285. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4286. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4287. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4288. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4289. "polyfills-for-old-dot-net-license.txt",
  4290. "readme.txt"
  4291. ]
  4292. },
  4293. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4294. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4295. "type": "package",
  4296. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4297. "files": [
  4298. ".nupkg.metadata",
  4299. ".signature.p7s",
  4300. "LICENSE.txt",
  4301. "chakra-core-license.txt",
  4302. "icon.png",
  4303. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4304. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4305. "readme.txt",
  4306. "runtimes/linux-x64/native/libChakraCore.so"
  4307. ]
  4308. },
  4309. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4310. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4311. "type": "package",
  4312. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4313. "hasTools": true,
  4314. "files": [
  4315. ".nupkg.metadata",
  4316. ".signature.p7s",
  4317. "LICENSE.txt",
  4318. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4319. "chakra-core-license.txt",
  4320. "icon.png",
  4321. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4322. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4323. "readme.txt",
  4324. "runtimes/win-x64/native/ChakraCore.dll",
  4325. "tools/Install.ps1",
  4326. "tools/Uninstall.ps1"
  4327. ]
  4328. },
  4329. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4330. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4331. "type": "package",
  4332. "path": "javascriptengineswitcher.core/3.21.0",
  4333. "files": [
  4334. ".nupkg.metadata",
  4335. ".signature.p7s",
  4336. "LICENSE.txt",
  4337. "advanced-string-builder-license.txt",
  4338. "icon.png",
  4339. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4340. "javascriptengineswitcher.core.nuspec",
  4341. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4342. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4343. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4344. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4345. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4346. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4347. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4348. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4349. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4350. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4351. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4352. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4353. "readme.txt"
  4354. ]
  4355. },
  4356. "K4os.Compression.LZ4/1.1.11": {
  4357. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4358. "type": "package",
  4359. "path": "k4os.compression.lz4/1.1.11",
  4360. "files": [
  4361. ".nupkg.metadata",
  4362. ".signature.p7s",
  4363. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4364. "k4os.compression.lz4.nuspec",
  4365. "lib/net45/K4os.Compression.LZ4.dll",
  4366. "lib/net45/K4os.Compression.LZ4.xml",
  4367. "lib/net46/K4os.Compression.LZ4.dll",
  4368. "lib/net46/K4os.Compression.LZ4.xml",
  4369. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4370. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4371. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4372. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4373. ]
  4374. },
  4375. "K4os.Compression.LZ4.Streams/1.1.11": {
  4376. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4377. "type": "package",
  4378. "path": "k4os.compression.lz4.streams/1.1.11",
  4379. "files": [
  4380. ".nupkg.metadata",
  4381. ".signature.p7s",
  4382. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4383. "k4os.compression.lz4.streams.nuspec",
  4384. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4385. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4386. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4387. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4388. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4389. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4390. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4391. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4392. ]
  4393. },
  4394. "K4os.Hash.xxHash/1.0.6": {
  4395. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4396. "type": "package",
  4397. "path": "k4os.hash.xxhash/1.0.6",
  4398. "files": [
  4399. ".nupkg.metadata",
  4400. ".signature.p7s",
  4401. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4402. "k4os.hash.xxhash.nuspec",
  4403. "lib/net45/K4os.Hash.xxHash.dll",
  4404. "lib/net45/K4os.Hash.xxHash.xml",
  4405. "lib/net46/K4os.Hash.xxHash.dll",
  4406. "lib/net46/K4os.Hash.xxHash.xml",
  4407. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4408. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4409. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4410. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4411. ]
  4412. },
  4413. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4414. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4415. "type": "package",
  4416. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4417. "files": [
  4418. ".nupkg.metadata",
  4419. ".signature.p7s",
  4420. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4421. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4422. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4423. "linqkit.microsoft.entityframeworkcore.nuspec"
  4424. ]
  4425. },
  4426. "log4net/2.0.17": {
  4427. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4428. "type": "package",
  4429. "path": "log4net/2.0.17",
  4430. "files": [
  4431. ".nupkg.metadata",
  4432. ".signature.p7s",
  4433. "lib/net20/log4net.dll",
  4434. "lib/net20/log4net.xml",
  4435. "lib/net35/log4net.dll",
  4436. "lib/net35/log4net.xml",
  4437. "lib/net40-client/log4net.dll",
  4438. "lib/net40-client/log4net.xml",
  4439. "lib/net40/log4net.dll",
  4440. "lib/net40/log4net.xml",
  4441. "lib/net45/log4net.dll",
  4442. "lib/net45/log4net.xml",
  4443. "lib/netstandard1.3/log4net.dll",
  4444. "lib/netstandard1.3/log4net.xml",
  4445. "lib/netstandard2.0/log4net.dll",
  4446. "lib/netstandard2.0/log4net.xml",
  4447. "log4net.2.0.17.nupkg.sha512",
  4448. "log4net.nuspec",
  4449. "package-icon.png"
  4450. ]
  4451. },
  4452. "MathNet.Numerics.Signed/4.15.0": {
  4453. "sha512": "LFjukMRatkg9dgRM7U/gM4uKgaWAX7E0lt3fsVDTPdtBIVuh7uPlksDie290br1/tv1a4Ar/Bz9ywCPSL8PhHg==",
  4454. "type": "package",
  4455. "path": "mathnet.numerics.signed/4.15.0",
  4456. "files": [
  4457. ".nupkg.metadata",
  4458. ".signature.p7s",
  4459. "icon.png",
  4460. "lib/net40/MathNet.Numerics.dll",
  4461. "lib/net40/MathNet.Numerics.xml",
  4462. "lib/net461/MathNet.Numerics.dll",
  4463. "lib/net461/MathNet.Numerics.xml",
  4464. "lib/netstandard1.3/MathNet.Numerics.dll",
  4465. "lib/netstandard1.3/MathNet.Numerics.xml",
  4466. "lib/netstandard2.0/MathNet.Numerics.dll",
  4467. "lib/netstandard2.0/MathNet.Numerics.xml",
  4468. "mathnet.numerics.signed.4.15.0.nupkg.sha512",
  4469. "mathnet.numerics.signed.nuspec"
  4470. ]
  4471. },
  4472. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  4473. "sha512": "26WlfJsOB4QP3VsEVu5GGDSGm5wu6ikQqRUOaZ3BUmyGcMWsD28xFxPxFw4OszYgKpj54QYlyec19KcrEGkqDw==",
  4474. "type": "package",
  4475. "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.0",
  4476. "files": [
  4477. ".nupkg.metadata",
  4478. ".signature.p7s",
  4479. "Icon.png",
  4480. "THIRD-PARTY-NOTICES.TXT",
  4481. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4482. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4483. "microsoft.aspnetcore.authentication.jwtbearer.5.0.0.nupkg.sha512",
  4484. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4485. ]
  4486. },
  4487. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  4488. "sha512": "YzUMJYSVWEEQmHpOhEzOcZ2/ltQ/uP1s8DHK8oaobgsjKUdIeRvEwtVQ5D6zO0vdlj4j9Mw0JD1FrZPGI07fHw==",
  4489. "type": "package",
  4490. "path": "microsoft.aspnetcore.authentication.openidconnect/5.0.0",
  4491. "files": [
  4492. ".nupkg.metadata",
  4493. ".signature.p7s",
  4494. "Icon.png",
  4495. "THIRD-PARTY-NOTICES.TXT",
  4496. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
  4497. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
  4498. "microsoft.aspnetcore.authentication.openidconnect.5.0.0.nupkg.sha512",
  4499. "microsoft.aspnetcore.authentication.openidconnect.nuspec"
  4500. ]
  4501. },
  4502. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4503. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4504. "type": "package",
  4505. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4506. "files": [
  4507. ".nupkg.metadata",
  4508. ".signature.p7s",
  4509. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4510. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4511. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4512. "microsoft.aspnetcore.http.abstractions.nuspec"
  4513. ]
  4514. },
  4515. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4516. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4517. "type": "package",
  4518. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4519. "files": [
  4520. ".nupkg.metadata",
  4521. ".signature.p7s",
  4522. "Icon.png",
  4523. "THIRD-PARTY-NOTICES.TXT",
  4524. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4525. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4526. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4527. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4528. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4529. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4530. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4531. "microsoft.aspnetcore.http.features.nuspec"
  4532. ]
  4533. },
  4534. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  4535. "sha512": "oy/fvnBHpofNPskGcCrzZv1AhY36YHV0lyWy9NC5ye5eHvEJeJsSKjn2fNk/j1lXOuF13H9qrvZrA9zNkymy5Q==",
  4536. "type": "package",
  4537. "path": "microsoft.aspnetcore.jsonpatch/5.0.0",
  4538. "files": [
  4539. ".nupkg.metadata",
  4540. ".signature.p7s",
  4541. "Icon.png",
  4542. "THIRD-PARTY-NOTICES.TXT",
  4543. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  4544. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  4545. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4546. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4547. "microsoft.aspnetcore.jsonpatch.5.0.0.nupkg.sha512",
  4548. "microsoft.aspnetcore.jsonpatch.nuspec"
  4549. ]
  4550. },
  4551. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  4552. "sha512": "EnGI7CGWaijTuvUxY0lncAp/q/R7HZJCm8NwqiUHxDjrEWYdC/5oOHafVgNjVpk2zLsDesyaGnJundLnw5KNVA==",
  4553. "type": "package",
  4554. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/5.0.0",
  4555. "files": [
  4556. ".nupkg.metadata",
  4557. ".signature.p7s",
  4558. "Icon.png",
  4559. "THIRD-PARTY-NOTICES.TXT",
  4560. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4561. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4562. "microsoft.aspnetcore.mvc.newtonsoftjson.5.0.0.nupkg.sha512",
  4563. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4564. ]
  4565. },
  4566. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4567. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4568. "type": "package",
  4569. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4570. "files": [
  4571. ".nupkg.metadata",
  4572. ".signature.p7s",
  4573. "Icon.png",
  4574. "THIRD-PARTY-NOTICES.TXT",
  4575. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4576. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4577. "microsoft.aspnetcore.nodeservices.nuspec"
  4578. ]
  4579. },
  4580. "Microsoft.Bcl.AsyncInterfaces/9.0.8": {
  4581. "sha512": "mdq9WaHnRJBvmhbDvoEk9aIEjpoW1cmA6wGuE0/eV49NT/0Z/d+NauB4jzw2Dyi/TndebYfjAYHCOXeB0c/Qhg==",
  4582. "type": "package",
  4583. "path": "microsoft.bcl.asyncinterfaces/9.0.8",
  4584. "files": [
  4585. ".nupkg.metadata",
  4586. ".signature.p7s",
  4587. "Icon.png",
  4588. "LICENSE.TXT",
  4589. "PACKAGE.md",
  4590. "THIRD-PARTY-NOTICES.TXT",
  4591. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  4592. "buildTransitive/net462/_._",
  4593. "buildTransitive/net8.0/_._",
  4594. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets",
  4595. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  4596. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  4597. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4598. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4599. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4600. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4601. "microsoft.bcl.asyncinterfaces.9.0.8.nupkg.sha512",
  4602. "microsoft.bcl.asyncinterfaces.nuspec",
  4603. "useSharedDesignerContext.txt"
  4604. ]
  4605. },
  4606. "Microsoft.CSharp/4.7.0": {
  4607. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4608. "type": "package",
  4609. "path": "microsoft.csharp/4.7.0",
  4610. "files": [
  4611. ".nupkg.metadata",
  4612. ".signature.p7s",
  4613. "LICENSE.TXT",
  4614. "THIRD-PARTY-NOTICES.TXT",
  4615. "lib/MonoAndroid10/_._",
  4616. "lib/MonoTouch10/_._",
  4617. "lib/net45/_._",
  4618. "lib/netcore50/Microsoft.CSharp.dll",
  4619. "lib/netcoreapp2.0/_._",
  4620. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4621. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4622. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4623. "lib/portable-net45+win8+wp8+wpa81/_._",
  4624. "lib/uap10.0.16299/_._",
  4625. "lib/win8/_._",
  4626. "lib/wp80/_._",
  4627. "lib/wpa81/_._",
  4628. "lib/xamarinios10/_._",
  4629. "lib/xamarinmac20/_._",
  4630. "lib/xamarintvos10/_._",
  4631. "lib/xamarinwatchos10/_._",
  4632. "microsoft.csharp.4.7.0.nupkg.sha512",
  4633. "microsoft.csharp.nuspec",
  4634. "ref/MonoAndroid10/_._",
  4635. "ref/MonoTouch10/_._",
  4636. "ref/net45/_._",
  4637. "ref/netcore50/Microsoft.CSharp.dll",
  4638. "ref/netcore50/Microsoft.CSharp.xml",
  4639. "ref/netcore50/de/Microsoft.CSharp.xml",
  4640. "ref/netcore50/es/Microsoft.CSharp.xml",
  4641. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4642. "ref/netcore50/it/Microsoft.CSharp.xml",
  4643. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4644. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4645. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4646. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4647. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4648. "ref/netcoreapp2.0/_._",
  4649. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4650. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4651. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4652. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4653. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4654. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4655. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4656. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4657. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4658. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4659. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4660. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4661. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4662. "ref/portable-net45+win8+wp8+wpa81/_._",
  4663. "ref/uap10.0.16299/_._",
  4664. "ref/win8/_._",
  4665. "ref/wp80/_._",
  4666. "ref/wpa81/_._",
  4667. "ref/xamarinios10/_._",
  4668. "ref/xamarinmac20/_._",
  4669. "ref/xamarintvos10/_._",
  4670. "ref/xamarinwatchos10/_._",
  4671. "useSharedDesignerContext.txt",
  4672. "version.txt"
  4673. ]
  4674. },
  4675. "Microsoft.EntityFrameworkCore/5.0.4": {
  4676. "sha512": "upRpXluUeONMYO+O3RU8G+ZZcrnDrnNVWg4eJmSfertTdw7Hc5tgIeg/O8+oBKqf+OvBrQKW0U3PI9yoTsuPYg==",
  4677. "type": "package",
  4678. "path": "microsoft.entityframeworkcore/5.0.4",
  4679. "files": [
  4680. ".nupkg.metadata",
  4681. ".signature.p7s",
  4682. "Icon.png",
  4683. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4684. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4685. "microsoft.entityframeworkcore.5.0.4.nupkg.sha512",
  4686. "microsoft.entityframeworkcore.nuspec"
  4687. ]
  4688. },
  4689. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  4690. "sha512": "4y+y28SHjniLIqj7M7YNRO8khBnCBtkM6TJG8oX0wyEZuLum+3e9vqqna1naaV6Hi4BhXBHcD/sjhIfW1u0ZfQ==",
  4691. "type": "package",
  4692. "path": "microsoft.entityframeworkcore.abstractions/5.0.4",
  4693. "files": [
  4694. ".nupkg.metadata",
  4695. ".signature.p7s",
  4696. "Icon.png",
  4697. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4698. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4699. "microsoft.entityframeworkcore.abstractions.5.0.4.nupkg.sha512",
  4700. "microsoft.entityframeworkcore.abstractions.nuspec"
  4701. ]
  4702. },
  4703. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  4704. "sha512": "z8OMwlXcUZJCArcDdhR0NRkmS0UyNg08l1LXPZCgYqjBeW8RvNXshH3H5ru/7IOVpyOfKrG5Q3nsgdD18OFG/g==",
  4705. "type": "package",
  4706. "path": "microsoft.entityframeworkcore.analyzers/5.0.4",
  4707. "files": [
  4708. ".nupkg.metadata",
  4709. ".signature.p7s",
  4710. "Icon.png",
  4711. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4712. "lib/netstandard2.0/_._",
  4713. "microsoft.entityframeworkcore.analyzers.5.0.4.nupkg.sha512",
  4714. "microsoft.entityframeworkcore.analyzers.nuspec"
  4715. ]
  4716. },
  4717. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  4718. "sha512": "LqyE5MX0IUFjsXu3tNIMpTtC4poY7XQogpGdATjK949tCKopxyJuzTZtgsgdc20LGFWQM0UwwyyfUNjs5kKvsw==",
  4719. "type": "package",
  4720. "path": "microsoft.entityframeworkcore.design/5.0.4",
  4721. "files": [
  4722. ".nupkg.metadata",
  4723. ".signature.p7s",
  4724. "Icon.png",
  4725. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  4726. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  4727. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  4728. "microsoft.entityframeworkcore.design.5.0.4.nupkg.sha512",
  4729. "microsoft.entityframeworkcore.design.nuspec"
  4730. ]
  4731. },
  4732. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  4733. "sha512": "9Qa6SqX+hJZogo99bICsS6kgQ1C5RtEjPrsvQxjInVdY9QSWsXWIYfem0rv3wi+htwkJuMHVHGSaqG1oeAwe+w==",
  4734. "type": "package",
  4735. "path": "microsoft.entityframeworkcore.relational/5.0.4",
  4736. "files": [
  4737. ".nupkg.metadata",
  4738. ".signature.p7s",
  4739. "Icon.png",
  4740. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4741. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4742. "microsoft.entityframeworkcore.relational.5.0.4.nupkg.sha512",
  4743. "microsoft.entityframeworkcore.relational.nuspec"
  4744. ]
  4745. },
  4746. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4747. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4748. "type": "package",
  4749. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4750. "hasTools": true,
  4751. "files": [
  4752. ".nupkg.metadata",
  4753. ".signature.p7s",
  4754. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4755. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4756. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4757. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4758. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4759. "microsoft.extensions.apidescription.server.nuspec",
  4760. "tools/Newtonsoft.Json.dll",
  4761. "tools/dotnet-getdocument.deps.json",
  4762. "tools/dotnet-getdocument.dll",
  4763. "tools/dotnet-getdocument.runtimeconfig.json",
  4764. "tools/net461-x86/GetDocument.Insider.exe",
  4765. "tools/net461-x86/GetDocument.Insider.exe.config",
  4766. "tools/net461/GetDocument.Insider.exe",
  4767. "tools/net461/GetDocument.Insider.exe.config",
  4768. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4769. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4770. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4771. ]
  4772. },
  4773. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4774. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4775. "type": "package",
  4776. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4777. "files": [
  4778. ".nupkg.metadata",
  4779. ".signature.p7s",
  4780. "Icon.png",
  4781. "LICENSE.TXT",
  4782. "THIRD-PARTY-NOTICES.TXT",
  4783. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4784. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4785. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4786. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4787. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4788. "microsoft.extensions.caching.abstractions.nuspec",
  4789. "useSharedDesignerContext.txt",
  4790. "version.txt"
  4791. ]
  4792. },
  4793. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4794. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4795. "type": "package",
  4796. "path": "microsoft.extensions.caching.memory/5.0.0",
  4797. "files": [
  4798. ".nupkg.metadata",
  4799. ".signature.p7s",
  4800. "Icon.png",
  4801. "LICENSE.TXT",
  4802. "THIRD-PARTY-NOTICES.TXT",
  4803. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4804. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4805. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4806. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4807. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4808. "microsoft.extensions.caching.memory.nuspec",
  4809. "useSharedDesignerContext.txt",
  4810. "version.txt"
  4811. ]
  4812. },
  4813. "Microsoft.Extensions.Configuration/5.0.0": {
  4814. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4815. "type": "package",
  4816. "path": "microsoft.extensions.configuration/5.0.0",
  4817. "files": [
  4818. ".nupkg.metadata",
  4819. ".signature.p7s",
  4820. "Icon.png",
  4821. "LICENSE.TXT",
  4822. "THIRD-PARTY-NOTICES.TXT",
  4823. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4824. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4825. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4826. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4827. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4828. "microsoft.extensions.configuration.nuspec",
  4829. "useSharedDesignerContext.txt",
  4830. "version.txt"
  4831. ]
  4832. },
  4833. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4834. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4835. "type": "package",
  4836. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "Icon.png",
  4841. "LICENSE.TXT",
  4842. "THIRD-PARTY-NOTICES.TXT",
  4843. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4844. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4845. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4846. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4847. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4848. "microsoft.extensions.configuration.abstractions.nuspec",
  4849. "useSharedDesignerContext.txt",
  4850. "version.txt"
  4851. ]
  4852. },
  4853. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4854. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4855. "type": "package",
  4856. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4857. "files": [
  4858. ".nupkg.metadata",
  4859. ".signature.p7s",
  4860. "Icon.png",
  4861. "LICENSE.TXT",
  4862. "THIRD-PARTY-NOTICES.TXT",
  4863. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4864. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4865. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4866. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4867. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4868. "microsoft.extensions.configuration.binder.nuspec",
  4869. "useSharedDesignerContext.txt",
  4870. "version.txt"
  4871. ]
  4872. },
  4873. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4874. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4875. "type": "package",
  4876. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4877. "files": [
  4878. ".nupkg.metadata",
  4879. ".signature.p7s",
  4880. "Icon.png",
  4881. "LICENSE.TXT",
  4882. "THIRD-PARTY-NOTICES.TXT",
  4883. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4884. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4885. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4886. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4887. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4888. "microsoft.extensions.configuration.fileextensions.nuspec",
  4889. "useSharedDesignerContext.txt",
  4890. "version.txt"
  4891. ]
  4892. },
  4893. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4894. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4895. "type": "package",
  4896. "path": "microsoft.extensions.configuration.json/5.0.0",
  4897. "files": [
  4898. ".nupkg.metadata",
  4899. ".signature.p7s",
  4900. "Icon.png",
  4901. "LICENSE.TXT",
  4902. "THIRD-PARTY-NOTICES.TXT",
  4903. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4904. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4905. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4906. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4907. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4908. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4909. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4910. "microsoft.extensions.configuration.json.nuspec",
  4911. "useSharedDesignerContext.txt",
  4912. "version.txt"
  4913. ]
  4914. },
  4915. "Microsoft.Extensions.DependencyInjection/9.0.4": {
  4916. "sha512": "f2MTUaS2EQ3lX4325ytPAISZqgBfXmY0WvgD80ji6Z20AoDNiCESxsqo6mFRwHJD/jfVKRw9FsW6+86gNre3ug==",
  4917. "type": "package",
  4918. "path": "microsoft.extensions.dependencyinjection/9.0.4",
  4919. "files": [
  4920. ".nupkg.metadata",
  4921. ".signature.p7s",
  4922. "Icon.png",
  4923. "LICENSE.TXT",
  4924. "PACKAGE.md",
  4925. "THIRD-PARTY-NOTICES.TXT",
  4926. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  4927. "buildTransitive/net462/_._",
  4928. "buildTransitive/net8.0/_._",
  4929. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4930. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  4931. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  4932. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  4933. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  4934. "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
  4935. "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
  4936. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4937. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4938. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4939. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4940. "microsoft.extensions.dependencyinjection.9.0.4.nupkg.sha512",
  4941. "microsoft.extensions.dependencyinjection.nuspec",
  4942. "useSharedDesignerContext.txt"
  4943. ]
  4944. },
  4945. "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.4": {
  4946. "sha512": "UI0TQPVkS78bFdjkTodmkH0Fe8lXv9LnhGFKgKrsgUJ5a5FVdFRcgjIkBVLbGgdRhxWirxH/8IXUtEyYJx6GQg==",
  4947. "type": "package",
  4948. "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.4",
  4949. "files": [
  4950. ".nupkg.metadata",
  4951. ".signature.p7s",
  4952. "Icon.png",
  4953. "LICENSE.TXT",
  4954. "PACKAGE.md",
  4955. "THIRD-PARTY-NOTICES.TXT",
  4956. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4957. "buildTransitive/net462/_._",
  4958. "buildTransitive/net8.0/_._",
  4959. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4960. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4961. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4962. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4963. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4964. "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4965. "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4966. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4967. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4968. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4969. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4970. "microsoft.extensions.dependencyinjection.abstractions.9.0.4.nupkg.sha512",
  4971. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4972. "useSharedDesignerContext.txt"
  4973. ]
  4974. },
  4975. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4976. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4977. "type": "package",
  4978. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4979. "files": [
  4980. ".nupkg.metadata",
  4981. ".signature.p7s",
  4982. "Icon.png",
  4983. "LICENSE.TXT",
  4984. "THIRD-PARTY-NOTICES.TXT",
  4985. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4986. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4987. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4988. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4989. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4990. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4991. "useSharedDesignerContext.txt",
  4992. "version.txt"
  4993. ]
  4994. },
  4995. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4996. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4997. "type": "package",
  4998. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4999. "files": [
  5000. ".nupkg.metadata",
  5001. ".signature.p7s",
  5002. "Icon.png",
  5003. "LICENSE.TXT",
  5004. "THIRD-PARTY-NOTICES.TXT",
  5005. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5006. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5007. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5008. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5009. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  5010. "microsoft.extensions.fileproviders.physical.nuspec",
  5011. "useSharedDesignerContext.txt",
  5012. "version.txt"
  5013. ]
  5014. },
  5015. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  5016. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  5017. "type": "package",
  5018. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  5019. "files": [
  5020. ".nupkg.metadata",
  5021. ".signature.p7s",
  5022. "Icon.png",
  5023. "LICENSE.TXT",
  5024. "THIRD-PARTY-NOTICES.TXT",
  5025. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5026. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5027. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5028. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5029. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  5030. "microsoft.extensions.filesystemglobbing.nuspec",
  5031. "useSharedDesignerContext.txt",
  5032. "version.txt"
  5033. ]
  5034. },
  5035. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  5036. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  5037. "type": "package",
  5038. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  5039. "files": [
  5040. ".nupkg.metadata",
  5041. ".signature.p7s",
  5042. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5043. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5044. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5045. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5046. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  5047. "microsoft.extensions.hosting.abstractions.nuspec",
  5048. "packageIcon.png"
  5049. ]
  5050. },
  5051. "Microsoft.Extensions.Http/5.0.0": {
  5052. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  5053. "type": "package",
  5054. "path": "microsoft.extensions.http/5.0.0",
  5055. "files": [
  5056. ".nupkg.metadata",
  5057. ".signature.p7s",
  5058. "Icon.png",
  5059. "LICENSE.TXT",
  5060. "THIRD-PARTY-NOTICES.TXT",
  5061. "lib/net461/Microsoft.Extensions.Http.dll",
  5062. "lib/net461/Microsoft.Extensions.Http.xml",
  5063. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  5064. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  5065. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  5066. "microsoft.extensions.http.nuspec",
  5067. "useSharedDesignerContext.txt",
  5068. "version.txt"
  5069. ]
  5070. },
  5071. "Microsoft.Extensions.Logging/9.0.4": {
  5072. "sha512": "xW6QPYsqhbuWBO9/1oA43g/XPKbohJx+7G8FLQgQXIriYvY7s+gxr2wjQJfRoPO900dvvv2vVH7wZovG+M1m6w==",
  5073. "type": "package",
  5074. "path": "microsoft.extensions.logging/9.0.4",
  5075. "files": [
  5076. ".nupkg.metadata",
  5077. ".signature.p7s",
  5078. "Icon.png",
  5079. "LICENSE.TXT",
  5080. "PACKAGE.md",
  5081. "THIRD-PARTY-NOTICES.TXT",
  5082. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  5083. "buildTransitive/net462/_._",
  5084. "buildTransitive/net8.0/_._",
  5085. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  5086. "lib/net462/Microsoft.Extensions.Logging.dll",
  5087. "lib/net462/Microsoft.Extensions.Logging.xml",
  5088. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  5089. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  5090. "lib/net9.0/Microsoft.Extensions.Logging.dll",
  5091. "lib/net9.0/Microsoft.Extensions.Logging.xml",
  5092. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5093. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5094. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5095. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5096. "microsoft.extensions.logging.9.0.4.nupkg.sha512",
  5097. "microsoft.extensions.logging.nuspec",
  5098. "useSharedDesignerContext.txt"
  5099. ]
  5100. },
  5101. "Microsoft.Extensions.Logging.Abstractions/9.0.4": {
  5102. "sha512": "0MXlimU4Dud6t+iNi5NEz3dO2w1HXdhoOLaYFuLPCjAsvlPQGwOT6V2KZRMLEhCAm/stSZt1AUv0XmDdkjvtbw==",
  5103. "type": "package",
  5104. "path": "microsoft.extensions.logging.abstractions/9.0.4",
  5105. "files": [
  5106. ".nupkg.metadata",
  5107. ".signature.p7s",
  5108. "Icon.png",
  5109. "LICENSE.TXT",
  5110. "PACKAGE.md",
  5111. "THIRD-PARTY-NOTICES.TXT",
  5112. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5113. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5114. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5115. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5116. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5117. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5118. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5119. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5120. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5121. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5122. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5123. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5124. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5125. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5126. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5127. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5128. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5129. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5130. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5131. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5132. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5133. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5134. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5135. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5136. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5137. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5138. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5139. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5140. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  5141. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5142. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5143. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5144. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5145. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5146. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5147. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5148. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5149. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5150. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5151. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5152. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5153. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5154. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  5155. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  5156. "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5157. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5158. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5159. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  5160. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  5161. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5162. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5163. "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5164. "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5165. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5166. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5167. "microsoft.extensions.logging.abstractions.9.0.4.nupkg.sha512",
  5168. "microsoft.extensions.logging.abstractions.nuspec",
  5169. "useSharedDesignerContext.txt"
  5170. ]
  5171. },
  5172. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  5173. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  5174. "type": "package",
  5175. "path": "microsoft.extensions.logging.configuration/3.1.30",
  5176. "files": [
  5177. ".nupkg.metadata",
  5178. ".signature.p7s",
  5179. "Icon.png",
  5180. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  5181. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  5182. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  5183. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  5184. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  5185. "microsoft.extensions.logging.configuration.nuspec"
  5186. ]
  5187. },
  5188. "Microsoft.Extensions.Logging.Console/3.1.30": {
  5189. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  5190. "type": "package",
  5191. "path": "microsoft.extensions.logging.console/3.1.30",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. ".signature.p7s",
  5195. "Icon.png",
  5196. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  5197. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  5198. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  5199. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  5200. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  5201. "microsoft.extensions.logging.console.nuspec"
  5202. ]
  5203. },
  5204. "Microsoft.Extensions.Options/9.0.4": {
  5205. "sha512": "fiFI2+58kicqVZyt/6obqoFwHiab7LC4FkQ3mmiBJ28Yy4fAvy2+v9MRnSvvlOO8chTOjKsdafFl/K9veCPo5g==",
  5206. "type": "package",
  5207. "path": "microsoft.extensions.options/9.0.4",
  5208. "files": [
  5209. ".nupkg.metadata",
  5210. ".signature.p7s",
  5211. "Icon.png",
  5212. "LICENSE.TXT",
  5213. "PACKAGE.md",
  5214. "THIRD-PARTY-NOTICES.TXT",
  5215. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  5216. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5217. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5218. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5219. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5220. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5221. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5222. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5223. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5224. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5225. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5226. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5227. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5228. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  5229. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  5230. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  5231. "buildTransitive/net8.0/Microsoft.Extensions.Options.targets",
  5232. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  5233. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  5234. "lib/net462/Microsoft.Extensions.Options.dll",
  5235. "lib/net462/Microsoft.Extensions.Options.xml",
  5236. "lib/net8.0/Microsoft.Extensions.Options.dll",
  5237. "lib/net8.0/Microsoft.Extensions.Options.xml",
  5238. "lib/net9.0/Microsoft.Extensions.Options.dll",
  5239. "lib/net9.0/Microsoft.Extensions.Options.xml",
  5240. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5241. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5242. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5243. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5244. "microsoft.extensions.options.9.0.4.nupkg.sha512",
  5245. "microsoft.extensions.options.nuspec",
  5246. "useSharedDesignerContext.txt"
  5247. ]
  5248. },
  5249. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  5250. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  5251. "type": "package",
  5252. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  5253. "files": [
  5254. ".nupkg.metadata",
  5255. ".signature.p7s",
  5256. "Icon.png",
  5257. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5258. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5259. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5260. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5261. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  5262. "microsoft.extensions.options.configurationextensions.nuspec"
  5263. ]
  5264. },
  5265. "Microsoft.Extensions.Primitives/9.0.4": {
  5266. "sha512": "SPFyMjyku1nqTFFJ928JAMd0QnRe4xjE7KeKnZMWXf3xk+6e0WiOZAluYtLdbJUXtsl2cCRSi8cBquJ408k8RA==",
  5267. "type": "package",
  5268. "path": "microsoft.extensions.primitives/9.0.4",
  5269. "files": [
  5270. ".nupkg.metadata",
  5271. ".signature.p7s",
  5272. "Icon.png",
  5273. "LICENSE.TXT",
  5274. "PACKAGE.md",
  5275. "THIRD-PARTY-NOTICES.TXT",
  5276. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  5277. "buildTransitive/net462/_._",
  5278. "buildTransitive/net8.0/_._",
  5279. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5280. "lib/net462/Microsoft.Extensions.Primitives.dll",
  5281. "lib/net462/Microsoft.Extensions.Primitives.xml",
  5282. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  5283. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  5284. "lib/net9.0/Microsoft.Extensions.Primitives.dll",
  5285. "lib/net9.0/Microsoft.Extensions.Primitives.xml",
  5286. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5287. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5288. "microsoft.extensions.primitives.9.0.4.nupkg.sha512",
  5289. "microsoft.extensions.primitives.nuspec",
  5290. "useSharedDesignerContext.txt"
  5291. ]
  5292. },
  5293. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  5294. "sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
  5295. "type": "package",
  5296. "path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5301. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5302. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5303. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5304. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5305. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5306. "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
  5307. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5308. ]
  5309. },
  5310. "Microsoft.IdentityModel.Logging/6.7.1": {
  5311. "sha512": "WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
  5312. "type": "package",
  5313. "path": "microsoft.identitymodel.logging/6.7.1",
  5314. "files": [
  5315. ".nupkg.metadata",
  5316. ".signature.p7s",
  5317. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5318. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5319. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5320. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5321. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5322. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5323. "microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
  5324. "microsoft.identitymodel.logging.nuspec"
  5325. ]
  5326. },
  5327. "Microsoft.IdentityModel.Protocols/6.7.1": {
  5328. "sha512": "DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
  5329. "type": "package",
  5330. "path": "microsoft.identitymodel.protocols/6.7.1",
  5331. "files": [
  5332. ".nupkg.metadata",
  5333. ".signature.p7s",
  5334. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5335. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5336. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5337. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5338. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5339. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5340. "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
  5341. "microsoft.identitymodel.protocols.nuspec"
  5342. ]
  5343. },
  5344. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  5345. "sha512": "99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
  5346. "type": "package",
  5347. "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
  5348. "files": [
  5349. ".nupkg.metadata",
  5350. ".signature.p7s",
  5351. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5352. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5353. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5354. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5355. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5356. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5357. "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
  5358. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5359. ]
  5360. },
  5361. "Microsoft.IdentityModel.Tokens/6.7.1": {
  5362. "sha512": "Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
  5363. "type": "package",
  5364. "path": "microsoft.identitymodel.tokens/6.7.1",
  5365. "files": [
  5366. ".nupkg.metadata",
  5367. ".signature.p7s",
  5368. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5369. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5370. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5371. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5372. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5373. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5374. "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
  5375. "microsoft.identitymodel.tokens.nuspec"
  5376. ]
  5377. },
  5378. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  5379. "sha512": "Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  5380. "type": "package",
  5381. "path": "microsoft.io.recyclablememorystream/2.3.2",
  5382. "files": [
  5383. ".nupkg.metadata",
  5384. ".signature.p7s",
  5385. "README.md",
  5386. "lib/net462/Microsoft.IO.RecyclableMemoryStream.dll",
  5387. "lib/net462/Microsoft.IO.RecyclableMemoryStream.xml",
  5388. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5389. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5390. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5391. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5392. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5393. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5394. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5395. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5396. "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512",
  5397. "microsoft.io.recyclablememorystream.nuspec"
  5398. ]
  5399. },
  5400. "Microsoft.NETCore.Platforms/5.0.0": {
  5401. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5402. "type": "package",
  5403. "path": "microsoft.netcore.platforms/5.0.0",
  5404. "files": [
  5405. ".nupkg.metadata",
  5406. ".signature.p7s",
  5407. "Icon.png",
  5408. "LICENSE.TXT",
  5409. "THIRD-PARTY-NOTICES.TXT",
  5410. "lib/netstandard1.0/_._",
  5411. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5412. "microsoft.netcore.platforms.nuspec",
  5413. "runtime.json",
  5414. "useSharedDesignerContext.txt",
  5415. "version.txt"
  5416. ]
  5417. },
  5418. "Microsoft.NETCore.Targets/1.1.3": {
  5419. "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  5420. "type": "package",
  5421. "path": "microsoft.netcore.targets/1.1.3",
  5422. "files": [
  5423. ".nupkg.metadata",
  5424. ".signature.p7s",
  5425. "ThirdPartyNotices.txt",
  5426. "dotnet_library_license.txt",
  5427. "lib/netstandard1.0/_._",
  5428. "microsoft.netcore.targets.1.1.3.nupkg.sha512",
  5429. "microsoft.netcore.targets.nuspec",
  5430. "runtime.json"
  5431. ]
  5432. },
  5433. "Microsoft.OpenApi/1.2.3": {
  5434. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  5435. "type": "package",
  5436. "path": "microsoft.openapi/1.2.3",
  5437. "files": [
  5438. ".nupkg.metadata",
  5439. ".signature.p7s",
  5440. "lib/net46/Microsoft.OpenApi.dll",
  5441. "lib/net46/Microsoft.OpenApi.pdb",
  5442. "lib/net46/Microsoft.OpenApi.xml",
  5443. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  5444. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  5445. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  5446. "microsoft.openapi.1.2.3.nupkg.sha512",
  5447. "microsoft.openapi.nuspec"
  5448. ]
  5449. },
  5450. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  5451. "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
  5452. "type": "package",
  5453. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9",
  5454. "hasTools": true,
  5455. "files": [
  5456. ".nupkg.metadata",
  5457. ".signature.p7s",
  5458. "EULA.md",
  5459. "ThirdPartyNotices.txt",
  5460. "build/Container.props",
  5461. "build/Container.targets",
  5462. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5463. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5464. "build/ToolsTarget.props",
  5465. "build/ToolsTarget.targets",
  5466. "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
  5467. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5468. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5469. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5470. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5471. "tools/Newtonsoft.Json.dll",
  5472. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5473. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5474. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5475. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5476. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5477. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5478. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5479. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5480. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5481. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5482. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5483. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5484. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5485. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5486. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5487. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5488. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5489. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5490. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5491. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5492. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5493. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5494. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5495. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5496. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5497. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5498. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5499. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5500. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5501. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5502. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5503. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5504. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5505. "tools/utils/KillProcess.exe",
  5506. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5507. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5508. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5509. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5510. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5511. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5512. ]
  5513. },
  5514. "Microsoft.Win32.Primitives/4.3.0": {
  5515. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5516. "type": "package",
  5517. "path": "microsoft.win32.primitives/4.3.0",
  5518. "files": [
  5519. ".nupkg.metadata",
  5520. ".signature.p7s",
  5521. "ThirdPartyNotices.txt",
  5522. "dotnet_library_license.txt",
  5523. "lib/MonoAndroid10/_._",
  5524. "lib/MonoTouch10/_._",
  5525. "lib/net46/Microsoft.Win32.Primitives.dll",
  5526. "lib/xamarinios10/_._",
  5527. "lib/xamarinmac20/_._",
  5528. "lib/xamarintvos10/_._",
  5529. "lib/xamarinwatchos10/_._",
  5530. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5531. "microsoft.win32.primitives.nuspec",
  5532. "ref/MonoAndroid10/_._",
  5533. "ref/MonoTouch10/_._",
  5534. "ref/net46/Microsoft.Win32.Primitives.dll",
  5535. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5536. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5537. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5538. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5539. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5540. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5541. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5542. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5543. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5544. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5545. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5546. "ref/xamarinios10/_._",
  5547. "ref/xamarinmac20/_._",
  5548. "ref/xamarintvos10/_._",
  5549. "ref/xamarinwatchos10/_._"
  5550. ]
  5551. },
  5552. "Microsoft.Win32.SystemEvents/6.0.0": {
  5553. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  5554. "type": "package",
  5555. "path": "microsoft.win32.systemevents/6.0.0",
  5556. "files": [
  5557. ".nupkg.metadata",
  5558. ".signature.p7s",
  5559. "Icon.png",
  5560. "LICENSE.TXT",
  5561. "THIRD-PARTY-NOTICES.TXT",
  5562. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  5563. "buildTransitive/netcoreapp3.1/_._",
  5564. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5565. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5566. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5567. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5568. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5569. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5570. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5571. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5572. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  5573. "microsoft.win32.systemevents.nuspec",
  5574. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5575. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5576. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5577. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5578. "useSharedDesignerContext.txt"
  5579. ]
  5580. },
  5581. "Minio/6.0.5": {
  5582. "sha512": "AK3JIDZnFZg2Hpkqo6vlzyiEC4OifG+jQbuqpAtXePnIo49G4pNn27THh3DI8s4o84b/MMBQF+n1DEwBNenxsg==",
  5583. "type": "package",
  5584. "path": "minio/6.0.5",
  5585. "files": [
  5586. ".nupkg.metadata",
  5587. ".signature.p7s",
  5588. "LICENSE",
  5589. "icon.png",
  5590. "lib/net8.0/Minio.dll",
  5591. "lib/net8.0/Minio.pdb",
  5592. "lib/net8.0/Minio.xml",
  5593. "lib/netstandard2.0/Minio.dll",
  5594. "lib/netstandard2.0/Minio.pdb",
  5595. "lib/netstandard2.0/Minio.xml",
  5596. "minio.6.0.5.nupkg.sha512",
  5597. "minio.nuspec",
  5598. "readme.md"
  5599. ]
  5600. },
  5601. "MySql.Data/8.0.23": {
  5602. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5603. "type": "package",
  5604. "path": "mysql.data/8.0.23",
  5605. "files": [
  5606. ".nupkg.metadata",
  5607. ".signature.p7s",
  5608. "lib/net452/MySql.Data.dll",
  5609. "lib/net452/MySql.Data.xml",
  5610. "lib/net452/Ubiety.Dns.Core.dll",
  5611. "lib/net452/Zstandard.Net.dll",
  5612. "lib/net48/MySql.Data.dll",
  5613. "lib/net48/MySql.Data.xml",
  5614. "lib/net48/Ubiety.Dns.Core.dll",
  5615. "lib/net48/Zstandard.Net.dll",
  5616. "lib/net5.0/MySql.Data.dll",
  5617. "lib/net5.0/MySql.Data.xml",
  5618. "lib/net5.0/Ubiety.Dns.Core.dll",
  5619. "lib/net5.0/Zstandard.Net.dll",
  5620. "lib/netstandard2.0/MySql.Data.dll",
  5621. "lib/netstandard2.0/MySql.Data.xml",
  5622. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5623. "lib/netstandard2.0/Zstandard.Net.dll",
  5624. "lib/netstandard2.1/MySql.Data.dll",
  5625. "lib/netstandard2.1/MySql.Data.xml",
  5626. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5627. "lib/netstandard2.1/Zstandard.Net.dll",
  5628. "mysql.data.8.0.23.nupkg.sha512",
  5629. "mysql.data.nuspec"
  5630. ]
  5631. },
  5632. "MySqlConnector/1.1.0": {
  5633. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5634. "type": "package",
  5635. "path": "mysqlconnector/1.1.0",
  5636. "files": [
  5637. ".nupkg.metadata",
  5638. ".signature.p7s",
  5639. "lib/net45/MySqlConnector.dll",
  5640. "lib/net45/MySqlConnector.xml",
  5641. "lib/net461/MySqlConnector.dll",
  5642. "lib/net461/MySqlConnector.xml",
  5643. "lib/net471/MySqlConnector.dll",
  5644. "lib/net471/MySqlConnector.xml",
  5645. "lib/net5.0/MySqlConnector.dll",
  5646. "lib/net5.0/MySqlConnector.xml",
  5647. "lib/netcoreapp2.1/MySqlConnector.dll",
  5648. "lib/netcoreapp2.1/MySqlConnector.xml",
  5649. "lib/netcoreapp3.1/MySqlConnector.dll",
  5650. "lib/netcoreapp3.1/MySqlConnector.xml",
  5651. "lib/netstandard1.3/MySqlConnector.dll",
  5652. "lib/netstandard1.3/MySqlConnector.xml",
  5653. "lib/netstandard2.0/MySqlConnector.dll",
  5654. "lib/netstandard2.0/MySqlConnector.xml",
  5655. "lib/netstandard2.1/MySqlConnector.dll",
  5656. "lib/netstandard2.1/MySqlConnector.xml",
  5657. "logo.png",
  5658. "mysqlconnector.1.1.0.nupkg.sha512",
  5659. "mysqlconnector.nuspec"
  5660. ]
  5661. },
  5662. "NETStandard.Library/1.6.1": {
  5663. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5664. "type": "package",
  5665. "path": "netstandard.library/1.6.1",
  5666. "files": [
  5667. ".nupkg.metadata",
  5668. ".signature.p7s",
  5669. "ThirdPartyNotices.txt",
  5670. "dotnet_library_license.txt",
  5671. "netstandard.library.1.6.1.nupkg.sha512",
  5672. "netstandard.library.nuspec"
  5673. ]
  5674. },
  5675. "Newtonsoft.Json/13.0.1": {
  5676. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5677. "type": "package",
  5678. "path": "newtonsoft.json/13.0.1",
  5679. "files": [
  5680. ".nupkg.metadata",
  5681. ".signature.p7s",
  5682. "LICENSE.md",
  5683. "lib/net20/Newtonsoft.Json.dll",
  5684. "lib/net20/Newtonsoft.Json.xml",
  5685. "lib/net35/Newtonsoft.Json.dll",
  5686. "lib/net35/Newtonsoft.Json.xml",
  5687. "lib/net40/Newtonsoft.Json.dll",
  5688. "lib/net40/Newtonsoft.Json.xml",
  5689. "lib/net45/Newtonsoft.Json.dll",
  5690. "lib/net45/Newtonsoft.Json.xml",
  5691. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5692. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5693. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5694. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5695. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5696. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5697. "newtonsoft.json.13.0.1.nupkg.sha512",
  5698. "newtonsoft.json.nuspec",
  5699. "packageIcon.png"
  5700. ]
  5701. },
  5702. "Newtonsoft.Json.Bson/1.0.2": {
  5703. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  5704. "type": "package",
  5705. "path": "newtonsoft.json.bson/1.0.2",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "LICENSE.md",
  5710. "lib/net45/Newtonsoft.Json.Bson.dll",
  5711. "lib/net45/Newtonsoft.Json.Bson.pdb",
  5712. "lib/net45/Newtonsoft.Json.Bson.xml",
  5713. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5714. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  5715. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5716. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  5717. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  5718. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  5719. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  5720. "newtonsoft.json.bson.nuspec"
  5721. ]
  5722. },
  5723. "NPOI/2.6.2": {
  5724. "sha512": "s5lxJQ1Xy2nr3yDvoMH6og2cb2I8reIrUROf2afjKucS+pWNZG07kwITo+CCS3KaXNiPjUn1YaS1PUf8fT9cHg==",
  5725. "type": "package",
  5726. "path": "npoi/2.6.2",
  5727. "files": [
  5728. ".nupkg.metadata",
  5729. ".signature.p7s",
  5730. "LICENSE",
  5731. "Read Me.txt",
  5732. "lib/net472/NPOI.Core.dll",
  5733. "lib/net472/NPOI.Core.pdb",
  5734. "lib/net472/NPOI.Core.xml",
  5735. "lib/net472/NPOI.OOXML.dll",
  5736. "lib/net472/NPOI.OOXML.pdb",
  5737. "lib/net472/NPOI.OOXML.xml",
  5738. "lib/net472/NPOI.OpenXml4Net.dll",
  5739. "lib/net472/NPOI.OpenXml4Net.pdb",
  5740. "lib/net472/NPOI.OpenXml4Net.xml",
  5741. "lib/net472/NPOI.OpenXmlFormats.dll",
  5742. "lib/net472/NPOI.OpenXmlFormats.pdb",
  5743. "lib/net472/NPOI.OpenXmlFormats.xml",
  5744. "lib/net6.0/NPOI.Core.dll",
  5745. "lib/net6.0/NPOI.Core.pdb",
  5746. "lib/net6.0/NPOI.Core.xml",
  5747. "lib/net6.0/NPOI.OOXML.dll",
  5748. "lib/net6.0/NPOI.OOXML.pdb",
  5749. "lib/net6.0/NPOI.OOXML.xml",
  5750. "lib/net6.0/NPOI.OpenXml4Net.dll",
  5751. "lib/net6.0/NPOI.OpenXml4Net.pdb",
  5752. "lib/net6.0/NPOI.OpenXml4Net.xml",
  5753. "lib/net6.0/NPOI.OpenXmlFormats.dll",
  5754. "lib/net6.0/NPOI.OpenXmlFormats.pdb",
  5755. "lib/net6.0/NPOI.OpenXmlFormats.xml",
  5756. "lib/netstandard2.0/NPOI.Core.dll",
  5757. "lib/netstandard2.0/NPOI.Core.pdb",
  5758. "lib/netstandard2.0/NPOI.Core.xml",
  5759. "lib/netstandard2.0/NPOI.OOXML.dll",
  5760. "lib/netstandard2.0/NPOI.OOXML.pdb",
  5761. "lib/netstandard2.0/NPOI.OOXML.xml",
  5762. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  5763. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  5764. "lib/netstandard2.0/NPOI.OpenXml4Net.xml",
  5765. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  5766. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  5767. "lib/netstandard2.0/NPOI.OpenXmlFormats.xml",
  5768. "lib/netstandard2.1/NPOI.Core.dll",
  5769. "lib/netstandard2.1/NPOI.Core.pdb",
  5770. "lib/netstandard2.1/NPOI.Core.xml",
  5771. "lib/netstandard2.1/NPOI.OOXML.dll",
  5772. "lib/netstandard2.1/NPOI.OOXML.pdb",
  5773. "lib/netstandard2.1/NPOI.OOXML.xml",
  5774. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  5775. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  5776. "lib/netstandard2.1/NPOI.OpenXml4Net.xml",
  5777. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  5778. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  5779. "lib/netstandard2.1/NPOI.OpenXmlFormats.xml",
  5780. "logo/120_120.jpg",
  5781. "logo/240_240.png",
  5782. "logo/32_32.jpg",
  5783. "logo/60_60.jpg",
  5784. "npoi.2.6.2.nupkg.sha512",
  5785. "npoi.nuspec"
  5786. ]
  5787. },
  5788. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5789. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5790. "type": "package",
  5791. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5792. "files": [
  5793. ".nupkg.metadata",
  5794. ".signature.p7s",
  5795. "icon.png",
  5796. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5797. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5798. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5799. "pomelo.entityframeworkcore.mysql.nuspec"
  5800. ]
  5801. },
  5802. "QRCoder/1.4.3": {
  5803. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5804. "type": "package",
  5805. "path": "qrcoder/1.4.3",
  5806. "files": [
  5807. ".nupkg.metadata",
  5808. ".signature.p7s",
  5809. "lib/net35/QRCoder.dll",
  5810. "lib/net40/QRCoder.dll",
  5811. "lib/net5.0-windows7.0/QRCoder.dll",
  5812. "lib/net5.0/QRCoder.dll",
  5813. "lib/net6.0-windows7.0/QRCoder.dll",
  5814. "lib/net6.0/QRCoder.dll",
  5815. "lib/netstandard1.3/QRCoder.dll",
  5816. "lib/netstandard2.0/QRCoder.dll",
  5817. "nuget-icon.png",
  5818. "nuget-readme.md",
  5819. "qrcoder.1.4.3.nupkg.sha512",
  5820. "qrcoder.nuspec"
  5821. ]
  5822. },
  5823. "Quartz/3.3.3": {
  5824. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5825. "type": "package",
  5826. "path": "quartz/3.3.3",
  5827. "files": [
  5828. ".nupkg.metadata",
  5829. ".signature.p7s",
  5830. "lib/net461/Quartz.dll",
  5831. "lib/net461/Quartz.xml",
  5832. "lib/net472/Quartz.dll",
  5833. "lib/net472/Quartz.xml",
  5834. "lib/netstandard2.0/Quartz.dll",
  5835. "lib/netstandard2.0/Quartz.xml",
  5836. "quartz-logo-small.png",
  5837. "quartz.3.3.3.nupkg.sha512",
  5838. "quartz.nuspec"
  5839. ]
  5840. },
  5841. "RabbitMQ.Client/6.8.1": {
  5842. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5843. "type": "package",
  5844. "path": "rabbitmq.client/6.8.1",
  5845. "files": [
  5846. ".nupkg.metadata",
  5847. ".signature.p7s",
  5848. "README.md",
  5849. "icon.png",
  5850. "lib/net462/RabbitMQ.Client.dll",
  5851. "lib/net462/RabbitMQ.Client.xml",
  5852. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5853. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5854. "rabbitmq.client.6.8.1.nupkg.sha512",
  5855. "rabbitmq.client.nuspec"
  5856. ]
  5857. },
  5858. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5859. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  5860. "type": "package",
  5861. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5862. "files": [
  5863. ".nupkg.metadata",
  5864. ".signature.p7s",
  5865. "ThirdPartyNotices.txt",
  5866. "dotnet_library_license.txt",
  5867. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5868. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5869. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5870. ]
  5871. },
  5872. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5873. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  5874. "type": "package",
  5875. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5876. "files": [
  5877. ".nupkg.metadata",
  5878. ".signature.p7s",
  5879. "ThirdPartyNotices.txt",
  5880. "dotnet_library_license.txt",
  5881. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5882. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5883. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5884. ]
  5885. },
  5886. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5887. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  5888. "type": "package",
  5889. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5890. "files": [
  5891. ".nupkg.metadata",
  5892. ".signature.p7s",
  5893. "ThirdPartyNotices.txt",
  5894. "dotnet_library_license.txt",
  5895. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5896. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5897. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5898. ]
  5899. },
  5900. "runtime.native.System/4.3.0": {
  5901. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5902. "type": "package",
  5903. "path": "runtime.native.system/4.3.0",
  5904. "files": [
  5905. ".nupkg.metadata",
  5906. ".signature.p7s",
  5907. "ThirdPartyNotices.txt",
  5908. "dotnet_library_license.txt",
  5909. "lib/netstandard1.0/_._",
  5910. "runtime.native.system.4.3.0.nupkg.sha512",
  5911. "runtime.native.system.nuspec"
  5912. ]
  5913. },
  5914. "runtime.native.System.IO.Compression/4.3.0": {
  5915. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5916. "type": "package",
  5917. "path": "runtime.native.system.io.compression/4.3.0",
  5918. "files": [
  5919. ".nupkg.metadata",
  5920. ".signature.p7s",
  5921. "ThirdPartyNotices.txt",
  5922. "dotnet_library_license.txt",
  5923. "lib/netstandard1.0/_._",
  5924. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5925. "runtime.native.system.io.compression.nuspec"
  5926. ]
  5927. },
  5928. "runtime.native.System.Net.Http/4.3.0": {
  5929. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5930. "type": "package",
  5931. "path": "runtime.native.system.net.http/4.3.0",
  5932. "files": [
  5933. ".nupkg.metadata",
  5934. ".signature.p7s",
  5935. "ThirdPartyNotices.txt",
  5936. "dotnet_library_license.txt",
  5937. "lib/netstandard1.0/_._",
  5938. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5939. "runtime.native.system.net.http.nuspec"
  5940. ]
  5941. },
  5942. "runtime.native.System.Net.Security/4.3.0": {
  5943. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5944. "type": "package",
  5945. "path": "runtime.native.system.net.security/4.3.0",
  5946. "files": [
  5947. ".nupkg.metadata",
  5948. ".signature.p7s",
  5949. "ThirdPartyNotices.txt",
  5950. "dotnet_library_license.txt",
  5951. "lib/netstandard1.0/_._",
  5952. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5953. "runtime.native.system.net.security.nuspec"
  5954. ]
  5955. },
  5956. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  5957. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  5958. "type": "package",
  5959. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  5960. "files": [
  5961. ".nupkg.metadata",
  5962. ".signature.p7s",
  5963. "ThirdPartyNotices.txt",
  5964. "dotnet_library_license.txt",
  5965. "lib/netstandard1.0/_._",
  5966. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  5967. "runtime.native.system.security.cryptography.apple.nuspec"
  5968. ]
  5969. },
  5970. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5971. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  5972. "type": "package",
  5973. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  5974. "files": [
  5975. ".nupkg.metadata",
  5976. ".signature.p7s",
  5977. "ThirdPartyNotices.txt",
  5978. "dotnet_library_license.txt",
  5979. "lib/netstandard1.0/_._",
  5980. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5981. "runtime.native.system.security.cryptography.openssl.nuspec"
  5982. ]
  5983. },
  5984. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5985. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  5986. "type": "package",
  5987. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  5988. "files": [
  5989. ".nupkg.metadata",
  5990. ".signature.p7s",
  5991. "ThirdPartyNotices.txt",
  5992. "dotnet_library_license.txt",
  5993. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  5994. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5995. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5996. ]
  5997. },
  5998. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  5999. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  6000. "type": "package",
  6001. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6002. "files": [
  6003. ".nupkg.metadata",
  6004. ".signature.p7s",
  6005. "ThirdPartyNotices.txt",
  6006. "dotnet_library_license.txt",
  6007. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6008. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6009. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6010. ]
  6011. },
  6012. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  6013. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  6014. "type": "package",
  6015. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  6016. "files": [
  6017. ".nupkg.metadata",
  6018. ".signature.p7s",
  6019. "ThirdPartyNotices.txt",
  6020. "dotnet_library_license.txt",
  6021. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  6022. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  6023. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  6024. ]
  6025. },
  6026. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  6027. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  6028. "type": "package",
  6029. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6030. "files": [
  6031. ".nupkg.metadata",
  6032. ".signature.p7s",
  6033. "ThirdPartyNotices.txt",
  6034. "dotnet_library_license.txt",
  6035. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6036. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6037. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  6038. ]
  6039. },
  6040. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  6041. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  6042. "type": "package",
  6043. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6044. "files": [
  6045. ".nupkg.metadata",
  6046. ".signature.p7s",
  6047. "ThirdPartyNotices.txt",
  6048. "dotnet_library_license.txt",
  6049. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6050. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6051. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6052. ]
  6053. },
  6054. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  6055. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  6056. "type": "package",
  6057. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6058. "files": [
  6059. ".nupkg.metadata",
  6060. ".signature.p7s",
  6061. "ThirdPartyNotices.txt",
  6062. "dotnet_library_license.txt",
  6063. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6064. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6065. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6066. ]
  6067. },
  6068. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  6069. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  6070. "type": "package",
  6071. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6072. "files": [
  6073. ".nupkg.metadata",
  6074. ".signature.p7s",
  6075. "ThirdPartyNotices.txt",
  6076. "dotnet_library_license.txt",
  6077. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6078. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6079. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6080. ]
  6081. },
  6082. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  6083. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  6084. "type": "package",
  6085. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  6086. "files": [
  6087. ".nupkg.metadata",
  6088. ".signature.p7s",
  6089. "ThirdPartyNotices.txt",
  6090. "dotnet_library_license.txt",
  6091. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  6092. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6093. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6094. ]
  6095. },
  6096. "SharpZipLib/1.3.3": {
  6097. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  6098. "type": "package",
  6099. "path": "sharpziplib/1.3.3",
  6100. "files": [
  6101. ".nupkg.metadata",
  6102. ".signature.p7s",
  6103. "images/sharpziplib-nuget-256x256.png",
  6104. "lib/net45/ICSharpCode.SharpZipLib.dll",
  6105. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  6106. "lib/net45/ICSharpCode.SharpZipLib.xml",
  6107. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  6108. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  6109. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  6110. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  6111. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  6112. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  6113. "sharpziplib.1.3.3.nupkg.sha512",
  6114. "sharpziplib.nuspec"
  6115. ]
  6116. },
  6117. "SixLabors.Fonts/1.0.0": {
  6118. "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==",
  6119. "type": "package",
  6120. "path": "sixlabors.fonts/1.0.0",
  6121. "files": [
  6122. ".nupkg.metadata",
  6123. ".signature.p7s",
  6124. "lib/netcoreapp3.1/SixLabors.Fonts.dll",
  6125. "lib/netcoreapp3.1/SixLabors.Fonts.xml",
  6126. "lib/netstandard2.0/SixLabors.Fonts.dll",
  6127. "lib/netstandard2.0/SixLabors.Fonts.xml",
  6128. "lib/netstandard2.1/SixLabors.Fonts.dll",
  6129. "lib/netstandard2.1/SixLabors.Fonts.xml",
  6130. "sixlabors.fonts.1.0.0.nupkg.sha512",
  6131. "sixlabors.fonts.128.png",
  6132. "sixlabors.fonts.nuspec"
  6133. ]
  6134. },
  6135. "SixLabors.ImageSharp/2.1.6": {
  6136. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  6137. "type": "package",
  6138. "path": "sixlabors.imagesharp/2.1.6",
  6139. "files": [
  6140. ".nupkg.metadata",
  6141. ".signature.p7s",
  6142. "lib/net472/SixLabors.ImageSharp.dll",
  6143. "lib/net472/SixLabors.ImageSharp.xml",
  6144. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  6145. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  6146. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  6147. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  6148. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  6149. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  6150. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  6151. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  6152. "sixlabors.imagesharp.128.png",
  6153. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  6154. "sixlabors.imagesharp.nuspec"
  6155. ]
  6156. },
  6157. "SSH.NET/2020.0.0-beta1": {
  6158. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  6159. "type": "package",
  6160. "path": "ssh.net/2020.0.0-beta1",
  6161. "files": [
  6162. ".nupkg.metadata",
  6163. ".signature.p7s",
  6164. "lib/net35/Renci.SshNet.dll",
  6165. "lib/net35/Renci.SshNet.xml",
  6166. "lib/net40/Renci.SshNet.dll",
  6167. "lib/net40/Renci.SshNet.xml",
  6168. "lib/netstandard1.3/Renci.SshNet.dll",
  6169. "lib/netstandard1.3/Renci.SshNet.xml",
  6170. "lib/netstandard2.0/Renci.SshNet.dll",
  6171. "lib/netstandard2.0/Renci.SshNet.xml",
  6172. "lib/sl4/Renci.SshNet.dll",
  6173. "lib/sl4/Renci.SshNet.xml",
  6174. "lib/sl5/Renci.SshNet.dll",
  6175. "lib/sl5/Renci.SshNet.xml",
  6176. "lib/uap10/Renci.SshNet.dll",
  6177. "lib/uap10/Renci.SshNet.xml",
  6178. "lib/wp71/Renci.SshNet.dll",
  6179. "lib/wp71/Renci.SshNet.xml",
  6180. "lib/wp8/Renci.SshNet.dll",
  6181. "lib/wp8/Renci.SshNet.xml",
  6182. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  6183. "ssh.net.nuspec"
  6184. ]
  6185. },
  6186. "SshNet.Security.Cryptography/1.3.0": {
  6187. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  6188. "type": "package",
  6189. "path": "sshnet.security.cryptography/1.3.0",
  6190. "files": [
  6191. ".nupkg.metadata",
  6192. ".signature.p7s",
  6193. "lib/net20/SshNet.Security.Cryptography.dll",
  6194. "lib/net20/SshNet.Security.Cryptography.xml",
  6195. "lib/net40/SshNet.Security.Cryptography.dll",
  6196. "lib/net40/SshNet.Security.Cryptography.xml",
  6197. "lib/net45/SshNet.Security.Cryptography.dll",
  6198. "lib/net45/SshNet.Security.Cryptography.xml",
  6199. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  6200. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  6201. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  6202. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  6203. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  6204. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  6205. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  6206. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  6207. "lib/sl4/SshNet.Security.Cryptography.dll",
  6208. "lib/sl4/SshNet.Security.Cryptography.xml",
  6209. "lib/sl5/SshNet.Security.Cryptography.dll",
  6210. "lib/sl5/SshNet.Security.Cryptography.xml",
  6211. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  6212. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  6213. "lib/wp71/SshNet.Security.Cryptography.dll",
  6214. "lib/wp71/SshNet.Security.Cryptography.xml",
  6215. "lib/wp8/SshNet.Security.Cryptography.dll",
  6216. "lib/wp8/SshNet.Security.Cryptography.xml",
  6217. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  6218. "sshnet.security.cryptography.nuspec"
  6219. ]
  6220. },
  6221. "StackExchange.Redis/1.2.4": {
  6222. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  6223. "type": "package",
  6224. "path": "stackexchange.redis/1.2.4",
  6225. "files": [
  6226. ".nupkg.metadata",
  6227. ".signature.p7s",
  6228. "lib/net45/StackExchange.Redis.dll",
  6229. "lib/net45/StackExchange.Redis.xml",
  6230. "lib/net46/StackExchange.Redis.dll",
  6231. "lib/net46/StackExchange.Redis.xml",
  6232. "lib/netstandard1.5/StackExchange.Redis.dll",
  6233. "lib/netstandard1.5/StackExchange.Redis.xml",
  6234. "stackexchange.redis.1.2.4.nupkg.sha512",
  6235. "stackexchange.redis.nuspec"
  6236. ]
  6237. },
  6238. "Swashbuckle.AspNetCore/5.6.3": {
  6239. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  6240. "type": "package",
  6241. "path": "swashbuckle.aspnetcore/5.6.3",
  6242. "files": [
  6243. ".nupkg.metadata",
  6244. ".signature.p7s",
  6245. "build/Swashbuckle.AspNetCore.props",
  6246. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  6247. "swashbuckle.aspnetcore.nuspec"
  6248. ]
  6249. },
  6250. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  6251. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  6252. "type": "package",
  6253. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  6254. "files": [
  6255. ".nupkg.metadata",
  6256. ".signature.p7s",
  6257. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  6258. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6259. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  6260. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  6261. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6262. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  6263. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  6264. "swashbuckle.aspnetcore.swagger.nuspec"
  6265. ]
  6266. },
  6267. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  6268. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  6269. "type": "package",
  6270. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  6271. "files": [
  6272. ".nupkg.metadata",
  6273. ".signature.p7s",
  6274. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6275. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6276. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6277. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6278. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6279. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6280. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  6281. "swashbuckle.aspnetcore.swaggergen.nuspec"
  6282. ]
  6283. },
  6284. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  6285. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  6286. "type": "package",
  6287. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  6288. "files": [
  6289. ".nupkg.metadata",
  6290. ".signature.p7s",
  6291. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6292. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6293. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6294. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6295. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6296. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6297. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  6298. "swashbuckle.aspnetcore.swaggerui.nuspec"
  6299. ]
  6300. },
  6301. "System.AppContext/4.3.0": {
  6302. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6303. "type": "package",
  6304. "path": "system.appcontext/4.3.0",
  6305. "files": [
  6306. ".nupkg.metadata",
  6307. ".signature.p7s",
  6308. "ThirdPartyNotices.txt",
  6309. "dotnet_library_license.txt",
  6310. "lib/MonoAndroid10/_._",
  6311. "lib/MonoTouch10/_._",
  6312. "lib/net46/System.AppContext.dll",
  6313. "lib/net463/System.AppContext.dll",
  6314. "lib/netcore50/System.AppContext.dll",
  6315. "lib/netstandard1.6/System.AppContext.dll",
  6316. "lib/xamarinios10/_._",
  6317. "lib/xamarinmac20/_._",
  6318. "lib/xamarintvos10/_._",
  6319. "lib/xamarinwatchos10/_._",
  6320. "ref/MonoAndroid10/_._",
  6321. "ref/MonoTouch10/_._",
  6322. "ref/net46/System.AppContext.dll",
  6323. "ref/net463/System.AppContext.dll",
  6324. "ref/netstandard/_._",
  6325. "ref/netstandard1.3/System.AppContext.dll",
  6326. "ref/netstandard1.3/System.AppContext.xml",
  6327. "ref/netstandard1.3/de/System.AppContext.xml",
  6328. "ref/netstandard1.3/es/System.AppContext.xml",
  6329. "ref/netstandard1.3/fr/System.AppContext.xml",
  6330. "ref/netstandard1.3/it/System.AppContext.xml",
  6331. "ref/netstandard1.3/ja/System.AppContext.xml",
  6332. "ref/netstandard1.3/ko/System.AppContext.xml",
  6333. "ref/netstandard1.3/ru/System.AppContext.xml",
  6334. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6335. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6336. "ref/netstandard1.6/System.AppContext.dll",
  6337. "ref/netstandard1.6/System.AppContext.xml",
  6338. "ref/netstandard1.6/de/System.AppContext.xml",
  6339. "ref/netstandard1.6/es/System.AppContext.xml",
  6340. "ref/netstandard1.6/fr/System.AppContext.xml",
  6341. "ref/netstandard1.6/it/System.AppContext.xml",
  6342. "ref/netstandard1.6/ja/System.AppContext.xml",
  6343. "ref/netstandard1.6/ko/System.AppContext.xml",
  6344. "ref/netstandard1.6/ru/System.AppContext.xml",
  6345. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6346. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6347. "ref/xamarinios10/_._",
  6348. "ref/xamarinmac20/_._",
  6349. "ref/xamarintvos10/_._",
  6350. "ref/xamarinwatchos10/_._",
  6351. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6352. "system.appcontext.4.3.0.nupkg.sha512",
  6353. "system.appcontext.nuspec"
  6354. ]
  6355. },
  6356. "System.Buffers/4.5.1": {
  6357. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6358. "type": "package",
  6359. "path": "system.buffers/4.5.1",
  6360. "files": [
  6361. ".nupkg.metadata",
  6362. ".signature.p7s",
  6363. "LICENSE.TXT",
  6364. "THIRD-PARTY-NOTICES.TXT",
  6365. "lib/net461/System.Buffers.dll",
  6366. "lib/net461/System.Buffers.xml",
  6367. "lib/netcoreapp2.0/_._",
  6368. "lib/netstandard1.1/System.Buffers.dll",
  6369. "lib/netstandard1.1/System.Buffers.xml",
  6370. "lib/netstandard2.0/System.Buffers.dll",
  6371. "lib/netstandard2.0/System.Buffers.xml",
  6372. "lib/uap10.0.16299/_._",
  6373. "ref/net45/System.Buffers.dll",
  6374. "ref/net45/System.Buffers.xml",
  6375. "ref/netcoreapp2.0/_._",
  6376. "ref/netstandard1.1/System.Buffers.dll",
  6377. "ref/netstandard1.1/System.Buffers.xml",
  6378. "ref/netstandard2.0/System.Buffers.dll",
  6379. "ref/netstandard2.0/System.Buffers.xml",
  6380. "ref/uap10.0.16299/_._",
  6381. "system.buffers.4.5.1.nupkg.sha512",
  6382. "system.buffers.nuspec",
  6383. "useSharedDesignerContext.txt",
  6384. "version.txt"
  6385. ]
  6386. },
  6387. "System.Collections/4.3.0": {
  6388. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6389. "type": "package",
  6390. "path": "system.collections/4.3.0",
  6391. "files": [
  6392. ".nupkg.metadata",
  6393. ".signature.p7s",
  6394. "ThirdPartyNotices.txt",
  6395. "dotnet_library_license.txt",
  6396. "lib/MonoAndroid10/_._",
  6397. "lib/MonoTouch10/_._",
  6398. "lib/net45/_._",
  6399. "lib/portable-net45+win8+wp8+wpa81/_._",
  6400. "lib/win8/_._",
  6401. "lib/wp80/_._",
  6402. "lib/wpa81/_._",
  6403. "lib/xamarinios10/_._",
  6404. "lib/xamarinmac20/_._",
  6405. "lib/xamarintvos10/_._",
  6406. "lib/xamarinwatchos10/_._",
  6407. "ref/MonoAndroid10/_._",
  6408. "ref/MonoTouch10/_._",
  6409. "ref/net45/_._",
  6410. "ref/netcore50/System.Collections.dll",
  6411. "ref/netcore50/System.Collections.xml",
  6412. "ref/netcore50/de/System.Collections.xml",
  6413. "ref/netcore50/es/System.Collections.xml",
  6414. "ref/netcore50/fr/System.Collections.xml",
  6415. "ref/netcore50/it/System.Collections.xml",
  6416. "ref/netcore50/ja/System.Collections.xml",
  6417. "ref/netcore50/ko/System.Collections.xml",
  6418. "ref/netcore50/ru/System.Collections.xml",
  6419. "ref/netcore50/zh-hans/System.Collections.xml",
  6420. "ref/netcore50/zh-hant/System.Collections.xml",
  6421. "ref/netstandard1.0/System.Collections.dll",
  6422. "ref/netstandard1.0/System.Collections.xml",
  6423. "ref/netstandard1.0/de/System.Collections.xml",
  6424. "ref/netstandard1.0/es/System.Collections.xml",
  6425. "ref/netstandard1.0/fr/System.Collections.xml",
  6426. "ref/netstandard1.0/it/System.Collections.xml",
  6427. "ref/netstandard1.0/ja/System.Collections.xml",
  6428. "ref/netstandard1.0/ko/System.Collections.xml",
  6429. "ref/netstandard1.0/ru/System.Collections.xml",
  6430. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6431. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6432. "ref/netstandard1.3/System.Collections.dll",
  6433. "ref/netstandard1.3/System.Collections.xml",
  6434. "ref/netstandard1.3/de/System.Collections.xml",
  6435. "ref/netstandard1.3/es/System.Collections.xml",
  6436. "ref/netstandard1.3/fr/System.Collections.xml",
  6437. "ref/netstandard1.3/it/System.Collections.xml",
  6438. "ref/netstandard1.3/ja/System.Collections.xml",
  6439. "ref/netstandard1.3/ko/System.Collections.xml",
  6440. "ref/netstandard1.3/ru/System.Collections.xml",
  6441. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6442. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6443. "ref/portable-net45+win8+wp8+wpa81/_._",
  6444. "ref/win8/_._",
  6445. "ref/wp80/_._",
  6446. "ref/wpa81/_._",
  6447. "ref/xamarinios10/_._",
  6448. "ref/xamarinmac20/_._",
  6449. "ref/xamarintvos10/_._",
  6450. "ref/xamarinwatchos10/_._",
  6451. "system.collections.4.3.0.nupkg.sha512",
  6452. "system.collections.nuspec"
  6453. ]
  6454. },
  6455. "System.Collections.Concurrent/4.3.0": {
  6456. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6457. "type": "package",
  6458. "path": "system.collections.concurrent/4.3.0",
  6459. "files": [
  6460. ".nupkg.metadata",
  6461. ".signature.p7s",
  6462. "ThirdPartyNotices.txt",
  6463. "dotnet_library_license.txt",
  6464. "lib/MonoAndroid10/_._",
  6465. "lib/MonoTouch10/_._",
  6466. "lib/net45/_._",
  6467. "lib/netcore50/System.Collections.Concurrent.dll",
  6468. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6469. "lib/portable-net45+win8+wpa81/_._",
  6470. "lib/win8/_._",
  6471. "lib/wpa81/_._",
  6472. "lib/xamarinios10/_._",
  6473. "lib/xamarinmac20/_._",
  6474. "lib/xamarintvos10/_._",
  6475. "lib/xamarinwatchos10/_._",
  6476. "ref/MonoAndroid10/_._",
  6477. "ref/MonoTouch10/_._",
  6478. "ref/net45/_._",
  6479. "ref/netcore50/System.Collections.Concurrent.dll",
  6480. "ref/netcore50/System.Collections.Concurrent.xml",
  6481. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6482. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6483. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6484. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6485. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6486. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6487. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6488. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6489. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6490. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6491. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6492. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6493. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6494. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6495. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6496. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6497. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6498. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6499. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6500. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6501. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6502. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6503. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6504. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6505. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6506. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6507. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6508. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6509. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6510. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6511. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6512. "ref/portable-net45+win8+wpa81/_._",
  6513. "ref/win8/_._",
  6514. "ref/wpa81/_._",
  6515. "ref/xamarinios10/_._",
  6516. "ref/xamarinmac20/_._",
  6517. "ref/xamarintvos10/_._",
  6518. "ref/xamarinwatchos10/_._",
  6519. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6520. "system.collections.concurrent.nuspec"
  6521. ]
  6522. },
  6523. "System.Collections.Immutable/5.0.0": {
  6524. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6525. "type": "package",
  6526. "path": "system.collections.immutable/5.0.0",
  6527. "files": [
  6528. ".nupkg.metadata",
  6529. ".signature.p7s",
  6530. "Icon.png",
  6531. "LICENSE.TXT",
  6532. "THIRD-PARTY-NOTICES.TXT",
  6533. "lib/net461/System.Collections.Immutable.dll",
  6534. "lib/net461/System.Collections.Immutable.xml",
  6535. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6536. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6537. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6538. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6539. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6540. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6541. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6542. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6543. "system.collections.immutable.5.0.0.nupkg.sha512",
  6544. "system.collections.immutable.nuspec",
  6545. "useSharedDesignerContext.txt",
  6546. "version.txt"
  6547. ]
  6548. },
  6549. "System.Collections.NonGeneric/4.3.0": {
  6550. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6551. "type": "package",
  6552. "path": "system.collections.nongeneric/4.3.0",
  6553. "files": [
  6554. ".nupkg.metadata",
  6555. ".signature.p7s",
  6556. "ThirdPartyNotices.txt",
  6557. "dotnet_library_license.txt",
  6558. "lib/MonoAndroid10/_._",
  6559. "lib/MonoTouch10/_._",
  6560. "lib/net46/System.Collections.NonGeneric.dll",
  6561. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6562. "lib/xamarinios10/_._",
  6563. "lib/xamarinmac20/_._",
  6564. "lib/xamarintvos10/_._",
  6565. "lib/xamarinwatchos10/_._",
  6566. "ref/MonoAndroid10/_._",
  6567. "ref/MonoTouch10/_._",
  6568. "ref/net46/System.Collections.NonGeneric.dll",
  6569. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6570. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6571. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6572. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6573. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6574. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6575. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6576. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6577. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6578. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6579. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6580. "ref/xamarinios10/_._",
  6581. "ref/xamarinmac20/_._",
  6582. "ref/xamarintvos10/_._",
  6583. "ref/xamarinwatchos10/_._",
  6584. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6585. "system.collections.nongeneric.nuspec"
  6586. ]
  6587. },
  6588. "System.Collections.Specialized/4.3.0": {
  6589. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6590. "type": "package",
  6591. "path": "system.collections.specialized/4.3.0",
  6592. "files": [
  6593. ".nupkg.metadata",
  6594. ".signature.p7s",
  6595. "ThirdPartyNotices.txt",
  6596. "dotnet_library_license.txt",
  6597. "lib/MonoAndroid10/_._",
  6598. "lib/MonoTouch10/_._",
  6599. "lib/net46/System.Collections.Specialized.dll",
  6600. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6601. "lib/xamarinios10/_._",
  6602. "lib/xamarinmac20/_._",
  6603. "lib/xamarintvos10/_._",
  6604. "lib/xamarinwatchos10/_._",
  6605. "ref/MonoAndroid10/_._",
  6606. "ref/MonoTouch10/_._",
  6607. "ref/net46/System.Collections.Specialized.dll",
  6608. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6609. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6610. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6611. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6612. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6613. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6614. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6615. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6616. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6617. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6618. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6619. "ref/xamarinios10/_._",
  6620. "ref/xamarinmac20/_._",
  6621. "ref/xamarintvos10/_._",
  6622. "ref/xamarinwatchos10/_._",
  6623. "system.collections.specialized.4.3.0.nupkg.sha512",
  6624. "system.collections.specialized.nuspec"
  6625. ]
  6626. },
  6627. "System.ComponentModel/4.3.0": {
  6628. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6629. "type": "package",
  6630. "path": "system.componentmodel/4.3.0",
  6631. "files": [
  6632. ".nupkg.metadata",
  6633. ".signature.p7s",
  6634. "ThirdPartyNotices.txt",
  6635. "dotnet_library_license.txt",
  6636. "lib/MonoAndroid10/_._",
  6637. "lib/MonoTouch10/_._",
  6638. "lib/net45/_._",
  6639. "lib/netcore50/System.ComponentModel.dll",
  6640. "lib/netstandard1.3/System.ComponentModel.dll",
  6641. "lib/portable-net45+win8+wp8+wpa81/_._",
  6642. "lib/win8/_._",
  6643. "lib/wp80/_._",
  6644. "lib/wpa81/_._",
  6645. "lib/xamarinios10/_._",
  6646. "lib/xamarinmac20/_._",
  6647. "lib/xamarintvos10/_._",
  6648. "lib/xamarinwatchos10/_._",
  6649. "ref/MonoAndroid10/_._",
  6650. "ref/MonoTouch10/_._",
  6651. "ref/net45/_._",
  6652. "ref/netcore50/System.ComponentModel.dll",
  6653. "ref/netcore50/System.ComponentModel.xml",
  6654. "ref/netcore50/de/System.ComponentModel.xml",
  6655. "ref/netcore50/es/System.ComponentModel.xml",
  6656. "ref/netcore50/fr/System.ComponentModel.xml",
  6657. "ref/netcore50/it/System.ComponentModel.xml",
  6658. "ref/netcore50/ja/System.ComponentModel.xml",
  6659. "ref/netcore50/ko/System.ComponentModel.xml",
  6660. "ref/netcore50/ru/System.ComponentModel.xml",
  6661. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6662. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6663. "ref/netstandard1.0/System.ComponentModel.dll",
  6664. "ref/netstandard1.0/System.ComponentModel.xml",
  6665. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6666. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6667. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6668. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6669. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6670. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6671. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6672. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6673. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6674. "ref/portable-net45+win8+wp8+wpa81/_._",
  6675. "ref/win8/_._",
  6676. "ref/wp80/_._",
  6677. "ref/wpa81/_._",
  6678. "ref/xamarinios10/_._",
  6679. "ref/xamarinmac20/_._",
  6680. "ref/xamarintvos10/_._",
  6681. "ref/xamarinwatchos10/_._",
  6682. "system.componentmodel.4.3.0.nupkg.sha512",
  6683. "system.componentmodel.nuspec"
  6684. ]
  6685. },
  6686. "System.ComponentModel.Annotations/5.0.0": {
  6687. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6688. "type": "package",
  6689. "path": "system.componentmodel.annotations/5.0.0",
  6690. "files": [
  6691. ".nupkg.metadata",
  6692. ".signature.p7s",
  6693. "Icon.png",
  6694. "LICENSE.TXT",
  6695. "THIRD-PARTY-NOTICES.TXT",
  6696. "lib/MonoAndroid10/_._",
  6697. "lib/MonoTouch10/_._",
  6698. "lib/net45/_._",
  6699. "lib/net461/System.ComponentModel.Annotations.dll",
  6700. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6701. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6702. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6703. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6704. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6705. "lib/portable-net45+win8/_._",
  6706. "lib/win8/_._",
  6707. "lib/xamarinios10/_._",
  6708. "lib/xamarinmac20/_._",
  6709. "lib/xamarintvos10/_._",
  6710. "lib/xamarinwatchos10/_._",
  6711. "ref/MonoAndroid10/_._",
  6712. "ref/MonoTouch10/_._",
  6713. "ref/net45/_._",
  6714. "ref/net461/System.ComponentModel.Annotations.dll",
  6715. "ref/net461/System.ComponentModel.Annotations.xml",
  6716. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6717. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6718. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6719. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6720. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6721. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6722. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6723. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6724. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6725. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6726. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6727. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6728. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6729. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6730. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6731. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6732. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6733. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6734. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6735. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6736. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6737. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6738. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6739. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6740. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6741. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6742. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6743. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6744. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6745. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6746. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6747. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6748. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6749. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6750. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6751. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6752. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6753. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6754. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6755. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6756. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6757. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6758. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6759. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6760. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6761. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6762. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6763. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6764. "ref/portable-net45+win8/_._",
  6765. "ref/win8/_._",
  6766. "ref/xamarinios10/_._",
  6767. "ref/xamarinmac20/_._",
  6768. "ref/xamarintvos10/_._",
  6769. "ref/xamarinwatchos10/_._",
  6770. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6771. "system.componentmodel.annotations.nuspec",
  6772. "useSharedDesignerContext.txt",
  6773. "version.txt"
  6774. ]
  6775. },
  6776. "System.ComponentModel.Primitives/4.3.0": {
  6777. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6778. "type": "package",
  6779. "path": "system.componentmodel.primitives/4.3.0",
  6780. "files": [
  6781. ".nupkg.metadata",
  6782. ".signature.p7s",
  6783. "ThirdPartyNotices.txt",
  6784. "dotnet_library_license.txt",
  6785. "lib/MonoAndroid10/_._",
  6786. "lib/MonoTouch10/_._",
  6787. "lib/net45/System.ComponentModel.Primitives.dll",
  6788. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6789. "lib/xamarinios10/_._",
  6790. "lib/xamarinmac20/_._",
  6791. "lib/xamarintvos10/_._",
  6792. "lib/xamarinwatchos10/_._",
  6793. "ref/MonoAndroid10/_._",
  6794. "ref/MonoTouch10/_._",
  6795. "ref/net45/System.ComponentModel.Primitives.dll",
  6796. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6797. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6798. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6799. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6800. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6801. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6802. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6803. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6804. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6805. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6806. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6807. "ref/xamarinios10/_._",
  6808. "ref/xamarinmac20/_._",
  6809. "ref/xamarintvos10/_._",
  6810. "ref/xamarinwatchos10/_._",
  6811. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6812. "system.componentmodel.primitives.nuspec"
  6813. ]
  6814. },
  6815. "System.ComponentModel.TypeConverter/4.3.0": {
  6816. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6817. "type": "package",
  6818. "path": "system.componentmodel.typeconverter/4.3.0",
  6819. "files": [
  6820. ".nupkg.metadata",
  6821. ".signature.p7s",
  6822. "ThirdPartyNotices.txt",
  6823. "dotnet_library_license.txt",
  6824. "lib/MonoAndroid10/_._",
  6825. "lib/MonoTouch10/_._",
  6826. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6827. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6828. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6829. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6830. "lib/xamarinios10/_._",
  6831. "lib/xamarinmac20/_._",
  6832. "lib/xamarintvos10/_._",
  6833. "lib/xamarinwatchos10/_._",
  6834. "ref/MonoAndroid10/_._",
  6835. "ref/MonoTouch10/_._",
  6836. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6837. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6838. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6839. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6840. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6841. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6842. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6843. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6844. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6845. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6846. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6847. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6848. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6849. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6850. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6851. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6852. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6853. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6854. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6855. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6856. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6857. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6858. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6859. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6860. "ref/xamarinios10/_._",
  6861. "ref/xamarinmac20/_._",
  6862. "ref/xamarintvos10/_._",
  6863. "ref/xamarinwatchos10/_._",
  6864. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6865. "system.componentmodel.typeconverter.nuspec"
  6866. ]
  6867. },
  6868. "System.Configuration.ConfigurationManager/6.0.0": {
  6869. "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  6870. "type": "package",
  6871. "path": "system.configuration.configurationmanager/6.0.0",
  6872. "files": [
  6873. ".nupkg.metadata",
  6874. ".signature.p7s",
  6875. "Icon.png",
  6876. "LICENSE.TXT",
  6877. "THIRD-PARTY-NOTICES.TXT",
  6878. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  6879. "buildTransitive/netcoreapp3.1/_._",
  6880. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6881. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6882. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  6883. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  6884. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6885. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6886. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  6887. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  6888. "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
  6889. "system.configuration.configurationmanager.nuspec",
  6890. "useSharedDesignerContext.txt"
  6891. ]
  6892. },
  6893. "System.Console/4.3.0": {
  6894. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6895. "type": "package",
  6896. "path": "system.console/4.3.0",
  6897. "files": [
  6898. ".nupkg.metadata",
  6899. ".signature.p7s",
  6900. "ThirdPartyNotices.txt",
  6901. "dotnet_library_license.txt",
  6902. "lib/MonoAndroid10/_._",
  6903. "lib/MonoTouch10/_._",
  6904. "lib/net46/System.Console.dll",
  6905. "lib/xamarinios10/_._",
  6906. "lib/xamarinmac20/_._",
  6907. "lib/xamarintvos10/_._",
  6908. "lib/xamarinwatchos10/_._",
  6909. "ref/MonoAndroid10/_._",
  6910. "ref/MonoTouch10/_._",
  6911. "ref/net46/System.Console.dll",
  6912. "ref/netstandard1.3/System.Console.dll",
  6913. "ref/netstandard1.3/System.Console.xml",
  6914. "ref/netstandard1.3/de/System.Console.xml",
  6915. "ref/netstandard1.3/es/System.Console.xml",
  6916. "ref/netstandard1.3/fr/System.Console.xml",
  6917. "ref/netstandard1.3/it/System.Console.xml",
  6918. "ref/netstandard1.3/ja/System.Console.xml",
  6919. "ref/netstandard1.3/ko/System.Console.xml",
  6920. "ref/netstandard1.3/ru/System.Console.xml",
  6921. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6922. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6923. "ref/xamarinios10/_._",
  6924. "ref/xamarinmac20/_._",
  6925. "ref/xamarintvos10/_._",
  6926. "ref/xamarinwatchos10/_._",
  6927. "system.console.4.3.0.nupkg.sha512",
  6928. "system.console.nuspec"
  6929. ]
  6930. },
  6931. "System.Diagnostics.Debug/4.3.0": {
  6932. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6933. "type": "package",
  6934. "path": "system.diagnostics.debug/4.3.0",
  6935. "files": [
  6936. ".nupkg.metadata",
  6937. ".signature.p7s",
  6938. "ThirdPartyNotices.txt",
  6939. "dotnet_library_license.txt",
  6940. "lib/MonoAndroid10/_._",
  6941. "lib/MonoTouch10/_._",
  6942. "lib/net45/_._",
  6943. "lib/portable-net45+win8+wp8+wpa81/_._",
  6944. "lib/win8/_._",
  6945. "lib/wp80/_._",
  6946. "lib/wpa81/_._",
  6947. "lib/xamarinios10/_._",
  6948. "lib/xamarinmac20/_._",
  6949. "lib/xamarintvos10/_._",
  6950. "lib/xamarinwatchos10/_._",
  6951. "ref/MonoAndroid10/_._",
  6952. "ref/MonoTouch10/_._",
  6953. "ref/net45/_._",
  6954. "ref/netcore50/System.Diagnostics.Debug.dll",
  6955. "ref/netcore50/System.Diagnostics.Debug.xml",
  6956. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6957. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6958. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6959. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6960. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6961. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6962. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6963. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6964. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6965. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6966. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6967. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6968. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6969. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6970. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6971. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6972. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6973. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6974. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6975. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6976. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6977. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6978. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6979. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6980. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6981. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6982. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6983. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6984. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6985. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6986. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6987. "ref/portable-net45+win8+wp8+wpa81/_._",
  6988. "ref/win8/_._",
  6989. "ref/wp80/_._",
  6990. "ref/wpa81/_._",
  6991. "ref/xamarinios10/_._",
  6992. "ref/xamarinmac20/_._",
  6993. "ref/xamarintvos10/_._",
  6994. "ref/xamarinwatchos10/_._",
  6995. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6996. "system.diagnostics.debug.nuspec"
  6997. ]
  6998. },
  6999. "System.Diagnostics.DiagnosticSource/9.0.4": {
  7000. "sha512": "Be0emq8bRmcK4eeJIFUt9+vYPf7kzuQrFs8Ef1CdGvXpq/uSve22PTSkRF09bF/J7wmYJ2DHf2v7GaT3vMXnwQ==",
  7001. "type": "package",
  7002. "path": "system.diagnostics.diagnosticsource/9.0.4",
  7003. "files": [
  7004. ".nupkg.metadata",
  7005. ".signature.p7s",
  7006. "Icon.png",
  7007. "LICENSE.TXT",
  7008. "THIRD-PARTY-NOTICES.TXT",
  7009. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  7010. "buildTransitive/net462/_._",
  7011. "buildTransitive/net8.0/_._",
  7012. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  7013. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  7014. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  7015. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  7016. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  7017. "lib/net9.0/System.Diagnostics.DiagnosticSource.dll",
  7018. "lib/net9.0/System.Diagnostics.DiagnosticSource.xml",
  7019. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  7020. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  7021. "system.diagnostics.diagnosticsource.9.0.4.nupkg.sha512",
  7022. "system.diagnostics.diagnosticsource.nuspec",
  7023. "useSharedDesignerContext.txt"
  7024. ]
  7025. },
  7026. "System.Diagnostics.Tools/4.3.0": {
  7027. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  7028. "type": "package",
  7029. "path": "system.diagnostics.tools/4.3.0",
  7030. "files": [
  7031. ".nupkg.metadata",
  7032. ".signature.p7s",
  7033. "ThirdPartyNotices.txt",
  7034. "dotnet_library_license.txt",
  7035. "lib/MonoAndroid10/_._",
  7036. "lib/MonoTouch10/_._",
  7037. "lib/net45/_._",
  7038. "lib/portable-net45+win8+wp8+wpa81/_._",
  7039. "lib/win8/_._",
  7040. "lib/wp80/_._",
  7041. "lib/wpa81/_._",
  7042. "lib/xamarinios10/_._",
  7043. "lib/xamarinmac20/_._",
  7044. "lib/xamarintvos10/_._",
  7045. "lib/xamarinwatchos10/_._",
  7046. "ref/MonoAndroid10/_._",
  7047. "ref/MonoTouch10/_._",
  7048. "ref/net45/_._",
  7049. "ref/netcore50/System.Diagnostics.Tools.dll",
  7050. "ref/netcore50/System.Diagnostics.Tools.xml",
  7051. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  7052. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  7053. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  7054. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  7055. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  7056. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  7057. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  7058. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  7059. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  7060. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  7061. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  7062. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  7063. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  7064. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  7065. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  7066. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  7067. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  7068. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  7069. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  7070. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  7071. "ref/portable-net45+win8+wp8+wpa81/_._",
  7072. "ref/win8/_._",
  7073. "ref/wp80/_._",
  7074. "ref/wpa81/_._",
  7075. "ref/xamarinios10/_._",
  7076. "ref/xamarinmac20/_._",
  7077. "ref/xamarintvos10/_._",
  7078. "ref/xamarinwatchos10/_._",
  7079. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  7080. "system.diagnostics.tools.nuspec"
  7081. ]
  7082. },
  7083. "System.Diagnostics.TraceSource/4.3.0": {
  7084. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  7085. "type": "package",
  7086. "path": "system.diagnostics.tracesource/4.3.0",
  7087. "files": [
  7088. ".nupkg.metadata",
  7089. ".signature.p7s",
  7090. "ThirdPartyNotices.txt",
  7091. "dotnet_library_license.txt",
  7092. "lib/MonoAndroid10/_._",
  7093. "lib/MonoTouch10/_._",
  7094. "lib/net46/System.Diagnostics.TraceSource.dll",
  7095. "lib/xamarinios10/_._",
  7096. "lib/xamarinmac20/_._",
  7097. "lib/xamarintvos10/_._",
  7098. "lib/xamarinwatchos10/_._",
  7099. "ref/MonoAndroid10/_._",
  7100. "ref/MonoTouch10/_._",
  7101. "ref/net46/System.Diagnostics.TraceSource.dll",
  7102. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7103. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  7104. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  7105. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  7106. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  7107. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  7108. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  7109. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  7110. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  7111. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  7112. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  7113. "ref/xamarinios10/_._",
  7114. "ref/xamarinmac20/_._",
  7115. "ref/xamarintvos10/_._",
  7116. "ref/xamarinwatchos10/_._",
  7117. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7118. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  7119. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7120. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  7121. "system.diagnostics.tracesource.nuspec"
  7122. ]
  7123. },
  7124. "System.Diagnostics.Tracing/4.3.0": {
  7125. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  7126. "type": "package",
  7127. "path": "system.diagnostics.tracing/4.3.0",
  7128. "files": [
  7129. ".nupkg.metadata",
  7130. ".signature.p7s",
  7131. "ThirdPartyNotices.txt",
  7132. "dotnet_library_license.txt",
  7133. "lib/MonoAndroid10/_._",
  7134. "lib/MonoTouch10/_._",
  7135. "lib/net45/_._",
  7136. "lib/net462/System.Diagnostics.Tracing.dll",
  7137. "lib/portable-net45+win8+wpa81/_._",
  7138. "lib/win8/_._",
  7139. "lib/wpa81/_._",
  7140. "lib/xamarinios10/_._",
  7141. "lib/xamarinmac20/_._",
  7142. "lib/xamarintvos10/_._",
  7143. "lib/xamarinwatchos10/_._",
  7144. "ref/MonoAndroid10/_._",
  7145. "ref/MonoTouch10/_._",
  7146. "ref/net45/_._",
  7147. "ref/net462/System.Diagnostics.Tracing.dll",
  7148. "ref/netcore50/System.Diagnostics.Tracing.dll",
  7149. "ref/netcore50/System.Diagnostics.Tracing.xml",
  7150. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  7151. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  7152. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  7153. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  7154. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  7155. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  7156. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  7157. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  7158. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  7159. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  7160. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  7161. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  7162. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  7163. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  7164. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  7165. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  7166. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  7167. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  7168. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  7169. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  7170. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  7171. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  7172. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  7173. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  7174. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  7175. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  7176. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  7177. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  7178. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  7179. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  7180. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  7181. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  7182. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  7183. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  7184. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  7185. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  7186. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  7187. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  7188. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  7189. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  7190. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  7191. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  7192. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  7193. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  7194. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  7195. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  7196. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  7197. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  7198. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  7199. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  7200. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  7201. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  7202. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  7203. "ref/portable-net45+win8+wpa81/_._",
  7204. "ref/win8/_._",
  7205. "ref/wpa81/_._",
  7206. "ref/xamarinios10/_._",
  7207. "ref/xamarinmac20/_._",
  7208. "ref/xamarintvos10/_._",
  7209. "ref/xamarinwatchos10/_._",
  7210. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  7211. "system.diagnostics.tracing.nuspec"
  7212. ]
  7213. },
  7214. "System.Drawing.Common/6.0.0": {
  7215. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  7216. "type": "package",
  7217. "path": "system.drawing.common/6.0.0",
  7218. "files": [
  7219. ".nupkg.metadata",
  7220. ".signature.p7s",
  7221. "Icon.png",
  7222. "LICENSE.TXT",
  7223. "THIRD-PARTY-NOTICES.TXT",
  7224. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  7225. "buildTransitive/netcoreapp3.1/_._",
  7226. "lib/MonoAndroid10/_._",
  7227. "lib/MonoTouch10/_._",
  7228. "lib/net461/System.Drawing.Common.dll",
  7229. "lib/net461/System.Drawing.Common.xml",
  7230. "lib/net6.0/System.Drawing.Common.dll",
  7231. "lib/net6.0/System.Drawing.Common.xml",
  7232. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  7233. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  7234. "lib/netstandard2.0/System.Drawing.Common.dll",
  7235. "lib/netstandard2.0/System.Drawing.Common.xml",
  7236. "lib/xamarinios10/_._",
  7237. "lib/xamarinmac20/_._",
  7238. "lib/xamarintvos10/_._",
  7239. "lib/xamarinwatchos10/_._",
  7240. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  7241. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  7242. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  7243. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  7244. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  7245. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  7246. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  7247. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  7248. "system.drawing.common.6.0.0.nupkg.sha512",
  7249. "system.drawing.common.nuspec",
  7250. "useSharedDesignerContext.txt"
  7251. ]
  7252. },
  7253. "System.Dynamic.Runtime/4.3.0": {
  7254. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  7255. "type": "package",
  7256. "path": "system.dynamic.runtime/4.3.0",
  7257. "files": [
  7258. ".nupkg.metadata",
  7259. ".signature.p7s",
  7260. "ThirdPartyNotices.txt",
  7261. "dotnet_library_license.txt",
  7262. "lib/MonoAndroid10/_._",
  7263. "lib/MonoTouch10/_._",
  7264. "lib/net45/_._",
  7265. "lib/netcore50/System.Dynamic.Runtime.dll",
  7266. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7267. "lib/portable-net45+win8+wp8+wpa81/_._",
  7268. "lib/win8/_._",
  7269. "lib/wp80/_._",
  7270. "lib/wpa81/_._",
  7271. "lib/xamarinios10/_._",
  7272. "lib/xamarinmac20/_._",
  7273. "lib/xamarintvos10/_._",
  7274. "lib/xamarinwatchos10/_._",
  7275. "ref/MonoAndroid10/_._",
  7276. "ref/MonoTouch10/_._",
  7277. "ref/net45/_._",
  7278. "ref/netcore50/System.Dynamic.Runtime.dll",
  7279. "ref/netcore50/System.Dynamic.Runtime.xml",
  7280. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7281. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7282. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7283. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7284. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7285. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7286. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7287. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7288. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7289. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7290. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7291. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7292. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7293. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7294. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7295. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7296. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7297. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7298. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7299. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7300. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7301. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7302. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7303. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7304. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7305. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7306. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7307. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7308. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7309. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7310. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7311. "ref/portable-net45+win8+wp8+wpa81/_._",
  7312. "ref/win8/_._",
  7313. "ref/wp80/_._",
  7314. "ref/wpa81/_._",
  7315. "ref/xamarinios10/_._",
  7316. "ref/xamarinmac20/_._",
  7317. "ref/xamarintvos10/_._",
  7318. "ref/xamarinwatchos10/_._",
  7319. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7320. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7321. "system.dynamic.runtime.nuspec"
  7322. ]
  7323. },
  7324. "System.Formats.Asn1/6.0.0": {
  7325. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  7326. "type": "package",
  7327. "path": "system.formats.asn1/6.0.0",
  7328. "files": [
  7329. ".nupkg.metadata",
  7330. ".signature.p7s",
  7331. "Icon.png",
  7332. "LICENSE.TXT",
  7333. "THIRD-PARTY-NOTICES.TXT",
  7334. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  7335. "buildTransitive/netcoreapp3.1/_._",
  7336. "lib/net461/System.Formats.Asn1.dll",
  7337. "lib/net461/System.Formats.Asn1.xml",
  7338. "lib/net6.0/System.Formats.Asn1.dll",
  7339. "lib/net6.0/System.Formats.Asn1.xml",
  7340. "lib/netstandard2.0/System.Formats.Asn1.dll",
  7341. "lib/netstandard2.0/System.Formats.Asn1.xml",
  7342. "system.formats.asn1.6.0.0.nupkg.sha512",
  7343. "system.formats.asn1.nuspec",
  7344. "useSharedDesignerContext.txt"
  7345. ]
  7346. },
  7347. "System.Globalization/4.3.0": {
  7348. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7349. "type": "package",
  7350. "path": "system.globalization/4.3.0",
  7351. "files": [
  7352. ".nupkg.metadata",
  7353. ".signature.p7s",
  7354. "ThirdPartyNotices.txt",
  7355. "dotnet_library_license.txt",
  7356. "lib/MonoAndroid10/_._",
  7357. "lib/MonoTouch10/_._",
  7358. "lib/net45/_._",
  7359. "lib/portable-net45+win8+wp8+wpa81/_._",
  7360. "lib/win8/_._",
  7361. "lib/wp80/_._",
  7362. "lib/wpa81/_._",
  7363. "lib/xamarinios10/_._",
  7364. "lib/xamarinmac20/_._",
  7365. "lib/xamarintvos10/_._",
  7366. "lib/xamarinwatchos10/_._",
  7367. "ref/MonoAndroid10/_._",
  7368. "ref/MonoTouch10/_._",
  7369. "ref/net45/_._",
  7370. "ref/netcore50/System.Globalization.dll",
  7371. "ref/netcore50/System.Globalization.xml",
  7372. "ref/netcore50/de/System.Globalization.xml",
  7373. "ref/netcore50/es/System.Globalization.xml",
  7374. "ref/netcore50/fr/System.Globalization.xml",
  7375. "ref/netcore50/it/System.Globalization.xml",
  7376. "ref/netcore50/ja/System.Globalization.xml",
  7377. "ref/netcore50/ko/System.Globalization.xml",
  7378. "ref/netcore50/ru/System.Globalization.xml",
  7379. "ref/netcore50/zh-hans/System.Globalization.xml",
  7380. "ref/netcore50/zh-hant/System.Globalization.xml",
  7381. "ref/netstandard1.0/System.Globalization.dll",
  7382. "ref/netstandard1.0/System.Globalization.xml",
  7383. "ref/netstandard1.0/de/System.Globalization.xml",
  7384. "ref/netstandard1.0/es/System.Globalization.xml",
  7385. "ref/netstandard1.0/fr/System.Globalization.xml",
  7386. "ref/netstandard1.0/it/System.Globalization.xml",
  7387. "ref/netstandard1.0/ja/System.Globalization.xml",
  7388. "ref/netstandard1.0/ko/System.Globalization.xml",
  7389. "ref/netstandard1.0/ru/System.Globalization.xml",
  7390. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7391. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7392. "ref/netstandard1.3/System.Globalization.dll",
  7393. "ref/netstandard1.3/System.Globalization.xml",
  7394. "ref/netstandard1.3/de/System.Globalization.xml",
  7395. "ref/netstandard1.3/es/System.Globalization.xml",
  7396. "ref/netstandard1.3/fr/System.Globalization.xml",
  7397. "ref/netstandard1.3/it/System.Globalization.xml",
  7398. "ref/netstandard1.3/ja/System.Globalization.xml",
  7399. "ref/netstandard1.3/ko/System.Globalization.xml",
  7400. "ref/netstandard1.3/ru/System.Globalization.xml",
  7401. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7402. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7403. "ref/portable-net45+win8+wp8+wpa81/_._",
  7404. "ref/win8/_._",
  7405. "ref/wp80/_._",
  7406. "ref/wpa81/_._",
  7407. "ref/xamarinios10/_._",
  7408. "ref/xamarinmac20/_._",
  7409. "ref/xamarintvos10/_._",
  7410. "ref/xamarinwatchos10/_._",
  7411. "system.globalization.4.3.0.nupkg.sha512",
  7412. "system.globalization.nuspec"
  7413. ]
  7414. },
  7415. "System.Globalization.Calendars/4.3.0": {
  7416. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7417. "type": "package",
  7418. "path": "system.globalization.calendars/4.3.0",
  7419. "files": [
  7420. ".nupkg.metadata",
  7421. ".signature.p7s",
  7422. "ThirdPartyNotices.txt",
  7423. "dotnet_library_license.txt",
  7424. "lib/MonoAndroid10/_._",
  7425. "lib/MonoTouch10/_._",
  7426. "lib/net46/System.Globalization.Calendars.dll",
  7427. "lib/xamarinios10/_._",
  7428. "lib/xamarinmac20/_._",
  7429. "lib/xamarintvos10/_._",
  7430. "lib/xamarinwatchos10/_._",
  7431. "ref/MonoAndroid10/_._",
  7432. "ref/MonoTouch10/_._",
  7433. "ref/net46/System.Globalization.Calendars.dll",
  7434. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7435. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7436. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7437. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7438. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7439. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7440. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7441. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7442. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7443. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7444. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7445. "ref/xamarinios10/_._",
  7446. "ref/xamarinmac20/_._",
  7447. "ref/xamarintvos10/_._",
  7448. "ref/xamarinwatchos10/_._",
  7449. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7450. "system.globalization.calendars.nuspec"
  7451. ]
  7452. },
  7453. "System.Globalization.Extensions/4.3.0": {
  7454. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7455. "type": "package",
  7456. "path": "system.globalization.extensions/4.3.0",
  7457. "files": [
  7458. ".nupkg.metadata",
  7459. ".signature.p7s",
  7460. "ThirdPartyNotices.txt",
  7461. "dotnet_library_license.txt",
  7462. "lib/MonoAndroid10/_._",
  7463. "lib/MonoTouch10/_._",
  7464. "lib/net46/System.Globalization.Extensions.dll",
  7465. "lib/xamarinios10/_._",
  7466. "lib/xamarinmac20/_._",
  7467. "lib/xamarintvos10/_._",
  7468. "lib/xamarinwatchos10/_._",
  7469. "ref/MonoAndroid10/_._",
  7470. "ref/MonoTouch10/_._",
  7471. "ref/net46/System.Globalization.Extensions.dll",
  7472. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7473. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7474. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7475. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7476. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7477. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7478. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7479. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7480. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7481. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7482. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7483. "ref/xamarinios10/_._",
  7484. "ref/xamarinmac20/_._",
  7485. "ref/xamarintvos10/_._",
  7486. "ref/xamarinwatchos10/_._",
  7487. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7488. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7489. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7490. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7491. "system.globalization.extensions.nuspec"
  7492. ]
  7493. },
  7494. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  7495. "sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
  7496. "type": "package",
  7497. "path": "system.identitymodel.tokens.jwt/6.7.1",
  7498. "files": [
  7499. ".nupkg.metadata",
  7500. ".signature.p7s",
  7501. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7502. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7503. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7504. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7505. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7506. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7507. "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
  7508. "system.identitymodel.tokens.jwt.nuspec"
  7509. ]
  7510. },
  7511. "System.IO/4.3.0": {
  7512. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7513. "type": "package",
  7514. "path": "system.io/4.3.0",
  7515. "files": [
  7516. ".nupkg.metadata",
  7517. ".signature.p7s",
  7518. "ThirdPartyNotices.txt",
  7519. "dotnet_library_license.txt",
  7520. "lib/MonoAndroid10/_._",
  7521. "lib/MonoTouch10/_._",
  7522. "lib/net45/_._",
  7523. "lib/net462/System.IO.dll",
  7524. "lib/portable-net45+win8+wp8+wpa81/_._",
  7525. "lib/win8/_._",
  7526. "lib/wp80/_._",
  7527. "lib/wpa81/_._",
  7528. "lib/xamarinios10/_._",
  7529. "lib/xamarinmac20/_._",
  7530. "lib/xamarintvos10/_._",
  7531. "lib/xamarinwatchos10/_._",
  7532. "ref/MonoAndroid10/_._",
  7533. "ref/MonoTouch10/_._",
  7534. "ref/net45/_._",
  7535. "ref/net462/System.IO.dll",
  7536. "ref/netcore50/System.IO.dll",
  7537. "ref/netcore50/System.IO.xml",
  7538. "ref/netcore50/de/System.IO.xml",
  7539. "ref/netcore50/es/System.IO.xml",
  7540. "ref/netcore50/fr/System.IO.xml",
  7541. "ref/netcore50/it/System.IO.xml",
  7542. "ref/netcore50/ja/System.IO.xml",
  7543. "ref/netcore50/ko/System.IO.xml",
  7544. "ref/netcore50/ru/System.IO.xml",
  7545. "ref/netcore50/zh-hans/System.IO.xml",
  7546. "ref/netcore50/zh-hant/System.IO.xml",
  7547. "ref/netstandard1.0/System.IO.dll",
  7548. "ref/netstandard1.0/System.IO.xml",
  7549. "ref/netstandard1.0/de/System.IO.xml",
  7550. "ref/netstandard1.0/es/System.IO.xml",
  7551. "ref/netstandard1.0/fr/System.IO.xml",
  7552. "ref/netstandard1.0/it/System.IO.xml",
  7553. "ref/netstandard1.0/ja/System.IO.xml",
  7554. "ref/netstandard1.0/ko/System.IO.xml",
  7555. "ref/netstandard1.0/ru/System.IO.xml",
  7556. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7557. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7558. "ref/netstandard1.3/System.IO.dll",
  7559. "ref/netstandard1.3/System.IO.xml",
  7560. "ref/netstandard1.3/de/System.IO.xml",
  7561. "ref/netstandard1.3/es/System.IO.xml",
  7562. "ref/netstandard1.3/fr/System.IO.xml",
  7563. "ref/netstandard1.3/it/System.IO.xml",
  7564. "ref/netstandard1.3/ja/System.IO.xml",
  7565. "ref/netstandard1.3/ko/System.IO.xml",
  7566. "ref/netstandard1.3/ru/System.IO.xml",
  7567. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7568. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7569. "ref/netstandard1.5/System.IO.dll",
  7570. "ref/netstandard1.5/System.IO.xml",
  7571. "ref/netstandard1.5/de/System.IO.xml",
  7572. "ref/netstandard1.5/es/System.IO.xml",
  7573. "ref/netstandard1.5/fr/System.IO.xml",
  7574. "ref/netstandard1.5/it/System.IO.xml",
  7575. "ref/netstandard1.5/ja/System.IO.xml",
  7576. "ref/netstandard1.5/ko/System.IO.xml",
  7577. "ref/netstandard1.5/ru/System.IO.xml",
  7578. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7579. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7580. "ref/portable-net45+win8+wp8+wpa81/_._",
  7581. "ref/win8/_._",
  7582. "ref/wp80/_._",
  7583. "ref/wpa81/_._",
  7584. "ref/xamarinios10/_._",
  7585. "ref/xamarinmac20/_._",
  7586. "ref/xamarintvos10/_._",
  7587. "ref/xamarinwatchos10/_._",
  7588. "system.io.4.3.0.nupkg.sha512",
  7589. "system.io.nuspec"
  7590. ]
  7591. },
  7592. "System.IO.Compression/4.3.0": {
  7593. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7594. "type": "package",
  7595. "path": "system.io.compression/4.3.0",
  7596. "files": [
  7597. ".nupkg.metadata",
  7598. ".signature.p7s",
  7599. "ThirdPartyNotices.txt",
  7600. "dotnet_library_license.txt",
  7601. "lib/MonoAndroid10/_._",
  7602. "lib/MonoTouch10/_._",
  7603. "lib/net45/_._",
  7604. "lib/net46/System.IO.Compression.dll",
  7605. "lib/portable-net45+win8+wpa81/_._",
  7606. "lib/win8/_._",
  7607. "lib/wpa81/_._",
  7608. "lib/xamarinios10/_._",
  7609. "lib/xamarinmac20/_._",
  7610. "lib/xamarintvos10/_._",
  7611. "lib/xamarinwatchos10/_._",
  7612. "ref/MonoAndroid10/_._",
  7613. "ref/MonoTouch10/_._",
  7614. "ref/net45/_._",
  7615. "ref/net46/System.IO.Compression.dll",
  7616. "ref/netcore50/System.IO.Compression.dll",
  7617. "ref/netcore50/System.IO.Compression.xml",
  7618. "ref/netcore50/de/System.IO.Compression.xml",
  7619. "ref/netcore50/es/System.IO.Compression.xml",
  7620. "ref/netcore50/fr/System.IO.Compression.xml",
  7621. "ref/netcore50/it/System.IO.Compression.xml",
  7622. "ref/netcore50/ja/System.IO.Compression.xml",
  7623. "ref/netcore50/ko/System.IO.Compression.xml",
  7624. "ref/netcore50/ru/System.IO.Compression.xml",
  7625. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7626. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7627. "ref/netstandard1.1/System.IO.Compression.dll",
  7628. "ref/netstandard1.1/System.IO.Compression.xml",
  7629. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7630. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7631. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7632. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7633. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7634. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7635. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7636. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7637. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7638. "ref/netstandard1.3/System.IO.Compression.dll",
  7639. "ref/netstandard1.3/System.IO.Compression.xml",
  7640. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7641. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7642. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7643. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7644. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7645. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7646. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7647. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7648. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7649. "ref/portable-net45+win8+wpa81/_._",
  7650. "ref/win8/_._",
  7651. "ref/wpa81/_._",
  7652. "ref/xamarinios10/_._",
  7653. "ref/xamarinmac20/_._",
  7654. "ref/xamarintvos10/_._",
  7655. "ref/xamarinwatchos10/_._",
  7656. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7657. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7658. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7659. "system.io.compression.4.3.0.nupkg.sha512",
  7660. "system.io.compression.nuspec"
  7661. ]
  7662. },
  7663. "System.IO.Compression.ZipFile/4.3.0": {
  7664. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7665. "type": "package",
  7666. "path": "system.io.compression.zipfile/4.3.0",
  7667. "files": [
  7668. ".nupkg.metadata",
  7669. ".signature.p7s",
  7670. "ThirdPartyNotices.txt",
  7671. "dotnet_library_license.txt",
  7672. "lib/MonoAndroid10/_._",
  7673. "lib/MonoTouch10/_._",
  7674. "lib/net46/System.IO.Compression.ZipFile.dll",
  7675. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7676. "lib/xamarinios10/_._",
  7677. "lib/xamarinmac20/_._",
  7678. "lib/xamarintvos10/_._",
  7679. "lib/xamarinwatchos10/_._",
  7680. "ref/MonoAndroid10/_._",
  7681. "ref/MonoTouch10/_._",
  7682. "ref/net46/System.IO.Compression.ZipFile.dll",
  7683. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7684. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7685. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7686. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7687. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7688. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7689. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7690. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7691. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7692. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7693. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7694. "ref/xamarinios10/_._",
  7695. "ref/xamarinmac20/_._",
  7696. "ref/xamarintvos10/_._",
  7697. "ref/xamarinwatchos10/_._",
  7698. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7699. "system.io.compression.zipfile.nuspec"
  7700. ]
  7701. },
  7702. "System.IO.FileSystem/4.3.0": {
  7703. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7704. "type": "package",
  7705. "path": "system.io.filesystem/4.3.0",
  7706. "files": [
  7707. ".nupkg.metadata",
  7708. ".signature.p7s",
  7709. "ThirdPartyNotices.txt",
  7710. "dotnet_library_license.txt",
  7711. "lib/MonoAndroid10/_._",
  7712. "lib/MonoTouch10/_._",
  7713. "lib/net46/System.IO.FileSystem.dll",
  7714. "lib/xamarinios10/_._",
  7715. "lib/xamarinmac20/_._",
  7716. "lib/xamarintvos10/_._",
  7717. "lib/xamarinwatchos10/_._",
  7718. "ref/MonoAndroid10/_._",
  7719. "ref/MonoTouch10/_._",
  7720. "ref/net46/System.IO.FileSystem.dll",
  7721. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7722. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7723. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7724. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7725. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7726. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7727. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7728. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7729. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7730. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7731. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7732. "ref/xamarinios10/_._",
  7733. "ref/xamarinmac20/_._",
  7734. "ref/xamarintvos10/_._",
  7735. "ref/xamarinwatchos10/_._",
  7736. "system.io.filesystem.4.3.0.nupkg.sha512",
  7737. "system.io.filesystem.nuspec"
  7738. ]
  7739. },
  7740. "System.IO.FileSystem.Primitives/4.3.0": {
  7741. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7742. "type": "package",
  7743. "path": "system.io.filesystem.primitives/4.3.0",
  7744. "files": [
  7745. ".nupkg.metadata",
  7746. ".signature.p7s",
  7747. "ThirdPartyNotices.txt",
  7748. "dotnet_library_license.txt",
  7749. "lib/MonoAndroid10/_._",
  7750. "lib/MonoTouch10/_._",
  7751. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7752. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7753. "lib/xamarinios10/_._",
  7754. "lib/xamarinmac20/_._",
  7755. "lib/xamarintvos10/_._",
  7756. "lib/xamarinwatchos10/_._",
  7757. "ref/MonoAndroid10/_._",
  7758. "ref/MonoTouch10/_._",
  7759. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7760. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7761. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7762. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7763. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7764. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7765. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7766. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7767. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7768. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7769. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7770. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7771. "ref/xamarinios10/_._",
  7772. "ref/xamarinmac20/_._",
  7773. "ref/xamarintvos10/_._",
  7774. "ref/xamarinwatchos10/_._",
  7775. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7776. "system.io.filesystem.primitives.nuspec"
  7777. ]
  7778. },
  7779. "System.IO.Hashing/9.0.4": {
  7780. "sha512": "WogPvgAFqQORFD8Iyha6RZ+/1QB3dsWRWxbwi8/HHVgiGQ8z0oMWpwe8Kk3Ti+Roe+P6a3sBg+WwBfEsyziZKg==",
  7781. "type": "package",
  7782. "path": "system.io.hashing/9.0.4",
  7783. "files": [
  7784. ".nupkg.metadata",
  7785. ".signature.p7s",
  7786. "Icon.png",
  7787. "LICENSE.TXT",
  7788. "PACKAGE.md",
  7789. "THIRD-PARTY-NOTICES.TXT",
  7790. "buildTransitive/net461/System.IO.Hashing.targets",
  7791. "buildTransitive/net462/_._",
  7792. "buildTransitive/net8.0/_._",
  7793. "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets",
  7794. "lib/net462/System.IO.Hashing.dll",
  7795. "lib/net462/System.IO.Hashing.xml",
  7796. "lib/net8.0/System.IO.Hashing.dll",
  7797. "lib/net8.0/System.IO.Hashing.xml",
  7798. "lib/net9.0/System.IO.Hashing.dll",
  7799. "lib/net9.0/System.IO.Hashing.xml",
  7800. "lib/netstandard2.0/System.IO.Hashing.dll",
  7801. "lib/netstandard2.0/System.IO.Hashing.xml",
  7802. "system.io.hashing.9.0.4.nupkg.sha512",
  7803. "system.io.hashing.nuspec",
  7804. "useSharedDesignerContext.txt"
  7805. ]
  7806. },
  7807. "System.IO.Pipelines/9.0.1": {
  7808. "sha512": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg==",
  7809. "type": "package",
  7810. "path": "system.io.pipelines/9.0.1",
  7811. "files": [
  7812. ".nupkg.metadata",
  7813. ".signature.p7s",
  7814. "Icon.png",
  7815. "LICENSE.TXT",
  7816. "PACKAGE.md",
  7817. "THIRD-PARTY-NOTICES.TXT",
  7818. "buildTransitive/net461/System.IO.Pipelines.targets",
  7819. "buildTransitive/net462/_._",
  7820. "buildTransitive/net8.0/_._",
  7821. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  7822. "lib/net462/System.IO.Pipelines.dll",
  7823. "lib/net462/System.IO.Pipelines.xml",
  7824. "lib/net8.0/System.IO.Pipelines.dll",
  7825. "lib/net8.0/System.IO.Pipelines.xml",
  7826. "lib/net9.0/System.IO.Pipelines.dll",
  7827. "lib/net9.0/System.IO.Pipelines.xml",
  7828. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7829. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7830. "system.io.pipelines.9.0.1.nupkg.sha512",
  7831. "system.io.pipelines.nuspec",
  7832. "useSharedDesignerContext.txt"
  7833. ]
  7834. },
  7835. "System.Linq/4.3.0": {
  7836. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7837. "type": "package",
  7838. "path": "system.linq/4.3.0",
  7839. "files": [
  7840. ".nupkg.metadata",
  7841. ".signature.p7s",
  7842. "ThirdPartyNotices.txt",
  7843. "dotnet_library_license.txt",
  7844. "lib/MonoAndroid10/_._",
  7845. "lib/MonoTouch10/_._",
  7846. "lib/net45/_._",
  7847. "lib/net463/System.Linq.dll",
  7848. "lib/netcore50/System.Linq.dll",
  7849. "lib/netstandard1.6/System.Linq.dll",
  7850. "lib/portable-net45+win8+wp8+wpa81/_._",
  7851. "lib/win8/_._",
  7852. "lib/wp80/_._",
  7853. "lib/wpa81/_._",
  7854. "lib/xamarinios10/_._",
  7855. "lib/xamarinmac20/_._",
  7856. "lib/xamarintvos10/_._",
  7857. "lib/xamarinwatchos10/_._",
  7858. "ref/MonoAndroid10/_._",
  7859. "ref/MonoTouch10/_._",
  7860. "ref/net45/_._",
  7861. "ref/net463/System.Linq.dll",
  7862. "ref/netcore50/System.Linq.dll",
  7863. "ref/netcore50/System.Linq.xml",
  7864. "ref/netcore50/de/System.Linq.xml",
  7865. "ref/netcore50/es/System.Linq.xml",
  7866. "ref/netcore50/fr/System.Linq.xml",
  7867. "ref/netcore50/it/System.Linq.xml",
  7868. "ref/netcore50/ja/System.Linq.xml",
  7869. "ref/netcore50/ko/System.Linq.xml",
  7870. "ref/netcore50/ru/System.Linq.xml",
  7871. "ref/netcore50/zh-hans/System.Linq.xml",
  7872. "ref/netcore50/zh-hant/System.Linq.xml",
  7873. "ref/netstandard1.0/System.Linq.dll",
  7874. "ref/netstandard1.0/System.Linq.xml",
  7875. "ref/netstandard1.0/de/System.Linq.xml",
  7876. "ref/netstandard1.0/es/System.Linq.xml",
  7877. "ref/netstandard1.0/fr/System.Linq.xml",
  7878. "ref/netstandard1.0/it/System.Linq.xml",
  7879. "ref/netstandard1.0/ja/System.Linq.xml",
  7880. "ref/netstandard1.0/ko/System.Linq.xml",
  7881. "ref/netstandard1.0/ru/System.Linq.xml",
  7882. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7883. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7884. "ref/netstandard1.6/System.Linq.dll",
  7885. "ref/netstandard1.6/System.Linq.xml",
  7886. "ref/netstandard1.6/de/System.Linq.xml",
  7887. "ref/netstandard1.6/es/System.Linq.xml",
  7888. "ref/netstandard1.6/fr/System.Linq.xml",
  7889. "ref/netstandard1.6/it/System.Linq.xml",
  7890. "ref/netstandard1.6/ja/System.Linq.xml",
  7891. "ref/netstandard1.6/ko/System.Linq.xml",
  7892. "ref/netstandard1.6/ru/System.Linq.xml",
  7893. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7894. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7895. "ref/portable-net45+win8+wp8+wpa81/_._",
  7896. "ref/win8/_._",
  7897. "ref/wp80/_._",
  7898. "ref/wpa81/_._",
  7899. "ref/xamarinios10/_._",
  7900. "ref/xamarinmac20/_._",
  7901. "ref/xamarintvos10/_._",
  7902. "ref/xamarinwatchos10/_._",
  7903. "system.linq.4.3.0.nupkg.sha512",
  7904. "system.linq.nuspec"
  7905. ]
  7906. },
  7907. "System.Linq.Expressions/4.3.0": {
  7908. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7909. "type": "package",
  7910. "path": "system.linq.expressions/4.3.0",
  7911. "files": [
  7912. ".nupkg.metadata",
  7913. ".signature.p7s",
  7914. "ThirdPartyNotices.txt",
  7915. "dotnet_library_license.txt",
  7916. "lib/MonoAndroid10/_._",
  7917. "lib/MonoTouch10/_._",
  7918. "lib/net45/_._",
  7919. "lib/net463/System.Linq.Expressions.dll",
  7920. "lib/netcore50/System.Linq.Expressions.dll",
  7921. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7922. "lib/portable-net45+win8+wp8+wpa81/_._",
  7923. "lib/win8/_._",
  7924. "lib/wp80/_._",
  7925. "lib/wpa81/_._",
  7926. "lib/xamarinios10/_._",
  7927. "lib/xamarinmac20/_._",
  7928. "lib/xamarintvos10/_._",
  7929. "lib/xamarinwatchos10/_._",
  7930. "ref/MonoAndroid10/_._",
  7931. "ref/MonoTouch10/_._",
  7932. "ref/net45/_._",
  7933. "ref/net463/System.Linq.Expressions.dll",
  7934. "ref/netcore50/System.Linq.Expressions.dll",
  7935. "ref/netcore50/System.Linq.Expressions.xml",
  7936. "ref/netcore50/de/System.Linq.Expressions.xml",
  7937. "ref/netcore50/es/System.Linq.Expressions.xml",
  7938. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7939. "ref/netcore50/it/System.Linq.Expressions.xml",
  7940. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7941. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7942. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7943. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7944. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7945. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7946. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7947. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7948. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7949. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7950. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7951. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7952. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7953. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7954. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7955. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7956. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7957. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7958. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7959. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7960. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7961. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7962. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7963. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7964. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7965. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7966. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7967. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7968. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7969. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7970. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7971. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7972. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7973. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7974. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7975. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7976. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7977. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7978. "ref/portable-net45+win8+wp8+wpa81/_._",
  7979. "ref/win8/_._",
  7980. "ref/wp80/_._",
  7981. "ref/wpa81/_._",
  7982. "ref/xamarinios10/_._",
  7983. "ref/xamarinmac20/_._",
  7984. "ref/xamarintvos10/_._",
  7985. "ref/xamarinwatchos10/_._",
  7986. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7987. "system.linq.expressions.4.3.0.nupkg.sha512",
  7988. "system.linq.expressions.nuspec"
  7989. ]
  7990. },
  7991. "System.Memory/4.5.5": {
  7992. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7993. "type": "package",
  7994. "path": "system.memory/4.5.5",
  7995. "files": [
  7996. ".nupkg.metadata",
  7997. ".signature.p7s",
  7998. "LICENSE.TXT",
  7999. "THIRD-PARTY-NOTICES.TXT",
  8000. "lib/net461/System.Memory.dll",
  8001. "lib/net461/System.Memory.xml",
  8002. "lib/netcoreapp2.1/_._",
  8003. "lib/netstandard1.1/System.Memory.dll",
  8004. "lib/netstandard1.1/System.Memory.xml",
  8005. "lib/netstandard2.0/System.Memory.dll",
  8006. "lib/netstandard2.0/System.Memory.xml",
  8007. "ref/netcoreapp2.1/_._",
  8008. "system.memory.4.5.5.nupkg.sha512",
  8009. "system.memory.nuspec",
  8010. "useSharedDesignerContext.txt",
  8011. "version.txt"
  8012. ]
  8013. },
  8014. "System.Net.Http/4.3.4": {
  8015. "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
  8016. "type": "package",
  8017. "path": "system.net.http/4.3.4",
  8018. "files": [
  8019. ".nupkg.metadata",
  8020. ".signature.p7s",
  8021. "ThirdPartyNotices.txt",
  8022. "dotnet_library_license.txt",
  8023. "lib/Xamarinmac20/_._",
  8024. "lib/monoandroid10/_._",
  8025. "lib/monotouch10/_._",
  8026. "lib/net45/_._",
  8027. "lib/net46/System.Net.Http.dll",
  8028. "lib/portable-net45+win8+wpa81/_._",
  8029. "lib/win8/_._",
  8030. "lib/wpa81/_._",
  8031. "lib/xamarinios10/_._",
  8032. "lib/xamarintvos10/_._",
  8033. "lib/xamarinwatchos10/_._",
  8034. "ref/Xamarinmac20/_._",
  8035. "ref/monoandroid10/_._",
  8036. "ref/monotouch10/_._",
  8037. "ref/net45/_._",
  8038. "ref/net46/System.Net.Http.dll",
  8039. "ref/netcore50/System.Net.Http.dll",
  8040. "ref/netstandard1.1/System.Net.Http.dll",
  8041. "ref/netstandard1.3/System.Net.Http.dll",
  8042. "ref/portable-net45+win8+wpa81/_._",
  8043. "ref/win8/_._",
  8044. "ref/wpa81/_._",
  8045. "ref/xamarinios10/_._",
  8046. "ref/xamarintvos10/_._",
  8047. "ref/xamarinwatchos10/_._",
  8048. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  8049. "runtimes/win/lib/net46/System.Net.Http.dll",
  8050. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  8051. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  8052. "system.net.http.4.3.4.nupkg.sha512",
  8053. "system.net.http.nuspec"
  8054. ]
  8055. },
  8056. "System.Net.NameResolution/4.3.0": {
  8057. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  8058. "type": "package",
  8059. "path": "system.net.nameresolution/4.3.0",
  8060. "files": [
  8061. ".nupkg.metadata",
  8062. ".signature.p7s",
  8063. "ThirdPartyNotices.txt",
  8064. "dotnet_library_license.txt",
  8065. "lib/MonoAndroid10/_._",
  8066. "lib/MonoTouch10/_._",
  8067. "lib/net46/System.Net.NameResolution.dll",
  8068. "lib/xamarinios10/_._",
  8069. "lib/xamarinmac20/_._",
  8070. "lib/xamarintvos10/_._",
  8071. "lib/xamarinwatchos10/_._",
  8072. "ref/MonoAndroid10/_._",
  8073. "ref/MonoTouch10/_._",
  8074. "ref/net46/System.Net.NameResolution.dll",
  8075. "ref/netstandard1.3/System.Net.NameResolution.dll",
  8076. "ref/netstandard1.3/System.Net.NameResolution.xml",
  8077. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  8078. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  8079. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  8080. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  8081. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  8082. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  8083. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  8084. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  8085. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  8086. "ref/xamarinios10/_._",
  8087. "ref/xamarinmac20/_._",
  8088. "ref/xamarintvos10/_._",
  8089. "ref/xamarinwatchos10/_._",
  8090. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  8091. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  8092. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  8093. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  8094. "system.net.nameresolution.4.3.0.nupkg.sha512",
  8095. "system.net.nameresolution.nuspec"
  8096. ]
  8097. },
  8098. "System.Net.Primitives/4.3.1": {
  8099. "sha512": "OHzPhSme78BbmLe9UBxHM69ZYjClS5URuhce6Ta4ikiLgaUGiG/X84fZpI6zy7CsUH5R9cYzI2tv9dWPqdTkUg==",
  8100. "type": "package",
  8101. "path": "system.net.primitives/4.3.1",
  8102. "files": [
  8103. ".nupkg.metadata",
  8104. ".signature.p7s",
  8105. "ThirdPartyNotices.txt",
  8106. "dotnet_library_license.txt",
  8107. "lib/MonoAndroid10/_._",
  8108. "lib/MonoTouch10/_._",
  8109. "lib/net45/_._",
  8110. "lib/portable-net45+win8+wp8+wpa81/_._",
  8111. "lib/win8/_._",
  8112. "lib/wp80/_._",
  8113. "lib/wpa81/_._",
  8114. "lib/xamarinios10/_._",
  8115. "lib/xamarinmac20/_._",
  8116. "lib/xamarintvos10/_._",
  8117. "lib/xamarinwatchos10/_._",
  8118. "ref/MonoAndroid10/_._",
  8119. "ref/MonoTouch10/_._",
  8120. "ref/net45/_._",
  8121. "ref/netcore50/System.Net.Primitives.dll",
  8122. "ref/netcore50/System.Net.Primitives.xml",
  8123. "ref/netcore50/de/System.Net.Primitives.xml",
  8124. "ref/netcore50/es/System.Net.Primitives.xml",
  8125. "ref/netcore50/fr/System.Net.Primitives.xml",
  8126. "ref/netcore50/it/System.Net.Primitives.xml",
  8127. "ref/netcore50/ja/System.Net.Primitives.xml",
  8128. "ref/netcore50/ko/System.Net.Primitives.xml",
  8129. "ref/netcore50/ru/System.Net.Primitives.xml",
  8130. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  8131. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  8132. "ref/netstandard1.0/System.Net.Primitives.dll",
  8133. "ref/netstandard1.0/System.Net.Primitives.xml",
  8134. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  8135. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  8136. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  8137. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  8138. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  8139. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  8140. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  8141. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  8142. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  8143. "ref/netstandard1.1/System.Net.Primitives.dll",
  8144. "ref/netstandard1.1/System.Net.Primitives.xml",
  8145. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  8146. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  8147. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  8148. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  8149. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  8150. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  8151. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  8152. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  8153. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  8154. "ref/netstandard1.3/System.Net.Primitives.dll",
  8155. "ref/netstandard1.3/System.Net.Primitives.xml",
  8156. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  8157. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  8158. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  8159. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  8160. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  8161. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  8162. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  8163. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  8164. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  8165. "ref/portable-net45+win8+wp8+wpa81/_._",
  8166. "ref/win8/_._",
  8167. "ref/wp80/_._",
  8168. "ref/wpa81/_._",
  8169. "ref/xamarinios10/_._",
  8170. "ref/xamarinmac20/_._",
  8171. "ref/xamarintvos10/_._",
  8172. "ref/xamarinwatchos10/_._",
  8173. "system.net.primitives.4.3.1.nupkg.sha512",
  8174. "system.net.primitives.nuspec"
  8175. ]
  8176. },
  8177. "System.Net.Security/4.3.0": {
  8178. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  8179. "type": "package",
  8180. "path": "system.net.security/4.3.0",
  8181. "files": [
  8182. ".nupkg.metadata",
  8183. ".signature.p7s",
  8184. "ThirdPartyNotices.txt",
  8185. "dotnet_library_license.txt",
  8186. "lib/MonoAndroid10/_._",
  8187. "lib/MonoTouch10/_._",
  8188. "lib/net46/System.Net.Security.dll",
  8189. "lib/xamarinios10/_._",
  8190. "lib/xamarinmac20/_._",
  8191. "lib/xamarintvos10/_._",
  8192. "lib/xamarinwatchos10/_._",
  8193. "ref/MonoAndroid10/_._",
  8194. "ref/MonoTouch10/_._",
  8195. "ref/net46/System.Net.Security.dll",
  8196. "ref/netstandard1.3/System.Net.Security.dll",
  8197. "ref/netstandard1.3/System.Net.Security.xml",
  8198. "ref/netstandard1.3/de/System.Net.Security.xml",
  8199. "ref/netstandard1.3/es/System.Net.Security.xml",
  8200. "ref/netstandard1.3/fr/System.Net.Security.xml",
  8201. "ref/netstandard1.3/it/System.Net.Security.xml",
  8202. "ref/netstandard1.3/ja/System.Net.Security.xml",
  8203. "ref/netstandard1.3/ko/System.Net.Security.xml",
  8204. "ref/netstandard1.3/ru/System.Net.Security.xml",
  8205. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  8206. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  8207. "ref/xamarinios10/_._",
  8208. "ref/xamarinmac20/_._",
  8209. "ref/xamarintvos10/_._",
  8210. "ref/xamarinwatchos10/_._",
  8211. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  8212. "runtimes/win/lib/net46/System.Net.Security.dll",
  8213. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  8214. "runtimes/win7/lib/netcore50/_._",
  8215. "system.net.security.4.3.0.nupkg.sha512",
  8216. "system.net.security.nuspec"
  8217. ]
  8218. },
  8219. "System.Net.Sockets/4.3.0": {
  8220. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  8221. "type": "package",
  8222. "path": "system.net.sockets/4.3.0",
  8223. "files": [
  8224. ".nupkg.metadata",
  8225. ".signature.p7s",
  8226. "ThirdPartyNotices.txt",
  8227. "dotnet_library_license.txt",
  8228. "lib/MonoAndroid10/_._",
  8229. "lib/MonoTouch10/_._",
  8230. "lib/net46/System.Net.Sockets.dll",
  8231. "lib/xamarinios10/_._",
  8232. "lib/xamarinmac20/_._",
  8233. "lib/xamarintvos10/_._",
  8234. "lib/xamarinwatchos10/_._",
  8235. "ref/MonoAndroid10/_._",
  8236. "ref/MonoTouch10/_._",
  8237. "ref/net46/System.Net.Sockets.dll",
  8238. "ref/netstandard1.3/System.Net.Sockets.dll",
  8239. "ref/netstandard1.3/System.Net.Sockets.xml",
  8240. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  8241. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  8242. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  8243. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  8244. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  8245. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  8246. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  8247. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  8248. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  8249. "ref/xamarinios10/_._",
  8250. "ref/xamarinmac20/_._",
  8251. "ref/xamarintvos10/_._",
  8252. "ref/xamarinwatchos10/_._",
  8253. "system.net.sockets.4.3.0.nupkg.sha512",
  8254. "system.net.sockets.nuspec"
  8255. ]
  8256. },
  8257. "System.ObjectModel/4.3.0": {
  8258. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  8259. "type": "package",
  8260. "path": "system.objectmodel/4.3.0",
  8261. "files": [
  8262. ".nupkg.metadata",
  8263. ".signature.p7s",
  8264. "ThirdPartyNotices.txt",
  8265. "dotnet_library_license.txt",
  8266. "lib/MonoAndroid10/_._",
  8267. "lib/MonoTouch10/_._",
  8268. "lib/net45/_._",
  8269. "lib/netcore50/System.ObjectModel.dll",
  8270. "lib/netstandard1.3/System.ObjectModel.dll",
  8271. "lib/portable-net45+win8+wp8+wpa81/_._",
  8272. "lib/win8/_._",
  8273. "lib/wp80/_._",
  8274. "lib/wpa81/_._",
  8275. "lib/xamarinios10/_._",
  8276. "lib/xamarinmac20/_._",
  8277. "lib/xamarintvos10/_._",
  8278. "lib/xamarinwatchos10/_._",
  8279. "ref/MonoAndroid10/_._",
  8280. "ref/MonoTouch10/_._",
  8281. "ref/net45/_._",
  8282. "ref/netcore50/System.ObjectModel.dll",
  8283. "ref/netcore50/System.ObjectModel.xml",
  8284. "ref/netcore50/de/System.ObjectModel.xml",
  8285. "ref/netcore50/es/System.ObjectModel.xml",
  8286. "ref/netcore50/fr/System.ObjectModel.xml",
  8287. "ref/netcore50/it/System.ObjectModel.xml",
  8288. "ref/netcore50/ja/System.ObjectModel.xml",
  8289. "ref/netcore50/ko/System.ObjectModel.xml",
  8290. "ref/netcore50/ru/System.ObjectModel.xml",
  8291. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8292. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8293. "ref/netstandard1.0/System.ObjectModel.dll",
  8294. "ref/netstandard1.0/System.ObjectModel.xml",
  8295. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8296. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8297. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8298. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8299. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8300. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8301. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8302. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8303. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8304. "ref/netstandard1.3/System.ObjectModel.dll",
  8305. "ref/netstandard1.3/System.ObjectModel.xml",
  8306. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8307. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8308. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8309. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8310. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8311. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8312. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8313. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8314. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8315. "ref/portable-net45+win8+wp8+wpa81/_._",
  8316. "ref/win8/_._",
  8317. "ref/wp80/_._",
  8318. "ref/wpa81/_._",
  8319. "ref/xamarinios10/_._",
  8320. "ref/xamarinmac20/_._",
  8321. "ref/xamarintvos10/_._",
  8322. "ref/xamarinwatchos10/_._",
  8323. "system.objectmodel.4.3.0.nupkg.sha512",
  8324. "system.objectmodel.nuspec"
  8325. ]
  8326. },
  8327. "System.Reactive/6.0.1": {
  8328. "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
  8329. "type": "package",
  8330. "path": "system.reactive/6.0.1",
  8331. "files": [
  8332. ".nupkg.metadata",
  8333. ".signature.p7s",
  8334. "build/net6.0-windows10.0.19041/_._",
  8335. "build/net6.0/_._",
  8336. "buildTransitive/net6.0-windows10.0.19041/_._",
  8337. "buildTransitive/net6.0/_._",
  8338. "icon.png",
  8339. "lib/net472/System.Reactive.dll",
  8340. "lib/net472/System.Reactive.xml",
  8341. "lib/net6.0-windows10.0.19041/System.Reactive.dll",
  8342. "lib/net6.0-windows10.0.19041/System.Reactive.xml",
  8343. "lib/net6.0/System.Reactive.dll",
  8344. "lib/net6.0/System.Reactive.xml",
  8345. "lib/netstandard2.0/System.Reactive.dll",
  8346. "lib/netstandard2.0/System.Reactive.xml",
  8347. "lib/uap10.0.18362/System.Reactive.dll",
  8348. "lib/uap10.0.18362/System.Reactive.pri",
  8349. "lib/uap10.0.18362/System.Reactive.xml",
  8350. "readme.md",
  8351. "system.reactive.6.0.1.nupkg.sha512",
  8352. "system.reactive.nuspec"
  8353. ]
  8354. },
  8355. "System.Reflection/4.3.0": {
  8356. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  8357. "type": "package",
  8358. "path": "system.reflection/4.3.0",
  8359. "files": [
  8360. ".nupkg.metadata",
  8361. ".signature.p7s",
  8362. "ThirdPartyNotices.txt",
  8363. "dotnet_library_license.txt",
  8364. "lib/MonoAndroid10/_._",
  8365. "lib/MonoTouch10/_._",
  8366. "lib/net45/_._",
  8367. "lib/net462/System.Reflection.dll",
  8368. "lib/portable-net45+win8+wp8+wpa81/_._",
  8369. "lib/win8/_._",
  8370. "lib/wp80/_._",
  8371. "lib/wpa81/_._",
  8372. "lib/xamarinios10/_._",
  8373. "lib/xamarinmac20/_._",
  8374. "lib/xamarintvos10/_._",
  8375. "lib/xamarinwatchos10/_._",
  8376. "ref/MonoAndroid10/_._",
  8377. "ref/MonoTouch10/_._",
  8378. "ref/net45/_._",
  8379. "ref/net462/System.Reflection.dll",
  8380. "ref/netcore50/System.Reflection.dll",
  8381. "ref/netcore50/System.Reflection.xml",
  8382. "ref/netcore50/de/System.Reflection.xml",
  8383. "ref/netcore50/es/System.Reflection.xml",
  8384. "ref/netcore50/fr/System.Reflection.xml",
  8385. "ref/netcore50/it/System.Reflection.xml",
  8386. "ref/netcore50/ja/System.Reflection.xml",
  8387. "ref/netcore50/ko/System.Reflection.xml",
  8388. "ref/netcore50/ru/System.Reflection.xml",
  8389. "ref/netcore50/zh-hans/System.Reflection.xml",
  8390. "ref/netcore50/zh-hant/System.Reflection.xml",
  8391. "ref/netstandard1.0/System.Reflection.dll",
  8392. "ref/netstandard1.0/System.Reflection.xml",
  8393. "ref/netstandard1.0/de/System.Reflection.xml",
  8394. "ref/netstandard1.0/es/System.Reflection.xml",
  8395. "ref/netstandard1.0/fr/System.Reflection.xml",
  8396. "ref/netstandard1.0/it/System.Reflection.xml",
  8397. "ref/netstandard1.0/ja/System.Reflection.xml",
  8398. "ref/netstandard1.0/ko/System.Reflection.xml",
  8399. "ref/netstandard1.0/ru/System.Reflection.xml",
  8400. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8401. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8402. "ref/netstandard1.3/System.Reflection.dll",
  8403. "ref/netstandard1.3/System.Reflection.xml",
  8404. "ref/netstandard1.3/de/System.Reflection.xml",
  8405. "ref/netstandard1.3/es/System.Reflection.xml",
  8406. "ref/netstandard1.3/fr/System.Reflection.xml",
  8407. "ref/netstandard1.3/it/System.Reflection.xml",
  8408. "ref/netstandard1.3/ja/System.Reflection.xml",
  8409. "ref/netstandard1.3/ko/System.Reflection.xml",
  8410. "ref/netstandard1.3/ru/System.Reflection.xml",
  8411. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8412. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8413. "ref/netstandard1.5/System.Reflection.dll",
  8414. "ref/netstandard1.5/System.Reflection.xml",
  8415. "ref/netstandard1.5/de/System.Reflection.xml",
  8416. "ref/netstandard1.5/es/System.Reflection.xml",
  8417. "ref/netstandard1.5/fr/System.Reflection.xml",
  8418. "ref/netstandard1.5/it/System.Reflection.xml",
  8419. "ref/netstandard1.5/ja/System.Reflection.xml",
  8420. "ref/netstandard1.5/ko/System.Reflection.xml",
  8421. "ref/netstandard1.5/ru/System.Reflection.xml",
  8422. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8423. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8424. "ref/portable-net45+win8+wp8+wpa81/_._",
  8425. "ref/win8/_._",
  8426. "ref/wp80/_._",
  8427. "ref/wpa81/_._",
  8428. "ref/xamarinios10/_._",
  8429. "ref/xamarinmac20/_._",
  8430. "ref/xamarintvos10/_._",
  8431. "ref/xamarinwatchos10/_._",
  8432. "system.reflection.4.3.0.nupkg.sha512",
  8433. "system.reflection.nuspec"
  8434. ]
  8435. },
  8436. "System.Reflection.Emit/4.7.0": {
  8437. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8438. "type": "package",
  8439. "path": "system.reflection.emit/4.7.0",
  8440. "files": [
  8441. ".nupkg.metadata",
  8442. ".signature.p7s",
  8443. "LICENSE.TXT",
  8444. "THIRD-PARTY-NOTICES.TXT",
  8445. "lib/MonoAndroid10/_._",
  8446. "lib/MonoTouch10/_._",
  8447. "lib/net45/_._",
  8448. "lib/netcore50/System.Reflection.Emit.dll",
  8449. "lib/netcoreapp2.0/_._",
  8450. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8451. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8452. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8453. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8454. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8455. "lib/netstandard2.1/_._",
  8456. "lib/xamarinios10/_._",
  8457. "lib/xamarinmac20/_._",
  8458. "lib/xamarintvos10/_._",
  8459. "lib/xamarinwatchos10/_._",
  8460. "ref/MonoAndroid10/_._",
  8461. "ref/MonoTouch10/_._",
  8462. "ref/net45/_._",
  8463. "ref/netcoreapp2.0/_._",
  8464. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8465. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8466. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8467. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8468. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8469. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8470. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8471. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8472. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8473. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8474. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8475. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8476. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8477. "ref/netstandard2.1/_._",
  8478. "ref/xamarinios10/_._",
  8479. "ref/xamarinmac20/_._",
  8480. "ref/xamarintvos10/_._",
  8481. "ref/xamarinwatchos10/_._",
  8482. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8483. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8484. "system.reflection.emit.4.7.0.nupkg.sha512",
  8485. "system.reflection.emit.nuspec",
  8486. "useSharedDesignerContext.txt",
  8487. "version.txt"
  8488. ]
  8489. },
  8490. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8491. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8492. "type": "package",
  8493. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8494. "files": [
  8495. ".nupkg.metadata",
  8496. ".signature.p7s",
  8497. "ThirdPartyNotices.txt",
  8498. "dotnet_library_license.txt",
  8499. "lib/MonoAndroid10/_._",
  8500. "lib/MonoTouch10/_._",
  8501. "lib/net45/_._",
  8502. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8503. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8504. "lib/portable-net45+wp8/_._",
  8505. "lib/wp80/_._",
  8506. "lib/xamarinios10/_._",
  8507. "lib/xamarinmac20/_._",
  8508. "lib/xamarintvos10/_._",
  8509. "lib/xamarinwatchos10/_._",
  8510. "ref/MonoAndroid10/_._",
  8511. "ref/MonoTouch10/_._",
  8512. "ref/net45/_._",
  8513. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8514. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8515. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8516. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8517. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8518. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8519. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8520. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8521. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8522. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8523. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8524. "ref/portable-net45+wp8/_._",
  8525. "ref/wp80/_._",
  8526. "ref/xamarinios10/_._",
  8527. "ref/xamarinmac20/_._",
  8528. "ref/xamarintvos10/_._",
  8529. "ref/xamarinwatchos10/_._",
  8530. "runtimes/aot/lib/netcore50/_._",
  8531. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8532. "system.reflection.emit.ilgeneration.nuspec"
  8533. ]
  8534. },
  8535. "System.Reflection.Emit.Lightweight/4.3.0": {
  8536. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8537. "type": "package",
  8538. "path": "system.reflection.emit.lightweight/4.3.0",
  8539. "files": [
  8540. ".nupkg.metadata",
  8541. ".signature.p7s",
  8542. "ThirdPartyNotices.txt",
  8543. "dotnet_library_license.txt",
  8544. "lib/MonoAndroid10/_._",
  8545. "lib/MonoTouch10/_._",
  8546. "lib/net45/_._",
  8547. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8548. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8549. "lib/portable-net45+wp8/_._",
  8550. "lib/wp80/_._",
  8551. "lib/xamarinios10/_._",
  8552. "lib/xamarinmac20/_._",
  8553. "lib/xamarintvos10/_._",
  8554. "lib/xamarinwatchos10/_._",
  8555. "ref/MonoAndroid10/_._",
  8556. "ref/MonoTouch10/_._",
  8557. "ref/net45/_._",
  8558. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8559. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8560. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8561. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8562. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8563. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8564. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8565. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8566. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8567. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8568. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8569. "ref/portable-net45+wp8/_._",
  8570. "ref/wp80/_._",
  8571. "ref/xamarinios10/_._",
  8572. "ref/xamarinmac20/_._",
  8573. "ref/xamarintvos10/_._",
  8574. "ref/xamarinwatchos10/_._",
  8575. "runtimes/aot/lib/netcore50/_._",
  8576. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8577. "system.reflection.emit.lightweight.nuspec"
  8578. ]
  8579. },
  8580. "System.Reflection.Extensions/4.3.0": {
  8581. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8582. "type": "package",
  8583. "path": "system.reflection.extensions/4.3.0",
  8584. "files": [
  8585. ".nupkg.metadata",
  8586. ".signature.p7s",
  8587. "ThirdPartyNotices.txt",
  8588. "dotnet_library_license.txt",
  8589. "lib/MonoAndroid10/_._",
  8590. "lib/MonoTouch10/_._",
  8591. "lib/net45/_._",
  8592. "lib/portable-net45+win8+wp8+wpa81/_._",
  8593. "lib/win8/_._",
  8594. "lib/wp80/_._",
  8595. "lib/wpa81/_._",
  8596. "lib/xamarinios10/_._",
  8597. "lib/xamarinmac20/_._",
  8598. "lib/xamarintvos10/_._",
  8599. "lib/xamarinwatchos10/_._",
  8600. "ref/MonoAndroid10/_._",
  8601. "ref/MonoTouch10/_._",
  8602. "ref/net45/_._",
  8603. "ref/netcore50/System.Reflection.Extensions.dll",
  8604. "ref/netcore50/System.Reflection.Extensions.xml",
  8605. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8606. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8607. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8608. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8609. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8610. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8611. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8612. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8613. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8614. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8615. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8616. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8617. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8618. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8619. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8620. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8621. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8622. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8623. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8624. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8625. "ref/portable-net45+win8+wp8+wpa81/_._",
  8626. "ref/win8/_._",
  8627. "ref/wp80/_._",
  8628. "ref/wpa81/_._",
  8629. "ref/xamarinios10/_._",
  8630. "ref/xamarinmac20/_._",
  8631. "ref/xamarintvos10/_._",
  8632. "ref/xamarinwatchos10/_._",
  8633. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8634. "system.reflection.extensions.nuspec"
  8635. ]
  8636. },
  8637. "System.Reflection.Primitives/4.3.0": {
  8638. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8639. "type": "package",
  8640. "path": "system.reflection.primitives/4.3.0",
  8641. "files": [
  8642. ".nupkg.metadata",
  8643. ".signature.p7s",
  8644. "ThirdPartyNotices.txt",
  8645. "dotnet_library_license.txt",
  8646. "lib/MonoAndroid10/_._",
  8647. "lib/MonoTouch10/_._",
  8648. "lib/net45/_._",
  8649. "lib/portable-net45+win8+wp8+wpa81/_._",
  8650. "lib/win8/_._",
  8651. "lib/wp80/_._",
  8652. "lib/wpa81/_._",
  8653. "lib/xamarinios10/_._",
  8654. "lib/xamarinmac20/_._",
  8655. "lib/xamarintvos10/_._",
  8656. "lib/xamarinwatchos10/_._",
  8657. "ref/MonoAndroid10/_._",
  8658. "ref/MonoTouch10/_._",
  8659. "ref/net45/_._",
  8660. "ref/netcore50/System.Reflection.Primitives.dll",
  8661. "ref/netcore50/System.Reflection.Primitives.xml",
  8662. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8663. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8664. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8665. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8666. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8667. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8668. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8669. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8670. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8671. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8672. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8673. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8674. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8675. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8676. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8677. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8678. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8679. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8680. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8681. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8682. "ref/portable-net45+win8+wp8+wpa81/_._",
  8683. "ref/win8/_._",
  8684. "ref/wp80/_._",
  8685. "ref/wpa81/_._",
  8686. "ref/xamarinios10/_._",
  8687. "ref/xamarinmac20/_._",
  8688. "ref/xamarintvos10/_._",
  8689. "ref/xamarinwatchos10/_._",
  8690. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8691. "system.reflection.primitives.nuspec"
  8692. ]
  8693. },
  8694. "System.Reflection.TypeExtensions/4.3.0": {
  8695. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8696. "type": "package",
  8697. "path": "system.reflection.typeextensions/4.3.0",
  8698. "files": [
  8699. ".nupkg.metadata",
  8700. ".signature.p7s",
  8701. "ThirdPartyNotices.txt",
  8702. "dotnet_library_license.txt",
  8703. "lib/MonoAndroid10/_._",
  8704. "lib/MonoTouch10/_._",
  8705. "lib/net46/System.Reflection.TypeExtensions.dll",
  8706. "lib/net462/System.Reflection.TypeExtensions.dll",
  8707. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8708. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8709. "lib/xamarinios10/_._",
  8710. "lib/xamarinmac20/_._",
  8711. "lib/xamarintvos10/_._",
  8712. "lib/xamarinwatchos10/_._",
  8713. "ref/MonoAndroid10/_._",
  8714. "ref/MonoTouch10/_._",
  8715. "ref/net46/System.Reflection.TypeExtensions.dll",
  8716. "ref/net462/System.Reflection.TypeExtensions.dll",
  8717. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8718. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8719. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8720. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8721. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8722. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8723. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8724. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8725. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8726. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8727. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8728. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8729. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8730. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8731. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8732. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8733. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8734. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8735. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8736. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8737. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8738. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8739. "ref/xamarinios10/_._",
  8740. "ref/xamarinmac20/_._",
  8741. "ref/xamarintvos10/_._",
  8742. "ref/xamarinwatchos10/_._",
  8743. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8744. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8745. "system.reflection.typeextensions.nuspec"
  8746. ]
  8747. },
  8748. "System.Resources.ResourceManager/4.3.0": {
  8749. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8750. "type": "package",
  8751. "path": "system.resources.resourcemanager/4.3.0",
  8752. "files": [
  8753. ".nupkg.metadata",
  8754. ".signature.p7s",
  8755. "ThirdPartyNotices.txt",
  8756. "dotnet_library_license.txt",
  8757. "lib/MonoAndroid10/_._",
  8758. "lib/MonoTouch10/_._",
  8759. "lib/net45/_._",
  8760. "lib/portable-net45+win8+wp8+wpa81/_._",
  8761. "lib/win8/_._",
  8762. "lib/wp80/_._",
  8763. "lib/wpa81/_._",
  8764. "lib/xamarinios10/_._",
  8765. "lib/xamarinmac20/_._",
  8766. "lib/xamarintvos10/_._",
  8767. "lib/xamarinwatchos10/_._",
  8768. "ref/MonoAndroid10/_._",
  8769. "ref/MonoTouch10/_._",
  8770. "ref/net45/_._",
  8771. "ref/netcore50/System.Resources.ResourceManager.dll",
  8772. "ref/netcore50/System.Resources.ResourceManager.xml",
  8773. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8774. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8775. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8776. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8777. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8778. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8779. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8780. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8781. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8782. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8783. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8784. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8785. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8786. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8787. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8788. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8789. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8790. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8791. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8792. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8793. "ref/portable-net45+win8+wp8+wpa81/_._",
  8794. "ref/win8/_._",
  8795. "ref/wp80/_._",
  8796. "ref/wpa81/_._",
  8797. "ref/xamarinios10/_._",
  8798. "ref/xamarinmac20/_._",
  8799. "ref/xamarintvos10/_._",
  8800. "ref/xamarinwatchos10/_._",
  8801. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8802. "system.resources.resourcemanager.nuspec"
  8803. ]
  8804. },
  8805. "System.Runtime/4.3.1": {
  8806. "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
  8807. "type": "package",
  8808. "path": "system.runtime/4.3.1",
  8809. "files": [
  8810. ".nupkg.metadata",
  8811. ".signature.p7s",
  8812. "ThirdPartyNotices.txt",
  8813. "dotnet_library_license.txt",
  8814. "lib/MonoAndroid10/_._",
  8815. "lib/MonoTouch10/_._",
  8816. "lib/net45/_._",
  8817. "lib/net462/System.Runtime.dll",
  8818. "lib/portable-net45+win8+wp80+wpa81/_._",
  8819. "lib/win8/_._",
  8820. "lib/wp80/_._",
  8821. "lib/wpa81/_._",
  8822. "lib/xamarinios10/_._",
  8823. "lib/xamarinmac20/_._",
  8824. "lib/xamarintvos10/_._",
  8825. "lib/xamarinwatchos10/_._",
  8826. "ref/MonoAndroid10/_._",
  8827. "ref/MonoTouch10/_._",
  8828. "ref/net45/_._",
  8829. "ref/net462/System.Runtime.dll",
  8830. "ref/netcore50/System.Runtime.dll",
  8831. "ref/netcore50/System.Runtime.xml",
  8832. "ref/netcore50/de/System.Runtime.xml",
  8833. "ref/netcore50/es/System.Runtime.xml",
  8834. "ref/netcore50/fr/System.Runtime.xml",
  8835. "ref/netcore50/it/System.Runtime.xml",
  8836. "ref/netcore50/ja/System.Runtime.xml",
  8837. "ref/netcore50/ko/System.Runtime.xml",
  8838. "ref/netcore50/ru/System.Runtime.xml",
  8839. "ref/netcore50/zh-hans/System.Runtime.xml",
  8840. "ref/netcore50/zh-hant/System.Runtime.xml",
  8841. "ref/netstandard1.0/System.Runtime.dll",
  8842. "ref/netstandard1.0/System.Runtime.xml",
  8843. "ref/netstandard1.0/de/System.Runtime.xml",
  8844. "ref/netstandard1.0/es/System.Runtime.xml",
  8845. "ref/netstandard1.0/fr/System.Runtime.xml",
  8846. "ref/netstandard1.0/it/System.Runtime.xml",
  8847. "ref/netstandard1.0/ja/System.Runtime.xml",
  8848. "ref/netstandard1.0/ko/System.Runtime.xml",
  8849. "ref/netstandard1.0/ru/System.Runtime.xml",
  8850. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8851. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8852. "ref/netstandard1.2/System.Runtime.dll",
  8853. "ref/netstandard1.2/System.Runtime.xml",
  8854. "ref/netstandard1.2/de/System.Runtime.xml",
  8855. "ref/netstandard1.2/es/System.Runtime.xml",
  8856. "ref/netstandard1.2/fr/System.Runtime.xml",
  8857. "ref/netstandard1.2/it/System.Runtime.xml",
  8858. "ref/netstandard1.2/ja/System.Runtime.xml",
  8859. "ref/netstandard1.2/ko/System.Runtime.xml",
  8860. "ref/netstandard1.2/ru/System.Runtime.xml",
  8861. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8862. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8863. "ref/netstandard1.3/System.Runtime.dll",
  8864. "ref/netstandard1.3/System.Runtime.xml",
  8865. "ref/netstandard1.3/de/System.Runtime.xml",
  8866. "ref/netstandard1.3/es/System.Runtime.xml",
  8867. "ref/netstandard1.3/fr/System.Runtime.xml",
  8868. "ref/netstandard1.3/it/System.Runtime.xml",
  8869. "ref/netstandard1.3/ja/System.Runtime.xml",
  8870. "ref/netstandard1.3/ko/System.Runtime.xml",
  8871. "ref/netstandard1.3/ru/System.Runtime.xml",
  8872. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8873. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8874. "ref/netstandard1.5/System.Runtime.dll",
  8875. "ref/netstandard1.5/System.Runtime.xml",
  8876. "ref/netstandard1.5/de/System.Runtime.xml",
  8877. "ref/netstandard1.5/es/System.Runtime.xml",
  8878. "ref/netstandard1.5/fr/System.Runtime.xml",
  8879. "ref/netstandard1.5/it/System.Runtime.xml",
  8880. "ref/netstandard1.5/ja/System.Runtime.xml",
  8881. "ref/netstandard1.5/ko/System.Runtime.xml",
  8882. "ref/netstandard1.5/ru/System.Runtime.xml",
  8883. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8884. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8885. "ref/portable-net45+win8+wp80+wpa81/_._",
  8886. "ref/win8/_._",
  8887. "ref/wp80/_._",
  8888. "ref/wpa81/_._",
  8889. "ref/xamarinios10/_._",
  8890. "ref/xamarinmac20/_._",
  8891. "ref/xamarintvos10/_._",
  8892. "ref/xamarinwatchos10/_._",
  8893. "system.runtime.4.3.1.nupkg.sha512",
  8894. "system.runtime.nuspec"
  8895. ]
  8896. },
  8897. "System.Runtime.CompilerServices.Unsafe/6.1.0": {
  8898. "sha512": "5o/HZxx6RVqYlhKSq8/zronDkALJZUT2Vz0hx43f0gwe8mwlM0y2nYlqdBwLMzr262Bwvpikeb/yEwkAa5PADg==",
  8899. "type": "package",
  8900. "path": "system.runtime.compilerservices.unsafe/6.1.0",
  8901. "files": [
  8902. ".nupkg.metadata",
  8903. ".signature.p7s",
  8904. "Icon.png",
  8905. "PACKAGE.md",
  8906. "buildTransitive/net461/System.Runtime.CompilerServices.Unsafe.targets",
  8907. "buildTransitive/net462/_._",
  8908. "buildTransitive/net6.0/_._",
  8909. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8910. "lib/net462/System.Runtime.CompilerServices.Unsafe.dll",
  8911. "lib/net462/System.Runtime.CompilerServices.Unsafe.xml",
  8912. "lib/net7.0/_._",
  8913. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8914. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8915. "system.runtime.compilerservices.unsafe.6.1.0.nupkg.sha512",
  8916. "system.runtime.compilerservices.unsafe.nuspec"
  8917. ]
  8918. },
  8919. "System.Runtime.Extensions/4.3.0": {
  8920. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8921. "type": "package",
  8922. "path": "system.runtime.extensions/4.3.0",
  8923. "files": [
  8924. ".nupkg.metadata",
  8925. ".signature.p7s",
  8926. "ThirdPartyNotices.txt",
  8927. "dotnet_library_license.txt",
  8928. "lib/MonoAndroid10/_._",
  8929. "lib/MonoTouch10/_._",
  8930. "lib/net45/_._",
  8931. "lib/net462/System.Runtime.Extensions.dll",
  8932. "lib/portable-net45+win8+wp8+wpa81/_._",
  8933. "lib/win8/_._",
  8934. "lib/wp80/_._",
  8935. "lib/wpa81/_._",
  8936. "lib/xamarinios10/_._",
  8937. "lib/xamarinmac20/_._",
  8938. "lib/xamarintvos10/_._",
  8939. "lib/xamarinwatchos10/_._",
  8940. "ref/MonoAndroid10/_._",
  8941. "ref/MonoTouch10/_._",
  8942. "ref/net45/_._",
  8943. "ref/net462/System.Runtime.Extensions.dll",
  8944. "ref/netcore50/System.Runtime.Extensions.dll",
  8945. "ref/netcore50/System.Runtime.Extensions.xml",
  8946. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8947. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8948. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8949. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8950. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8951. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8952. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8953. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8954. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8955. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8956. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8957. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8958. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8959. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8960. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8961. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8962. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8963. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8964. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8965. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8966. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8967. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8968. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8969. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8970. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8971. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8972. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8973. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8974. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8975. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8976. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8977. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8978. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8979. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8980. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8981. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8982. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8983. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8984. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8985. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8986. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8987. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8988. "ref/portable-net45+win8+wp8+wpa81/_._",
  8989. "ref/win8/_._",
  8990. "ref/wp80/_._",
  8991. "ref/wpa81/_._",
  8992. "ref/xamarinios10/_._",
  8993. "ref/xamarinmac20/_._",
  8994. "ref/xamarintvos10/_._",
  8995. "ref/xamarinwatchos10/_._",
  8996. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8997. "system.runtime.extensions.nuspec"
  8998. ]
  8999. },
  9000. "System.Runtime.Handles/4.3.0": {
  9001. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  9002. "type": "package",
  9003. "path": "system.runtime.handles/4.3.0",
  9004. "files": [
  9005. ".nupkg.metadata",
  9006. ".signature.p7s",
  9007. "ThirdPartyNotices.txt",
  9008. "dotnet_library_license.txt",
  9009. "lib/MonoAndroid10/_._",
  9010. "lib/MonoTouch10/_._",
  9011. "lib/net46/_._",
  9012. "lib/xamarinios10/_._",
  9013. "lib/xamarinmac20/_._",
  9014. "lib/xamarintvos10/_._",
  9015. "lib/xamarinwatchos10/_._",
  9016. "ref/MonoAndroid10/_._",
  9017. "ref/MonoTouch10/_._",
  9018. "ref/net46/_._",
  9019. "ref/netstandard1.3/System.Runtime.Handles.dll",
  9020. "ref/netstandard1.3/System.Runtime.Handles.xml",
  9021. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  9022. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  9023. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  9024. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  9025. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  9026. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  9027. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  9028. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  9029. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  9030. "ref/xamarinios10/_._",
  9031. "ref/xamarinmac20/_._",
  9032. "ref/xamarintvos10/_._",
  9033. "ref/xamarinwatchos10/_._",
  9034. "system.runtime.handles.4.3.0.nupkg.sha512",
  9035. "system.runtime.handles.nuspec"
  9036. ]
  9037. },
  9038. "System.Runtime.InteropServices/4.3.0": {
  9039. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  9040. "type": "package",
  9041. "path": "system.runtime.interopservices/4.3.0",
  9042. "files": [
  9043. ".nupkg.metadata",
  9044. ".signature.p7s",
  9045. "ThirdPartyNotices.txt",
  9046. "dotnet_library_license.txt",
  9047. "lib/MonoAndroid10/_._",
  9048. "lib/MonoTouch10/_._",
  9049. "lib/net45/_._",
  9050. "lib/net462/System.Runtime.InteropServices.dll",
  9051. "lib/net463/System.Runtime.InteropServices.dll",
  9052. "lib/portable-net45+win8+wpa81/_._",
  9053. "lib/win8/_._",
  9054. "lib/wpa81/_._",
  9055. "lib/xamarinios10/_._",
  9056. "lib/xamarinmac20/_._",
  9057. "lib/xamarintvos10/_._",
  9058. "lib/xamarinwatchos10/_._",
  9059. "ref/MonoAndroid10/_._",
  9060. "ref/MonoTouch10/_._",
  9061. "ref/net45/_._",
  9062. "ref/net462/System.Runtime.InteropServices.dll",
  9063. "ref/net463/System.Runtime.InteropServices.dll",
  9064. "ref/netcore50/System.Runtime.InteropServices.dll",
  9065. "ref/netcore50/System.Runtime.InteropServices.xml",
  9066. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  9067. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  9068. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  9069. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  9070. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  9071. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  9072. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  9073. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  9074. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  9075. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  9076. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  9077. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  9078. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  9079. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  9080. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  9081. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  9082. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  9083. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  9084. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  9085. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  9086. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  9087. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  9088. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  9089. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  9090. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  9091. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  9092. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  9093. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  9094. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  9095. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  9096. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  9097. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  9098. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  9099. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  9100. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  9101. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  9102. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  9103. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  9104. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  9105. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  9106. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  9107. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  9108. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  9109. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  9110. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  9111. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  9112. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  9113. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  9114. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  9115. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  9116. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  9117. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  9118. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  9119. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  9120. "ref/portable-net45+win8+wpa81/_._",
  9121. "ref/win8/_._",
  9122. "ref/wpa81/_._",
  9123. "ref/xamarinios10/_._",
  9124. "ref/xamarinmac20/_._",
  9125. "ref/xamarintvos10/_._",
  9126. "ref/xamarinwatchos10/_._",
  9127. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  9128. "system.runtime.interopservices.nuspec"
  9129. ]
  9130. },
  9131. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  9132. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  9133. "type": "package",
  9134. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  9135. "files": [
  9136. ".nupkg.metadata",
  9137. ".signature.p7s",
  9138. "ThirdPartyNotices.txt",
  9139. "dotnet_library_license.txt",
  9140. "lib/MonoAndroid10/_._",
  9141. "lib/MonoTouch10/_._",
  9142. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9143. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9144. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  9145. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  9146. "lib/xamarinios10/_._",
  9147. "lib/xamarinmac20/_._",
  9148. "lib/xamarintvos10/_._",
  9149. "lib/xamarinwatchos10/_._",
  9150. "ref/MonoAndroid10/_._",
  9151. "ref/MonoTouch10/_._",
  9152. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9153. "ref/xamarinios10/_._",
  9154. "ref/xamarinmac20/_._",
  9155. "ref/xamarintvos10/_._",
  9156. "ref/xamarinwatchos10/_._",
  9157. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9158. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9159. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9160. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9161. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9162. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  9163. "system.runtime.interopservices.runtimeinformation.nuspec"
  9164. ]
  9165. },
  9166. "System.Runtime.Numerics/4.3.0": {
  9167. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  9168. "type": "package",
  9169. "path": "system.runtime.numerics/4.3.0",
  9170. "files": [
  9171. ".nupkg.metadata",
  9172. ".signature.p7s",
  9173. "ThirdPartyNotices.txt",
  9174. "dotnet_library_license.txt",
  9175. "lib/MonoAndroid10/_._",
  9176. "lib/MonoTouch10/_._",
  9177. "lib/net45/_._",
  9178. "lib/netcore50/System.Runtime.Numerics.dll",
  9179. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  9180. "lib/portable-net45+win8+wpa81/_._",
  9181. "lib/win8/_._",
  9182. "lib/wpa81/_._",
  9183. "lib/xamarinios10/_._",
  9184. "lib/xamarinmac20/_._",
  9185. "lib/xamarintvos10/_._",
  9186. "lib/xamarinwatchos10/_._",
  9187. "ref/MonoAndroid10/_._",
  9188. "ref/MonoTouch10/_._",
  9189. "ref/net45/_._",
  9190. "ref/netcore50/System.Runtime.Numerics.dll",
  9191. "ref/netcore50/System.Runtime.Numerics.xml",
  9192. "ref/netcore50/de/System.Runtime.Numerics.xml",
  9193. "ref/netcore50/es/System.Runtime.Numerics.xml",
  9194. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  9195. "ref/netcore50/it/System.Runtime.Numerics.xml",
  9196. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  9197. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  9198. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  9199. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  9200. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  9201. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  9202. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  9203. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  9204. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  9205. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  9206. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  9207. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  9208. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  9209. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  9210. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  9211. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  9212. "ref/portable-net45+win8+wpa81/_._",
  9213. "ref/win8/_._",
  9214. "ref/wpa81/_._",
  9215. "ref/xamarinios10/_._",
  9216. "ref/xamarinmac20/_._",
  9217. "ref/xamarintvos10/_._",
  9218. "ref/xamarinwatchos10/_._",
  9219. "system.runtime.numerics.4.3.0.nupkg.sha512",
  9220. "system.runtime.numerics.nuspec"
  9221. ]
  9222. },
  9223. "System.Security.AccessControl/6.0.0": {
  9224. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  9225. "type": "package",
  9226. "path": "system.security.accesscontrol/6.0.0",
  9227. "files": [
  9228. ".nupkg.metadata",
  9229. ".signature.p7s",
  9230. "Icon.png",
  9231. "LICENSE.TXT",
  9232. "THIRD-PARTY-NOTICES.TXT",
  9233. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  9234. "buildTransitive/netcoreapp3.1/_._",
  9235. "lib/net461/System.Security.AccessControl.dll",
  9236. "lib/net461/System.Security.AccessControl.xml",
  9237. "lib/net6.0/System.Security.AccessControl.dll",
  9238. "lib/net6.0/System.Security.AccessControl.xml",
  9239. "lib/netstandard2.0/System.Security.AccessControl.dll",
  9240. "lib/netstandard2.0/System.Security.AccessControl.xml",
  9241. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  9242. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  9243. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  9244. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  9245. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  9246. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  9247. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  9248. "system.security.accesscontrol.nuspec",
  9249. "useSharedDesignerContext.txt"
  9250. ]
  9251. },
  9252. "System.Security.Claims/4.3.0": {
  9253. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  9254. "type": "package",
  9255. "path": "system.security.claims/4.3.0",
  9256. "files": [
  9257. ".nupkg.metadata",
  9258. ".signature.p7s",
  9259. "ThirdPartyNotices.txt",
  9260. "dotnet_library_license.txt",
  9261. "lib/MonoAndroid10/_._",
  9262. "lib/MonoTouch10/_._",
  9263. "lib/net46/System.Security.Claims.dll",
  9264. "lib/netstandard1.3/System.Security.Claims.dll",
  9265. "lib/xamarinios10/_._",
  9266. "lib/xamarinmac20/_._",
  9267. "lib/xamarintvos10/_._",
  9268. "lib/xamarinwatchos10/_._",
  9269. "ref/MonoAndroid10/_._",
  9270. "ref/MonoTouch10/_._",
  9271. "ref/net46/System.Security.Claims.dll",
  9272. "ref/netstandard1.3/System.Security.Claims.dll",
  9273. "ref/netstandard1.3/System.Security.Claims.xml",
  9274. "ref/netstandard1.3/de/System.Security.Claims.xml",
  9275. "ref/netstandard1.3/es/System.Security.Claims.xml",
  9276. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  9277. "ref/netstandard1.3/it/System.Security.Claims.xml",
  9278. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  9279. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  9280. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  9281. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  9282. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  9283. "ref/xamarinios10/_._",
  9284. "ref/xamarinmac20/_._",
  9285. "ref/xamarintvos10/_._",
  9286. "ref/xamarinwatchos10/_._",
  9287. "system.security.claims.4.3.0.nupkg.sha512",
  9288. "system.security.claims.nuspec"
  9289. ]
  9290. },
  9291. "System.Security.Cryptography.Algorithms/4.3.1": {
  9292. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  9293. "type": "package",
  9294. "path": "system.security.cryptography.algorithms/4.3.1",
  9295. "files": [
  9296. ".nupkg.metadata",
  9297. ".signature.p7s",
  9298. "ThirdPartyNotices.txt",
  9299. "dotnet_library_license.txt",
  9300. "lib/MonoAndroid10/_._",
  9301. "lib/MonoTouch10/_._",
  9302. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9303. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9304. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9305. "lib/xamarinios10/_._",
  9306. "lib/xamarinmac20/_._",
  9307. "lib/xamarintvos10/_._",
  9308. "lib/xamarinwatchos10/_._",
  9309. "ref/MonoAndroid10/_._",
  9310. "ref/MonoTouch10/_._",
  9311. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9312. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9313. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9314. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9315. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9316. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9317. "ref/xamarinios10/_._",
  9318. "ref/xamarinmac20/_._",
  9319. "ref/xamarintvos10/_._",
  9320. "ref/xamarinwatchos10/_._",
  9321. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9322. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9323. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9324. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9325. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9326. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9327. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9328. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  9329. "system.security.cryptography.algorithms.nuspec"
  9330. ]
  9331. },
  9332. "System.Security.Cryptography.Cng/5.0.0": {
  9333. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  9334. "type": "package",
  9335. "path": "system.security.cryptography.cng/5.0.0",
  9336. "files": [
  9337. ".nupkg.metadata",
  9338. ".signature.p7s",
  9339. "Icon.png",
  9340. "LICENSE.TXT",
  9341. "THIRD-PARTY-NOTICES.TXT",
  9342. "lib/MonoAndroid10/_._",
  9343. "lib/MonoTouch10/_._",
  9344. "lib/net46/System.Security.Cryptography.Cng.dll",
  9345. "lib/net461/System.Security.Cryptography.Cng.dll",
  9346. "lib/net461/System.Security.Cryptography.Cng.xml",
  9347. "lib/net462/System.Security.Cryptography.Cng.dll",
  9348. "lib/net462/System.Security.Cryptography.Cng.xml",
  9349. "lib/net47/System.Security.Cryptography.Cng.dll",
  9350. "lib/net47/System.Security.Cryptography.Cng.xml",
  9351. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9352. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9353. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9354. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9355. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9356. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9357. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9358. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  9359. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  9360. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  9361. "lib/uap10.0.16299/_._",
  9362. "lib/xamarinios10/_._",
  9363. "lib/xamarinmac20/_._",
  9364. "lib/xamarintvos10/_._",
  9365. "lib/xamarinwatchos10/_._",
  9366. "ref/MonoAndroid10/_._",
  9367. "ref/MonoTouch10/_._",
  9368. "ref/net46/System.Security.Cryptography.Cng.dll",
  9369. "ref/net461/System.Security.Cryptography.Cng.dll",
  9370. "ref/net461/System.Security.Cryptography.Cng.xml",
  9371. "ref/net462/System.Security.Cryptography.Cng.dll",
  9372. "ref/net462/System.Security.Cryptography.Cng.xml",
  9373. "ref/net47/System.Security.Cryptography.Cng.dll",
  9374. "ref/net47/System.Security.Cryptography.Cng.xml",
  9375. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9376. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  9377. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9378. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  9379. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9380. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9381. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9382. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9383. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9384. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9385. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  9386. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  9387. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  9388. "ref/uap10.0.16299/_._",
  9389. "ref/xamarinios10/_._",
  9390. "ref/xamarinmac20/_._",
  9391. "ref/xamarintvos10/_._",
  9392. "ref/xamarinwatchos10/_._",
  9393. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9394. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9395. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  9396. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  9397. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  9398. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  9399. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  9400. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9401. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9402. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  9403. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  9404. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9405. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9406. "runtimes/win/lib/uap10.0.16299/_._",
  9407. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  9408. "system.security.cryptography.cng.nuspec",
  9409. "useSharedDesignerContext.txt",
  9410. "version.txt"
  9411. ]
  9412. },
  9413. "System.Security.Cryptography.Csp/4.3.0": {
  9414. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9415. "type": "package",
  9416. "path": "system.security.cryptography.csp/4.3.0",
  9417. "files": [
  9418. ".nupkg.metadata",
  9419. ".signature.p7s",
  9420. "ThirdPartyNotices.txt",
  9421. "dotnet_library_license.txt",
  9422. "lib/MonoAndroid10/_._",
  9423. "lib/MonoTouch10/_._",
  9424. "lib/net46/System.Security.Cryptography.Csp.dll",
  9425. "lib/xamarinios10/_._",
  9426. "lib/xamarinmac20/_._",
  9427. "lib/xamarintvos10/_._",
  9428. "lib/xamarinwatchos10/_._",
  9429. "ref/MonoAndroid10/_._",
  9430. "ref/MonoTouch10/_._",
  9431. "ref/net46/System.Security.Cryptography.Csp.dll",
  9432. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9433. "ref/xamarinios10/_._",
  9434. "ref/xamarinmac20/_._",
  9435. "ref/xamarintvos10/_._",
  9436. "ref/xamarinwatchos10/_._",
  9437. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9438. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9439. "runtimes/win/lib/netcore50/_._",
  9440. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9441. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9442. "system.security.cryptography.csp.nuspec"
  9443. ]
  9444. },
  9445. "System.Security.Cryptography.Encoding/4.3.0": {
  9446. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9447. "type": "package",
  9448. "path": "system.security.cryptography.encoding/4.3.0",
  9449. "files": [
  9450. ".nupkg.metadata",
  9451. ".signature.p7s",
  9452. "ThirdPartyNotices.txt",
  9453. "dotnet_library_license.txt",
  9454. "lib/MonoAndroid10/_._",
  9455. "lib/MonoTouch10/_._",
  9456. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9457. "lib/xamarinios10/_._",
  9458. "lib/xamarinmac20/_._",
  9459. "lib/xamarintvos10/_._",
  9460. "lib/xamarinwatchos10/_._",
  9461. "ref/MonoAndroid10/_._",
  9462. "ref/MonoTouch10/_._",
  9463. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9464. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9465. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9466. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9467. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9468. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9469. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9470. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9471. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9472. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9473. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9474. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9475. "ref/xamarinios10/_._",
  9476. "ref/xamarinmac20/_._",
  9477. "ref/xamarintvos10/_._",
  9478. "ref/xamarinwatchos10/_._",
  9479. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9480. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9481. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9482. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9483. "system.security.cryptography.encoding.nuspec"
  9484. ]
  9485. },
  9486. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9487. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9488. "type": "package",
  9489. "path": "system.security.cryptography.openssl/4.3.0",
  9490. "files": [
  9491. ".nupkg.metadata",
  9492. ".signature.p7s",
  9493. "ThirdPartyNotices.txt",
  9494. "dotnet_library_license.txt",
  9495. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9496. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9497. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9498. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9499. "system.security.cryptography.openssl.nuspec"
  9500. ]
  9501. },
  9502. "System.Security.Cryptography.Pkcs/6.0.1": {
  9503. "sha512": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
  9504. "type": "package",
  9505. "path": "system.security.cryptography.pkcs/6.0.1",
  9506. "files": [
  9507. ".nupkg.metadata",
  9508. ".signature.p7s",
  9509. "Icon.png",
  9510. "LICENSE.TXT",
  9511. "THIRD-PARTY-NOTICES.TXT",
  9512. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  9513. "buildTransitive/netcoreapp3.1/_._",
  9514. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  9515. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  9516. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9517. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9518. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9519. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9520. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9521. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9522. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9523. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9524. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  9525. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  9526. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9527. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9528. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9529. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9530. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9531. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9532. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9533. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9534. "system.security.cryptography.pkcs.6.0.1.nupkg.sha512",
  9535. "system.security.cryptography.pkcs.nuspec",
  9536. "useSharedDesignerContext.txt"
  9537. ]
  9538. },
  9539. "System.Security.Cryptography.Primitives/4.3.0": {
  9540. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9541. "type": "package",
  9542. "path": "system.security.cryptography.primitives/4.3.0",
  9543. "files": [
  9544. ".nupkg.metadata",
  9545. ".signature.p7s",
  9546. "ThirdPartyNotices.txt",
  9547. "dotnet_library_license.txt",
  9548. "lib/MonoAndroid10/_._",
  9549. "lib/MonoTouch10/_._",
  9550. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9551. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9552. "lib/xamarinios10/_._",
  9553. "lib/xamarinmac20/_._",
  9554. "lib/xamarintvos10/_._",
  9555. "lib/xamarinwatchos10/_._",
  9556. "ref/MonoAndroid10/_._",
  9557. "ref/MonoTouch10/_._",
  9558. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9559. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9560. "ref/xamarinios10/_._",
  9561. "ref/xamarinmac20/_._",
  9562. "ref/xamarintvos10/_._",
  9563. "ref/xamarinwatchos10/_._",
  9564. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9565. "system.security.cryptography.primitives.nuspec"
  9566. ]
  9567. },
  9568. "System.Security.Cryptography.ProtectedData/6.0.0": {
  9569. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  9570. "type": "package",
  9571. "path": "system.security.cryptography.protecteddata/6.0.0",
  9572. "files": [
  9573. ".nupkg.metadata",
  9574. ".signature.p7s",
  9575. "Icon.png",
  9576. "LICENSE.TXT",
  9577. "THIRD-PARTY-NOTICES.TXT",
  9578. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  9579. "buildTransitive/netcoreapp3.1/_._",
  9580. "lib/MonoAndroid10/_._",
  9581. "lib/MonoTouch10/_._",
  9582. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9583. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9584. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9585. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9586. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9587. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9588. "lib/xamarinios10/_._",
  9589. "lib/xamarinmac20/_._",
  9590. "lib/xamarintvos10/_._",
  9591. "lib/xamarinwatchos10/_._",
  9592. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9593. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9594. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9595. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9596. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9597. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9598. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  9599. "system.security.cryptography.protecteddata.nuspec",
  9600. "useSharedDesignerContext.txt"
  9601. ]
  9602. },
  9603. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9604. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9605. "type": "package",
  9606. "path": "system.security.cryptography.x509certificates/4.3.0",
  9607. "files": [
  9608. ".nupkg.metadata",
  9609. ".signature.p7s",
  9610. "ThirdPartyNotices.txt",
  9611. "dotnet_library_license.txt",
  9612. "lib/MonoAndroid10/_._",
  9613. "lib/MonoTouch10/_._",
  9614. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9615. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9616. "lib/xamarinios10/_._",
  9617. "lib/xamarinmac20/_._",
  9618. "lib/xamarintvos10/_._",
  9619. "lib/xamarinwatchos10/_._",
  9620. "ref/MonoAndroid10/_._",
  9621. "ref/MonoTouch10/_._",
  9622. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9623. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9624. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9625. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9626. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9627. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9628. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9629. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9630. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9631. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9632. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9633. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9634. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9635. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9636. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9637. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9638. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9639. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9640. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9641. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9642. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9643. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9644. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9645. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9646. "ref/xamarinios10/_._",
  9647. "ref/xamarinmac20/_._",
  9648. "ref/xamarintvos10/_._",
  9649. "ref/xamarinwatchos10/_._",
  9650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9651. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9652. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9653. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9654. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9655. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9656. "system.security.cryptography.x509certificates.nuspec"
  9657. ]
  9658. },
  9659. "System.Security.Cryptography.Xml/6.0.1": {
  9660. "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==",
  9661. "type": "package",
  9662. "path": "system.security.cryptography.xml/6.0.1",
  9663. "files": [
  9664. ".nupkg.metadata",
  9665. ".signature.p7s",
  9666. "Icon.png",
  9667. "LICENSE.TXT",
  9668. "THIRD-PARTY-NOTICES.TXT",
  9669. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  9670. "buildTransitive/netcoreapp3.1/_._",
  9671. "lib/net461/System.Security.Cryptography.Xml.dll",
  9672. "lib/net461/System.Security.Cryptography.Xml.xml",
  9673. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  9674. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  9675. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  9676. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  9677. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  9678. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  9679. "system.security.cryptography.xml.6.0.1.nupkg.sha512",
  9680. "system.security.cryptography.xml.nuspec",
  9681. "useSharedDesignerContext.txt"
  9682. ]
  9683. },
  9684. "System.Security.Permissions/6.0.0": {
  9685. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  9686. "type": "package",
  9687. "path": "system.security.permissions/6.0.0",
  9688. "files": [
  9689. ".nupkg.metadata",
  9690. ".signature.p7s",
  9691. "Icon.png",
  9692. "LICENSE.TXT",
  9693. "THIRD-PARTY-NOTICES.TXT",
  9694. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  9695. "buildTransitive/netcoreapp3.1/_._",
  9696. "lib/net461/System.Security.Permissions.dll",
  9697. "lib/net461/System.Security.Permissions.xml",
  9698. "lib/net5.0/System.Security.Permissions.dll",
  9699. "lib/net5.0/System.Security.Permissions.xml",
  9700. "lib/net6.0/System.Security.Permissions.dll",
  9701. "lib/net6.0/System.Security.Permissions.xml",
  9702. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  9703. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  9704. "lib/netstandard2.0/System.Security.Permissions.dll",
  9705. "lib/netstandard2.0/System.Security.Permissions.xml",
  9706. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  9707. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  9708. "system.security.permissions.6.0.0.nupkg.sha512",
  9709. "system.security.permissions.nuspec",
  9710. "useSharedDesignerContext.txt"
  9711. ]
  9712. },
  9713. "System.Security.Principal/4.3.0": {
  9714. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9715. "type": "package",
  9716. "path": "system.security.principal/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/netcore50/System.Security.Principal.dll",
  9726. "lib/netstandard1.0/System.Security.Principal.dll",
  9727. "lib/portable-net45+win8+wp8+wpa81/_._",
  9728. "lib/win8/_._",
  9729. "lib/wp80/_._",
  9730. "lib/wpa81/_._",
  9731. "lib/xamarinios10/_._",
  9732. "lib/xamarinmac20/_._",
  9733. "lib/xamarintvos10/_._",
  9734. "lib/xamarinwatchos10/_._",
  9735. "ref/MonoAndroid10/_._",
  9736. "ref/MonoTouch10/_._",
  9737. "ref/net45/_._",
  9738. "ref/netcore50/System.Security.Principal.dll",
  9739. "ref/netcore50/System.Security.Principal.xml",
  9740. "ref/netcore50/de/System.Security.Principal.xml",
  9741. "ref/netcore50/es/System.Security.Principal.xml",
  9742. "ref/netcore50/fr/System.Security.Principal.xml",
  9743. "ref/netcore50/it/System.Security.Principal.xml",
  9744. "ref/netcore50/ja/System.Security.Principal.xml",
  9745. "ref/netcore50/ko/System.Security.Principal.xml",
  9746. "ref/netcore50/ru/System.Security.Principal.xml",
  9747. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9748. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9749. "ref/netstandard1.0/System.Security.Principal.dll",
  9750. "ref/netstandard1.0/System.Security.Principal.xml",
  9751. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9752. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9753. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9754. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9755. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9756. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9757. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9758. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9759. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9760. "ref/portable-net45+win8+wp8+wpa81/_._",
  9761. "ref/win8/_._",
  9762. "ref/wp80/_._",
  9763. "ref/wpa81/_._",
  9764. "ref/xamarinios10/_._",
  9765. "ref/xamarinmac20/_._",
  9766. "ref/xamarintvos10/_._",
  9767. "ref/xamarinwatchos10/_._",
  9768. "system.security.principal.4.3.0.nupkg.sha512",
  9769. "system.security.principal.nuspec"
  9770. ]
  9771. },
  9772. "System.Security.Principal.Windows/5.0.0": {
  9773. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  9774. "type": "package",
  9775. "path": "system.security.principal.windows/5.0.0",
  9776. "files": [
  9777. ".nupkg.metadata",
  9778. ".signature.p7s",
  9779. "Icon.png",
  9780. "LICENSE.TXT",
  9781. "THIRD-PARTY-NOTICES.TXT",
  9782. "lib/net46/System.Security.Principal.Windows.dll",
  9783. "lib/net461/System.Security.Principal.Windows.dll",
  9784. "lib/net461/System.Security.Principal.Windows.xml",
  9785. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9786. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9787. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9788. "lib/uap10.0.16299/_._",
  9789. "ref/net46/System.Security.Principal.Windows.dll",
  9790. "ref/net461/System.Security.Principal.Windows.dll",
  9791. "ref/net461/System.Security.Principal.Windows.xml",
  9792. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9793. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9794. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9795. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9796. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9797. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9798. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9799. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9800. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9801. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9802. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9803. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9804. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9805. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9806. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9807. "ref/uap10.0.16299/_._",
  9808. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9809. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9810. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9811. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9812. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9813. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9814. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9815. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9816. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9817. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9818. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9819. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9820. "runtimes/win/lib/uap10.0.16299/_._",
  9821. "system.security.principal.windows.5.0.0.nupkg.sha512",
  9822. "system.security.principal.windows.nuspec",
  9823. "useSharedDesignerContext.txt",
  9824. "version.txt"
  9825. ]
  9826. },
  9827. "System.Text.Encoding/4.3.0": {
  9828. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9829. "type": "package",
  9830. "path": "system.text.encoding/4.3.0",
  9831. "files": [
  9832. ".nupkg.metadata",
  9833. ".signature.p7s",
  9834. "ThirdPartyNotices.txt",
  9835. "dotnet_library_license.txt",
  9836. "lib/MonoAndroid10/_._",
  9837. "lib/MonoTouch10/_._",
  9838. "lib/net45/_._",
  9839. "lib/portable-net45+win8+wp8+wpa81/_._",
  9840. "lib/win8/_._",
  9841. "lib/wp80/_._",
  9842. "lib/wpa81/_._",
  9843. "lib/xamarinios10/_._",
  9844. "lib/xamarinmac20/_._",
  9845. "lib/xamarintvos10/_._",
  9846. "lib/xamarinwatchos10/_._",
  9847. "ref/MonoAndroid10/_._",
  9848. "ref/MonoTouch10/_._",
  9849. "ref/net45/_._",
  9850. "ref/netcore50/System.Text.Encoding.dll",
  9851. "ref/netcore50/System.Text.Encoding.xml",
  9852. "ref/netcore50/de/System.Text.Encoding.xml",
  9853. "ref/netcore50/es/System.Text.Encoding.xml",
  9854. "ref/netcore50/fr/System.Text.Encoding.xml",
  9855. "ref/netcore50/it/System.Text.Encoding.xml",
  9856. "ref/netcore50/ja/System.Text.Encoding.xml",
  9857. "ref/netcore50/ko/System.Text.Encoding.xml",
  9858. "ref/netcore50/ru/System.Text.Encoding.xml",
  9859. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9860. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9861. "ref/netstandard1.0/System.Text.Encoding.dll",
  9862. "ref/netstandard1.0/System.Text.Encoding.xml",
  9863. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9864. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9865. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9866. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9867. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9868. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9869. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9870. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9871. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9872. "ref/netstandard1.3/System.Text.Encoding.dll",
  9873. "ref/netstandard1.3/System.Text.Encoding.xml",
  9874. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9875. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9876. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9877. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9878. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9879. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9880. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9881. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9882. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9883. "ref/portable-net45+win8+wp8+wpa81/_._",
  9884. "ref/win8/_._",
  9885. "ref/wp80/_._",
  9886. "ref/wpa81/_._",
  9887. "ref/xamarinios10/_._",
  9888. "ref/xamarinmac20/_._",
  9889. "ref/xamarintvos10/_._",
  9890. "ref/xamarinwatchos10/_._",
  9891. "system.text.encoding.4.3.0.nupkg.sha512",
  9892. "system.text.encoding.nuspec"
  9893. ]
  9894. },
  9895. "System.Text.Encoding.CodePages/5.0.0": {
  9896. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9897. "type": "package",
  9898. "path": "system.text.encoding.codepages/5.0.0",
  9899. "files": [
  9900. ".nupkg.metadata",
  9901. ".signature.p7s",
  9902. "Icon.png",
  9903. "LICENSE.TXT",
  9904. "THIRD-PARTY-NOTICES.TXT",
  9905. "lib/MonoAndroid10/_._",
  9906. "lib/MonoTouch10/_._",
  9907. "lib/net46/System.Text.Encoding.CodePages.dll",
  9908. "lib/net461/System.Text.Encoding.CodePages.dll",
  9909. "lib/net461/System.Text.Encoding.CodePages.xml",
  9910. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9911. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9912. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9913. "lib/xamarinios10/_._",
  9914. "lib/xamarinmac20/_._",
  9915. "lib/xamarintvos10/_._",
  9916. "lib/xamarinwatchos10/_._",
  9917. "ref/MonoAndroid10/_._",
  9918. "ref/MonoTouch10/_._",
  9919. "ref/xamarinios10/_._",
  9920. "ref/xamarinmac20/_._",
  9921. "ref/xamarintvos10/_._",
  9922. "ref/xamarinwatchos10/_._",
  9923. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9924. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9925. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9926. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9927. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9928. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9929. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9930. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9931. "system.text.encoding.codepages.nuspec",
  9932. "useSharedDesignerContext.txt",
  9933. "version.txt"
  9934. ]
  9935. },
  9936. "System.Text.Encoding.Extensions/4.3.0": {
  9937. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9938. "type": "package",
  9939. "path": "system.text.encoding.extensions/4.3.0",
  9940. "files": [
  9941. ".nupkg.metadata",
  9942. ".signature.p7s",
  9943. "ThirdPartyNotices.txt",
  9944. "dotnet_library_license.txt",
  9945. "lib/MonoAndroid10/_._",
  9946. "lib/MonoTouch10/_._",
  9947. "lib/net45/_._",
  9948. "lib/portable-net45+win8+wp8+wpa81/_._",
  9949. "lib/win8/_._",
  9950. "lib/wp80/_._",
  9951. "lib/wpa81/_._",
  9952. "lib/xamarinios10/_._",
  9953. "lib/xamarinmac20/_._",
  9954. "lib/xamarintvos10/_._",
  9955. "lib/xamarinwatchos10/_._",
  9956. "ref/MonoAndroid10/_._",
  9957. "ref/MonoTouch10/_._",
  9958. "ref/net45/_._",
  9959. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9960. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9961. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9962. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9963. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9964. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9965. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9966. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9967. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9968. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9969. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9970. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9971. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9972. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9973. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9974. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9975. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9976. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9977. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9978. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9979. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9980. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9981. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9982. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9983. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9984. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9985. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9986. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9987. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9988. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9989. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9990. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9991. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9992. "ref/portable-net45+win8+wp8+wpa81/_._",
  9993. "ref/win8/_._",
  9994. "ref/wp80/_._",
  9995. "ref/wpa81/_._",
  9996. "ref/xamarinios10/_._",
  9997. "ref/xamarinmac20/_._",
  9998. "ref/xamarintvos10/_._",
  9999. "ref/xamarinwatchos10/_._",
  10000. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  10001. "system.text.encoding.extensions.nuspec"
  10002. ]
  10003. },
  10004. "System.Text.Encodings.Web/9.0.1": {
  10005. "sha512": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg==",
  10006. "type": "package",
  10007. "path": "system.text.encodings.web/9.0.1",
  10008. "files": [
  10009. ".nupkg.metadata",
  10010. ".signature.p7s",
  10011. "Icon.png",
  10012. "LICENSE.TXT",
  10013. "PACKAGE.md",
  10014. "THIRD-PARTY-NOTICES.TXT",
  10015. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  10016. "buildTransitive/net462/_._",
  10017. "buildTransitive/net8.0/_._",
  10018. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  10019. "lib/net462/System.Text.Encodings.Web.dll",
  10020. "lib/net462/System.Text.Encodings.Web.xml",
  10021. "lib/net8.0/System.Text.Encodings.Web.dll",
  10022. "lib/net8.0/System.Text.Encodings.Web.xml",
  10023. "lib/net9.0/System.Text.Encodings.Web.dll",
  10024. "lib/net9.0/System.Text.Encodings.Web.xml",
  10025. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  10026. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  10027. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  10028. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  10029. "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll",
  10030. "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml",
  10031. "system.text.encodings.web.9.0.1.nupkg.sha512",
  10032. "system.text.encodings.web.nuspec",
  10033. "useSharedDesignerContext.txt"
  10034. ]
  10035. },
  10036. "System.Text.Json/9.0.1": {
  10037. "sha512": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
  10038. "type": "package",
  10039. "path": "system.text.json/9.0.1",
  10040. "files": [
  10041. ".nupkg.metadata",
  10042. ".signature.p7s",
  10043. "Icon.png",
  10044. "LICENSE.TXT",
  10045. "PACKAGE.md",
  10046. "THIRD-PARTY-NOTICES.TXT",
  10047. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  10048. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  10049. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  10050. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  10051. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  10052. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  10053. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  10054. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  10055. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  10056. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  10057. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  10058. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  10059. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  10060. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  10061. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  10062. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  10063. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  10064. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  10065. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  10066. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  10067. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  10068. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  10069. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  10070. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  10071. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  10072. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  10073. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  10074. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  10075. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  10076. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  10077. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  10078. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  10079. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  10080. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  10081. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  10082. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  10083. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  10084. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  10085. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  10086. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  10087. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  10088. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  10089. "buildTransitive/net461/System.Text.Json.targets",
  10090. "buildTransitive/net462/System.Text.Json.targets",
  10091. "buildTransitive/net8.0/System.Text.Json.targets",
  10092. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  10093. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  10094. "lib/net462/System.Text.Json.dll",
  10095. "lib/net462/System.Text.Json.xml",
  10096. "lib/net8.0/System.Text.Json.dll",
  10097. "lib/net8.0/System.Text.Json.xml",
  10098. "lib/net9.0/System.Text.Json.dll",
  10099. "lib/net9.0/System.Text.Json.xml",
  10100. "lib/netstandard2.0/System.Text.Json.dll",
  10101. "lib/netstandard2.0/System.Text.Json.xml",
  10102. "system.text.json.9.0.1.nupkg.sha512",
  10103. "system.text.json.nuspec",
  10104. "useSharedDesignerContext.txt"
  10105. ]
  10106. },
  10107. "System.Text.RegularExpressions/4.3.0": {
  10108. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  10109. "type": "package",
  10110. "path": "system.text.regularexpressions/4.3.0",
  10111. "files": [
  10112. ".nupkg.metadata",
  10113. ".signature.p7s",
  10114. "ThirdPartyNotices.txt",
  10115. "dotnet_library_license.txt",
  10116. "lib/MonoAndroid10/_._",
  10117. "lib/MonoTouch10/_._",
  10118. "lib/net45/_._",
  10119. "lib/net463/System.Text.RegularExpressions.dll",
  10120. "lib/netcore50/System.Text.RegularExpressions.dll",
  10121. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  10122. "lib/portable-net45+win8+wp8+wpa81/_._",
  10123. "lib/win8/_._",
  10124. "lib/wp80/_._",
  10125. "lib/wpa81/_._",
  10126. "lib/xamarinios10/_._",
  10127. "lib/xamarinmac20/_._",
  10128. "lib/xamarintvos10/_._",
  10129. "lib/xamarinwatchos10/_._",
  10130. "ref/MonoAndroid10/_._",
  10131. "ref/MonoTouch10/_._",
  10132. "ref/net45/_._",
  10133. "ref/net463/System.Text.RegularExpressions.dll",
  10134. "ref/netcore50/System.Text.RegularExpressions.dll",
  10135. "ref/netcore50/System.Text.RegularExpressions.xml",
  10136. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  10137. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  10138. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  10139. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  10140. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  10141. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  10142. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  10143. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  10144. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  10145. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  10146. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  10147. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  10148. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  10149. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  10150. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  10151. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  10152. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  10153. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  10154. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  10155. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  10156. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  10157. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  10158. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  10159. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  10160. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  10161. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  10162. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  10163. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  10164. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  10165. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  10166. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  10167. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  10168. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  10169. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  10170. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  10171. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  10172. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  10173. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  10174. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  10175. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  10176. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  10177. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  10178. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  10179. "ref/portable-net45+win8+wp8+wpa81/_._",
  10180. "ref/win8/_._",
  10181. "ref/wp80/_._",
  10182. "ref/wpa81/_._",
  10183. "ref/xamarinios10/_._",
  10184. "ref/xamarinmac20/_._",
  10185. "ref/xamarintvos10/_._",
  10186. "ref/xamarinwatchos10/_._",
  10187. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  10188. "system.text.regularexpressions.nuspec"
  10189. ]
  10190. },
  10191. "System.Threading/4.3.0": {
  10192. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  10193. "type": "package",
  10194. "path": "system.threading/4.3.0",
  10195. "files": [
  10196. ".nupkg.metadata",
  10197. ".signature.p7s",
  10198. "ThirdPartyNotices.txt",
  10199. "dotnet_library_license.txt",
  10200. "lib/MonoAndroid10/_._",
  10201. "lib/MonoTouch10/_._",
  10202. "lib/net45/_._",
  10203. "lib/netcore50/System.Threading.dll",
  10204. "lib/netstandard1.3/System.Threading.dll",
  10205. "lib/portable-net45+win8+wp8+wpa81/_._",
  10206. "lib/win8/_._",
  10207. "lib/wp80/_._",
  10208. "lib/wpa81/_._",
  10209. "lib/xamarinios10/_._",
  10210. "lib/xamarinmac20/_._",
  10211. "lib/xamarintvos10/_._",
  10212. "lib/xamarinwatchos10/_._",
  10213. "ref/MonoAndroid10/_._",
  10214. "ref/MonoTouch10/_._",
  10215. "ref/net45/_._",
  10216. "ref/netcore50/System.Threading.dll",
  10217. "ref/netcore50/System.Threading.xml",
  10218. "ref/netcore50/de/System.Threading.xml",
  10219. "ref/netcore50/es/System.Threading.xml",
  10220. "ref/netcore50/fr/System.Threading.xml",
  10221. "ref/netcore50/it/System.Threading.xml",
  10222. "ref/netcore50/ja/System.Threading.xml",
  10223. "ref/netcore50/ko/System.Threading.xml",
  10224. "ref/netcore50/ru/System.Threading.xml",
  10225. "ref/netcore50/zh-hans/System.Threading.xml",
  10226. "ref/netcore50/zh-hant/System.Threading.xml",
  10227. "ref/netstandard1.0/System.Threading.dll",
  10228. "ref/netstandard1.0/System.Threading.xml",
  10229. "ref/netstandard1.0/de/System.Threading.xml",
  10230. "ref/netstandard1.0/es/System.Threading.xml",
  10231. "ref/netstandard1.0/fr/System.Threading.xml",
  10232. "ref/netstandard1.0/it/System.Threading.xml",
  10233. "ref/netstandard1.0/ja/System.Threading.xml",
  10234. "ref/netstandard1.0/ko/System.Threading.xml",
  10235. "ref/netstandard1.0/ru/System.Threading.xml",
  10236. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  10237. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  10238. "ref/netstandard1.3/System.Threading.dll",
  10239. "ref/netstandard1.3/System.Threading.xml",
  10240. "ref/netstandard1.3/de/System.Threading.xml",
  10241. "ref/netstandard1.3/es/System.Threading.xml",
  10242. "ref/netstandard1.3/fr/System.Threading.xml",
  10243. "ref/netstandard1.3/it/System.Threading.xml",
  10244. "ref/netstandard1.3/ja/System.Threading.xml",
  10245. "ref/netstandard1.3/ko/System.Threading.xml",
  10246. "ref/netstandard1.3/ru/System.Threading.xml",
  10247. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  10248. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  10249. "ref/portable-net45+win8+wp8+wpa81/_._",
  10250. "ref/win8/_._",
  10251. "ref/wp80/_._",
  10252. "ref/wpa81/_._",
  10253. "ref/xamarinios10/_._",
  10254. "ref/xamarinmac20/_._",
  10255. "ref/xamarintvos10/_._",
  10256. "ref/xamarinwatchos10/_._",
  10257. "runtimes/aot/lib/netcore50/System.Threading.dll",
  10258. "system.threading.4.3.0.nupkg.sha512",
  10259. "system.threading.nuspec"
  10260. ]
  10261. },
  10262. "System.Threading.Channels/7.0.0": {
  10263. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  10264. "type": "package",
  10265. "path": "system.threading.channels/7.0.0",
  10266. "files": [
  10267. ".nupkg.metadata",
  10268. ".signature.p7s",
  10269. "Icon.png",
  10270. "LICENSE.TXT",
  10271. "THIRD-PARTY-NOTICES.TXT",
  10272. "buildTransitive/net461/System.Threading.Channels.targets",
  10273. "buildTransitive/net462/_._",
  10274. "buildTransitive/net6.0/_._",
  10275. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  10276. "lib/net462/System.Threading.Channels.dll",
  10277. "lib/net462/System.Threading.Channels.xml",
  10278. "lib/net6.0/System.Threading.Channels.dll",
  10279. "lib/net6.0/System.Threading.Channels.xml",
  10280. "lib/net7.0/System.Threading.Channels.dll",
  10281. "lib/net7.0/System.Threading.Channels.xml",
  10282. "lib/netstandard2.0/System.Threading.Channels.dll",
  10283. "lib/netstandard2.0/System.Threading.Channels.xml",
  10284. "lib/netstandard2.1/System.Threading.Channels.dll",
  10285. "lib/netstandard2.1/System.Threading.Channels.xml",
  10286. "system.threading.channels.7.0.0.nupkg.sha512",
  10287. "system.threading.channels.nuspec",
  10288. "useSharedDesignerContext.txt"
  10289. ]
  10290. },
  10291. "System.Threading.Tasks/4.3.0": {
  10292. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  10293. "type": "package",
  10294. "path": "system.threading.tasks/4.3.0",
  10295. "files": [
  10296. ".nupkg.metadata",
  10297. ".signature.p7s",
  10298. "ThirdPartyNotices.txt",
  10299. "dotnet_library_license.txt",
  10300. "lib/MonoAndroid10/_._",
  10301. "lib/MonoTouch10/_._",
  10302. "lib/net45/_._",
  10303. "lib/portable-net45+win8+wp8+wpa81/_._",
  10304. "lib/win8/_._",
  10305. "lib/wp80/_._",
  10306. "lib/wpa81/_._",
  10307. "lib/xamarinios10/_._",
  10308. "lib/xamarinmac20/_._",
  10309. "lib/xamarintvos10/_._",
  10310. "lib/xamarinwatchos10/_._",
  10311. "ref/MonoAndroid10/_._",
  10312. "ref/MonoTouch10/_._",
  10313. "ref/net45/_._",
  10314. "ref/netcore50/System.Threading.Tasks.dll",
  10315. "ref/netcore50/System.Threading.Tasks.xml",
  10316. "ref/netcore50/de/System.Threading.Tasks.xml",
  10317. "ref/netcore50/es/System.Threading.Tasks.xml",
  10318. "ref/netcore50/fr/System.Threading.Tasks.xml",
  10319. "ref/netcore50/it/System.Threading.Tasks.xml",
  10320. "ref/netcore50/ja/System.Threading.Tasks.xml",
  10321. "ref/netcore50/ko/System.Threading.Tasks.xml",
  10322. "ref/netcore50/ru/System.Threading.Tasks.xml",
  10323. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  10324. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  10325. "ref/netstandard1.0/System.Threading.Tasks.dll",
  10326. "ref/netstandard1.0/System.Threading.Tasks.xml",
  10327. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  10328. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  10329. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  10330. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  10331. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  10332. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  10333. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  10334. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  10335. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  10336. "ref/netstandard1.3/System.Threading.Tasks.dll",
  10337. "ref/netstandard1.3/System.Threading.Tasks.xml",
  10338. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  10339. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  10340. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  10341. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  10342. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  10343. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  10344. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  10345. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  10346. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  10347. "ref/portable-net45+win8+wp8+wpa81/_._",
  10348. "ref/win8/_._",
  10349. "ref/wp80/_._",
  10350. "ref/wpa81/_._",
  10351. "ref/xamarinios10/_._",
  10352. "ref/xamarinmac20/_._",
  10353. "ref/xamarintvos10/_._",
  10354. "ref/xamarinwatchos10/_._",
  10355. "system.threading.tasks.4.3.0.nupkg.sha512",
  10356. "system.threading.tasks.nuspec"
  10357. ]
  10358. },
  10359. "System.Threading.Tasks.Extensions/4.6.0": {
  10360. "sha512": "I5G6Y8jb0xRtGUC9Lahy7FUvlYlnGMMkbuKAQBy8Jb7Y6Yn8OlBEiUOY0PqZ0hy6Ua8poVA1ui1tAIiXNxGdsg==",
  10361. "type": "package",
  10362. "path": "system.threading.tasks.extensions/4.6.0",
  10363. "files": [
  10364. ".nupkg.metadata",
  10365. ".signature.p7s",
  10366. "Icon.png",
  10367. "PACKAGE.md",
  10368. "buildTransitive/net461/System.Threading.Tasks.Extensions.targets",
  10369. "buildTransitive/net462/_._",
  10370. "lib/net462/System.Threading.Tasks.Extensions.dll",
  10371. "lib/net462/System.Threading.Tasks.Extensions.xml",
  10372. "lib/netcoreapp2.1/_._",
  10373. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  10374. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  10375. "system.threading.tasks.extensions.4.6.0.nupkg.sha512",
  10376. "system.threading.tasks.extensions.nuspec"
  10377. ]
  10378. },
  10379. "System.Threading.Thread/4.3.0": {
  10380. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  10381. "type": "package",
  10382. "path": "system.threading.thread/4.3.0",
  10383. "files": [
  10384. ".nupkg.metadata",
  10385. ".signature.p7s",
  10386. "ThirdPartyNotices.txt",
  10387. "dotnet_library_license.txt",
  10388. "lib/MonoAndroid10/_._",
  10389. "lib/MonoTouch10/_._",
  10390. "lib/net46/System.Threading.Thread.dll",
  10391. "lib/netcore50/_._",
  10392. "lib/netstandard1.3/System.Threading.Thread.dll",
  10393. "lib/xamarinios10/_._",
  10394. "lib/xamarinmac20/_._",
  10395. "lib/xamarintvos10/_._",
  10396. "lib/xamarinwatchos10/_._",
  10397. "ref/MonoAndroid10/_._",
  10398. "ref/MonoTouch10/_._",
  10399. "ref/net46/System.Threading.Thread.dll",
  10400. "ref/netstandard1.3/System.Threading.Thread.dll",
  10401. "ref/netstandard1.3/System.Threading.Thread.xml",
  10402. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  10403. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  10404. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  10405. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  10406. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  10407. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  10408. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  10409. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  10410. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  10411. "ref/xamarinios10/_._",
  10412. "ref/xamarinmac20/_._",
  10413. "ref/xamarintvos10/_._",
  10414. "ref/xamarinwatchos10/_._",
  10415. "system.threading.thread.4.3.0.nupkg.sha512",
  10416. "system.threading.thread.nuspec"
  10417. ]
  10418. },
  10419. "System.Threading.ThreadPool/4.3.0": {
  10420. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  10421. "type": "package",
  10422. "path": "system.threading.threadpool/4.3.0",
  10423. "files": [
  10424. ".nupkg.metadata",
  10425. ".signature.p7s",
  10426. "ThirdPartyNotices.txt",
  10427. "dotnet_library_license.txt",
  10428. "lib/MonoAndroid10/_._",
  10429. "lib/MonoTouch10/_._",
  10430. "lib/net46/System.Threading.ThreadPool.dll",
  10431. "lib/netcore50/_._",
  10432. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  10433. "lib/xamarinios10/_._",
  10434. "lib/xamarinmac20/_._",
  10435. "lib/xamarintvos10/_._",
  10436. "lib/xamarinwatchos10/_._",
  10437. "ref/MonoAndroid10/_._",
  10438. "ref/MonoTouch10/_._",
  10439. "ref/net46/System.Threading.ThreadPool.dll",
  10440. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  10441. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  10442. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  10443. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  10444. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  10445. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  10446. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  10447. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  10448. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  10449. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  10450. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  10451. "ref/xamarinios10/_._",
  10452. "ref/xamarinmac20/_._",
  10453. "ref/xamarintvos10/_._",
  10454. "ref/xamarinwatchos10/_._",
  10455. "system.threading.threadpool.4.3.0.nupkg.sha512",
  10456. "system.threading.threadpool.nuspec"
  10457. ]
  10458. },
  10459. "System.Threading.Timer/4.3.0": {
  10460. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  10461. "type": "package",
  10462. "path": "system.threading.timer/4.3.0",
  10463. "files": [
  10464. ".nupkg.metadata",
  10465. ".signature.p7s",
  10466. "ThirdPartyNotices.txt",
  10467. "dotnet_library_license.txt",
  10468. "lib/MonoAndroid10/_._",
  10469. "lib/MonoTouch10/_._",
  10470. "lib/net451/_._",
  10471. "lib/portable-net451+win81+wpa81/_._",
  10472. "lib/win81/_._",
  10473. "lib/wpa81/_._",
  10474. "lib/xamarinios10/_._",
  10475. "lib/xamarinmac20/_._",
  10476. "lib/xamarintvos10/_._",
  10477. "lib/xamarinwatchos10/_._",
  10478. "ref/MonoAndroid10/_._",
  10479. "ref/MonoTouch10/_._",
  10480. "ref/net451/_._",
  10481. "ref/netcore50/System.Threading.Timer.dll",
  10482. "ref/netcore50/System.Threading.Timer.xml",
  10483. "ref/netcore50/de/System.Threading.Timer.xml",
  10484. "ref/netcore50/es/System.Threading.Timer.xml",
  10485. "ref/netcore50/fr/System.Threading.Timer.xml",
  10486. "ref/netcore50/it/System.Threading.Timer.xml",
  10487. "ref/netcore50/ja/System.Threading.Timer.xml",
  10488. "ref/netcore50/ko/System.Threading.Timer.xml",
  10489. "ref/netcore50/ru/System.Threading.Timer.xml",
  10490. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10491. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10492. "ref/netstandard1.2/System.Threading.Timer.dll",
  10493. "ref/netstandard1.2/System.Threading.Timer.xml",
  10494. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10495. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10496. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10497. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10498. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10499. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10500. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10501. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10502. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10503. "ref/portable-net451+win81+wpa81/_._",
  10504. "ref/win81/_._",
  10505. "ref/wpa81/_._",
  10506. "ref/xamarinios10/_._",
  10507. "ref/xamarinmac20/_._",
  10508. "ref/xamarintvos10/_._",
  10509. "ref/xamarinwatchos10/_._",
  10510. "system.threading.timer.4.3.0.nupkg.sha512",
  10511. "system.threading.timer.nuspec"
  10512. ]
  10513. },
  10514. "System.ValueTuple/4.5.0": {
  10515. "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
  10516. "type": "package",
  10517. "path": "system.valuetuple/4.5.0",
  10518. "files": [
  10519. ".nupkg.metadata",
  10520. ".signature.p7s",
  10521. "LICENSE.TXT",
  10522. "THIRD-PARTY-NOTICES.TXT",
  10523. "lib/MonoAndroid10/_._",
  10524. "lib/MonoTouch10/_._",
  10525. "lib/net461/System.ValueTuple.dll",
  10526. "lib/net461/System.ValueTuple.xml",
  10527. "lib/net47/System.ValueTuple.dll",
  10528. "lib/net47/System.ValueTuple.xml",
  10529. "lib/netcoreapp2.0/_._",
  10530. "lib/netstandard1.0/System.ValueTuple.dll",
  10531. "lib/netstandard1.0/System.ValueTuple.xml",
  10532. "lib/netstandard2.0/_._",
  10533. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  10534. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
  10535. "lib/uap10.0.16299/_._",
  10536. "lib/xamarinios10/_._",
  10537. "lib/xamarinmac20/_._",
  10538. "lib/xamarintvos10/_._",
  10539. "lib/xamarinwatchos10/_._",
  10540. "ref/MonoAndroid10/_._",
  10541. "ref/MonoTouch10/_._",
  10542. "ref/net461/System.ValueTuple.dll",
  10543. "ref/net47/System.ValueTuple.dll",
  10544. "ref/netcoreapp2.0/_._",
  10545. "ref/netstandard2.0/_._",
  10546. "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  10547. "ref/uap10.0.16299/_._",
  10548. "ref/xamarinios10/_._",
  10549. "ref/xamarinmac20/_._",
  10550. "ref/xamarintvos10/_._",
  10551. "ref/xamarinwatchos10/_._",
  10552. "system.valuetuple.4.5.0.nupkg.sha512",
  10553. "system.valuetuple.nuspec",
  10554. "useSharedDesignerContext.txt",
  10555. "version.txt"
  10556. ]
  10557. },
  10558. "System.Windows.Extensions/6.0.0": {
  10559. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  10560. "type": "package",
  10561. "path": "system.windows.extensions/6.0.0",
  10562. "files": [
  10563. ".nupkg.metadata",
  10564. ".signature.p7s",
  10565. "Icon.png",
  10566. "LICENSE.TXT",
  10567. "THIRD-PARTY-NOTICES.TXT",
  10568. "lib/net6.0/System.Windows.Extensions.dll",
  10569. "lib/net6.0/System.Windows.Extensions.xml",
  10570. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10571. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10572. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  10573. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  10574. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10575. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10576. "system.windows.extensions.6.0.0.nupkg.sha512",
  10577. "system.windows.extensions.nuspec",
  10578. "useSharedDesignerContext.txt"
  10579. ]
  10580. },
  10581. "System.Xml.ReaderWriter/4.3.0": {
  10582. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10583. "type": "package",
  10584. "path": "system.xml.readerwriter/4.3.0",
  10585. "files": [
  10586. ".nupkg.metadata",
  10587. ".signature.p7s",
  10588. "ThirdPartyNotices.txt",
  10589. "dotnet_library_license.txt",
  10590. "lib/MonoAndroid10/_._",
  10591. "lib/MonoTouch10/_._",
  10592. "lib/net45/_._",
  10593. "lib/net46/System.Xml.ReaderWriter.dll",
  10594. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10595. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10596. "lib/portable-net45+win8+wp8+wpa81/_._",
  10597. "lib/win8/_._",
  10598. "lib/wp80/_._",
  10599. "lib/wpa81/_._",
  10600. "lib/xamarinios10/_._",
  10601. "lib/xamarinmac20/_._",
  10602. "lib/xamarintvos10/_._",
  10603. "lib/xamarinwatchos10/_._",
  10604. "ref/MonoAndroid10/_._",
  10605. "ref/MonoTouch10/_._",
  10606. "ref/net45/_._",
  10607. "ref/net46/System.Xml.ReaderWriter.dll",
  10608. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10609. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10610. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10611. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10612. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10613. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10614. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10615. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10616. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10617. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10618. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10619. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10620. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10621. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10622. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10623. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10624. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10625. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10626. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10627. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10628. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10629. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10630. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10631. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10632. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10633. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10634. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10635. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10636. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10637. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10638. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10639. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10640. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10641. "ref/portable-net45+win8+wp8+wpa81/_._",
  10642. "ref/win8/_._",
  10643. "ref/wp80/_._",
  10644. "ref/wpa81/_._",
  10645. "ref/xamarinios10/_._",
  10646. "ref/xamarinmac20/_._",
  10647. "ref/xamarintvos10/_._",
  10648. "ref/xamarinwatchos10/_._",
  10649. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10650. "system.xml.readerwriter.nuspec"
  10651. ]
  10652. },
  10653. "System.Xml.XDocument/4.3.0": {
  10654. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10655. "type": "package",
  10656. "path": "system.xml.xdocument/4.3.0",
  10657. "files": [
  10658. ".nupkg.metadata",
  10659. ".signature.p7s",
  10660. "ThirdPartyNotices.txt",
  10661. "dotnet_library_license.txt",
  10662. "lib/MonoAndroid10/_._",
  10663. "lib/MonoTouch10/_._",
  10664. "lib/net45/_._",
  10665. "lib/netcore50/System.Xml.XDocument.dll",
  10666. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10667. "lib/portable-net45+win8+wp8+wpa81/_._",
  10668. "lib/win8/_._",
  10669. "lib/wp80/_._",
  10670. "lib/wpa81/_._",
  10671. "lib/xamarinios10/_._",
  10672. "lib/xamarinmac20/_._",
  10673. "lib/xamarintvos10/_._",
  10674. "lib/xamarinwatchos10/_._",
  10675. "ref/MonoAndroid10/_._",
  10676. "ref/MonoTouch10/_._",
  10677. "ref/net45/_._",
  10678. "ref/netcore50/System.Xml.XDocument.dll",
  10679. "ref/netcore50/System.Xml.XDocument.xml",
  10680. "ref/netcore50/de/System.Xml.XDocument.xml",
  10681. "ref/netcore50/es/System.Xml.XDocument.xml",
  10682. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10683. "ref/netcore50/it/System.Xml.XDocument.xml",
  10684. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10685. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10686. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10687. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10688. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10689. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10690. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10691. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10692. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10693. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10694. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10695. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10696. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10697. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10698. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10699. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10700. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10701. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10702. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10703. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10704. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10705. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10706. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10707. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10708. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10709. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10710. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10711. "ref/portable-net45+win8+wp8+wpa81/_._",
  10712. "ref/win8/_._",
  10713. "ref/wp80/_._",
  10714. "ref/wpa81/_._",
  10715. "ref/xamarinios10/_._",
  10716. "ref/xamarinmac20/_._",
  10717. "ref/xamarintvos10/_._",
  10718. "ref/xamarinwatchos10/_._",
  10719. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10720. "system.xml.xdocument.nuspec"
  10721. ]
  10722. },
  10723. "System.Xml.XmlDocument/4.3.0": {
  10724. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10725. "type": "package",
  10726. "path": "system.xml.xmldocument/4.3.0",
  10727. "files": [
  10728. ".nupkg.metadata",
  10729. ".signature.p7s",
  10730. "ThirdPartyNotices.txt",
  10731. "dotnet_library_license.txt",
  10732. "lib/MonoAndroid10/_._",
  10733. "lib/MonoTouch10/_._",
  10734. "lib/net46/System.Xml.XmlDocument.dll",
  10735. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10736. "lib/xamarinios10/_._",
  10737. "lib/xamarinmac20/_._",
  10738. "lib/xamarintvos10/_._",
  10739. "lib/xamarinwatchos10/_._",
  10740. "ref/MonoAndroid10/_._",
  10741. "ref/MonoTouch10/_._",
  10742. "ref/net46/System.Xml.XmlDocument.dll",
  10743. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10744. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10745. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10746. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10747. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10748. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10749. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10750. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10751. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10752. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10753. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10754. "ref/xamarinios10/_._",
  10755. "ref/xamarinmac20/_._",
  10756. "ref/xamarintvos10/_._",
  10757. "ref/xamarinwatchos10/_._",
  10758. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10759. "system.xml.xmldocument.nuspec"
  10760. ]
  10761. },
  10762. "ToolGood.Words/3.1.0.2": {
  10763. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  10764. "type": "package",
  10765. "path": "toolgood.words/3.1.0.2",
  10766. "files": [
  10767. ".nupkg.metadata",
  10768. ".signature.p7s",
  10769. "LICENSE",
  10770. "lib/net6.0/ToolGood.Words.dll",
  10771. "lib/net6.0/ToolGood.Words.xml",
  10772. "lib/net8.0/ToolGood.Words.dll",
  10773. "lib/net8.0/ToolGood.Words.xml",
  10774. "lib/net9.0/ToolGood.Words.dll",
  10775. "lib/net9.0/ToolGood.Words.xml",
  10776. "lib/netstandard2.1/ToolGood.Words.dll",
  10777. "lib/netstandard2.1/ToolGood.Words.xml",
  10778. "toolgood.words.3.1.0.2.nupkg.sha512",
  10779. "toolgood.words.nuspec"
  10780. ]
  10781. },
  10782. "UAParser/3.1.47": {
  10783. "sha512": "I68Jl/Vs5RQZdz9BbmYtnXgujg0jVd61LhKbyNZOCm9lBxZFGxLbiQo6yFj21VYi7DzPvEvrVOmeC6v41AoLfw==",
  10784. "type": "package",
  10785. "path": "uaparser/3.1.47",
  10786. "files": [
  10787. ".nupkg.metadata",
  10788. ".signature.p7s",
  10789. "lib/net20/UAParser.dll",
  10790. "lib/net20/UAParser.xml",
  10791. "lib/net35/UAParser.dll",
  10792. "lib/net35/UAParser.xml",
  10793. "lib/net40/UAParser.dll",
  10794. "lib/net40/UAParser.xml",
  10795. "lib/net45/UAParser.dll",
  10796. "lib/net45/UAParser.xml",
  10797. "lib/netcoreapp2.0/UAParser.dll",
  10798. "lib/netcoreapp2.0/UAParser.xml",
  10799. "lib/netstandard1.0/UAParser.dll",
  10800. "lib/netstandard1.0/UAParser.xml",
  10801. "lib/netstandard1.3/UAParser.dll",
  10802. "lib/netstandard1.3/UAParser.xml",
  10803. "lib/netstandard1.6/UAParser.dll",
  10804. "lib/netstandard1.6/UAParser.xml",
  10805. "uaparser.3.1.47.nupkg.sha512",
  10806. "uaparser.nuspec"
  10807. ]
  10808. },
  10809. "Ulid/1.4.1": {
  10810. "sha512": "V6crLJ8a29raWeNwxYGfH9RTKA3H0nR0D9LAGzN3KtEsbiiaWkUjDor6OT5Oz7pxCK+NaY2hu2FLoYEOa8oCkA==",
  10811. "type": "package",
  10812. "path": "ulid/1.4.1",
  10813. "files": [
  10814. ".nupkg.metadata",
  10815. ".signature.p7s",
  10816. "Icon.png",
  10817. "lib/net6.0/Ulid.dll",
  10818. "lib/net6.0/Ulid.xml",
  10819. "lib/net7.0/Ulid.dll",
  10820. "lib/net7.0/Ulid.xml",
  10821. "lib/net8.0/Ulid.dll",
  10822. "lib/net8.0/Ulid.xml",
  10823. "lib/netstandard2.0/Ulid.dll",
  10824. "lib/netstandard2.0/Ulid.xml",
  10825. "lib/netstandard2.1/Ulid.dll",
  10826. "lib/netstandard2.1/Ulid.xml",
  10827. "ulid.1.4.1.nupkg.sha512",
  10828. "ulid.nuspec"
  10829. ]
  10830. },
  10831. "ZXing.Net/0.16.9": {
  10832. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10833. "type": "package",
  10834. "path": "zxing.net/0.16.9",
  10835. "files": [
  10836. ".nupkg.metadata",
  10837. ".signature.p7s",
  10838. "lib/native/zxing.XML",
  10839. "lib/native/zxing.pri",
  10840. "lib/native/zxing.winmd",
  10841. "lib/net20-cf/zxing.ce2.0.dll",
  10842. "lib/net20-cf/zxing.ce2.0.xml",
  10843. "lib/net20/zxing.XML",
  10844. "lib/net20/zxing.dll",
  10845. "lib/net35-cf/zxing.ce3.5.dll",
  10846. "lib/net35-cf/zxing.ce3.5.xml",
  10847. "lib/net35/zxing.XML",
  10848. "lib/net35/zxing.dll",
  10849. "lib/net40/zxing.XML",
  10850. "lib/net40/zxing.dll",
  10851. "lib/net40/zxing.presentation.XML",
  10852. "lib/net40/zxing.presentation.dll",
  10853. "lib/net45/zxing.XML",
  10854. "lib/net45/zxing.dll",
  10855. "lib/net45/zxing.presentation.XML",
  10856. "lib/net45/zxing.presentation.dll",
  10857. "lib/net461/zxing.XML",
  10858. "lib/net461/zxing.dll",
  10859. "lib/net461/zxing.presentation.XML",
  10860. "lib/net461/zxing.presentation.dll",
  10861. "lib/net47/zxing.XML",
  10862. "lib/net47/zxing.dll",
  10863. "lib/net47/zxing.presentation.XML",
  10864. "lib/net47/zxing.presentation.dll",
  10865. "lib/net48/zxing.XML",
  10866. "lib/net48/zxing.dll",
  10867. "lib/net48/zxing.presentation.XML",
  10868. "lib/net48/zxing.presentation.dll",
  10869. "lib/net5.0/zxing.XML",
  10870. "lib/net5.0/zxing.dll",
  10871. "lib/net6.0/zxing.XML",
  10872. "lib/net6.0/zxing.dll",
  10873. "lib/net7.0/zxing.XML",
  10874. "lib/net7.0/zxing.dll",
  10875. "lib/netcoreapp3.0/zxing.dll",
  10876. "lib/netcoreapp3.0/zxing.xml",
  10877. "lib/netcoreapp3.1/zxing.dll",
  10878. "lib/netcoreapp3.1/zxing.xml",
  10879. "lib/netstandard1.0/zxing.dll",
  10880. "lib/netstandard1.0/zxing.xml",
  10881. "lib/netstandard1.1/zxing.dll",
  10882. "lib/netstandard1.1/zxing.xml",
  10883. "lib/netstandard1.3/zxing.dll",
  10884. "lib/netstandard1.3/zxing.xml",
  10885. "lib/netstandard2.0/zxing.dll",
  10886. "lib/netstandard2.0/zxing.xml",
  10887. "lib/netstandard2.1/zxing.dll",
  10888. "lib/netstandard2.1/zxing.xml",
  10889. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10890. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10891. "lib/sl3-wp/zxing.wp7.0.XML",
  10892. "lib/sl3-wp/zxing.wp7.0.dll",
  10893. "lib/sl4-wp71/zxing.wp7.1.XML",
  10894. "lib/sl4-wp71/zxing.wp7.1.dll",
  10895. "lib/sl4/zxing.sl4.XML",
  10896. "lib/sl4/zxing.sl4.dll",
  10897. "lib/sl5/zxing.sl5.XML",
  10898. "lib/sl5/zxing.sl5.dll",
  10899. "lib/uap10/zxing.dll",
  10900. "lib/uap10/zxing.pri",
  10901. "lib/uap10/zxing.xml",
  10902. "lib/windows8-managed/zxing.winrt.XML",
  10903. "lib/windows8-managed/zxing.winrt.dll",
  10904. "lib/windows8/zxing.XML",
  10905. "lib/windows8/zxing.pri",
  10906. "lib/windows8/zxing.winmd",
  10907. "lib/wp8/zxing.wp8.0.XML",
  10908. "lib/wp8/zxing.wp8.0.dll",
  10909. "logo.jpg",
  10910. "zxing.net.0.16.9.nupkg.sha512",
  10911. "zxing.net.nuspec"
  10912. ]
  10913. },
  10914. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10915. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10916. "type": "package",
  10917. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10918. "files": [
  10919. ".nupkg.metadata",
  10920. ".signature.p7s",
  10921. "lib/net472/ZXing.ImageSharp.V2.dll",
  10922. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10923. "lib/net472/ZXing.ImageSharp.V2.xml",
  10924. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10925. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10926. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10927. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10928. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10929. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10930. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10931. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10932. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10933. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10934. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10935. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10936. "logo.jpg",
  10937. "readme.md",
  10938. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10939. "zxing.net.bindings.imagesharp.v2.nuspec"
  10940. ]
  10941. },
  10942. "Ropin.Core.Common/1.0.0": {
  10943. "type": "project",
  10944. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10945. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10946. },
  10947. "Ropin.Core.Extensions/1.0.0": {
  10948. "type": "project",
  10949. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10950. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10951. },
  10952. "Ropin.Inspection.Common/1.0.0": {
  10953. "type": "project",
  10954. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10955. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10956. },
  10957. "Ropin.Inspection.Model/1.0.0": {
  10958. "type": "project",
  10959. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10960. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10961. },
  10962. "Ropin.Inspection.Repository/1.0.0": {
  10963. "type": "project",
  10964. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10965. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10966. },
  10967. "Ropin.Inspection.Service/1.0.0": {
  10968. "type": "project",
  10969. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10970. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10971. },
  10972. "Ropin.Inspection.Tasks/1.0.0": {
  10973. "type": "project",
  10974. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10975. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10976. }
  10977. },
  10978. "projectFileDependencyGroups": {
  10979. "net5.0": [
  10980. "AutoMapper >= 10.1.1",
  10981. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  10982. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10983. "IPTools.China >= 1.6.0",
  10984. "IPTools.Core >= 1.6.0",
  10985. "InfluxData.Net >= 8.0.1",
  10986. "Microsoft.AspNetCore.Authentication.JwtBearer >= 5.0.0",
  10987. "Microsoft.AspNetCore.Authentication.OpenIdConnect >= 5.0.0",
  10988. "Microsoft.AspNetCore.JsonPatch >= 5.0.0",
  10989. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 5.0.0",
  10990. "Microsoft.Bcl.AsyncInterfaces >= 9.0.8",
  10991. "Microsoft.EntityFrameworkCore >= 5.0.4",
  10992. "Microsoft.EntityFrameworkCore.Design >= 5.0.4",
  10993. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9",
  10994. "Minio >= 6.0.5",
  10995. "MySql.Data >= 8.0.23",
  10996. "NPOI >= 2.6.2",
  10997. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  10998. "Ropin.Core.Common >= 1.0.0",
  10999. "Ropin.Core.Extensions >= 1.0.0",
  11000. "Ropin.Inspection.Common >= 1.0.0",
  11001. "Ropin.Inspection.Model >= 1.0.0",
  11002. "Ropin.Inspection.Repository >= 1.0.0",
  11003. "Ropin.Inspection.Service >= 1.0.0",
  11004. "Ropin.Inspection.Tasks >= 1.0.0",
  11005. "Swashbuckle.AspNetCore >= 5.6.3",
  11006. "UAParser >= 3.1.47"
  11007. ]
  11008. },
  11009. "packageFolders": {
  11010. "D:\\.nuget\\packages": {},
  11011. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  11012. },
  11013. "project": {
  11014. "version": "1.0.0",
  11015. "restore": {
  11016. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  11017. "projectName": "Ropin.Inspection.Api",
  11018. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  11019. "packagesPath": "D:\\.nuget\\packages",
  11020. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\obj\\",
  11021. "projectStyle": "PackageReference",
  11022. "fallbackFolders": [
  11023. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  11024. ],
  11025. "configFilePaths": [
  11026. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  11027. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  11028. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  11029. ],
  11030. "originalTargetFrameworks": [
  11031. "net5.0"
  11032. ],
  11033. "sources": {
  11034. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  11035. "C:\\Program Files\\dotnet\\library-packs": {},
  11036. "https://api.nuget.org/v3/index.json": {}
  11037. },
  11038. "frameworks": {
  11039. "net5.0": {
  11040. "targetAlias": "net5.0",
  11041. "projectReferences": {
  11042. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  11043. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  11044. },
  11045. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  11046. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  11047. },
  11048. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  11049. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  11050. },
  11051. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  11052. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  11053. },
  11054. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  11055. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  11056. },
  11057. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  11058. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  11059. },
  11060. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  11061. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  11062. }
  11063. }
  11064. }
  11065. },
  11066. "warningProperties": {
  11067. "warnAsError": [
  11068. "NU1605"
  11069. ]
  11070. }
  11071. },
  11072. "frameworks": {
  11073. "net5.0": {
  11074. "targetAlias": "net5.0",
  11075. "dependencies": {
  11076. "AutoMapper": {
  11077. "target": "Package",
  11078. "version": "[10.1.1, )"
  11079. },
  11080. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  11081. "target": "Package",
  11082. "version": "[8.1.1, )"
  11083. },
  11084. "Autofac.Extensions.DependencyInjection": {
  11085. "target": "Package",
  11086. "version": "[7.1.0, )"
  11087. },
  11088. "IPTools.China": {
  11089. "target": "Package",
  11090. "version": "[1.6.0, )"
  11091. },
  11092. "IPTools.Core": {
  11093. "target": "Package",
  11094. "version": "[1.6.0, )"
  11095. },
  11096. "InfluxData.Net": {
  11097. "target": "Package",
  11098. "version": "[8.0.1, )"
  11099. },
  11100. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  11101. "target": "Package",
  11102. "version": "[5.0.0, )",
  11103. "noWarn": [
  11104. "NU1605"
  11105. ]
  11106. },
  11107. "Microsoft.AspNetCore.Authentication.OpenIdConnect": {
  11108. "target": "Package",
  11109. "version": "[5.0.0, )",
  11110. "noWarn": [
  11111. "NU1605"
  11112. ]
  11113. },
  11114. "Microsoft.AspNetCore.JsonPatch": {
  11115. "target": "Package",
  11116. "version": "[5.0.0, )"
  11117. },
  11118. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  11119. "target": "Package",
  11120. "version": "[5.0.0, )"
  11121. },
  11122. "Microsoft.Bcl.AsyncInterfaces": {
  11123. "target": "Package",
  11124. "version": "[9.0.8, )"
  11125. },
  11126. "Microsoft.EntityFrameworkCore": {
  11127. "target": "Package",
  11128. "version": "[5.0.4, )"
  11129. },
  11130. "Microsoft.EntityFrameworkCore.Design": {
  11131. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  11132. "suppressParent": "All",
  11133. "target": "Package",
  11134. "version": "[5.0.4, )"
  11135. },
  11136. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  11137. "target": "Package",
  11138. "version": "[1.10.9, )"
  11139. },
  11140. "Minio": {
  11141. "target": "Package",
  11142. "version": "[6.0.5, )"
  11143. },
  11144. "MySql.Data": {
  11145. "target": "Package",
  11146. "version": "[8.0.23, )"
  11147. },
  11148. "NPOI": {
  11149. "target": "Package",
  11150. "version": "[2.6.2, )"
  11151. },
  11152. "Pomelo.EntityFrameworkCore.MySql": {
  11153. "target": "Package",
  11154. "version": "[5.0.0-alpha.2, )"
  11155. },
  11156. "Swashbuckle.AspNetCore": {
  11157. "target": "Package",
  11158. "version": "[5.6.3, )"
  11159. },
  11160. "UAParser": {
  11161. "target": "Package",
  11162. "version": "[3.1.47, )"
  11163. }
  11164. },
  11165. "imports": [
  11166. "net461",
  11167. "net462",
  11168. "net47",
  11169. "net471",
  11170. "net472",
  11171. "net48",
  11172. "net481"
  11173. ],
  11174. "assetTargetFallback": true,
  11175. "warn": true,
  11176. "frameworkReferences": {
  11177. "Microsoft.AspNetCore.App": {
  11178. "privateAssets": "none"
  11179. },
  11180. "Microsoft.NETCore.App": {
  11181. "privateAssets": "all"
  11182. }
  11183. },
  11184. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  11185. }
  11186. }
  11187. }
  11188. }