project.assets.json 427 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546
  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.NetCore/1.8.5": {
  100. "type": "package",
  101. "compile": {
  102. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "Castle.Core/4.4.0": {
  113. "type": "package",
  114. "dependencies": {
  115. "NETStandard.Library": "1.6.1",
  116. "System.Collections.Specialized": "4.3.0",
  117. "System.ComponentModel": "4.3.0",
  118. "System.ComponentModel.TypeConverter": "4.3.0",
  119. "System.Diagnostics.TraceSource": "4.3.0",
  120. "System.Dynamic.Runtime": "4.3.0",
  121. "System.Reflection": "4.3.0",
  122. "System.Reflection.Emit": "4.3.0",
  123. "System.Reflection.TypeExtensions": "4.3.0",
  124. "System.Xml.XmlDocument": "4.3.0"
  125. },
  126. "compile": {
  127. "lib/netstandard1.5/Castle.Core.dll": {
  128. "related": ".xml"
  129. }
  130. },
  131. "runtime": {
  132. "lib/netstandard1.5/Castle.Core.dll": {
  133. "related": ".xml"
  134. }
  135. }
  136. },
  137. "Coravel/4.2.1": {
  138. "type": "package",
  139. "dependencies": {
  140. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  141. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  142. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  143. },
  144. "compile": {
  145. "lib/netstandard2.0/Coravel.dll": {
  146. "related": ".xml"
  147. }
  148. },
  149. "runtime": {
  150. "lib/netstandard2.0/Coravel.dll": {
  151. "related": ".xml"
  152. }
  153. }
  154. },
  155. "FBoxClientDriver/1.2.0": {
  156. "type": "package",
  157. "dependencies": {
  158. "FBoxClientDriver.Contract": "1.2.0",
  159. "IdentityModel": "4.3.1",
  160. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  161. "Microsoft.CSharp": "4.5.0",
  162. "Microsoft.Extensions.Logging": "3.1.5",
  163. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  164. "Newtonsoft.Json": "12.0.3",
  165. "Nito.AsyncEx.Coordination": "5.0.0",
  166. "NodaTime": "2.4.7",
  167. "System.ComponentModel.EventBasedAsync": "4.3.0",
  168. "System.IO.FileSystem": "4.3.0",
  169. "System.Net.Http": "4.3.2",
  170. "System.Reactive": "4.4.1",
  171. "System.Runtime.Serialization.Primitives": "4.3.0",
  172. "System.Threading.Thread": "4.3.0"
  173. },
  174. "compile": {
  175. "lib/netstandard2.0/FBoxClientDriver.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "runtime": {
  180. "lib/netstandard2.0/FBoxClientDriver.dll": {
  181. "related": ".xml"
  182. }
  183. }
  184. },
  185. "FBoxClientDriver.Contract/1.2.0": {
  186. "type": "package",
  187. "dependencies": {
  188. "Newtonsoft.Json": "12.0.3",
  189. "System.ComponentModel.Primitives": "4.3.0"
  190. },
  191. "compile": {
  192. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  193. "related": ".xml"
  194. }
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  198. "related": ".xml"
  199. }
  200. }
  201. },
  202. "FluentEmail.Core/3.0.2": {
  203. "type": "package",
  204. "dependencies": {
  205. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  206. },
  207. "compile": {
  208. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  209. },
  210. "runtime": {
  211. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  212. }
  213. },
  214. "FluentEmail.Smtp/3.0.2": {
  215. "type": "package",
  216. "dependencies": {
  217. "FluentEmail.Core": "3.0.2"
  218. },
  219. "compile": {
  220. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  221. },
  222. "runtime": {
  223. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  224. }
  225. },
  226. "Google.Protobuf/3.11.4": {
  227. "type": "package",
  228. "dependencies": {
  229. "System.Memory": "4.5.2"
  230. },
  231. "compile": {
  232. "lib/netstandard2.0/Google.Protobuf.dll": {
  233. "related": ".pdb;.xml"
  234. }
  235. },
  236. "runtime": {
  237. "lib/netstandard2.0/Google.Protobuf.dll": {
  238. "related": ".pdb;.xml"
  239. }
  240. }
  241. },
  242. "IdentityModel/4.3.1": {
  243. "type": "package",
  244. "dependencies": {
  245. "Newtonsoft.Json": "11.0.2",
  246. "System.Text.Encodings.Web": "4.7.0"
  247. },
  248. "compile": {
  249. "lib/netstandard2.0/IdentityModel.dll": {
  250. "related": ".pdb;.xml"
  251. }
  252. },
  253. "runtime": {
  254. "lib/netstandard2.0/IdentityModel.dll": {
  255. "related": ".pdb;.xml"
  256. }
  257. }
  258. },
  259. "InfluxData.Net/8.0.1": {
  260. "type": "package",
  261. "dependencies": {
  262. "Newtonsoft.Json": "10.0.3",
  263. "System.Net.Http": "4.3.2"
  264. },
  265. "compile": {
  266. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  267. "related": ".dll.config;.pdb"
  268. },
  269. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  270. "related": ".dll.config;.pdb"
  271. },
  272. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  273. "related": ".dll.config;.pdb"
  274. },
  275. "lib/netstandard2.0/InfluxData.Net.dll": {
  276. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  277. }
  278. },
  279. "runtime": {
  280. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  281. "related": ".dll.config;.pdb"
  282. },
  283. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  284. "related": ".dll.config;.pdb"
  285. },
  286. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  287. "related": ".dll.config;.pdb"
  288. },
  289. "lib/netstandard2.0/InfluxData.Net.dll": {
  290. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  291. }
  292. }
  293. },
  294. "InitQ/1.0.0.14": {
  295. "type": "package",
  296. "dependencies": {
  297. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  298. "Microsoft.Extensions.Hosting": "2.1.0",
  299. "Newtonsoft.Json": "13.0.1",
  300. "StackExchange.Redis": "1.2.4"
  301. },
  302. "compile": {
  303. "lib/netcoreapp2.1/InitQ.dll": {}
  304. },
  305. "runtime": {
  306. "lib/netcoreapp2.1/InitQ.dll": {}
  307. }
  308. },
  309. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  310. "type": "package",
  311. "dependencies": {
  312. "AdvancedStringBuilder": "0.1.0",
  313. "JavaScriptEngineSwitcher.Core": "3.21.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "resource": {
  326. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  327. "locale": "ru-RU"
  328. }
  329. }
  330. },
  331. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  332. "type": "package",
  333. "runtimeTargets": {
  334. "runtimes/linux-x64/native/libChakraCore.so": {
  335. "assetType": "native",
  336. "rid": "linux-x64"
  337. }
  338. }
  339. },
  340. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  341. "type": "package",
  342. "build": {
  343. "build/_._": {}
  344. },
  345. "runtimeTargets": {
  346. "runtimes/win-x64/native/ChakraCore.dll": {
  347. "assetType": "native",
  348. "rid": "win-x64"
  349. }
  350. }
  351. },
  352. "JavaScriptEngineSwitcher.Core/3.21.0": {
  353. "type": "package",
  354. "dependencies": {
  355. "AdvancedStringBuilder": "0.1.0"
  356. },
  357. "compile": {
  358. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  359. "related": ".xml"
  360. }
  361. },
  362. "runtime": {
  363. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  364. "related": ".xml"
  365. }
  366. },
  367. "resource": {
  368. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  369. "locale": "ru-RU"
  370. }
  371. }
  372. },
  373. "K4os.Compression.LZ4/1.1.11": {
  374. "type": "package",
  375. "dependencies": {
  376. "System.Memory": "4.5.3"
  377. },
  378. "compile": {
  379. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  380. "related": ".xml"
  381. }
  382. },
  383. "runtime": {
  384. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  385. "related": ".xml"
  386. }
  387. }
  388. },
  389. "K4os.Compression.LZ4.Streams/1.1.11": {
  390. "type": "package",
  391. "dependencies": {
  392. "K4os.Compression.LZ4": "1.1.11",
  393. "K4os.Hash.xxHash": "1.0.6"
  394. },
  395. "compile": {
  396. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  397. "related": ".xml"
  398. }
  399. },
  400. "runtime": {
  401. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  402. "related": ".xml"
  403. }
  404. }
  405. },
  406. "K4os.Hash.xxHash/1.0.6": {
  407. "type": "package",
  408. "dependencies": {
  409. "System.Memory": "4.5.3"
  410. },
  411. "compile": {
  412. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  413. "related": ".xml"
  414. }
  415. },
  416. "runtime": {
  417. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  418. "related": ".xml"
  419. }
  420. }
  421. },
  422. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  423. "type": "package",
  424. "dependencies": {
  425. "Microsoft.EntityFrameworkCore": "5.0.0"
  426. },
  427. "compile": {
  428. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  429. "related": ".xml"
  430. }
  431. },
  432. "runtime": {
  433. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  434. "related": ".xml"
  435. }
  436. }
  437. },
  438. "log4net/2.0.17": {
  439. "type": "package",
  440. "dependencies": {
  441. "System.Configuration.ConfigurationManager": "4.5.0"
  442. },
  443. "compile": {
  444. "lib/netstandard2.0/log4net.dll": {
  445. "related": ".xml"
  446. }
  447. },
  448. "runtime": {
  449. "lib/netstandard2.0/log4net.dll": {
  450. "related": ".xml"
  451. }
  452. }
  453. },
  454. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  455. "type": "package",
  456. "dependencies": {
  457. "Newtonsoft.Json": "11.0.2"
  458. },
  459. "compile": {
  460. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  461. "related": ".pdb;.xml"
  462. }
  463. },
  464. "runtime": {
  465. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  466. "related": ".pdb;.xml"
  467. }
  468. }
  469. },
  470. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  471. "type": "package",
  472. "dependencies": {
  473. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  474. "System.Text.Encodings.Web": "4.5.0"
  475. },
  476. "compile": {
  477. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  478. "related": ".xml"
  479. }
  480. },
  481. "runtime": {
  482. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  483. "related": ".xml"
  484. }
  485. }
  486. },
  487. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  488. "type": "package",
  489. "dependencies": {
  490. "Microsoft.Extensions.Primitives": "5.0.0",
  491. "System.IO.Pipelines": "5.0.0"
  492. },
  493. "compile": {
  494. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "runtime": {
  499. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  500. "related": ".xml"
  501. }
  502. }
  503. },
  504. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  505. "type": "package",
  506. "dependencies": {
  507. "Microsoft.Extensions.Logging.Console": "3.1.30",
  508. "Newtonsoft.Json": "13.0.1"
  509. },
  510. "compile": {
  511. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  512. },
  513. "runtime": {
  514. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  515. },
  516. "frameworkReferences": [
  517. "Microsoft.AspNetCore.App"
  518. ]
  519. },
  520. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  521. "type": "package",
  522. "compile": {
  523. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  524. "related": ".xml"
  525. }
  526. },
  527. "runtime": {
  528. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  529. "related": ".xml"
  530. }
  531. }
  532. },
  533. "Microsoft.Bcl.Memory/9.0.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  537. },
  538. "compile": {
  539. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll": {
  540. "related": ".xml"
  541. }
  542. },
  543. "runtime": {
  544. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "build": {
  549. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets": {}
  550. }
  551. },
  552. "Microsoft.Bcl.TimeProvider/8.0.1": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.Bcl.AsyncInterfaces": "8.0.0"
  556. },
  557. "compile": {
  558. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": {
  559. "related": ".xml"
  560. }
  561. },
  562. "runtime": {
  563. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": {
  564. "related": ".xml"
  565. }
  566. },
  567. "build": {
  568. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets": {}
  569. }
  570. },
  571. "Microsoft.CSharp/4.7.0": {
  572. "type": "package",
  573. "compile": {
  574. "ref/netcoreapp2.0/_._": {}
  575. },
  576. "runtime": {
  577. "lib/netcoreapp2.0/_._": {}
  578. }
  579. },
  580. "Microsoft.EntityFrameworkCore/5.0.0": {
  581. "type": "package",
  582. "dependencies": {
  583. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  584. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  585. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  586. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  587. "Microsoft.Extensions.Logging": "5.0.0",
  588. "System.Collections.Immutable": "5.0.0",
  589. "System.ComponentModel.Annotations": "5.0.0",
  590. "System.Diagnostics.DiagnosticSource": "5.0.0"
  591. },
  592. "compile": {
  593. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  594. "related": ".xml"
  595. }
  596. },
  597. "runtime": {
  598. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  599. "related": ".xml"
  600. }
  601. }
  602. },
  603. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  604. "type": "package",
  605. "compile": {
  606. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  607. "related": ".xml"
  608. }
  609. },
  610. "runtime": {
  611. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  612. "related": ".xml"
  613. }
  614. }
  615. },
  616. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  617. "type": "package",
  618. "compile": {
  619. "lib/netstandard2.0/_._": {}
  620. },
  621. "runtime": {
  622. "lib/netstandard2.0/_._": {}
  623. }
  624. },
  625. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  626. "type": "package",
  627. "dependencies": {
  628. "Microsoft.EntityFrameworkCore": "5.0.0",
  629. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  630. },
  631. "compile": {
  632. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  633. "related": ".xml"
  634. }
  635. },
  636. "runtime": {
  637. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  638. "related": ".xml"
  639. }
  640. }
  641. },
  642. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  643. "type": "package",
  644. "build": {
  645. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  646. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  647. },
  648. "buildMultiTargeting": {
  649. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  650. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  651. }
  652. },
  653. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.Extensions.Primitives": "5.0.0"
  657. },
  658. "compile": {
  659. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  660. "related": ".xml"
  661. }
  662. },
  663. "runtime": {
  664. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  665. "related": ".xml"
  666. }
  667. }
  668. },
  669. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  670. "type": "package",
  671. "dependencies": {
  672. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  673. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  674. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  675. "Microsoft.Extensions.Options": "5.0.0",
  676. "Microsoft.Extensions.Primitives": "5.0.0"
  677. },
  678. "compile": {
  679. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  680. "related": ".xml"
  681. }
  682. },
  683. "runtime": {
  684. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  685. "related": ".xml"
  686. }
  687. }
  688. },
  689. "Microsoft.Extensions.Configuration/5.0.0": {
  690. "type": "package",
  691. "dependencies": {
  692. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  693. "Microsoft.Extensions.Primitives": "5.0.0"
  694. },
  695. "compile": {
  696. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  697. "related": ".xml"
  698. }
  699. },
  700. "runtime": {
  701. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  702. "related": ".xml"
  703. }
  704. }
  705. },
  706. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  707. "type": "package",
  708. "dependencies": {
  709. "Microsoft.Extensions.Primitives": "5.0.0"
  710. },
  711. "compile": {
  712. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  713. "related": ".xml"
  714. }
  715. },
  716. "runtime": {
  717. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  718. "related": ".xml"
  719. }
  720. }
  721. },
  722. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  723. "type": "package",
  724. "dependencies": {
  725. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  726. },
  727. "compile": {
  728. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  729. "related": ".xml"
  730. }
  731. },
  732. "runtime": {
  733. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  734. "related": ".xml"
  735. }
  736. }
  737. },
  738. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  739. "type": "package",
  740. "dependencies": {
  741. "Microsoft.Extensions.Configuration": "5.0.0",
  742. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  743. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  744. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  745. "Microsoft.Extensions.Primitives": "5.0.0"
  746. },
  747. "compile": {
  748. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  749. "related": ".xml"
  750. }
  751. },
  752. "runtime": {
  753. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  754. "related": ".xml"
  755. }
  756. }
  757. },
  758. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  759. "type": "package",
  760. "dependencies": {
  761. "Microsoft.Extensions.Configuration": "5.0.0",
  762. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  763. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  764. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  765. },
  766. "compile": {
  767. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  768. "related": ".xml"
  769. }
  770. },
  771. "runtime": {
  772. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  773. "related": ".xml"
  774. }
  775. }
  776. },
  777. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  781. },
  782. "compile": {
  783. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  784. "related": ".xml"
  785. }
  786. },
  787. "runtime": {
  788. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  789. "related": ".xml"
  790. }
  791. }
  792. },
  793. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  794. "type": "package",
  795. "compile": {
  796. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  797. "related": ".xml"
  798. }
  799. },
  800. "runtime": {
  801. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  802. "related": ".xml"
  803. }
  804. }
  805. },
  806. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  807. "type": "package",
  808. "dependencies": {
  809. "Microsoft.Extensions.Primitives": "5.0.0"
  810. },
  811. "compile": {
  812. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  823. "type": "package",
  824. "dependencies": {
  825. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  826. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  827. "Microsoft.Extensions.Primitives": "5.0.0"
  828. },
  829. "compile": {
  830. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  831. "related": ".xml"
  832. }
  833. },
  834. "runtime": {
  835. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  836. "related": ".xml"
  837. }
  838. }
  839. },
  840. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  841. "type": "package",
  842. "compile": {
  843. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  844. "related": ".xml"
  845. }
  846. },
  847. "runtime": {
  848. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  849. "related": ".xml"
  850. }
  851. }
  852. },
  853. "Microsoft.Extensions.Hosting/2.1.0": {
  854. "type": "package",
  855. "dependencies": {
  856. "Microsoft.Extensions.Configuration": "2.1.0",
  857. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  858. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  859. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  860. "Microsoft.Extensions.Logging": "2.1.0"
  861. },
  862. "compile": {
  863. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  864. "related": ".xml"
  865. }
  866. },
  867. "runtime": {
  868. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  869. "related": ".xml"
  870. }
  871. }
  872. },
  873. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  874. "type": "package",
  875. "dependencies": {
  876. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  877. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  878. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  879. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  880. },
  881. "compile": {
  882. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  883. "related": ".xml"
  884. }
  885. },
  886. "runtime": {
  887. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  888. "related": ".xml"
  889. }
  890. }
  891. },
  892. "Microsoft.Extensions.Http/5.0.0": {
  893. "type": "package",
  894. "dependencies": {
  895. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  896. "Microsoft.Extensions.Logging": "5.0.0",
  897. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  898. "Microsoft.Extensions.Options": "5.0.0"
  899. },
  900. "compile": {
  901. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  902. "related": ".xml"
  903. }
  904. },
  905. "runtime": {
  906. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  907. "related": ".xml"
  908. }
  909. }
  910. },
  911. "Microsoft.Extensions.Logging/5.0.0": {
  912. "type": "package",
  913. "dependencies": {
  914. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  915. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  916. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  917. "Microsoft.Extensions.Options": "5.0.0"
  918. },
  919. "compile": {
  920. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  921. "related": ".xml"
  922. }
  923. },
  924. "runtime": {
  925. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  926. "related": ".xml"
  927. }
  928. }
  929. },
  930. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  931. "type": "package",
  932. "compile": {
  933. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  934. "related": ".xml"
  935. }
  936. },
  937. "runtime": {
  938. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  939. "related": ".xml"
  940. }
  941. }
  942. },
  943. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  944. "type": "package",
  945. "dependencies": {
  946. "Microsoft.Extensions.Logging": "3.1.30",
  947. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  948. },
  949. "compile": {
  950. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  951. "related": ".xml"
  952. }
  953. },
  954. "runtime": {
  955. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  956. "related": ".xml"
  957. }
  958. }
  959. },
  960. "Microsoft.Extensions.Logging.Console/3.1.30": {
  961. "type": "package",
  962. "dependencies": {
  963. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  964. "Microsoft.Extensions.Logging": "3.1.30",
  965. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  966. },
  967. "compile": {
  968. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  969. "related": ".xml"
  970. }
  971. },
  972. "runtime": {
  973. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  974. "related": ".xml"
  975. }
  976. }
  977. },
  978. "Microsoft.Extensions.Options/5.0.0": {
  979. "type": "package",
  980. "dependencies": {
  981. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  982. "Microsoft.Extensions.Primitives": "5.0.0"
  983. },
  984. "compile": {
  985. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  986. "related": ".xml"
  987. }
  988. },
  989. "runtime": {
  990. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  991. "related": ".xml"
  992. }
  993. }
  994. },
  995. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  996. "type": "package",
  997. "dependencies": {
  998. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  999. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1000. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1001. "Microsoft.Extensions.Options": "3.1.30"
  1002. },
  1003. "compile": {
  1004. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1005. "related": ".xml"
  1006. }
  1007. },
  1008. "runtime": {
  1009. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1010. "related": ".xml"
  1011. }
  1012. }
  1013. },
  1014. "Microsoft.Extensions.Primitives/5.0.0": {
  1015. "type": "package",
  1016. "compile": {
  1017. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1018. "related": ".xml"
  1019. }
  1020. },
  1021. "runtime": {
  1022. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1023. "related": ".xml"
  1024. }
  1025. }
  1026. },
  1027. "Microsoft.IdentityModel.Abstractions/8.6.0": {
  1028. "type": "package",
  1029. "compile": {
  1030. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  1031. "related": ".xml"
  1032. }
  1033. },
  1034. "runtime": {
  1035. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  1036. "related": ".xml"
  1037. }
  1038. }
  1039. },
  1040. "Microsoft.IdentityModel.JsonWebTokens/8.6.0": {
  1041. "type": "package",
  1042. "dependencies": {
  1043. "Microsoft.Bcl.TimeProvider": "8.0.1",
  1044. "Microsoft.IdentityModel.Tokens": "8.6.0"
  1045. },
  1046. "compile": {
  1047. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1048. "related": ".xml"
  1049. }
  1050. },
  1051. "runtime": {
  1052. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1053. "related": ".xml"
  1054. }
  1055. }
  1056. },
  1057. "Microsoft.IdentityModel.Logging/8.6.0": {
  1058. "type": "package",
  1059. "dependencies": {
  1060. "Microsoft.IdentityModel.Abstractions": "8.6.0"
  1061. },
  1062. "compile": {
  1063. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1064. "related": ".xml"
  1065. }
  1066. },
  1067. "runtime": {
  1068. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1069. "related": ".xml"
  1070. }
  1071. }
  1072. },
  1073. "Microsoft.IdentityModel.Tokens/8.6.0": {
  1074. "type": "package",
  1075. "dependencies": {
  1076. "Microsoft.Bcl.Memory": "9.0.0",
  1077. "Microsoft.Bcl.TimeProvider": "8.0.1",
  1078. "Microsoft.CSharp": "4.5.0",
  1079. "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
  1080. "Microsoft.IdentityModel.Logging": "8.6.0",
  1081. "System.Diagnostics.DiagnosticSource": "6.0.2",
  1082. "System.Security.Cryptography.Cng": "4.5.0",
  1083. "System.Text.Json": "8.0.5"
  1084. },
  1085. "compile": {
  1086. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1087. "related": ".xml"
  1088. }
  1089. },
  1090. "runtime": {
  1091. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1092. "related": ".xml"
  1093. }
  1094. }
  1095. },
  1096. "Microsoft.NETCore.Platforms/5.0.0": {
  1097. "type": "package",
  1098. "compile": {
  1099. "lib/netstandard1.0/_._": {}
  1100. },
  1101. "runtime": {
  1102. "lib/netstandard1.0/_._": {}
  1103. }
  1104. },
  1105. "Microsoft.NETCore.Targets/1.1.0": {
  1106. "type": "package",
  1107. "compile": {
  1108. "lib/netstandard1.0/_._": {}
  1109. },
  1110. "runtime": {
  1111. "lib/netstandard1.0/_._": {}
  1112. }
  1113. },
  1114. "Microsoft.OpenApi/1.2.3": {
  1115. "type": "package",
  1116. "compile": {
  1117. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1118. "related": ".pdb;.xml"
  1119. }
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1123. "related": ".pdb;.xml"
  1124. }
  1125. }
  1126. },
  1127. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1128. "type": "package",
  1129. "build": {
  1130. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1131. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1132. }
  1133. },
  1134. "Microsoft.Win32.Primitives/4.3.0": {
  1135. "type": "package",
  1136. "dependencies": {
  1137. "Microsoft.NETCore.Platforms": "1.1.0",
  1138. "Microsoft.NETCore.Targets": "1.1.0",
  1139. "System.Runtime": "4.3.0"
  1140. },
  1141. "compile": {
  1142. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1143. "related": ".xml"
  1144. }
  1145. }
  1146. },
  1147. "Microsoft.Win32.SystemEvents/5.0.0": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "Microsoft.NETCore.Platforms": "5.0.0"
  1151. },
  1152. "compile": {
  1153. "ref/netstandard2.0/_._": {
  1154. "related": ".xml"
  1155. }
  1156. },
  1157. "runtime": {
  1158. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1159. "related": ".xml"
  1160. }
  1161. },
  1162. "runtimeTargets": {
  1163. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1164. "assetType": "runtime",
  1165. "rid": "win"
  1166. }
  1167. }
  1168. },
  1169. "MySql.Data/8.0.23": {
  1170. "type": "package",
  1171. "dependencies": {
  1172. "BouncyCastle.NetCore": "1.8.5",
  1173. "Google.Protobuf": "3.11.4",
  1174. "K4os.Compression.LZ4": "1.1.11",
  1175. "K4os.Compression.LZ4.Streams": "1.1.11",
  1176. "K4os.Hash.xxHash": "1.0.6",
  1177. "SSH.NET": "2020.0.0-beta1",
  1178. "System.Buffers": "4.5.1",
  1179. "System.Configuration.ConfigurationManager": "4.4.1",
  1180. "System.Security.Permissions": "4.7.0",
  1181. "System.Text.Encoding.CodePages": "4.4.0"
  1182. },
  1183. "compile": {
  1184. "lib/net5.0/MySql.Data.dll": {
  1185. "related": ".xml"
  1186. },
  1187. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1188. "lib/net5.0/Zstandard.Net.dll": {}
  1189. },
  1190. "runtime": {
  1191. "lib/net5.0/MySql.Data.dll": {
  1192. "related": ".xml"
  1193. },
  1194. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1195. "lib/net5.0/Zstandard.Net.dll": {}
  1196. }
  1197. },
  1198. "MySqlConnector/1.1.0": {
  1199. "type": "package",
  1200. "compile": {
  1201. "lib/net5.0/MySqlConnector.dll": {
  1202. "related": ".xml"
  1203. }
  1204. },
  1205. "runtime": {
  1206. "lib/net5.0/MySqlConnector.dll": {
  1207. "related": ".xml"
  1208. }
  1209. }
  1210. },
  1211. "NETStandard.Library/1.6.1": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "Microsoft.NETCore.Platforms": "1.1.0",
  1215. "Microsoft.Win32.Primitives": "4.3.0",
  1216. "System.AppContext": "4.3.0",
  1217. "System.Collections": "4.3.0",
  1218. "System.Collections.Concurrent": "4.3.0",
  1219. "System.Console": "4.3.0",
  1220. "System.Diagnostics.Debug": "4.3.0",
  1221. "System.Diagnostics.Tools": "4.3.0",
  1222. "System.Diagnostics.Tracing": "4.3.0",
  1223. "System.Globalization": "4.3.0",
  1224. "System.Globalization.Calendars": "4.3.0",
  1225. "System.IO": "4.3.0",
  1226. "System.IO.Compression": "4.3.0",
  1227. "System.IO.Compression.ZipFile": "4.3.0",
  1228. "System.IO.FileSystem": "4.3.0",
  1229. "System.IO.FileSystem.Primitives": "4.3.0",
  1230. "System.Linq": "4.3.0",
  1231. "System.Linq.Expressions": "4.3.0",
  1232. "System.Net.Http": "4.3.0",
  1233. "System.Net.Primitives": "4.3.0",
  1234. "System.Net.Sockets": "4.3.0",
  1235. "System.ObjectModel": "4.3.0",
  1236. "System.Reflection": "4.3.0",
  1237. "System.Reflection.Extensions": "4.3.0",
  1238. "System.Reflection.Primitives": "4.3.0",
  1239. "System.Resources.ResourceManager": "4.3.0",
  1240. "System.Runtime": "4.3.0",
  1241. "System.Runtime.Extensions": "4.3.0",
  1242. "System.Runtime.Handles": "4.3.0",
  1243. "System.Runtime.InteropServices": "4.3.0",
  1244. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1245. "System.Runtime.Numerics": "4.3.0",
  1246. "System.Security.Cryptography.Algorithms": "4.3.0",
  1247. "System.Security.Cryptography.Encoding": "4.3.0",
  1248. "System.Security.Cryptography.Primitives": "4.3.0",
  1249. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1250. "System.Text.Encoding": "4.3.0",
  1251. "System.Text.Encoding.Extensions": "4.3.0",
  1252. "System.Text.RegularExpressions": "4.3.0",
  1253. "System.Threading": "4.3.0",
  1254. "System.Threading.Tasks": "4.3.0",
  1255. "System.Threading.Timer": "4.3.0",
  1256. "System.Xml.ReaderWriter": "4.3.0",
  1257. "System.Xml.XDocument": "4.3.0"
  1258. }
  1259. },
  1260. "Newtonsoft.Json/13.0.1": {
  1261. "type": "package",
  1262. "compile": {
  1263. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1264. "related": ".xml"
  1265. }
  1266. },
  1267. "runtime": {
  1268. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1269. "related": ".xml"
  1270. }
  1271. }
  1272. },
  1273. "Nito.AsyncEx.Coordination/5.0.0": {
  1274. "type": "package",
  1275. "dependencies": {
  1276. "Nito.AsyncEx.Tasks": "5.0.0",
  1277. "Nito.Collections.Deque": "1.0.4",
  1278. "Nito.Disposables": "2.0.0"
  1279. },
  1280. "compile": {
  1281. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1282. "related": ".xml"
  1283. }
  1284. },
  1285. "runtime": {
  1286. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1287. "related": ".xml"
  1288. }
  1289. }
  1290. },
  1291. "Nito.AsyncEx.Tasks/5.0.0": {
  1292. "type": "package",
  1293. "dependencies": {
  1294. "Nito.Disposables": "2.0.0"
  1295. },
  1296. "compile": {
  1297. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1298. "related": ".xml"
  1299. }
  1300. },
  1301. "runtime": {
  1302. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1303. "related": ".xml"
  1304. }
  1305. }
  1306. },
  1307. "Nito.Collections.Deque/1.0.4": {
  1308. "type": "package",
  1309. "compile": {
  1310. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1311. "related": ".xml"
  1312. }
  1313. },
  1314. "runtime": {
  1315. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1316. "related": ".xml"
  1317. }
  1318. }
  1319. },
  1320. "Nito.Disposables/2.0.0": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "System.Collections.Immutable": "1.4.0"
  1324. },
  1325. "compile": {
  1326. "lib/netstandard2.0/Nito.Disposables.dll": {
  1327. "related": ".pdb;.xml"
  1328. }
  1329. },
  1330. "runtime": {
  1331. "lib/netstandard2.0/Nito.Disposables.dll": {
  1332. "related": ".pdb;.xml"
  1333. }
  1334. }
  1335. },
  1336. "NodaTime/2.4.7": {
  1337. "type": "package",
  1338. "compile": {
  1339. "lib/netstandard2.0/NodaTime.dll": {
  1340. "related": ".pdb;.xml"
  1341. }
  1342. },
  1343. "runtime": {
  1344. "lib/netstandard2.0/NodaTime.dll": {
  1345. "related": ".pdb;.xml"
  1346. }
  1347. }
  1348. },
  1349. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1350. "type": "package",
  1351. "dependencies": {
  1352. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1353. "MySqlConnector": "1.1.0"
  1354. },
  1355. "compile": {
  1356. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1357. "related": ".xml"
  1358. }
  1359. },
  1360. "runtime": {
  1361. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1362. "related": ".xml"
  1363. }
  1364. }
  1365. },
  1366. "QRCoder/1.4.3": {
  1367. "type": "package",
  1368. "dependencies": {
  1369. "System.Drawing.Common": "5.0.3"
  1370. },
  1371. "compile": {
  1372. "lib/net5.0/QRCoder.dll": {}
  1373. },
  1374. "runtime": {
  1375. "lib/net5.0/QRCoder.dll": {}
  1376. }
  1377. },
  1378. "Quartz/3.3.3": {
  1379. "type": "package",
  1380. "dependencies": {
  1381. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1382. "System.Configuration.ConfigurationManager": "4.7.0",
  1383. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1384. },
  1385. "compile": {
  1386. "lib/netstandard2.0/Quartz.dll": {
  1387. "related": ".xml"
  1388. }
  1389. },
  1390. "runtime": {
  1391. "lib/netstandard2.0/Quartz.dll": {
  1392. "related": ".xml"
  1393. }
  1394. }
  1395. },
  1396. "RabbitMQ.Client/6.8.1": {
  1397. "type": "package",
  1398. "dependencies": {
  1399. "System.Memory": "4.5.5",
  1400. "System.Threading.Channels": "7.0.0"
  1401. },
  1402. "compile": {
  1403. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1404. "related": ".xml"
  1405. }
  1406. },
  1407. "runtime": {
  1408. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1409. "related": ".xml"
  1410. }
  1411. }
  1412. },
  1413. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1414. "type": "package",
  1415. "runtimeTargets": {
  1416. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1417. "assetType": "native",
  1418. "rid": "debian.8-x64"
  1419. }
  1420. }
  1421. },
  1422. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1423. "type": "package",
  1424. "runtimeTargets": {
  1425. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1426. "assetType": "native",
  1427. "rid": "fedora.23-x64"
  1428. }
  1429. }
  1430. },
  1431. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1432. "type": "package",
  1433. "runtimeTargets": {
  1434. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1435. "assetType": "native",
  1436. "rid": "fedora.24-x64"
  1437. }
  1438. }
  1439. },
  1440. "runtime.native.System/4.3.0": {
  1441. "type": "package",
  1442. "dependencies": {
  1443. "Microsoft.NETCore.Platforms": "1.1.0",
  1444. "Microsoft.NETCore.Targets": "1.1.0"
  1445. },
  1446. "compile": {
  1447. "lib/netstandard1.0/_._": {}
  1448. },
  1449. "runtime": {
  1450. "lib/netstandard1.0/_._": {}
  1451. }
  1452. },
  1453. "runtime.native.System.IO.Compression/4.3.0": {
  1454. "type": "package",
  1455. "dependencies": {
  1456. "Microsoft.NETCore.Platforms": "1.1.0",
  1457. "Microsoft.NETCore.Targets": "1.1.0"
  1458. },
  1459. "compile": {
  1460. "lib/netstandard1.0/_._": {}
  1461. },
  1462. "runtime": {
  1463. "lib/netstandard1.0/_._": {}
  1464. }
  1465. },
  1466. "runtime.native.System.Net.Http/4.3.0": {
  1467. "type": "package",
  1468. "dependencies": {
  1469. "Microsoft.NETCore.Platforms": "1.1.0",
  1470. "Microsoft.NETCore.Targets": "1.1.0"
  1471. },
  1472. "compile": {
  1473. "lib/netstandard1.0/_._": {}
  1474. },
  1475. "runtime": {
  1476. "lib/netstandard1.0/_._": {}
  1477. }
  1478. },
  1479. "runtime.native.System.Net.Security/4.3.0": {
  1480. "type": "package",
  1481. "dependencies": {
  1482. "Microsoft.NETCore.Platforms": "1.1.0",
  1483. "Microsoft.NETCore.Targets": "1.1.0"
  1484. },
  1485. "compile": {
  1486. "lib/netstandard1.0/_._": {}
  1487. },
  1488. "runtime": {
  1489. "lib/netstandard1.0/_._": {}
  1490. }
  1491. },
  1492. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1496. },
  1497. "compile": {
  1498. "lib/netstandard1.0/_._": {}
  1499. },
  1500. "runtime": {
  1501. "lib/netstandard1.0/_._": {}
  1502. }
  1503. },
  1504. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1508. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1509. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1510. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1511. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1512. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1513. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1514. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1515. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1516. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1517. },
  1518. "compile": {
  1519. "lib/netstandard1.0/_._": {}
  1520. },
  1521. "runtime": {
  1522. "lib/netstandard1.0/_._": {}
  1523. }
  1524. },
  1525. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1526. "type": "package",
  1527. "runtimeTargets": {
  1528. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1529. "assetType": "native",
  1530. "rid": "opensuse.13.2-x64"
  1531. }
  1532. }
  1533. },
  1534. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1535. "type": "package",
  1536. "runtimeTargets": {
  1537. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1538. "assetType": "native",
  1539. "rid": "opensuse.42.1-x64"
  1540. }
  1541. }
  1542. },
  1543. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1544. "type": "package",
  1545. "runtimeTargets": {
  1546. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1547. "assetType": "native",
  1548. "rid": "osx.10.10-x64"
  1549. }
  1550. }
  1551. },
  1552. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1553. "type": "package",
  1554. "runtimeTargets": {
  1555. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1556. "assetType": "native",
  1557. "rid": "osx.10.10-x64"
  1558. }
  1559. }
  1560. },
  1561. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1562. "type": "package",
  1563. "runtimeTargets": {
  1564. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1565. "assetType": "native",
  1566. "rid": "rhel.7-x64"
  1567. }
  1568. }
  1569. },
  1570. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1571. "type": "package",
  1572. "runtimeTargets": {
  1573. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1574. "assetType": "native",
  1575. "rid": "ubuntu.14.04-x64"
  1576. }
  1577. }
  1578. },
  1579. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1580. "type": "package",
  1581. "runtimeTargets": {
  1582. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1583. "assetType": "native",
  1584. "rid": "ubuntu.16.04-x64"
  1585. }
  1586. }
  1587. },
  1588. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1589. "type": "package",
  1590. "runtimeTargets": {
  1591. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1592. "assetType": "native",
  1593. "rid": "ubuntu.16.10-x64"
  1594. }
  1595. }
  1596. },
  1597. "SixLabors.ImageSharp/2.1.6": {
  1598. "type": "package",
  1599. "dependencies": {
  1600. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1601. "System.Text.Encoding.CodePages": "5.0.0"
  1602. },
  1603. "compile": {
  1604. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1605. "related": ".xml"
  1606. }
  1607. },
  1608. "runtime": {
  1609. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1610. "related": ".xml"
  1611. }
  1612. }
  1613. },
  1614. "SSH.NET/2020.0.0-beta1": {
  1615. "type": "package",
  1616. "dependencies": {
  1617. "SshNet.Security.Cryptography": "[1.3.0]"
  1618. },
  1619. "compile": {
  1620. "lib/netstandard2.0/Renci.SshNet.dll": {
  1621. "related": ".xml"
  1622. }
  1623. },
  1624. "runtime": {
  1625. "lib/netstandard2.0/Renci.SshNet.dll": {
  1626. "related": ".xml"
  1627. }
  1628. }
  1629. },
  1630. "SshNet.Security.Cryptography/1.3.0": {
  1631. "type": "package",
  1632. "compile": {
  1633. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1639. "related": ".xml"
  1640. }
  1641. }
  1642. },
  1643. "StackExchange.Redis/1.2.4": {
  1644. "type": "package",
  1645. "dependencies": {
  1646. "NETStandard.Library": "1.6.1",
  1647. "System.Collections": "4.3.0",
  1648. "System.Collections.Concurrent": "4.3.0",
  1649. "System.Collections.NonGeneric": "4.3.0",
  1650. "System.Diagnostics.Tools": "4.3.0",
  1651. "System.IO.Compression": "4.3.0",
  1652. "System.IO.FileSystem": "4.3.0",
  1653. "System.Linq": "4.3.0",
  1654. "System.Net.NameResolution": "4.3.0",
  1655. "System.Net.Security": "4.3.0",
  1656. "System.Net.Sockets": "4.3.0",
  1657. "System.Reflection.Emit": "4.3.0",
  1658. "System.Reflection.Emit.Lightweight": "4.3.0",
  1659. "System.Reflection.TypeExtensions": "4.3.0",
  1660. "System.Runtime.Extensions": "4.3.0",
  1661. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1662. "System.Security.Cryptography.Algorithms": "4.3.0",
  1663. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1664. "System.Text.RegularExpressions": "4.3.0",
  1665. "System.Threading": "4.3.0",
  1666. "System.Threading.Thread": "4.3.0",
  1667. "System.Threading.ThreadPool": "4.3.0",
  1668. "System.Threading.Timer": "4.3.0"
  1669. },
  1670. "compile": {
  1671. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1672. "related": ".xml"
  1673. }
  1674. },
  1675. "runtime": {
  1676. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1677. "related": ".xml"
  1678. }
  1679. }
  1680. },
  1681. "Swashbuckle.AspNetCore/5.6.3": {
  1682. "type": "package",
  1683. "dependencies": {
  1684. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1685. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1686. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1687. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1688. },
  1689. "build": {
  1690. "build/Swashbuckle.AspNetCore.props": {}
  1691. }
  1692. },
  1693. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1694. "type": "package",
  1695. "dependencies": {
  1696. "Microsoft.OpenApi": "1.2.3"
  1697. },
  1698. "compile": {
  1699. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1700. "related": ".pdb;.xml"
  1701. }
  1702. },
  1703. "runtime": {
  1704. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1705. "related": ".pdb;.xml"
  1706. }
  1707. },
  1708. "frameworkReferences": [
  1709. "Microsoft.AspNetCore.App"
  1710. ]
  1711. },
  1712. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1713. "type": "package",
  1714. "dependencies": {
  1715. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1716. },
  1717. "compile": {
  1718. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1719. "related": ".pdb;.xml"
  1720. }
  1721. },
  1722. "runtime": {
  1723. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1724. "related": ".pdb;.xml"
  1725. }
  1726. },
  1727. "frameworkReferences": [
  1728. "Microsoft.AspNetCore.App"
  1729. ]
  1730. },
  1731. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1732. "type": "package",
  1733. "compile": {
  1734. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1735. "related": ".pdb;.xml"
  1736. }
  1737. },
  1738. "runtime": {
  1739. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1740. "related": ".pdb;.xml"
  1741. }
  1742. },
  1743. "frameworkReferences": [
  1744. "Microsoft.AspNetCore.App"
  1745. ]
  1746. },
  1747. "System.AppContext/4.3.0": {
  1748. "type": "package",
  1749. "dependencies": {
  1750. "System.Runtime": "4.3.0"
  1751. },
  1752. "compile": {
  1753. "ref/netstandard1.6/System.AppContext.dll": {
  1754. "related": ".xml"
  1755. }
  1756. },
  1757. "runtime": {
  1758. "lib/netstandard1.6/System.AppContext.dll": {}
  1759. }
  1760. },
  1761. "System.Buffers/4.5.1": {
  1762. "type": "package",
  1763. "compile": {
  1764. "ref/netcoreapp2.0/_._": {}
  1765. },
  1766. "runtime": {
  1767. "lib/netcoreapp2.0/_._": {}
  1768. }
  1769. },
  1770. "System.Collections/4.3.0": {
  1771. "type": "package",
  1772. "dependencies": {
  1773. "Microsoft.NETCore.Platforms": "1.1.0",
  1774. "Microsoft.NETCore.Targets": "1.1.0",
  1775. "System.Runtime": "4.3.0"
  1776. },
  1777. "compile": {
  1778. "ref/netstandard1.3/System.Collections.dll": {
  1779. "related": ".xml"
  1780. }
  1781. }
  1782. },
  1783. "System.Collections.Concurrent/4.3.0": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "System.Collections": "4.3.0",
  1787. "System.Diagnostics.Debug": "4.3.0",
  1788. "System.Diagnostics.Tracing": "4.3.0",
  1789. "System.Globalization": "4.3.0",
  1790. "System.Reflection": "4.3.0",
  1791. "System.Resources.ResourceManager": "4.3.0",
  1792. "System.Runtime": "4.3.0",
  1793. "System.Runtime.Extensions": "4.3.0",
  1794. "System.Threading": "4.3.0",
  1795. "System.Threading.Tasks": "4.3.0"
  1796. },
  1797. "compile": {
  1798. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1799. "related": ".xml"
  1800. }
  1801. },
  1802. "runtime": {
  1803. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1804. }
  1805. },
  1806. "System.Collections.Immutable/5.0.0": {
  1807. "type": "package",
  1808. "compile": {
  1809. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1810. "related": ".xml"
  1811. }
  1812. },
  1813. "runtime": {
  1814. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1815. "related": ".xml"
  1816. }
  1817. }
  1818. },
  1819. "System.Collections.NonGeneric/4.3.0": {
  1820. "type": "package",
  1821. "dependencies": {
  1822. "System.Diagnostics.Debug": "4.3.0",
  1823. "System.Globalization": "4.3.0",
  1824. "System.Resources.ResourceManager": "4.3.0",
  1825. "System.Runtime": "4.3.0",
  1826. "System.Runtime.Extensions": "4.3.0",
  1827. "System.Threading": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1831. "related": ".xml"
  1832. }
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1836. }
  1837. },
  1838. "System.Collections.Specialized/4.3.0": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "System.Collections.NonGeneric": "4.3.0",
  1842. "System.Globalization": "4.3.0",
  1843. "System.Globalization.Extensions": "4.3.0",
  1844. "System.Resources.ResourceManager": "4.3.0",
  1845. "System.Runtime": "4.3.0",
  1846. "System.Runtime.Extensions": "4.3.0",
  1847. "System.Threading": "4.3.0"
  1848. },
  1849. "compile": {
  1850. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1851. "related": ".xml"
  1852. }
  1853. },
  1854. "runtime": {
  1855. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1856. }
  1857. },
  1858. "System.ComponentModel/4.3.0": {
  1859. "type": "package",
  1860. "dependencies": {
  1861. "System.Runtime": "4.3.0"
  1862. },
  1863. "compile": {
  1864. "ref/netstandard1.0/System.ComponentModel.dll": {
  1865. "related": ".xml"
  1866. }
  1867. },
  1868. "runtime": {
  1869. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1870. }
  1871. },
  1872. "System.ComponentModel.Annotations/5.0.0": {
  1873. "type": "package",
  1874. "compile": {
  1875. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1876. "related": ".xml"
  1877. }
  1878. },
  1879. "runtime": {
  1880. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1881. "related": ".xml"
  1882. }
  1883. }
  1884. },
  1885. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1886. "type": "package",
  1887. "dependencies": {
  1888. "System.Resources.ResourceManager": "4.3.0",
  1889. "System.Runtime": "4.3.0",
  1890. "System.Threading": "4.3.0",
  1891. "System.Threading.Tasks": "4.3.0"
  1892. },
  1893. "compile": {
  1894. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1895. "related": ".xml"
  1896. }
  1897. },
  1898. "runtime": {
  1899. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1900. }
  1901. },
  1902. "System.ComponentModel.Primitives/4.3.0": {
  1903. "type": "package",
  1904. "dependencies": {
  1905. "System.ComponentModel": "4.3.0",
  1906. "System.Resources.ResourceManager": "4.3.0",
  1907. "System.Runtime": "4.3.0"
  1908. },
  1909. "compile": {
  1910. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1911. "related": ".xml"
  1912. }
  1913. },
  1914. "runtime": {
  1915. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1916. }
  1917. },
  1918. "System.ComponentModel.TypeConverter/4.3.0": {
  1919. "type": "package",
  1920. "dependencies": {
  1921. "System.Collections": "4.3.0",
  1922. "System.Collections.NonGeneric": "4.3.0",
  1923. "System.Collections.Specialized": "4.3.0",
  1924. "System.ComponentModel": "4.3.0",
  1925. "System.ComponentModel.Primitives": "4.3.0",
  1926. "System.Globalization": "4.3.0",
  1927. "System.Linq": "4.3.0",
  1928. "System.Reflection": "4.3.0",
  1929. "System.Reflection.Extensions": "4.3.0",
  1930. "System.Reflection.Primitives": "4.3.0",
  1931. "System.Reflection.TypeExtensions": "4.3.0",
  1932. "System.Resources.ResourceManager": "4.3.0",
  1933. "System.Runtime": "4.3.0",
  1934. "System.Runtime.Extensions": "4.3.0",
  1935. "System.Threading": "4.3.0"
  1936. },
  1937. "compile": {
  1938. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1939. "related": ".xml"
  1940. }
  1941. },
  1942. "runtime": {
  1943. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1944. }
  1945. },
  1946. "System.Configuration.ConfigurationManager/4.7.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1950. "System.Security.Permissions": "4.7.0"
  1951. },
  1952. "compile": {
  1953. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1954. "related": ".xml"
  1955. }
  1956. },
  1957. "runtime": {
  1958. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1959. "related": ".xml"
  1960. }
  1961. }
  1962. },
  1963. "System.Console/4.3.0": {
  1964. "type": "package",
  1965. "dependencies": {
  1966. "Microsoft.NETCore.Platforms": "1.1.0",
  1967. "Microsoft.NETCore.Targets": "1.1.0",
  1968. "System.IO": "4.3.0",
  1969. "System.Runtime": "4.3.0",
  1970. "System.Text.Encoding": "4.3.0"
  1971. },
  1972. "compile": {
  1973. "ref/netstandard1.3/System.Console.dll": {
  1974. "related": ".xml"
  1975. }
  1976. }
  1977. },
  1978. "System.Diagnostics.Debug/4.3.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "Microsoft.NETCore.Platforms": "1.1.0",
  1982. "Microsoft.NETCore.Targets": "1.1.0",
  1983. "System.Runtime": "4.3.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1987. "related": ".xml"
  1988. }
  1989. }
  1990. },
  1991. "System.Diagnostics.DiagnosticSource/6.0.2": {
  1992. "type": "package",
  1993. "dependencies": {
  1994. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1995. },
  1996. "compile": {
  1997. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1998. "related": ".xml"
  1999. }
  2000. },
  2001. "runtime": {
  2002. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2003. "related": ".xml"
  2004. }
  2005. },
  2006. "build": {
  2007. "buildTransitive/netcoreapp3.1/_._": {}
  2008. }
  2009. },
  2010. "System.Diagnostics.Tools/4.3.0": {
  2011. "type": "package",
  2012. "dependencies": {
  2013. "Microsoft.NETCore.Platforms": "1.1.0",
  2014. "Microsoft.NETCore.Targets": "1.1.0",
  2015. "System.Runtime": "4.3.0"
  2016. },
  2017. "compile": {
  2018. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2019. "related": ".xml"
  2020. }
  2021. }
  2022. },
  2023. "System.Diagnostics.TraceSource/4.3.0": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "Microsoft.NETCore.Platforms": "1.1.0",
  2027. "System.Collections": "4.3.0",
  2028. "System.Diagnostics.Debug": "4.3.0",
  2029. "System.Globalization": "4.3.0",
  2030. "System.Resources.ResourceManager": "4.3.0",
  2031. "System.Runtime": "4.3.0",
  2032. "System.Runtime.Extensions": "4.3.0",
  2033. "System.Threading": "4.3.0",
  2034. "runtime.native.System": "4.3.0"
  2035. },
  2036. "compile": {
  2037. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2038. "related": ".xml"
  2039. }
  2040. },
  2041. "runtimeTargets": {
  2042. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2043. "assetType": "runtime",
  2044. "rid": "unix"
  2045. },
  2046. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2047. "assetType": "runtime",
  2048. "rid": "win"
  2049. }
  2050. }
  2051. },
  2052. "System.Diagnostics.Tracing/4.3.0": {
  2053. "type": "package",
  2054. "dependencies": {
  2055. "Microsoft.NETCore.Platforms": "1.1.0",
  2056. "Microsoft.NETCore.Targets": "1.1.0",
  2057. "System.Runtime": "4.3.0"
  2058. },
  2059. "compile": {
  2060. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2061. "related": ".xml"
  2062. }
  2063. }
  2064. },
  2065. "System.Drawing.Common/5.0.3": {
  2066. "type": "package",
  2067. "dependencies": {
  2068. "Microsoft.Win32.SystemEvents": "5.0.0"
  2069. },
  2070. "compile": {
  2071. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2072. "related": ".xml"
  2073. }
  2074. },
  2075. "runtime": {
  2076. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2077. "related": ".xml"
  2078. }
  2079. },
  2080. "runtimeTargets": {
  2081. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2082. "assetType": "runtime",
  2083. "rid": "unix"
  2084. },
  2085. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2086. "assetType": "runtime",
  2087. "rid": "win"
  2088. }
  2089. }
  2090. },
  2091. "System.Dynamic.Runtime/4.3.0": {
  2092. "type": "package",
  2093. "dependencies": {
  2094. "System.Collections": "4.3.0",
  2095. "System.Diagnostics.Debug": "4.3.0",
  2096. "System.Linq": "4.3.0",
  2097. "System.Linq.Expressions": "4.3.0",
  2098. "System.ObjectModel": "4.3.0",
  2099. "System.Reflection": "4.3.0",
  2100. "System.Reflection.Emit": "4.3.0",
  2101. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2102. "System.Reflection.Primitives": "4.3.0",
  2103. "System.Reflection.TypeExtensions": "4.3.0",
  2104. "System.Resources.ResourceManager": "4.3.0",
  2105. "System.Runtime": "4.3.0",
  2106. "System.Runtime.Extensions": "4.3.0",
  2107. "System.Threading": "4.3.0"
  2108. },
  2109. "compile": {
  2110. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2111. "related": ".xml"
  2112. }
  2113. },
  2114. "runtime": {
  2115. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2116. }
  2117. },
  2118. "System.Globalization/4.3.0": {
  2119. "type": "package",
  2120. "dependencies": {
  2121. "Microsoft.NETCore.Platforms": "1.1.0",
  2122. "Microsoft.NETCore.Targets": "1.1.0",
  2123. "System.Runtime": "4.3.0"
  2124. },
  2125. "compile": {
  2126. "ref/netstandard1.3/System.Globalization.dll": {
  2127. "related": ".xml"
  2128. }
  2129. }
  2130. },
  2131. "System.Globalization.Calendars/4.3.0": {
  2132. "type": "package",
  2133. "dependencies": {
  2134. "Microsoft.NETCore.Platforms": "1.1.0",
  2135. "Microsoft.NETCore.Targets": "1.1.0",
  2136. "System.Globalization": "4.3.0",
  2137. "System.Runtime": "4.3.0"
  2138. },
  2139. "compile": {
  2140. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2141. "related": ".xml"
  2142. }
  2143. }
  2144. },
  2145. "System.Globalization.Extensions/4.3.0": {
  2146. "type": "package",
  2147. "dependencies": {
  2148. "Microsoft.NETCore.Platforms": "1.1.0",
  2149. "System.Globalization": "4.3.0",
  2150. "System.Resources.ResourceManager": "4.3.0",
  2151. "System.Runtime": "4.3.0",
  2152. "System.Runtime.Extensions": "4.3.0",
  2153. "System.Runtime.InteropServices": "4.3.0"
  2154. },
  2155. "compile": {
  2156. "ref/netstandard1.3/_._": {
  2157. "related": ".xml"
  2158. }
  2159. },
  2160. "runtimeTargets": {
  2161. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2162. "assetType": "runtime",
  2163. "rid": "unix"
  2164. },
  2165. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2166. "assetType": "runtime",
  2167. "rid": "win"
  2168. }
  2169. }
  2170. },
  2171. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  2172. "type": "package",
  2173. "dependencies": {
  2174. "Microsoft.IdentityModel.JsonWebTokens": "8.6.0",
  2175. "Microsoft.IdentityModel.Tokens": "8.6.0"
  2176. },
  2177. "compile": {
  2178. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2179. "related": ".xml"
  2180. }
  2181. },
  2182. "runtime": {
  2183. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2184. "related": ".xml"
  2185. }
  2186. }
  2187. },
  2188. "System.IO/4.3.0": {
  2189. "type": "package",
  2190. "dependencies": {
  2191. "Microsoft.NETCore.Platforms": "1.1.0",
  2192. "Microsoft.NETCore.Targets": "1.1.0",
  2193. "System.Runtime": "4.3.0",
  2194. "System.Text.Encoding": "4.3.0",
  2195. "System.Threading.Tasks": "4.3.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard1.5/System.IO.dll": {
  2199. "related": ".xml"
  2200. }
  2201. }
  2202. },
  2203. "System.IO.Compression/4.3.0": {
  2204. "type": "package",
  2205. "dependencies": {
  2206. "Microsoft.NETCore.Platforms": "1.1.0",
  2207. "System.Buffers": "4.3.0",
  2208. "System.Collections": "4.3.0",
  2209. "System.Diagnostics.Debug": "4.3.0",
  2210. "System.IO": "4.3.0",
  2211. "System.Resources.ResourceManager": "4.3.0",
  2212. "System.Runtime": "4.3.0",
  2213. "System.Runtime.Extensions": "4.3.0",
  2214. "System.Runtime.Handles": "4.3.0",
  2215. "System.Runtime.InteropServices": "4.3.0",
  2216. "System.Text.Encoding": "4.3.0",
  2217. "System.Threading": "4.3.0",
  2218. "System.Threading.Tasks": "4.3.0",
  2219. "runtime.native.System": "4.3.0",
  2220. "runtime.native.System.IO.Compression": "4.3.0"
  2221. },
  2222. "compile": {
  2223. "ref/netstandard1.3/System.IO.Compression.dll": {
  2224. "related": ".xml"
  2225. }
  2226. },
  2227. "runtimeTargets": {
  2228. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2229. "assetType": "runtime",
  2230. "rid": "unix"
  2231. },
  2232. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2233. "assetType": "runtime",
  2234. "rid": "win"
  2235. }
  2236. }
  2237. },
  2238. "System.IO.Compression.ZipFile/4.3.0": {
  2239. "type": "package",
  2240. "dependencies": {
  2241. "System.Buffers": "4.3.0",
  2242. "System.IO": "4.3.0",
  2243. "System.IO.Compression": "4.3.0",
  2244. "System.IO.FileSystem": "4.3.0",
  2245. "System.IO.FileSystem.Primitives": "4.3.0",
  2246. "System.Resources.ResourceManager": "4.3.0",
  2247. "System.Runtime": "4.3.0",
  2248. "System.Runtime.Extensions": "4.3.0",
  2249. "System.Text.Encoding": "4.3.0"
  2250. },
  2251. "compile": {
  2252. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2253. "related": ".xml"
  2254. }
  2255. },
  2256. "runtime": {
  2257. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2258. }
  2259. },
  2260. "System.IO.FileSystem/4.3.0": {
  2261. "type": "package",
  2262. "dependencies": {
  2263. "Microsoft.NETCore.Platforms": "1.1.0",
  2264. "Microsoft.NETCore.Targets": "1.1.0",
  2265. "System.IO": "4.3.0",
  2266. "System.IO.FileSystem.Primitives": "4.3.0",
  2267. "System.Runtime": "4.3.0",
  2268. "System.Runtime.Handles": "4.3.0",
  2269. "System.Text.Encoding": "4.3.0",
  2270. "System.Threading.Tasks": "4.3.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2274. "related": ".xml"
  2275. }
  2276. }
  2277. },
  2278. "System.IO.FileSystem.Primitives/4.3.0": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "System.Runtime": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2285. "related": ".xml"
  2286. }
  2287. },
  2288. "runtime": {
  2289. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2290. }
  2291. },
  2292. "System.IO.Pipelines/5.0.0": {
  2293. "type": "package",
  2294. "compile": {
  2295. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2296. "related": ".xml"
  2297. }
  2298. },
  2299. "runtime": {
  2300. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2301. "related": ".xml"
  2302. }
  2303. }
  2304. },
  2305. "System.Linq/4.3.0": {
  2306. "type": "package",
  2307. "dependencies": {
  2308. "System.Collections": "4.3.0",
  2309. "System.Diagnostics.Debug": "4.3.0",
  2310. "System.Resources.ResourceManager": "4.3.0",
  2311. "System.Runtime": "4.3.0",
  2312. "System.Runtime.Extensions": "4.3.0"
  2313. },
  2314. "compile": {
  2315. "ref/netstandard1.6/System.Linq.dll": {
  2316. "related": ".xml"
  2317. }
  2318. },
  2319. "runtime": {
  2320. "lib/netstandard1.6/System.Linq.dll": {}
  2321. }
  2322. },
  2323. "System.Linq.Expressions/4.3.0": {
  2324. "type": "package",
  2325. "dependencies": {
  2326. "System.Collections": "4.3.0",
  2327. "System.Diagnostics.Debug": "4.3.0",
  2328. "System.Globalization": "4.3.0",
  2329. "System.IO": "4.3.0",
  2330. "System.Linq": "4.3.0",
  2331. "System.ObjectModel": "4.3.0",
  2332. "System.Reflection": "4.3.0",
  2333. "System.Reflection.Emit": "4.3.0",
  2334. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2335. "System.Reflection.Emit.Lightweight": "4.3.0",
  2336. "System.Reflection.Extensions": "4.3.0",
  2337. "System.Reflection.Primitives": "4.3.0",
  2338. "System.Reflection.TypeExtensions": "4.3.0",
  2339. "System.Resources.ResourceManager": "4.3.0",
  2340. "System.Runtime": "4.3.0",
  2341. "System.Runtime.Extensions": "4.3.0",
  2342. "System.Threading": "4.3.0"
  2343. },
  2344. "compile": {
  2345. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2346. "related": ".xml"
  2347. }
  2348. },
  2349. "runtime": {
  2350. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2351. }
  2352. },
  2353. "System.Memory/4.5.5": {
  2354. "type": "package",
  2355. "compile": {
  2356. "ref/netcoreapp2.1/_._": {}
  2357. },
  2358. "runtime": {
  2359. "lib/netcoreapp2.1/_._": {}
  2360. }
  2361. },
  2362. "System.Net.Http/4.3.2": {
  2363. "type": "package",
  2364. "dependencies": {
  2365. "Microsoft.NETCore.Platforms": "1.1.0",
  2366. "System.Collections": "4.3.0",
  2367. "System.Diagnostics.Debug": "4.3.0",
  2368. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2369. "System.Diagnostics.Tracing": "4.3.0",
  2370. "System.Globalization": "4.3.0",
  2371. "System.Globalization.Extensions": "4.3.0",
  2372. "System.IO": "4.3.0",
  2373. "System.IO.FileSystem": "4.3.0",
  2374. "System.Net.Primitives": "4.3.0",
  2375. "System.Resources.ResourceManager": "4.3.0",
  2376. "System.Runtime": "4.3.0",
  2377. "System.Runtime.Extensions": "4.3.0",
  2378. "System.Runtime.Handles": "4.3.0",
  2379. "System.Runtime.InteropServices": "4.3.0",
  2380. "System.Security.Cryptography.Algorithms": "4.3.0",
  2381. "System.Security.Cryptography.Encoding": "4.3.0",
  2382. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2383. "System.Security.Cryptography.Primitives": "4.3.0",
  2384. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2385. "System.Text.Encoding": "4.3.0",
  2386. "System.Threading": "4.3.0",
  2387. "System.Threading.Tasks": "4.3.0",
  2388. "runtime.native.System": "4.3.0",
  2389. "runtime.native.System.Net.Http": "4.3.0",
  2390. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2391. },
  2392. "compile": {
  2393. "ref/netstandard1.3/System.Net.Http.dll": {}
  2394. },
  2395. "runtimeTargets": {
  2396. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2397. "assetType": "runtime",
  2398. "rid": "unix"
  2399. },
  2400. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2401. "assetType": "runtime",
  2402. "rid": "win"
  2403. }
  2404. }
  2405. },
  2406. "System.Net.NameResolution/4.3.0": {
  2407. "type": "package",
  2408. "dependencies": {
  2409. "Microsoft.NETCore.Platforms": "1.1.0",
  2410. "System.Collections": "4.3.0",
  2411. "System.Diagnostics.Tracing": "4.3.0",
  2412. "System.Globalization": "4.3.0",
  2413. "System.Net.Primitives": "4.3.0",
  2414. "System.Resources.ResourceManager": "4.3.0",
  2415. "System.Runtime": "4.3.0",
  2416. "System.Runtime.Extensions": "4.3.0",
  2417. "System.Runtime.Handles": "4.3.0",
  2418. "System.Runtime.InteropServices": "4.3.0",
  2419. "System.Security.Principal.Windows": "4.3.0",
  2420. "System.Threading": "4.3.0",
  2421. "System.Threading.Tasks": "4.3.0",
  2422. "runtime.native.System": "4.3.0"
  2423. },
  2424. "compile": {
  2425. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2426. "related": ".xml"
  2427. }
  2428. },
  2429. "runtimeTargets": {
  2430. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2431. "assetType": "runtime",
  2432. "rid": "unix"
  2433. },
  2434. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "win"
  2437. }
  2438. }
  2439. },
  2440. "System.Net.Primitives/4.3.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "Microsoft.NETCore.Platforms": "1.1.0",
  2444. "Microsoft.NETCore.Targets": "1.1.0",
  2445. "System.Runtime": "4.3.0",
  2446. "System.Runtime.Handles": "4.3.0"
  2447. },
  2448. "compile": {
  2449. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2450. "related": ".xml"
  2451. }
  2452. }
  2453. },
  2454. "System.Net.Security/4.3.0": {
  2455. "type": "package",
  2456. "dependencies": {
  2457. "Microsoft.NETCore.Platforms": "1.1.0",
  2458. "Microsoft.Win32.Primitives": "4.3.0",
  2459. "System.Collections": "4.3.0",
  2460. "System.Collections.Concurrent": "4.3.0",
  2461. "System.Diagnostics.Tracing": "4.3.0",
  2462. "System.Globalization": "4.3.0",
  2463. "System.Globalization.Extensions": "4.3.0",
  2464. "System.IO": "4.3.0",
  2465. "System.Net.Primitives": "4.3.0",
  2466. "System.Resources.ResourceManager": "4.3.0",
  2467. "System.Runtime": "4.3.0",
  2468. "System.Runtime.Extensions": "4.3.0",
  2469. "System.Runtime.Handles": "4.3.0",
  2470. "System.Runtime.InteropServices": "4.3.0",
  2471. "System.Security.Claims": "4.3.0",
  2472. "System.Security.Cryptography.Algorithms": "4.3.0",
  2473. "System.Security.Cryptography.Encoding": "4.3.0",
  2474. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2475. "System.Security.Cryptography.Primitives": "4.3.0",
  2476. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2477. "System.Security.Principal": "4.3.0",
  2478. "System.Text.Encoding": "4.3.0",
  2479. "System.Threading": "4.3.0",
  2480. "System.Threading.Tasks": "4.3.0",
  2481. "System.Threading.ThreadPool": "4.3.0",
  2482. "runtime.native.System": "4.3.0",
  2483. "runtime.native.System.Net.Security": "4.3.0",
  2484. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2485. },
  2486. "compile": {
  2487. "ref/netstandard1.3/System.Net.Security.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtimeTargets": {
  2492. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2493. "assetType": "runtime",
  2494. "rid": "unix"
  2495. },
  2496. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "win"
  2499. }
  2500. }
  2501. },
  2502. "System.Net.Sockets/4.3.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "Microsoft.NETCore.Platforms": "1.1.0",
  2506. "Microsoft.NETCore.Targets": "1.1.0",
  2507. "System.IO": "4.3.0",
  2508. "System.Net.Primitives": "4.3.0",
  2509. "System.Runtime": "4.3.0",
  2510. "System.Threading.Tasks": "4.3.0"
  2511. },
  2512. "compile": {
  2513. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2514. "related": ".xml"
  2515. }
  2516. }
  2517. },
  2518. "System.ObjectModel/4.3.0": {
  2519. "type": "package",
  2520. "dependencies": {
  2521. "System.Collections": "4.3.0",
  2522. "System.Diagnostics.Debug": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0",
  2525. "System.Threading": "4.3.0"
  2526. },
  2527. "compile": {
  2528. "ref/netstandard1.3/System.ObjectModel.dll": {
  2529. "related": ".xml"
  2530. }
  2531. },
  2532. "runtime": {
  2533. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2534. }
  2535. },
  2536. "System.Reactive/4.4.1": {
  2537. "type": "package",
  2538. "compile": {
  2539. "lib/netcoreapp3.0/_._": {}
  2540. },
  2541. "runtime": {
  2542. "lib/netcoreapp3.0/_._": {}
  2543. },
  2544. "build": {
  2545. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2546. }
  2547. },
  2548. "System.Reflection/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "Microsoft.NETCore.Platforms": "1.1.0",
  2552. "Microsoft.NETCore.Targets": "1.1.0",
  2553. "System.IO": "4.3.0",
  2554. "System.Reflection.Primitives": "4.3.0",
  2555. "System.Runtime": "4.3.0"
  2556. },
  2557. "compile": {
  2558. "ref/netstandard1.5/System.Reflection.dll": {
  2559. "related": ".xml"
  2560. }
  2561. }
  2562. },
  2563. "System.Reflection.Emit/4.7.0": {
  2564. "type": "package",
  2565. "compile": {
  2566. "ref/netcoreapp2.0/_._": {}
  2567. },
  2568. "runtime": {
  2569. "lib/netcoreapp2.0/_._": {}
  2570. }
  2571. },
  2572. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2573. "type": "package",
  2574. "dependencies": {
  2575. "System.Reflection": "4.3.0",
  2576. "System.Reflection.Primitives": "4.3.0",
  2577. "System.Runtime": "4.3.0"
  2578. },
  2579. "compile": {
  2580. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2581. "related": ".xml"
  2582. }
  2583. },
  2584. "runtime": {
  2585. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2586. }
  2587. },
  2588. "System.Reflection.Emit.Lightweight/4.3.0": {
  2589. "type": "package",
  2590. "dependencies": {
  2591. "System.Reflection": "4.3.0",
  2592. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2593. "System.Reflection.Primitives": "4.3.0",
  2594. "System.Runtime": "4.3.0"
  2595. },
  2596. "compile": {
  2597. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2598. "related": ".xml"
  2599. }
  2600. },
  2601. "runtime": {
  2602. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2603. }
  2604. },
  2605. "System.Reflection.Extensions/4.3.0": {
  2606. "type": "package",
  2607. "dependencies": {
  2608. "Microsoft.NETCore.Platforms": "1.1.0",
  2609. "Microsoft.NETCore.Targets": "1.1.0",
  2610. "System.Reflection": "4.3.0",
  2611. "System.Runtime": "4.3.0"
  2612. },
  2613. "compile": {
  2614. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2615. "related": ".xml"
  2616. }
  2617. }
  2618. },
  2619. "System.Reflection.Primitives/4.3.0": {
  2620. "type": "package",
  2621. "dependencies": {
  2622. "Microsoft.NETCore.Platforms": "1.1.0",
  2623. "Microsoft.NETCore.Targets": "1.1.0",
  2624. "System.Runtime": "4.3.0"
  2625. },
  2626. "compile": {
  2627. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2628. "related": ".xml"
  2629. }
  2630. }
  2631. },
  2632. "System.Reflection.TypeExtensions/4.3.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "System.Reflection": "4.3.0",
  2636. "System.Runtime": "4.3.0"
  2637. },
  2638. "compile": {
  2639. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2640. "related": ".xml"
  2641. }
  2642. },
  2643. "runtime": {
  2644. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2645. }
  2646. },
  2647. "System.Resources.ResourceManager/4.3.0": {
  2648. "type": "package",
  2649. "dependencies": {
  2650. "Microsoft.NETCore.Platforms": "1.1.0",
  2651. "Microsoft.NETCore.Targets": "1.1.0",
  2652. "System.Globalization": "4.3.0",
  2653. "System.Reflection": "4.3.0",
  2654. "System.Runtime": "4.3.0"
  2655. },
  2656. "compile": {
  2657. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2658. "related": ".xml"
  2659. }
  2660. }
  2661. },
  2662. "System.Runtime/4.3.0": {
  2663. "type": "package",
  2664. "dependencies": {
  2665. "Microsoft.NETCore.Platforms": "1.1.0",
  2666. "Microsoft.NETCore.Targets": "1.1.0"
  2667. },
  2668. "compile": {
  2669. "ref/netstandard1.5/System.Runtime.dll": {
  2670. "related": ".xml"
  2671. }
  2672. }
  2673. },
  2674. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2675. "type": "package",
  2676. "compile": {
  2677. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2678. "related": ".xml"
  2679. }
  2680. },
  2681. "runtime": {
  2682. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2683. "related": ".xml"
  2684. }
  2685. },
  2686. "build": {
  2687. "buildTransitive/netcoreapp3.1/_._": {}
  2688. }
  2689. },
  2690. "System.Runtime.Extensions/4.3.0": {
  2691. "type": "package",
  2692. "dependencies": {
  2693. "Microsoft.NETCore.Platforms": "1.1.0",
  2694. "Microsoft.NETCore.Targets": "1.1.0",
  2695. "System.Runtime": "4.3.0"
  2696. },
  2697. "compile": {
  2698. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2699. "related": ".xml"
  2700. }
  2701. }
  2702. },
  2703. "System.Runtime.Handles/4.3.0": {
  2704. "type": "package",
  2705. "dependencies": {
  2706. "Microsoft.NETCore.Platforms": "1.1.0",
  2707. "Microsoft.NETCore.Targets": "1.1.0",
  2708. "System.Runtime": "4.3.0"
  2709. },
  2710. "compile": {
  2711. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2712. "related": ".xml"
  2713. }
  2714. }
  2715. },
  2716. "System.Runtime.InteropServices/4.3.0": {
  2717. "type": "package",
  2718. "dependencies": {
  2719. "Microsoft.NETCore.Platforms": "1.1.0",
  2720. "Microsoft.NETCore.Targets": "1.1.0",
  2721. "System.Reflection": "4.3.0",
  2722. "System.Reflection.Primitives": "4.3.0",
  2723. "System.Runtime": "4.3.0",
  2724. "System.Runtime.Handles": "4.3.0"
  2725. },
  2726. "compile": {
  2727. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2728. }
  2729. },
  2730. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2731. "type": "package",
  2732. "dependencies": {
  2733. "System.Reflection": "4.3.0",
  2734. "System.Reflection.Extensions": "4.3.0",
  2735. "System.Resources.ResourceManager": "4.3.0",
  2736. "System.Runtime": "4.3.0",
  2737. "System.Runtime.InteropServices": "4.3.0",
  2738. "System.Threading": "4.3.0",
  2739. "runtime.native.System": "4.3.0"
  2740. },
  2741. "compile": {
  2742. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2743. },
  2744. "runtime": {
  2745. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2746. },
  2747. "runtimeTargets": {
  2748. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2749. "assetType": "runtime",
  2750. "rid": "unix"
  2751. },
  2752. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2753. "assetType": "runtime",
  2754. "rid": "win"
  2755. }
  2756. }
  2757. },
  2758. "System.Runtime.Numerics/4.3.0": {
  2759. "type": "package",
  2760. "dependencies": {
  2761. "System.Globalization": "4.3.0",
  2762. "System.Resources.ResourceManager": "4.3.0",
  2763. "System.Runtime": "4.3.0",
  2764. "System.Runtime.Extensions": "4.3.0"
  2765. },
  2766. "compile": {
  2767. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2768. "related": ".xml"
  2769. }
  2770. },
  2771. "runtime": {
  2772. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2773. }
  2774. },
  2775. "System.Runtime.Serialization.Primitives/4.3.0": {
  2776. "type": "package",
  2777. "dependencies": {
  2778. "System.Resources.ResourceManager": "4.3.0",
  2779. "System.Runtime": "4.3.0"
  2780. },
  2781. "compile": {
  2782. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2783. "related": ".xml"
  2784. }
  2785. },
  2786. "runtime": {
  2787. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2788. }
  2789. },
  2790. "System.Security.AccessControl/4.7.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "Microsoft.NETCore.Platforms": "3.1.0",
  2794. "System.Security.Principal.Windows": "4.7.0"
  2795. },
  2796. "compile": {
  2797. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2798. "related": ".xml"
  2799. }
  2800. },
  2801. "runtime": {
  2802. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2803. "related": ".xml"
  2804. }
  2805. },
  2806. "runtimeTargets": {
  2807. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2808. "assetType": "runtime",
  2809. "rid": "win"
  2810. }
  2811. }
  2812. },
  2813. "System.Security.Claims/4.3.0": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Collections": "4.3.0",
  2817. "System.Globalization": "4.3.0",
  2818. "System.IO": "4.3.0",
  2819. "System.Resources.ResourceManager": "4.3.0",
  2820. "System.Runtime": "4.3.0",
  2821. "System.Runtime.Extensions": "4.3.0",
  2822. "System.Security.Principal": "4.3.0"
  2823. },
  2824. "compile": {
  2825. "ref/netstandard1.3/_._": {
  2826. "related": ".xml"
  2827. }
  2828. },
  2829. "runtime": {
  2830. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2831. }
  2832. },
  2833. "System.Security.Cryptography.Algorithms/4.3.0": {
  2834. "type": "package",
  2835. "dependencies": {
  2836. "Microsoft.NETCore.Platforms": "1.1.0",
  2837. "System.Collections": "4.3.0",
  2838. "System.IO": "4.3.0",
  2839. "System.Resources.ResourceManager": "4.3.0",
  2840. "System.Runtime": "4.3.0",
  2841. "System.Runtime.Extensions": "4.3.0",
  2842. "System.Runtime.Handles": "4.3.0",
  2843. "System.Runtime.InteropServices": "4.3.0",
  2844. "System.Runtime.Numerics": "4.3.0",
  2845. "System.Security.Cryptography.Encoding": "4.3.0",
  2846. "System.Security.Cryptography.Primitives": "4.3.0",
  2847. "System.Text.Encoding": "4.3.0",
  2848. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2849. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2850. },
  2851. "compile": {
  2852. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2853. },
  2854. "runtimeTargets": {
  2855. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2856. "assetType": "runtime",
  2857. "rid": "osx"
  2858. },
  2859. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2860. "assetType": "runtime",
  2861. "rid": "unix"
  2862. },
  2863. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2864. "assetType": "runtime",
  2865. "rid": "win"
  2866. }
  2867. }
  2868. },
  2869. "System.Security.Cryptography.Cng/4.5.0": {
  2870. "type": "package",
  2871. "compile": {
  2872. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2873. "related": ".xml"
  2874. }
  2875. },
  2876. "runtime": {
  2877. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2878. },
  2879. "runtimeTargets": {
  2880. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2881. "assetType": "runtime",
  2882. "rid": "win"
  2883. }
  2884. }
  2885. },
  2886. "System.Security.Cryptography.Csp/4.3.0": {
  2887. "type": "package",
  2888. "dependencies": {
  2889. "Microsoft.NETCore.Platforms": "1.1.0",
  2890. "System.IO": "4.3.0",
  2891. "System.Reflection": "4.3.0",
  2892. "System.Resources.ResourceManager": "4.3.0",
  2893. "System.Runtime": "4.3.0",
  2894. "System.Runtime.Extensions": "4.3.0",
  2895. "System.Runtime.Handles": "4.3.0",
  2896. "System.Runtime.InteropServices": "4.3.0",
  2897. "System.Security.Cryptography.Algorithms": "4.3.0",
  2898. "System.Security.Cryptography.Encoding": "4.3.0",
  2899. "System.Security.Cryptography.Primitives": "4.3.0",
  2900. "System.Text.Encoding": "4.3.0",
  2901. "System.Threading": "4.3.0"
  2902. },
  2903. "compile": {
  2904. "ref/netstandard1.3/_._": {}
  2905. },
  2906. "runtimeTargets": {
  2907. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2908. "assetType": "runtime",
  2909. "rid": "unix"
  2910. },
  2911. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2912. "assetType": "runtime",
  2913. "rid": "win"
  2914. }
  2915. }
  2916. },
  2917. "System.Security.Cryptography.Encoding/4.3.0": {
  2918. "type": "package",
  2919. "dependencies": {
  2920. "Microsoft.NETCore.Platforms": "1.1.0",
  2921. "System.Collections": "4.3.0",
  2922. "System.Collections.Concurrent": "4.3.0",
  2923. "System.Linq": "4.3.0",
  2924. "System.Resources.ResourceManager": "4.3.0",
  2925. "System.Runtime": "4.3.0",
  2926. "System.Runtime.Extensions": "4.3.0",
  2927. "System.Runtime.Handles": "4.3.0",
  2928. "System.Runtime.InteropServices": "4.3.0",
  2929. "System.Security.Cryptography.Primitives": "4.3.0",
  2930. "System.Text.Encoding": "4.3.0",
  2931. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2932. },
  2933. "compile": {
  2934. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2935. "related": ".xml"
  2936. }
  2937. },
  2938. "runtimeTargets": {
  2939. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2940. "assetType": "runtime",
  2941. "rid": "unix"
  2942. },
  2943. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2944. "assetType": "runtime",
  2945. "rid": "win"
  2946. }
  2947. }
  2948. },
  2949. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2950. "type": "package",
  2951. "dependencies": {
  2952. "System.Collections": "4.3.0",
  2953. "System.IO": "4.3.0",
  2954. "System.Resources.ResourceManager": "4.3.0",
  2955. "System.Runtime": "4.3.0",
  2956. "System.Runtime.Extensions": "4.3.0",
  2957. "System.Runtime.Handles": "4.3.0",
  2958. "System.Runtime.InteropServices": "4.3.0",
  2959. "System.Runtime.Numerics": "4.3.0",
  2960. "System.Security.Cryptography.Algorithms": "4.3.0",
  2961. "System.Security.Cryptography.Encoding": "4.3.0",
  2962. "System.Security.Cryptography.Primitives": "4.3.0",
  2963. "System.Text.Encoding": "4.3.0",
  2964. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2965. },
  2966. "compile": {
  2967. "ref/netstandard1.6/_._": {}
  2968. },
  2969. "runtime": {
  2970. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2971. },
  2972. "runtimeTargets": {
  2973. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2974. "assetType": "runtime",
  2975. "rid": "unix"
  2976. }
  2977. }
  2978. },
  2979. "System.Security.Cryptography.Primitives/4.3.0": {
  2980. "type": "package",
  2981. "dependencies": {
  2982. "System.Diagnostics.Debug": "4.3.0",
  2983. "System.Globalization": "4.3.0",
  2984. "System.IO": "4.3.0",
  2985. "System.Resources.ResourceManager": "4.3.0",
  2986. "System.Runtime": "4.3.0",
  2987. "System.Threading": "4.3.0",
  2988. "System.Threading.Tasks": "4.3.0"
  2989. },
  2990. "compile": {
  2991. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2992. },
  2993. "runtime": {
  2994. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2995. }
  2996. },
  2997. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2998. "type": "package",
  2999. "compile": {
  3000. "ref/netstandard2.0/_._": {
  3001. "related": ".xml"
  3002. }
  3003. },
  3004. "runtime": {
  3005. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3006. "related": ".xml"
  3007. }
  3008. },
  3009. "runtimeTargets": {
  3010. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3011. "assetType": "runtime",
  3012. "rid": "win"
  3013. }
  3014. }
  3015. },
  3016. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3017. "type": "package",
  3018. "dependencies": {
  3019. "Microsoft.NETCore.Platforms": "1.1.0",
  3020. "System.Collections": "4.3.0",
  3021. "System.Diagnostics.Debug": "4.3.0",
  3022. "System.Globalization": "4.3.0",
  3023. "System.Globalization.Calendars": "4.3.0",
  3024. "System.IO": "4.3.0",
  3025. "System.IO.FileSystem": "4.3.0",
  3026. "System.IO.FileSystem.Primitives": "4.3.0",
  3027. "System.Resources.ResourceManager": "4.3.0",
  3028. "System.Runtime": "4.3.0",
  3029. "System.Runtime.Extensions": "4.3.0",
  3030. "System.Runtime.Handles": "4.3.0",
  3031. "System.Runtime.InteropServices": "4.3.0",
  3032. "System.Runtime.Numerics": "4.3.0",
  3033. "System.Security.Cryptography.Algorithms": "4.3.0",
  3034. "System.Security.Cryptography.Cng": "4.3.0",
  3035. "System.Security.Cryptography.Csp": "4.3.0",
  3036. "System.Security.Cryptography.Encoding": "4.3.0",
  3037. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3038. "System.Security.Cryptography.Primitives": "4.3.0",
  3039. "System.Text.Encoding": "4.3.0",
  3040. "System.Threading": "4.3.0",
  3041. "runtime.native.System": "4.3.0",
  3042. "runtime.native.System.Net.Http": "4.3.0",
  3043. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3044. },
  3045. "compile": {
  3046. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3047. "related": ".xml"
  3048. }
  3049. },
  3050. "runtimeTargets": {
  3051. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3052. "assetType": "runtime",
  3053. "rid": "unix"
  3054. },
  3055. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3056. "assetType": "runtime",
  3057. "rid": "win"
  3058. }
  3059. }
  3060. },
  3061. "System.Security.Permissions/4.7.0": {
  3062. "type": "package",
  3063. "dependencies": {
  3064. "System.Security.AccessControl": "4.7.0",
  3065. "System.Windows.Extensions": "4.7.0"
  3066. },
  3067. "compile": {
  3068. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3069. "related": ".xml"
  3070. }
  3071. },
  3072. "runtime": {
  3073. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3074. "related": ".xml"
  3075. }
  3076. }
  3077. },
  3078. "System.Security.Principal/4.3.0": {
  3079. "type": "package",
  3080. "dependencies": {
  3081. "System.Runtime": "4.3.0"
  3082. },
  3083. "compile": {
  3084. "ref/netstandard1.0/System.Security.Principal.dll": {
  3085. "related": ".xml"
  3086. }
  3087. },
  3088. "runtime": {
  3089. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3090. }
  3091. },
  3092. "System.Security.Principal.Windows/4.7.0": {
  3093. "type": "package",
  3094. "compile": {
  3095. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3096. "related": ".xml"
  3097. }
  3098. },
  3099. "runtime": {
  3100. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3101. "related": ".xml"
  3102. }
  3103. },
  3104. "runtimeTargets": {
  3105. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3106. "assetType": "runtime",
  3107. "rid": "unix"
  3108. },
  3109. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3110. "assetType": "runtime",
  3111. "rid": "win"
  3112. }
  3113. }
  3114. },
  3115. "System.Text.Encoding/4.3.0": {
  3116. "type": "package",
  3117. "dependencies": {
  3118. "Microsoft.NETCore.Platforms": "1.1.0",
  3119. "Microsoft.NETCore.Targets": "1.1.0",
  3120. "System.Runtime": "4.3.0"
  3121. },
  3122. "compile": {
  3123. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3124. "related": ".xml"
  3125. }
  3126. }
  3127. },
  3128. "System.Text.Encoding.CodePages/5.0.0": {
  3129. "type": "package",
  3130. "dependencies": {
  3131. "Microsoft.NETCore.Platforms": "5.0.0"
  3132. },
  3133. "compile": {
  3134. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3140. "related": ".xml"
  3141. }
  3142. },
  3143. "runtimeTargets": {
  3144. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3145. "assetType": "runtime",
  3146. "rid": "win"
  3147. }
  3148. }
  3149. },
  3150. "System.Text.Encoding.Extensions/4.3.0": {
  3151. "type": "package",
  3152. "dependencies": {
  3153. "Microsoft.NETCore.Platforms": "1.1.0",
  3154. "Microsoft.NETCore.Targets": "1.1.0",
  3155. "System.Runtime": "4.3.0",
  3156. "System.Text.Encoding": "4.3.0"
  3157. },
  3158. "compile": {
  3159. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3160. "related": ".xml"
  3161. }
  3162. }
  3163. },
  3164. "System.Text.Encodings.Web/8.0.0": {
  3165. "type": "package",
  3166. "dependencies": {
  3167. "System.Buffers": "4.5.1",
  3168. "System.Memory": "4.5.5",
  3169. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3170. },
  3171. "compile": {
  3172. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3173. "related": ".xml"
  3174. }
  3175. },
  3176. "runtime": {
  3177. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3178. "related": ".xml"
  3179. }
  3180. },
  3181. "build": {
  3182. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  3183. }
  3184. },
  3185. "System.Text.Json/8.0.5": {
  3186. "type": "package",
  3187. "dependencies": {
  3188. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3189. "System.Buffers": "4.5.1",
  3190. "System.Memory": "4.5.5",
  3191. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3192. "System.Text.Encodings.Web": "8.0.0",
  3193. "System.Threading.Tasks.Extensions": "4.5.4"
  3194. },
  3195. "compile": {
  3196. "lib/netstandard2.0/System.Text.Json.dll": {
  3197. "related": ".xml"
  3198. }
  3199. },
  3200. "runtime": {
  3201. "lib/netstandard2.0/System.Text.Json.dll": {
  3202. "related": ".xml"
  3203. }
  3204. },
  3205. "build": {
  3206. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  3207. }
  3208. },
  3209. "System.Text.RegularExpressions/4.3.0": {
  3210. "type": "package",
  3211. "dependencies": {
  3212. "System.Runtime": "4.3.0"
  3213. },
  3214. "compile": {
  3215. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3216. },
  3217. "runtime": {
  3218. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3219. }
  3220. },
  3221. "System.Threading/4.3.0": {
  3222. "type": "package",
  3223. "dependencies": {
  3224. "System.Runtime": "4.3.0",
  3225. "System.Threading.Tasks": "4.3.0"
  3226. },
  3227. "compile": {
  3228. "ref/netstandard1.3/System.Threading.dll": {
  3229. "related": ".xml"
  3230. }
  3231. },
  3232. "runtime": {
  3233. "lib/netstandard1.3/System.Threading.dll": {}
  3234. }
  3235. },
  3236. "System.Threading.Channels/7.0.0": {
  3237. "type": "package",
  3238. "compile": {
  3239. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3240. "related": ".xml"
  3241. }
  3242. },
  3243. "runtime": {
  3244. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3245. "related": ".xml"
  3246. }
  3247. },
  3248. "build": {
  3249. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3250. }
  3251. },
  3252. "System.Threading.Tasks/4.3.0": {
  3253. "type": "package",
  3254. "dependencies": {
  3255. "Microsoft.NETCore.Platforms": "1.1.0",
  3256. "Microsoft.NETCore.Targets": "1.1.0",
  3257. "System.Runtime": "4.3.0"
  3258. },
  3259. "compile": {
  3260. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3261. "related": ".xml"
  3262. }
  3263. }
  3264. },
  3265. "System.Threading.Tasks.Extensions/4.5.4": {
  3266. "type": "package",
  3267. "compile": {
  3268. "ref/netcoreapp2.1/_._": {}
  3269. },
  3270. "runtime": {
  3271. "lib/netcoreapp2.1/_._": {}
  3272. }
  3273. },
  3274. "System.Threading.Thread/4.3.0": {
  3275. "type": "package",
  3276. "dependencies": {
  3277. "System.Runtime": "4.3.0"
  3278. },
  3279. "compile": {
  3280. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3281. "related": ".xml"
  3282. }
  3283. },
  3284. "runtime": {
  3285. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3286. }
  3287. },
  3288. "System.Threading.ThreadPool/4.3.0": {
  3289. "type": "package",
  3290. "dependencies": {
  3291. "System.Runtime": "4.3.0",
  3292. "System.Runtime.Handles": "4.3.0"
  3293. },
  3294. "compile": {
  3295. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3296. "related": ".xml"
  3297. }
  3298. },
  3299. "runtime": {
  3300. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3301. }
  3302. },
  3303. "System.Threading.Timer/4.3.0": {
  3304. "type": "package",
  3305. "dependencies": {
  3306. "Microsoft.NETCore.Platforms": "1.1.0",
  3307. "Microsoft.NETCore.Targets": "1.1.0",
  3308. "System.Runtime": "4.3.0"
  3309. },
  3310. "compile": {
  3311. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3312. "related": ".xml"
  3313. }
  3314. }
  3315. },
  3316. "System.Windows.Extensions/4.7.0": {
  3317. "type": "package",
  3318. "dependencies": {
  3319. "System.Drawing.Common": "4.7.0"
  3320. },
  3321. "compile": {
  3322. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3323. "related": ".xml"
  3324. }
  3325. },
  3326. "runtime": {
  3327. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3328. "related": ".xml"
  3329. }
  3330. },
  3331. "runtimeTargets": {
  3332. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3333. "assetType": "runtime",
  3334. "rid": "win"
  3335. }
  3336. }
  3337. },
  3338. "System.Xml.ReaderWriter/4.3.0": {
  3339. "type": "package",
  3340. "dependencies": {
  3341. "System.Collections": "4.3.0",
  3342. "System.Diagnostics.Debug": "4.3.0",
  3343. "System.Globalization": "4.3.0",
  3344. "System.IO": "4.3.0",
  3345. "System.IO.FileSystem": "4.3.0",
  3346. "System.IO.FileSystem.Primitives": "4.3.0",
  3347. "System.Resources.ResourceManager": "4.3.0",
  3348. "System.Runtime": "4.3.0",
  3349. "System.Runtime.Extensions": "4.3.0",
  3350. "System.Runtime.InteropServices": "4.3.0",
  3351. "System.Text.Encoding": "4.3.0",
  3352. "System.Text.Encoding.Extensions": "4.3.0",
  3353. "System.Text.RegularExpressions": "4.3.0",
  3354. "System.Threading.Tasks": "4.3.0",
  3355. "System.Threading.Tasks.Extensions": "4.3.0"
  3356. },
  3357. "compile": {
  3358. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3359. "related": ".xml"
  3360. }
  3361. },
  3362. "runtime": {
  3363. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3364. }
  3365. },
  3366. "System.Xml.XDocument/4.3.0": {
  3367. "type": "package",
  3368. "dependencies": {
  3369. "System.Collections": "4.3.0",
  3370. "System.Diagnostics.Debug": "4.3.0",
  3371. "System.Diagnostics.Tools": "4.3.0",
  3372. "System.Globalization": "4.3.0",
  3373. "System.IO": "4.3.0",
  3374. "System.Reflection": "4.3.0",
  3375. "System.Resources.ResourceManager": "4.3.0",
  3376. "System.Runtime": "4.3.0",
  3377. "System.Runtime.Extensions": "4.3.0",
  3378. "System.Text.Encoding": "4.3.0",
  3379. "System.Threading": "4.3.0",
  3380. "System.Xml.ReaderWriter": "4.3.0"
  3381. },
  3382. "compile": {
  3383. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3384. "related": ".xml"
  3385. }
  3386. },
  3387. "runtime": {
  3388. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3389. }
  3390. },
  3391. "System.Xml.XmlDocument/4.3.0": {
  3392. "type": "package",
  3393. "dependencies": {
  3394. "System.Collections": "4.3.0",
  3395. "System.Diagnostics.Debug": "4.3.0",
  3396. "System.Globalization": "4.3.0",
  3397. "System.IO": "4.3.0",
  3398. "System.Resources.ResourceManager": "4.3.0",
  3399. "System.Runtime": "4.3.0",
  3400. "System.Runtime.Extensions": "4.3.0",
  3401. "System.Text.Encoding": "4.3.0",
  3402. "System.Threading": "4.3.0",
  3403. "System.Xml.ReaderWriter": "4.3.0"
  3404. },
  3405. "compile": {
  3406. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3407. "related": ".xml"
  3408. }
  3409. },
  3410. "runtime": {
  3411. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3412. }
  3413. },
  3414. "ZXing.Net/0.16.9": {
  3415. "type": "package",
  3416. "compile": {
  3417. "lib/net5.0/zxing.dll": {
  3418. "related": ".XML"
  3419. }
  3420. },
  3421. "runtime": {
  3422. "lib/net5.0/zxing.dll": {
  3423. "related": ".XML"
  3424. }
  3425. }
  3426. },
  3427. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3428. "type": "package",
  3429. "dependencies": {
  3430. "SixLabors.ImageSharp": "2.1.3",
  3431. "ZXing.Net": "0.16.9"
  3432. },
  3433. "compile": {
  3434. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3435. "related": ".pdb;.xml"
  3436. }
  3437. },
  3438. "runtime": {
  3439. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3440. "related": ".pdb;.xml"
  3441. }
  3442. }
  3443. },
  3444. "Ropin.Core.Common/1.0.0": {
  3445. "type": "project",
  3446. "framework": ".NETCoreApp,Version=v5.0",
  3447. "dependencies": {
  3448. "Coravel": "4.2.1",
  3449. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3450. "Newtonsoft.Json": "13.0.1",
  3451. "QRCoder": "1.4.3",
  3452. "SixLabors.ImageSharp": "2.1.6",
  3453. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3454. },
  3455. "compile": {
  3456. "bin/placeholder/Ropin.Core.Common.dll": {}
  3457. },
  3458. "runtime": {
  3459. "bin/placeholder/Ropin.Core.Common.dll": {}
  3460. }
  3461. },
  3462. "Ropin.Core.Extensions/1.0.0": {
  3463. "type": "project",
  3464. "framework": ".NETCoreApp,Version=v5.0",
  3465. "dependencies": {
  3466. "Autofac": "6.2.0",
  3467. "Autofac.Extras.DynamicProxy": "6.0.0",
  3468. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3469. "Ropin.Core.Common": "1.0.0",
  3470. "Ropin.Inspection.Common": "1.0.0",
  3471. "Ropin.Inspection.Service": "1.0.0",
  3472. "Ropin.Inspection.Tasks": "1.0.0",
  3473. "StackExchange.Redis": "1.2.4",
  3474. "log4net": "2.0.17"
  3475. },
  3476. "compile": {
  3477. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3478. },
  3479. "runtime": {
  3480. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3481. }
  3482. },
  3483. "Ropin.Inspection.Common/1.0.0": {
  3484. "type": "project",
  3485. "framework": ".NETCoreApp,Version=v5.0",
  3486. "dependencies": {
  3487. "FluentEmail.Smtp": "3.0.2",
  3488. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3489. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3490. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3491. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3492. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3493. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3494. "Microsoft.Extensions.Configuration": "5.0.0",
  3495. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3496. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3497. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3498. "Microsoft.Extensions.Http": "5.0.0",
  3499. "Newtonsoft.Json": "13.0.1",
  3500. "RabbitMQ.Client": "6.8.1",
  3501. "log4net": "2.0.17"
  3502. },
  3503. "compile": {
  3504. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3505. },
  3506. "runtime": {
  3507. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3508. }
  3509. },
  3510. "Ropin.Inspection.Model/1.0.0": {
  3511. "type": "project",
  3512. "framework": ".NETCoreApp,Version=v5.0",
  3513. "dependencies": {
  3514. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3515. "Microsoft.EntityFrameworkCore": "5.0.0",
  3516. "MySql.Data": "8.0.23",
  3517. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3518. "Ropin.Inspection.Common": "1.0.0"
  3519. },
  3520. "compile": {
  3521. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3522. },
  3523. "runtime": {
  3524. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3525. }
  3526. },
  3527. "Ropin.Inspection.Repository/1.0.0": {
  3528. "type": "project",
  3529. "framework": ".NETCoreApp,Version=v5.0",
  3530. "dependencies": {
  3531. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3532. "Microsoft.EntityFrameworkCore": "5.0.0",
  3533. "Ropin.Inspection.Model": "1.0.0"
  3534. },
  3535. "compile": {
  3536. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3537. },
  3538. "runtime": {
  3539. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3540. }
  3541. },
  3542. "Ropin.Inspection.Service/1.0.0": {
  3543. "type": "project",
  3544. "framework": ".NETCoreApp,Version=v5.0",
  3545. "dependencies": {
  3546. "AutoMapper": "10.1.1",
  3547. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3548. "Newtonsoft.Json": "13.0.1",
  3549. "Ropin.Core.Common": "1.0.0",
  3550. "Ropin.Inspection.Common": "1.0.0",
  3551. "Ropin.Inspection.Model": "1.0.0",
  3552. "Ropin.Inspection.Repository": "1.0.0",
  3553. "log4net": "2.0.17"
  3554. },
  3555. "compile": {
  3556. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3557. },
  3558. "runtime": {
  3559. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3560. }
  3561. },
  3562. "Ropin.Inspection.Tasks/1.0.0": {
  3563. "type": "project",
  3564. "framework": ".NETCoreApp,Version=v5.0",
  3565. "dependencies": {
  3566. "Quartz": "3.3.3",
  3567. "Ropin.Inspection.Common": "1.0.0",
  3568. "Ropin.Inspection.Model": "1.0.0",
  3569. "Ropin.Inspection.Service": "1.0.0"
  3570. },
  3571. "compile": {
  3572. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3573. },
  3574. "runtime": {
  3575. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3576. }
  3577. }
  3578. }
  3579. },
  3580. "libraries": {
  3581. "AdvancedStringBuilder/0.1.0": {
  3582. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3583. "type": "package",
  3584. "path": "advancedstringbuilder/0.1.0",
  3585. "files": [
  3586. ".nupkg.metadata",
  3587. ".signature.p7s",
  3588. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3589. "advancedstringbuilder.nuspec",
  3590. "lib/net40-client/AdvancedStringBuilder.dll",
  3591. "lib/net40-client/AdvancedStringBuilder.xml",
  3592. "lib/net45/AdvancedStringBuilder.dll",
  3593. "lib/net45/AdvancedStringBuilder.xml",
  3594. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3595. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3596. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3597. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3598. ]
  3599. },
  3600. "Autofac/6.2.0": {
  3601. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3602. "type": "package",
  3603. "path": "autofac/6.2.0",
  3604. "files": [
  3605. ".nupkg.metadata",
  3606. ".signature.p7s",
  3607. "autofac.6.2.0.nupkg.sha512",
  3608. "autofac.nuspec",
  3609. "icon.png",
  3610. "lib/net5.0/Autofac.dll",
  3611. "lib/net5.0/Autofac.pdb",
  3612. "lib/net5.0/Autofac.xml",
  3613. "lib/netstandard2.0/Autofac.dll",
  3614. "lib/netstandard2.0/Autofac.pdb",
  3615. "lib/netstandard2.0/Autofac.xml",
  3616. "lib/netstandard2.1/Autofac.dll",
  3617. "lib/netstandard2.1/Autofac.pdb",
  3618. "lib/netstandard2.1/Autofac.xml"
  3619. ]
  3620. },
  3621. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3622. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3623. "type": "package",
  3624. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3625. "files": [
  3626. ".nupkg.metadata",
  3627. ".signature.p7s",
  3628. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3629. "autofac.extensions.dependencyinjection.nuspec",
  3630. "icon.png",
  3631. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3632. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3633. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3634. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3635. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3636. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3637. ]
  3638. },
  3639. "Autofac.Extras.DynamicProxy/6.0.0": {
  3640. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3641. "type": "package",
  3642. "path": "autofac.extras.dynamicproxy/6.0.0",
  3643. "files": [
  3644. ".nupkg.metadata",
  3645. ".signature.p7s",
  3646. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3647. "autofac.extras.dynamicproxy.nuspec",
  3648. "icon.png",
  3649. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3650. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3651. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3652. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3653. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3654. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3655. ]
  3656. },
  3657. "AutoMapper/10.1.1": {
  3658. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3659. "type": "package",
  3660. "path": "automapper/10.1.1",
  3661. "files": [
  3662. ".nupkg.metadata",
  3663. ".signature.p7s",
  3664. "automapper.10.1.1.nupkg.sha512",
  3665. "automapper.nuspec",
  3666. "icon.png",
  3667. "lib/net461/AutoMapper.dll",
  3668. "lib/net461/AutoMapper.xml",
  3669. "lib/netstandard2.0/AutoMapper.dll",
  3670. "lib/netstandard2.0/AutoMapper.xml"
  3671. ]
  3672. },
  3673. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3674. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3675. "type": "package",
  3676. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3677. "files": [
  3678. ".nupkg.metadata",
  3679. ".signature.p7s",
  3680. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3681. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3682. "icon.png",
  3683. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3684. ]
  3685. },
  3686. "BouncyCastle.NetCore/1.8.5": {
  3687. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3688. "type": "package",
  3689. "path": "bouncycastle.netcore/1.8.5",
  3690. "files": [
  3691. ".nupkg.metadata",
  3692. ".signature.p7s",
  3693. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3694. "bouncycastle.netcore.nuspec",
  3695. "lib/Mono/BouncyCastle.Crypto.dll",
  3696. "lib/Mono/BouncyCastle.Crypto.xml",
  3697. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3698. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3699. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3700. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3701. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3702. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3703. "lib/net20/BouncyCastle.Crypto.dll",
  3704. "lib/net20/BouncyCastle.Crypto.xml",
  3705. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3706. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3707. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3708. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3709. ]
  3710. },
  3711. "Castle.Core/4.4.0": {
  3712. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3713. "type": "package",
  3714. "path": "castle.core/4.4.0",
  3715. "files": [
  3716. ".nupkg.metadata",
  3717. ".signature.p7s",
  3718. "ASL - Apache Software Foundation License.txt",
  3719. "CHANGELOG.md",
  3720. "LICENSE",
  3721. "castle.core.4.4.0.nupkg.sha512",
  3722. "castle.core.nuspec",
  3723. "lib/net35/Castle.Core.dll",
  3724. "lib/net35/Castle.Core.xml",
  3725. "lib/net40/Castle.Core.dll",
  3726. "lib/net40/Castle.Core.xml",
  3727. "lib/net45/Castle.Core.dll",
  3728. "lib/net45/Castle.Core.xml",
  3729. "lib/netstandard1.3/Castle.Core.dll",
  3730. "lib/netstandard1.3/Castle.Core.xml",
  3731. "lib/netstandard1.5/Castle.Core.dll",
  3732. "lib/netstandard1.5/Castle.Core.xml",
  3733. "readme.txt"
  3734. ]
  3735. },
  3736. "Coravel/4.2.1": {
  3737. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3738. "type": "package",
  3739. "path": "coravel/4.2.1",
  3740. "files": [
  3741. ".nupkg.metadata",
  3742. ".signature.p7s",
  3743. "coravel.4.2.1.nupkg.sha512",
  3744. "coravel.nuspec",
  3745. "lib/netstandard2.0/Coravel.dll",
  3746. "lib/netstandard2.0/Coravel.xml",
  3747. "logo.png",
  3748. "readme.md"
  3749. ]
  3750. },
  3751. "FBoxClientDriver/1.2.0": {
  3752. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3753. "type": "package",
  3754. "path": "fboxclientdriver/1.2.0",
  3755. "files": [
  3756. ".nupkg.metadata",
  3757. ".signature.p7s",
  3758. "fboxclientdriver.1.2.0.nupkg.sha512",
  3759. "fboxclientdriver.nuspec",
  3760. "lib/netstandard2.0/FBoxClientDriver.dll",
  3761. "lib/netstandard2.0/FBoxClientDriver.xml"
  3762. ]
  3763. },
  3764. "FBoxClientDriver.Contract/1.2.0": {
  3765. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3766. "type": "package",
  3767. "path": "fboxclientdriver.contract/1.2.0",
  3768. "files": [
  3769. ".nupkg.metadata",
  3770. ".signature.p7s",
  3771. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3772. "fboxclientdriver.contract.nuspec",
  3773. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3774. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3775. ]
  3776. },
  3777. "FluentEmail.Core/3.0.2": {
  3778. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3779. "type": "package",
  3780. "path": "fluentemail.core/3.0.2",
  3781. "files": [
  3782. ".nupkg.metadata",
  3783. ".signature.p7s",
  3784. "fluentemail.core.3.0.2.nupkg.sha512",
  3785. "fluentemail.core.nuspec",
  3786. "fluentemail_logo_64x64.png",
  3787. "lib/netstandard2.0/FluentEmail.Core.dll"
  3788. ]
  3789. },
  3790. "FluentEmail.Smtp/3.0.2": {
  3791. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3792. "type": "package",
  3793. "path": "fluentemail.smtp/3.0.2",
  3794. "files": [
  3795. ".nupkg.metadata",
  3796. ".signature.p7s",
  3797. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3798. "fluentemail.smtp.nuspec",
  3799. "fluentemail_logo_64x64.png",
  3800. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3801. ]
  3802. },
  3803. "Google.Protobuf/3.11.4": {
  3804. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3805. "type": "package",
  3806. "path": "google.protobuf/3.11.4",
  3807. "files": [
  3808. ".nupkg.metadata",
  3809. ".signature.p7s",
  3810. "google.protobuf.3.11.4.nupkg.sha512",
  3811. "google.protobuf.nuspec",
  3812. "lib/net45/Google.Protobuf.dll",
  3813. "lib/net45/Google.Protobuf.pdb",
  3814. "lib/net45/Google.Protobuf.xml",
  3815. "lib/netstandard1.0/Google.Protobuf.dll",
  3816. "lib/netstandard1.0/Google.Protobuf.pdb",
  3817. "lib/netstandard1.0/Google.Protobuf.xml",
  3818. "lib/netstandard2.0/Google.Protobuf.dll",
  3819. "lib/netstandard2.0/Google.Protobuf.pdb",
  3820. "lib/netstandard2.0/Google.Protobuf.xml"
  3821. ]
  3822. },
  3823. "IdentityModel/4.3.1": {
  3824. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3825. "type": "package",
  3826. "path": "identitymodel/4.3.1",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. ".signature.p7s",
  3830. "icon.jpg",
  3831. "identitymodel.4.3.1.nupkg.sha512",
  3832. "identitymodel.nuspec",
  3833. "lib/net461/IdentityModel.dll",
  3834. "lib/net461/IdentityModel.pdb",
  3835. "lib/net461/IdentityModel.xml",
  3836. "lib/net472/IdentityModel.dll",
  3837. "lib/net472/IdentityModel.pdb",
  3838. "lib/net472/IdentityModel.xml",
  3839. "lib/netstandard2.0/IdentityModel.dll",
  3840. "lib/netstandard2.0/IdentityModel.pdb",
  3841. "lib/netstandard2.0/IdentityModel.xml"
  3842. ]
  3843. },
  3844. "InfluxData.Net/8.0.1": {
  3845. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3846. "type": "package",
  3847. "path": "influxdata.net/8.0.1",
  3848. "files": [
  3849. ".nupkg.metadata",
  3850. ".signature.p7s",
  3851. "influxdata.net.8.0.1.nupkg.sha512",
  3852. "influxdata.net.nuspec",
  3853. "lib/net461/InfluxData.Net.Common.dll",
  3854. "lib/net461/InfluxData.Net.Common.dll.config",
  3855. "lib/net461/InfluxData.Net.Common.pdb",
  3856. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3857. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3858. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3859. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3860. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3861. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3862. "lib/net461/InfluxData.Net.dll",
  3863. "lib/net461/InfluxData.Net.dll.config",
  3864. "lib/net461/InfluxData.Net.pdb",
  3865. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3866. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3867. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3868. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3869. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3870. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3871. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3872. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3873. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3874. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3875. "lib/netstandard2.0/InfluxData.Net.dll",
  3876. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3877. "lib/netstandard2.0/InfluxData.Net.pdb"
  3878. ]
  3879. },
  3880. "InitQ/1.0.0.14": {
  3881. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3882. "type": "package",
  3883. "path": "initq/1.0.0.14",
  3884. "files": [
  3885. ".nupkg.metadata",
  3886. ".signature.p7s",
  3887. "initq.1.0.0.14.nupkg.sha512",
  3888. "initq.nuspec",
  3889. "lib/netcoreapp2.1/InitQ.dll"
  3890. ]
  3891. },
  3892. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3893. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3894. "type": "package",
  3895. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "LICENSE.txt",
  3900. "advanced-string-builder-license.txt",
  3901. "chakra-samples-license.txt",
  3902. "icon.png",
  3903. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3904. "javascriptengineswitcher.chakracore.nuspec",
  3905. "jsrt-dotnet-license.txt",
  3906. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3907. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3908. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3909. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3910. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3911. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3912. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3913. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3914. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3915. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3916. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3917. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3918. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3919. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3920. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3921. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3922. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3923. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3924. "polyfills-for-old-dot-net-license.txt",
  3925. "readme.txt"
  3926. ]
  3927. },
  3928. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3929. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3930. "type": "package",
  3931. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3932. "files": [
  3933. ".nupkg.metadata",
  3934. ".signature.p7s",
  3935. "LICENSE.txt",
  3936. "chakra-core-license.txt",
  3937. "icon.png",
  3938. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3939. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3940. "readme.txt",
  3941. "runtimes/linux-x64/native/libChakraCore.so"
  3942. ]
  3943. },
  3944. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3945. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3946. "type": "package",
  3947. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3948. "hasTools": true,
  3949. "files": [
  3950. ".nupkg.metadata",
  3951. ".signature.p7s",
  3952. "LICENSE.txt",
  3953. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3954. "chakra-core-license.txt",
  3955. "icon.png",
  3956. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3957. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3958. "readme.txt",
  3959. "runtimes/win-x64/native/ChakraCore.dll",
  3960. "tools/Install.ps1",
  3961. "tools/Uninstall.ps1"
  3962. ]
  3963. },
  3964. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3965. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3966. "type": "package",
  3967. "path": "javascriptengineswitcher.core/3.21.0",
  3968. "files": [
  3969. ".nupkg.metadata",
  3970. ".signature.p7s",
  3971. "LICENSE.txt",
  3972. "advanced-string-builder-license.txt",
  3973. "icon.png",
  3974. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3975. "javascriptengineswitcher.core.nuspec",
  3976. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3977. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3978. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3979. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3980. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3981. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3982. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3983. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3984. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3985. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3986. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3987. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3988. "readme.txt"
  3989. ]
  3990. },
  3991. "K4os.Compression.LZ4/1.1.11": {
  3992. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3993. "type": "package",
  3994. "path": "k4os.compression.lz4/1.1.11",
  3995. "files": [
  3996. ".nupkg.metadata",
  3997. ".signature.p7s",
  3998. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3999. "k4os.compression.lz4.nuspec",
  4000. "lib/net45/K4os.Compression.LZ4.dll",
  4001. "lib/net45/K4os.Compression.LZ4.xml",
  4002. "lib/net46/K4os.Compression.LZ4.dll",
  4003. "lib/net46/K4os.Compression.LZ4.xml",
  4004. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4005. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4006. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4007. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4008. ]
  4009. },
  4010. "K4os.Compression.LZ4.Streams/1.1.11": {
  4011. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4012. "type": "package",
  4013. "path": "k4os.compression.lz4.streams/1.1.11",
  4014. "files": [
  4015. ".nupkg.metadata",
  4016. ".signature.p7s",
  4017. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4018. "k4os.compression.lz4.streams.nuspec",
  4019. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4020. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4021. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4022. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4023. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4024. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4025. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4026. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4027. ]
  4028. },
  4029. "K4os.Hash.xxHash/1.0.6": {
  4030. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4031. "type": "package",
  4032. "path": "k4os.hash.xxhash/1.0.6",
  4033. "files": [
  4034. ".nupkg.metadata",
  4035. ".signature.p7s",
  4036. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4037. "k4os.hash.xxhash.nuspec",
  4038. "lib/net45/K4os.Hash.xxHash.dll",
  4039. "lib/net45/K4os.Hash.xxHash.xml",
  4040. "lib/net46/K4os.Hash.xxHash.dll",
  4041. "lib/net46/K4os.Hash.xxHash.xml",
  4042. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4043. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4044. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4045. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4046. ]
  4047. },
  4048. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4049. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4050. "type": "package",
  4051. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4052. "files": [
  4053. ".nupkg.metadata",
  4054. ".signature.p7s",
  4055. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4056. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4057. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4058. "linqkit.microsoft.entityframeworkcore.nuspec"
  4059. ]
  4060. },
  4061. "log4net/2.0.17": {
  4062. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4063. "type": "package",
  4064. "path": "log4net/2.0.17",
  4065. "files": [
  4066. ".nupkg.metadata",
  4067. ".signature.p7s",
  4068. "lib/net20/log4net.dll",
  4069. "lib/net20/log4net.xml",
  4070. "lib/net35/log4net.dll",
  4071. "lib/net35/log4net.xml",
  4072. "lib/net40-client/log4net.dll",
  4073. "lib/net40-client/log4net.xml",
  4074. "lib/net40/log4net.dll",
  4075. "lib/net40/log4net.xml",
  4076. "lib/net45/log4net.dll",
  4077. "lib/net45/log4net.xml",
  4078. "lib/netstandard1.3/log4net.dll",
  4079. "lib/netstandard1.3/log4net.xml",
  4080. "lib/netstandard2.0/log4net.dll",
  4081. "lib/netstandard2.0/log4net.xml",
  4082. "log4net.2.0.17.nupkg.sha512",
  4083. "log4net.nuspec",
  4084. "package-icon.png"
  4085. ]
  4086. },
  4087. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4088. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4089. "type": "package",
  4090. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4095. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4096. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4097. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4098. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4099. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4100. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4101. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4102. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4103. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4104. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4105. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  4106. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  4107. "microsoft.aspnet.signalr.client.nuspec"
  4108. ]
  4109. },
  4110. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4111. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4112. "type": "package",
  4113. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4114. "files": [
  4115. ".nupkg.metadata",
  4116. ".signature.p7s",
  4117. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4118. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4119. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4120. "microsoft.aspnetcore.http.abstractions.nuspec"
  4121. ]
  4122. },
  4123. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4124. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4125. "type": "package",
  4126. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4127. "files": [
  4128. ".nupkg.metadata",
  4129. ".signature.p7s",
  4130. "Icon.png",
  4131. "THIRD-PARTY-NOTICES.TXT",
  4132. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4133. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4134. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4135. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4136. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4137. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4138. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4139. "microsoft.aspnetcore.http.features.nuspec"
  4140. ]
  4141. },
  4142. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4143. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4144. "type": "package",
  4145. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4146. "files": [
  4147. ".nupkg.metadata",
  4148. ".signature.p7s",
  4149. "Icon.png",
  4150. "THIRD-PARTY-NOTICES.TXT",
  4151. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4152. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4153. "microsoft.aspnetcore.nodeservices.nuspec"
  4154. ]
  4155. },
  4156. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  4157. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  4158. "type": "package",
  4159. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  4160. "files": [
  4161. ".nupkg.metadata",
  4162. ".signature.p7s",
  4163. "Icon.png",
  4164. "LICENSE.TXT",
  4165. "PACKAGE.md",
  4166. "THIRD-PARTY-NOTICES.TXT",
  4167. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  4168. "buildTransitive/net462/_._",
  4169. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  4170. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  4171. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4172. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4173. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4174. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4175. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  4176. "microsoft.bcl.asyncinterfaces.nuspec",
  4177. "useSharedDesignerContext.txt"
  4178. ]
  4179. },
  4180. "Microsoft.Bcl.Memory/9.0.0": {
  4181. "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
  4182. "type": "package",
  4183. "path": "microsoft.bcl.memory/9.0.0",
  4184. "files": [
  4185. ".nupkg.metadata",
  4186. ".signature.p7s",
  4187. "Icon.png",
  4188. "LICENSE.TXT",
  4189. "PACKAGE.md",
  4190. "THIRD-PARTY-NOTICES.TXT",
  4191. "buildTransitive/net461/Microsoft.Bcl.Memory.targets",
  4192. "buildTransitive/net462/_._",
  4193. "buildTransitive/net8.0/_._",
  4194. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
  4195. "lib/net462/Microsoft.Bcl.Memory.dll",
  4196. "lib/net462/Microsoft.Bcl.Memory.xml",
  4197. "lib/net8.0/Microsoft.Bcl.Memory.dll",
  4198. "lib/net8.0/Microsoft.Bcl.Memory.xml",
  4199. "lib/net9.0/Microsoft.Bcl.Memory.dll",
  4200. "lib/net9.0/Microsoft.Bcl.Memory.xml",
  4201. "lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
  4202. "lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
  4203. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
  4204. "lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
  4205. "microsoft.bcl.memory.9.0.0.nupkg.sha512",
  4206. "microsoft.bcl.memory.nuspec",
  4207. "useSharedDesignerContext.txt"
  4208. ]
  4209. },
  4210. "Microsoft.Bcl.TimeProvider/8.0.1": {
  4211. "sha512": "C7kWHJnMRY7EvJev2S8+yJHZ1y7A4ZlLbA4NE+O23BDIAN5mHeqND1m+SKv1ChRS5YlCDW7yAMUe7lttRsJaAA==",
  4212. "type": "package",
  4213. "path": "microsoft.bcl.timeprovider/8.0.1",
  4214. "files": [
  4215. ".nupkg.metadata",
  4216. ".signature.p7s",
  4217. "Icon.png",
  4218. "LICENSE.TXT",
  4219. "PACKAGE.md",
  4220. "THIRD-PARTY-NOTICES.TXT",
  4221. "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets",
  4222. "buildTransitive/net462/_._",
  4223. "buildTransitive/net6.0/_._",
  4224. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets",
  4225. "lib/net462/Microsoft.Bcl.TimeProvider.dll",
  4226. "lib/net462/Microsoft.Bcl.TimeProvider.xml",
  4227. "lib/net8.0/Microsoft.Bcl.TimeProvider.dll",
  4228. "lib/net8.0/Microsoft.Bcl.TimeProvider.xml",
  4229. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll",
  4230. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml",
  4231. "microsoft.bcl.timeprovider.8.0.1.nupkg.sha512",
  4232. "microsoft.bcl.timeprovider.nuspec",
  4233. "useSharedDesignerContext.txt"
  4234. ]
  4235. },
  4236. "Microsoft.CSharp/4.7.0": {
  4237. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4238. "type": "package",
  4239. "path": "microsoft.csharp/4.7.0",
  4240. "files": [
  4241. ".nupkg.metadata",
  4242. ".signature.p7s",
  4243. "LICENSE.TXT",
  4244. "THIRD-PARTY-NOTICES.TXT",
  4245. "lib/MonoAndroid10/_._",
  4246. "lib/MonoTouch10/_._",
  4247. "lib/net45/_._",
  4248. "lib/netcore50/Microsoft.CSharp.dll",
  4249. "lib/netcoreapp2.0/_._",
  4250. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4251. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4252. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4253. "lib/portable-net45+win8+wp8+wpa81/_._",
  4254. "lib/uap10.0.16299/_._",
  4255. "lib/win8/_._",
  4256. "lib/wp80/_._",
  4257. "lib/wpa81/_._",
  4258. "lib/xamarinios10/_._",
  4259. "lib/xamarinmac20/_._",
  4260. "lib/xamarintvos10/_._",
  4261. "lib/xamarinwatchos10/_._",
  4262. "microsoft.csharp.4.7.0.nupkg.sha512",
  4263. "microsoft.csharp.nuspec",
  4264. "ref/MonoAndroid10/_._",
  4265. "ref/MonoTouch10/_._",
  4266. "ref/net45/_._",
  4267. "ref/netcore50/Microsoft.CSharp.dll",
  4268. "ref/netcore50/Microsoft.CSharp.xml",
  4269. "ref/netcore50/de/Microsoft.CSharp.xml",
  4270. "ref/netcore50/es/Microsoft.CSharp.xml",
  4271. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4272. "ref/netcore50/it/Microsoft.CSharp.xml",
  4273. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4274. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4275. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4276. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4277. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4278. "ref/netcoreapp2.0/_._",
  4279. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4280. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4281. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4282. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4283. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4284. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4285. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4286. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4287. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4288. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4289. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4290. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4291. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4292. "ref/portable-net45+win8+wp8+wpa81/_._",
  4293. "ref/uap10.0.16299/_._",
  4294. "ref/win8/_._",
  4295. "ref/wp80/_._",
  4296. "ref/wpa81/_._",
  4297. "ref/xamarinios10/_._",
  4298. "ref/xamarinmac20/_._",
  4299. "ref/xamarintvos10/_._",
  4300. "ref/xamarinwatchos10/_._",
  4301. "useSharedDesignerContext.txt",
  4302. "version.txt"
  4303. ]
  4304. },
  4305. "Microsoft.EntityFrameworkCore/5.0.0": {
  4306. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4307. "type": "package",
  4308. "path": "microsoft.entityframeworkcore/5.0.0",
  4309. "files": [
  4310. ".nupkg.metadata",
  4311. ".signature.p7s",
  4312. "Icon.png",
  4313. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4314. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4315. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4316. "microsoft.entityframeworkcore.nuspec"
  4317. ]
  4318. },
  4319. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4320. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4321. "type": "package",
  4322. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4323. "files": [
  4324. ".nupkg.metadata",
  4325. ".signature.p7s",
  4326. "Icon.png",
  4327. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4328. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4329. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4330. "microsoft.entityframeworkcore.abstractions.nuspec"
  4331. ]
  4332. },
  4333. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4334. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4335. "type": "package",
  4336. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4337. "files": [
  4338. ".nupkg.metadata",
  4339. ".signature.p7s",
  4340. "Icon.png",
  4341. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4342. "lib/netstandard2.0/_._",
  4343. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4344. "microsoft.entityframeworkcore.analyzers.nuspec"
  4345. ]
  4346. },
  4347. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4348. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4349. "type": "package",
  4350. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4351. "files": [
  4352. ".nupkg.metadata",
  4353. ".signature.p7s",
  4354. "Icon.png",
  4355. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4356. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4357. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4358. "microsoft.entityframeworkcore.relational.nuspec"
  4359. ]
  4360. },
  4361. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4362. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4363. "type": "package",
  4364. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4365. "hasTools": true,
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4370. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4371. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4372. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4373. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4374. "microsoft.extensions.apidescription.server.nuspec",
  4375. "tools/Newtonsoft.Json.dll",
  4376. "tools/dotnet-getdocument.deps.json",
  4377. "tools/dotnet-getdocument.dll",
  4378. "tools/dotnet-getdocument.runtimeconfig.json",
  4379. "tools/net461-x86/GetDocument.Insider.exe",
  4380. "tools/net461-x86/GetDocument.Insider.exe.config",
  4381. "tools/net461/GetDocument.Insider.exe",
  4382. "tools/net461/GetDocument.Insider.exe.config",
  4383. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4384. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4385. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4386. ]
  4387. },
  4388. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4389. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4390. "type": "package",
  4391. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4392. "files": [
  4393. ".nupkg.metadata",
  4394. ".signature.p7s",
  4395. "Icon.png",
  4396. "LICENSE.TXT",
  4397. "THIRD-PARTY-NOTICES.TXT",
  4398. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4399. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4400. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4401. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4402. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4403. "microsoft.extensions.caching.abstractions.nuspec",
  4404. "useSharedDesignerContext.txt",
  4405. "version.txt"
  4406. ]
  4407. },
  4408. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4409. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4410. "type": "package",
  4411. "path": "microsoft.extensions.caching.memory/5.0.0",
  4412. "files": [
  4413. ".nupkg.metadata",
  4414. ".signature.p7s",
  4415. "Icon.png",
  4416. "LICENSE.TXT",
  4417. "THIRD-PARTY-NOTICES.TXT",
  4418. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4419. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4420. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4421. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4422. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4423. "microsoft.extensions.caching.memory.nuspec",
  4424. "useSharedDesignerContext.txt",
  4425. "version.txt"
  4426. ]
  4427. },
  4428. "Microsoft.Extensions.Configuration/5.0.0": {
  4429. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4430. "type": "package",
  4431. "path": "microsoft.extensions.configuration/5.0.0",
  4432. "files": [
  4433. ".nupkg.metadata",
  4434. ".signature.p7s",
  4435. "Icon.png",
  4436. "LICENSE.TXT",
  4437. "THIRD-PARTY-NOTICES.TXT",
  4438. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4439. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4440. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4441. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4442. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4443. "microsoft.extensions.configuration.nuspec",
  4444. "useSharedDesignerContext.txt",
  4445. "version.txt"
  4446. ]
  4447. },
  4448. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4449. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4450. "type": "package",
  4451. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4452. "files": [
  4453. ".nupkg.metadata",
  4454. ".signature.p7s",
  4455. "Icon.png",
  4456. "LICENSE.TXT",
  4457. "THIRD-PARTY-NOTICES.TXT",
  4458. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4459. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4460. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4461. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4462. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4463. "microsoft.extensions.configuration.abstractions.nuspec",
  4464. "useSharedDesignerContext.txt",
  4465. "version.txt"
  4466. ]
  4467. },
  4468. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4469. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4470. "type": "package",
  4471. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "Icon.png",
  4476. "LICENSE.TXT",
  4477. "THIRD-PARTY-NOTICES.TXT",
  4478. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4479. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4480. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4481. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4482. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4483. "microsoft.extensions.configuration.binder.nuspec",
  4484. "useSharedDesignerContext.txt",
  4485. "version.txt"
  4486. ]
  4487. },
  4488. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4489. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4490. "type": "package",
  4491. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "Icon.png",
  4496. "LICENSE.TXT",
  4497. "THIRD-PARTY-NOTICES.TXT",
  4498. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4499. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4500. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4501. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4502. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4503. "microsoft.extensions.configuration.fileextensions.nuspec",
  4504. "useSharedDesignerContext.txt",
  4505. "version.txt"
  4506. ]
  4507. },
  4508. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4509. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4510. "type": "package",
  4511. "path": "microsoft.extensions.configuration.json/5.0.0",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "Icon.png",
  4516. "LICENSE.TXT",
  4517. "THIRD-PARTY-NOTICES.TXT",
  4518. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4519. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4520. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4521. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4522. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4523. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4524. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4525. "microsoft.extensions.configuration.json.nuspec",
  4526. "useSharedDesignerContext.txt",
  4527. "version.txt"
  4528. ]
  4529. },
  4530. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4531. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4532. "type": "package",
  4533. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4534. "files": [
  4535. ".nupkg.metadata",
  4536. ".signature.p7s",
  4537. "Icon.png",
  4538. "LICENSE.TXT",
  4539. "THIRD-PARTY-NOTICES.TXT",
  4540. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4541. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4542. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4543. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4544. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4545. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4546. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4547. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4548. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4549. "microsoft.extensions.dependencyinjection.nuspec",
  4550. "useSharedDesignerContext.txt",
  4551. "version.txt"
  4552. ]
  4553. },
  4554. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4555. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4556. "type": "package",
  4557. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "Icon.png",
  4562. "LICENSE.TXT",
  4563. "THIRD-PARTY-NOTICES.TXT",
  4564. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4565. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4566. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4567. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4568. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4569. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4570. "useSharedDesignerContext.txt",
  4571. "version.txt"
  4572. ]
  4573. },
  4574. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4575. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4576. "type": "package",
  4577. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4578. "files": [
  4579. ".nupkg.metadata",
  4580. ".signature.p7s",
  4581. "Icon.png",
  4582. "LICENSE.TXT",
  4583. "THIRD-PARTY-NOTICES.TXT",
  4584. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4585. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4586. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4587. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4588. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4589. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4590. "useSharedDesignerContext.txt",
  4591. "version.txt"
  4592. ]
  4593. },
  4594. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4595. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4596. "type": "package",
  4597. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4598. "files": [
  4599. ".nupkg.metadata",
  4600. ".signature.p7s",
  4601. "Icon.png",
  4602. "LICENSE.TXT",
  4603. "THIRD-PARTY-NOTICES.TXT",
  4604. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4605. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4606. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4607. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4608. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4609. "microsoft.extensions.fileproviders.physical.nuspec",
  4610. "useSharedDesignerContext.txt",
  4611. "version.txt"
  4612. ]
  4613. },
  4614. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4615. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4616. "type": "package",
  4617. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4618. "files": [
  4619. ".nupkg.metadata",
  4620. ".signature.p7s",
  4621. "Icon.png",
  4622. "LICENSE.TXT",
  4623. "THIRD-PARTY-NOTICES.TXT",
  4624. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4625. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4626. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4627. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4628. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4629. "microsoft.extensions.filesystemglobbing.nuspec",
  4630. "useSharedDesignerContext.txt",
  4631. "version.txt"
  4632. ]
  4633. },
  4634. "Microsoft.Extensions.Hosting/2.1.0": {
  4635. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4636. "type": "package",
  4637. "path": "microsoft.extensions.hosting/2.1.0",
  4638. "files": [
  4639. ".nupkg.metadata",
  4640. ".signature.p7s",
  4641. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4642. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4643. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4644. "microsoft.extensions.hosting.nuspec"
  4645. ]
  4646. },
  4647. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4648. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4649. "type": "package",
  4650. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4651. "files": [
  4652. ".nupkg.metadata",
  4653. ".signature.p7s",
  4654. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4655. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4656. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4657. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4658. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4659. "microsoft.extensions.hosting.abstractions.nuspec",
  4660. "packageIcon.png"
  4661. ]
  4662. },
  4663. "Microsoft.Extensions.Http/5.0.0": {
  4664. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4665. "type": "package",
  4666. "path": "microsoft.extensions.http/5.0.0",
  4667. "files": [
  4668. ".nupkg.metadata",
  4669. ".signature.p7s",
  4670. "Icon.png",
  4671. "LICENSE.TXT",
  4672. "THIRD-PARTY-NOTICES.TXT",
  4673. "lib/net461/Microsoft.Extensions.Http.dll",
  4674. "lib/net461/Microsoft.Extensions.Http.xml",
  4675. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4676. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4677. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4678. "microsoft.extensions.http.nuspec",
  4679. "useSharedDesignerContext.txt",
  4680. "version.txt"
  4681. ]
  4682. },
  4683. "Microsoft.Extensions.Logging/5.0.0": {
  4684. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4685. "type": "package",
  4686. "path": "microsoft.extensions.logging/5.0.0",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "Icon.png",
  4691. "LICENSE.TXT",
  4692. "THIRD-PARTY-NOTICES.TXT",
  4693. "lib/net461/Microsoft.Extensions.Logging.dll",
  4694. "lib/net461/Microsoft.Extensions.Logging.xml",
  4695. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4696. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4697. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4698. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4699. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4700. "microsoft.extensions.logging.nuspec",
  4701. "useSharedDesignerContext.txt",
  4702. "version.txt"
  4703. ]
  4704. },
  4705. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4706. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4707. "type": "package",
  4708. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4709. "files": [
  4710. ".nupkg.metadata",
  4711. ".signature.p7s",
  4712. "Icon.png",
  4713. "LICENSE.TXT",
  4714. "THIRD-PARTY-NOTICES.TXT",
  4715. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4716. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4717. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4718. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4719. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4720. "microsoft.extensions.logging.abstractions.nuspec",
  4721. "useSharedDesignerContext.txt",
  4722. "version.txt"
  4723. ]
  4724. },
  4725. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4726. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4727. "type": "package",
  4728. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "Icon.png",
  4733. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4734. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4735. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4736. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4737. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4738. "microsoft.extensions.logging.configuration.nuspec"
  4739. ]
  4740. },
  4741. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4742. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4743. "type": "package",
  4744. "path": "microsoft.extensions.logging.console/3.1.30",
  4745. "files": [
  4746. ".nupkg.metadata",
  4747. ".signature.p7s",
  4748. "Icon.png",
  4749. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4750. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4751. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4752. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4753. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4754. "microsoft.extensions.logging.console.nuspec"
  4755. ]
  4756. },
  4757. "Microsoft.Extensions.Options/5.0.0": {
  4758. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4759. "type": "package",
  4760. "path": "microsoft.extensions.options/5.0.0",
  4761. "files": [
  4762. ".nupkg.metadata",
  4763. ".signature.p7s",
  4764. "Icon.png",
  4765. "LICENSE.TXT",
  4766. "THIRD-PARTY-NOTICES.TXT",
  4767. "lib/net461/Microsoft.Extensions.Options.dll",
  4768. "lib/net461/Microsoft.Extensions.Options.xml",
  4769. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4770. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4771. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4772. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4773. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4774. "microsoft.extensions.options.nuspec",
  4775. "useSharedDesignerContext.txt",
  4776. "version.txt"
  4777. ]
  4778. },
  4779. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4780. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4781. "type": "package",
  4782. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4783. "files": [
  4784. ".nupkg.metadata",
  4785. ".signature.p7s",
  4786. "Icon.png",
  4787. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4788. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4789. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4790. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4791. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4792. "microsoft.extensions.options.configurationextensions.nuspec"
  4793. ]
  4794. },
  4795. "Microsoft.Extensions.Primitives/5.0.0": {
  4796. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4797. "type": "package",
  4798. "path": "microsoft.extensions.primitives/5.0.0",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "Icon.png",
  4803. "LICENSE.TXT",
  4804. "THIRD-PARTY-NOTICES.TXT",
  4805. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4806. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4807. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4808. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4809. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4810. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4811. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4812. "microsoft.extensions.primitives.nuspec",
  4813. "useSharedDesignerContext.txt",
  4814. "version.txt"
  4815. ]
  4816. },
  4817. "Microsoft.IdentityModel.Abstractions/8.6.0": {
  4818. "sha512": "ewgV0sc2B3tjes8+OCRGE08Uxsey3qFfOD8vNq2gTs9k0/zPZ0MejK7Cb/eAW2c2Oz+IQHqgZkTycrAKYBD5yw==",
  4819. "type": "package",
  4820. "path": "microsoft.identitymodel.abstractions/8.6.0",
  4821. "files": [
  4822. ".nupkg.metadata",
  4823. ".signature.p7s",
  4824. "README.md",
  4825. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  4826. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  4827. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  4828. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  4829. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  4830. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  4831. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  4832. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  4833. "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
  4834. "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
  4835. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  4836. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  4837. "microsoft.identitymodel.abstractions.8.6.0.nupkg.sha512",
  4838. "microsoft.identitymodel.abstractions.nuspec"
  4839. ]
  4840. },
  4841. "Microsoft.IdentityModel.JsonWebTokens/8.6.0": {
  4842. "sha512": "g/CFN/OzAhJb9a94ep6/xv4b9fOUL8heFkKDwC/HNb17tUDOIPN5iVawisfZ0p1xjJlmVyYWIggnECqIfX8Rfw==",
  4843. "type": "package",
  4844. "path": "microsoft.identitymodel.jsonwebtokens/8.6.0",
  4845. "files": [
  4846. ".nupkg.metadata",
  4847. ".signature.p7s",
  4848. "README.md",
  4849. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  4850. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  4851. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  4852. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  4853. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4854. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4855. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4856. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4857. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4858. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4859. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4860. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4861. "microsoft.identitymodel.jsonwebtokens.8.6.0.nupkg.sha512",
  4862. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4863. ]
  4864. },
  4865. "Microsoft.IdentityModel.Logging/8.6.0": {
  4866. "sha512": "PqkPSoENwbGQenGQT270hZIt5p36Ta4YwDla4QId6LdqCeUDus63OChHBv+3AgujFVeBJlRrvmkN7H+Lug+u0g==",
  4867. "type": "package",
  4868. "path": "microsoft.identitymodel.logging/8.6.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "README.md",
  4873. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  4874. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  4875. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  4876. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  4877. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  4878. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  4879. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  4880. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  4881. "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
  4882. "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
  4883. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4884. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4885. "microsoft.identitymodel.logging.8.6.0.nupkg.sha512",
  4886. "microsoft.identitymodel.logging.nuspec"
  4887. ]
  4888. },
  4889. "Microsoft.IdentityModel.Tokens/8.6.0": {
  4890. "sha512": "ga4ASKm8EezJ+Oj4uvTNE0xjIWy27Ix5pOZz737CnLzxv7ClFnelX+YWbFuiO1Qj2zVoIpsPqKJRGHGlpFF6eQ==",
  4891. "type": "package",
  4892. "path": "microsoft.identitymodel.tokens/8.6.0",
  4893. "files": [
  4894. ".nupkg.metadata",
  4895. ".signature.p7s",
  4896. "README.md",
  4897. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  4898. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  4899. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  4900. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  4901. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  4902. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  4903. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  4904. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  4905. "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
  4906. "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
  4907. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4908. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4909. "microsoft.identitymodel.tokens.8.6.0.nupkg.sha512",
  4910. "microsoft.identitymodel.tokens.nuspec"
  4911. ]
  4912. },
  4913. "Microsoft.NETCore.Platforms/5.0.0": {
  4914. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4915. "type": "package",
  4916. "path": "microsoft.netcore.platforms/5.0.0",
  4917. "files": [
  4918. ".nupkg.metadata",
  4919. ".signature.p7s",
  4920. "Icon.png",
  4921. "LICENSE.TXT",
  4922. "THIRD-PARTY-NOTICES.TXT",
  4923. "lib/netstandard1.0/_._",
  4924. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4925. "microsoft.netcore.platforms.nuspec",
  4926. "runtime.json",
  4927. "useSharedDesignerContext.txt",
  4928. "version.txt"
  4929. ]
  4930. },
  4931. "Microsoft.NETCore.Targets/1.1.0": {
  4932. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4933. "type": "package",
  4934. "path": "microsoft.netcore.targets/1.1.0",
  4935. "files": [
  4936. ".nupkg.metadata",
  4937. ".signature.p7s",
  4938. "ThirdPartyNotices.txt",
  4939. "dotnet_library_license.txt",
  4940. "lib/netstandard1.0/_._",
  4941. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4942. "microsoft.netcore.targets.nuspec",
  4943. "runtime.json"
  4944. ]
  4945. },
  4946. "Microsoft.OpenApi/1.2.3": {
  4947. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4948. "type": "package",
  4949. "path": "microsoft.openapi/1.2.3",
  4950. "files": [
  4951. ".nupkg.metadata",
  4952. ".signature.p7s",
  4953. "lib/net46/Microsoft.OpenApi.dll",
  4954. "lib/net46/Microsoft.OpenApi.pdb",
  4955. "lib/net46/Microsoft.OpenApi.xml",
  4956. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4957. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4958. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4959. "microsoft.openapi.1.2.3.nupkg.sha512",
  4960. "microsoft.openapi.nuspec"
  4961. ]
  4962. },
  4963. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4964. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4965. "type": "package",
  4966. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4967. "hasTools": true,
  4968. "files": [
  4969. ".nupkg.metadata",
  4970. ".signature.p7s",
  4971. "CHANGELOG.md",
  4972. "EULA.md",
  4973. "ThirdPartyNotices.txt",
  4974. "build/Container.props",
  4975. "build/Container.targets",
  4976. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4977. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4978. "build/Rules/GeneralBrowseObject.xaml",
  4979. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4980. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4981. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4982. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4983. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4984. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4985. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4986. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4987. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4988. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4989. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4990. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4991. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4992. "build/ToolsTarget.props",
  4993. "build/ToolsTarget.targets",
  4994. "icon.png",
  4995. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4996. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4997. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4998. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4999. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5000. "tools/Newtonsoft.Json.dll",
  5001. "tools/System.Security.Principal.Windows.dll",
  5002. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5003. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5004. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5005. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5006. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5007. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5008. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5009. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5010. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5011. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5012. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5013. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5014. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5015. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5016. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5017. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5018. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5019. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5020. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5021. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5022. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5023. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5024. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5025. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5026. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5027. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5028. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5029. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5030. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5031. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5032. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5033. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5034. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5035. "tools/utils/KillProcess.exe",
  5036. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5037. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5038. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5039. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5040. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5041. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5042. ]
  5043. },
  5044. "Microsoft.Win32.Primitives/4.3.0": {
  5045. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5046. "type": "package",
  5047. "path": "microsoft.win32.primitives/4.3.0",
  5048. "files": [
  5049. ".nupkg.metadata",
  5050. ".signature.p7s",
  5051. "ThirdPartyNotices.txt",
  5052. "dotnet_library_license.txt",
  5053. "lib/MonoAndroid10/_._",
  5054. "lib/MonoTouch10/_._",
  5055. "lib/net46/Microsoft.Win32.Primitives.dll",
  5056. "lib/xamarinios10/_._",
  5057. "lib/xamarinmac20/_._",
  5058. "lib/xamarintvos10/_._",
  5059. "lib/xamarinwatchos10/_._",
  5060. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5061. "microsoft.win32.primitives.nuspec",
  5062. "ref/MonoAndroid10/_._",
  5063. "ref/MonoTouch10/_._",
  5064. "ref/net46/Microsoft.Win32.Primitives.dll",
  5065. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5066. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5067. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5068. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5069. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5070. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5071. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5072. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5073. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5074. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5075. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5076. "ref/xamarinios10/_._",
  5077. "ref/xamarinmac20/_._",
  5078. "ref/xamarintvos10/_._",
  5079. "ref/xamarinwatchos10/_._"
  5080. ]
  5081. },
  5082. "Microsoft.Win32.SystemEvents/5.0.0": {
  5083. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5084. "type": "package",
  5085. "path": "microsoft.win32.systemevents/5.0.0",
  5086. "files": [
  5087. ".nupkg.metadata",
  5088. ".signature.p7s",
  5089. "Icon.png",
  5090. "LICENSE.TXT",
  5091. "THIRD-PARTY-NOTICES.TXT",
  5092. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5093. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5094. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5095. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5096. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5097. "microsoft.win32.systemevents.nuspec",
  5098. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5099. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5100. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5101. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5102. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5103. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5104. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5105. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5106. "useSharedDesignerContext.txt",
  5107. "version.txt"
  5108. ]
  5109. },
  5110. "MySql.Data/8.0.23": {
  5111. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5112. "type": "package",
  5113. "path": "mysql.data/8.0.23",
  5114. "files": [
  5115. ".nupkg.metadata",
  5116. ".signature.p7s",
  5117. "lib/net452/MySql.Data.dll",
  5118. "lib/net452/MySql.Data.xml",
  5119. "lib/net452/Ubiety.Dns.Core.dll",
  5120. "lib/net452/Zstandard.Net.dll",
  5121. "lib/net48/MySql.Data.dll",
  5122. "lib/net48/MySql.Data.xml",
  5123. "lib/net48/Ubiety.Dns.Core.dll",
  5124. "lib/net48/Zstandard.Net.dll",
  5125. "lib/net5.0/MySql.Data.dll",
  5126. "lib/net5.0/MySql.Data.xml",
  5127. "lib/net5.0/Ubiety.Dns.Core.dll",
  5128. "lib/net5.0/Zstandard.Net.dll",
  5129. "lib/netstandard2.0/MySql.Data.dll",
  5130. "lib/netstandard2.0/MySql.Data.xml",
  5131. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5132. "lib/netstandard2.0/Zstandard.Net.dll",
  5133. "lib/netstandard2.1/MySql.Data.dll",
  5134. "lib/netstandard2.1/MySql.Data.xml",
  5135. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5136. "lib/netstandard2.1/Zstandard.Net.dll",
  5137. "mysql.data.8.0.23.nupkg.sha512",
  5138. "mysql.data.nuspec"
  5139. ]
  5140. },
  5141. "MySqlConnector/1.1.0": {
  5142. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5143. "type": "package",
  5144. "path": "mysqlconnector/1.1.0",
  5145. "files": [
  5146. ".nupkg.metadata",
  5147. ".signature.p7s",
  5148. "lib/net45/MySqlConnector.dll",
  5149. "lib/net45/MySqlConnector.xml",
  5150. "lib/net461/MySqlConnector.dll",
  5151. "lib/net461/MySqlConnector.xml",
  5152. "lib/net471/MySqlConnector.dll",
  5153. "lib/net471/MySqlConnector.xml",
  5154. "lib/net5.0/MySqlConnector.dll",
  5155. "lib/net5.0/MySqlConnector.xml",
  5156. "lib/netcoreapp2.1/MySqlConnector.dll",
  5157. "lib/netcoreapp2.1/MySqlConnector.xml",
  5158. "lib/netcoreapp3.1/MySqlConnector.dll",
  5159. "lib/netcoreapp3.1/MySqlConnector.xml",
  5160. "lib/netstandard1.3/MySqlConnector.dll",
  5161. "lib/netstandard1.3/MySqlConnector.xml",
  5162. "lib/netstandard2.0/MySqlConnector.dll",
  5163. "lib/netstandard2.0/MySqlConnector.xml",
  5164. "lib/netstandard2.1/MySqlConnector.dll",
  5165. "lib/netstandard2.1/MySqlConnector.xml",
  5166. "logo.png",
  5167. "mysqlconnector.1.1.0.nupkg.sha512",
  5168. "mysqlconnector.nuspec"
  5169. ]
  5170. },
  5171. "NETStandard.Library/1.6.1": {
  5172. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5173. "type": "package",
  5174. "path": "netstandard.library/1.6.1",
  5175. "files": [
  5176. ".nupkg.metadata",
  5177. ".signature.p7s",
  5178. "ThirdPartyNotices.txt",
  5179. "dotnet_library_license.txt",
  5180. "netstandard.library.1.6.1.nupkg.sha512",
  5181. "netstandard.library.nuspec"
  5182. ]
  5183. },
  5184. "Newtonsoft.Json/13.0.1": {
  5185. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5186. "type": "package",
  5187. "path": "newtonsoft.json/13.0.1",
  5188. "files": [
  5189. ".nupkg.metadata",
  5190. ".signature.p7s",
  5191. "LICENSE.md",
  5192. "lib/net20/Newtonsoft.Json.dll",
  5193. "lib/net20/Newtonsoft.Json.xml",
  5194. "lib/net35/Newtonsoft.Json.dll",
  5195. "lib/net35/Newtonsoft.Json.xml",
  5196. "lib/net40/Newtonsoft.Json.dll",
  5197. "lib/net40/Newtonsoft.Json.xml",
  5198. "lib/net45/Newtonsoft.Json.dll",
  5199. "lib/net45/Newtonsoft.Json.xml",
  5200. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5201. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5202. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5203. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5204. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5205. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5206. "newtonsoft.json.13.0.1.nupkg.sha512",
  5207. "newtonsoft.json.nuspec",
  5208. "packageIcon.png"
  5209. ]
  5210. },
  5211. "Nito.AsyncEx.Coordination/5.0.0": {
  5212. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5213. "type": "package",
  5214. "path": "nito.asyncex.coordination/5.0.0",
  5215. "files": [
  5216. ".nupkg.metadata",
  5217. ".signature.p7s",
  5218. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5219. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5220. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5221. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5222. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5223. "nito.asyncex.coordination.nuspec"
  5224. ]
  5225. },
  5226. "Nito.AsyncEx.Tasks/5.0.0": {
  5227. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5228. "type": "package",
  5229. "path": "nito.asyncex.tasks/5.0.0",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. ".signature.p7s",
  5233. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5234. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5235. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5236. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5237. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5238. "nito.asyncex.tasks.nuspec"
  5239. ]
  5240. },
  5241. "Nito.Collections.Deque/1.0.4": {
  5242. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5243. "type": "package",
  5244. "path": "nito.collections.deque/1.0.4",
  5245. "files": [
  5246. ".nupkg.metadata",
  5247. ".signature.p7s",
  5248. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5249. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5250. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5251. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5252. "nito.collections.deque.1.0.4.nupkg.sha512",
  5253. "nito.collections.deque.nuspec"
  5254. ]
  5255. },
  5256. "Nito.Disposables/2.0.0": {
  5257. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5258. "type": "package",
  5259. "path": "nito.disposables/2.0.0",
  5260. "files": [
  5261. ".nupkg.metadata",
  5262. ".signature.p7s",
  5263. "lib/netstandard1.0/Nito.Disposables.dll",
  5264. "lib/netstandard1.0/Nito.Disposables.pdb",
  5265. "lib/netstandard1.0/Nito.Disposables.xml",
  5266. "lib/netstandard2.0/Nito.Disposables.dll",
  5267. "lib/netstandard2.0/Nito.Disposables.pdb",
  5268. "lib/netstandard2.0/Nito.Disposables.xml",
  5269. "nito.disposables.2.0.0.nupkg.sha512",
  5270. "nito.disposables.nuspec"
  5271. ]
  5272. },
  5273. "NodaTime/2.4.7": {
  5274. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5275. "type": "package",
  5276. "path": "nodatime/2.4.7",
  5277. "files": [
  5278. ".nupkg.metadata",
  5279. ".signature.p7s",
  5280. "lib/net45/NodaTime.dll",
  5281. "lib/net45/NodaTime.pdb",
  5282. "lib/net45/NodaTime.xml",
  5283. "lib/netstandard1.3/NodaTime.dll",
  5284. "lib/netstandard1.3/NodaTime.pdb",
  5285. "lib/netstandard1.3/NodaTime.xml",
  5286. "lib/netstandard2.0/NodaTime.dll",
  5287. "lib/netstandard2.0/NodaTime.pdb",
  5288. "lib/netstandard2.0/NodaTime.xml",
  5289. "nodatime.2.4.7.nupkg.sha512",
  5290. "nodatime.nuspec"
  5291. ]
  5292. },
  5293. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5294. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5295. "type": "package",
  5296. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "icon.png",
  5301. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5302. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5303. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5304. "pomelo.entityframeworkcore.mysql.nuspec"
  5305. ]
  5306. },
  5307. "QRCoder/1.4.3": {
  5308. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5309. "type": "package",
  5310. "path": "qrcoder/1.4.3",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "lib/net35/QRCoder.dll",
  5315. "lib/net40/QRCoder.dll",
  5316. "lib/net5.0-windows7.0/QRCoder.dll",
  5317. "lib/net5.0/QRCoder.dll",
  5318. "lib/net6.0-windows7.0/QRCoder.dll",
  5319. "lib/net6.0/QRCoder.dll",
  5320. "lib/netstandard1.3/QRCoder.dll",
  5321. "lib/netstandard2.0/QRCoder.dll",
  5322. "nuget-icon.png",
  5323. "nuget-readme.md",
  5324. "qrcoder.1.4.3.nupkg.sha512",
  5325. "qrcoder.nuspec"
  5326. ]
  5327. },
  5328. "Quartz/3.3.3": {
  5329. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5330. "type": "package",
  5331. "path": "quartz/3.3.3",
  5332. "files": [
  5333. ".nupkg.metadata",
  5334. ".signature.p7s",
  5335. "lib/net461/Quartz.dll",
  5336. "lib/net461/Quartz.xml",
  5337. "lib/net472/Quartz.dll",
  5338. "lib/net472/Quartz.xml",
  5339. "lib/netstandard2.0/Quartz.dll",
  5340. "lib/netstandard2.0/Quartz.xml",
  5341. "quartz-logo-small.png",
  5342. "quartz.3.3.3.nupkg.sha512",
  5343. "quartz.nuspec"
  5344. ]
  5345. },
  5346. "RabbitMQ.Client/6.8.1": {
  5347. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5348. "type": "package",
  5349. "path": "rabbitmq.client/6.8.1",
  5350. "files": [
  5351. ".nupkg.metadata",
  5352. ".signature.p7s",
  5353. "README.md",
  5354. "icon.png",
  5355. "lib/net462/RabbitMQ.Client.dll",
  5356. "lib/net462/RabbitMQ.Client.xml",
  5357. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5358. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5359. "rabbitmq.client.6.8.1.nupkg.sha512",
  5360. "rabbitmq.client.nuspec"
  5361. ]
  5362. },
  5363. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5364. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5365. "type": "package",
  5366. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5367. "files": [
  5368. ".nupkg.metadata",
  5369. ".signature.p7s",
  5370. "ThirdPartyNotices.txt",
  5371. "dotnet_library_license.txt",
  5372. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5373. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5374. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5375. ]
  5376. },
  5377. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5378. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5379. "type": "package",
  5380. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5381. "files": [
  5382. ".nupkg.metadata",
  5383. ".signature.p7s",
  5384. "ThirdPartyNotices.txt",
  5385. "dotnet_library_license.txt",
  5386. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5387. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5388. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5389. ]
  5390. },
  5391. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5392. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5393. "type": "package",
  5394. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5395. "files": [
  5396. ".nupkg.metadata",
  5397. ".signature.p7s",
  5398. "ThirdPartyNotices.txt",
  5399. "dotnet_library_license.txt",
  5400. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5401. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5402. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5403. ]
  5404. },
  5405. "runtime.native.System/4.3.0": {
  5406. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5407. "type": "package",
  5408. "path": "runtime.native.system/4.3.0",
  5409. "files": [
  5410. ".nupkg.metadata",
  5411. ".signature.p7s",
  5412. "ThirdPartyNotices.txt",
  5413. "dotnet_library_license.txt",
  5414. "lib/netstandard1.0/_._",
  5415. "runtime.native.system.4.3.0.nupkg.sha512",
  5416. "runtime.native.system.nuspec"
  5417. ]
  5418. },
  5419. "runtime.native.System.IO.Compression/4.3.0": {
  5420. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5421. "type": "package",
  5422. "path": "runtime.native.system.io.compression/4.3.0",
  5423. "files": [
  5424. ".nupkg.metadata",
  5425. ".signature.p7s",
  5426. "ThirdPartyNotices.txt",
  5427. "dotnet_library_license.txt",
  5428. "lib/netstandard1.0/_._",
  5429. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5430. "runtime.native.system.io.compression.nuspec"
  5431. ]
  5432. },
  5433. "runtime.native.System.Net.Http/4.3.0": {
  5434. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5435. "type": "package",
  5436. "path": "runtime.native.system.net.http/4.3.0",
  5437. "files": [
  5438. ".nupkg.metadata",
  5439. ".signature.p7s",
  5440. "ThirdPartyNotices.txt",
  5441. "dotnet_library_license.txt",
  5442. "lib/netstandard1.0/_._",
  5443. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5444. "runtime.native.system.net.http.nuspec"
  5445. ]
  5446. },
  5447. "runtime.native.System.Net.Security/4.3.0": {
  5448. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5449. "type": "package",
  5450. "path": "runtime.native.system.net.security/4.3.0",
  5451. "files": [
  5452. ".nupkg.metadata",
  5453. ".signature.p7s",
  5454. "ThirdPartyNotices.txt",
  5455. "dotnet_library_license.txt",
  5456. "lib/netstandard1.0/_._",
  5457. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5458. "runtime.native.system.net.security.nuspec"
  5459. ]
  5460. },
  5461. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5462. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5463. "type": "package",
  5464. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5465. "files": [
  5466. ".nupkg.metadata",
  5467. ".signature.p7s",
  5468. "ThirdPartyNotices.txt",
  5469. "dotnet_library_license.txt",
  5470. "lib/netstandard1.0/_._",
  5471. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5472. "runtime.native.system.security.cryptography.apple.nuspec"
  5473. ]
  5474. },
  5475. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5476. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5477. "type": "package",
  5478. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5479. "files": [
  5480. ".nupkg.metadata",
  5481. ".signature.p7s",
  5482. "ThirdPartyNotices.txt",
  5483. "dotnet_library_license.txt",
  5484. "lib/netstandard1.0/_._",
  5485. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5486. "runtime.native.system.security.cryptography.openssl.nuspec"
  5487. ]
  5488. },
  5489. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5490. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5491. "type": "package",
  5492. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5493. "files": [
  5494. ".nupkg.metadata",
  5495. ".signature.p7s",
  5496. "ThirdPartyNotices.txt",
  5497. "dotnet_library_license.txt",
  5498. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5499. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5500. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5501. ]
  5502. },
  5503. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5504. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5505. "type": "package",
  5506. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5507. "files": [
  5508. ".nupkg.metadata",
  5509. ".signature.p7s",
  5510. "ThirdPartyNotices.txt",
  5511. "dotnet_library_license.txt",
  5512. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5513. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5514. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5515. ]
  5516. },
  5517. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5518. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5519. "type": "package",
  5520. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5521. "files": [
  5522. ".nupkg.metadata",
  5523. ".signature.p7s",
  5524. "ThirdPartyNotices.txt",
  5525. "dotnet_library_license.txt",
  5526. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5527. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5528. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5529. ]
  5530. },
  5531. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5532. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5533. "type": "package",
  5534. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5535. "files": [
  5536. ".nupkg.metadata",
  5537. ".signature.p7s",
  5538. "ThirdPartyNotices.txt",
  5539. "dotnet_library_license.txt",
  5540. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5541. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5542. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5543. ]
  5544. },
  5545. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5546. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5547. "type": "package",
  5548. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5549. "files": [
  5550. ".nupkg.metadata",
  5551. ".signature.p7s",
  5552. "ThirdPartyNotices.txt",
  5553. "dotnet_library_license.txt",
  5554. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5555. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5556. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5557. ]
  5558. },
  5559. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5560. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5561. "type": "package",
  5562. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5563. "files": [
  5564. ".nupkg.metadata",
  5565. ".signature.p7s",
  5566. "ThirdPartyNotices.txt",
  5567. "dotnet_library_license.txt",
  5568. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5569. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5570. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5571. ]
  5572. },
  5573. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5574. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5575. "type": "package",
  5576. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5577. "files": [
  5578. ".nupkg.metadata",
  5579. ".signature.p7s",
  5580. "ThirdPartyNotices.txt",
  5581. "dotnet_library_license.txt",
  5582. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5583. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5584. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5585. ]
  5586. },
  5587. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5588. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5589. "type": "package",
  5590. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5591. "files": [
  5592. ".nupkg.metadata",
  5593. ".signature.p7s",
  5594. "ThirdPartyNotices.txt",
  5595. "dotnet_library_license.txt",
  5596. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5597. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5598. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5599. ]
  5600. },
  5601. "SixLabors.ImageSharp/2.1.6": {
  5602. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5603. "type": "package",
  5604. "path": "sixlabors.imagesharp/2.1.6",
  5605. "files": [
  5606. ".nupkg.metadata",
  5607. ".signature.p7s",
  5608. "lib/net472/SixLabors.ImageSharp.dll",
  5609. "lib/net472/SixLabors.ImageSharp.xml",
  5610. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5611. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5612. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5613. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5614. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5615. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5616. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5617. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5618. "sixlabors.imagesharp.128.png",
  5619. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5620. "sixlabors.imagesharp.nuspec"
  5621. ]
  5622. },
  5623. "SSH.NET/2020.0.0-beta1": {
  5624. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5625. "type": "package",
  5626. "path": "ssh.net/2020.0.0-beta1",
  5627. "files": [
  5628. ".nupkg.metadata",
  5629. ".signature.p7s",
  5630. "lib/net35/Renci.SshNet.dll",
  5631. "lib/net35/Renci.SshNet.xml",
  5632. "lib/net40/Renci.SshNet.dll",
  5633. "lib/net40/Renci.SshNet.xml",
  5634. "lib/netstandard1.3/Renci.SshNet.dll",
  5635. "lib/netstandard1.3/Renci.SshNet.xml",
  5636. "lib/netstandard2.0/Renci.SshNet.dll",
  5637. "lib/netstandard2.0/Renci.SshNet.xml",
  5638. "lib/sl4/Renci.SshNet.dll",
  5639. "lib/sl4/Renci.SshNet.xml",
  5640. "lib/sl5/Renci.SshNet.dll",
  5641. "lib/sl5/Renci.SshNet.xml",
  5642. "lib/uap10/Renci.SshNet.dll",
  5643. "lib/uap10/Renci.SshNet.xml",
  5644. "lib/wp71/Renci.SshNet.dll",
  5645. "lib/wp71/Renci.SshNet.xml",
  5646. "lib/wp8/Renci.SshNet.dll",
  5647. "lib/wp8/Renci.SshNet.xml",
  5648. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5649. "ssh.net.nuspec"
  5650. ]
  5651. },
  5652. "SshNet.Security.Cryptography/1.3.0": {
  5653. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5654. "type": "package",
  5655. "path": "sshnet.security.cryptography/1.3.0",
  5656. "files": [
  5657. ".nupkg.metadata",
  5658. ".signature.p7s",
  5659. "lib/net20/SshNet.Security.Cryptography.dll",
  5660. "lib/net20/SshNet.Security.Cryptography.xml",
  5661. "lib/net40/SshNet.Security.Cryptography.dll",
  5662. "lib/net40/SshNet.Security.Cryptography.xml",
  5663. "lib/net45/SshNet.Security.Cryptography.dll",
  5664. "lib/net45/SshNet.Security.Cryptography.xml",
  5665. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5666. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5667. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5668. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5669. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5670. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5671. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5672. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5673. "lib/sl4/SshNet.Security.Cryptography.dll",
  5674. "lib/sl4/SshNet.Security.Cryptography.xml",
  5675. "lib/sl5/SshNet.Security.Cryptography.dll",
  5676. "lib/sl5/SshNet.Security.Cryptography.xml",
  5677. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5678. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5679. "lib/wp71/SshNet.Security.Cryptography.dll",
  5680. "lib/wp71/SshNet.Security.Cryptography.xml",
  5681. "lib/wp8/SshNet.Security.Cryptography.dll",
  5682. "lib/wp8/SshNet.Security.Cryptography.xml",
  5683. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5684. "sshnet.security.cryptography.nuspec"
  5685. ]
  5686. },
  5687. "StackExchange.Redis/1.2.4": {
  5688. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5689. "type": "package",
  5690. "path": "stackexchange.redis/1.2.4",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "lib/net45/StackExchange.Redis.dll",
  5695. "lib/net45/StackExchange.Redis.xml",
  5696. "lib/net46/StackExchange.Redis.dll",
  5697. "lib/net46/StackExchange.Redis.xml",
  5698. "lib/netstandard1.5/StackExchange.Redis.dll",
  5699. "lib/netstandard1.5/StackExchange.Redis.xml",
  5700. "stackexchange.redis.1.2.4.nupkg.sha512",
  5701. "stackexchange.redis.nuspec"
  5702. ]
  5703. },
  5704. "Swashbuckle.AspNetCore/5.6.3": {
  5705. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5706. "type": "package",
  5707. "path": "swashbuckle.aspnetcore/5.6.3",
  5708. "files": [
  5709. ".nupkg.metadata",
  5710. ".signature.p7s",
  5711. "build/Swashbuckle.AspNetCore.props",
  5712. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5713. "swashbuckle.aspnetcore.nuspec"
  5714. ]
  5715. },
  5716. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5717. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5718. "type": "package",
  5719. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5724. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5725. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5726. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5727. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5728. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5729. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5730. "swashbuckle.aspnetcore.swagger.nuspec"
  5731. ]
  5732. },
  5733. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5734. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5735. "type": "package",
  5736. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5737. "files": [
  5738. ".nupkg.metadata",
  5739. ".signature.p7s",
  5740. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5741. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5742. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5743. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5744. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5745. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5746. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5747. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5748. ]
  5749. },
  5750. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5751. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5752. "type": "package",
  5753. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5754. "files": [
  5755. ".nupkg.metadata",
  5756. ".signature.p7s",
  5757. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5758. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5759. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5760. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5761. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5762. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5763. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5764. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5765. ]
  5766. },
  5767. "System.AppContext/4.3.0": {
  5768. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5769. "type": "package",
  5770. "path": "system.appcontext/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/MonoAndroid10/_._",
  5777. "lib/MonoTouch10/_._",
  5778. "lib/net46/System.AppContext.dll",
  5779. "lib/net463/System.AppContext.dll",
  5780. "lib/netcore50/System.AppContext.dll",
  5781. "lib/netstandard1.6/System.AppContext.dll",
  5782. "lib/xamarinios10/_._",
  5783. "lib/xamarinmac20/_._",
  5784. "lib/xamarintvos10/_._",
  5785. "lib/xamarinwatchos10/_._",
  5786. "ref/MonoAndroid10/_._",
  5787. "ref/MonoTouch10/_._",
  5788. "ref/net46/System.AppContext.dll",
  5789. "ref/net463/System.AppContext.dll",
  5790. "ref/netstandard/_._",
  5791. "ref/netstandard1.3/System.AppContext.dll",
  5792. "ref/netstandard1.3/System.AppContext.xml",
  5793. "ref/netstandard1.3/de/System.AppContext.xml",
  5794. "ref/netstandard1.3/es/System.AppContext.xml",
  5795. "ref/netstandard1.3/fr/System.AppContext.xml",
  5796. "ref/netstandard1.3/it/System.AppContext.xml",
  5797. "ref/netstandard1.3/ja/System.AppContext.xml",
  5798. "ref/netstandard1.3/ko/System.AppContext.xml",
  5799. "ref/netstandard1.3/ru/System.AppContext.xml",
  5800. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5801. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5802. "ref/netstandard1.6/System.AppContext.dll",
  5803. "ref/netstandard1.6/System.AppContext.xml",
  5804. "ref/netstandard1.6/de/System.AppContext.xml",
  5805. "ref/netstandard1.6/es/System.AppContext.xml",
  5806. "ref/netstandard1.6/fr/System.AppContext.xml",
  5807. "ref/netstandard1.6/it/System.AppContext.xml",
  5808. "ref/netstandard1.6/ja/System.AppContext.xml",
  5809. "ref/netstandard1.6/ko/System.AppContext.xml",
  5810. "ref/netstandard1.6/ru/System.AppContext.xml",
  5811. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5812. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5813. "ref/xamarinios10/_._",
  5814. "ref/xamarinmac20/_._",
  5815. "ref/xamarintvos10/_._",
  5816. "ref/xamarinwatchos10/_._",
  5817. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5818. "system.appcontext.4.3.0.nupkg.sha512",
  5819. "system.appcontext.nuspec"
  5820. ]
  5821. },
  5822. "System.Buffers/4.5.1": {
  5823. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5824. "type": "package",
  5825. "path": "system.buffers/4.5.1",
  5826. "files": [
  5827. ".nupkg.metadata",
  5828. ".signature.p7s",
  5829. "LICENSE.TXT",
  5830. "THIRD-PARTY-NOTICES.TXT",
  5831. "lib/net461/System.Buffers.dll",
  5832. "lib/net461/System.Buffers.xml",
  5833. "lib/netcoreapp2.0/_._",
  5834. "lib/netstandard1.1/System.Buffers.dll",
  5835. "lib/netstandard1.1/System.Buffers.xml",
  5836. "lib/netstandard2.0/System.Buffers.dll",
  5837. "lib/netstandard2.0/System.Buffers.xml",
  5838. "lib/uap10.0.16299/_._",
  5839. "ref/net45/System.Buffers.dll",
  5840. "ref/net45/System.Buffers.xml",
  5841. "ref/netcoreapp2.0/_._",
  5842. "ref/netstandard1.1/System.Buffers.dll",
  5843. "ref/netstandard1.1/System.Buffers.xml",
  5844. "ref/netstandard2.0/System.Buffers.dll",
  5845. "ref/netstandard2.0/System.Buffers.xml",
  5846. "ref/uap10.0.16299/_._",
  5847. "system.buffers.4.5.1.nupkg.sha512",
  5848. "system.buffers.nuspec",
  5849. "useSharedDesignerContext.txt",
  5850. "version.txt"
  5851. ]
  5852. },
  5853. "System.Collections/4.3.0": {
  5854. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5855. "type": "package",
  5856. "path": "system.collections/4.3.0",
  5857. "files": [
  5858. ".nupkg.metadata",
  5859. ".signature.p7s",
  5860. "ThirdPartyNotices.txt",
  5861. "dotnet_library_license.txt",
  5862. "lib/MonoAndroid10/_._",
  5863. "lib/MonoTouch10/_._",
  5864. "lib/net45/_._",
  5865. "lib/portable-net45+win8+wp8+wpa81/_._",
  5866. "lib/win8/_._",
  5867. "lib/wp80/_._",
  5868. "lib/wpa81/_._",
  5869. "lib/xamarinios10/_._",
  5870. "lib/xamarinmac20/_._",
  5871. "lib/xamarintvos10/_._",
  5872. "lib/xamarinwatchos10/_._",
  5873. "ref/MonoAndroid10/_._",
  5874. "ref/MonoTouch10/_._",
  5875. "ref/net45/_._",
  5876. "ref/netcore50/System.Collections.dll",
  5877. "ref/netcore50/System.Collections.xml",
  5878. "ref/netcore50/de/System.Collections.xml",
  5879. "ref/netcore50/es/System.Collections.xml",
  5880. "ref/netcore50/fr/System.Collections.xml",
  5881. "ref/netcore50/it/System.Collections.xml",
  5882. "ref/netcore50/ja/System.Collections.xml",
  5883. "ref/netcore50/ko/System.Collections.xml",
  5884. "ref/netcore50/ru/System.Collections.xml",
  5885. "ref/netcore50/zh-hans/System.Collections.xml",
  5886. "ref/netcore50/zh-hant/System.Collections.xml",
  5887. "ref/netstandard1.0/System.Collections.dll",
  5888. "ref/netstandard1.0/System.Collections.xml",
  5889. "ref/netstandard1.0/de/System.Collections.xml",
  5890. "ref/netstandard1.0/es/System.Collections.xml",
  5891. "ref/netstandard1.0/fr/System.Collections.xml",
  5892. "ref/netstandard1.0/it/System.Collections.xml",
  5893. "ref/netstandard1.0/ja/System.Collections.xml",
  5894. "ref/netstandard1.0/ko/System.Collections.xml",
  5895. "ref/netstandard1.0/ru/System.Collections.xml",
  5896. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5897. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5898. "ref/netstandard1.3/System.Collections.dll",
  5899. "ref/netstandard1.3/System.Collections.xml",
  5900. "ref/netstandard1.3/de/System.Collections.xml",
  5901. "ref/netstandard1.3/es/System.Collections.xml",
  5902. "ref/netstandard1.3/fr/System.Collections.xml",
  5903. "ref/netstandard1.3/it/System.Collections.xml",
  5904. "ref/netstandard1.3/ja/System.Collections.xml",
  5905. "ref/netstandard1.3/ko/System.Collections.xml",
  5906. "ref/netstandard1.3/ru/System.Collections.xml",
  5907. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5908. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5909. "ref/portable-net45+win8+wp8+wpa81/_._",
  5910. "ref/win8/_._",
  5911. "ref/wp80/_._",
  5912. "ref/wpa81/_._",
  5913. "ref/xamarinios10/_._",
  5914. "ref/xamarinmac20/_._",
  5915. "ref/xamarintvos10/_._",
  5916. "ref/xamarinwatchos10/_._",
  5917. "system.collections.4.3.0.nupkg.sha512",
  5918. "system.collections.nuspec"
  5919. ]
  5920. },
  5921. "System.Collections.Concurrent/4.3.0": {
  5922. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5923. "type": "package",
  5924. "path": "system.collections.concurrent/4.3.0",
  5925. "files": [
  5926. ".nupkg.metadata",
  5927. ".signature.p7s",
  5928. "ThirdPartyNotices.txt",
  5929. "dotnet_library_license.txt",
  5930. "lib/MonoAndroid10/_._",
  5931. "lib/MonoTouch10/_._",
  5932. "lib/net45/_._",
  5933. "lib/netcore50/System.Collections.Concurrent.dll",
  5934. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5935. "lib/portable-net45+win8+wpa81/_._",
  5936. "lib/win8/_._",
  5937. "lib/wpa81/_._",
  5938. "lib/xamarinios10/_._",
  5939. "lib/xamarinmac20/_._",
  5940. "lib/xamarintvos10/_._",
  5941. "lib/xamarinwatchos10/_._",
  5942. "ref/MonoAndroid10/_._",
  5943. "ref/MonoTouch10/_._",
  5944. "ref/net45/_._",
  5945. "ref/netcore50/System.Collections.Concurrent.dll",
  5946. "ref/netcore50/System.Collections.Concurrent.xml",
  5947. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5948. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5949. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5950. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5951. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5952. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5953. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5954. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5955. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5956. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5957. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5958. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5959. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5960. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5961. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5962. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5963. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5964. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5965. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5966. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5967. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5968. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5969. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5970. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5971. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5972. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5973. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5974. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5975. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5976. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5977. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5978. "ref/portable-net45+win8+wpa81/_._",
  5979. "ref/win8/_._",
  5980. "ref/wpa81/_._",
  5981. "ref/xamarinios10/_._",
  5982. "ref/xamarinmac20/_._",
  5983. "ref/xamarintvos10/_._",
  5984. "ref/xamarinwatchos10/_._",
  5985. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5986. "system.collections.concurrent.nuspec"
  5987. ]
  5988. },
  5989. "System.Collections.Immutable/5.0.0": {
  5990. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5991. "type": "package",
  5992. "path": "system.collections.immutable/5.0.0",
  5993. "files": [
  5994. ".nupkg.metadata",
  5995. ".signature.p7s",
  5996. "Icon.png",
  5997. "LICENSE.TXT",
  5998. "THIRD-PARTY-NOTICES.TXT",
  5999. "lib/net461/System.Collections.Immutable.dll",
  6000. "lib/net461/System.Collections.Immutable.xml",
  6001. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6002. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6003. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6004. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6005. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6006. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6007. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6008. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6009. "system.collections.immutable.5.0.0.nupkg.sha512",
  6010. "system.collections.immutable.nuspec",
  6011. "useSharedDesignerContext.txt",
  6012. "version.txt"
  6013. ]
  6014. },
  6015. "System.Collections.NonGeneric/4.3.0": {
  6016. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6017. "type": "package",
  6018. "path": "system.collections.nongeneric/4.3.0",
  6019. "files": [
  6020. ".nupkg.metadata",
  6021. ".signature.p7s",
  6022. "ThirdPartyNotices.txt",
  6023. "dotnet_library_license.txt",
  6024. "lib/MonoAndroid10/_._",
  6025. "lib/MonoTouch10/_._",
  6026. "lib/net46/System.Collections.NonGeneric.dll",
  6027. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6028. "lib/xamarinios10/_._",
  6029. "lib/xamarinmac20/_._",
  6030. "lib/xamarintvos10/_._",
  6031. "lib/xamarinwatchos10/_._",
  6032. "ref/MonoAndroid10/_._",
  6033. "ref/MonoTouch10/_._",
  6034. "ref/net46/System.Collections.NonGeneric.dll",
  6035. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6036. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6037. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6038. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6039. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6040. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6041. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6042. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6043. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6044. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6045. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6046. "ref/xamarinios10/_._",
  6047. "ref/xamarinmac20/_._",
  6048. "ref/xamarintvos10/_._",
  6049. "ref/xamarinwatchos10/_._",
  6050. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6051. "system.collections.nongeneric.nuspec"
  6052. ]
  6053. },
  6054. "System.Collections.Specialized/4.3.0": {
  6055. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6056. "type": "package",
  6057. "path": "system.collections.specialized/4.3.0",
  6058. "files": [
  6059. ".nupkg.metadata",
  6060. ".signature.p7s",
  6061. "ThirdPartyNotices.txt",
  6062. "dotnet_library_license.txt",
  6063. "lib/MonoAndroid10/_._",
  6064. "lib/MonoTouch10/_._",
  6065. "lib/net46/System.Collections.Specialized.dll",
  6066. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6067. "lib/xamarinios10/_._",
  6068. "lib/xamarinmac20/_._",
  6069. "lib/xamarintvos10/_._",
  6070. "lib/xamarinwatchos10/_._",
  6071. "ref/MonoAndroid10/_._",
  6072. "ref/MonoTouch10/_._",
  6073. "ref/net46/System.Collections.Specialized.dll",
  6074. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6075. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6076. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6077. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6078. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6079. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6080. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6081. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6082. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6083. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6084. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6085. "ref/xamarinios10/_._",
  6086. "ref/xamarinmac20/_._",
  6087. "ref/xamarintvos10/_._",
  6088. "ref/xamarinwatchos10/_._",
  6089. "system.collections.specialized.4.3.0.nupkg.sha512",
  6090. "system.collections.specialized.nuspec"
  6091. ]
  6092. },
  6093. "System.ComponentModel/4.3.0": {
  6094. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6095. "type": "package",
  6096. "path": "system.componentmodel/4.3.0",
  6097. "files": [
  6098. ".nupkg.metadata",
  6099. ".signature.p7s",
  6100. "ThirdPartyNotices.txt",
  6101. "dotnet_library_license.txt",
  6102. "lib/MonoAndroid10/_._",
  6103. "lib/MonoTouch10/_._",
  6104. "lib/net45/_._",
  6105. "lib/netcore50/System.ComponentModel.dll",
  6106. "lib/netstandard1.3/System.ComponentModel.dll",
  6107. "lib/portable-net45+win8+wp8+wpa81/_._",
  6108. "lib/win8/_._",
  6109. "lib/wp80/_._",
  6110. "lib/wpa81/_._",
  6111. "lib/xamarinios10/_._",
  6112. "lib/xamarinmac20/_._",
  6113. "lib/xamarintvos10/_._",
  6114. "lib/xamarinwatchos10/_._",
  6115. "ref/MonoAndroid10/_._",
  6116. "ref/MonoTouch10/_._",
  6117. "ref/net45/_._",
  6118. "ref/netcore50/System.ComponentModel.dll",
  6119. "ref/netcore50/System.ComponentModel.xml",
  6120. "ref/netcore50/de/System.ComponentModel.xml",
  6121. "ref/netcore50/es/System.ComponentModel.xml",
  6122. "ref/netcore50/fr/System.ComponentModel.xml",
  6123. "ref/netcore50/it/System.ComponentModel.xml",
  6124. "ref/netcore50/ja/System.ComponentModel.xml",
  6125. "ref/netcore50/ko/System.ComponentModel.xml",
  6126. "ref/netcore50/ru/System.ComponentModel.xml",
  6127. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6128. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6129. "ref/netstandard1.0/System.ComponentModel.dll",
  6130. "ref/netstandard1.0/System.ComponentModel.xml",
  6131. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6132. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6133. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6134. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6135. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6136. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6137. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6138. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6139. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6140. "ref/portable-net45+win8+wp8+wpa81/_._",
  6141. "ref/win8/_._",
  6142. "ref/wp80/_._",
  6143. "ref/wpa81/_._",
  6144. "ref/xamarinios10/_._",
  6145. "ref/xamarinmac20/_._",
  6146. "ref/xamarintvos10/_._",
  6147. "ref/xamarinwatchos10/_._",
  6148. "system.componentmodel.4.3.0.nupkg.sha512",
  6149. "system.componentmodel.nuspec"
  6150. ]
  6151. },
  6152. "System.ComponentModel.Annotations/5.0.0": {
  6153. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6154. "type": "package",
  6155. "path": "system.componentmodel.annotations/5.0.0",
  6156. "files": [
  6157. ".nupkg.metadata",
  6158. ".signature.p7s",
  6159. "Icon.png",
  6160. "LICENSE.TXT",
  6161. "THIRD-PARTY-NOTICES.TXT",
  6162. "lib/MonoAndroid10/_._",
  6163. "lib/MonoTouch10/_._",
  6164. "lib/net45/_._",
  6165. "lib/net461/System.ComponentModel.Annotations.dll",
  6166. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6167. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6168. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6169. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6170. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6171. "lib/portable-net45+win8/_._",
  6172. "lib/win8/_._",
  6173. "lib/xamarinios10/_._",
  6174. "lib/xamarinmac20/_._",
  6175. "lib/xamarintvos10/_._",
  6176. "lib/xamarinwatchos10/_._",
  6177. "ref/MonoAndroid10/_._",
  6178. "ref/MonoTouch10/_._",
  6179. "ref/net45/_._",
  6180. "ref/net461/System.ComponentModel.Annotations.dll",
  6181. "ref/net461/System.ComponentModel.Annotations.xml",
  6182. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6183. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6184. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6185. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6186. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6187. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6188. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6189. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6190. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6191. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6192. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6193. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6194. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6195. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6196. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6197. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6198. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6199. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6200. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6201. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6202. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6203. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6204. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6205. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6206. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6207. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6208. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6209. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6210. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6211. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6212. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6213. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6214. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6215. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6216. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6217. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6218. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6219. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6220. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6221. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6222. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6223. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6224. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6225. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6226. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6227. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6228. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6229. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6230. "ref/portable-net45+win8/_._",
  6231. "ref/win8/_._",
  6232. "ref/xamarinios10/_._",
  6233. "ref/xamarinmac20/_._",
  6234. "ref/xamarintvos10/_._",
  6235. "ref/xamarinwatchos10/_._",
  6236. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6237. "system.componentmodel.annotations.nuspec",
  6238. "useSharedDesignerContext.txt",
  6239. "version.txt"
  6240. ]
  6241. },
  6242. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6243. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6244. "type": "package",
  6245. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6246. "files": [
  6247. ".nupkg.metadata",
  6248. ".signature.p7s",
  6249. "ThirdPartyNotices.txt",
  6250. "dotnet_library_license.txt",
  6251. "lib/MonoAndroid10/_._",
  6252. "lib/MonoTouch10/_._",
  6253. "lib/net45/_._",
  6254. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6255. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6256. "lib/portable-net45+win8+wp8+wpa81/_._",
  6257. "lib/win8/_._",
  6258. "lib/wp80/_._",
  6259. "lib/wpa81/_._",
  6260. "lib/xamarinios10/_._",
  6261. "lib/xamarinmac20/_._",
  6262. "lib/xamarintvos10/_._",
  6263. "lib/xamarinwatchos10/_._",
  6264. "ref/MonoAndroid10/_._",
  6265. "ref/MonoTouch10/_._",
  6266. "ref/net45/_._",
  6267. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6268. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6269. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6270. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6271. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6272. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6273. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6274. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6275. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6276. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6277. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6278. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6279. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6280. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6281. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6282. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6283. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6284. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6285. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6286. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6287. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6288. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6289. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6290. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6291. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6292. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6293. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6294. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6295. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6296. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6297. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6298. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6299. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6300. "ref/portable-net45+win8+wp8+wpa81/_._",
  6301. "ref/win8/_._",
  6302. "ref/wp80/_._",
  6303. "ref/wpa81/_._",
  6304. "ref/xamarinios10/_._",
  6305. "ref/xamarinmac20/_._",
  6306. "ref/xamarintvos10/_._",
  6307. "ref/xamarinwatchos10/_._",
  6308. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6309. "system.componentmodel.eventbasedasync.nuspec"
  6310. ]
  6311. },
  6312. "System.ComponentModel.Primitives/4.3.0": {
  6313. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6314. "type": "package",
  6315. "path": "system.componentmodel.primitives/4.3.0",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. ".signature.p7s",
  6319. "ThirdPartyNotices.txt",
  6320. "dotnet_library_license.txt",
  6321. "lib/MonoAndroid10/_._",
  6322. "lib/MonoTouch10/_._",
  6323. "lib/net45/System.ComponentModel.Primitives.dll",
  6324. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6325. "lib/xamarinios10/_._",
  6326. "lib/xamarinmac20/_._",
  6327. "lib/xamarintvos10/_._",
  6328. "lib/xamarinwatchos10/_._",
  6329. "ref/MonoAndroid10/_._",
  6330. "ref/MonoTouch10/_._",
  6331. "ref/net45/System.ComponentModel.Primitives.dll",
  6332. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6333. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6334. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6335. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6336. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6337. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6338. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6339. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6340. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6341. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6342. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6343. "ref/xamarinios10/_._",
  6344. "ref/xamarinmac20/_._",
  6345. "ref/xamarintvos10/_._",
  6346. "ref/xamarinwatchos10/_._",
  6347. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6348. "system.componentmodel.primitives.nuspec"
  6349. ]
  6350. },
  6351. "System.ComponentModel.TypeConverter/4.3.0": {
  6352. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6353. "type": "package",
  6354. "path": "system.componentmodel.typeconverter/4.3.0",
  6355. "files": [
  6356. ".nupkg.metadata",
  6357. ".signature.p7s",
  6358. "ThirdPartyNotices.txt",
  6359. "dotnet_library_license.txt",
  6360. "lib/MonoAndroid10/_._",
  6361. "lib/MonoTouch10/_._",
  6362. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6363. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6364. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6365. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6366. "lib/xamarinios10/_._",
  6367. "lib/xamarinmac20/_._",
  6368. "lib/xamarintvos10/_._",
  6369. "lib/xamarinwatchos10/_._",
  6370. "ref/MonoAndroid10/_._",
  6371. "ref/MonoTouch10/_._",
  6372. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6373. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6374. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6375. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6376. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6377. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6378. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6379. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6380. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6381. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6382. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6383. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6384. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6385. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6386. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6387. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6388. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6389. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6390. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6391. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6392. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6393. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6394. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6395. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6396. "ref/xamarinios10/_._",
  6397. "ref/xamarinmac20/_._",
  6398. "ref/xamarintvos10/_._",
  6399. "ref/xamarinwatchos10/_._",
  6400. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6401. "system.componentmodel.typeconverter.nuspec"
  6402. ]
  6403. },
  6404. "System.Configuration.ConfigurationManager/4.7.0": {
  6405. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6406. "type": "package",
  6407. "path": "system.configuration.configurationmanager/4.7.0",
  6408. "files": [
  6409. ".nupkg.metadata",
  6410. ".signature.p7s",
  6411. "LICENSE.TXT",
  6412. "THIRD-PARTY-NOTICES.TXT",
  6413. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6414. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6415. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6416. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6417. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6418. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6419. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6420. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6421. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6422. "system.configuration.configurationmanager.nuspec",
  6423. "useSharedDesignerContext.txt",
  6424. "version.txt"
  6425. ]
  6426. },
  6427. "System.Console/4.3.0": {
  6428. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6429. "type": "package",
  6430. "path": "system.console/4.3.0",
  6431. "files": [
  6432. ".nupkg.metadata",
  6433. ".signature.p7s",
  6434. "ThirdPartyNotices.txt",
  6435. "dotnet_library_license.txt",
  6436. "lib/MonoAndroid10/_._",
  6437. "lib/MonoTouch10/_._",
  6438. "lib/net46/System.Console.dll",
  6439. "lib/xamarinios10/_._",
  6440. "lib/xamarinmac20/_._",
  6441. "lib/xamarintvos10/_._",
  6442. "lib/xamarinwatchos10/_._",
  6443. "ref/MonoAndroid10/_._",
  6444. "ref/MonoTouch10/_._",
  6445. "ref/net46/System.Console.dll",
  6446. "ref/netstandard1.3/System.Console.dll",
  6447. "ref/netstandard1.3/System.Console.xml",
  6448. "ref/netstandard1.3/de/System.Console.xml",
  6449. "ref/netstandard1.3/es/System.Console.xml",
  6450. "ref/netstandard1.3/fr/System.Console.xml",
  6451. "ref/netstandard1.3/it/System.Console.xml",
  6452. "ref/netstandard1.3/ja/System.Console.xml",
  6453. "ref/netstandard1.3/ko/System.Console.xml",
  6454. "ref/netstandard1.3/ru/System.Console.xml",
  6455. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6456. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6457. "ref/xamarinios10/_._",
  6458. "ref/xamarinmac20/_._",
  6459. "ref/xamarintvos10/_._",
  6460. "ref/xamarinwatchos10/_._",
  6461. "system.console.4.3.0.nupkg.sha512",
  6462. "system.console.nuspec"
  6463. ]
  6464. },
  6465. "System.Diagnostics.Debug/4.3.0": {
  6466. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6467. "type": "package",
  6468. "path": "system.diagnostics.debug/4.3.0",
  6469. "files": [
  6470. ".nupkg.metadata",
  6471. ".signature.p7s",
  6472. "ThirdPartyNotices.txt",
  6473. "dotnet_library_license.txt",
  6474. "lib/MonoAndroid10/_._",
  6475. "lib/MonoTouch10/_._",
  6476. "lib/net45/_._",
  6477. "lib/portable-net45+win8+wp8+wpa81/_._",
  6478. "lib/win8/_._",
  6479. "lib/wp80/_._",
  6480. "lib/wpa81/_._",
  6481. "lib/xamarinios10/_._",
  6482. "lib/xamarinmac20/_._",
  6483. "lib/xamarintvos10/_._",
  6484. "lib/xamarinwatchos10/_._",
  6485. "ref/MonoAndroid10/_._",
  6486. "ref/MonoTouch10/_._",
  6487. "ref/net45/_._",
  6488. "ref/netcore50/System.Diagnostics.Debug.dll",
  6489. "ref/netcore50/System.Diagnostics.Debug.xml",
  6490. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6491. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6492. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6493. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6494. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6495. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6496. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6497. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6498. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6499. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6500. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6501. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6502. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6503. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6504. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6505. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6506. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6507. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6508. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6509. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6510. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6511. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6512. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6513. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6514. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6515. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6516. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6517. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6518. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6519. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6520. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6521. "ref/portable-net45+win8+wp8+wpa81/_._",
  6522. "ref/win8/_._",
  6523. "ref/wp80/_._",
  6524. "ref/wpa81/_._",
  6525. "ref/xamarinios10/_._",
  6526. "ref/xamarinmac20/_._",
  6527. "ref/xamarintvos10/_._",
  6528. "ref/xamarinwatchos10/_._",
  6529. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6530. "system.diagnostics.debug.nuspec"
  6531. ]
  6532. },
  6533. "System.Diagnostics.DiagnosticSource/6.0.2": {
  6534. "sha512": "6tQaIexFycaotdGn23lf3XJ/eI1GOjQKIvQDRFN9N4pwoNsKnHuXccQ3lnQO6GX8KAb1ic+6ZofJmPdbUVwZag==",
  6535. "type": "package",
  6536. "path": "system.diagnostics.diagnosticsource/6.0.2",
  6537. "files": [
  6538. ".nupkg.metadata",
  6539. ".signature.p7s",
  6540. "Icon.png",
  6541. "LICENSE.TXT",
  6542. "THIRD-PARTY-NOTICES.TXT",
  6543. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6544. "buildTransitive/netcoreapp3.1/_._",
  6545. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6546. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6547. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6548. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6549. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6550. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6551. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6552. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6553. "system.diagnostics.diagnosticsource.6.0.2.nupkg.sha512",
  6554. "system.diagnostics.diagnosticsource.nuspec",
  6555. "useSharedDesignerContext.txt"
  6556. ]
  6557. },
  6558. "System.Diagnostics.Tools/4.3.0": {
  6559. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6560. "type": "package",
  6561. "path": "system.diagnostics.tools/4.3.0",
  6562. "files": [
  6563. ".nupkg.metadata",
  6564. ".signature.p7s",
  6565. "ThirdPartyNotices.txt",
  6566. "dotnet_library_license.txt",
  6567. "lib/MonoAndroid10/_._",
  6568. "lib/MonoTouch10/_._",
  6569. "lib/net45/_._",
  6570. "lib/portable-net45+win8+wp8+wpa81/_._",
  6571. "lib/win8/_._",
  6572. "lib/wp80/_._",
  6573. "lib/wpa81/_._",
  6574. "lib/xamarinios10/_._",
  6575. "lib/xamarinmac20/_._",
  6576. "lib/xamarintvos10/_._",
  6577. "lib/xamarinwatchos10/_._",
  6578. "ref/MonoAndroid10/_._",
  6579. "ref/MonoTouch10/_._",
  6580. "ref/net45/_._",
  6581. "ref/netcore50/System.Diagnostics.Tools.dll",
  6582. "ref/netcore50/System.Diagnostics.Tools.xml",
  6583. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6584. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6585. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6586. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6587. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6588. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6589. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6590. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6591. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6592. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6593. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6594. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6595. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6596. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6597. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6598. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6599. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6600. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6601. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6602. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6603. "ref/portable-net45+win8+wp8+wpa81/_._",
  6604. "ref/win8/_._",
  6605. "ref/wp80/_._",
  6606. "ref/wpa81/_._",
  6607. "ref/xamarinios10/_._",
  6608. "ref/xamarinmac20/_._",
  6609. "ref/xamarintvos10/_._",
  6610. "ref/xamarinwatchos10/_._",
  6611. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6612. "system.diagnostics.tools.nuspec"
  6613. ]
  6614. },
  6615. "System.Diagnostics.TraceSource/4.3.0": {
  6616. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6617. "type": "package",
  6618. "path": "system.diagnostics.tracesource/4.3.0",
  6619. "files": [
  6620. ".nupkg.metadata",
  6621. ".signature.p7s",
  6622. "ThirdPartyNotices.txt",
  6623. "dotnet_library_license.txt",
  6624. "lib/MonoAndroid10/_._",
  6625. "lib/MonoTouch10/_._",
  6626. "lib/net46/System.Diagnostics.TraceSource.dll",
  6627. "lib/xamarinios10/_._",
  6628. "lib/xamarinmac20/_._",
  6629. "lib/xamarintvos10/_._",
  6630. "lib/xamarinwatchos10/_._",
  6631. "ref/MonoAndroid10/_._",
  6632. "ref/MonoTouch10/_._",
  6633. "ref/net46/System.Diagnostics.TraceSource.dll",
  6634. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6635. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6636. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6637. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6638. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6639. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6640. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6641. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6642. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6643. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6644. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6645. "ref/xamarinios10/_._",
  6646. "ref/xamarinmac20/_._",
  6647. "ref/xamarintvos10/_._",
  6648. "ref/xamarinwatchos10/_._",
  6649. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6650. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6651. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6652. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6653. "system.diagnostics.tracesource.nuspec"
  6654. ]
  6655. },
  6656. "System.Diagnostics.Tracing/4.3.0": {
  6657. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6658. "type": "package",
  6659. "path": "system.diagnostics.tracing/4.3.0",
  6660. "files": [
  6661. ".nupkg.metadata",
  6662. ".signature.p7s",
  6663. "ThirdPartyNotices.txt",
  6664. "dotnet_library_license.txt",
  6665. "lib/MonoAndroid10/_._",
  6666. "lib/MonoTouch10/_._",
  6667. "lib/net45/_._",
  6668. "lib/net462/System.Diagnostics.Tracing.dll",
  6669. "lib/portable-net45+win8+wpa81/_._",
  6670. "lib/win8/_._",
  6671. "lib/wpa81/_._",
  6672. "lib/xamarinios10/_._",
  6673. "lib/xamarinmac20/_._",
  6674. "lib/xamarintvos10/_._",
  6675. "lib/xamarinwatchos10/_._",
  6676. "ref/MonoAndroid10/_._",
  6677. "ref/MonoTouch10/_._",
  6678. "ref/net45/_._",
  6679. "ref/net462/System.Diagnostics.Tracing.dll",
  6680. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6681. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6682. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6683. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6684. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6685. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6686. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6687. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6688. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6689. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6690. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6691. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6692. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6693. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6694. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6695. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6696. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6697. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6698. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6699. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6700. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6701. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6702. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6703. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6704. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6705. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6706. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6707. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6708. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6709. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6710. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6711. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6712. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6713. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6714. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6715. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6716. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6717. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6718. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6719. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6720. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6721. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6722. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6723. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6724. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6725. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6726. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6727. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6728. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6729. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6730. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6731. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6732. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6733. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6734. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6735. "ref/portable-net45+win8+wpa81/_._",
  6736. "ref/win8/_._",
  6737. "ref/wpa81/_._",
  6738. "ref/xamarinios10/_._",
  6739. "ref/xamarinmac20/_._",
  6740. "ref/xamarintvos10/_._",
  6741. "ref/xamarinwatchos10/_._",
  6742. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6743. "system.diagnostics.tracing.nuspec"
  6744. ]
  6745. },
  6746. "System.Drawing.Common/5.0.3": {
  6747. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  6748. "type": "package",
  6749. "path": "system.drawing.common/5.0.3",
  6750. "files": [
  6751. ".nupkg.metadata",
  6752. ".signature.p7s",
  6753. "Icon.png",
  6754. "LICENSE.TXT",
  6755. "THIRD-PARTY-NOTICES.TXT",
  6756. "lib/MonoAndroid10/_._",
  6757. "lib/MonoTouch10/_._",
  6758. "lib/net461/System.Drawing.Common.dll",
  6759. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6760. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6761. "lib/netstandard2.0/System.Drawing.Common.dll",
  6762. "lib/xamarinios10/_._",
  6763. "lib/xamarinmac20/_._",
  6764. "lib/xamarintvos10/_._",
  6765. "lib/xamarinwatchos10/_._",
  6766. "ref/MonoAndroid10/_._",
  6767. "ref/MonoTouch10/_._",
  6768. "ref/net461/System.Drawing.Common.dll",
  6769. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6770. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6771. "ref/netstandard2.0/System.Drawing.Common.dll",
  6772. "ref/xamarinios10/_._",
  6773. "ref/xamarinmac20/_._",
  6774. "ref/xamarintvos10/_._",
  6775. "ref/xamarinwatchos10/_._",
  6776. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6777. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6778. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6779. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6780. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6781. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6782. "system.drawing.common.5.0.3.nupkg.sha512",
  6783. "system.drawing.common.nuspec",
  6784. "useSharedDesignerContext.txt",
  6785. "version.txt"
  6786. ]
  6787. },
  6788. "System.Dynamic.Runtime/4.3.0": {
  6789. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6790. "type": "package",
  6791. "path": "system.dynamic.runtime/4.3.0",
  6792. "files": [
  6793. ".nupkg.metadata",
  6794. ".signature.p7s",
  6795. "ThirdPartyNotices.txt",
  6796. "dotnet_library_license.txt",
  6797. "lib/MonoAndroid10/_._",
  6798. "lib/MonoTouch10/_._",
  6799. "lib/net45/_._",
  6800. "lib/netcore50/System.Dynamic.Runtime.dll",
  6801. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6802. "lib/portable-net45+win8+wp8+wpa81/_._",
  6803. "lib/win8/_._",
  6804. "lib/wp80/_._",
  6805. "lib/wpa81/_._",
  6806. "lib/xamarinios10/_._",
  6807. "lib/xamarinmac20/_._",
  6808. "lib/xamarintvos10/_._",
  6809. "lib/xamarinwatchos10/_._",
  6810. "ref/MonoAndroid10/_._",
  6811. "ref/MonoTouch10/_._",
  6812. "ref/net45/_._",
  6813. "ref/netcore50/System.Dynamic.Runtime.dll",
  6814. "ref/netcore50/System.Dynamic.Runtime.xml",
  6815. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6816. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6817. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6818. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6819. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6820. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6821. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6822. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6823. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6824. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6825. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6826. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6827. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6828. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6829. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6830. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6831. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6832. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6833. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6834. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6835. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6836. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6837. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6838. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6839. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6840. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6841. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6842. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6843. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6844. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6845. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6846. "ref/portable-net45+win8+wp8+wpa81/_._",
  6847. "ref/win8/_._",
  6848. "ref/wp80/_._",
  6849. "ref/wpa81/_._",
  6850. "ref/xamarinios10/_._",
  6851. "ref/xamarinmac20/_._",
  6852. "ref/xamarintvos10/_._",
  6853. "ref/xamarinwatchos10/_._",
  6854. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6855. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6856. "system.dynamic.runtime.nuspec"
  6857. ]
  6858. },
  6859. "System.Globalization/4.3.0": {
  6860. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6861. "type": "package",
  6862. "path": "system.globalization/4.3.0",
  6863. "files": [
  6864. ".nupkg.metadata",
  6865. ".signature.p7s",
  6866. "ThirdPartyNotices.txt",
  6867. "dotnet_library_license.txt",
  6868. "lib/MonoAndroid10/_._",
  6869. "lib/MonoTouch10/_._",
  6870. "lib/net45/_._",
  6871. "lib/portable-net45+win8+wp8+wpa81/_._",
  6872. "lib/win8/_._",
  6873. "lib/wp80/_._",
  6874. "lib/wpa81/_._",
  6875. "lib/xamarinios10/_._",
  6876. "lib/xamarinmac20/_._",
  6877. "lib/xamarintvos10/_._",
  6878. "lib/xamarinwatchos10/_._",
  6879. "ref/MonoAndroid10/_._",
  6880. "ref/MonoTouch10/_._",
  6881. "ref/net45/_._",
  6882. "ref/netcore50/System.Globalization.dll",
  6883. "ref/netcore50/System.Globalization.xml",
  6884. "ref/netcore50/de/System.Globalization.xml",
  6885. "ref/netcore50/es/System.Globalization.xml",
  6886. "ref/netcore50/fr/System.Globalization.xml",
  6887. "ref/netcore50/it/System.Globalization.xml",
  6888. "ref/netcore50/ja/System.Globalization.xml",
  6889. "ref/netcore50/ko/System.Globalization.xml",
  6890. "ref/netcore50/ru/System.Globalization.xml",
  6891. "ref/netcore50/zh-hans/System.Globalization.xml",
  6892. "ref/netcore50/zh-hant/System.Globalization.xml",
  6893. "ref/netstandard1.0/System.Globalization.dll",
  6894. "ref/netstandard1.0/System.Globalization.xml",
  6895. "ref/netstandard1.0/de/System.Globalization.xml",
  6896. "ref/netstandard1.0/es/System.Globalization.xml",
  6897. "ref/netstandard1.0/fr/System.Globalization.xml",
  6898. "ref/netstandard1.0/it/System.Globalization.xml",
  6899. "ref/netstandard1.0/ja/System.Globalization.xml",
  6900. "ref/netstandard1.0/ko/System.Globalization.xml",
  6901. "ref/netstandard1.0/ru/System.Globalization.xml",
  6902. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6903. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6904. "ref/netstandard1.3/System.Globalization.dll",
  6905. "ref/netstandard1.3/System.Globalization.xml",
  6906. "ref/netstandard1.3/de/System.Globalization.xml",
  6907. "ref/netstandard1.3/es/System.Globalization.xml",
  6908. "ref/netstandard1.3/fr/System.Globalization.xml",
  6909. "ref/netstandard1.3/it/System.Globalization.xml",
  6910. "ref/netstandard1.3/ja/System.Globalization.xml",
  6911. "ref/netstandard1.3/ko/System.Globalization.xml",
  6912. "ref/netstandard1.3/ru/System.Globalization.xml",
  6913. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6914. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6915. "ref/portable-net45+win8+wp8+wpa81/_._",
  6916. "ref/win8/_._",
  6917. "ref/wp80/_._",
  6918. "ref/wpa81/_._",
  6919. "ref/xamarinios10/_._",
  6920. "ref/xamarinmac20/_._",
  6921. "ref/xamarintvos10/_._",
  6922. "ref/xamarinwatchos10/_._",
  6923. "system.globalization.4.3.0.nupkg.sha512",
  6924. "system.globalization.nuspec"
  6925. ]
  6926. },
  6927. "System.Globalization.Calendars/4.3.0": {
  6928. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6929. "type": "package",
  6930. "path": "system.globalization.calendars/4.3.0",
  6931. "files": [
  6932. ".nupkg.metadata",
  6933. ".signature.p7s",
  6934. "ThirdPartyNotices.txt",
  6935. "dotnet_library_license.txt",
  6936. "lib/MonoAndroid10/_._",
  6937. "lib/MonoTouch10/_._",
  6938. "lib/net46/System.Globalization.Calendars.dll",
  6939. "lib/xamarinios10/_._",
  6940. "lib/xamarinmac20/_._",
  6941. "lib/xamarintvos10/_._",
  6942. "lib/xamarinwatchos10/_._",
  6943. "ref/MonoAndroid10/_._",
  6944. "ref/MonoTouch10/_._",
  6945. "ref/net46/System.Globalization.Calendars.dll",
  6946. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6947. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6948. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6949. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6950. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6951. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6952. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6953. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6954. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6955. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6956. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6957. "ref/xamarinios10/_._",
  6958. "ref/xamarinmac20/_._",
  6959. "ref/xamarintvos10/_._",
  6960. "ref/xamarinwatchos10/_._",
  6961. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6962. "system.globalization.calendars.nuspec"
  6963. ]
  6964. },
  6965. "System.Globalization.Extensions/4.3.0": {
  6966. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6967. "type": "package",
  6968. "path": "system.globalization.extensions/4.3.0",
  6969. "files": [
  6970. ".nupkg.metadata",
  6971. ".signature.p7s",
  6972. "ThirdPartyNotices.txt",
  6973. "dotnet_library_license.txt",
  6974. "lib/MonoAndroid10/_._",
  6975. "lib/MonoTouch10/_._",
  6976. "lib/net46/System.Globalization.Extensions.dll",
  6977. "lib/xamarinios10/_._",
  6978. "lib/xamarinmac20/_._",
  6979. "lib/xamarintvos10/_._",
  6980. "lib/xamarinwatchos10/_._",
  6981. "ref/MonoAndroid10/_._",
  6982. "ref/MonoTouch10/_._",
  6983. "ref/net46/System.Globalization.Extensions.dll",
  6984. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6985. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6986. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6987. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6988. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6989. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6990. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6991. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6992. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6993. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6994. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6995. "ref/xamarinios10/_._",
  6996. "ref/xamarinmac20/_._",
  6997. "ref/xamarintvos10/_._",
  6998. "ref/xamarinwatchos10/_._",
  6999. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7000. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7001. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7002. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7003. "system.globalization.extensions.nuspec"
  7004. ]
  7005. },
  7006. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  7007. "sha512": "PbhxMaAejQ5pVStTsMPzja0Q2FOeEIOQy8isxw2tTxduqIjWRJ+P78bWGpaXH67Tkeb+2t91YBj2stXEw6vyZQ==",
  7008. "type": "package",
  7009. "path": "system.identitymodel.tokens.jwt/8.6.0",
  7010. "files": [
  7011. ".nupkg.metadata",
  7012. ".signature.p7s",
  7013. "README.md",
  7014. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  7015. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  7016. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  7017. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  7018. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  7019. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  7020. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  7021. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  7022. "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
  7023. "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml",
  7024. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7025. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7026. "system.identitymodel.tokens.jwt.8.6.0.nupkg.sha512",
  7027. "system.identitymodel.tokens.jwt.nuspec"
  7028. ]
  7029. },
  7030. "System.IO/4.3.0": {
  7031. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7032. "type": "package",
  7033. "path": "system.io/4.3.0",
  7034. "files": [
  7035. ".nupkg.metadata",
  7036. ".signature.p7s",
  7037. "ThirdPartyNotices.txt",
  7038. "dotnet_library_license.txt",
  7039. "lib/MonoAndroid10/_._",
  7040. "lib/MonoTouch10/_._",
  7041. "lib/net45/_._",
  7042. "lib/net462/System.IO.dll",
  7043. "lib/portable-net45+win8+wp8+wpa81/_._",
  7044. "lib/win8/_._",
  7045. "lib/wp80/_._",
  7046. "lib/wpa81/_._",
  7047. "lib/xamarinios10/_._",
  7048. "lib/xamarinmac20/_._",
  7049. "lib/xamarintvos10/_._",
  7050. "lib/xamarinwatchos10/_._",
  7051. "ref/MonoAndroid10/_._",
  7052. "ref/MonoTouch10/_._",
  7053. "ref/net45/_._",
  7054. "ref/net462/System.IO.dll",
  7055. "ref/netcore50/System.IO.dll",
  7056. "ref/netcore50/System.IO.xml",
  7057. "ref/netcore50/de/System.IO.xml",
  7058. "ref/netcore50/es/System.IO.xml",
  7059. "ref/netcore50/fr/System.IO.xml",
  7060. "ref/netcore50/it/System.IO.xml",
  7061. "ref/netcore50/ja/System.IO.xml",
  7062. "ref/netcore50/ko/System.IO.xml",
  7063. "ref/netcore50/ru/System.IO.xml",
  7064. "ref/netcore50/zh-hans/System.IO.xml",
  7065. "ref/netcore50/zh-hant/System.IO.xml",
  7066. "ref/netstandard1.0/System.IO.dll",
  7067. "ref/netstandard1.0/System.IO.xml",
  7068. "ref/netstandard1.0/de/System.IO.xml",
  7069. "ref/netstandard1.0/es/System.IO.xml",
  7070. "ref/netstandard1.0/fr/System.IO.xml",
  7071. "ref/netstandard1.0/it/System.IO.xml",
  7072. "ref/netstandard1.0/ja/System.IO.xml",
  7073. "ref/netstandard1.0/ko/System.IO.xml",
  7074. "ref/netstandard1.0/ru/System.IO.xml",
  7075. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7076. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7077. "ref/netstandard1.3/System.IO.dll",
  7078. "ref/netstandard1.3/System.IO.xml",
  7079. "ref/netstandard1.3/de/System.IO.xml",
  7080. "ref/netstandard1.3/es/System.IO.xml",
  7081. "ref/netstandard1.3/fr/System.IO.xml",
  7082. "ref/netstandard1.3/it/System.IO.xml",
  7083. "ref/netstandard1.3/ja/System.IO.xml",
  7084. "ref/netstandard1.3/ko/System.IO.xml",
  7085. "ref/netstandard1.3/ru/System.IO.xml",
  7086. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7087. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7088. "ref/netstandard1.5/System.IO.dll",
  7089. "ref/netstandard1.5/System.IO.xml",
  7090. "ref/netstandard1.5/de/System.IO.xml",
  7091. "ref/netstandard1.5/es/System.IO.xml",
  7092. "ref/netstandard1.5/fr/System.IO.xml",
  7093. "ref/netstandard1.5/it/System.IO.xml",
  7094. "ref/netstandard1.5/ja/System.IO.xml",
  7095. "ref/netstandard1.5/ko/System.IO.xml",
  7096. "ref/netstandard1.5/ru/System.IO.xml",
  7097. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7098. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7099. "ref/portable-net45+win8+wp8+wpa81/_._",
  7100. "ref/win8/_._",
  7101. "ref/wp80/_._",
  7102. "ref/wpa81/_._",
  7103. "ref/xamarinios10/_._",
  7104. "ref/xamarinmac20/_._",
  7105. "ref/xamarintvos10/_._",
  7106. "ref/xamarinwatchos10/_._",
  7107. "system.io.4.3.0.nupkg.sha512",
  7108. "system.io.nuspec"
  7109. ]
  7110. },
  7111. "System.IO.Compression/4.3.0": {
  7112. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7113. "type": "package",
  7114. "path": "system.io.compression/4.3.0",
  7115. "files": [
  7116. ".nupkg.metadata",
  7117. ".signature.p7s",
  7118. "ThirdPartyNotices.txt",
  7119. "dotnet_library_license.txt",
  7120. "lib/MonoAndroid10/_._",
  7121. "lib/MonoTouch10/_._",
  7122. "lib/net45/_._",
  7123. "lib/net46/System.IO.Compression.dll",
  7124. "lib/portable-net45+win8+wpa81/_._",
  7125. "lib/win8/_._",
  7126. "lib/wpa81/_._",
  7127. "lib/xamarinios10/_._",
  7128. "lib/xamarinmac20/_._",
  7129. "lib/xamarintvos10/_._",
  7130. "lib/xamarinwatchos10/_._",
  7131. "ref/MonoAndroid10/_._",
  7132. "ref/MonoTouch10/_._",
  7133. "ref/net45/_._",
  7134. "ref/net46/System.IO.Compression.dll",
  7135. "ref/netcore50/System.IO.Compression.dll",
  7136. "ref/netcore50/System.IO.Compression.xml",
  7137. "ref/netcore50/de/System.IO.Compression.xml",
  7138. "ref/netcore50/es/System.IO.Compression.xml",
  7139. "ref/netcore50/fr/System.IO.Compression.xml",
  7140. "ref/netcore50/it/System.IO.Compression.xml",
  7141. "ref/netcore50/ja/System.IO.Compression.xml",
  7142. "ref/netcore50/ko/System.IO.Compression.xml",
  7143. "ref/netcore50/ru/System.IO.Compression.xml",
  7144. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7145. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7146. "ref/netstandard1.1/System.IO.Compression.dll",
  7147. "ref/netstandard1.1/System.IO.Compression.xml",
  7148. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7149. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7150. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7151. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7152. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7153. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7154. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7155. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7156. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7157. "ref/netstandard1.3/System.IO.Compression.dll",
  7158. "ref/netstandard1.3/System.IO.Compression.xml",
  7159. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7160. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7161. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7162. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7163. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7164. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7165. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7166. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7167. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7168. "ref/portable-net45+win8+wpa81/_._",
  7169. "ref/win8/_._",
  7170. "ref/wpa81/_._",
  7171. "ref/xamarinios10/_._",
  7172. "ref/xamarinmac20/_._",
  7173. "ref/xamarintvos10/_._",
  7174. "ref/xamarinwatchos10/_._",
  7175. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7176. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7177. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7178. "system.io.compression.4.3.0.nupkg.sha512",
  7179. "system.io.compression.nuspec"
  7180. ]
  7181. },
  7182. "System.IO.Compression.ZipFile/4.3.0": {
  7183. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7184. "type": "package",
  7185. "path": "system.io.compression.zipfile/4.3.0",
  7186. "files": [
  7187. ".nupkg.metadata",
  7188. ".signature.p7s",
  7189. "ThirdPartyNotices.txt",
  7190. "dotnet_library_license.txt",
  7191. "lib/MonoAndroid10/_._",
  7192. "lib/MonoTouch10/_._",
  7193. "lib/net46/System.IO.Compression.ZipFile.dll",
  7194. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7195. "lib/xamarinios10/_._",
  7196. "lib/xamarinmac20/_._",
  7197. "lib/xamarintvos10/_._",
  7198. "lib/xamarinwatchos10/_._",
  7199. "ref/MonoAndroid10/_._",
  7200. "ref/MonoTouch10/_._",
  7201. "ref/net46/System.IO.Compression.ZipFile.dll",
  7202. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7203. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7204. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7205. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7206. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7207. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7208. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7209. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7210. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7211. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7212. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7213. "ref/xamarinios10/_._",
  7214. "ref/xamarinmac20/_._",
  7215. "ref/xamarintvos10/_._",
  7216. "ref/xamarinwatchos10/_._",
  7217. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7218. "system.io.compression.zipfile.nuspec"
  7219. ]
  7220. },
  7221. "System.IO.FileSystem/4.3.0": {
  7222. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7223. "type": "package",
  7224. "path": "system.io.filesystem/4.3.0",
  7225. "files": [
  7226. ".nupkg.metadata",
  7227. ".signature.p7s",
  7228. "ThirdPartyNotices.txt",
  7229. "dotnet_library_license.txt",
  7230. "lib/MonoAndroid10/_._",
  7231. "lib/MonoTouch10/_._",
  7232. "lib/net46/System.IO.FileSystem.dll",
  7233. "lib/xamarinios10/_._",
  7234. "lib/xamarinmac20/_._",
  7235. "lib/xamarintvos10/_._",
  7236. "lib/xamarinwatchos10/_._",
  7237. "ref/MonoAndroid10/_._",
  7238. "ref/MonoTouch10/_._",
  7239. "ref/net46/System.IO.FileSystem.dll",
  7240. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7241. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7242. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7243. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7244. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7245. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7246. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7247. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7248. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7249. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7250. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7251. "ref/xamarinios10/_._",
  7252. "ref/xamarinmac20/_._",
  7253. "ref/xamarintvos10/_._",
  7254. "ref/xamarinwatchos10/_._",
  7255. "system.io.filesystem.4.3.0.nupkg.sha512",
  7256. "system.io.filesystem.nuspec"
  7257. ]
  7258. },
  7259. "System.IO.FileSystem.Primitives/4.3.0": {
  7260. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7261. "type": "package",
  7262. "path": "system.io.filesystem.primitives/4.3.0",
  7263. "files": [
  7264. ".nupkg.metadata",
  7265. ".signature.p7s",
  7266. "ThirdPartyNotices.txt",
  7267. "dotnet_library_license.txt",
  7268. "lib/MonoAndroid10/_._",
  7269. "lib/MonoTouch10/_._",
  7270. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7271. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7272. "lib/xamarinios10/_._",
  7273. "lib/xamarinmac20/_._",
  7274. "lib/xamarintvos10/_._",
  7275. "lib/xamarinwatchos10/_._",
  7276. "ref/MonoAndroid10/_._",
  7277. "ref/MonoTouch10/_._",
  7278. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7279. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7280. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7281. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7282. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7283. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7284. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7285. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7286. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7287. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7288. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7289. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7290. "ref/xamarinios10/_._",
  7291. "ref/xamarinmac20/_._",
  7292. "ref/xamarintvos10/_._",
  7293. "ref/xamarinwatchos10/_._",
  7294. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7295. "system.io.filesystem.primitives.nuspec"
  7296. ]
  7297. },
  7298. "System.IO.Pipelines/5.0.0": {
  7299. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7300. "type": "package",
  7301. "path": "system.io.pipelines/5.0.0",
  7302. "files": [
  7303. ".nupkg.metadata",
  7304. ".signature.p7s",
  7305. "Icon.png",
  7306. "LICENSE.TXT",
  7307. "THIRD-PARTY-NOTICES.TXT",
  7308. "lib/net461/System.IO.Pipelines.dll",
  7309. "lib/net461/System.IO.Pipelines.xml",
  7310. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7311. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7312. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7313. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7314. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7315. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7316. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7317. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7318. "system.io.pipelines.5.0.0.nupkg.sha512",
  7319. "system.io.pipelines.nuspec",
  7320. "useSharedDesignerContext.txt",
  7321. "version.txt"
  7322. ]
  7323. },
  7324. "System.Linq/4.3.0": {
  7325. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7326. "type": "package",
  7327. "path": "system.linq/4.3.0",
  7328. "files": [
  7329. ".nupkg.metadata",
  7330. ".signature.p7s",
  7331. "ThirdPartyNotices.txt",
  7332. "dotnet_library_license.txt",
  7333. "lib/MonoAndroid10/_._",
  7334. "lib/MonoTouch10/_._",
  7335. "lib/net45/_._",
  7336. "lib/net463/System.Linq.dll",
  7337. "lib/netcore50/System.Linq.dll",
  7338. "lib/netstandard1.6/System.Linq.dll",
  7339. "lib/portable-net45+win8+wp8+wpa81/_._",
  7340. "lib/win8/_._",
  7341. "lib/wp80/_._",
  7342. "lib/wpa81/_._",
  7343. "lib/xamarinios10/_._",
  7344. "lib/xamarinmac20/_._",
  7345. "lib/xamarintvos10/_._",
  7346. "lib/xamarinwatchos10/_._",
  7347. "ref/MonoAndroid10/_._",
  7348. "ref/MonoTouch10/_._",
  7349. "ref/net45/_._",
  7350. "ref/net463/System.Linq.dll",
  7351. "ref/netcore50/System.Linq.dll",
  7352. "ref/netcore50/System.Linq.xml",
  7353. "ref/netcore50/de/System.Linq.xml",
  7354. "ref/netcore50/es/System.Linq.xml",
  7355. "ref/netcore50/fr/System.Linq.xml",
  7356. "ref/netcore50/it/System.Linq.xml",
  7357. "ref/netcore50/ja/System.Linq.xml",
  7358. "ref/netcore50/ko/System.Linq.xml",
  7359. "ref/netcore50/ru/System.Linq.xml",
  7360. "ref/netcore50/zh-hans/System.Linq.xml",
  7361. "ref/netcore50/zh-hant/System.Linq.xml",
  7362. "ref/netstandard1.0/System.Linq.dll",
  7363. "ref/netstandard1.0/System.Linq.xml",
  7364. "ref/netstandard1.0/de/System.Linq.xml",
  7365. "ref/netstandard1.0/es/System.Linq.xml",
  7366. "ref/netstandard1.0/fr/System.Linq.xml",
  7367. "ref/netstandard1.0/it/System.Linq.xml",
  7368. "ref/netstandard1.0/ja/System.Linq.xml",
  7369. "ref/netstandard1.0/ko/System.Linq.xml",
  7370. "ref/netstandard1.0/ru/System.Linq.xml",
  7371. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7372. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7373. "ref/netstandard1.6/System.Linq.dll",
  7374. "ref/netstandard1.6/System.Linq.xml",
  7375. "ref/netstandard1.6/de/System.Linq.xml",
  7376. "ref/netstandard1.6/es/System.Linq.xml",
  7377. "ref/netstandard1.6/fr/System.Linq.xml",
  7378. "ref/netstandard1.6/it/System.Linq.xml",
  7379. "ref/netstandard1.6/ja/System.Linq.xml",
  7380. "ref/netstandard1.6/ko/System.Linq.xml",
  7381. "ref/netstandard1.6/ru/System.Linq.xml",
  7382. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7383. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7384. "ref/portable-net45+win8+wp8+wpa81/_._",
  7385. "ref/win8/_._",
  7386. "ref/wp80/_._",
  7387. "ref/wpa81/_._",
  7388. "ref/xamarinios10/_._",
  7389. "ref/xamarinmac20/_._",
  7390. "ref/xamarintvos10/_._",
  7391. "ref/xamarinwatchos10/_._",
  7392. "system.linq.4.3.0.nupkg.sha512",
  7393. "system.linq.nuspec"
  7394. ]
  7395. },
  7396. "System.Linq.Expressions/4.3.0": {
  7397. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7398. "type": "package",
  7399. "path": "system.linq.expressions/4.3.0",
  7400. "files": [
  7401. ".nupkg.metadata",
  7402. ".signature.p7s",
  7403. "ThirdPartyNotices.txt",
  7404. "dotnet_library_license.txt",
  7405. "lib/MonoAndroid10/_._",
  7406. "lib/MonoTouch10/_._",
  7407. "lib/net45/_._",
  7408. "lib/net463/System.Linq.Expressions.dll",
  7409. "lib/netcore50/System.Linq.Expressions.dll",
  7410. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7411. "lib/portable-net45+win8+wp8+wpa81/_._",
  7412. "lib/win8/_._",
  7413. "lib/wp80/_._",
  7414. "lib/wpa81/_._",
  7415. "lib/xamarinios10/_._",
  7416. "lib/xamarinmac20/_._",
  7417. "lib/xamarintvos10/_._",
  7418. "lib/xamarinwatchos10/_._",
  7419. "ref/MonoAndroid10/_._",
  7420. "ref/MonoTouch10/_._",
  7421. "ref/net45/_._",
  7422. "ref/net463/System.Linq.Expressions.dll",
  7423. "ref/netcore50/System.Linq.Expressions.dll",
  7424. "ref/netcore50/System.Linq.Expressions.xml",
  7425. "ref/netcore50/de/System.Linq.Expressions.xml",
  7426. "ref/netcore50/es/System.Linq.Expressions.xml",
  7427. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7428. "ref/netcore50/it/System.Linq.Expressions.xml",
  7429. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7430. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7431. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7432. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7433. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7434. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7435. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7436. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7437. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7438. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7439. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7440. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7441. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7442. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7443. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7444. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7445. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7446. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7447. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7448. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7449. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7450. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7451. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7452. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7453. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7454. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7455. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7456. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7457. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7458. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7459. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7460. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7461. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7462. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7463. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7464. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7465. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7466. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7467. "ref/portable-net45+win8+wp8+wpa81/_._",
  7468. "ref/win8/_._",
  7469. "ref/wp80/_._",
  7470. "ref/wpa81/_._",
  7471. "ref/xamarinios10/_._",
  7472. "ref/xamarinmac20/_._",
  7473. "ref/xamarintvos10/_._",
  7474. "ref/xamarinwatchos10/_._",
  7475. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7476. "system.linq.expressions.4.3.0.nupkg.sha512",
  7477. "system.linq.expressions.nuspec"
  7478. ]
  7479. },
  7480. "System.Memory/4.5.5": {
  7481. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7482. "type": "package",
  7483. "path": "system.memory/4.5.5",
  7484. "files": [
  7485. ".nupkg.metadata",
  7486. ".signature.p7s",
  7487. "LICENSE.TXT",
  7488. "THIRD-PARTY-NOTICES.TXT",
  7489. "lib/net461/System.Memory.dll",
  7490. "lib/net461/System.Memory.xml",
  7491. "lib/netcoreapp2.1/_._",
  7492. "lib/netstandard1.1/System.Memory.dll",
  7493. "lib/netstandard1.1/System.Memory.xml",
  7494. "lib/netstandard2.0/System.Memory.dll",
  7495. "lib/netstandard2.0/System.Memory.xml",
  7496. "ref/netcoreapp2.1/_._",
  7497. "system.memory.4.5.5.nupkg.sha512",
  7498. "system.memory.nuspec",
  7499. "useSharedDesignerContext.txt",
  7500. "version.txt"
  7501. ]
  7502. },
  7503. "System.Net.Http/4.3.2": {
  7504. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7505. "type": "package",
  7506. "path": "system.net.http/4.3.2",
  7507. "files": [
  7508. ".nupkg.metadata",
  7509. ".signature.p7s",
  7510. "ThirdPartyNotices.txt",
  7511. "dotnet_library_license.txt",
  7512. "lib/Xamarinmac20/_._",
  7513. "lib/monoandroid10/_._",
  7514. "lib/monotouch10/_._",
  7515. "lib/net45/_._",
  7516. "lib/net46/System.Net.Http.dll",
  7517. "lib/portable-net45+win8+wpa81/_._",
  7518. "lib/win8/_._",
  7519. "lib/wpa81/_._",
  7520. "lib/xamarinios10/_._",
  7521. "lib/xamarintvos10/_._",
  7522. "lib/xamarinwatchos10/_._",
  7523. "ref/Xamarinmac20/_._",
  7524. "ref/monoandroid10/_._",
  7525. "ref/monotouch10/_._",
  7526. "ref/net45/_._",
  7527. "ref/net46/System.Net.Http.dll",
  7528. "ref/netcore50/System.Net.Http.dll",
  7529. "ref/netstandard1.1/System.Net.Http.dll",
  7530. "ref/netstandard1.3/System.Net.Http.dll",
  7531. "ref/portable-net45+win8+wpa81/_._",
  7532. "ref/win8/_._",
  7533. "ref/wpa81/_._",
  7534. "ref/xamarinios10/_._",
  7535. "ref/xamarintvos10/_._",
  7536. "ref/xamarinwatchos10/_._",
  7537. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7538. "runtimes/win/lib/net46/System.Net.Http.dll",
  7539. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7540. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7541. "system.net.http.4.3.2.nupkg.sha512",
  7542. "system.net.http.nuspec"
  7543. ]
  7544. },
  7545. "System.Net.NameResolution/4.3.0": {
  7546. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7547. "type": "package",
  7548. "path": "system.net.nameresolution/4.3.0",
  7549. "files": [
  7550. ".nupkg.metadata",
  7551. ".signature.p7s",
  7552. "ThirdPartyNotices.txt",
  7553. "dotnet_library_license.txt",
  7554. "lib/MonoAndroid10/_._",
  7555. "lib/MonoTouch10/_._",
  7556. "lib/net46/System.Net.NameResolution.dll",
  7557. "lib/xamarinios10/_._",
  7558. "lib/xamarinmac20/_._",
  7559. "lib/xamarintvos10/_._",
  7560. "lib/xamarinwatchos10/_._",
  7561. "ref/MonoAndroid10/_._",
  7562. "ref/MonoTouch10/_._",
  7563. "ref/net46/System.Net.NameResolution.dll",
  7564. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7565. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7566. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7567. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7568. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7569. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7570. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7571. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7572. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7573. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7574. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7575. "ref/xamarinios10/_._",
  7576. "ref/xamarinmac20/_._",
  7577. "ref/xamarintvos10/_._",
  7578. "ref/xamarinwatchos10/_._",
  7579. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7580. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7581. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7582. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7583. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7584. "system.net.nameresolution.nuspec"
  7585. ]
  7586. },
  7587. "System.Net.Primitives/4.3.0": {
  7588. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7589. "type": "package",
  7590. "path": "system.net.primitives/4.3.0",
  7591. "files": [
  7592. ".nupkg.metadata",
  7593. ".signature.p7s",
  7594. "ThirdPartyNotices.txt",
  7595. "dotnet_library_license.txt",
  7596. "lib/MonoAndroid10/_._",
  7597. "lib/MonoTouch10/_._",
  7598. "lib/net45/_._",
  7599. "lib/portable-net45+win8+wp8+wpa81/_._",
  7600. "lib/win8/_._",
  7601. "lib/wp80/_._",
  7602. "lib/wpa81/_._",
  7603. "lib/xamarinios10/_._",
  7604. "lib/xamarinmac20/_._",
  7605. "lib/xamarintvos10/_._",
  7606. "lib/xamarinwatchos10/_._",
  7607. "ref/MonoAndroid10/_._",
  7608. "ref/MonoTouch10/_._",
  7609. "ref/net45/_._",
  7610. "ref/netcore50/System.Net.Primitives.dll",
  7611. "ref/netcore50/System.Net.Primitives.xml",
  7612. "ref/netcore50/de/System.Net.Primitives.xml",
  7613. "ref/netcore50/es/System.Net.Primitives.xml",
  7614. "ref/netcore50/fr/System.Net.Primitives.xml",
  7615. "ref/netcore50/it/System.Net.Primitives.xml",
  7616. "ref/netcore50/ja/System.Net.Primitives.xml",
  7617. "ref/netcore50/ko/System.Net.Primitives.xml",
  7618. "ref/netcore50/ru/System.Net.Primitives.xml",
  7619. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7620. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7621. "ref/netstandard1.0/System.Net.Primitives.dll",
  7622. "ref/netstandard1.0/System.Net.Primitives.xml",
  7623. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7624. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7625. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7626. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7627. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7628. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7629. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7630. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7631. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7632. "ref/netstandard1.1/System.Net.Primitives.dll",
  7633. "ref/netstandard1.1/System.Net.Primitives.xml",
  7634. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7635. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7636. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7637. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7638. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7639. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7640. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7641. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7642. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7643. "ref/netstandard1.3/System.Net.Primitives.dll",
  7644. "ref/netstandard1.3/System.Net.Primitives.xml",
  7645. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7646. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7647. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7648. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7649. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7650. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7651. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7652. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7653. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7654. "ref/portable-net45+win8+wp8+wpa81/_._",
  7655. "ref/win8/_._",
  7656. "ref/wp80/_._",
  7657. "ref/wpa81/_._",
  7658. "ref/xamarinios10/_._",
  7659. "ref/xamarinmac20/_._",
  7660. "ref/xamarintvos10/_._",
  7661. "ref/xamarinwatchos10/_._",
  7662. "system.net.primitives.4.3.0.nupkg.sha512",
  7663. "system.net.primitives.nuspec"
  7664. ]
  7665. },
  7666. "System.Net.Security/4.3.0": {
  7667. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7668. "type": "package",
  7669. "path": "system.net.security/4.3.0",
  7670. "files": [
  7671. ".nupkg.metadata",
  7672. ".signature.p7s",
  7673. "ThirdPartyNotices.txt",
  7674. "dotnet_library_license.txt",
  7675. "lib/MonoAndroid10/_._",
  7676. "lib/MonoTouch10/_._",
  7677. "lib/net46/System.Net.Security.dll",
  7678. "lib/xamarinios10/_._",
  7679. "lib/xamarinmac20/_._",
  7680. "lib/xamarintvos10/_._",
  7681. "lib/xamarinwatchos10/_._",
  7682. "ref/MonoAndroid10/_._",
  7683. "ref/MonoTouch10/_._",
  7684. "ref/net46/System.Net.Security.dll",
  7685. "ref/netstandard1.3/System.Net.Security.dll",
  7686. "ref/netstandard1.3/System.Net.Security.xml",
  7687. "ref/netstandard1.3/de/System.Net.Security.xml",
  7688. "ref/netstandard1.3/es/System.Net.Security.xml",
  7689. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7690. "ref/netstandard1.3/it/System.Net.Security.xml",
  7691. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7692. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7693. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7694. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7695. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7696. "ref/xamarinios10/_._",
  7697. "ref/xamarinmac20/_._",
  7698. "ref/xamarintvos10/_._",
  7699. "ref/xamarinwatchos10/_._",
  7700. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7701. "runtimes/win/lib/net46/System.Net.Security.dll",
  7702. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7703. "runtimes/win7/lib/netcore50/_._",
  7704. "system.net.security.4.3.0.nupkg.sha512",
  7705. "system.net.security.nuspec"
  7706. ]
  7707. },
  7708. "System.Net.Sockets/4.3.0": {
  7709. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7710. "type": "package",
  7711. "path": "system.net.sockets/4.3.0",
  7712. "files": [
  7713. ".nupkg.metadata",
  7714. ".signature.p7s",
  7715. "ThirdPartyNotices.txt",
  7716. "dotnet_library_license.txt",
  7717. "lib/MonoAndroid10/_._",
  7718. "lib/MonoTouch10/_._",
  7719. "lib/net46/System.Net.Sockets.dll",
  7720. "lib/xamarinios10/_._",
  7721. "lib/xamarinmac20/_._",
  7722. "lib/xamarintvos10/_._",
  7723. "lib/xamarinwatchos10/_._",
  7724. "ref/MonoAndroid10/_._",
  7725. "ref/MonoTouch10/_._",
  7726. "ref/net46/System.Net.Sockets.dll",
  7727. "ref/netstandard1.3/System.Net.Sockets.dll",
  7728. "ref/netstandard1.3/System.Net.Sockets.xml",
  7729. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7730. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7731. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7732. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7733. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7734. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7735. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7736. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7737. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7738. "ref/xamarinios10/_._",
  7739. "ref/xamarinmac20/_._",
  7740. "ref/xamarintvos10/_._",
  7741. "ref/xamarinwatchos10/_._",
  7742. "system.net.sockets.4.3.0.nupkg.sha512",
  7743. "system.net.sockets.nuspec"
  7744. ]
  7745. },
  7746. "System.ObjectModel/4.3.0": {
  7747. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7748. "type": "package",
  7749. "path": "system.objectmodel/4.3.0",
  7750. "files": [
  7751. ".nupkg.metadata",
  7752. ".signature.p7s",
  7753. "ThirdPartyNotices.txt",
  7754. "dotnet_library_license.txt",
  7755. "lib/MonoAndroid10/_._",
  7756. "lib/MonoTouch10/_._",
  7757. "lib/net45/_._",
  7758. "lib/netcore50/System.ObjectModel.dll",
  7759. "lib/netstandard1.3/System.ObjectModel.dll",
  7760. "lib/portable-net45+win8+wp8+wpa81/_._",
  7761. "lib/win8/_._",
  7762. "lib/wp80/_._",
  7763. "lib/wpa81/_._",
  7764. "lib/xamarinios10/_._",
  7765. "lib/xamarinmac20/_._",
  7766. "lib/xamarintvos10/_._",
  7767. "lib/xamarinwatchos10/_._",
  7768. "ref/MonoAndroid10/_._",
  7769. "ref/MonoTouch10/_._",
  7770. "ref/net45/_._",
  7771. "ref/netcore50/System.ObjectModel.dll",
  7772. "ref/netcore50/System.ObjectModel.xml",
  7773. "ref/netcore50/de/System.ObjectModel.xml",
  7774. "ref/netcore50/es/System.ObjectModel.xml",
  7775. "ref/netcore50/fr/System.ObjectModel.xml",
  7776. "ref/netcore50/it/System.ObjectModel.xml",
  7777. "ref/netcore50/ja/System.ObjectModel.xml",
  7778. "ref/netcore50/ko/System.ObjectModel.xml",
  7779. "ref/netcore50/ru/System.ObjectModel.xml",
  7780. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7781. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7782. "ref/netstandard1.0/System.ObjectModel.dll",
  7783. "ref/netstandard1.0/System.ObjectModel.xml",
  7784. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7785. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7786. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7787. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7788. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7789. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7790. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7791. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7792. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7793. "ref/netstandard1.3/System.ObjectModel.dll",
  7794. "ref/netstandard1.3/System.ObjectModel.xml",
  7795. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7796. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7797. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7798. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7799. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7800. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7801. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7802. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7803. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7804. "ref/portable-net45+win8+wp8+wpa81/_._",
  7805. "ref/win8/_._",
  7806. "ref/wp80/_._",
  7807. "ref/wpa81/_._",
  7808. "ref/xamarinios10/_._",
  7809. "ref/xamarinmac20/_._",
  7810. "ref/xamarintvos10/_._",
  7811. "ref/xamarinwatchos10/_._",
  7812. "system.objectmodel.4.3.0.nupkg.sha512",
  7813. "system.objectmodel.nuspec"
  7814. ]
  7815. },
  7816. "System.Reactive/4.4.1": {
  7817. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  7818. "type": "package",
  7819. "path": "system.reactive/4.4.1",
  7820. "files": [
  7821. ".nupkg.metadata",
  7822. ".signature.p7s",
  7823. "build/netcoreapp3.0/System.Reactive.dll",
  7824. "build/netcoreapp3.0/System.Reactive.targets",
  7825. "build/netcoreapp3.0/System.Reactive.xml",
  7826. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  7827. "lib/net46/System.Reactive.dll",
  7828. "lib/net46/System.Reactive.xml",
  7829. "lib/netcoreapp3.0/_._",
  7830. "lib/netstandard2.0/System.Reactive.dll",
  7831. "lib/netstandard2.0/System.Reactive.xml",
  7832. "lib/uap10.0.16299/System.Reactive.dll",
  7833. "lib/uap10.0.16299/System.Reactive.pri",
  7834. "lib/uap10.0.16299/System.Reactive.xml",
  7835. "lib/uap10.0/System.Reactive.dll",
  7836. "lib/uap10.0/System.Reactive.pri",
  7837. "lib/uap10.0/System.Reactive.xml",
  7838. "system.reactive.4.4.1.nupkg.sha512",
  7839. "system.reactive.nuspec"
  7840. ]
  7841. },
  7842. "System.Reflection/4.3.0": {
  7843. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7844. "type": "package",
  7845. "path": "system.reflection/4.3.0",
  7846. "files": [
  7847. ".nupkg.metadata",
  7848. ".signature.p7s",
  7849. "ThirdPartyNotices.txt",
  7850. "dotnet_library_license.txt",
  7851. "lib/MonoAndroid10/_._",
  7852. "lib/MonoTouch10/_._",
  7853. "lib/net45/_._",
  7854. "lib/net462/System.Reflection.dll",
  7855. "lib/portable-net45+win8+wp8+wpa81/_._",
  7856. "lib/win8/_._",
  7857. "lib/wp80/_._",
  7858. "lib/wpa81/_._",
  7859. "lib/xamarinios10/_._",
  7860. "lib/xamarinmac20/_._",
  7861. "lib/xamarintvos10/_._",
  7862. "lib/xamarinwatchos10/_._",
  7863. "ref/MonoAndroid10/_._",
  7864. "ref/MonoTouch10/_._",
  7865. "ref/net45/_._",
  7866. "ref/net462/System.Reflection.dll",
  7867. "ref/netcore50/System.Reflection.dll",
  7868. "ref/netcore50/System.Reflection.xml",
  7869. "ref/netcore50/de/System.Reflection.xml",
  7870. "ref/netcore50/es/System.Reflection.xml",
  7871. "ref/netcore50/fr/System.Reflection.xml",
  7872. "ref/netcore50/it/System.Reflection.xml",
  7873. "ref/netcore50/ja/System.Reflection.xml",
  7874. "ref/netcore50/ko/System.Reflection.xml",
  7875. "ref/netcore50/ru/System.Reflection.xml",
  7876. "ref/netcore50/zh-hans/System.Reflection.xml",
  7877. "ref/netcore50/zh-hant/System.Reflection.xml",
  7878. "ref/netstandard1.0/System.Reflection.dll",
  7879. "ref/netstandard1.0/System.Reflection.xml",
  7880. "ref/netstandard1.0/de/System.Reflection.xml",
  7881. "ref/netstandard1.0/es/System.Reflection.xml",
  7882. "ref/netstandard1.0/fr/System.Reflection.xml",
  7883. "ref/netstandard1.0/it/System.Reflection.xml",
  7884. "ref/netstandard1.0/ja/System.Reflection.xml",
  7885. "ref/netstandard1.0/ko/System.Reflection.xml",
  7886. "ref/netstandard1.0/ru/System.Reflection.xml",
  7887. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7888. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7889. "ref/netstandard1.3/System.Reflection.dll",
  7890. "ref/netstandard1.3/System.Reflection.xml",
  7891. "ref/netstandard1.3/de/System.Reflection.xml",
  7892. "ref/netstandard1.3/es/System.Reflection.xml",
  7893. "ref/netstandard1.3/fr/System.Reflection.xml",
  7894. "ref/netstandard1.3/it/System.Reflection.xml",
  7895. "ref/netstandard1.3/ja/System.Reflection.xml",
  7896. "ref/netstandard1.3/ko/System.Reflection.xml",
  7897. "ref/netstandard1.3/ru/System.Reflection.xml",
  7898. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7899. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7900. "ref/netstandard1.5/System.Reflection.dll",
  7901. "ref/netstandard1.5/System.Reflection.xml",
  7902. "ref/netstandard1.5/de/System.Reflection.xml",
  7903. "ref/netstandard1.5/es/System.Reflection.xml",
  7904. "ref/netstandard1.5/fr/System.Reflection.xml",
  7905. "ref/netstandard1.5/it/System.Reflection.xml",
  7906. "ref/netstandard1.5/ja/System.Reflection.xml",
  7907. "ref/netstandard1.5/ko/System.Reflection.xml",
  7908. "ref/netstandard1.5/ru/System.Reflection.xml",
  7909. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7910. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7911. "ref/portable-net45+win8+wp8+wpa81/_._",
  7912. "ref/win8/_._",
  7913. "ref/wp80/_._",
  7914. "ref/wpa81/_._",
  7915. "ref/xamarinios10/_._",
  7916. "ref/xamarinmac20/_._",
  7917. "ref/xamarintvos10/_._",
  7918. "ref/xamarinwatchos10/_._",
  7919. "system.reflection.4.3.0.nupkg.sha512",
  7920. "system.reflection.nuspec"
  7921. ]
  7922. },
  7923. "System.Reflection.Emit/4.7.0": {
  7924. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7925. "type": "package",
  7926. "path": "system.reflection.emit/4.7.0",
  7927. "files": [
  7928. ".nupkg.metadata",
  7929. ".signature.p7s",
  7930. "LICENSE.TXT",
  7931. "THIRD-PARTY-NOTICES.TXT",
  7932. "lib/MonoAndroid10/_._",
  7933. "lib/MonoTouch10/_._",
  7934. "lib/net45/_._",
  7935. "lib/netcore50/System.Reflection.Emit.dll",
  7936. "lib/netcoreapp2.0/_._",
  7937. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7938. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7939. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7940. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7941. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7942. "lib/netstandard2.1/_._",
  7943. "lib/xamarinios10/_._",
  7944. "lib/xamarinmac20/_._",
  7945. "lib/xamarintvos10/_._",
  7946. "lib/xamarinwatchos10/_._",
  7947. "ref/MonoAndroid10/_._",
  7948. "ref/MonoTouch10/_._",
  7949. "ref/net45/_._",
  7950. "ref/netcoreapp2.0/_._",
  7951. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7952. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7953. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7954. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7955. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7956. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7957. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7958. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7959. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7960. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7961. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7962. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7963. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7964. "ref/netstandard2.1/_._",
  7965. "ref/xamarinios10/_._",
  7966. "ref/xamarinmac20/_._",
  7967. "ref/xamarintvos10/_._",
  7968. "ref/xamarinwatchos10/_._",
  7969. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7970. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7971. "system.reflection.emit.4.7.0.nupkg.sha512",
  7972. "system.reflection.emit.nuspec",
  7973. "useSharedDesignerContext.txt",
  7974. "version.txt"
  7975. ]
  7976. },
  7977. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7978. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7979. "type": "package",
  7980. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7981. "files": [
  7982. ".nupkg.metadata",
  7983. ".signature.p7s",
  7984. "ThirdPartyNotices.txt",
  7985. "dotnet_library_license.txt",
  7986. "lib/MonoAndroid10/_._",
  7987. "lib/MonoTouch10/_._",
  7988. "lib/net45/_._",
  7989. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7990. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7991. "lib/portable-net45+wp8/_._",
  7992. "lib/wp80/_._",
  7993. "lib/xamarinios10/_._",
  7994. "lib/xamarinmac20/_._",
  7995. "lib/xamarintvos10/_._",
  7996. "lib/xamarinwatchos10/_._",
  7997. "ref/MonoAndroid10/_._",
  7998. "ref/MonoTouch10/_._",
  7999. "ref/net45/_._",
  8000. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8001. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8002. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8003. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8004. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8005. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8006. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8007. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8008. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8009. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8010. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8011. "ref/portable-net45+wp8/_._",
  8012. "ref/wp80/_._",
  8013. "ref/xamarinios10/_._",
  8014. "ref/xamarinmac20/_._",
  8015. "ref/xamarintvos10/_._",
  8016. "ref/xamarinwatchos10/_._",
  8017. "runtimes/aot/lib/netcore50/_._",
  8018. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8019. "system.reflection.emit.ilgeneration.nuspec"
  8020. ]
  8021. },
  8022. "System.Reflection.Emit.Lightweight/4.3.0": {
  8023. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8024. "type": "package",
  8025. "path": "system.reflection.emit.lightweight/4.3.0",
  8026. "files": [
  8027. ".nupkg.metadata",
  8028. ".signature.p7s",
  8029. "ThirdPartyNotices.txt",
  8030. "dotnet_library_license.txt",
  8031. "lib/MonoAndroid10/_._",
  8032. "lib/MonoTouch10/_._",
  8033. "lib/net45/_._",
  8034. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8035. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8036. "lib/portable-net45+wp8/_._",
  8037. "lib/wp80/_._",
  8038. "lib/xamarinios10/_._",
  8039. "lib/xamarinmac20/_._",
  8040. "lib/xamarintvos10/_._",
  8041. "lib/xamarinwatchos10/_._",
  8042. "ref/MonoAndroid10/_._",
  8043. "ref/MonoTouch10/_._",
  8044. "ref/net45/_._",
  8045. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8046. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8047. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8048. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8049. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8050. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8051. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8052. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8053. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8054. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8055. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8056. "ref/portable-net45+wp8/_._",
  8057. "ref/wp80/_._",
  8058. "ref/xamarinios10/_._",
  8059. "ref/xamarinmac20/_._",
  8060. "ref/xamarintvos10/_._",
  8061. "ref/xamarinwatchos10/_._",
  8062. "runtimes/aot/lib/netcore50/_._",
  8063. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8064. "system.reflection.emit.lightweight.nuspec"
  8065. ]
  8066. },
  8067. "System.Reflection.Extensions/4.3.0": {
  8068. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8069. "type": "package",
  8070. "path": "system.reflection.extensions/4.3.0",
  8071. "files": [
  8072. ".nupkg.metadata",
  8073. ".signature.p7s",
  8074. "ThirdPartyNotices.txt",
  8075. "dotnet_library_license.txt",
  8076. "lib/MonoAndroid10/_._",
  8077. "lib/MonoTouch10/_._",
  8078. "lib/net45/_._",
  8079. "lib/portable-net45+win8+wp8+wpa81/_._",
  8080. "lib/win8/_._",
  8081. "lib/wp80/_._",
  8082. "lib/wpa81/_._",
  8083. "lib/xamarinios10/_._",
  8084. "lib/xamarinmac20/_._",
  8085. "lib/xamarintvos10/_._",
  8086. "lib/xamarinwatchos10/_._",
  8087. "ref/MonoAndroid10/_._",
  8088. "ref/MonoTouch10/_._",
  8089. "ref/net45/_._",
  8090. "ref/netcore50/System.Reflection.Extensions.dll",
  8091. "ref/netcore50/System.Reflection.Extensions.xml",
  8092. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8093. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8094. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8095. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8096. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8097. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8098. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8099. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8100. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8101. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8102. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8103. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8104. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8105. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8106. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8107. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8108. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8109. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8110. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8111. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8112. "ref/portable-net45+win8+wp8+wpa81/_._",
  8113. "ref/win8/_._",
  8114. "ref/wp80/_._",
  8115. "ref/wpa81/_._",
  8116. "ref/xamarinios10/_._",
  8117. "ref/xamarinmac20/_._",
  8118. "ref/xamarintvos10/_._",
  8119. "ref/xamarinwatchos10/_._",
  8120. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8121. "system.reflection.extensions.nuspec"
  8122. ]
  8123. },
  8124. "System.Reflection.Primitives/4.3.0": {
  8125. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8126. "type": "package",
  8127. "path": "system.reflection.primitives/4.3.0",
  8128. "files": [
  8129. ".nupkg.metadata",
  8130. ".signature.p7s",
  8131. "ThirdPartyNotices.txt",
  8132. "dotnet_library_license.txt",
  8133. "lib/MonoAndroid10/_._",
  8134. "lib/MonoTouch10/_._",
  8135. "lib/net45/_._",
  8136. "lib/portable-net45+win8+wp8+wpa81/_._",
  8137. "lib/win8/_._",
  8138. "lib/wp80/_._",
  8139. "lib/wpa81/_._",
  8140. "lib/xamarinios10/_._",
  8141. "lib/xamarinmac20/_._",
  8142. "lib/xamarintvos10/_._",
  8143. "lib/xamarinwatchos10/_._",
  8144. "ref/MonoAndroid10/_._",
  8145. "ref/MonoTouch10/_._",
  8146. "ref/net45/_._",
  8147. "ref/netcore50/System.Reflection.Primitives.dll",
  8148. "ref/netcore50/System.Reflection.Primitives.xml",
  8149. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8150. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8151. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8152. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8153. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8154. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8155. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8156. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8157. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8158. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8159. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8160. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8161. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8162. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8163. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8164. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8165. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8166. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8167. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8168. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8169. "ref/portable-net45+win8+wp8+wpa81/_._",
  8170. "ref/win8/_._",
  8171. "ref/wp80/_._",
  8172. "ref/wpa81/_._",
  8173. "ref/xamarinios10/_._",
  8174. "ref/xamarinmac20/_._",
  8175. "ref/xamarintvos10/_._",
  8176. "ref/xamarinwatchos10/_._",
  8177. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8178. "system.reflection.primitives.nuspec"
  8179. ]
  8180. },
  8181. "System.Reflection.TypeExtensions/4.3.0": {
  8182. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8183. "type": "package",
  8184. "path": "system.reflection.typeextensions/4.3.0",
  8185. "files": [
  8186. ".nupkg.metadata",
  8187. ".signature.p7s",
  8188. "ThirdPartyNotices.txt",
  8189. "dotnet_library_license.txt",
  8190. "lib/MonoAndroid10/_._",
  8191. "lib/MonoTouch10/_._",
  8192. "lib/net46/System.Reflection.TypeExtensions.dll",
  8193. "lib/net462/System.Reflection.TypeExtensions.dll",
  8194. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8195. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8196. "lib/xamarinios10/_._",
  8197. "lib/xamarinmac20/_._",
  8198. "lib/xamarintvos10/_._",
  8199. "lib/xamarinwatchos10/_._",
  8200. "ref/MonoAndroid10/_._",
  8201. "ref/MonoTouch10/_._",
  8202. "ref/net46/System.Reflection.TypeExtensions.dll",
  8203. "ref/net462/System.Reflection.TypeExtensions.dll",
  8204. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8205. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8206. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8207. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8208. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8209. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8210. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8211. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8212. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8213. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8214. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8215. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8216. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8217. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8218. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8219. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8220. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8221. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8222. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8223. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8224. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8225. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8226. "ref/xamarinios10/_._",
  8227. "ref/xamarinmac20/_._",
  8228. "ref/xamarintvos10/_._",
  8229. "ref/xamarinwatchos10/_._",
  8230. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8231. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8232. "system.reflection.typeextensions.nuspec"
  8233. ]
  8234. },
  8235. "System.Resources.ResourceManager/4.3.0": {
  8236. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8237. "type": "package",
  8238. "path": "system.resources.resourcemanager/4.3.0",
  8239. "files": [
  8240. ".nupkg.metadata",
  8241. ".signature.p7s",
  8242. "ThirdPartyNotices.txt",
  8243. "dotnet_library_license.txt",
  8244. "lib/MonoAndroid10/_._",
  8245. "lib/MonoTouch10/_._",
  8246. "lib/net45/_._",
  8247. "lib/portable-net45+win8+wp8+wpa81/_._",
  8248. "lib/win8/_._",
  8249. "lib/wp80/_._",
  8250. "lib/wpa81/_._",
  8251. "lib/xamarinios10/_._",
  8252. "lib/xamarinmac20/_._",
  8253. "lib/xamarintvos10/_._",
  8254. "lib/xamarinwatchos10/_._",
  8255. "ref/MonoAndroid10/_._",
  8256. "ref/MonoTouch10/_._",
  8257. "ref/net45/_._",
  8258. "ref/netcore50/System.Resources.ResourceManager.dll",
  8259. "ref/netcore50/System.Resources.ResourceManager.xml",
  8260. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8261. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8262. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8263. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8264. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8265. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8266. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8267. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8268. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8269. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8270. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8271. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8272. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8273. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8274. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8275. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8276. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8277. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8278. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8279. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8280. "ref/portable-net45+win8+wp8+wpa81/_._",
  8281. "ref/win8/_._",
  8282. "ref/wp80/_._",
  8283. "ref/wpa81/_._",
  8284. "ref/xamarinios10/_._",
  8285. "ref/xamarinmac20/_._",
  8286. "ref/xamarintvos10/_._",
  8287. "ref/xamarinwatchos10/_._",
  8288. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8289. "system.resources.resourcemanager.nuspec"
  8290. ]
  8291. },
  8292. "System.Runtime/4.3.0": {
  8293. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8294. "type": "package",
  8295. "path": "system.runtime/4.3.0",
  8296. "files": [
  8297. ".nupkg.metadata",
  8298. ".signature.p7s",
  8299. "ThirdPartyNotices.txt",
  8300. "dotnet_library_license.txt",
  8301. "lib/MonoAndroid10/_._",
  8302. "lib/MonoTouch10/_._",
  8303. "lib/net45/_._",
  8304. "lib/net462/System.Runtime.dll",
  8305. "lib/portable-net45+win8+wp80+wpa81/_._",
  8306. "lib/win8/_._",
  8307. "lib/wp80/_._",
  8308. "lib/wpa81/_._",
  8309. "lib/xamarinios10/_._",
  8310. "lib/xamarinmac20/_._",
  8311. "lib/xamarintvos10/_._",
  8312. "lib/xamarinwatchos10/_._",
  8313. "ref/MonoAndroid10/_._",
  8314. "ref/MonoTouch10/_._",
  8315. "ref/net45/_._",
  8316. "ref/net462/System.Runtime.dll",
  8317. "ref/netcore50/System.Runtime.dll",
  8318. "ref/netcore50/System.Runtime.xml",
  8319. "ref/netcore50/de/System.Runtime.xml",
  8320. "ref/netcore50/es/System.Runtime.xml",
  8321. "ref/netcore50/fr/System.Runtime.xml",
  8322. "ref/netcore50/it/System.Runtime.xml",
  8323. "ref/netcore50/ja/System.Runtime.xml",
  8324. "ref/netcore50/ko/System.Runtime.xml",
  8325. "ref/netcore50/ru/System.Runtime.xml",
  8326. "ref/netcore50/zh-hans/System.Runtime.xml",
  8327. "ref/netcore50/zh-hant/System.Runtime.xml",
  8328. "ref/netstandard1.0/System.Runtime.dll",
  8329. "ref/netstandard1.0/System.Runtime.xml",
  8330. "ref/netstandard1.0/de/System.Runtime.xml",
  8331. "ref/netstandard1.0/es/System.Runtime.xml",
  8332. "ref/netstandard1.0/fr/System.Runtime.xml",
  8333. "ref/netstandard1.0/it/System.Runtime.xml",
  8334. "ref/netstandard1.0/ja/System.Runtime.xml",
  8335. "ref/netstandard1.0/ko/System.Runtime.xml",
  8336. "ref/netstandard1.0/ru/System.Runtime.xml",
  8337. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8338. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8339. "ref/netstandard1.2/System.Runtime.dll",
  8340. "ref/netstandard1.2/System.Runtime.xml",
  8341. "ref/netstandard1.2/de/System.Runtime.xml",
  8342. "ref/netstandard1.2/es/System.Runtime.xml",
  8343. "ref/netstandard1.2/fr/System.Runtime.xml",
  8344. "ref/netstandard1.2/it/System.Runtime.xml",
  8345. "ref/netstandard1.2/ja/System.Runtime.xml",
  8346. "ref/netstandard1.2/ko/System.Runtime.xml",
  8347. "ref/netstandard1.2/ru/System.Runtime.xml",
  8348. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8349. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8350. "ref/netstandard1.3/System.Runtime.dll",
  8351. "ref/netstandard1.3/System.Runtime.xml",
  8352. "ref/netstandard1.3/de/System.Runtime.xml",
  8353. "ref/netstandard1.3/es/System.Runtime.xml",
  8354. "ref/netstandard1.3/fr/System.Runtime.xml",
  8355. "ref/netstandard1.3/it/System.Runtime.xml",
  8356. "ref/netstandard1.3/ja/System.Runtime.xml",
  8357. "ref/netstandard1.3/ko/System.Runtime.xml",
  8358. "ref/netstandard1.3/ru/System.Runtime.xml",
  8359. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8360. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8361. "ref/netstandard1.5/System.Runtime.dll",
  8362. "ref/netstandard1.5/System.Runtime.xml",
  8363. "ref/netstandard1.5/de/System.Runtime.xml",
  8364. "ref/netstandard1.5/es/System.Runtime.xml",
  8365. "ref/netstandard1.5/fr/System.Runtime.xml",
  8366. "ref/netstandard1.5/it/System.Runtime.xml",
  8367. "ref/netstandard1.5/ja/System.Runtime.xml",
  8368. "ref/netstandard1.5/ko/System.Runtime.xml",
  8369. "ref/netstandard1.5/ru/System.Runtime.xml",
  8370. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8371. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8372. "ref/portable-net45+win8+wp80+wpa81/_._",
  8373. "ref/win8/_._",
  8374. "ref/wp80/_._",
  8375. "ref/wpa81/_._",
  8376. "ref/xamarinios10/_._",
  8377. "ref/xamarinmac20/_._",
  8378. "ref/xamarintvos10/_._",
  8379. "ref/xamarinwatchos10/_._",
  8380. "system.runtime.4.3.0.nupkg.sha512",
  8381. "system.runtime.nuspec"
  8382. ]
  8383. },
  8384. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8385. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8386. "type": "package",
  8387. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8388. "files": [
  8389. ".nupkg.metadata",
  8390. ".signature.p7s",
  8391. "Icon.png",
  8392. "LICENSE.TXT",
  8393. "THIRD-PARTY-NOTICES.TXT",
  8394. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8395. "buildTransitive/netcoreapp3.1/_._",
  8396. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8397. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8398. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8399. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8400. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8401. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8402. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8403. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8404. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8405. "system.runtime.compilerservices.unsafe.nuspec",
  8406. "useSharedDesignerContext.txt"
  8407. ]
  8408. },
  8409. "System.Runtime.Extensions/4.3.0": {
  8410. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8411. "type": "package",
  8412. "path": "system.runtime.extensions/4.3.0",
  8413. "files": [
  8414. ".nupkg.metadata",
  8415. ".signature.p7s",
  8416. "ThirdPartyNotices.txt",
  8417. "dotnet_library_license.txt",
  8418. "lib/MonoAndroid10/_._",
  8419. "lib/MonoTouch10/_._",
  8420. "lib/net45/_._",
  8421. "lib/net462/System.Runtime.Extensions.dll",
  8422. "lib/portable-net45+win8+wp8+wpa81/_._",
  8423. "lib/win8/_._",
  8424. "lib/wp80/_._",
  8425. "lib/wpa81/_._",
  8426. "lib/xamarinios10/_._",
  8427. "lib/xamarinmac20/_._",
  8428. "lib/xamarintvos10/_._",
  8429. "lib/xamarinwatchos10/_._",
  8430. "ref/MonoAndroid10/_._",
  8431. "ref/MonoTouch10/_._",
  8432. "ref/net45/_._",
  8433. "ref/net462/System.Runtime.Extensions.dll",
  8434. "ref/netcore50/System.Runtime.Extensions.dll",
  8435. "ref/netcore50/System.Runtime.Extensions.xml",
  8436. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8437. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8438. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8439. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8440. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8441. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8442. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8443. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8444. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8445. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8446. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8447. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8448. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8449. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8450. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8451. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8452. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8453. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8454. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8455. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8456. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8457. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8458. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8459. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8460. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8461. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8462. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8463. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8464. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8465. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8466. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8467. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8468. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8469. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8470. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8471. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8472. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8473. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8474. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8475. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8476. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8477. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8478. "ref/portable-net45+win8+wp8+wpa81/_._",
  8479. "ref/win8/_._",
  8480. "ref/wp80/_._",
  8481. "ref/wpa81/_._",
  8482. "ref/xamarinios10/_._",
  8483. "ref/xamarinmac20/_._",
  8484. "ref/xamarintvos10/_._",
  8485. "ref/xamarinwatchos10/_._",
  8486. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8487. "system.runtime.extensions.nuspec"
  8488. ]
  8489. },
  8490. "System.Runtime.Handles/4.3.0": {
  8491. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8492. "type": "package",
  8493. "path": "system.runtime.handles/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/net46/_._",
  8502. "lib/xamarinios10/_._",
  8503. "lib/xamarinmac20/_._",
  8504. "lib/xamarintvos10/_._",
  8505. "lib/xamarinwatchos10/_._",
  8506. "ref/MonoAndroid10/_._",
  8507. "ref/MonoTouch10/_._",
  8508. "ref/net46/_._",
  8509. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8510. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8511. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8512. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8513. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8514. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8515. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8516. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8517. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8518. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8519. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8520. "ref/xamarinios10/_._",
  8521. "ref/xamarinmac20/_._",
  8522. "ref/xamarintvos10/_._",
  8523. "ref/xamarinwatchos10/_._",
  8524. "system.runtime.handles.4.3.0.nupkg.sha512",
  8525. "system.runtime.handles.nuspec"
  8526. ]
  8527. },
  8528. "System.Runtime.InteropServices/4.3.0": {
  8529. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8530. "type": "package",
  8531. "path": "system.runtime.interopservices/4.3.0",
  8532. "files": [
  8533. ".nupkg.metadata",
  8534. ".signature.p7s",
  8535. "ThirdPartyNotices.txt",
  8536. "dotnet_library_license.txt",
  8537. "lib/MonoAndroid10/_._",
  8538. "lib/MonoTouch10/_._",
  8539. "lib/net45/_._",
  8540. "lib/net462/System.Runtime.InteropServices.dll",
  8541. "lib/net463/System.Runtime.InteropServices.dll",
  8542. "lib/portable-net45+win8+wpa81/_._",
  8543. "lib/win8/_._",
  8544. "lib/wpa81/_._",
  8545. "lib/xamarinios10/_._",
  8546. "lib/xamarinmac20/_._",
  8547. "lib/xamarintvos10/_._",
  8548. "lib/xamarinwatchos10/_._",
  8549. "ref/MonoAndroid10/_._",
  8550. "ref/MonoTouch10/_._",
  8551. "ref/net45/_._",
  8552. "ref/net462/System.Runtime.InteropServices.dll",
  8553. "ref/net463/System.Runtime.InteropServices.dll",
  8554. "ref/netcore50/System.Runtime.InteropServices.dll",
  8555. "ref/netcore50/System.Runtime.InteropServices.xml",
  8556. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8557. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8558. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8559. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8560. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8561. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8562. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8563. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8564. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8565. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8566. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8567. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8568. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8569. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8570. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8571. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8572. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8573. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8574. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8575. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8576. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8577. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8578. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8579. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8580. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8581. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8582. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8583. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8584. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8585. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8586. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8587. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8588. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8589. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8590. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8591. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8592. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8593. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8594. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8595. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8596. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8597. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8598. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8599. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8600. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8601. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8602. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8603. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8604. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8605. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8606. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8607. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8608. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8609. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8610. "ref/portable-net45+win8+wpa81/_._",
  8611. "ref/win8/_._",
  8612. "ref/wpa81/_._",
  8613. "ref/xamarinios10/_._",
  8614. "ref/xamarinmac20/_._",
  8615. "ref/xamarintvos10/_._",
  8616. "ref/xamarinwatchos10/_._",
  8617. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8618. "system.runtime.interopservices.nuspec"
  8619. ]
  8620. },
  8621. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8622. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8623. "type": "package",
  8624. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8625. "files": [
  8626. ".nupkg.metadata",
  8627. ".signature.p7s",
  8628. "ThirdPartyNotices.txt",
  8629. "dotnet_library_license.txt",
  8630. "lib/MonoAndroid10/_._",
  8631. "lib/MonoTouch10/_._",
  8632. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8633. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8634. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8635. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8636. "lib/xamarinios10/_._",
  8637. "lib/xamarinmac20/_._",
  8638. "lib/xamarintvos10/_._",
  8639. "lib/xamarinwatchos10/_._",
  8640. "ref/MonoAndroid10/_._",
  8641. "ref/MonoTouch10/_._",
  8642. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8643. "ref/xamarinios10/_._",
  8644. "ref/xamarinmac20/_._",
  8645. "ref/xamarintvos10/_._",
  8646. "ref/xamarinwatchos10/_._",
  8647. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8648. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8649. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8650. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8651. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8652. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8653. "system.runtime.interopservices.runtimeinformation.nuspec"
  8654. ]
  8655. },
  8656. "System.Runtime.Numerics/4.3.0": {
  8657. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8658. "type": "package",
  8659. "path": "system.runtime.numerics/4.3.0",
  8660. "files": [
  8661. ".nupkg.metadata",
  8662. ".signature.p7s",
  8663. "ThirdPartyNotices.txt",
  8664. "dotnet_library_license.txt",
  8665. "lib/MonoAndroid10/_._",
  8666. "lib/MonoTouch10/_._",
  8667. "lib/net45/_._",
  8668. "lib/netcore50/System.Runtime.Numerics.dll",
  8669. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8670. "lib/portable-net45+win8+wpa81/_._",
  8671. "lib/win8/_._",
  8672. "lib/wpa81/_._",
  8673. "lib/xamarinios10/_._",
  8674. "lib/xamarinmac20/_._",
  8675. "lib/xamarintvos10/_._",
  8676. "lib/xamarinwatchos10/_._",
  8677. "ref/MonoAndroid10/_._",
  8678. "ref/MonoTouch10/_._",
  8679. "ref/net45/_._",
  8680. "ref/netcore50/System.Runtime.Numerics.dll",
  8681. "ref/netcore50/System.Runtime.Numerics.xml",
  8682. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8683. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8684. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8685. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8686. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8687. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8688. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8689. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8690. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8691. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8692. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8693. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8694. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8695. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8696. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8697. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8698. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8699. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8700. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8701. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8702. "ref/portable-net45+win8+wpa81/_._",
  8703. "ref/win8/_._",
  8704. "ref/wpa81/_._",
  8705. "ref/xamarinios10/_._",
  8706. "ref/xamarinmac20/_._",
  8707. "ref/xamarintvos10/_._",
  8708. "ref/xamarinwatchos10/_._",
  8709. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8710. "system.runtime.numerics.nuspec"
  8711. ]
  8712. },
  8713. "System.Runtime.Serialization.Primitives/4.3.0": {
  8714. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8715. "type": "package",
  8716. "path": "system.runtime.serialization.primitives/4.3.0",
  8717. "files": [
  8718. ".nupkg.metadata",
  8719. ".signature.p7s",
  8720. "ThirdPartyNotices.txt",
  8721. "dotnet_library_license.txt",
  8722. "lib/MonoAndroid10/_._",
  8723. "lib/MonoTouch10/_._",
  8724. "lib/net45/_._",
  8725. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8726. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8727. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8728. "lib/portable-net45+win8+wp8+wpa81/_._",
  8729. "lib/win8/_._",
  8730. "lib/wp80/_._",
  8731. "lib/wpa81/_._",
  8732. "lib/xamarinios10/_._",
  8733. "lib/xamarinmac20/_._",
  8734. "lib/xamarintvos10/_._",
  8735. "lib/xamarinwatchos10/_._",
  8736. "ref/MonoAndroid10/_._",
  8737. "ref/MonoTouch10/_._",
  8738. "ref/net45/_._",
  8739. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8740. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8741. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8742. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8743. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8744. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8745. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8746. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8747. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8748. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8749. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8750. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8751. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8752. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8753. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8754. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8755. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8756. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8757. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8758. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8759. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8760. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8761. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8762. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8763. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8764. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8765. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8766. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8767. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8768. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8769. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8770. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8771. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8772. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8773. "ref/portable-net45+win8+wp8+wpa81/_._",
  8774. "ref/win8/_._",
  8775. "ref/wp80/_._",
  8776. "ref/wpa81/_._",
  8777. "ref/xamarinios10/_._",
  8778. "ref/xamarinmac20/_._",
  8779. "ref/xamarintvos10/_._",
  8780. "ref/xamarinwatchos10/_._",
  8781. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8782. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8783. "system.runtime.serialization.primitives.nuspec"
  8784. ]
  8785. },
  8786. "System.Security.AccessControl/4.7.0": {
  8787. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8788. "type": "package",
  8789. "path": "system.security.accesscontrol/4.7.0",
  8790. "files": [
  8791. ".nupkg.metadata",
  8792. ".signature.p7s",
  8793. "LICENSE.TXT",
  8794. "THIRD-PARTY-NOTICES.TXT",
  8795. "lib/net46/System.Security.AccessControl.dll",
  8796. "lib/net461/System.Security.AccessControl.dll",
  8797. "lib/net461/System.Security.AccessControl.xml",
  8798. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8799. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8800. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8801. "lib/uap10.0.16299/_._",
  8802. "ref/net46/System.Security.AccessControl.dll",
  8803. "ref/net461/System.Security.AccessControl.dll",
  8804. "ref/net461/System.Security.AccessControl.xml",
  8805. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8806. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8807. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8808. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8809. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8810. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8811. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8812. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8813. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8814. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8815. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8816. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8817. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8818. "ref/uap10.0.16299/_._",
  8819. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8820. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8821. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8822. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8823. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8824. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8825. "runtimes/win/lib/uap10.0.16299/_._",
  8826. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8827. "system.security.accesscontrol.nuspec",
  8828. "useSharedDesignerContext.txt",
  8829. "version.txt"
  8830. ]
  8831. },
  8832. "System.Security.Claims/4.3.0": {
  8833. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8834. "type": "package",
  8835. "path": "system.security.claims/4.3.0",
  8836. "files": [
  8837. ".nupkg.metadata",
  8838. ".signature.p7s",
  8839. "ThirdPartyNotices.txt",
  8840. "dotnet_library_license.txt",
  8841. "lib/MonoAndroid10/_._",
  8842. "lib/MonoTouch10/_._",
  8843. "lib/net46/System.Security.Claims.dll",
  8844. "lib/netstandard1.3/System.Security.Claims.dll",
  8845. "lib/xamarinios10/_._",
  8846. "lib/xamarinmac20/_._",
  8847. "lib/xamarintvos10/_._",
  8848. "lib/xamarinwatchos10/_._",
  8849. "ref/MonoAndroid10/_._",
  8850. "ref/MonoTouch10/_._",
  8851. "ref/net46/System.Security.Claims.dll",
  8852. "ref/netstandard1.3/System.Security.Claims.dll",
  8853. "ref/netstandard1.3/System.Security.Claims.xml",
  8854. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8855. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8856. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8857. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8858. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8859. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8860. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8861. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8862. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8863. "ref/xamarinios10/_._",
  8864. "ref/xamarinmac20/_._",
  8865. "ref/xamarintvos10/_._",
  8866. "ref/xamarinwatchos10/_._",
  8867. "system.security.claims.4.3.0.nupkg.sha512",
  8868. "system.security.claims.nuspec"
  8869. ]
  8870. },
  8871. "System.Security.Cryptography.Algorithms/4.3.0": {
  8872. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8873. "type": "package",
  8874. "path": "system.security.cryptography.algorithms/4.3.0",
  8875. "files": [
  8876. ".nupkg.metadata",
  8877. ".signature.p7s",
  8878. "ThirdPartyNotices.txt",
  8879. "dotnet_library_license.txt",
  8880. "lib/MonoAndroid10/_._",
  8881. "lib/MonoTouch10/_._",
  8882. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8883. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8884. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8885. "lib/xamarinios10/_._",
  8886. "lib/xamarinmac20/_._",
  8887. "lib/xamarintvos10/_._",
  8888. "lib/xamarinwatchos10/_._",
  8889. "ref/MonoAndroid10/_._",
  8890. "ref/MonoTouch10/_._",
  8891. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8892. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8893. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8894. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8895. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8896. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8897. "ref/xamarinios10/_._",
  8898. "ref/xamarinmac20/_._",
  8899. "ref/xamarintvos10/_._",
  8900. "ref/xamarinwatchos10/_._",
  8901. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8902. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8903. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8904. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8905. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8906. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8907. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8908. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8909. "system.security.cryptography.algorithms.nuspec"
  8910. ]
  8911. },
  8912. "System.Security.Cryptography.Cng/4.5.0": {
  8913. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8914. "type": "package",
  8915. "path": "system.security.cryptography.cng/4.5.0",
  8916. "files": [
  8917. ".nupkg.metadata",
  8918. ".signature.p7s",
  8919. "LICENSE.TXT",
  8920. "THIRD-PARTY-NOTICES.TXT",
  8921. "lib/MonoAndroid10/_._",
  8922. "lib/MonoTouch10/_._",
  8923. "lib/net46/System.Security.Cryptography.Cng.dll",
  8924. "lib/net461/System.Security.Cryptography.Cng.dll",
  8925. "lib/net462/System.Security.Cryptography.Cng.dll",
  8926. "lib/net47/System.Security.Cryptography.Cng.dll",
  8927. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8928. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8929. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8930. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8931. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8932. "lib/uap10.0.16299/_._",
  8933. "lib/xamarinios10/_._",
  8934. "lib/xamarinmac20/_._",
  8935. "lib/xamarintvos10/_._",
  8936. "lib/xamarinwatchos10/_._",
  8937. "ref/MonoAndroid10/_._",
  8938. "ref/MonoTouch10/_._",
  8939. "ref/net46/System.Security.Cryptography.Cng.dll",
  8940. "ref/net461/System.Security.Cryptography.Cng.dll",
  8941. "ref/net461/System.Security.Cryptography.Cng.xml",
  8942. "ref/net462/System.Security.Cryptography.Cng.dll",
  8943. "ref/net462/System.Security.Cryptography.Cng.xml",
  8944. "ref/net47/System.Security.Cryptography.Cng.dll",
  8945. "ref/net47/System.Security.Cryptography.Cng.xml",
  8946. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8947. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8948. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8949. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8950. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8951. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8952. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8953. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8954. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8955. "ref/uap10.0.16299/_._",
  8956. "ref/xamarinios10/_._",
  8957. "ref/xamarinmac20/_._",
  8958. "ref/xamarintvos10/_._",
  8959. "ref/xamarinwatchos10/_._",
  8960. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8961. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8962. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8963. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8964. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8965. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8966. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8967. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8968. "runtimes/win/lib/uap10.0.16299/_._",
  8969. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8970. "system.security.cryptography.cng.nuspec",
  8971. "useSharedDesignerContext.txt",
  8972. "version.txt"
  8973. ]
  8974. },
  8975. "System.Security.Cryptography.Csp/4.3.0": {
  8976. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8977. "type": "package",
  8978. "path": "system.security.cryptography.csp/4.3.0",
  8979. "files": [
  8980. ".nupkg.metadata",
  8981. ".signature.p7s",
  8982. "ThirdPartyNotices.txt",
  8983. "dotnet_library_license.txt",
  8984. "lib/MonoAndroid10/_._",
  8985. "lib/MonoTouch10/_._",
  8986. "lib/net46/System.Security.Cryptography.Csp.dll",
  8987. "lib/xamarinios10/_._",
  8988. "lib/xamarinmac20/_._",
  8989. "lib/xamarintvos10/_._",
  8990. "lib/xamarinwatchos10/_._",
  8991. "ref/MonoAndroid10/_._",
  8992. "ref/MonoTouch10/_._",
  8993. "ref/net46/System.Security.Cryptography.Csp.dll",
  8994. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8995. "ref/xamarinios10/_._",
  8996. "ref/xamarinmac20/_._",
  8997. "ref/xamarintvos10/_._",
  8998. "ref/xamarinwatchos10/_._",
  8999. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9000. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9001. "runtimes/win/lib/netcore50/_._",
  9002. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9003. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9004. "system.security.cryptography.csp.nuspec"
  9005. ]
  9006. },
  9007. "System.Security.Cryptography.Encoding/4.3.0": {
  9008. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9009. "type": "package",
  9010. "path": "system.security.cryptography.encoding/4.3.0",
  9011. "files": [
  9012. ".nupkg.metadata",
  9013. ".signature.p7s",
  9014. "ThirdPartyNotices.txt",
  9015. "dotnet_library_license.txt",
  9016. "lib/MonoAndroid10/_._",
  9017. "lib/MonoTouch10/_._",
  9018. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9019. "lib/xamarinios10/_._",
  9020. "lib/xamarinmac20/_._",
  9021. "lib/xamarintvos10/_._",
  9022. "lib/xamarinwatchos10/_._",
  9023. "ref/MonoAndroid10/_._",
  9024. "ref/MonoTouch10/_._",
  9025. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9026. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9027. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9028. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9029. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9030. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9031. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9032. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9033. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9034. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9035. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9036. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9037. "ref/xamarinios10/_._",
  9038. "ref/xamarinmac20/_._",
  9039. "ref/xamarintvos10/_._",
  9040. "ref/xamarinwatchos10/_._",
  9041. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9042. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9043. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9044. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9045. "system.security.cryptography.encoding.nuspec"
  9046. ]
  9047. },
  9048. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9049. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9050. "type": "package",
  9051. "path": "system.security.cryptography.openssl/4.3.0",
  9052. "files": [
  9053. ".nupkg.metadata",
  9054. ".signature.p7s",
  9055. "ThirdPartyNotices.txt",
  9056. "dotnet_library_license.txt",
  9057. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9058. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9059. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9060. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9061. "system.security.cryptography.openssl.nuspec"
  9062. ]
  9063. },
  9064. "System.Security.Cryptography.Primitives/4.3.0": {
  9065. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9066. "type": "package",
  9067. "path": "system.security.cryptography.primitives/4.3.0",
  9068. "files": [
  9069. ".nupkg.metadata",
  9070. ".signature.p7s",
  9071. "ThirdPartyNotices.txt",
  9072. "dotnet_library_license.txt",
  9073. "lib/MonoAndroid10/_._",
  9074. "lib/MonoTouch10/_._",
  9075. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9076. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9077. "lib/xamarinios10/_._",
  9078. "lib/xamarinmac20/_._",
  9079. "lib/xamarintvos10/_._",
  9080. "lib/xamarinwatchos10/_._",
  9081. "ref/MonoAndroid10/_._",
  9082. "ref/MonoTouch10/_._",
  9083. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9084. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9085. "ref/xamarinios10/_._",
  9086. "ref/xamarinmac20/_._",
  9087. "ref/xamarintvos10/_._",
  9088. "ref/xamarinwatchos10/_._",
  9089. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9090. "system.security.cryptography.primitives.nuspec"
  9091. ]
  9092. },
  9093. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9094. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9095. "type": "package",
  9096. "path": "system.security.cryptography.protecteddata/4.7.0",
  9097. "files": [
  9098. ".nupkg.metadata",
  9099. ".signature.p7s",
  9100. "LICENSE.TXT",
  9101. "THIRD-PARTY-NOTICES.TXT",
  9102. "lib/MonoAndroid10/_._",
  9103. "lib/MonoTouch10/_._",
  9104. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9105. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9106. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9107. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9108. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9109. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9110. "lib/xamarinios10/_._",
  9111. "lib/xamarinmac20/_._",
  9112. "lib/xamarintvos10/_._",
  9113. "lib/xamarinwatchos10/_._",
  9114. "ref/MonoAndroid10/_._",
  9115. "ref/MonoTouch10/_._",
  9116. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9117. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9118. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9119. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9120. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9121. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9122. "ref/xamarinios10/_._",
  9123. "ref/xamarinmac20/_._",
  9124. "ref/xamarintvos10/_._",
  9125. "ref/xamarinwatchos10/_._",
  9126. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9127. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9128. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9129. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9130. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9131. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9132. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9133. "system.security.cryptography.protecteddata.nuspec",
  9134. "useSharedDesignerContext.txt",
  9135. "version.txt"
  9136. ]
  9137. },
  9138. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9139. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9140. "type": "package",
  9141. "path": "system.security.cryptography.x509certificates/4.3.0",
  9142. "files": [
  9143. ".nupkg.metadata",
  9144. ".signature.p7s",
  9145. "ThirdPartyNotices.txt",
  9146. "dotnet_library_license.txt",
  9147. "lib/MonoAndroid10/_._",
  9148. "lib/MonoTouch10/_._",
  9149. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9150. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9151. "lib/xamarinios10/_._",
  9152. "lib/xamarinmac20/_._",
  9153. "lib/xamarintvos10/_._",
  9154. "lib/xamarinwatchos10/_._",
  9155. "ref/MonoAndroid10/_._",
  9156. "ref/MonoTouch10/_._",
  9157. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9158. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9159. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9160. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9161. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9162. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9163. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9164. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9165. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9166. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9167. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9168. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9169. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9170. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9171. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9172. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9173. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9174. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9175. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9176. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9177. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9178. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9179. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9180. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9181. "ref/xamarinios10/_._",
  9182. "ref/xamarinmac20/_._",
  9183. "ref/xamarintvos10/_._",
  9184. "ref/xamarinwatchos10/_._",
  9185. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9186. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9187. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9188. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9189. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9190. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9191. "system.security.cryptography.x509certificates.nuspec"
  9192. ]
  9193. },
  9194. "System.Security.Permissions/4.7.0": {
  9195. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9196. "type": "package",
  9197. "path": "system.security.permissions/4.7.0",
  9198. "files": [
  9199. ".nupkg.metadata",
  9200. ".signature.p7s",
  9201. "LICENSE.TXT",
  9202. "THIRD-PARTY-NOTICES.TXT",
  9203. "lib/net461/System.Security.Permissions.dll",
  9204. "lib/net461/System.Security.Permissions.xml",
  9205. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9206. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9207. "lib/netstandard2.0/System.Security.Permissions.dll",
  9208. "lib/netstandard2.0/System.Security.Permissions.xml",
  9209. "ref/net461/System.Security.Permissions.dll",
  9210. "ref/net461/System.Security.Permissions.xml",
  9211. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9212. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9213. "ref/netstandard2.0/System.Security.Permissions.dll",
  9214. "ref/netstandard2.0/System.Security.Permissions.xml",
  9215. "system.security.permissions.4.7.0.nupkg.sha512",
  9216. "system.security.permissions.nuspec",
  9217. "useSharedDesignerContext.txt",
  9218. "version.txt"
  9219. ]
  9220. },
  9221. "System.Security.Principal/4.3.0": {
  9222. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9223. "type": "package",
  9224. "path": "system.security.principal/4.3.0",
  9225. "files": [
  9226. ".nupkg.metadata",
  9227. ".signature.p7s",
  9228. "ThirdPartyNotices.txt",
  9229. "dotnet_library_license.txt",
  9230. "lib/MonoAndroid10/_._",
  9231. "lib/MonoTouch10/_._",
  9232. "lib/net45/_._",
  9233. "lib/netcore50/System.Security.Principal.dll",
  9234. "lib/netstandard1.0/System.Security.Principal.dll",
  9235. "lib/portable-net45+win8+wp8+wpa81/_._",
  9236. "lib/win8/_._",
  9237. "lib/wp80/_._",
  9238. "lib/wpa81/_._",
  9239. "lib/xamarinios10/_._",
  9240. "lib/xamarinmac20/_._",
  9241. "lib/xamarintvos10/_._",
  9242. "lib/xamarinwatchos10/_._",
  9243. "ref/MonoAndroid10/_._",
  9244. "ref/MonoTouch10/_._",
  9245. "ref/net45/_._",
  9246. "ref/netcore50/System.Security.Principal.dll",
  9247. "ref/netcore50/System.Security.Principal.xml",
  9248. "ref/netcore50/de/System.Security.Principal.xml",
  9249. "ref/netcore50/es/System.Security.Principal.xml",
  9250. "ref/netcore50/fr/System.Security.Principal.xml",
  9251. "ref/netcore50/it/System.Security.Principal.xml",
  9252. "ref/netcore50/ja/System.Security.Principal.xml",
  9253. "ref/netcore50/ko/System.Security.Principal.xml",
  9254. "ref/netcore50/ru/System.Security.Principal.xml",
  9255. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9256. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9257. "ref/netstandard1.0/System.Security.Principal.dll",
  9258. "ref/netstandard1.0/System.Security.Principal.xml",
  9259. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9260. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9261. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9262. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9263. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9264. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9265. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9266. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9267. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9268. "ref/portable-net45+win8+wp8+wpa81/_._",
  9269. "ref/win8/_._",
  9270. "ref/wp80/_._",
  9271. "ref/wpa81/_._",
  9272. "ref/xamarinios10/_._",
  9273. "ref/xamarinmac20/_._",
  9274. "ref/xamarintvos10/_._",
  9275. "ref/xamarinwatchos10/_._",
  9276. "system.security.principal.4.3.0.nupkg.sha512",
  9277. "system.security.principal.nuspec"
  9278. ]
  9279. },
  9280. "System.Security.Principal.Windows/4.7.0": {
  9281. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9282. "type": "package",
  9283. "path": "system.security.principal.windows/4.7.0",
  9284. "files": [
  9285. ".nupkg.metadata",
  9286. ".signature.p7s",
  9287. "LICENSE.TXT",
  9288. "THIRD-PARTY-NOTICES.TXT",
  9289. "lib/net46/System.Security.Principal.Windows.dll",
  9290. "lib/net461/System.Security.Principal.Windows.dll",
  9291. "lib/net461/System.Security.Principal.Windows.xml",
  9292. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9293. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9294. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9295. "lib/uap10.0.16299/_._",
  9296. "ref/net46/System.Security.Principal.Windows.dll",
  9297. "ref/net461/System.Security.Principal.Windows.dll",
  9298. "ref/net461/System.Security.Principal.Windows.xml",
  9299. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9300. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9301. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9302. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9303. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9304. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9305. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9306. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9307. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9308. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9309. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9310. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9311. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9312. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9313. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9314. "ref/uap10.0.16299/_._",
  9315. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9316. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9317. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9318. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9319. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9320. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9321. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9322. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9323. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9324. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9325. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9326. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9327. "runtimes/win/lib/uap10.0.16299/_._",
  9328. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9329. "system.security.principal.windows.nuspec",
  9330. "useSharedDesignerContext.txt",
  9331. "version.txt"
  9332. ]
  9333. },
  9334. "System.Text.Encoding/4.3.0": {
  9335. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9336. "type": "package",
  9337. "path": "system.text.encoding/4.3.0",
  9338. "files": [
  9339. ".nupkg.metadata",
  9340. ".signature.p7s",
  9341. "ThirdPartyNotices.txt",
  9342. "dotnet_library_license.txt",
  9343. "lib/MonoAndroid10/_._",
  9344. "lib/MonoTouch10/_._",
  9345. "lib/net45/_._",
  9346. "lib/portable-net45+win8+wp8+wpa81/_._",
  9347. "lib/win8/_._",
  9348. "lib/wp80/_._",
  9349. "lib/wpa81/_._",
  9350. "lib/xamarinios10/_._",
  9351. "lib/xamarinmac20/_._",
  9352. "lib/xamarintvos10/_._",
  9353. "lib/xamarinwatchos10/_._",
  9354. "ref/MonoAndroid10/_._",
  9355. "ref/MonoTouch10/_._",
  9356. "ref/net45/_._",
  9357. "ref/netcore50/System.Text.Encoding.dll",
  9358. "ref/netcore50/System.Text.Encoding.xml",
  9359. "ref/netcore50/de/System.Text.Encoding.xml",
  9360. "ref/netcore50/es/System.Text.Encoding.xml",
  9361. "ref/netcore50/fr/System.Text.Encoding.xml",
  9362. "ref/netcore50/it/System.Text.Encoding.xml",
  9363. "ref/netcore50/ja/System.Text.Encoding.xml",
  9364. "ref/netcore50/ko/System.Text.Encoding.xml",
  9365. "ref/netcore50/ru/System.Text.Encoding.xml",
  9366. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9367. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9368. "ref/netstandard1.0/System.Text.Encoding.dll",
  9369. "ref/netstandard1.0/System.Text.Encoding.xml",
  9370. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9371. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9372. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9373. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9374. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9375. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9376. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9377. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9378. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9379. "ref/netstandard1.3/System.Text.Encoding.dll",
  9380. "ref/netstandard1.3/System.Text.Encoding.xml",
  9381. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9382. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9383. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9384. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9385. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9386. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9387. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9388. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9389. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9390. "ref/portable-net45+win8+wp8+wpa81/_._",
  9391. "ref/win8/_._",
  9392. "ref/wp80/_._",
  9393. "ref/wpa81/_._",
  9394. "ref/xamarinios10/_._",
  9395. "ref/xamarinmac20/_._",
  9396. "ref/xamarintvos10/_._",
  9397. "ref/xamarinwatchos10/_._",
  9398. "system.text.encoding.4.3.0.nupkg.sha512",
  9399. "system.text.encoding.nuspec"
  9400. ]
  9401. },
  9402. "System.Text.Encoding.CodePages/5.0.0": {
  9403. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9404. "type": "package",
  9405. "path": "system.text.encoding.codepages/5.0.0",
  9406. "files": [
  9407. ".nupkg.metadata",
  9408. ".signature.p7s",
  9409. "Icon.png",
  9410. "LICENSE.TXT",
  9411. "THIRD-PARTY-NOTICES.TXT",
  9412. "lib/MonoAndroid10/_._",
  9413. "lib/MonoTouch10/_._",
  9414. "lib/net46/System.Text.Encoding.CodePages.dll",
  9415. "lib/net461/System.Text.Encoding.CodePages.dll",
  9416. "lib/net461/System.Text.Encoding.CodePages.xml",
  9417. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9418. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9419. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9420. "lib/xamarinios10/_._",
  9421. "lib/xamarinmac20/_._",
  9422. "lib/xamarintvos10/_._",
  9423. "lib/xamarinwatchos10/_._",
  9424. "ref/MonoAndroid10/_._",
  9425. "ref/MonoTouch10/_._",
  9426. "ref/xamarinios10/_._",
  9427. "ref/xamarinmac20/_._",
  9428. "ref/xamarintvos10/_._",
  9429. "ref/xamarinwatchos10/_._",
  9430. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9431. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9432. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9433. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9434. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9435. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9436. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9437. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9438. "system.text.encoding.codepages.nuspec",
  9439. "useSharedDesignerContext.txt",
  9440. "version.txt"
  9441. ]
  9442. },
  9443. "System.Text.Encoding.Extensions/4.3.0": {
  9444. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9445. "type": "package",
  9446. "path": "system.text.encoding.extensions/4.3.0",
  9447. "files": [
  9448. ".nupkg.metadata",
  9449. ".signature.p7s",
  9450. "ThirdPartyNotices.txt",
  9451. "dotnet_library_license.txt",
  9452. "lib/MonoAndroid10/_._",
  9453. "lib/MonoTouch10/_._",
  9454. "lib/net45/_._",
  9455. "lib/portable-net45+win8+wp8+wpa81/_._",
  9456. "lib/win8/_._",
  9457. "lib/wp80/_._",
  9458. "lib/wpa81/_._",
  9459. "lib/xamarinios10/_._",
  9460. "lib/xamarinmac20/_._",
  9461. "lib/xamarintvos10/_._",
  9462. "lib/xamarinwatchos10/_._",
  9463. "ref/MonoAndroid10/_._",
  9464. "ref/MonoTouch10/_._",
  9465. "ref/net45/_._",
  9466. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9467. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9468. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9469. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9470. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9471. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9472. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9473. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9474. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9475. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9476. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9477. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9478. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9479. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9480. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9481. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9482. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9483. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9484. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9485. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9486. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9487. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9488. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9489. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9490. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9491. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9492. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9493. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9494. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9495. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9496. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9497. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9498. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9499. "ref/portable-net45+win8+wp8+wpa81/_._",
  9500. "ref/win8/_._",
  9501. "ref/wp80/_._",
  9502. "ref/wpa81/_._",
  9503. "ref/xamarinios10/_._",
  9504. "ref/xamarinmac20/_._",
  9505. "ref/xamarintvos10/_._",
  9506. "ref/xamarinwatchos10/_._",
  9507. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9508. "system.text.encoding.extensions.nuspec"
  9509. ]
  9510. },
  9511. "System.Text.Encodings.Web/8.0.0": {
  9512. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  9513. "type": "package",
  9514. "path": "system.text.encodings.web/8.0.0",
  9515. "files": [
  9516. ".nupkg.metadata",
  9517. ".signature.p7s",
  9518. "Icon.png",
  9519. "LICENSE.TXT",
  9520. "THIRD-PARTY-NOTICES.TXT",
  9521. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  9522. "buildTransitive/net462/_._",
  9523. "buildTransitive/net6.0/_._",
  9524. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  9525. "lib/net462/System.Text.Encodings.Web.dll",
  9526. "lib/net462/System.Text.Encodings.Web.xml",
  9527. "lib/net6.0/System.Text.Encodings.Web.dll",
  9528. "lib/net6.0/System.Text.Encodings.Web.xml",
  9529. "lib/net7.0/System.Text.Encodings.Web.dll",
  9530. "lib/net7.0/System.Text.Encodings.Web.xml",
  9531. "lib/net8.0/System.Text.Encodings.Web.dll",
  9532. "lib/net8.0/System.Text.Encodings.Web.xml",
  9533. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9534. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9535. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  9536. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  9537. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  9538. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  9539. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  9540. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  9541. "system.text.encodings.web.8.0.0.nupkg.sha512",
  9542. "system.text.encodings.web.nuspec",
  9543. "useSharedDesignerContext.txt"
  9544. ]
  9545. },
  9546. "System.Text.Json/8.0.5": {
  9547. "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
  9548. "type": "package",
  9549. "path": "system.text.json/8.0.5",
  9550. "files": [
  9551. ".nupkg.metadata",
  9552. ".signature.p7s",
  9553. "Icon.png",
  9554. "LICENSE.TXT",
  9555. "PACKAGE.md",
  9556. "THIRD-PARTY-NOTICES.TXT",
  9557. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  9558. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9559. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9560. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9561. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9562. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9563. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9564. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9565. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9566. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9567. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9568. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9569. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9570. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9571. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  9572. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9573. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9574. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9575. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9576. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9577. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9578. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9579. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9580. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9581. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9582. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9583. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9584. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9585. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  9586. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9587. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9588. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9589. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9590. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9591. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9592. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9593. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9594. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9595. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9596. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9597. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9598. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9599. "buildTransitive/net461/System.Text.Json.targets",
  9600. "buildTransitive/net462/System.Text.Json.targets",
  9601. "buildTransitive/net6.0/System.Text.Json.targets",
  9602. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  9603. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  9604. "lib/net462/System.Text.Json.dll",
  9605. "lib/net462/System.Text.Json.xml",
  9606. "lib/net6.0/System.Text.Json.dll",
  9607. "lib/net6.0/System.Text.Json.xml",
  9608. "lib/net7.0/System.Text.Json.dll",
  9609. "lib/net7.0/System.Text.Json.xml",
  9610. "lib/net8.0/System.Text.Json.dll",
  9611. "lib/net8.0/System.Text.Json.xml",
  9612. "lib/netstandard2.0/System.Text.Json.dll",
  9613. "lib/netstandard2.0/System.Text.Json.xml",
  9614. "system.text.json.8.0.5.nupkg.sha512",
  9615. "system.text.json.nuspec",
  9616. "useSharedDesignerContext.txt"
  9617. ]
  9618. },
  9619. "System.Text.RegularExpressions/4.3.0": {
  9620. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9621. "type": "package",
  9622. "path": "system.text.regularexpressions/4.3.0",
  9623. "files": [
  9624. ".nupkg.metadata",
  9625. ".signature.p7s",
  9626. "ThirdPartyNotices.txt",
  9627. "dotnet_library_license.txt",
  9628. "lib/MonoAndroid10/_._",
  9629. "lib/MonoTouch10/_._",
  9630. "lib/net45/_._",
  9631. "lib/net463/System.Text.RegularExpressions.dll",
  9632. "lib/netcore50/System.Text.RegularExpressions.dll",
  9633. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9634. "lib/portable-net45+win8+wp8+wpa81/_._",
  9635. "lib/win8/_._",
  9636. "lib/wp80/_._",
  9637. "lib/wpa81/_._",
  9638. "lib/xamarinios10/_._",
  9639. "lib/xamarinmac20/_._",
  9640. "lib/xamarintvos10/_._",
  9641. "lib/xamarinwatchos10/_._",
  9642. "ref/MonoAndroid10/_._",
  9643. "ref/MonoTouch10/_._",
  9644. "ref/net45/_._",
  9645. "ref/net463/System.Text.RegularExpressions.dll",
  9646. "ref/netcore50/System.Text.RegularExpressions.dll",
  9647. "ref/netcore50/System.Text.RegularExpressions.xml",
  9648. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9649. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9650. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9651. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9652. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9653. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9654. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9655. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9656. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9657. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9658. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9659. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9660. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9661. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9662. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9663. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9664. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9665. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9666. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9667. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9668. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9669. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9670. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9671. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9672. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9673. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9674. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9675. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9676. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9677. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9678. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9679. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9680. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9681. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9682. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9683. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9684. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9685. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9686. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9687. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9688. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9689. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9690. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9691. "ref/portable-net45+win8+wp8+wpa81/_._",
  9692. "ref/win8/_._",
  9693. "ref/wp80/_._",
  9694. "ref/wpa81/_._",
  9695. "ref/xamarinios10/_._",
  9696. "ref/xamarinmac20/_._",
  9697. "ref/xamarintvos10/_._",
  9698. "ref/xamarinwatchos10/_._",
  9699. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9700. "system.text.regularexpressions.nuspec"
  9701. ]
  9702. },
  9703. "System.Threading/4.3.0": {
  9704. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9705. "type": "package",
  9706. "path": "system.threading/4.3.0",
  9707. "files": [
  9708. ".nupkg.metadata",
  9709. ".signature.p7s",
  9710. "ThirdPartyNotices.txt",
  9711. "dotnet_library_license.txt",
  9712. "lib/MonoAndroid10/_._",
  9713. "lib/MonoTouch10/_._",
  9714. "lib/net45/_._",
  9715. "lib/netcore50/System.Threading.dll",
  9716. "lib/netstandard1.3/System.Threading.dll",
  9717. "lib/portable-net45+win8+wp8+wpa81/_._",
  9718. "lib/win8/_._",
  9719. "lib/wp80/_._",
  9720. "lib/wpa81/_._",
  9721. "lib/xamarinios10/_._",
  9722. "lib/xamarinmac20/_._",
  9723. "lib/xamarintvos10/_._",
  9724. "lib/xamarinwatchos10/_._",
  9725. "ref/MonoAndroid10/_._",
  9726. "ref/MonoTouch10/_._",
  9727. "ref/net45/_._",
  9728. "ref/netcore50/System.Threading.dll",
  9729. "ref/netcore50/System.Threading.xml",
  9730. "ref/netcore50/de/System.Threading.xml",
  9731. "ref/netcore50/es/System.Threading.xml",
  9732. "ref/netcore50/fr/System.Threading.xml",
  9733. "ref/netcore50/it/System.Threading.xml",
  9734. "ref/netcore50/ja/System.Threading.xml",
  9735. "ref/netcore50/ko/System.Threading.xml",
  9736. "ref/netcore50/ru/System.Threading.xml",
  9737. "ref/netcore50/zh-hans/System.Threading.xml",
  9738. "ref/netcore50/zh-hant/System.Threading.xml",
  9739. "ref/netstandard1.0/System.Threading.dll",
  9740. "ref/netstandard1.0/System.Threading.xml",
  9741. "ref/netstandard1.0/de/System.Threading.xml",
  9742. "ref/netstandard1.0/es/System.Threading.xml",
  9743. "ref/netstandard1.0/fr/System.Threading.xml",
  9744. "ref/netstandard1.0/it/System.Threading.xml",
  9745. "ref/netstandard1.0/ja/System.Threading.xml",
  9746. "ref/netstandard1.0/ko/System.Threading.xml",
  9747. "ref/netstandard1.0/ru/System.Threading.xml",
  9748. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9749. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9750. "ref/netstandard1.3/System.Threading.dll",
  9751. "ref/netstandard1.3/System.Threading.xml",
  9752. "ref/netstandard1.3/de/System.Threading.xml",
  9753. "ref/netstandard1.3/es/System.Threading.xml",
  9754. "ref/netstandard1.3/fr/System.Threading.xml",
  9755. "ref/netstandard1.3/it/System.Threading.xml",
  9756. "ref/netstandard1.3/ja/System.Threading.xml",
  9757. "ref/netstandard1.3/ko/System.Threading.xml",
  9758. "ref/netstandard1.3/ru/System.Threading.xml",
  9759. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9760. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9761. "ref/portable-net45+win8+wp8+wpa81/_._",
  9762. "ref/win8/_._",
  9763. "ref/wp80/_._",
  9764. "ref/wpa81/_._",
  9765. "ref/xamarinios10/_._",
  9766. "ref/xamarinmac20/_._",
  9767. "ref/xamarintvos10/_._",
  9768. "ref/xamarinwatchos10/_._",
  9769. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9770. "system.threading.4.3.0.nupkg.sha512",
  9771. "system.threading.nuspec"
  9772. ]
  9773. },
  9774. "System.Threading.Channels/7.0.0": {
  9775. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9776. "type": "package",
  9777. "path": "system.threading.channels/7.0.0",
  9778. "files": [
  9779. ".nupkg.metadata",
  9780. ".signature.p7s",
  9781. "Icon.png",
  9782. "LICENSE.TXT",
  9783. "THIRD-PARTY-NOTICES.TXT",
  9784. "buildTransitive/net461/System.Threading.Channels.targets",
  9785. "buildTransitive/net462/_._",
  9786. "buildTransitive/net6.0/_._",
  9787. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9788. "lib/net462/System.Threading.Channels.dll",
  9789. "lib/net462/System.Threading.Channels.xml",
  9790. "lib/net6.0/System.Threading.Channels.dll",
  9791. "lib/net6.0/System.Threading.Channels.xml",
  9792. "lib/net7.0/System.Threading.Channels.dll",
  9793. "lib/net7.0/System.Threading.Channels.xml",
  9794. "lib/netstandard2.0/System.Threading.Channels.dll",
  9795. "lib/netstandard2.0/System.Threading.Channels.xml",
  9796. "lib/netstandard2.1/System.Threading.Channels.dll",
  9797. "lib/netstandard2.1/System.Threading.Channels.xml",
  9798. "system.threading.channels.7.0.0.nupkg.sha512",
  9799. "system.threading.channels.nuspec",
  9800. "useSharedDesignerContext.txt"
  9801. ]
  9802. },
  9803. "System.Threading.Tasks/4.3.0": {
  9804. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9805. "type": "package",
  9806. "path": "system.threading.tasks/4.3.0",
  9807. "files": [
  9808. ".nupkg.metadata",
  9809. ".signature.p7s",
  9810. "ThirdPartyNotices.txt",
  9811. "dotnet_library_license.txt",
  9812. "lib/MonoAndroid10/_._",
  9813. "lib/MonoTouch10/_._",
  9814. "lib/net45/_._",
  9815. "lib/portable-net45+win8+wp8+wpa81/_._",
  9816. "lib/win8/_._",
  9817. "lib/wp80/_._",
  9818. "lib/wpa81/_._",
  9819. "lib/xamarinios10/_._",
  9820. "lib/xamarinmac20/_._",
  9821. "lib/xamarintvos10/_._",
  9822. "lib/xamarinwatchos10/_._",
  9823. "ref/MonoAndroid10/_._",
  9824. "ref/MonoTouch10/_._",
  9825. "ref/net45/_._",
  9826. "ref/netcore50/System.Threading.Tasks.dll",
  9827. "ref/netcore50/System.Threading.Tasks.xml",
  9828. "ref/netcore50/de/System.Threading.Tasks.xml",
  9829. "ref/netcore50/es/System.Threading.Tasks.xml",
  9830. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9831. "ref/netcore50/it/System.Threading.Tasks.xml",
  9832. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9833. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9834. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9835. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9836. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9837. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9838. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9839. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9840. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9841. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9842. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9843. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9844. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9845. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9846. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9847. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9848. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9849. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9850. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9851. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9852. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9853. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9854. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9855. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9856. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9857. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9858. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9859. "ref/portable-net45+win8+wp8+wpa81/_._",
  9860. "ref/win8/_._",
  9861. "ref/wp80/_._",
  9862. "ref/wpa81/_._",
  9863. "ref/xamarinios10/_._",
  9864. "ref/xamarinmac20/_._",
  9865. "ref/xamarintvos10/_._",
  9866. "ref/xamarinwatchos10/_._",
  9867. "system.threading.tasks.4.3.0.nupkg.sha512",
  9868. "system.threading.tasks.nuspec"
  9869. ]
  9870. },
  9871. "System.Threading.Tasks.Extensions/4.5.4": {
  9872. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  9873. "type": "package",
  9874. "path": "system.threading.tasks.extensions/4.5.4",
  9875. "files": [
  9876. ".nupkg.metadata",
  9877. ".signature.p7s",
  9878. "LICENSE.TXT",
  9879. "THIRD-PARTY-NOTICES.TXT",
  9880. "lib/MonoAndroid10/_._",
  9881. "lib/MonoTouch10/_._",
  9882. "lib/net461/System.Threading.Tasks.Extensions.dll",
  9883. "lib/net461/System.Threading.Tasks.Extensions.xml",
  9884. "lib/netcoreapp2.1/_._",
  9885. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9886. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9887. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9888. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9889. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9890. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9891. "lib/xamarinios10/_._",
  9892. "lib/xamarinmac20/_._",
  9893. "lib/xamarintvos10/_._",
  9894. "lib/xamarinwatchos10/_._",
  9895. "ref/MonoAndroid10/_._",
  9896. "ref/MonoTouch10/_._",
  9897. "ref/netcoreapp2.1/_._",
  9898. "ref/xamarinios10/_._",
  9899. "ref/xamarinmac20/_._",
  9900. "ref/xamarintvos10/_._",
  9901. "ref/xamarinwatchos10/_._",
  9902. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  9903. "system.threading.tasks.extensions.nuspec",
  9904. "useSharedDesignerContext.txt",
  9905. "version.txt"
  9906. ]
  9907. },
  9908. "System.Threading.Thread/4.3.0": {
  9909. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9910. "type": "package",
  9911. "path": "system.threading.thread/4.3.0",
  9912. "files": [
  9913. ".nupkg.metadata",
  9914. ".signature.p7s",
  9915. "ThirdPartyNotices.txt",
  9916. "dotnet_library_license.txt",
  9917. "lib/MonoAndroid10/_._",
  9918. "lib/MonoTouch10/_._",
  9919. "lib/net46/System.Threading.Thread.dll",
  9920. "lib/netcore50/_._",
  9921. "lib/netstandard1.3/System.Threading.Thread.dll",
  9922. "lib/xamarinios10/_._",
  9923. "lib/xamarinmac20/_._",
  9924. "lib/xamarintvos10/_._",
  9925. "lib/xamarinwatchos10/_._",
  9926. "ref/MonoAndroid10/_._",
  9927. "ref/MonoTouch10/_._",
  9928. "ref/net46/System.Threading.Thread.dll",
  9929. "ref/netstandard1.3/System.Threading.Thread.dll",
  9930. "ref/netstandard1.3/System.Threading.Thread.xml",
  9931. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9932. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9933. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9934. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9935. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9936. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9937. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9938. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9939. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9940. "ref/xamarinios10/_._",
  9941. "ref/xamarinmac20/_._",
  9942. "ref/xamarintvos10/_._",
  9943. "ref/xamarinwatchos10/_._",
  9944. "system.threading.thread.4.3.0.nupkg.sha512",
  9945. "system.threading.thread.nuspec"
  9946. ]
  9947. },
  9948. "System.Threading.ThreadPool/4.3.0": {
  9949. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9950. "type": "package",
  9951. "path": "system.threading.threadpool/4.3.0",
  9952. "files": [
  9953. ".nupkg.metadata",
  9954. ".signature.p7s",
  9955. "ThirdPartyNotices.txt",
  9956. "dotnet_library_license.txt",
  9957. "lib/MonoAndroid10/_._",
  9958. "lib/MonoTouch10/_._",
  9959. "lib/net46/System.Threading.ThreadPool.dll",
  9960. "lib/netcore50/_._",
  9961. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9962. "lib/xamarinios10/_._",
  9963. "lib/xamarinmac20/_._",
  9964. "lib/xamarintvos10/_._",
  9965. "lib/xamarinwatchos10/_._",
  9966. "ref/MonoAndroid10/_._",
  9967. "ref/MonoTouch10/_._",
  9968. "ref/net46/System.Threading.ThreadPool.dll",
  9969. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9970. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9971. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9972. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9973. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9974. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9975. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9976. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9977. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9978. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9979. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9980. "ref/xamarinios10/_._",
  9981. "ref/xamarinmac20/_._",
  9982. "ref/xamarintvos10/_._",
  9983. "ref/xamarinwatchos10/_._",
  9984. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9985. "system.threading.threadpool.nuspec"
  9986. ]
  9987. },
  9988. "System.Threading.Timer/4.3.0": {
  9989. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9990. "type": "package",
  9991. "path": "system.threading.timer/4.3.0",
  9992. "files": [
  9993. ".nupkg.metadata",
  9994. ".signature.p7s",
  9995. "ThirdPartyNotices.txt",
  9996. "dotnet_library_license.txt",
  9997. "lib/MonoAndroid10/_._",
  9998. "lib/MonoTouch10/_._",
  9999. "lib/net451/_._",
  10000. "lib/portable-net451+win81+wpa81/_._",
  10001. "lib/win81/_._",
  10002. "lib/wpa81/_._",
  10003. "lib/xamarinios10/_._",
  10004. "lib/xamarinmac20/_._",
  10005. "lib/xamarintvos10/_._",
  10006. "lib/xamarinwatchos10/_._",
  10007. "ref/MonoAndroid10/_._",
  10008. "ref/MonoTouch10/_._",
  10009. "ref/net451/_._",
  10010. "ref/netcore50/System.Threading.Timer.dll",
  10011. "ref/netcore50/System.Threading.Timer.xml",
  10012. "ref/netcore50/de/System.Threading.Timer.xml",
  10013. "ref/netcore50/es/System.Threading.Timer.xml",
  10014. "ref/netcore50/fr/System.Threading.Timer.xml",
  10015. "ref/netcore50/it/System.Threading.Timer.xml",
  10016. "ref/netcore50/ja/System.Threading.Timer.xml",
  10017. "ref/netcore50/ko/System.Threading.Timer.xml",
  10018. "ref/netcore50/ru/System.Threading.Timer.xml",
  10019. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10020. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10021. "ref/netstandard1.2/System.Threading.Timer.dll",
  10022. "ref/netstandard1.2/System.Threading.Timer.xml",
  10023. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10024. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10025. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10026. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10027. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10028. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10029. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10030. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10031. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10032. "ref/portable-net451+win81+wpa81/_._",
  10033. "ref/win81/_._",
  10034. "ref/wpa81/_._",
  10035. "ref/xamarinios10/_._",
  10036. "ref/xamarinmac20/_._",
  10037. "ref/xamarintvos10/_._",
  10038. "ref/xamarinwatchos10/_._",
  10039. "system.threading.timer.4.3.0.nupkg.sha512",
  10040. "system.threading.timer.nuspec"
  10041. ]
  10042. },
  10043. "System.Windows.Extensions/4.7.0": {
  10044. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  10045. "type": "package",
  10046. "path": "system.windows.extensions/4.7.0",
  10047. "files": [
  10048. ".nupkg.metadata",
  10049. ".signature.p7s",
  10050. "LICENSE.TXT",
  10051. "THIRD-PARTY-NOTICES.TXT",
  10052. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10053. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10054. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  10055. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  10056. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10057. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10058. "system.windows.extensions.4.7.0.nupkg.sha512",
  10059. "system.windows.extensions.nuspec",
  10060. "useSharedDesignerContext.txt",
  10061. "version.txt"
  10062. ]
  10063. },
  10064. "System.Xml.ReaderWriter/4.3.0": {
  10065. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10066. "type": "package",
  10067. "path": "system.xml.readerwriter/4.3.0",
  10068. "files": [
  10069. ".nupkg.metadata",
  10070. ".signature.p7s",
  10071. "ThirdPartyNotices.txt",
  10072. "dotnet_library_license.txt",
  10073. "lib/MonoAndroid10/_._",
  10074. "lib/MonoTouch10/_._",
  10075. "lib/net45/_._",
  10076. "lib/net46/System.Xml.ReaderWriter.dll",
  10077. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10078. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10079. "lib/portable-net45+win8+wp8+wpa81/_._",
  10080. "lib/win8/_._",
  10081. "lib/wp80/_._",
  10082. "lib/wpa81/_._",
  10083. "lib/xamarinios10/_._",
  10084. "lib/xamarinmac20/_._",
  10085. "lib/xamarintvos10/_._",
  10086. "lib/xamarinwatchos10/_._",
  10087. "ref/MonoAndroid10/_._",
  10088. "ref/MonoTouch10/_._",
  10089. "ref/net45/_._",
  10090. "ref/net46/System.Xml.ReaderWriter.dll",
  10091. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10092. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10093. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10094. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10095. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10096. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10097. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10098. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10099. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10100. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10101. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10102. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10103. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10104. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10105. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10106. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10107. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10108. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10109. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10110. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10111. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10112. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10113. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10114. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10115. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10116. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10117. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10118. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10119. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10120. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10121. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10122. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10123. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10124. "ref/portable-net45+win8+wp8+wpa81/_._",
  10125. "ref/win8/_._",
  10126. "ref/wp80/_._",
  10127. "ref/wpa81/_._",
  10128. "ref/xamarinios10/_._",
  10129. "ref/xamarinmac20/_._",
  10130. "ref/xamarintvos10/_._",
  10131. "ref/xamarinwatchos10/_._",
  10132. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10133. "system.xml.readerwriter.nuspec"
  10134. ]
  10135. },
  10136. "System.Xml.XDocument/4.3.0": {
  10137. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10138. "type": "package",
  10139. "path": "system.xml.xdocument/4.3.0",
  10140. "files": [
  10141. ".nupkg.metadata",
  10142. ".signature.p7s",
  10143. "ThirdPartyNotices.txt",
  10144. "dotnet_library_license.txt",
  10145. "lib/MonoAndroid10/_._",
  10146. "lib/MonoTouch10/_._",
  10147. "lib/net45/_._",
  10148. "lib/netcore50/System.Xml.XDocument.dll",
  10149. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10150. "lib/portable-net45+win8+wp8+wpa81/_._",
  10151. "lib/win8/_._",
  10152. "lib/wp80/_._",
  10153. "lib/wpa81/_._",
  10154. "lib/xamarinios10/_._",
  10155. "lib/xamarinmac20/_._",
  10156. "lib/xamarintvos10/_._",
  10157. "lib/xamarinwatchos10/_._",
  10158. "ref/MonoAndroid10/_._",
  10159. "ref/MonoTouch10/_._",
  10160. "ref/net45/_._",
  10161. "ref/netcore50/System.Xml.XDocument.dll",
  10162. "ref/netcore50/System.Xml.XDocument.xml",
  10163. "ref/netcore50/de/System.Xml.XDocument.xml",
  10164. "ref/netcore50/es/System.Xml.XDocument.xml",
  10165. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10166. "ref/netcore50/it/System.Xml.XDocument.xml",
  10167. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10168. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10169. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10170. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10171. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10172. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10173. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10174. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10175. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10176. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10177. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10178. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10179. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10180. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10181. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10182. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10183. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10184. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10185. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10186. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10187. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10188. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10189. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10190. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10191. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10192. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10193. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10194. "ref/portable-net45+win8+wp8+wpa81/_._",
  10195. "ref/win8/_._",
  10196. "ref/wp80/_._",
  10197. "ref/wpa81/_._",
  10198. "ref/xamarinios10/_._",
  10199. "ref/xamarinmac20/_._",
  10200. "ref/xamarintvos10/_._",
  10201. "ref/xamarinwatchos10/_._",
  10202. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10203. "system.xml.xdocument.nuspec"
  10204. ]
  10205. },
  10206. "System.Xml.XmlDocument/4.3.0": {
  10207. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10208. "type": "package",
  10209. "path": "system.xml.xmldocument/4.3.0",
  10210. "files": [
  10211. ".nupkg.metadata",
  10212. ".signature.p7s",
  10213. "ThirdPartyNotices.txt",
  10214. "dotnet_library_license.txt",
  10215. "lib/MonoAndroid10/_._",
  10216. "lib/MonoTouch10/_._",
  10217. "lib/net46/System.Xml.XmlDocument.dll",
  10218. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10219. "lib/xamarinios10/_._",
  10220. "lib/xamarinmac20/_._",
  10221. "lib/xamarintvos10/_._",
  10222. "lib/xamarinwatchos10/_._",
  10223. "ref/MonoAndroid10/_._",
  10224. "ref/MonoTouch10/_._",
  10225. "ref/net46/System.Xml.XmlDocument.dll",
  10226. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10227. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10228. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10229. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10230. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10231. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10232. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10233. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10234. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10235. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10236. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10237. "ref/xamarinios10/_._",
  10238. "ref/xamarinmac20/_._",
  10239. "ref/xamarintvos10/_._",
  10240. "ref/xamarinwatchos10/_._",
  10241. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10242. "system.xml.xmldocument.nuspec"
  10243. ]
  10244. },
  10245. "ZXing.Net/0.16.9": {
  10246. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10247. "type": "package",
  10248. "path": "zxing.net/0.16.9",
  10249. "files": [
  10250. ".nupkg.metadata",
  10251. ".signature.p7s",
  10252. "lib/native/zxing.XML",
  10253. "lib/native/zxing.pri",
  10254. "lib/native/zxing.winmd",
  10255. "lib/net20-cf/zxing.ce2.0.dll",
  10256. "lib/net20-cf/zxing.ce2.0.xml",
  10257. "lib/net20/zxing.XML",
  10258. "lib/net20/zxing.dll",
  10259. "lib/net35-cf/zxing.ce3.5.dll",
  10260. "lib/net35-cf/zxing.ce3.5.xml",
  10261. "lib/net35/zxing.XML",
  10262. "lib/net35/zxing.dll",
  10263. "lib/net40/zxing.XML",
  10264. "lib/net40/zxing.dll",
  10265. "lib/net40/zxing.presentation.XML",
  10266. "lib/net40/zxing.presentation.dll",
  10267. "lib/net45/zxing.XML",
  10268. "lib/net45/zxing.dll",
  10269. "lib/net45/zxing.presentation.XML",
  10270. "lib/net45/zxing.presentation.dll",
  10271. "lib/net461/zxing.XML",
  10272. "lib/net461/zxing.dll",
  10273. "lib/net461/zxing.presentation.XML",
  10274. "lib/net461/zxing.presentation.dll",
  10275. "lib/net47/zxing.XML",
  10276. "lib/net47/zxing.dll",
  10277. "lib/net47/zxing.presentation.XML",
  10278. "lib/net47/zxing.presentation.dll",
  10279. "lib/net48/zxing.XML",
  10280. "lib/net48/zxing.dll",
  10281. "lib/net48/zxing.presentation.XML",
  10282. "lib/net48/zxing.presentation.dll",
  10283. "lib/net5.0/zxing.XML",
  10284. "lib/net5.0/zxing.dll",
  10285. "lib/net6.0/zxing.XML",
  10286. "lib/net6.0/zxing.dll",
  10287. "lib/net7.0/zxing.XML",
  10288. "lib/net7.0/zxing.dll",
  10289. "lib/netcoreapp3.0/zxing.dll",
  10290. "lib/netcoreapp3.0/zxing.xml",
  10291. "lib/netcoreapp3.1/zxing.dll",
  10292. "lib/netcoreapp3.1/zxing.xml",
  10293. "lib/netstandard1.0/zxing.dll",
  10294. "lib/netstandard1.0/zxing.xml",
  10295. "lib/netstandard1.1/zxing.dll",
  10296. "lib/netstandard1.1/zxing.xml",
  10297. "lib/netstandard1.3/zxing.dll",
  10298. "lib/netstandard1.3/zxing.xml",
  10299. "lib/netstandard2.0/zxing.dll",
  10300. "lib/netstandard2.0/zxing.xml",
  10301. "lib/netstandard2.1/zxing.dll",
  10302. "lib/netstandard2.1/zxing.xml",
  10303. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10304. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10305. "lib/sl3-wp/zxing.wp7.0.XML",
  10306. "lib/sl3-wp/zxing.wp7.0.dll",
  10307. "lib/sl4-wp71/zxing.wp7.1.XML",
  10308. "lib/sl4-wp71/zxing.wp7.1.dll",
  10309. "lib/sl4/zxing.sl4.XML",
  10310. "lib/sl4/zxing.sl4.dll",
  10311. "lib/sl5/zxing.sl5.XML",
  10312. "lib/sl5/zxing.sl5.dll",
  10313. "lib/uap10/zxing.dll",
  10314. "lib/uap10/zxing.pri",
  10315. "lib/uap10/zxing.xml",
  10316. "lib/windows8-managed/zxing.winrt.XML",
  10317. "lib/windows8-managed/zxing.winrt.dll",
  10318. "lib/windows8/zxing.XML",
  10319. "lib/windows8/zxing.pri",
  10320. "lib/windows8/zxing.winmd",
  10321. "lib/wp8/zxing.wp8.0.XML",
  10322. "lib/wp8/zxing.wp8.0.dll",
  10323. "logo.jpg",
  10324. "zxing.net.0.16.9.nupkg.sha512",
  10325. "zxing.net.nuspec"
  10326. ]
  10327. },
  10328. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10329. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10330. "type": "package",
  10331. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10332. "files": [
  10333. ".nupkg.metadata",
  10334. ".signature.p7s",
  10335. "lib/net472/ZXing.ImageSharp.V2.dll",
  10336. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10337. "lib/net472/ZXing.ImageSharp.V2.xml",
  10338. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10339. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10340. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10341. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10342. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10343. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10344. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10345. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10346. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10347. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10348. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10349. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10350. "logo.jpg",
  10351. "readme.md",
  10352. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10353. "zxing.net.bindings.imagesharp.v2.nuspec"
  10354. ]
  10355. },
  10356. "Ropin.Core.Common/1.0.0": {
  10357. "type": "project",
  10358. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10359. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10360. },
  10361. "Ropin.Core.Extensions/1.0.0": {
  10362. "type": "project",
  10363. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10364. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10365. },
  10366. "Ropin.Inspection.Common/1.0.0": {
  10367. "type": "project",
  10368. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10369. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10370. },
  10371. "Ropin.Inspection.Model/1.0.0": {
  10372. "type": "project",
  10373. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10374. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10375. },
  10376. "Ropin.Inspection.Repository/1.0.0": {
  10377. "type": "project",
  10378. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10379. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10380. },
  10381. "Ropin.Inspection.Service/1.0.0": {
  10382. "type": "project",
  10383. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10384. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10385. },
  10386. "Ropin.Inspection.Tasks/1.0.0": {
  10387. "type": "project",
  10388. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10389. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10390. }
  10391. },
  10392. "projectFileDependencyGroups": {
  10393. "net5.0": [
  10394. "AutoMapper >= 10.1.1",
  10395. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  10396. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10397. "FBoxClientDriver >= 1.2.0",
  10398. "FBoxClientDriver.Contract >= 1.2.0",
  10399. "InfluxData.Net >= 8.0.1",
  10400. "InitQ >= 1.0.0.14",
  10401. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  10402. "RabbitMQ.Client >= 6.8.1",
  10403. "Ropin.Core.Common >= 1.0.0",
  10404. "Ropin.Core.Extensions >= 1.0.0",
  10405. "Ropin.Inspection.Common >= 1.0.0",
  10406. "Ropin.Inspection.Model >= 1.0.0",
  10407. "Ropin.Inspection.Service >= 1.0.0",
  10408. "Swashbuckle.AspNetCore >= 5.6.3",
  10409. "System.IdentityModel.Tokens.Jwt >= 8.6.0",
  10410. "log4net >= 2.0.17"
  10411. ]
  10412. },
  10413. "packageFolders": {
  10414. "D:\\.nuget\\packages": {},
  10415. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10416. },
  10417. "project": {
  10418. "version": "1.0.0",
  10419. "restore": {
  10420. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  10421. "projectName": "Ropin.Environmentally.AlarmService",
  10422. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  10423. "packagesPath": "D:\\.nuget\\packages",
  10424. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\obj\\",
  10425. "projectStyle": "PackageReference",
  10426. "fallbackFolders": [
  10427. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10428. ],
  10429. "configFilePaths": [
  10430. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10431. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10432. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10433. ],
  10434. "originalTargetFrameworks": [
  10435. "net5.0"
  10436. ],
  10437. "sources": {
  10438. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10439. "C:\\Program Files\\dotnet\\library-packs": {},
  10440. "https://api.nuget.org/v3/index.json": {}
  10441. },
  10442. "frameworks": {
  10443. "net5.0": {
  10444. "targetAlias": "net5.0",
  10445. "projectReferences": {
  10446. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  10447. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  10448. },
  10449. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10450. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10451. },
  10452. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10453. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10454. },
  10455. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10456. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10457. },
  10458. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  10459. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  10460. }
  10461. }
  10462. }
  10463. },
  10464. "warningProperties": {
  10465. "warnAsError": [
  10466. "NU1605"
  10467. ]
  10468. }
  10469. },
  10470. "frameworks": {
  10471. "net5.0": {
  10472. "targetAlias": "net5.0",
  10473. "dependencies": {
  10474. "AutoMapper": {
  10475. "target": "Package",
  10476. "version": "[10.1.1, )"
  10477. },
  10478. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  10479. "target": "Package",
  10480. "version": "[8.1.1, )"
  10481. },
  10482. "Autofac.Extensions.DependencyInjection": {
  10483. "target": "Package",
  10484. "version": "[7.1.0, )"
  10485. },
  10486. "FBoxClientDriver": {
  10487. "target": "Package",
  10488. "version": "[1.2.0, )"
  10489. },
  10490. "FBoxClientDriver.Contract": {
  10491. "target": "Package",
  10492. "version": "[1.2.0, )"
  10493. },
  10494. "InfluxData.Net": {
  10495. "target": "Package",
  10496. "version": "[8.0.1, )"
  10497. },
  10498. "InitQ": {
  10499. "target": "Package",
  10500. "version": "[1.0.0.14, )"
  10501. },
  10502. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10503. "target": "Package",
  10504. "version": "[1.17.2, )"
  10505. },
  10506. "RabbitMQ.Client": {
  10507. "target": "Package",
  10508. "version": "[6.8.1, )"
  10509. },
  10510. "Swashbuckle.AspNetCore": {
  10511. "target": "Package",
  10512. "version": "[5.6.3, )"
  10513. },
  10514. "System.IdentityModel.Tokens.Jwt": {
  10515. "target": "Package",
  10516. "version": "[8.6.0, )"
  10517. },
  10518. "log4net": {
  10519. "target": "Package",
  10520. "version": "[2.0.17, )"
  10521. }
  10522. },
  10523. "imports": [
  10524. "net461",
  10525. "net462",
  10526. "net47",
  10527. "net471",
  10528. "net472",
  10529. "net48",
  10530. "net481"
  10531. ],
  10532. "assetTargetFallback": true,
  10533. "warn": true,
  10534. "frameworkReferences": {
  10535. "Microsoft.AspNetCore.App": {
  10536. "privateAssets": "none"
  10537. },
  10538. "Microsoft.NETCore.App": {
  10539. "privateAssets": "all"
  10540. }
  10541. },
  10542. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10543. }
  10544. }
  10545. }
  10546. }