project.assets.json 422 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453
  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.Win32.Primitives/4.3.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.NETCore.Platforms": "1.1.0",
  1131. "Microsoft.NETCore.Targets": "1.1.0",
  1132. "System.Runtime": "4.3.0"
  1133. },
  1134. "compile": {
  1135. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1136. "related": ".xml"
  1137. }
  1138. }
  1139. },
  1140. "Microsoft.Win32.SystemEvents/5.0.0": {
  1141. "type": "package",
  1142. "dependencies": {
  1143. "Microsoft.NETCore.Platforms": "5.0.0"
  1144. },
  1145. "compile": {
  1146. "ref/netstandard2.0/_._": {
  1147. "related": ".xml"
  1148. }
  1149. },
  1150. "runtime": {
  1151. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1152. "related": ".xml"
  1153. }
  1154. },
  1155. "runtimeTargets": {
  1156. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1157. "assetType": "runtime",
  1158. "rid": "win"
  1159. }
  1160. }
  1161. },
  1162. "MySql.Data/8.0.23": {
  1163. "type": "package",
  1164. "dependencies": {
  1165. "BouncyCastle.NetCore": "1.8.5",
  1166. "Google.Protobuf": "3.11.4",
  1167. "K4os.Compression.LZ4": "1.1.11",
  1168. "K4os.Compression.LZ4.Streams": "1.1.11",
  1169. "K4os.Hash.xxHash": "1.0.6",
  1170. "SSH.NET": "2020.0.0-beta1",
  1171. "System.Buffers": "4.5.1",
  1172. "System.Configuration.ConfigurationManager": "4.4.1",
  1173. "System.Security.Permissions": "4.7.0",
  1174. "System.Text.Encoding.CodePages": "4.4.0"
  1175. },
  1176. "compile": {
  1177. "lib/net5.0/MySql.Data.dll": {
  1178. "related": ".xml"
  1179. },
  1180. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1181. "lib/net5.0/Zstandard.Net.dll": {}
  1182. },
  1183. "runtime": {
  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. },
  1191. "MySqlConnector/1.1.0": {
  1192. "type": "package",
  1193. "compile": {
  1194. "lib/net5.0/MySqlConnector.dll": {
  1195. "related": ".xml"
  1196. }
  1197. },
  1198. "runtime": {
  1199. "lib/net5.0/MySqlConnector.dll": {
  1200. "related": ".xml"
  1201. }
  1202. }
  1203. },
  1204. "NETStandard.Library/1.6.1": {
  1205. "type": "package",
  1206. "dependencies": {
  1207. "Microsoft.NETCore.Platforms": "1.1.0",
  1208. "Microsoft.Win32.Primitives": "4.3.0",
  1209. "System.AppContext": "4.3.0",
  1210. "System.Collections": "4.3.0",
  1211. "System.Collections.Concurrent": "4.3.0",
  1212. "System.Console": "4.3.0",
  1213. "System.Diagnostics.Debug": "4.3.0",
  1214. "System.Diagnostics.Tools": "4.3.0",
  1215. "System.Diagnostics.Tracing": "4.3.0",
  1216. "System.Globalization": "4.3.0",
  1217. "System.Globalization.Calendars": "4.3.0",
  1218. "System.IO": "4.3.0",
  1219. "System.IO.Compression": "4.3.0",
  1220. "System.IO.Compression.ZipFile": "4.3.0",
  1221. "System.IO.FileSystem": "4.3.0",
  1222. "System.IO.FileSystem.Primitives": "4.3.0",
  1223. "System.Linq": "4.3.0",
  1224. "System.Linq.Expressions": "4.3.0",
  1225. "System.Net.Http": "4.3.0",
  1226. "System.Net.Primitives": "4.3.0",
  1227. "System.Net.Sockets": "4.3.0",
  1228. "System.ObjectModel": "4.3.0",
  1229. "System.Reflection": "4.3.0",
  1230. "System.Reflection.Extensions": "4.3.0",
  1231. "System.Reflection.Primitives": "4.3.0",
  1232. "System.Resources.ResourceManager": "4.3.0",
  1233. "System.Runtime": "4.3.0",
  1234. "System.Runtime.Extensions": "4.3.0",
  1235. "System.Runtime.Handles": "4.3.0",
  1236. "System.Runtime.InteropServices": "4.3.0",
  1237. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1238. "System.Runtime.Numerics": "4.3.0",
  1239. "System.Security.Cryptography.Algorithms": "4.3.0",
  1240. "System.Security.Cryptography.Encoding": "4.3.0",
  1241. "System.Security.Cryptography.Primitives": "4.3.0",
  1242. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1243. "System.Text.Encoding": "4.3.0",
  1244. "System.Text.Encoding.Extensions": "4.3.0",
  1245. "System.Text.RegularExpressions": "4.3.0",
  1246. "System.Threading": "4.3.0",
  1247. "System.Threading.Tasks": "4.3.0",
  1248. "System.Threading.Timer": "4.3.0",
  1249. "System.Xml.ReaderWriter": "4.3.0",
  1250. "System.Xml.XDocument": "4.3.0"
  1251. }
  1252. },
  1253. "Newtonsoft.Json/13.0.1": {
  1254. "type": "package",
  1255. "compile": {
  1256. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1262. "related": ".xml"
  1263. }
  1264. }
  1265. },
  1266. "Nito.AsyncEx.Coordination/5.0.0": {
  1267. "type": "package",
  1268. "dependencies": {
  1269. "Nito.AsyncEx.Tasks": "5.0.0",
  1270. "Nito.Collections.Deque": "1.0.4",
  1271. "Nito.Disposables": "2.0.0"
  1272. },
  1273. "compile": {
  1274. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1275. "related": ".xml"
  1276. }
  1277. },
  1278. "runtime": {
  1279. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1280. "related": ".xml"
  1281. }
  1282. }
  1283. },
  1284. "Nito.AsyncEx.Tasks/5.0.0": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Nito.Disposables": "2.0.0"
  1288. },
  1289. "compile": {
  1290. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1291. "related": ".xml"
  1292. }
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1296. "related": ".xml"
  1297. }
  1298. }
  1299. },
  1300. "Nito.Collections.Deque/1.0.4": {
  1301. "type": "package",
  1302. "compile": {
  1303. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1304. "related": ".xml"
  1305. }
  1306. },
  1307. "runtime": {
  1308. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1309. "related": ".xml"
  1310. }
  1311. }
  1312. },
  1313. "Nito.Disposables/2.0.0": {
  1314. "type": "package",
  1315. "dependencies": {
  1316. "System.Collections.Immutable": "1.4.0"
  1317. },
  1318. "compile": {
  1319. "lib/netstandard2.0/Nito.Disposables.dll": {
  1320. "related": ".pdb;.xml"
  1321. }
  1322. },
  1323. "runtime": {
  1324. "lib/netstandard2.0/Nito.Disposables.dll": {
  1325. "related": ".pdb;.xml"
  1326. }
  1327. }
  1328. },
  1329. "NodaTime/2.4.7": {
  1330. "type": "package",
  1331. "compile": {
  1332. "lib/netstandard2.0/NodaTime.dll": {
  1333. "related": ".pdb;.xml"
  1334. }
  1335. },
  1336. "runtime": {
  1337. "lib/netstandard2.0/NodaTime.dll": {
  1338. "related": ".pdb;.xml"
  1339. }
  1340. }
  1341. },
  1342. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1343. "type": "package",
  1344. "dependencies": {
  1345. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1346. "MySqlConnector": "1.1.0"
  1347. },
  1348. "compile": {
  1349. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1350. "related": ".xml"
  1351. }
  1352. },
  1353. "runtime": {
  1354. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1355. "related": ".xml"
  1356. }
  1357. }
  1358. },
  1359. "QRCoder/1.4.3": {
  1360. "type": "package",
  1361. "dependencies": {
  1362. "System.Drawing.Common": "5.0.3"
  1363. },
  1364. "compile": {
  1365. "lib/net5.0/QRCoder.dll": {}
  1366. },
  1367. "runtime": {
  1368. "lib/net5.0/QRCoder.dll": {}
  1369. }
  1370. },
  1371. "Quartz/3.3.3": {
  1372. "type": "package",
  1373. "dependencies": {
  1374. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1375. "System.Configuration.ConfigurationManager": "4.7.0",
  1376. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1377. },
  1378. "compile": {
  1379. "lib/netstandard2.0/Quartz.dll": {
  1380. "related": ".xml"
  1381. }
  1382. },
  1383. "runtime": {
  1384. "lib/netstandard2.0/Quartz.dll": {
  1385. "related": ".xml"
  1386. }
  1387. }
  1388. },
  1389. "RabbitMQ.Client/6.8.1": {
  1390. "type": "package",
  1391. "dependencies": {
  1392. "System.Memory": "4.5.5",
  1393. "System.Threading.Channels": "7.0.0"
  1394. },
  1395. "compile": {
  1396. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1397. "related": ".xml"
  1398. }
  1399. },
  1400. "runtime": {
  1401. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1402. "related": ".xml"
  1403. }
  1404. }
  1405. },
  1406. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1407. "type": "package",
  1408. "runtimeTargets": {
  1409. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1410. "assetType": "native",
  1411. "rid": "debian.8-x64"
  1412. }
  1413. }
  1414. },
  1415. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1416. "type": "package",
  1417. "runtimeTargets": {
  1418. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1419. "assetType": "native",
  1420. "rid": "fedora.23-x64"
  1421. }
  1422. }
  1423. },
  1424. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1425. "type": "package",
  1426. "runtimeTargets": {
  1427. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1428. "assetType": "native",
  1429. "rid": "fedora.24-x64"
  1430. }
  1431. }
  1432. },
  1433. "runtime.native.System/4.3.0": {
  1434. "type": "package",
  1435. "dependencies": {
  1436. "Microsoft.NETCore.Platforms": "1.1.0",
  1437. "Microsoft.NETCore.Targets": "1.1.0"
  1438. },
  1439. "compile": {
  1440. "lib/netstandard1.0/_._": {}
  1441. },
  1442. "runtime": {
  1443. "lib/netstandard1.0/_._": {}
  1444. }
  1445. },
  1446. "runtime.native.System.IO.Compression/4.3.0": {
  1447. "type": "package",
  1448. "dependencies": {
  1449. "Microsoft.NETCore.Platforms": "1.1.0",
  1450. "Microsoft.NETCore.Targets": "1.1.0"
  1451. },
  1452. "compile": {
  1453. "lib/netstandard1.0/_._": {}
  1454. },
  1455. "runtime": {
  1456. "lib/netstandard1.0/_._": {}
  1457. }
  1458. },
  1459. "runtime.native.System.Net.Http/4.3.0": {
  1460. "type": "package",
  1461. "dependencies": {
  1462. "Microsoft.NETCore.Platforms": "1.1.0",
  1463. "Microsoft.NETCore.Targets": "1.1.0"
  1464. },
  1465. "compile": {
  1466. "lib/netstandard1.0/_._": {}
  1467. },
  1468. "runtime": {
  1469. "lib/netstandard1.0/_._": {}
  1470. }
  1471. },
  1472. "runtime.native.System.Net.Security/4.3.0": {
  1473. "type": "package",
  1474. "dependencies": {
  1475. "Microsoft.NETCore.Platforms": "1.1.0",
  1476. "Microsoft.NETCore.Targets": "1.1.0"
  1477. },
  1478. "compile": {
  1479. "lib/netstandard1.0/_._": {}
  1480. },
  1481. "runtime": {
  1482. "lib/netstandard1.0/_._": {}
  1483. }
  1484. },
  1485. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1486. "type": "package",
  1487. "dependencies": {
  1488. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1489. },
  1490. "compile": {
  1491. "lib/netstandard1.0/_._": {}
  1492. },
  1493. "runtime": {
  1494. "lib/netstandard1.0/_._": {}
  1495. }
  1496. },
  1497. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1501. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1502. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1503. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1504. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1505. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1506. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1507. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1508. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1509. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1510. },
  1511. "compile": {
  1512. "lib/netstandard1.0/_._": {}
  1513. },
  1514. "runtime": {
  1515. "lib/netstandard1.0/_._": {}
  1516. }
  1517. },
  1518. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1519. "type": "package",
  1520. "runtimeTargets": {
  1521. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1522. "assetType": "native",
  1523. "rid": "opensuse.13.2-x64"
  1524. }
  1525. }
  1526. },
  1527. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1528. "type": "package",
  1529. "runtimeTargets": {
  1530. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1531. "assetType": "native",
  1532. "rid": "opensuse.42.1-x64"
  1533. }
  1534. }
  1535. },
  1536. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1537. "type": "package",
  1538. "runtimeTargets": {
  1539. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1540. "assetType": "native",
  1541. "rid": "osx.10.10-x64"
  1542. }
  1543. }
  1544. },
  1545. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1546. "type": "package",
  1547. "runtimeTargets": {
  1548. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1549. "assetType": "native",
  1550. "rid": "osx.10.10-x64"
  1551. }
  1552. }
  1553. },
  1554. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1555. "type": "package",
  1556. "runtimeTargets": {
  1557. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1558. "assetType": "native",
  1559. "rid": "rhel.7-x64"
  1560. }
  1561. }
  1562. },
  1563. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1564. "type": "package",
  1565. "runtimeTargets": {
  1566. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1567. "assetType": "native",
  1568. "rid": "ubuntu.14.04-x64"
  1569. }
  1570. }
  1571. },
  1572. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1573. "type": "package",
  1574. "runtimeTargets": {
  1575. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1576. "assetType": "native",
  1577. "rid": "ubuntu.16.04-x64"
  1578. }
  1579. }
  1580. },
  1581. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1582. "type": "package",
  1583. "runtimeTargets": {
  1584. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1585. "assetType": "native",
  1586. "rid": "ubuntu.16.10-x64"
  1587. }
  1588. }
  1589. },
  1590. "SixLabors.ImageSharp/2.1.6": {
  1591. "type": "package",
  1592. "dependencies": {
  1593. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1594. "System.Text.Encoding.CodePages": "5.0.0"
  1595. },
  1596. "compile": {
  1597. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1598. "related": ".xml"
  1599. }
  1600. },
  1601. "runtime": {
  1602. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "SSH.NET/2020.0.0-beta1": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "SshNet.Security.Cryptography": "[1.3.0]"
  1611. },
  1612. "compile": {
  1613. "lib/netstandard2.0/Renci.SshNet.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "runtime": {
  1618. "lib/netstandard2.0/Renci.SshNet.dll": {
  1619. "related": ".xml"
  1620. }
  1621. }
  1622. },
  1623. "SshNet.Security.Cryptography/1.3.0": {
  1624. "type": "package",
  1625. "compile": {
  1626. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1627. "related": ".xml"
  1628. }
  1629. },
  1630. "runtime": {
  1631. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1632. "related": ".xml"
  1633. }
  1634. }
  1635. },
  1636. "StackExchange.Redis/1.2.4": {
  1637. "type": "package",
  1638. "dependencies": {
  1639. "NETStandard.Library": "1.6.1",
  1640. "System.Collections": "4.3.0",
  1641. "System.Collections.Concurrent": "4.3.0",
  1642. "System.Collections.NonGeneric": "4.3.0",
  1643. "System.Diagnostics.Tools": "4.3.0",
  1644. "System.IO.Compression": "4.3.0",
  1645. "System.IO.FileSystem": "4.3.0",
  1646. "System.Linq": "4.3.0",
  1647. "System.Net.NameResolution": "4.3.0",
  1648. "System.Net.Security": "4.3.0",
  1649. "System.Net.Sockets": "4.3.0",
  1650. "System.Reflection.Emit": "4.3.0",
  1651. "System.Reflection.Emit.Lightweight": "4.3.0",
  1652. "System.Reflection.TypeExtensions": "4.3.0",
  1653. "System.Runtime.Extensions": "4.3.0",
  1654. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1655. "System.Security.Cryptography.Algorithms": "4.3.0",
  1656. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1657. "System.Text.RegularExpressions": "4.3.0",
  1658. "System.Threading": "4.3.0",
  1659. "System.Threading.Thread": "4.3.0",
  1660. "System.Threading.ThreadPool": "4.3.0",
  1661. "System.Threading.Timer": "4.3.0"
  1662. },
  1663. "compile": {
  1664. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1665. "related": ".xml"
  1666. }
  1667. },
  1668. "runtime": {
  1669. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1670. "related": ".xml"
  1671. }
  1672. }
  1673. },
  1674. "Swashbuckle.AspNetCore/5.6.3": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1678. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1679. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1680. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1681. },
  1682. "build": {
  1683. "build/Swashbuckle.AspNetCore.props": {}
  1684. }
  1685. },
  1686. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1687. "type": "package",
  1688. "dependencies": {
  1689. "Microsoft.OpenApi": "1.2.3"
  1690. },
  1691. "compile": {
  1692. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1693. "related": ".pdb;.xml"
  1694. }
  1695. },
  1696. "runtime": {
  1697. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1698. "related": ".pdb;.xml"
  1699. }
  1700. },
  1701. "frameworkReferences": [
  1702. "Microsoft.AspNetCore.App"
  1703. ]
  1704. },
  1705. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1706. "type": "package",
  1707. "dependencies": {
  1708. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1709. },
  1710. "compile": {
  1711. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1712. "related": ".pdb;.xml"
  1713. }
  1714. },
  1715. "runtime": {
  1716. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1717. "related": ".pdb;.xml"
  1718. }
  1719. },
  1720. "frameworkReferences": [
  1721. "Microsoft.AspNetCore.App"
  1722. ]
  1723. },
  1724. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1725. "type": "package",
  1726. "compile": {
  1727. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1728. "related": ".pdb;.xml"
  1729. }
  1730. },
  1731. "runtime": {
  1732. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1733. "related": ".pdb;.xml"
  1734. }
  1735. },
  1736. "frameworkReferences": [
  1737. "Microsoft.AspNetCore.App"
  1738. ]
  1739. },
  1740. "System.AppContext/4.3.0": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "System.Runtime": "4.3.0"
  1744. },
  1745. "compile": {
  1746. "ref/netstandard1.6/System.AppContext.dll": {
  1747. "related": ".xml"
  1748. }
  1749. },
  1750. "runtime": {
  1751. "lib/netstandard1.6/System.AppContext.dll": {}
  1752. }
  1753. },
  1754. "System.Buffers/4.5.1": {
  1755. "type": "package",
  1756. "compile": {
  1757. "ref/netcoreapp2.0/_._": {}
  1758. },
  1759. "runtime": {
  1760. "lib/netcoreapp2.0/_._": {}
  1761. }
  1762. },
  1763. "System.Collections/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0",
  1768. "System.Runtime": "4.3.0"
  1769. },
  1770. "compile": {
  1771. "ref/netstandard1.3/System.Collections.dll": {
  1772. "related": ".xml"
  1773. }
  1774. }
  1775. },
  1776. "System.Collections.Concurrent/4.3.0": {
  1777. "type": "package",
  1778. "dependencies": {
  1779. "System.Collections": "4.3.0",
  1780. "System.Diagnostics.Debug": "4.3.0",
  1781. "System.Diagnostics.Tracing": "4.3.0",
  1782. "System.Globalization": "4.3.0",
  1783. "System.Reflection": "4.3.0",
  1784. "System.Resources.ResourceManager": "4.3.0",
  1785. "System.Runtime": "4.3.0",
  1786. "System.Runtime.Extensions": "4.3.0",
  1787. "System.Threading": "4.3.0",
  1788. "System.Threading.Tasks": "4.3.0"
  1789. },
  1790. "compile": {
  1791. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1792. "related": ".xml"
  1793. }
  1794. },
  1795. "runtime": {
  1796. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1797. }
  1798. },
  1799. "System.Collections.Immutable/5.0.0": {
  1800. "type": "package",
  1801. "compile": {
  1802. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1803. "related": ".xml"
  1804. }
  1805. },
  1806. "runtime": {
  1807. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1808. "related": ".xml"
  1809. }
  1810. }
  1811. },
  1812. "System.Collections.NonGeneric/4.3.0": {
  1813. "type": "package",
  1814. "dependencies": {
  1815. "System.Diagnostics.Debug": "4.3.0",
  1816. "System.Globalization": "4.3.0",
  1817. "System.Resources.ResourceManager": "4.3.0",
  1818. "System.Runtime": "4.3.0",
  1819. "System.Runtime.Extensions": "4.3.0",
  1820. "System.Threading": "4.3.0"
  1821. },
  1822. "compile": {
  1823. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1824. "related": ".xml"
  1825. }
  1826. },
  1827. "runtime": {
  1828. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1829. }
  1830. },
  1831. "System.Collections.Specialized/4.3.0": {
  1832. "type": "package",
  1833. "dependencies": {
  1834. "System.Collections.NonGeneric": "4.3.0",
  1835. "System.Globalization": "4.3.0",
  1836. "System.Globalization.Extensions": "4.3.0",
  1837. "System.Resources.ResourceManager": "4.3.0",
  1838. "System.Runtime": "4.3.0",
  1839. "System.Runtime.Extensions": "4.3.0",
  1840. "System.Threading": "4.3.0"
  1841. },
  1842. "compile": {
  1843. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1844. "related": ".xml"
  1845. }
  1846. },
  1847. "runtime": {
  1848. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1849. }
  1850. },
  1851. "System.ComponentModel/4.3.0": {
  1852. "type": "package",
  1853. "dependencies": {
  1854. "System.Runtime": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.0/System.ComponentModel.dll": {
  1858. "related": ".xml"
  1859. }
  1860. },
  1861. "runtime": {
  1862. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1863. }
  1864. },
  1865. "System.ComponentModel.Annotations/5.0.0": {
  1866. "type": "package",
  1867. "compile": {
  1868. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1869. "related": ".xml"
  1870. }
  1871. },
  1872. "runtime": {
  1873. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1874. "related": ".xml"
  1875. }
  1876. }
  1877. },
  1878. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1879. "type": "package",
  1880. "dependencies": {
  1881. "System.Resources.ResourceManager": "4.3.0",
  1882. "System.Runtime": "4.3.0",
  1883. "System.Threading": "4.3.0",
  1884. "System.Threading.Tasks": "4.3.0"
  1885. },
  1886. "compile": {
  1887. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1888. "related": ".xml"
  1889. }
  1890. },
  1891. "runtime": {
  1892. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1893. }
  1894. },
  1895. "System.ComponentModel.Primitives/4.3.0": {
  1896. "type": "package",
  1897. "dependencies": {
  1898. "System.ComponentModel": "4.3.0",
  1899. "System.Resources.ResourceManager": "4.3.0",
  1900. "System.Runtime": "4.3.0"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1904. "related": ".xml"
  1905. }
  1906. },
  1907. "runtime": {
  1908. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1909. }
  1910. },
  1911. "System.ComponentModel.TypeConverter/4.3.0": {
  1912. "type": "package",
  1913. "dependencies": {
  1914. "System.Collections": "4.3.0",
  1915. "System.Collections.NonGeneric": "4.3.0",
  1916. "System.Collections.Specialized": "4.3.0",
  1917. "System.ComponentModel": "4.3.0",
  1918. "System.ComponentModel.Primitives": "4.3.0",
  1919. "System.Globalization": "4.3.0",
  1920. "System.Linq": "4.3.0",
  1921. "System.Reflection": "4.3.0",
  1922. "System.Reflection.Extensions": "4.3.0",
  1923. "System.Reflection.Primitives": "4.3.0",
  1924. "System.Reflection.TypeExtensions": "4.3.0",
  1925. "System.Resources.ResourceManager": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Extensions": "4.3.0",
  1928. "System.Threading": "4.3.0"
  1929. },
  1930. "compile": {
  1931. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1932. "related": ".xml"
  1933. }
  1934. },
  1935. "runtime": {
  1936. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1937. }
  1938. },
  1939. "System.Configuration.ConfigurationManager/4.7.0": {
  1940. "type": "package",
  1941. "dependencies": {
  1942. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1943. "System.Security.Permissions": "4.7.0"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1947. "related": ".xml"
  1948. }
  1949. },
  1950. "runtime": {
  1951. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1952. "related": ".xml"
  1953. }
  1954. }
  1955. },
  1956. "System.Console/4.3.0": {
  1957. "type": "package",
  1958. "dependencies": {
  1959. "Microsoft.NETCore.Platforms": "1.1.0",
  1960. "Microsoft.NETCore.Targets": "1.1.0",
  1961. "System.IO": "4.3.0",
  1962. "System.Runtime": "4.3.0",
  1963. "System.Text.Encoding": "4.3.0"
  1964. },
  1965. "compile": {
  1966. "ref/netstandard1.3/System.Console.dll": {
  1967. "related": ".xml"
  1968. }
  1969. }
  1970. },
  1971. "System.Diagnostics.Debug/4.3.0": {
  1972. "type": "package",
  1973. "dependencies": {
  1974. "Microsoft.NETCore.Platforms": "1.1.0",
  1975. "Microsoft.NETCore.Targets": "1.1.0",
  1976. "System.Runtime": "4.3.0"
  1977. },
  1978. "compile": {
  1979. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1980. "related": ".xml"
  1981. }
  1982. }
  1983. },
  1984. "System.Diagnostics.DiagnosticSource/6.0.2": {
  1985. "type": "package",
  1986. "dependencies": {
  1987. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1988. },
  1989. "compile": {
  1990. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1991. "related": ".xml"
  1992. }
  1993. },
  1994. "runtime": {
  1995. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1996. "related": ".xml"
  1997. }
  1998. },
  1999. "build": {
  2000. "buildTransitive/netcoreapp3.1/_._": {}
  2001. }
  2002. },
  2003. "System.Diagnostics.Tools/4.3.0": {
  2004. "type": "package",
  2005. "dependencies": {
  2006. "Microsoft.NETCore.Platforms": "1.1.0",
  2007. "Microsoft.NETCore.Targets": "1.1.0",
  2008. "System.Runtime": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2012. "related": ".xml"
  2013. }
  2014. }
  2015. },
  2016. "System.Diagnostics.TraceSource/4.3.0": {
  2017. "type": "package",
  2018. "dependencies": {
  2019. "Microsoft.NETCore.Platforms": "1.1.0",
  2020. "System.Collections": "4.3.0",
  2021. "System.Diagnostics.Debug": "4.3.0",
  2022. "System.Globalization": "4.3.0",
  2023. "System.Resources.ResourceManager": "4.3.0",
  2024. "System.Runtime": "4.3.0",
  2025. "System.Runtime.Extensions": "4.3.0",
  2026. "System.Threading": "4.3.0",
  2027. "runtime.native.System": "4.3.0"
  2028. },
  2029. "compile": {
  2030. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2031. "related": ".xml"
  2032. }
  2033. },
  2034. "runtimeTargets": {
  2035. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2036. "assetType": "runtime",
  2037. "rid": "unix"
  2038. },
  2039. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2040. "assetType": "runtime",
  2041. "rid": "win"
  2042. }
  2043. }
  2044. },
  2045. "System.Diagnostics.Tracing/4.3.0": {
  2046. "type": "package",
  2047. "dependencies": {
  2048. "Microsoft.NETCore.Platforms": "1.1.0",
  2049. "Microsoft.NETCore.Targets": "1.1.0",
  2050. "System.Runtime": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2054. "related": ".xml"
  2055. }
  2056. }
  2057. },
  2058. "System.Drawing.Common/5.0.3": {
  2059. "type": "package",
  2060. "dependencies": {
  2061. "Microsoft.Win32.SystemEvents": "5.0.0"
  2062. },
  2063. "compile": {
  2064. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2065. "related": ".xml"
  2066. }
  2067. },
  2068. "runtime": {
  2069. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2070. "related": ".xml"
  2071. }
  2072. },
  2073. "runtimeTargets": {
  2074. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2075. "assetType": "runtime",
  2076. "rid": "unix"
  2077. },
  2078. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2079. "assetType": "runtime",
  2080. "rid": "win"
  2081. }
  2082. }
  2083. },
  2084. "System.Dynamic.Runtime/4.3.0": {
  2085. "type": "package",
  2086. "dependencies": {
  2087. "System.Collections": "4.3.0",
  2088. "System.Diagnostics.Debug": "4.3.0",
  2089. "System.Linq": "4.3.0",
  2090. "System.Linq.Expressions": "4.3.0",
  2091. "System.ObjectModel": "4.3.0",
  2092. "System.Reflection": "4.3.0",
  2093. "System.Reflection.Emit": "4.3.0",
  2094. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2095. "System.Reflection.Primitives": "4.3.0",
  2096. "System.Reflection.TypeExtensions": "4.3.0",
  2097. "System.Resources.ResourceManager": "4.3.0",
  2098. "System.Runtime": "4.3.0",
  2099. "System.Runtime.Extensions": "4.3.0",
  2100. "System.Threading": "4.3.0"
  2101. },
  2102. "compile": {
  2103. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2104. "related": ".xml"
  2105. }
  2106. },
  2107. "runtime": {
  2108. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2109. }
  2110. },
  2111. "System.Globalization/4.3.0": {
  2112. "type": "package",
  2113. "dependencies": {
  2114. "Microsoft.NETCore.Platforms": "1.1.0",
  2115. "Microsoft.NETCore.Targets": "1.1.0",
  2116. "System.Runtime": "4.3.0"
  2117. },
  2118. "compile": {
  2119. "ref/netstandard1.3/System.Globalization.dll": {
  2120. "related": ".xml"
  2121. }
  2122. }
  2123. },
  2124. "System.Globalization.Calendars/4.3.0": {
  2125. "type": "package",
  2126. "dependencies": {
  2127. "Microsoft.NETCore.Platforms": "1.1.0",
  2128. "Microsoft.NETCore.Targets": "1.1.0",
  2129. "System.Globalization": "4.3.0",
  2130. "System.Runtime": "4.3.0"
  2131. },
  2132. "compile": {
  2133. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2134. "related": ".xml"
  2135. }
  2136. }
  2137. },
  2138. "System.Globalization.Extensions/4.3.0": {
  2139. "type": "package",
  2140. "dependencies": {
  2141. "Microsoft.NETCore.Platforms": "1.1.0",
  2142. "System.Globalization": "4.3.0",
  2143. "System.Resources.ResourceManager": "4.3.0",
  2144. "System.Runtime": "4.3.0",
  2145. "System.Runtime.Extensions": "4.3.0",
  2146. "System.Runtime.InteropServices": "4.3.0"
  2147. },
  2148. "compile": {
  2149. "ref/netstandard1.3/_._": {
  2150. "related": ".xml"
  2151. }
  2152. },
  2153. "runtimeTargets": {
  2154. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2155. "assetType": "runtime",
  2156. "rid": "unix"
  2157. },
  2158. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2159. "assetType": "runtime",
  2160. "rid": "win"
  2161. }
  2162. }
  2163. },
  2164. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  2165. "type": "package",
  2166. "dependencies": {
  2167. "Microsoft.IdentityModel.JsonWebTokens": "8.6.0",
  2168. "Microsoft.IdentityModel.Tokens": "8.6.0"
  2169. },
  2170. "compile": {
  2171. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2172. "related": ".xml"
  2173. }
  2174. },
  2175. "runtime": {
  2176. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2177. "related": ".xml"
  2178. }
  2179. }
  2180. },
  2181. "System.IO/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "Microsoft.NETCore.Platforms": "1.1.0",
  2185. "Microsoft.NETCore.Targets": "1.1.0",
  2186. "System.Runtime": "4.3.0",
  2187. "System.Text.Encoding": "4.3.0",
  2188. "System.Threading.Tasks": "4.3.0"
  2189. },
  2190. "compile": {
  2191. "ref/netstandard1.5/System.IO.dll": {
  2192. "related": ".xml"
  2193. }
  2194. }
  2195. },
  2196. "System.IO.Compression/4.3.0": {
  2197. "type": "package",
  2198. "dependencies": {
  2199. "Microsoft.NETCore.Platforms": "1.1.0",
  2200. "System.Buffers": "4.3.0",
  2201. "System.Collections": "4.3.0",
  2202. "System.Diagnostics.Debug": "4.3.0",
  2203. "System.IO": "4.3.0",
  2204. "System.Resources.ResourceManager": "4.3.0",
  2205. "System.Runtime": "4.3.0",
  2206. "System.Runtime.Extensions": "4.3.0",
  2207. "System.Runtime.Handles": "4.3.0",
  2208. "System.Runtime.InteropServices": "4.3.0",
  2209. "System.Text.Encoding": "4.3.0",
  2210. "System.Threading": "4.3.0",
  2211. "System.Threading.Tasks": "4.3.0",
  2212. "runtime.native.System": "4.3.0",
  2213. "runtime.native.System.IO.Compression": "4.3.0"
  2214. },
  2215. "compile": {
  2216. "ref/netstandard1.3/System.IO.Compression.dll": {
  2217. "related": ".xml"
  2218. }
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.IO.Compression.ZipFile/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Buffers": "4.3.0",
  2235. "System.IO": "4.3.0",
  2236. "System.IO.Compression": "4.3.0",
  2237. "System.IO.FileSystem": "4.3.0",
  2238. "System.IO.FileSystem.Primitives": "4.3.0",
  2239. "System.Resources.ResourceManager": "4.3.0",
  2240. "System.Runtime": "4.3.0",
  2241. "System.Runtime.Extensions": "4.3.0",
  2242. "System.Text.Encoding": "4.3.0"
  2243. },
  2244. "compile": {
  2245. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2246. "related": ".xml"
  2247. }
  2248. },
  2249. "runtime": {
  2250. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2251. }
  2252. },
  2253. "System.IO.FileSystem/4.3.0": {
  2254. "type": "package",
  2255. "dependencies": {
  2256. "Microsoft.NETCore.Platforms": "1.1.0",
  2257. "Microsoft.NETCore.Targets": "1.1.0",
  2258. "System.IO": "4.3.0",
  2259. "System.IO.FileSystem.Primitives": "4.3.0",
  2260. "System.Runtime": "4.3.0",
  2261. "System.Runtime.Handles": "4.3.0",
  2262. "System.Text.Encoding": "4.3.0",
  2263. "System.Threading.Tasks": "4.3.0"
  2264. },
  2265. "compile": {
  2266. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2267. "related": ".xml"
  2268. }
  2269. }
  2270. },
  2271. "System.IO.FileSystem.Primitives/4.3.0": {
  2272. "type": "package",
  2273. "dependencies": {
  2274. "System.Runtime": "4.3.0"
  2275. },
  2276. "compile": {
  2277. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2278. "related": ".xml"
  2279. }
  2280. },
  2281. "runtime": {
  2282. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2283. }
  2284. },
  2285. "System.IO.Pipelines/5.0.0": {
  2286. "type": "package",
  2287. "compile": {
  2288. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2289. "related": ".xml"
  2290. }
  2291. },
  2292. "runtime": {
  2293. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2294. "related": ".xml"
  2295. }
  2296. }
  2297. },
  2298. "System.Linq/4.3.0": {
  2299. "type": "package",
  2300. "dependencies": {
  2301. "System.Collections": "4.3.0",
  2302. "System.Diagnostics.Debug": "4.3.0",
  2303. "System.Resources.ResourceManager": "4.3.0",
  2304. "System.Runtime": "4.3.0",
  2305. "System.Runtime.Extensions": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.6/System.Linq.dll": {
  2309. "related": ".xml"
  2310. }
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.6/System.Linq.dll": {}
  2314. }
  2315. },
  2316. "System.Linq.Expressions/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "System.Collections": "4.3.0",
  2320. "System.Diagnostics.Debug": "4.3.0",
  2321. "System.Globalization": "4.3.0",
  2322. "System.IO": "4.3.0",
  2323. "System.Linq": "4.3.0",
  2324. "System.ObjectModel": "4.3.0",
  2325. "System.Reflection": "4.3.0",
  2326. "System.Reflection.Emit": "4.3.0",
  2327. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2328. "System.Reflection.Emit.Lightweight": "4.3.0",
  2329. "System.Reflection.Extensions": "4.3.0",
  2330. "System.Reflection.Primitives": "4.3.0",
  2331. "System.Reflection.TypeExtensions": "4.3.0",
  2332. "System.Resources.ResourceManager": "4.3.0",
  2333. "System.Runtime": "4.3.0",
  2334. "System.Runtime.Extensions": "4.3.0",
  2335. "System.Threading": "4.3.0"
  2336. },
  2337. "compile": {
  2338. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2339. "related": ".xml"
  2340. }
  2341. },
  2342. "runtime": {
  2343. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2344. }
  2345. },
  2346. "System.Memory/4.5.5": {
  2347. "type": "package",
  2348. "compile": {
  2349. "ref/netcoreapp2.1/_._": {}
  2350. },
  2351. "runtime": {
  2352. "lib/netcoreapp2.1/_._": {}
  2353. }
  2354. },
  2355. "System.Net.Http/4.3.2": {
  2356. "type": "package",
  2357. "dependencies": {
  2358. "Microsoft.NETCore.Platforms": "1.1.0",
  2359. "System.Collections": "4.3.0",
  2360. "System.Diagnostics.Debug": "4.3.0",
  2361. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2362. "System.Diagnostics.Tracing": "4.3.0",
  2363. "System.Globalization": "4.3.0",
  2364. "System.Globalization.Extensions": "4.3.0",
  2365. "System.IO": "4.3.0",
  2366. "System.IO.FileSystem": "4.3.0",
  2367. "System.Net.Primitives": "4.3.0",
  2368. "System.Resources.ResourceManager": "4.3.0",
  2369. "System.Runtime": "4.3.0",
  2370. "System.Runtime.Extensions": "4.3.0",
  2371. "System.Runtime.Handles": "4.3.0",
  2372. "System.Runtime.InteropServices": "4.3.0",
  2373. "System.Security.Cryptography.Algorithms": "4.3.0",
  2374. "System.Security.Cryptography.Encoding": "4.3.0",
  2375. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2376. "System.Security.Cryptography.Primitives": "4.3.0",
  2377. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2378. "System.Text.Encoding": "4.3.0",
  2379. "System.Threading": "4.3.0",
  2380. "System.Threading.Tasks": "4.3.0",
  2381. "runtime.native.System": "4.3.0",
  2382. "runtime.native.System.Net.Http": "4.3.0",
  2383. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2384. },
  2385. "compile": {
  2386. "ref/netstandard1.3/System.Net.Http.dll": {}
  2387. },
  2388. "runtimeTargets": {
  2389. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2390. "assetType": "runtime",
  2391. "rid": "unix"
  2392. },
  2393. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2394. "assetType": "runtime",
  2395. "rid": "win"
  2396. }
  2397. }
  2398. },
  2399. "System.Net.NameResolution/4.3.0": {
  2400. "type": "package",
  2401. "dependencies": {
  2402. "Microsoft.NETCore.Platforms": "1.1.0",
  2403. "System.Collections": "4.3.0",
  2404. "System.Diagnostics.Tracing": "4.3.0",
  2405. "System.Globalization": "4.3.0",
  2406. "System.Net.Primitives": "4.3.0",
  2407. "System.Resources.ResourceManager": "4.3.0",
  2408. "System.Runtime": "4.3.0",
  2409. "System.Runtime.Extensions": "4.3.0",
  2410. "System.Runtime.Handles": "4.3.0",
  2411. "System.Runtime.InteropServices": "4.3.0",
  2412. "System.Security.Principal.Windows": "4.3.0",
  2413. "System.Threading": "4.3.0",
  2414. "System.Threading.Tasks": "4.3.0",
  2415. "runtime.native.System": "4.3.0"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2419. "related": ".xml"
  2420. }
  2421. },
  2422. "runtimeTargets": {
  2423. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2424. "assetType": "runtime",
  2425. "rid": "unix"
  2426. },
  2427. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2428. "assetType": "runtime",
  2429. "rid": "win"
  2430. }
  2431. }
  2432. },
  2433. "System.Net.Primitives/4.3.0": {
  2434. "type": "package",
  2435. "dependencies": {
  2436. "Microsoft.NETCore.Platforms": "1.1.0",
  2437. "Microsoft.NETCore.Targets": "1.1.0",
  2438. "System.Runtime": "4.3.0",
  2439. "System.Runtime.Handles": "4.3.0"
  2440. },
  2441. "compile": {
  2442. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2443. "related": ".xml"
  2444. }
  2445. }
  2446. },
  2447. "System.Net.Security/4.3.0": {
  2448. "type": "package",
  2449. "dependencies": {
  2450. "Microsoft.NETCore.Platforms": "1.1.0",
  2451. "Microsoft.Win32.Primitives": "4.3.0",
  2452. "System.Collections": "4.3.0",
  2453. "System.Collections.Concurrent": "4.3.0",
  2454. "System.Diagnostics.Tracing": "4.3.0",
  2455. "System.Globalization": "4.3.0",
  2456. "System.Globalization.Extensions": "4.3.0",
  2457. "System.IO": "4.3.0",
  2458. "System.Net.Primitives": "4.3.0",
  2459. "System.Resources.ResourceManager": "4.3.0",
  2460. "System.Runtime": "4.3.0",
  2461. "System.Runtime.Extensions": "4.3.0",
  2462. "System.Runtime.Handles": "4.3.0",
  2463. "System.Runtime.InteropServices": "4.3.0",
  2464. "System.Security.Claims": "4.3.0",
  2465. "System.Security.Cryptography.Algorithms": "4.3.0",
  2466. "System.Security.Cryptography.Encoding": "4.3.0",
  2467. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2468. "System.Security.Cryptography.Primitives": "4.3.0",
  2469. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2470. "System.Security.Principal": "4.3.0",
  2471. "System.Text.Encoding": "4.3.0",
  2472. "System.Threading": "4.3.0",
  2473. "System.Threading.Tasks": "4.3.0",
  2474. "System.Threading.ThreadPool": "4.3.0",
  2475. "runtime.native.System": "4.3.0",
  2476. "runtime.native.System.Net.Security": "4.3.0",
  2477. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2478. },
  2479. "compile": {
  2480. "ref/netstandard1.3/System.Net.Security.dll": {
  2481. "related": ".xml"
  2482. }
  2483. },
  2484. "runtimeTargets": {
  2485. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2486. "assetType": "runtime",
  2487. "rid": "unix"
  2488. },
  2489. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2490. "assetType": "runtime",
  2491. "rid": "win"
  2492. }
  2493. }
  2494. },
  2495. "System.Net.Sockets/4.3.0": {
  2496. "type": "package",
  2497. "dependencies": {
  2498. "Microsoft.NETCore.Platforms": "1.1.0",
  2499. "Microsoft.NETCore.Targets": "1.1.0",
  2500. "System.IO": "4.3.0",
  2501. "System.Net.Primitives": "4.3.0",
  2502. "System.Runtime": "4.3.0",
  2503. "System.Threading.Tasks": "4.3.0"
  2504. },
  2505. "compile": {
  2506. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2507. "related": ".xml"
  2508. }
  2509. }
  2510. },
  2511. "System.ObjectModel/4.3.0": {
  2512. "type": "package",
  2513. "dependencies": {
  2514. "System.Collections": "4.3.0",
  2515. "System.Diagnostics.Debug": "4.3.0",
  2516. "System.Resources.ResourceManager": "4.3.0",
  2517. "System.Runtime": "4.3.0",
  2518. "System.Threading": "4.3.0"
  2519. },
  2520. "compile": {
  2521. "ref/netstandard1.3/System.ObjectModel.dll": {
  2522. "related": ".xml"
  2523. }
  2524. },
  2525. "runtime": {
  2526. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2527. }
  2528. },
  2529. "System.Reactive/4.4.1": {
  2530. "type": "package",
  2531. "compile": {
  2532. "lib/netcoreapp3.0/_._": {}
  2533. },
  2534. "runtime": {
  2535. "lib/netcoreapp3.0/_._": {}
  2536. },
  2537. "build": {
  2538. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2539. }
  2540. },
  2541. "System.Reflection/4.3.0": {
  2542. "type": "package",
  2543. "dependencies": {
  2544. "Microsoft.NETCore.Platforms": "1.1.0",
  2545. "Microsoft.NETCore.Targets": "1.1.0",
  2546. "System.IO": "4.3.0",
  2547. "System.Reflection.Primitives": "4.3.0",
  2548. "System.Runtime": "4.3.0"
  2549. },
  2550. "compile": {
  2551. "ref/netstandard1.5/System.Reflection.dll": {
  2552. "related": ".xml"
  2553. }
  2554. }
  2555. },
  2556. "System.Reflection.Emit/4.7.0": {
  2557. "type": "package",
  2558. "compile": {
  2559. "ref/netcoreapp2.0/_._": {}
  2560. },
  2561. "runtime": {
  2562. "lib/netcoreapp2.0/_._": {}
  2563. }
  2564. },
  2565. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2566. "type": "package",
  2567. "dependencies": {
  2568. "System.Reflection": "4.3.0",
  2569. "System.Reflection.Primitives": "4.3.0",
  2570. "System.Runtime": "4.3.0"
  2571. },
  2572. "compile": {
  2573. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2574. "related": ".xml"
  2575. }
  2576. },
  2577. "runtime": {
  2578. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2579. }
  2580. },
  2581. "System.Reflection.Emit.Lightweight/4.3.0": {
  2582. "type": "package",
  2583. "dependencies": {
  2584. "System.Reflection": "4.3.0",
  2585. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2586. "System.Reflection.Primitives": "4.3.0",
  2587. "System.Runtime": "4.3.0"
  2588. },
  2589. "compile": {
  2590. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2591. "related": ".xml"
  2592. }
  2593. },
  2594. "runtime": {
  2595. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2596. }
  2597. },
  2598. "System.Reflection.Extensions/4.3.0": {
  2599. "type": "package",
  2600. "dependencies": {
  2601. "Microsoft.NETCore.Platforms": "1.1.0",
  2602. "Microsoft.NETCore.Targets": "1.1.0",
  2603. "System.Reflection": "4.3.0",
  2604. "System.Runtime": "4.3.0"
  2605. },
  2606. "compile": {
  2607. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2608. "related": ".xml"
  2609. }
  2610. }
  2611. },
  2612. "System.Reflection.Primitives/4.3.0": {
  2613. "type": "package",
  2614. "dependencies": {
  2615. "Microsoft.NETCore.Platforms": "1.1.0",
  2616. "Microsoft.NETCore.Targets": "1.1.0",
  2617. "System.Runtime": "4.3.0"
  2618. },
  2619. "compile": {
  2620. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2621. "related": ".xml"
  2622. }
  2623. }
  2624. },
  2625. "System.Reflection.TypeExtensions/4.3.0": {
  2626. "type": "package",
  2627. "dependencies": {
  2628. "System.Reflection": "4.3.0",
  2629. "System.Runtime": "4.3.0"
  2630. },
  2631. "compile": {
  2632. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2633. "related": ".xml"
  2634. }
  2635. },
  2636. "runtime": {
  2637. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2638. }
  2639. },
  2640. "System.Resources.ResourceManager/4.3.0": {
  2641. "type": "package",
  2642. "dependencies": {
  2643. "Microsoft.NETCore.Platforms": "1.1.0",
  2644. "Microsoft.NETCore.Targets": "1.1.0",
  2645. "System.Globalization": "4.3.0",
  2646. "System.Reflection": "4.3.0",
  2647. "System.Runtime": "4.3.0"
  2648. },
  2649. "compile": {
  2650. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2651. "related": ".xml"
  2652. }
  2653. }
  2654. },
  2655. "System.Runtime/4.3.0": {
  2656. "type": "package",
  2657. "dependencies": {
  2658. "Microsoft.NETCore.Platforms": "1.1.0",
  2659. "Microsoft.NETCore.Targets": "1.1.0"
  2660. },
  2661. "compile": {
  2662. "ref/netstandard1.5/System.Runtime.dll": {
  2663. "related": ".xml"
  2664. }
  2665. }
  2666. },
  2667. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2668. "type": "package",
  2669. "compile": {
  2670. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2671. "related": ".xml"
  2672. }
  2673. },
  2674. "runtime": {
  2675. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2676. "related": ".xml"
  2677. }
  2678. },
  2679. "build": {
  2680. "buildTransitive/netcoreapp3.1/_._": {}
  2681. }
  2682. },
  2683. "System.Runtime.Extensions/4.3.0": {
  2684. "type": "package",
  2685. "dependencies": {
  2686. "Microsoft.NETCore.Platforms": "1.1.0",
  2687. "Microsoft.NETCore.Targets": "1.1.0",
  2688. "System.Runtime": "4.3.0"
  2689. },
  2690. "compile": {
  2691. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2692. "related": ".xml"
  2693. }
  2694. }
  2695. },
  2696. "System.Runtime.Handles/4.3.0": {
  2697. "type": "package",
  2698. "dependencies": {
  2699. "Microsoft.NETCore.Platforms": "1.1.0",
  2700. "Microsoft.NETCore.Targets": "1.1.0",
  2701. "System.Runtime": "4.3.0"
  2702. },
  2703. "compile": {
  2704. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2705. "related": ".xml"
  2706. }
  2707. }
  2708. },
  2709. "System.Runtime.InteropServices/4.3.0": {
  2710. "type": "package",
  2711. "dependencies": {
  2712. "Microsoft.NETCore.Platforms": "1.1.0",
  2713. "Microsoft.NETCore.Targets": "1.1.0",
  2714. "System.Reflection": "4.3.0",
  2715. "System.Reflection.Primitives": "4.3.0",
  2716. "System.Runtime": "4.3.0",
  2717. "System.Runtime.Handles": "4.3.0"
  2718. },
  2719. "compile": {
  2720. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2721. }
  2722. },
  2723. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2724. "type": "package",
  2725. "dependencies": {
  2726. "System.Reflection": "4.3.0",
  2727. "System.Reflection.Extensions": "4.3.0",
  2728. "System.Resources.ResourceManager": "4.3.0",
  2729. "System.Runtime": "4.3.0",
  2730. "System.Runtime.InteropServices": "4.3.0",
  2731. "System.Threading": "4.3.0",
  2732. "runtime.native.System": "4.3.0"
  2733. },
  2734. "compile": {
  2735. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2736. },
  2737. "runtime": {
  2738. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2739. },
  2740. "runtimeTargets": {
  2741. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2742. "assetType": "runtime",
  2743. "rid": "unix"
  2744. },
  2745. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2746. "assetType": "runtime",
  2747. "rid": "win"
  2748. }
  2749. }
  2750. },
  2751. "System.Runtime.Numerics/4.3.0": {
  2752. "type": "package",
  2753. "dependencies": {
  2754. "System.Globalization": "4.3.0",
  2755. "System.Resources.ResourceManager": "4.3.0",
  2756. "System.Runtime": "4.3.0",
  2757. "System.Runtime.Extensions": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2761. "related": ".xml"
  2762. }
  2763. },
  2764. "runtime": {
  2765. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2766. }
  2767. },
  2768. "System.Runtime.Serialization.Primitives/4.3.0": {
  2769. "type": "package",
  2770. "dependencies": {
  2771. "System.Resources.ResourceManager": "4.3.0",
  2772. "System.Runtime": "4.3.0"
  2773. },
  2774. "compile": {
  2775. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtime": {
  2780. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2781. }
  2782. },
  2783. "System.Security.AccessControl/4.7.0": {
  2784. "type": "package",
  2785. "dependencies": {
  2786. "Microsoft.NETCore.Platforms": "3.1.0",
  2787. "System.Security.Principal.Windows": "4.7.0"
  2788. },
  2789. "compile": {
  2790. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2791. "related": ".xml"
  2792. }
  2793. },
  2794. "runtime": {
  2795. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2796. "related": ".xml"
  2797. }
  2798. },
  2799. "runtimeTargets": {
  2800. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2801. "assetType": "runtime",
  2802. "rid": "win"
  2803. }
  2804. }
  2805. },
  2806. "System.Security.Claims/4.3.0": {
  2807. "type": "package",
  2808. "dependencies": {
  2809. "System.Collections": "4.3.0",
  2810. "System.Globalization": "4.3.0",
  2811. "System.IO": "4.3.0",
  2812. "System.Resources.ResourceManager": "4.3.0",
  2813. "System.Runtime": "4.3.0",
  2814. "System.Runtime.Extensions": "4.3.0",
  2815. "System.Security.Principal": "4.3.0"
  2816. },
  2817. "compile": {
  2818. "ref/netstandard1.3/_._": {
  2819. "related": ".xml"
  2820. }
  2821. },
  2822. "runtime": {
  2823. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2824. }
  2825. },
  2826. "System.Security.Cryptography.Algorithms/4.3.0": {
  2827. "type": "package",
  2828. "dependencies": {
  2829. "Microsoft.NETCore.Platforms": "1.1.0",
  2830. "System.Collections": "4.3.0",
  2831. "System.IO": "4.3.0",
  2832. "System.Resources.ResourceManager": "4.3.0",
  2833. "System.Runtime": "4.3.0",
  2834. "System.Runtime.Extensions": "4.3.0",
  2835. "System.Runtime.Handles": "4.3.0",
  2836. "System.Runtime.InteropServices": "4.3.0",
  2837. "System.Runtime.Numerics": "4.3.0",
  2838. "System.Security.Cryptography.Encoding": "4.3.0",
  2839. "System.Security.Cryptography.Primitives": "4.3.0",
  2840. "System.Text.Encoding": "4.3.0",
  2841. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2842. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2843. },
  2844. "compile": {
  2845. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2846. },
  2847. "runtimeTargets": {
  2848. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2849. "assetType": "runtime",
  2850. "rid": "osx"
  2851. },
  2852. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2853. "assetType": "runtime",
  2854. "rid": "unix"
  2855. },
  2856. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2857. "assetType": "runtime",
  2858. "rid": "win"
  2859. }
  2860. }
  2861. },
  2862. "System.Security.Cryptography.Cng/4.5.0": {
  2863. "type": "package",
  2864. "compile": {
  2865. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2866. "related": ".xml"
  2867. }
  2868. },
  2869. "runtime": {
  2870. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2871. },
  2872. "runtimeTargets": {
  2873. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2874. "assetType": "runtime",
  2875. "rid": "win"
  2876. }
  2877. }
  2878. },
  2879. "System.Security.Cryptography.Csp/4.3.0": {
  2880. "type": "package",
  2881. "dependencies": {
  2882. "Microsoft.NETCore.Platforms": "1.1.0",
  2883. "System.IO": "4.3.0",
  2884. "System.Reflection": "4.3.0",
  2885. "System.Resources.ResourceManager": "4.3.0",
  2886. "System.Runtime": "4.3.0",
  2887. "System.Runtime.Extensions": "4.3.0",
  2888. "System.Runtime.Handles": "4.3.0",
  2889. "System.Runtime.InteropServices": "4.3.0",
  2890. "System.Security.Cryptography.Algorithms": "4.3.0",
  2891. "System.Security.Cryptography.Encoding": "4.3.0",
  2892. "System.Security.Cryptography.Primitives": "4.3.0",
  2893. "System.Text.Encoding": "4.3.0",
  2894. "System.Threading": "4.3.0"
  2895. },
  2896. "compile": {
  2897. "ref/netstandard1.3/_._": {}
  2898. },
  2899. "runtimeTargets": {
  2900. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2901. "assetType": "runtime",
  2902. "rid": "unix"
  2903. },
  2904. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2905. "assetType": "runtime",
  2906. "rid": "win"
  2907. }
  2908. }
  2909. },
  2910. "System.Security.Cryptography.Encoding/4.3.0": {
  2911. "type": "package",
  2912. "dependencies": {
  2913. "Microsoft.NETCore.Platforms": "1.1.0",
  2914. "System.Collections": "4.3.0",
  2915. "System.Collections.Concurrent": "4.3.0",
  2916. "System.Linq": "4.3.0",
  2917. "System.Resources.ResourceManager": "4.3.0",
  2918. "System.Runtime": "4.3.0",
  2919. "System.Runtime.Extensions": "4.3.0",
  2920. "System.Runtime.Handles": "4.3.0",
  2921. "System.Runtime.InteropServices": "4.3.0",
  2922. "System.Security.Cryptography.Primitives": "4.3.0",
  2923. "System.Text.Encoding": "4.3.0",
  2924. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2925. },
  2926. "compile": {
  2927. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2928. "related": ".xml"
  2929. }
  2930. },
  2931. "runtimeTargets": {
  2932. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2933. "assetType": "runtime",
  2934. "rid": "unix"
  2935. },
  2936. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2937. "assetType": "runtime",
  2938. "rid": "win"
  2939. }
  2940. }
  2941. },
  2942. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2943. "type": "package",
  2944. "dependencies": {
  2945. "System.Collections": "4.3.0",
  2946. "System.IO": "4.3.0",
  2947. "System.Resources.ResourceManager": "4.3.0",
  2948. "System.Runtime": "4.3.0",
  2949. "System.Runtime.Extensions": "4.3.0",
  2950. "System.Runtime.Handles": "4.3.0",
  2951. "System.Runtime.InteropServices": "4.3.0",
  2952. "System.Runtime.Numerics": "4.3.0",
  2953. "System.Security.Cryptography.Algorithms": "4.3.0",
  2954. "System.Security.Cryptography.Encoding": "4.3.0",
  2955. "System.Security.Cryptography.Primitives": "4.3.0",
  2956. "System.Text.Encoding": "4.3.0",
  2957. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2958. },
  2959. "compile": {
  2960. "ref/netstandard1.6/_._": {}
  2961. },
  2962. "runtime": {
  2963. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2964. },
  2965. "runtimeTargets": {
  2966. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2967. "assetType": "runtime",
  2968. "rid": "unix"
  2969. }
  2970. }
  2971. },
  2972. "System.Security.Cryptography.Primitives/4.3.0": {
  2973. "type": "package",
  2974. "dependencies": {
  2975. "System.Diagnostics.Debug": "4.3.0",
  2976. "System.Globalization": "4.3.0",
  2977. "System.IO": "4.3.0",
  2978. "System.Resources.ResourceManager": "4.3.0",
  2979. "System.Runtime": "4.3.0",
  2980. "System.Threading": "4.3.0",
  2981. "System.Threading.Tasks": "4.3.0"
  2982. },
  2983. "compile": {
  2984. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2985. },
  2986. "runtime": {
  2987. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2988. }
  2989. },
  2990. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2991. "type": "package",
  2992. "compile": {
  2993. "ref/netstandard2.0/_._": {
  2994. "related": ".xml"
  2995. }
  2996. },
  2997. "runtime": {
  2998. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2999. "related": ".xml"
  3000. }
  3001. },
  3002. "runtimeTargets": {
  3003. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3004. "assetType": "runtime",
  3005. "rid": "win"
  3006. }
  3007. }
  3008. },
  3009. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3010. "type": "package",
  3011. "dependencies": {
  3012. "Microsoft.NETCore.Platforms": "1.1.0",
  3013. "System.Collections": "4.3.0",
  3014. "System.Diagnostics.Debug": "4.3.0",
  3015. "System.Globalization": "4.3.0",
  3016. "System.Globalization.Calendars": "4.3.0",
  3017. "System.IO": "4.3.0",
  3018. "System.IO.FileSystem": "4.3.0",
  3019. "System.IO.FileSystem.Primitives": "4.3.0",
  3020. "System.Resources.ResourceManager": "4.3.0",
  3021. "System.Runtime": "4.3.0",
  3022. "System.Runtime.Extensions": "4.3.0",
  3023. "System.Runtime.Handles": "4.3.0",
  3024. "System.Runtime.InteropServices": "4.3.0",
  3025. "System.Runtime.Numerics": "4.3.0",
  3026. "System.Security.Cryptography.Algorithms": "4.3.0",
  3027. "System.Security.Cryptography.Cng": "4.3.0",
  3028. "System.Security.Cryptography.Csp": "4.3.0",
  3029. "System.Security.Cryptography.Encoding": "4.3.0",
  3030. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3031. "System.Security.Cryptography.Primitives": "4.3.0",
  3032. "System.Text.Encoding": "4.3.0",
  3033. "System.Threading": "4.3.0",
  3034. "runtime.native.System": "4.3.0",
  3035. "runtime.native.System.Net.Http": "4.3.0",
  3036. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3037. },
  3038. "compile": {
  3039. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3040. "related": ".xml"
  3041. }
  3042. },
  3043. "runtimeTargets": {
  3044. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3045. "assetType": "runtime",
  3046. "rid": "unix"
  3047. },
  3048. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3049. "assetType": "runtime",
  3050. "rid": "win"
  3051. }
  3052. }
  3053. },
  3054. "System.Security.Permissions/4.7.0": {
  3055. "type": "package",
  3056. "dependencies": {
  3057. "System.Security.AccessControl": "4.7.0",
  3058. "System.Windows.Extensions": "4.7.0"
  3059. },
  3060. "compile": {
  3061. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3062. "related": ".xml"
  3063. }
  3064. },
  3065. "runtime": {
  3066. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3067. "related": ".xml"
  3068. }
  3069. }
  3070. },
  3071. "System.Security.Principal/4.3.0": {
  3072. "type": "package",
  3073. "dependencies": {
  3074. "System.Runtime": "4.3.0"
  3075. },
  3076. "compile": {
  3077. "ref/netstandard1.0/System.Security.Principal.dll": {
  3078. "related": ".xml"
  3079. }
  3080. },
  3081. "runtime": {
  3082. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3083. }
  3084. },
  3085. "System.Security.Principal.Windows/4.7.0": {
  3086. "type": "package",
  3087. "compile": {
  3088. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3089. "related": ".xml"
  3090. }
  3091. },
  3092. "runtime": {
  3093. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3094. "related": ".xml"
  3095. }
  3096. },
  3097. "runtimeTargets": {
  3098. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3099. "assetType": "runtime",
  3100. "rid": "unix"
  3101. },
  3102. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3103. "assetType": "runtime",
  3104. "rid": "win"
  3105. }
  3106. }
  3107. },
  3108. "System.Text.Encoding/4.3.0": {
  3109. "type": "package",
  3110. "dependencies": {
  3111. "Microsoft.NETCore.Platforms": "1.1.0",
  3112. "Microsoft.NETCore.Targets": "1.1.0",
  3113. "System.Runtime": "4.3.0"
  3114. },
  3115. "compile": {
  3116. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3117. "related": ".xml"
  3118. }
  3119. }
  3120. },
  3121. "System.Text.Encoding.CodePages/5.0.0": {
  3122. "type": "package",
  3123. "dependencies": {
  3124. "Microsoft.NETCore.Platforms": "5.0.0"
  3125. },
  3126. "compile": {
  3127. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3128. "related": ".xml"
  3129. }
  3130. },
  3131. "runtime": {
  3132. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3133. "related": ".xml"
  3134. }
  3135. },
  3136. "runtimeTargets": {
  3137. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3138. "assetType": "runtime",
  3139. "rid": "win"
  3140. }
  3141. }
  3142. },
  3143. "System.Text.Encoding.Extensions/4.3.0": {
  3144. "type": "package",
  3145. "dependencies": {
  3146. "Microsoft.NETCore.Platforms": "1.1.0",
  3147. "Microsoft.NETCore.Targets": "1.1.0",
  3148. "System.Runtime": "4.3.0",
  3149. "System.Text.Encoding": "4.3.0"
  3150. },
  3151. "compile": {
  3152. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3153. "related": ".xml"
  3154. }
  3155. }
  3156. },
  3157. "System.Text.Encodings.Web/8.0.0": {
  3158. "type": "package",
  3159. "dependencies": {
  3160. "System.Buffers": "4.5.1",
  3161. "System.Memory": "4.5.5",
  3162. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3163. },
  3164. "compile": {
  3165. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3166. "related": ".xml"
  3167. }
  3168. },
  3169. "runtime": {
  3170. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3171. "related": ".xml"
  3172. }
  3173. },
  3174. "build": {
  3175. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  3176. }
  3177. },
  3178. "System.Text.Json/8.0.5": {
  3179. "type": "package",
  3180. "dependencies": {
  3181. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3182. "System.Buffers": "4.5.1",
  3183. "System.Memory": "4.5.5",
  3184. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3185. "System.Text.Encodings.Web": "8.0.0",
  3186. "System.Threading.Tasks.Extensions": "4.5.4"
  3187. },
  3188. "compile": {
  3189. "lib/netstandard2.0/System.Text.Json.dll": {
  3190. "related": ".xml"
  3191. }
  3192. },
  3193. "runtime": {
  3194. "lib/netstandard2.0/System.Text.Json.dll": {
  3195. "related": ".xml"
  3196. }
  3197. },
  3198. "build": {
  3199. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  3200. }
  3201. },
  3202. "System.Text.RegularExpressions/4.3.0": {
  3203. "type": "package",
  3204. "dependencies": {
  3205. "System.Runtime": "4.3.0"
  3206. },
  3207. "compile": {
  3208. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3209. },
  3210. "runtime": {
  3211. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3212. }
  3213. },
  3214. "System.Threading/4.3.0": {
  3215. "type": "package",
  3216. "dependencies": {
  3217. "System.Runtime": "4.3.0",
  3218. "System.Threading.Tasks": "4.3.0"
  3219. },
  3220. "compile": {
  3221. "ref/netstandard1.3/System.Threading.dll": {
  3222. "related": ".xml"
  3223. }
  3224. },
  3225. "runtime": {
  3226. "lib/netstandard1.3/System.Threading.dll": {}
  3227. }
  3228. },
  3229. "System.Threading.Channels/7.0.0": {
  3230. "type": "package",
  3231. "compile": {
  3232. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3233. "related": ".xml"
  3234. }
  3235. },
  3236. "runtime": {
  3237. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3238. "related": ".xml"
  3239. }
  3240. },
  3241. "build": {
  3242. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3243. }
  3244. },
  3245. "System.Threading.Tasks/4.3.0": {
  3246. "type": "package",
  3247. "dependencies": {
  3248. "Microsoft.NETCore.Platforms": "1.1.0",
  3249. "Microsoft.NETCore.Targets": "1.1.0",
  3250. "System.Runtime": "4.3.0"
  3251. },
  3252. "compile": {
  3253. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3254. "related": ".xml"
  3255. }
  3256. }
  3257. },
  3258. "System.Threading.Tasks.Extensions/4.5.4": {
  3259. "type": "package",
  3260. "compile": {
  3261. "ref/netcoreapp2.1/_._": {}
  3262. },
  3263. "runtime": {
  3264. "lib/netcoreapp2.1/_._": {}
  3265. }
  3266. },
  3267. "System.Threading.Thread/4.3.0": {
  3268. "type": "package",
  3269. "dependencies": {
  3270. "System.Runtime": "4.3.0"
  3271. },
  3272. "compile": {
  3273. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3274. "related": ".xml"
  3275. }
  3276. },
  3277. "runtime": {
  3278. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3279. }
  3280. },
  3281. "System.Threading.ThreadPool/4.3.0": {
  3282. "type": "package",
  3283. "dependencies": {
  3284. "System.Runtime": "4.3.0",
  3285. "System.Runtime.Handles": "4.3.0"
  3286. },
  3287. "compile": {
  3288. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3289. "related": ".xml"
  3290. }
  3291. },
  3292. "runtime": {
  3293. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3294. }
  3295. },
  3296. "System.Threading.Timer/4.3.0": {
  3297. "type": "package",
  3298. "dependencies": {
  3299. "Microsoft.NETCore.Platforms": "1.1.0",
  3300. "Microsoft.NETCore.Targets": "1.1.0",
  3301. "System.Runtime": "4.3.0"
  3302. },
  3303. "compile": {
  3304. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3305. "related": ".xml"
  3306. }
  3307. }
  3308. },
  3309. "System.Windows.Extensions/4.7.0": {
  3310. "type": "package",
  3311. "dependencies": {
  3312. "System.Drawing.Common": "4.7.0"
  3313. },
  3314. "compile": {
  3315. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3316. "related": ".xml"
  3317. }
  3318. },
  3319. "runtime": {
  3320. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3321. "related": ".xml"
  3322. }
  3323. },
  3324. "runtimeTargets": {
  3325. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3326. "assetType": "runtime",
  3327. "rid": "win"
  3328. }
  3329. }
  3330. },
  3331. "System.Xml.ReaderWriter/4.3.0": {
  3332. "type": "package",
  3333. "dependencies": {
  3334. "System.Collections": "4.3.0",
  3335. "System.Diagnostics.Debug": "4.3.0",
  3336. "System.Globalization": "4.3.0",
  3337. "System.IO": "4.3.0",
  3338. "System.IO.FileSystem": "4.3.0",
  3339. "System.IO.FileSystem.Primitives": "4.3.0",
  3340. "System.Resources.ResourceManager": "4.3.0",
  3341. "System.Runtime": "4.3.0",
  3342. "System.Runtime.Extensions": "4.3.0",
  3343. "System.Runtime.InteropServices": "4.3.0",
  3344. "System.Text.Encoding": "4.3.0",
  3345. "System.Text.Encoding.Extensions": "4.3.0",
  3346. "System.Text.RegularExpressions": "4.3.0",
  3347. "System.Threading.Tasks": "4.3.0",
  3348. "System.Threading.Tasks.Extensions": "4.3.0"
  3349. },
  3350. "compile": {
  3351. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3352. "related": ".xml"
  3353. }
  3354. },
  3355. "runtime": {
  3356. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3357. }
  3358. },
  3359. "System.Xml.XDocument/4.3.0": {
  3360. "type": "package",
  3361. "dependencies": {
  3362. "System.Collections": "4.3.0",
  3363. "System.Diagnostics.Debug": "4.3.0",
  3364. "System.Diagnostics.Tools": "4.3.0",
  3365. "System.Globalization": "4.3.0",
  3366. "System.IO": "4.3.0",
  3367. "System.Reflection": "4.3.0",
  3368. "System.Resources.ResourceManager": "4.3.0",
  3369. "System.Runtime": "4.3.0",
  3370. "System.Runtime.Extensions": "4.3.0",
  3371. "System.Text.Encoding": "4.3.0",
  3372. "System.Threading": "4.3.0",
  3373. "System.Xml.ReaderWriter": "4.3.0"
  3374. },
  3375. "compile": {
  3376. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3377. "related": ".xml"
  3378. }
  3379. },
  3380. "runtime": {
  3381. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3382. }
  3383. },
  3384. "System.Xml.XmlDocument/4.3.0": {
  3385. "type": "package",
  3386. "dependencies": {
  3387. "System.Collections": "4.3.0",
  3388. "System.Diagnostics.Debug": "4.3.0",
  3389. "System.Globalization": "4.3.0",
  3390. "System.IO": "4.3.0",
  3391. "System.Resources.ResourceManager": "4.3.0",
  3392. "System.Runtime": "4.3.0",
  3393. "System.Runtime.Extensions": "4.3.0",
  3394. "System.Text.Encoding": "4.3.0",
  3395. "System.Threading": "4.3.0",
  3396. "System.Xml.ReaderWriter": "4.3.0"
  3397. },
  3398. "compile": {
  3399. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3400. "related": ".xml"
  3401. }
  3402. },
  3403. "runtime": {
  3404. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3405. }
  3406. },
  3407. "ZXing.Net/0.16.9": {
  3408. "type": "package",
  3409. "compile": {
  3410. "lib/net5.0/zxing.dll": {
  3411. "related": ".XML"
  3412. }
  3413. },
  3414. "runtime": {
  3415. "lib/net5.0/zxing.dll": {
  3416. "related": ".XML"
  3417. }
  3418. }
  3419. },
  3420. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3421. "type": "package",
  3422. "dependencies": {
  3423. "SixLabors.ImageSharp": "2.1.3",
  3424. "ZXing.Net": "0.16.9"
  3425. },
  3426. "compile": {
  3427. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3428. "related": ".pdb;.xml"
  3429. }
  3430. },
  3431. "runtime": {
  3432. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3433. "related": ".pdb;.xml"
  3434. }
  3435. }
  3436. },
  3437. "Ropin.Core.Common/1.0.0": {
  3438. "type": "project",
  3439. "framework": ".NETCoreApp,Version=v5.0",
  3440. "dependencies": {
  3441. "Coravel": "4.2.1",
  3442. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3443. "Newtonsoft.Json": "13.0.1",
  3444. "QRCoder": "1.4.3",
  3445. "SixLabors.ImageSharp": "2.1.6",
  3446. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3447. },
  3448. "compile": {
  3449. "bin/placeholder/Ropin.Core.Common.dll": {}
  3450. },
  3451. "runtime": {
  3452. "bin/placeholder/Ropin.Core.Common.dll": {}
  3453. }
  3454. },
  3455. "Ropin.Core.Extensions/1.0.0": {
  3456. "type": "project",
  3457. "framework": ".NETCoreApp,Version=v5.0",
  3458. "dependencies": {
  3459. "Autofac": "6.2.0",
  3460. "Autofac.Extras.DynamicProxy": "6.0.0",
  3461. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3462. "Ropin.Core.Common": "1.0.0",
  3463. "Ropin.Inspection.Common": "1.0.0",
  3464. "Ropin.Inspection.Service": "1.0.0",
  3465. "Ropin.Inspection.Tasks": "1.0.0",
  3466. "StackExchange.Redis": "1.2.4",
  3467. "log4net": "2.0.17"
  3468. },
  3469. "compile": {
  3470. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3471. },
  3472. "runtime": {
  3473. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3474. }
  3475. },
  3476. "Ropin.Inspection.Common/1.0.0": {
  3477. "type": "project",
  3478. "framework": ".NETCoreApp,Version=v5.0",
  3479. "dependencies": {
  3480. "FluentEmail.Smtp": "3.0.2",
  3481. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3482. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3483. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3484. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3485. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3486. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3487. "Microsoft.Extensions.Configuration": "5.0.0",
  3488. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3489. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3490. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3491. "Microsoft.Extensions.Http": "5.0.0",
  3492. "Newtonsoft.Json": "13.0.1",
  3493. "RabbitMQ.Client": "6.8.1",
  3494. "log4net": "2.0.17"
  3495. },
  3496. "compile": {
  3497. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3498. },
  3499. "runtime": {
  3500. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3501. }
  3502. },
  3503. "Ropin.Inspection.Model/1.0.0": {
  3504. "type": "project",
  3505. "framework": ".NETCoreApp,Version=v5.0",
  3506. "dependencies": {
  3507. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3508. "Microsoft.EntityFrameworkCore": "5.0.0",
  3509. "MySql.Data": "8.0.23",
  3510. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3511. "Ropin.Inspection.Common": "1.0.0"
  3512. },
  3513. "compile": {
  3514. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3515. },
  3516. "runtime": {
  3517. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3518. }
  3519. },
  3520. "Ropin.Inspection.Repository/1.0.0": {
  3521. "type": "project",
  3522. "framework": ".NETCoreApp,Version=v5.0",
  3523. "dependencies": {
  3524. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3525. "Microsoft.EntityFrameworkCore": "5.0.0",
  3526. "Ropin.Inspection.Model": "1.0.0"
  3527. },
  3528. "compile": {
  3529. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3530. },
  3531. "runtime": {
  3532. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3533. }
  3534. },
  3535. "Ropin.Inspection.Service/1.0.0": {
  3536. "type": "project",
  3537. "framework": ".NETCoreApp,Version=v5.0",
  3538. "dependencies": {
  3539. "AutoMapper": "10.1.1",
  3540. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3541. "Newtonsoft.Json": "13.0.1",
  3542. "Ropin.Core.Common": "1.0.0",
  3543. "Ropin.Inspection.Common": "1.0.0",
  3544. "Ropin.Inspection.Model": "1.0.0",
  3545. "Ropin.Inspection.Repository": "1.0.0",
  3546. "log4net": "2.0.17"
  3547. },
  3548. "compile": {
  3549. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3550. },
  3551. "runtime": {
  3552. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3553. }
  3554. },
  3555. "Ropin.Inspection.Tasks/1.0.0": {
  3556. "type": "project",
  3557. "framework": ".NETCoreApp,Version=v5.0",
  3558. "dependencies": {
  3559. "Quartz": "3.3.3",
  3560. "Ropin.Inspection.Common": "1.0.0",
  3561. "Ropin.Inspection.Model": "1.0.0",
  3562. "Ropin.Inspection.Service": "1.0.0"
  3563. },
  3564. "compile": {
  3565. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3566. },
  3567. "runtime": {
  3568. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3569. }
  3570. }
  3571. }
  3572. },
  3573. "libraries": {
  3574. "AdvancedStringBuilder/0.1.0": {
  3575. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3576. "type": "package",
  3577. "path": "advancedstringbuilder/0.1.0",
  3578. "files": [
  3579. ".nupkg.metadata",
  3580. ".signature.p7s",
  3581. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3582. "advancedstringbuilder.nuspec",
  3583. "lib/net40-client/AdvancedStringBuilder.dll",
  3584. "lib/net40-client/AdvancedStringBuilder.xml",
  3585. "lib/net45/AdvancedStringBuilder.dll",
  3586. "lib/net45/AdvancedStringBuilder.xml",
  3587. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3588. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3589. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3590. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3591. ]
  3592. },
  3593. "Autofac/6.2.0": {
  3594. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3595. "type": "package",
  3596. "path": "autofac/6.2.0",
  3597. "files": [
  3598. ".nupkg.metadata",
  3599. ".signature.p7s",
  3600. "autofac.6.2.0.nupkg.sha512",
  3601. "autofac.nuspec",
  3602. "icon.png",
  3603. "lib/net5.0/Autofac.dll",
  3604. "lib/net5.0/Autofac.pdb",
  3605. "lib/net5.0/Autofac.xml",
  3606. "lib/netstandard2.0/Autofac.dll",
  3607. "lib/netstandard2.0/Autofac.pdb",
  3608. "lib/netstandard2.0/Autofac.xml",
  3609. "lib/netstandard2.1/Autofac.dll",
  3610. "lib/netstandard2.1/Autofac.pdb",
  3611. "lib/netstandard2.1/Autofac.xml"
  3612. ]
  3613. },
  3614. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3615. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3616. "type": "package",
  3617. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3618. "files": [
  3619. ".nupkg.metadata",
  3620. ".signature.p7s",
  3621. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3622. "autofac.extensions.dependencyinjection.nuspec",
  3623. "icon.png",
  3624. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3625. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3626. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3627. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3628. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3629. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3630. ]
  3631. },
  3632. "Autofac.Extras.DynamicProxy/6.0.0": {
  3633. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3634. "type": "package",
  3635. "path": "autofac.extras.dynamicproxy/6.0.0",
  3636. "files": [
  3637. ".nupkg.metadata",
  3638. ".signature.p7s",
  3639. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3640. "autofac.extras.dynamicproxy.nuspec",
  3641. "icon.png",
  3642. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3643. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3644. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3645. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3646. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3647. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3648. ]
  3649. },
  3650. "AutoMapper/10.1.1": {
  3651. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3652. "type": "package",
  3653. "path": "automapper/10.1.1",
  3654. "files": [
  3655. ".nupkg.metadata",
  3656. ".signature.p7s",
  3657. "automapper.10.1.1.nupkg.sha512",
  3658. "automapper.nuspec",
  3659. "icon.png",
  3660. "lib/net461/AutoMapper.dll",
  3661. "lib/net461/AutoMapper.xml",
  3662. "lib/netstandard2.0/AutoMapper.dll",
  3663. "lib/netstandard2.0/AutoMapper.xml"
  3664. ]
  3665. },
  3666. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3667. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3668. "type": "package",
  3669. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3674. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3675. "icon.png",
  3676. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3677. ]
  3678. },
  3679. "BouncyCastle.NetCore/1.8.5": {
  3680. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3681. "type": "package",
  3682. "path": "bouncycastle.netcore/1.8.5",
  3683. "files": [
  3684. ".nupkg.metadata",
  3685. ".signature.p7s",
  3686. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3687. "bouncycastle.netcore.nuspec",
  3688. "lib/Mono/BouncyCastle.Crypto.dll",
  3689. "lib/Mono/BouncyCastle.Crypto.xml",
  3690. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3691. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3692. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3693. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3694. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3695. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3696. "lib/net20/BouncyCastle.Crypto.dll",
  3697. "lib/net20/BouncyCastle.Crypto.xml",
  3698. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3699. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3700. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3701. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3702. ]
  3703. },
  3704. "Castle.Core/4.4.0": {
  3705. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3706. "type": "package",
  3707. "path": "castle.core/4.4.0",
  3708. "files": [
  3709. ".nupkg.metadata",
  3710. ".signature.p7s",
  3711. "ASL - Apache Software Foundation License.txt",
  3712. "CHANGELOG.md",
  3713. "LICENSE",
  3714. "castle.core.4.4.0.nupkg.sha512",
  3715. "castle.core.nuspec",
  3716. "lib/net35/Castle.Core.dll",
  3717. "lib/net35/Castle.Core.xml",
  3718. "lib/net40/Castle.Core.dll",
  3719. "lib/net40/Castle.Core.xml",
  3720. "lib/net45/Castle.Core.dll",
  3721. "lib/net45/Castle.Core.xml",
  3722. "lib/netstandard1.3/Castle.Core.dll",
  3723. "lib/netstandard1.3/Castle.Core.xml",
  3724. "lib/netstandard1.5/Castle.Core.dll",
  3725. "lib/netstandard1.5/Castle.Core.xml",
  3726. "readme.txt"
  3727. ]
  3728. },
  3729. "Coravel/4.2.1": {
  3730. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3731. "type": "package",
  3732. "path": "coravel/4.2.1",
  3733. "files": [
  3734. ".nupkg.metadata",
  3735. ".signature.p7s",
  3736. "coravel.4.2.1.nupkg.sha512",
  3737. "coravel.nuspec",
  3738. "lib/netstandard2.0/Coravel.dll",
  3739. "lib/netstandard2.0/Coravel.xml",
  3740. "logo.png",
  3741. "readme.md"
  3742. ]
  3743. },
  3744. "FBoxClientDriver/1.2.0": {
  3745. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3746. "type": "package",
  3747. "path": "fboxclientdriver/1.2.0",
  3748. "files": [
  3749. ".nupkg.metadata",
  3750. ".signature.p7s",
  3751. "fboxclientdriver.1.2.0.nupkg.sha512",
  3752. "fboxclientdriver.nuspec",
  3753. "lib/netstandard2.0/FBoxClientDriver.dll",
  3754. "lib/netstandard2.0/FBoxClientDriver.xml"
  3755. ]
  3756. },
  3757. "FBoxClientDriver.Contract/1.2.0": {
  3758. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3759. "type": "package",
  3760. "path": "fboxclientdriver.contract/1.2.0",
  3761. "files": [
  3762. ".nupkg.metadata",
  3763. ".signature.p7s",
  3764. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3765. "fboxclientdriver.contract.nuspec",
  3766. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3767. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3768. ]
  3769. },
  3770. "FluentEmail.Core/3.0.2": {
  3771. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3772. "type": "package",
  3773. "path": "fluentemail.core/3.0.2",
  3774. "files": [
  3775. ".nupkg.metadata",
  3776. ".signature.p7s",
  3777. "fluentemail.core.3.0.2.nupkg.sha512",
  3778. "fluentemail.core.nuspec",
  3779. "fluentemail_logo_64x64.png",
  3780. "lib/netstandard2.0/FluentEmail.Core.dll"
  3781. ]
  3782. },
  3783. "FluentEmail.Smtp/3.0.2": {
  3784. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3785. "type": "package",
  3786. "path": "fluentemail.smtp/3.0.2",
  3787. "files": [
  3788. ".nupkg.metadata",
  3789. ".signature.p7s",
  3790. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3791. "fluentemail.smtp.nuspec",
  3792. "fluentemail_logo_64x64.png",
  3793. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3794. ]
  3795. },
  3796. "Google.Protobuf/3.11.4": {
  3797. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3798. "type": "package",
  3799. "path": "google.protobuf/3.11.4",
  3800. "files": [
  3801. ".nupkg.metadata",
  3802. ".signature.p7s",
  3803. "google.protobuf.3.11.4.nupkg.sha512",
  3804. "google.protobuf.nuspec",
  3805. "lib/net45/Google.Protobuf.dll",
  3806. "lib/net45/Google.Protobuf.pdb",
  3807. "lib/net45/Google.Protobuf.xml",
  3808. "lib/netstandard1.0/Google.Protobuf.dll",
  3809. "lib/netstandard1.0/Google.Protobuf.pdb",
  3810. "lib/netstandard1.0/Google.Protobuf.xml",
  3811. "lib/netstandard2.0/Google.Protobuf.dll",
  3812. "lib/netstandard2.0/Google.Protobuf.pdb",
  3813. "lib/netstandard2.0/Google.Protobuf.xml"
  3814. ]
  3815. },
  3816. "IdentityModel/4.3.1": {
  3817. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3818. "type": "package",
  3819. "path": "identitymodel/4.3.1",
  3820. "files": [
  3821. ".nupkg.metadata",
  3822. ".signature.p7s",
  3823. "icon.jpg",
  3824. "identitymodel.4.3.1.nupkg.sha512",
  3825. "identitymodel.nuspec",
  3826. "lib/net461/IdentityModel.dll",
  3827. "lib/net461/IdentityModel.pdb",
  3828. "lib/net461/IdentityModel.xml",
  3829. "lib/net472/IdentityModel.dll",
  3830. "lib/net472/IdentityModel.pdb",
  3831. "lib/net472/IdentityModel.xml",
  3832. "lib/netstandard2.0/IdentityModel.dll",
  3833. "lib/netstandard2.0/IdentityModel.pdb",
  3834. "lib/netstandard2.0/IdentityModel.xml"
  3835. ]
  3836. },
  3837. "InfluxData.Net/8.0.1": {
  3838. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3839. "type": "package",
  3840. "path": "influxdata.net/8.0.1",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "influxdata.net.8.0.1.nupkg.sha512",
  3845. "influxdata.net.nuspec",
  3846. "lib/net461/InfluxData.Net.Common.dll",
  3847. "lib/net461/InfluxData.Net.Common.dll.config",
  3848. "lib/net461/InfluxData.Net.Common.pdb",
  3849. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3850. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3851. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3852. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3853. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3854. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3855. "lib/net461/InfluxData.Net.dll",
  3856. "lib/net461/InfluxData.Net.dll.config",
  3857. "lib/net461/InfluxData.Net.pdb",
  3858. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3859. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3860. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3861. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3862. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3863. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3864. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3865. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3866. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3867. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3868. "lib/netstandard2.0/InfluxData.Net.dll",
  3869. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3870. "lib/netstandard2.0/InfluxData.Net.pdb"
  3871. ]
  3872. },
  3873. "InitQ/1.0.0.14": {
  3874. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3875. "type": "package",
  3876. "path": "initq/1.0.0.14",
  3877. "files": [
  3878. ".nupkg.metadata",
  3879. ".signature.p7s",
  3880. "initq.1.0.0.14.nupkg.sha512",
  3881. "initq.nuspec",
  3882. "lib/netcoreapp2.1/InitQ.dll"
  3883. ]
  3884. },
  3885. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3886. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3887. "type": "package",
  3888. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "LICENSE.txt",
  3893. "advanced-string-builder-license.txt",
  3894. "chakra-samples-license.txt",
  3895. "icon.png",
  3896. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3897. "javascriptengineswitcher.chakracore.nuspec",
  3898. "jsrt-dotnet-license.txt",
  3899. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3900. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3901. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3902. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3903. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3904. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3905. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3906. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3907. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3908. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3909. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3910. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3911. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3912. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3913. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3914. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3915. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3916. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3917. "polyfills-for-old-dot-net-license.txt",
  3918. "readme.txt"
  3919. ]
  3920. },
  3921. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3922. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3923. "type": "package",
  3924. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3925. "files": [
  3926. ".nupkg.metadata",
  3927. ".signature.p7s",
  3928. "LICENSE.txt",
  3929. "chakra-core-license.txt",
  3930. "icon.png",
  3931. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3932. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3933. "readme.txt",
  3934. "runtimes/linux-x64/native/libChakraCore.so"
  3935. ]
  3936. },
  3937. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3938. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3939. "type": "package",
  3940. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3941. "hasTools": true,
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "LICENSE.txt",
  3946. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3947. "chakra-core-license.txt",
  3948. "icon.png",
  3949. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3950. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3951. "readme.txt",
  3952. "runtimes/win-x64/native/ChakraCore.dll",
  3953. "tools/Install.ps1",
  3954. "tools/Uninstall.ps1"
  3955. ]
  3956. },
  3957. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3958. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3959. "type": "package",
  3960. "path": "javascriptengineswitcher.core/3.21.0",
  3961. "files": [
  3962. ".nupkg.metadata",
  3963. ".signature.p7s",
  3964. "LICENSE.txt",
  3965. "advanced-string-builder-license.txt",
  3966. "icon.png",
  3967. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3968. "javascriptengineswitcher.core.nuspec",
  3969. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3970. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3971. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3972. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3973. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3974. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3975. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3976. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3977. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3978. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3979. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3980. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3981. "readme.txt"
  3982. ]
  3983. },
  3984. "K4os.Compression.LZ4/1.1.11": {
  3985. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3986. "type": "package",
  3987. "path": "k4os.compression.lz4/1.1.11",
  3988. "files": [
  3989. ".nupkg.metadata",
  3990. ".signature.p7s",
  3991. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3992. "k4os.compression.lz4.nuspec",
  3993. "lib/net45/K4os.Compression.LZ4.dll",
  3994. "lib/net45/K4os.Compression.LZ4.xml",
  3995. "lib/net46/K4os.Compression.LZ4.dll",
  3996. "lib/net46/K4os.Compression.LZ4.xml",
  3997. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3998. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3999. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4000. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4001. ]
  4002. },
  4003. "K4os.Compression.LZ4.Streams/1.1.11": {
  4004. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4005. "type": "package",
  4006. "path": "k4os.compression.lz4.streams/1.1.11",
  4007. "files": [
  4008. ".nupkg.metadata",
  4009. ".signature.p7s",
  4010. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4011. "k4os.compression.lz4.streams.nuspec",
  4012. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4013. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4014. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4015. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4016. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4017. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4018. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4019. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4020. ]
  4021. },
  4022. "K4os.Hash.xxHash/1.0.6": {
  4023. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4024. "type": "package",
  4025. "path": "k4os.hash.xxhash/1.0.6",
  4026. "files": [
  4027. ".nupkg.metadata",
  4028. ".signature.p7s",
  4029. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4030. "k4os.hash.xxhash.nuspec",
  4031. "lib/net45/K4os.Hash.xxHash.dll",
  4032. "lib/net45/K4os.Hash.xxHash.xml",
  4033. "lib/net46/K4os.Hash.xxHash.dll",
  4034. "lib/net46/K4os.Hash.xxHash.xml",
  4035. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4036. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4037. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4038. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4039. ]
  4040. },
  4041. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4042. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4043. "type": "package",
  4044. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4045. "files": [
  4046. ".nupkg.metadata",
  4047. ".signature.p7s",
  4048. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4049. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4050. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4051. "linqkit.microsoft.entityframeworkcore.nuspec"
  4052. ]
  4053. },
  4054. "log4net/2.0.17": {
  4055. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4056. "type": "package",
  4057. "path": "log4net/2.0.17",
  4058. "files": [
  4059. ".nupkg.metadata",
  4060. ".signature.p7s",
  4061. "lib/net20/log4net.dll",
  4062. "lib/net20/log4net.xml",
  4063. "lib/net35/log4net.dll",
  4064. "lib/net35/log4net.xml",
  4065. "lib/net40-client/log4net.dll",
  4066. "lib/net40-client/log4net.xml",
  4067. "lib/net40/log4net.dll",
  4068. "lib/net40/log4net.xml",
  4069. "lib/net45/log4net.dll",
  4070. "lib/net45/log4net.xml",
  4071. "lib/netstandard1.3/log4net.dll",
  4072. "lib/netstandard1.3/log4net.xml",
  4073. "lib/netstandard2.0/log4net.dll",
  4074. "lib/netstandard2.0/log4net.xml",
  4075. "log4net.2.0.17.nupkg.sha512",
  4076. "log4net.nuspec",
  4077. "package-icon.png"
  4078. ]
  4079. },
  4080. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4081. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4082. "type": "package",
  4083. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4084. "files": [
  4085. ".nupkg.metadata",
  4086. ".signature.p7s",
  4087. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4088. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4089. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4090. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4091. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4092. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4093. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4094. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4095. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4096. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4097. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4098. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  4099. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  4100. "microsoft.aspnet.signalr.client.nuspec"
  4101. ]
  4102. },
  4103. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4104. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4105. "type": "package",
  4106. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4107. "files": [
  4108. ".nupkg.metadata",
  4109. ".signature.p7s",
  4110. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4111. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4112. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4113. "microsoft.aspnetcore.http.abstractions.nuspec"
  4114. ]
  4115. },
  4116. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4117. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4118. "type": "package",
  4119. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "Icon.png",
  4124. "THIRD-PARTY-NOTICES.TXT",
  4125. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4126. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4127. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4128. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4129. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4130. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4131. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4132. "microsoft.aspnetcore.http.features.nuspec"
  4133. ]
  4134. },
  4135. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4136. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4137. "type": "package",
  4138. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "Icon.png",
  4143. "THIRD-PARTY-NOTICES.TXT",
  4144. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4145. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4146. "microsoft.aspnetcore.nodeservices.nuspec"
  4147. ]
  4148. },
  4149. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  4150. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  4151. "type": "package",
  4152. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  4153. "files": [
  4154. ".nupkg.metadata",
  4155. ".signature.p7s",
  4156. "Icon.png",
  4157. "LICENSE.TXT",
  4158. "PACKAGE.md",
  4159. "THIRD-PARTY-NOTICES.TXT",
  4160. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  4161. "buildTransitive/net462/_._",
  4162. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  4163. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  4164. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4165. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4166. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4167. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4168. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  4169. "microsoft.bcl.asyncinterfaces.nuspec",
  4170. "useSharedDesignerContext.txt"
  4171. ]
  4172. },
  4173. "Microsoft.Bcl.Memory/9.0.0": {
  4174. "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
  4175. "type": "package",
  4176. "path": "microsoft.bcl.memory/9.0.0",
  4177. "files": [
  4178. ".nupkg.metadata",
  4179. ".signature.p7s",
  4180. "Icon.png",
  4181. "LICENSE.TXT",
  4182. "PACKAGE.md",
  4183. "THIRD-PARTY-NOTICES.TXT",
  4184. "buildTransitive/net461/Microsoft.Bcl.Memory.targets",
  4185. "buildTransitive/net462/_._",
  4186. "buildTransitive/net8.0/_._",
  4187. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
  4188. "lib/net462/Microsoft.Bcl.Memory.dll",
  4189. "lib/net462/Microsoft.Bcl.Memory.xml",
  4190. "lib/net8.0/Microsoft.Bcl.Memory.dll",
  4191. "lib/net8.0/Microsoft.Bcl.Memory.xml",
  4192. "lib/net9.0/Microsoft.Bcl.Memory.dll",
  4193. "lib/net9.0/Microsoft.Bcl.Memory.xml",
  4194. "lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
  4195. "lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
  4196. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
  4197. "lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
  4198. "microsoft.bcl.memory.9.0.0.nupkg.sha512",
  4199. "microsoft.bcl.memory.nuspec",
  4200. "useSharedDesignerContext.txt"
  4201. ]
  4202. },
  4203. "Microsoft.Bcl.TimeProvider/8.0.1": {
  4204. "sha512": "C7kWHJnMRY7EvJev2S8+yJHZ1y7A4ZlLbA4NE+O23BDIAN5mHeqND1m+SKv1ChRS5YlCDW7yAMUe7lttRsJaAA==",
  4205. "type": "package",
  4206. "path": "microsoft.bcl.timeprovider/8.0.1",
  4207. "files": [
  4208. ".nupkg.metadata",
  4209. ".signature.p7s",
  4210. "Icon.png",
  4211. "LICENSE.TXT",
  4212. "PACKAGE.md",
  4213. "THIRD-PARTY-NOTICES.TXT",
  4214. "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets",
  4215. "buildTransitive/net462/_._",
  4216. "buildTransitive/net6.0/_._",
  4217. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets",
  4218. "lib/net462/Microsoft.Bcl.TimeProvider.dll",
  4219. "lib/net462/Microsoft.Bcl.TimeProvider.xml",
  4220. "lib/net8.0/Microsoft.Bcl.TimeProvider.dll",
  4221. "lib/net8.0/Microsoft.Bcl.TimeProvider.xml",
  4222. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll",
  4223. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml",
  4224. "microsoft.bcl.timeprovider.8.0.1.nupkg.sha512",
  4225. "microsoft.bcl.timeprovider.nuspec",
  4226. "useSharedDesignerContext.txt"
  4227. ]
  4228. },
  4229. "Microsoft.CSharp/4.7.0": {
  4230. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4231. "type": "package",
  4232. "path": "microsoft.csharp/4.7.0",
  4233. "files": [
  4234. ".nupkg.metadata",
  4235. ".signature.p7s",
  4236. "LICENSE.TXT",
  4237. "THIRD-PARTY-NOTICES.TXT",
  4238. "lib/MonoAndroid10/_._",
  4239. "lib/MonoTouch10/_._",
  4240. "lib/net45/_._",
  4241. "lib/netcore50/Microsoft.CSharp.dll",
  4242. "lib/netcoreapp2.0/_._",
  4243. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4244. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4245. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4246. "lib/portable-net45+win8+wp8+wpa81/_._",
  4247. "lib/uap10.0.16299/_._",
  4248. "lib/win8/_._",
  4249. "lib/wp80/_._",
  4250. "lib/wpa81/_._",
  4251. "lib/xamarinios10/_._",
  4252. "lib/xamarinmac20/_._",
  4253. "lib/xamarintvos10/_._",
  4254. "lib/xamarinwatchos10/_._",
  4255. "microsoft.csharp.4.7.0.nupkg.sha512",
  4256. "microsoft.csharp.nuspec",
  4257. "ref/MonoAndroid10/_._",
  4258. "ref/MonoTouch10/_._",
  4259. "ref/net45/_._",
  4260. "ref/netcore50/Microsoft.CSharp.dll",
  4261. "ref/netcore50/Microsoft.CSharp.xml",
  4262. "ref/netcore50/de/Microsoft.CSharp.xml",
  4263. "ref/netcore50/es/Microsoft.CSharp.xml",
  4264. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4265. "ref/netcore50/it/Microsoft.CSharp.xml",
  4266. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4267. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4268. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4269. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4270. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4271. "ref/netcoreapp2.0/_._",
  4272. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4273. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4274. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4275. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4276. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4277. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4278. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4279. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4280. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4281. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4282. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4283. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4284. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4285. "ref/portable-net45+win8+wp8+wpa81/_._",
  4286. "ref/uap10.0.16299/_._",
  4287. "ref/win8/_._",
  4288. "ref/wp80/_._",
  4289. "ref/wpa81/_._",
  4290. "ref/xamarinios10/_._",
  4291. "ref/xamarinmac20/_._",
  4292. "ref/xamarintvos10/_._",
  4293. "ref/xamarinwatchos10/_._",
  4294. "useSharedDesignerContext.txt",
  4295. "version.txt"
  4296. ]
  4297. },
  4298. "Microsoft.EntityFrameworkCore/5.0.0": {
  4299. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4300. "type": "package",
  4301. "path": "microsoft.entityframeworkcore/5.0.0",
  4302. "files": [
  4303. ".nupkg.metadata",
  4304. ".signature.p7s",
  4305. "Icon.png",
  4306. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4307. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4308. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4309. "microsoft.entityframeworkcore.nuspec"
  4310. ]
  4311. },
  4312. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4313. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4314. "type": "package",
  4315. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4316. "files": [
  4317. ".nupkg.metadata",
  4318. ".signature.p7s",
  4319. "Icon.png",
  4320. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4321. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4322. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4323. "microsoft.entityframeworkcore.abstractions.nuspec"
  4324. ]
  4325. },
  4326. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4327. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4328. "type": "package",
  4329. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4330. "files": [
  4331. ".nupkg.metadata",
  4332. ".signature.p7s",
  4333. "Icon.png",
  4334. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4335. "lib/netstandard2.0/_._",
  4336. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4337. "microsoft.entityframeworkcore.analyzers.nuspec"
  4338. ]
  4339. },
  4340. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4341. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4342. "type": "package",
  4343. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "Icon.png",
  4348. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4349. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4350. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4351. "microsoft.entityframeworkcore.relational.nuspec"
  4352. ]
  4353. },
  4354. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4355. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4356. "type": "package",
  4357. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4358. "hasTools": true,
  4359. "files": [
  4360. ".nupkg.metadata",
  4361. ".signature.p7s",
  4362. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4363. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4364. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4365. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4366. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4367. "microsoft.extensions.apidescription.server.nuspec",
  4368. "tools/Newtonsoft.Json.dll",
  4369. "tools/dotnet-getdocument.deps.json",
  4370. "tools/dotnet-getdocument.dll",
  4371. "tools/dotnet-getdocument.runtimeconfig.json",
  4372. "tools/net461-x86/GetDocument.Insider.exe",
  4373. "tools/net461-x86/GetDocument.Insider.exe.config",
  4374. "tools/net461/GetDocument.Insider.exe",
  4375. "tools/net461/GetDocument.Insider.exe.config",
  4376. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4377. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4378. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4379. ]
  4380. },
  4381. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4382. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4383. "type": "package",
  4384. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4385. "files": [
  4386. ".nupkg.metadata",
  4387. ".signature.p7s",
  4388. "Icon.png",
  4389. "LICENSE.TXT",
  4390. "THIRD-PARTY-NOTICES.TXT",
  4391. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4392. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4393. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4394. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4395. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4396. "microsoft.extensions.caching.abstractions.nuspec",
  4397. "useSharedDesignerContext.txt",
  4398. "version.txt"
  4399. ]
  4400. },
  4401. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4402. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4403. "type": "package",
  4404. "path": "microsoft.extensions.caching.memory/5.0.0",
  4405. "files": [
  4406. ".nupkg.metadata",
  4407. ".signature.p7s",
  4408. "Icon.png",
  4409. "LICENSE.TXT",
  4410. "THIRD-PARTY-NOTICES.TXT",
  4411. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4412. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4413. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4414. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4415. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4416. "microsoft.extensions.caching.memory.nuspec",
  4417. "useSharedDesignerContext.txt",
  4418. "version.txt"
  4419. ]
  4420. },
  4421. "Microsoft.Extensions.Configuration/5.0.0": {
  4422. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4423. "type": "package",
  4424. "path": "microsoft.extensions.configuration/5.0.0",
  4425. "files": [
  4426. ".nupkg.metadata",
  4427. ".signature.p7s",
  4428. "Icon.png",
  4429. "LICENSE.TXT",
  4430. "THIRD-PARTY-NOTICES.TXT",
  4431. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4432. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4433. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4434. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4435. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4436. "microsoft.extensions.configuration.nuspec",
  4437. "useSharedDesignerContext.txt",
  4438. "version.txt"
  4439. ]
  4440. },
  4441. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4442. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4443. "type": "package",
  4444. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4445. "files": [
  4446. ".nupkg.metadata",
  4447. ".signature.p7s",
  4448. "Icon.png",
  4449. "LICENSE.TXT",
  4450. "THIRD-PARTY-NOTICES.TXT",
  4451. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4452. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4453. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4454. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4455. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4456. "microsoft.extensions.configuration.abstractions.nuspec",
  4457. "useSharedDesignerContext.txt",
  4458. "version.txt"
  4459. ]
  4460. },
  4461. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4462. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4463. "type": "package",
  4464. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4465. "files": [
  4466. ".nupkg.metadata",
  4467. ".signature.p7s",
  4468. "Icon.png",
  4469. "LICENSE.TXT",
  4470. "THIRD-PARTY-NOTICES.TXT",
  4471. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4472. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4473. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4474. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4475. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4476. "microsoft.extensions.configuration.binder.nuspec",
  4477. "useSharedDesignerContext.txt",
  4478. "version.txt"
  4479. ]
  4480. },
  4481. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4482. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4483. "type": "package",
  4484. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4485. "files": [
  4486. ".nupkg.metadata",
  4487. ".signature.p7s",
  4488. "Icon.png",
  4489. "LICENSE.TXT",
  4490. "THIRD-PARTY-NOTICES.TXT",
  4491. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4492. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4493. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4494. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4495. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4496. "microsoft.extensions.configuration.fileextensions.nuspec",
  4497. "useSharedDesignerContext.txt",
  4498. "version.txt"
  4499. ]
  4500. },
  4501. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4502. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4503. "type": "package",
  4504. "path": "microsoft.extensions.configuration.json/5.0.0",
  4505. "files": [
  4506. ".nupkg.metadata",
  4507. ".signature.p7s",
  4508. "Icon.png",
  4509. "LICENSE.TXT",
  4510. "THIRD-PARTY-NOTICES.TXT",
  4511. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4512. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4513. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4514. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4515. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4516. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4517. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4518. "microsoft.extensions.configuration.json.nuspec",
  4519. "useSharedDesignerContext.txt",
  4520. "version.txt"
  4521. ]
  4522. },
  4523. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4524. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4525. "type": "package",
  4526. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4527. "files": [
  4528. ".nupkg.metadata",
  4529. ".signature.p7s",
  4530. "Icon.png",
  4531. "LICENSE.TXT",
  4532. "THIRD-PARTY-NOTICES.TXT",
  4533. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4534. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4535. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4536. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4537. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4538. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4539. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4540. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4541. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4542. "microsoft.extensions.dependencyinjection.nuspec",
  4543. "useSharedDesignerContext.txt",
  4544. "version.txt"
  4545. ]
  4546. },
  4547. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4548. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4549. "type": "package",
  4550. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "Icon.png",
  4555. "LICENSE.TXT",
  4556. "THIRD-PARTY-NOTICES.TXT",
  4557. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4558. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4559. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4560. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4561. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4562. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4563. "useSharedDesignerContext.txt",
  4564. "version.txt"
  4565. ]
  4566. },
  4567. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4568. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4569. "type": "package",
  4570. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4571. "files": [
  4572. ".nupkg.metadata",
  4573. ".signature.p7s",
  4574. "Icon.png",
  4575. "LICENSE.TXT",
  4576. "THIRD-PARTY-NOTICES.TXT",
  4577. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4578. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4579. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4580. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4581. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4582. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4583. "useSharedDesignerContext.txt",
  4584. "version.txt"
  4585. ]
  4586. },
  4587. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4588. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4589. "type": "package",
  4590. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4591. "files": [
  4592. ".nupkg.metadata",
  4593. ".signature.p7s",
  4594. "Icon.png",
  4595. "LICENSE.TXT",
  4596. "THIRD-PARTY-NOTICES.TXT",
  4597. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4598. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4599. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4600. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4601. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4602. "microsoft.extensions.fileproviders.physical.nuspec",
  4603. "useSharedDesignerContext.txt",
  4604. "version.txt"
  4605. ]
  4606. },
  4607. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4608. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4609. "type": "package",
  4610. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4611. "files": [
  4612. ".nupkg.metadata",
  4613. ".signature.p7s",
  4614. "Icon.png",
  4615. "LICENSE.TXT",
  4616. "THIRD-PARTY-NOTICES.TXT",
  4617. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4618. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4619. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4620. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4621. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4622. "microsoft.extensions.filesystemglobbing.nuspec",
  4623. "useSharedDesignerContext.txt",
  4624. "version.txt"
  4625. ]
  4626. },
  4627. "Microsoft.Extensions.Hosting/2.1.0": {
  4628. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4629. "type": "package",
  4630. "path": "microsoft.extensions.hosting/2.1.0",
  4631. "files": [
  4632. ".nupkg.metadata",
  4633. ".signature.p7s",
  4634. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4635. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4636. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4637. "microsoft.extensions.hosting.nuspec"
  4638. ]
  4639. },
  4640. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4641. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4642. "type": "package",
  4643. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4644. "files": [
  4645. ".nupkg.metadata",
  4646. ".signature.p7s",
  4647. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4648. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4649. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4650. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4651. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4652. "microsoft.extensions.hosting.abstractions.nuspec",
  4653. "packageIcon.png"
  4654. ]
  4655. },
  4656. "Microsoft.Extensions.Http/5.0.0": {
  4657. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4658. "type": "package",
  4659. "path": "microsoft.extensions.http/5.0.0",
  4660. "files": [
  4661. ".nupkg.metadata",
  4662. ".signature.p7s",
  4663. "Icon.png",
  4664. "LICENSE.TXT",
  4665. "THIRD-PARTY-NOTICES.TXT",
  4666. "lib/net461/Microsoft.Extensions.Http.dll",
  4667. "lib/net461/Microsoft.Extensions.Http.xml",
  4668. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4669. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4670. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4671. "microsoft.extensions.http.nuspec",
  4672. "useSharedDesignerContext.txt",
  4673. "version.txt"
  4674. ]
  4675. },
  4676. "Microsoft.Extensions.Logging/5.0.0": {
  4677. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4678. "type": "package",
  4679. "path": "microsoft.extensions.logging/5.0.0",
  4680. "files": [
  4681. ".nupkg.metadata",
  4682. ".signature.p7s",
  4683. "Icon.png",
  4684. "LICENSE.TXT",
  4685. "THIRD-PARTY-NOTICES.TXT",
  4686. "lib/net461/Microsoft.Extensions.Logging.dll",
  4687. "lib/net461/Microsoft.Extensions.Logging.xml",
  4688. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4689. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4690. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4691. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4692. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4693. "microsoft.extensions.logging.nuspec",
  4694. "useSharedDesignerContext.txt",
  4695. "version.txt"
  4696. ]
  4697. },
  4698. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4699. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4700. "type": "package",
  4701. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4702. "files": [
  4703. ".nupkg.metadata",
  4704. ".signature.p7s",
  4705. "Icon.png",
  4706. "LICENSE.TXT",
  4707. "THIRD-PARTY-NOTICES.TXT",
  4708. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4709. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4710. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4711. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4712. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4713. "microsoft.extensions.logging.abstractions.nuspec",
  4714. "useSharedDesignerContext.txt",
  4715. "version.txt"
  4716. ]
  4717. },
  4718. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4719. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4720. "type": "package",
  4721. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4722. "files": [
  4723. ".nupkg.metadata",
  4724. ".signature.p7s",
  4725. "Icon.png",
  4726. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4727. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4728. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4729. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4730. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4731. "microsoft.extensions.logging.configuration.nuspec"
  4732. ]
  4733. },
  4734. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4735. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4736. "type": "package",
  4737. "path": "microsoft.extensions.logging.console/3.1.30",
  4738. "files": [
  4739. ".nupkg.metadata",
  4740. ".signature.p7s",
  4741. "Icon.png",
  4742. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4743. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4744. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4745. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4746. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4747. "microsoft.extensions.logging.console.nuspec"
  4748. ]
  4749. },
  4750. "Microsoft.Extensions.Options/5.0.0": {
  4751. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4752. "type": "package",
  4753. "path": "microsoft.extensions.options/5.0.0",
  4754. "files": [
  4755. ".nupkg.metadata",
  4756. ".signature.p7s",
  4757. "Icon.png",
  4758. "LICENSE.TXT",
  4759. "THIRD-PARTY-NOTICES.TXT",
  4760. "lib/net461/Microsoft.Extensions.Options.dll",
  4761. "lib/net461/Microsoft.Extensions.Options.xml",
  4762. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4763. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4764. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4765. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4766. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4767. "microsoft.extensions.options.nuspec",
  4768. "useSharedDesignerContext.txt",
  4769. "version.txt"
  4770. ]
  4771. },
  4772. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4773. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4774. "type": "package",
  4775. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4776. "files": [
  4777. ".nupkg.metadata",
  4778. ".signature.p7s",
  4779. "Icon.png",
  4780. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4781. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4782. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4783. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4784. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4785. "microsoft.extensions.options.configurationextensions.nuspec"
  4786. ]
  4787. },
  4788. "Microsoft.Extensions.Primitives/5.0.0": {
  4789. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4790. "type": "package",
  4791. "path": "microsoft.extensions.primitives/5.0.0",
  4792. "files": [
  4793. ".nupkg.metadata",
  4794. ".signature.p7s",
  4795. "Icon.png",
  4796. "LICENSE.TXT",
  4797. "THIRD-PARTY-NOTICES.TXT",
  4798. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4799. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4800. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4801. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4802. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4803. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4804. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4805. "microsoft.extensions.primitives.nuspec",
  4806. "useSharedDesignerContext.txt",
  4807. "version.txt"
  4808. ]
  4809. },
  4810. "Microsoft.IdentityModel.Abstractions/8.6.0": {
  4811. "sha512": "ewgV0sc2B3tjes8+OCRGE08Uxsey3qFfOD8vNq2gTs9k0/zPZ0MejK7Cb/eAW2c2Oz+IQHqgZkTycrAKYBD5yw==",
  4812. "type": "package",
  4813. "path": "microsoft.identitymodel.abstractions/8.6.0",
  4814. "files": [
  4815. ".nupkg.metadata",
  4816. ".signature.p7s",
  4817. "README.md",
  4818. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  4819. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  4820. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  4821. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  4822. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  4823. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  4824. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  4825. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  4826. "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
  4827. "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
  4828. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  4829. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  4830. "microsoft.identitymodel.abstractions.8.6.0.nupkg.sha512",
  4831. "microsoft.identitymodel.abstractions.nuspec"
  4832. ]
  4833. },
  4834. "Microsoft.IdentityModel.JsonWebTokens/8.6.0": {
  4835. "sha512": "g/CFN/OzAhJb9a94ep6/xv4b9fOUL8heFkKDwC/HNb17tUDOIPN5iVawisfZ0p1xjJlmVyYWIggnECqIfX8Rfw==",
  4836. "type": "package",
  4837. "path": "microsoft.identitymodel.jsonwebtokens/8.6.0",
  4838. "files": [
  4839. ".nupkg.metadata",
  4840. ".signature.p7s",
  4841. "README.md",
  4842. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  4843. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  4844. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  4845. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  4846. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4847. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4848. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4849. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4850. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4851. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4852. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4853. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4854. "microsoft.identitymodel.jsonwebtokens.8.6.0.nupkg.sha512",
  4855. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4856. ]
  4857. },
  4858. "Microsoft.IdentityModel.Logging/8.6.0": {
  4859. "sha512": "PqkPSoENwbGQenGQT270hZIt5p36Ta4YwDla4QId6LdqCeUDus63OChHBv+3AgujFVeBJlRrvmkN7H+Lug+u0g==",
  4860. "type": "package",
  4861. "path": "microsoft.identitymodel.logging/8.6.0",
  4862. "files": [
  4863. ".nupkg.metadata",
  4864. ".signature.p7s",
  4865. "README.md",
  4866. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  4867. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  4868. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  4869. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  4870. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  4871. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  4872. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  4873. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  4874. "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
  4875. "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
  4876. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4877. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4878. "microsoft.identitymodel.logging.8.6.0.nupkg.sha512",
  4879. "microsoft.identitymodel.logging.nuspec"
  4880. ]
  4881. },
  4882. "Microsoft.IdentityModel.Tokens/8.6.0": {
  4883. "sha512": "ga4ASKm8EezJ+Oj4uvTNE0xjIWy27Ix5pOZz737CnLzxv7ClFnelX+YWbFuiO1Qj2zVoIpsPqKJRGHGlpFF6eQ==",
  4884. "type": "package",
  4885. "path": "microsoft.identitymodel.tokens/8.6.0",
  4886. "files": [
  4887. ".nupkg.metadata",
  4888. ".signature.p7s",
  4889. "README.md",
  4890. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  4891. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  4892. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  4893. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  4894. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  4895. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  4896. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  4897. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  4898. "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
  4899. "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
  4900. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4901. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4902. "microsoft.identitymodel.tokens.8.6.0.nupkg.sha512",
  4903. "microsoft.identitymodel.tokens.nuspec"
  4904. ]
  4905. },
  4906. "Microsoft.NETCore.Platforms/5.0.0": {
  4907. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4908. "type": "package",
  4909. "path": "microsoft.netcore.platforms/5.0.0",
  4910. "files": [
  4911. ".nupkg.metadata",
  4912. ".signature.p7s",
  4913. "Icon.png",
  4914. "LICENSE.TXT",
  4915. "THIRD-PARTY-NOTICES.TXT",
  4916. "lib/netstandard1.0/_._",
  4917. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4918. "microsoft.netcore.platforms.nuspec",
  4919. "runtime.json",
  4920. "useSharedDesignerContext.txt",
  4921. "version.txt"
  4922. ]
  4923. },
  4924. "Microsoft.NETCore.Targets/1.1.0": {
  4925. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4926. "type": "package",
  4927. "path": "microsoft.netcore.targets/1.1.0",
  4928. "files": [
  4929. ".nupkg.metadata",
  4930. ".signature.p7s",
  4931. "ThirdPartyNotices.txt",
  4932. "dotnet_library_license.txt",
  4933. "lib/netstandard1.0/_._",
  4934. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4935. "microsoft.netcore.targets.nuspec",
  4936. "runtime.json"
  4937. ]
  4938. },
  4939. "Microsoft.OpenApi/1.2.3": {
  4940. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4941. "type": "package",
  4942. "path": "microsoft.openapi/1.2.3",
  4943. "files": [
  4944. ".nupkg.metadata",
  4945. ".signature.p7s",
  4946. "lib/net46/Microsoft.OpenApi.dll",
  4947. "lib/net46/Microsoft.OpenApi.pdb",
  4948. "lib/net46/Microsoft.OpenApi.xml",
  4949. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4950. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4951. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4952. "microsoft.openapi.1.2.3.nupkg.sha512",
  4953. "microsoft.openapi.nuspec"
  4954. ]
  4955. },
  4956. "Microsoft.Win32.Primitives/4.3.0": {
  4957. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4958. "type": "package",
  4959. "path": "microsoft.win32.primitives/4.3.0",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "lib/MonoAndroid10/_._",
  4966. "lib/MonoTouch10/_._",
  4967. "lib/net46/Microsoft.Win32.Primitives.dll",
  4968. "lib/xamarinios10/_._",
  4969. "lib/xamarinmac20/_._",
  4970. "lib/xamarintvos10/_._",
  4971. "lib/xamarinwatchos10/_._",
  4972. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4973. "microsoft.win32.primitives.nuspec",
  4974. "ref/MonoAndroid10/_._",
  4975. "ref/MonoTouch10/_._",
  4976. "ref/net46/Microsoft.Win32.Primitives.dll",
  4977. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4978. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4979. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4980. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4981. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4982. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4983. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4984. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4985. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4986. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4987. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4988. "ref/xamarinios10/_._",
  4989. "ref/xamarinmac20/_._",
  4990. "ref/xamarintvos10/_._",
  4991. "ref/xamarinwatchos10/_._"
  4992. ]
  4993. },
  4994. "Microsoft.Win32.SystemEvents/5.0.0": {
  4995. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4996. "type": "package",
  4997. "path": "microsoft.win32.systemevents/5.0.0",
  4998. "files": [
  4999. ".nupkg.metadata",
  5000. ".signature.p7s",
  5001. "Icon.png",
  5002. "LICENSE.TXT",
  5003. "THIRD-PARTY-NOTICES.TXT",
  5004. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5005. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5006. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5007. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5008. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5009. "microsoft.win32.systemevents.nuspec",
  5010. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5011. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5012. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5013. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5014. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5015. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5016. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5017. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5018. "useSharedDesignerContext.txt",
  5019. "version.txt"
  5020. ]
  5021. },
  5022. "MySql.Data/8.0.23": {
  5023. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5024. "type": "package",
  5025. "path": "mysql.data/8.0.23",
  5026. "files": [
  5027. ".nupkg.metadata",
  5028. ".signature.p7s",
  5029. "lib/net452/MySql.Data.dll",
  5030. "lib/net452/MySql.Data.xml",
  5031. "lib/net452/Ubiety.Dns.Core.dll",
  5032. "lib/net452/Zstandard.Net.dll",
  5033. "lib/net48/MySql.Data.dll",
  5034. "lib/net48/MySql.Data.xml",
  5035. "lib/net48/Ubiety.Dns.Core.dll",
  5036. "lib/net48/Zstandard.Net.dll",
  5037. "lib/net5.0/MySql.Data.dll",
  5038. "lib/net5.0/MySql.Data.xml",
  5039. "lib/net5.0/Ubiety.Dns.Core.dll",
  5040. "lib/net5.0/Zstandard.Net.dll",
  5041. "lib/netstandard2.0/MySql.Data.dll",
  5042. "lib/netstandard2.0/MySql.Data.xml",
  5043. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5044. "lib/netstandard2.0/Zstandard.Net.dll",
  5045. "lib/netstandard2.1/MySql.Data.dll",
  5046. "lib/netstandard2.1/MySql.Data.xml",
  5047. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5048. "lib/netstandard2.1/Zstandard.Net.dll",
  5049. "mysql.data.8.0.23.nupkg.sha512",
  5050. "mysql.data.nuspec"
  5051. ]
  5052. },
  5053. "MySqlConnector/1.1.0": {
  5054. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5055. "type": "package",
  5056. "path": "mysqlconnector/1.1.0",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "lib/net45/MySqlConnector.dll",
  5061. "lib/net45/MySqlConnector.xml",
  5062. "lib/net461/MySqlConnector.dll",
  5063. "lib/net461/MySqlConnector.xml",
  5064. "lib/net471/MySqlConnector.dll",
  5065. "lib/net471/MySqlConnector.xml",
  5066. "lib/net5.0/MySqlConnector.dll",
  5067. "lib/net5.0/MySqlConnector.xml",
  5068. "lib/netcoreapp2.1/MySqlConnector.dll",
  5069. "lib/netcoreapp2.1/MySqlConnector.xml",
  5070. "lib/netcoreapp3.1/MySqlConnector.dll",
  5071. "lib/netcoreapp3.1/MySqlConnector.xml",
  5072. "lib/netstandard1.3/MySqlConnector.dll",
  5073. "lib/netstandard1.3/MySqlConnector.xml",
  5074. "lib/netstandard2.0/MySqlConnector.dll",
  5075. "lib/netstandard2.0/MySqlConnector.xml",
  5076. "lib/netstandard2.1/MySqlConnector.dll",
  5077. "lib/netstandard2.1/MySqlConnector.xml",
  5078. "logo.png",
  5079. "mysqlconnector.1.1.0.nupkg.sha512",
  5080. "mysqlconnector.nuspec"
  5081. ]
  5082. },
  5083. "NETStandard.Library/1.6.1": {
  5084. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5085. "type": "package",
  5086. "path": "netstandard.library/1.6.1",
  5087. "files": [
  5088. ".nupkg.metadata",
  5089. ".signature.p7s",
  5090. "ThirdPartyNotices.txt",
  5091. "dotnet_library_license.txt",
  5092. "netstandard.library.1.6.1.nupkg.sha512",
  5093. "netstandard.library.nuspec"
  5094. ]
  5095. },
  5096. "Newtonsoft.Json/13.0.1": {
  5097. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5098. "type": "package",
  5099. "path": "newtonsoft.json/13.0.1",
  5100. "files": [
  5101. ".nupkg.metadata",
  5102. ".signature.p7s",
  5103. "LICENSE.md",
  5104. "lib/net20/Newtonsoft.Json.dll",
  5105. "lib/net20/Newtonsoft.Json.xml",
  5106. "lib/net35/Newtonsoft.Json.dll",
  5107. "lib/net35/Newtonsoft.Json.xml",
  5108. "lib/net40/Newtonsoft.Json.dll",
  5109. "lib/net40/Newtonsoft.Json.xml",
  5110. "lib/net45/Newtonsoft.Json.dll",
  5111. "lib/net45/Newtonsoft.Json.xml",
  5112. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5113. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5114. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5115. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5116. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5117. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5118. "newtonsoft.json.13.0.1.nupkg.sha512",
  5119. "newtonsoft.json.nuspec",
  5120. "packageIcon.png"
  5121. ]
  5122. },
  5123. "Nito.AsyncEx.Coordination/5.0.0": {
  5124. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5125. "type": "package",
  5126. "path": "nito.asyncex.coordination/5.0.0",
  5127. "files": [
  5128. ".nupkg.metadata",
  5129. ".signature.p7s",
  5130. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5131. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5132. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5133. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5134. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5135. "nito.asyncex.coordination.nuspec"
  5136. ]
  5137. },
  5138. "Nito.AsyncEx.Tasks/5.0.0": {
  5139. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5140. "type": "package",
  5141. "path": "nito.asyncex.tasks/5.0.0",
  5142. "files": [
  5143. ".nupkg.metadata",
  5144. ".signature.p7s",
  5145. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5146. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5147. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5148. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5149. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5150. "nito.asyncex.tasks.nuspec"
  5151. ]
  5152. },
  5153. "Nito.Collections.Deque/1.0.4": {
  5154. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5155. "type": "package",
  5156. "path": "nito.collections.deque/1.0.4",
  5157. "files": [
  5158. ".nupkg.metadata",
  5159. ".signature.p7s",
  5160. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5161. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5162. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5163. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5164. "nito.collections.deque.1.0.4.nupkg.sha512",
  5165. "nito.collections.deque.nuspec"
  5166. ]
  5167. },
  5168. "Nito.Disposables/2.0.0": {
  5169. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5170. "type": "package",
  5171. "path": "nito.disposables/2.0.0",
  5172. "files": [
  5173. ".nupkg.metadata",
  5174. ".signature.p7s",
  5175. "lib/netstandard1.0/Nito.Disposables.dll",
  5176. "lib/netstandard1.0/Nito.Disposables.pdb",
  5177. "lib/netstandard1.0/Nito.Disposables.xml",
  5178. "lib/netstandard2.0/Nito.Disposables.dll",
  5179. "lib/netstandard2.0/Nito.Disposables.pdb",
  5180. "lib/netstandard2.0/Nito.Disposables.xml",
  5181. "nito.disposables.2.0.0.nupkg.sha512",
  5182. "nito.disposables.nuspec"
  5183. ]
  5184. },
  5185. "NodaTime/2.4.7": {
  5186. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5187. "type": "package",
  5188. "path": "nodatime/2.4.7",
  5189. "files": [
  5190. ".nupkg.metadata",
  5191. ".signature.p7s",
  5192. "lib/net45/NodaTime.dll",
  5193. "lib/net45/NodaTime.pdb",
  5194. "lib/net45/NodaTime.xml",
  5195. "lib/netstandard1.3/NodaTime.dll",
  5196. "lib/netstandard1.3/NodaTime.pdb",
  5197. "lib/netstandard1.3/NodaTime.xml",
  5198. "lib/netstandard2.0/NodaTime.dll",
  5199. "lib/netstandard2.0/NodaTime.pdb",
  5200. "lib/netstandard2.0/NodaTime.xml",
  5201. "nodatime.2.4.7.nupkg.sha512",
  5202. "nodatime.nuspec"
  5203. ]
  5204. },
  5205. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5206. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5207. "type": "package",
  5208. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5209. "files": [
  5210. ".nupkg.metadata",
  5211. ".signature.p7s",
  5212. "icon.png",
  5213. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5214. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5215. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5216. "pomelo.entityframeworkcore.mysql.nuspec"
  5217. ]
  5218. },
  5219. "QRCoder/1.4.3": {
  5220. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5221. "type": "package",
  5222. "path": "qrcoder/1.4.3",
  5223. "files": [
  5224. ".nupkg.metadata",
  5225. ".signature.p7s",
  5226. "lib/net35/QRCoder.dll",
  5227. "lib/net40/QRCoder.dll",
  5228. "lib/net5.0-windows7.0/QRCoder.dll",
  5229. "lib/net5.0/QRCoder.dll",
  5230. "lib/net6.0-windows7.0/QRCoder.dll",
  5231. "lib/net6.0/QRCoder.dll",
  5232. "lib/netstandard1.3/QRCoder.dll",
  5233. "lib/netstandard2.0/QRCoder.dll",
  5234. "nuget-icon.png",
  5235. "nuget-readme.md",
  5236. "qrcoder.1.4.3.nupkg.sha512",
  5237. "qrcoder.nuspec"
  5238. ]
  5239. },
  5240. "Quartz/3.3.3": {
  5241. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5242. "type": "package",
  5243. "path": "quartz/3.3.3",
  5244. "files": [
  5245. ".nupkg.metadata",
  5246. ".signature.p7s",
  5247. "lib/net461/Quartz.dll",
  5248. "lib/net461/Quartz.xml",
  5249. "lib/net472/Quartz.dll",
  5250. "lib/net472/Quartz.xml",
  5251. "lib/netstandard2.0/Quartz.dll",
  5252. "lib/netstandard2.0/Quartz.xml",
  5253. "quartz-logo-small.png",
  5254. "quartz.3.3.3.nupkg.sha512",
  5255. "quartz.nuspec"
  5256. ]
  5257. },
  5258. "RabbitMQ.Client/6.8.1": {
  5259. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5260. "type": "package",
  5261. "path": "rabbitmq.client/6.8.1",
  5262. "files": [
  5263. ".nupkg.metadata",
  5264. ".signature.p7s",
  5265. "README.md",
  5266. "icon.png",
  5267. "lib/net462/RabbitMQ.Client.dll",
  5268. "lib/net462/RabbitMQ.Client.xml",
  5269. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5270. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5271. "rabbitmq.client.6.8.1.nupkg.sha512",
  5272. "rabbitmq.client.nuspec"
  5273. ]
  5274. },
  5275. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5276. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5277. "type": "package",
  5278. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5279. "files": [
  5280. ".nupkg.metadata",
  5281. ".signature.p7s",
  5282. "ThirdPartyNotices.txt",
  5283. "dotnet_library_license.txt",
  5284. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5285. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5286. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5287. ]
  5288. },
  5289. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5290. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5291. "type": "package",
  5292. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5293. "files": [
  5294. ".nupkg.metadata",
  5295. ".signature.p7s",
  5296. "ThirdPartyNotices.txt",
  5297. "dotnet_library_license.txt",
  5298. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5299. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5300. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5301. ]
  5302. },
  5303. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5304. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5305. "type": "package",
  5306. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5307. "files": [
  5308. ".nupkg.metadata",
  5309. ".signature.p7s",
  5310. "ThirdPartyNotices.txt",
  5311. "dotnet_library_license.txt",
  5312. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5313. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5314. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5315. ]
  5316. },
  5317. "runtime.native.System/4.3.0": {
  5318. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5319. "type": "package",
  5320. "path": "runtime.native.system/4.3.0",
  5321. "files": [
  5322. ".nupkg.metadata",
  5323. ".signature.p7s",
  5324. "ThirdPartyNotices.txt",
  5325. "dotnet_library_license.txt",
  5326. "lib/netstandard1.0/_._",
  5327. "runtime.native.system.4.3.0.nupkg.sha512",
  5328. "runtime.native.system.nuspec"
  5329. ]
  5330. },
  5331. "runtime.native.System.IO.Compression/4.3.0": {
  5332. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5333. "type": "package",
  5334. "path": "runtime.native.system.io.compression/4.3.0",
  5335. "files": [
  5336. ".nupkg.metadata",
  5337. ".signature.p7s",
  5338. "ThirdPartyNotices.txt",
  5339. "dotnet_library_license.txt",
  5340. "lib/netstandard1.0/_._",
  5341. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5342. "runtime.native.system.io.compression.nuspec"
  5343. ]
  5344. },
  5345. "runtime.native.System.Net.Http/4.3.0": {
  5346. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5347. "type": "package",
  5348. "path": "runtime.native.system.net.http/4.3.0",
  5349. "files": [
  5350. ".nupkg.metadata",
  5351. ".signature.p7s",
  5352. "ThirdPartyNotices.txt",
  5353. "dotnet_library_license.txt",
  5354. "lib/netstandard1.0/_._",
  5355. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5356. "runtime.native.system.net.http.nuspec"
  5357. ]
  5358. },
  5359. "runtime.native.System.Net.Security/4.3.0": {
  5360. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5361. "type": "package",
  5362. "path": "runtime.native.system.net.security/4.3.0",
  5363. "files": [
  5364. ".nupkg.metadata",
  5365. ".signature.p7s",
  5366. "ThirdPartyNotices.txt",
  5367. "dotnet_library_license.txt",
  5368. "lib/netstandard1.0/_._",
  5369. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5370. "runtime.native.system.net.security.nuspec"
  5371. ]
  5372. },
  5373. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5374. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5375. "type": "package",
  5376. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5377. "files": [
  5378. ".nupkg.metadata",
  5379. ".signature.p7s",
  5380. "ThirdPartyNotices.txt",
  5381. "dotnet_library_license.txt",
  5382. "lib/netstandard1.0/_._",
  5383. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5384. "runtime.native.system.security.cryptography.apple.nuspec"
  5385. ]
  5386. },
  5387. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5388. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5389. "type": "package",
  5390. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5391. "files": [
  5392. ".nupkg.metadata",
  5393. ".signature.p7s",
  5394. "ThirdPartyNotices.txt",
  5395. "dotnet_library_license.txt",
  5396. "lib/netstandard1.0/_._",
  5397. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5398. "runtime.native.system.security.cryptography.openssl.nuspec"
  5399. ]
  5400. },
  5401. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5402. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5403. "type": "package",
  5404. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5405. "files": [
  5406. ".nupkg.metadata",
  5407. ".signature.p7s",
  5408. "ThirdPartyNotices.txt",
  5409. "dotnet_library_license.txt",
  5410. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5411. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5412. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5413. ]
  5414. },
  5415. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5416. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5417. "type": "package",
  5418. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5419. "files": [
  5420. ".nupkg.metadata",
  5421. ".signature.p7s",
  5422. "ThirdPartyNotices.txt",
  5423. "dotnet_library_license.txt",
  5424. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5425. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5426. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5427. ]
  5428. },
  5429. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5430. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5431. "type": "package",
  5432. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5433. "files": [
  5434. ".nupkg.metadata",
  5435. ".signature.p7s",
  5436. "ThirdPartyNotices.txt",
  5437. "dotnet_library_license.txt",
  5438. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5439. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5440. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5441. ]
  5442. },
  5443. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5444. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5445. "type": "package",
  5446. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5447. "files": [
  5448. ".nupkg.metadata",
  5449. ".signature.p7s",
  5450. "ThirdPartyNotices.txt",
  5451. "dotnet_library_license.txt",
  5452. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5453. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5454. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5455. ]
  5456. },
  5457. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5458. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5459. "type": "package",
  5460. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5461. "files": [
  5462. ".nupkg.metadata",
  5463. ".signature.p7s",
  5464. "ThirdPartyNotices.txt",
  5465. "dotnet_library_license.txt",
  5466. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5467. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5468. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5469. ]
  5470. },
  5471. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5472. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5473. "type": "package",
  5474. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5475. "files": [
  5476. ".nupkg.metadata",
  5477. ".signature.p7s",
  5478. "ThirdPartyNotices.txt",
  5479. "dotnet_library_license.txt",
  5480. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5481. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5482. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5483. ]
  5484. },
  5485. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5486. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5487. "type": "package",
  5488. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5489. "files": [
  5490. ".nupkg.metadata",
  5491. ".signature.p7s",
  5492. "ThirdPartyNotices.txt",
  5493. "dotnet_library_license.txt",
  5494. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5495. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5496. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5497. ]
  5498. },
  5499. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5500. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5501. "type": "package",
  5502. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5503. "files": [
  5504. ".nupkg.metadata",
  5505. ".signature.p7s",
  5506. "ThirdPartyNotices.txt",
  5507. "dotnet_library_license.txt",
  5508. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5509. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5510. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5511. ]
  5512. },
  5513. "SixLabors.ImageSharp/2.1.6": {
  5514. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5515. "type": "package",
  5516. "path": "sixlabors.imagesharp/2.1.6",
  5517. "files": [
  5518. ".nupkg.metadata",
  5519. ".signature.p7s",
  5520. "lib/net472/SixLabors.ImageSharp.dll",
  5521. "lib/net472/SixLabors.ImageSharp.xml",
  5522. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5523. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5524. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5525. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5526. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5527. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5528. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5529. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5530. "sixlabors.imagesharp.128.png",
  5531. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5532. "sixlabors.imagesharp.nuspec"
  5533. ]
  5534. },
  5535. "SSH.NET/2020.0.0-beta1": {
  5536. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5537. "type": "package",
  5538. "path": "ssh.net/2020.0.0-beta1",
  5539. "files": [
  5540. ".nupkg.metadata",
  5541. ".signature.p7s",
  5542. "lib/net35/Renci.SshNet.dll",
  5543. "lib/net35/Renci.SshNet.xml",
  5544. "lib/net40/Renci.SshNet.dll",
  5545. "lib/net40/Renci.SshNet.xml",
  5546. "lib/netstandard1.3/Renci.SshNet.dll",
  5547. "lib/netstandard1.3/Renci.SshNet.xml",
  5548. "lib/netstandard2.0/Renci.SshNet.dll",
  5549. "lib/netstandard2.0/Renci.SshNet.xml",
  5550. "lib/sl4/Renci.SshNet.dll",
  5551. "lib/sl4/Renci.SshNet.xml",
  5552. "lib/sl5/Renci.SshNet.dll",
  5553. "lib/sl5/Renci.SshNet.xml",
  5554. "lib/uap10/Renci.SshNet.dll",
  5555. "lib/uap10/Renci.SshNet.xml",
  5556. "lib/wp71/Renci.SshNet.dll",
  5557. "lib/wp71/Renci.SshNet.xml",
  5558. "lib/wp8/Renci.SshNet.dll",
  5559. "lib/wp8/Renci.SshNet.xml",
  5560. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5561. "ssh.net.nuspec"
  5562. ]
  5563. },
  5564. "SshNet.Security.Cryptography/1.3.0": {
  5565. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5566. "type": "package",
  5567. "path": "sshnet.security.cryptography/1.3.0",
  5568. "files": [
  5569. ".nupkg.metadata",
  5570. ".signature.p7s",
  5571. "lib/net20/SshNet.Security.Cryptography.dll",
  5572. "lib/net20/SshNet.Security.Cryptography.xml",
  5573. "lib/net40/SshNet.Security.Cryptography.dll",
  5574. "lib/net40/SshNet.Security.Cryptography.xml",
  5575. "lib/net45/SshNet.Security.Cryptography.dll",
  5576. "lib/net45/SshNet.Security.Cryptography.xml",
  5577. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5578. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5579. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5580. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5581. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5582. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5583. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5584. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5585. "lib/sl4/SshNet.Security.Cryptography.dll",
  5586. "lib/sl4/SshNet.Security.Cryptography.xml",
  5587. "lib/sl5/SshNet.Security.Cryptography.dll",
  5588. "lib/sl5/SshNet.Security.Cryptography.xml",
  5589. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5590. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5591. "lib/wp71/SshNet.Security.Cryptography.dll",
  5592. "lib/wp71/SshNet.Security.Cryptography.xml",
  5593. "lib/wp8/SshNet.Security.Cryptography.dll",
  5594. "lib/wp8/SshNet.Security.Cryptography.xml",
  5595. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5596. "sshnet.security.cryptography.nuspec"
  5597. ]
  5598. },
  5599. "StackExchange.Redis/1.2.4": {
  5600. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5601. "type": "package",
  5602. "path": "stackexchange.redis/1.2.4",
  5603. "files": [
  5604. ".nupkg.metadata",
  5605. ".signature.p7s",
  5606. "lib/net45/StackExchange.Redis.dll",
  5607. "lib/net45/StackExchange.Redis.xml",
  5608. "lib/net46/StackExchange.Redis.dll",
  5609. "lib/net46/StackExchange.Redis.xml",
  5610. "lib/netstandard1.5/StackExchange.Redis.dll",
  5611. "lib/netstandard1.5/StackExchange.Redis.xml",
  5612. "stackexchange.redis.1.2.4.nupkg.sha512",
  5613. "stackexchange.redis.nuspec"
  5614. ]
  5615. },
  5616. "Swashbuckle.AspNetCore/5.6.3": {
  5617. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5618. "type": "package",
  5619. "path": "swashbuckle.aspnetcore/5.6.3",
  5620. "files": [
  5621. ".nupkg.metadata",
  5622. ".signature.p7s",
  5623. "build/Swashbuckle.AspNetCore.props",
  5624. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5625. "swashbuckle.aspnetcore.nuspec"
  5626. ]
  5627. },
  5628. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5629. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5630. "type": "package",
  5631. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5632. "files": [
  5633. ".nupkg.metadata",
  5634. ".signature.p7s",
  5635. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5636. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5637. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5638. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5639. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5640. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5641. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5642. "swashbuckle.aspnetcore.swagger.nuspec"
  5643. ]
  5644. },
  5645. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5646. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5647. "type": "package",
  5648. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5653. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5654. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5655. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5656. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5657. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5658. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5659. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5660. ]
  5661. },
  5662. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5663. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5664. "type": "package",
  5665. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5666. "files": [
  5667. ".nupkg.metadata",
  5668. ".signature.p7s",
  5669. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5670. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5671. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5672. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5673. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5674. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5675. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5676. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5677. ]
  5678. },
  5679. "System.AppContext/4.3.0": {
  5680. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5681. "type": "package",
  5682. "path": "system.appcontext/4.3.0",
  5683. "files": [
  5684. ".nupkg.metadata",
  5685. ".signature.p7s",
  5686. "ThirdPartyNotices.txt",
  5687. "dotnet_library_license.txt",
  5688. "lib/MonoAndroid10/_._",
  5689. "lib/MonoTouch10/_._",
  5690. "lib/net46/System.AppContext.dll",
  5691. "lib/net463/System.AppContext.dll",
  5692. "lib/netcore50/System.AppContext.dll",
  5693. "lib/netstandard1.6/System.AppContext.dll",
  5694. "lib/xamarinios10/_._",
  5695. "lib/xamarinmac20/_._",
  5696. "lib/xamarintvos10/_._",
  5697. "lib/xamarinwatchos10/_._",
  5698. "ref/MonoAndroid10/_._",
  5699. "ref/MonoTouch10/_._",
  5700. "ref/net46/System.AppContext.dll",
  5701. "ref/net463/System.AppContext.dll",
  5702. "ref/netstandard/_._",
  5703. "ref/netstandard1.3/System.AppContext.dll",
  5704. "ref/netstandard1.3/System.AppContext.xml",
  5705. "ref/netstandard1.3/de/System.AppContext.xml",
  5706. "ref/netstandard1.3/es/System.AppContext.xml",
  5707. "ref/netstandard1.3/fr/System.AppContext.xml",
  5708. "ref/netstandard1.3/it/System.AppContext.xml",
  5709. "ref/netstandard1.3/ja/System.AppContext.xml",
  5710. "ref/netstandard1.3/ko/System.AppContext.xml",
  5711. "ref/netstandard1.3/ru/System.AppContext.xml",
  5712. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5713. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5714. "ref/netstandard1.6/System.AppContext.dll",
  5715. "ref/netstandard1.6/System.AppContext.xml",
  5716. "ref/netstandard1.6/de/System.AppContext.xml",
  5717. "ref/netstandard1.6/es/System.AppContext.xml",
  5718. "ref/netstandard1.6/fr/System.AppContext.xml",
  5719. "ref/netstandard1.6/it/System.AppContext.xml",
  5720. "ref/netstandard1.6/ja/System.AppContext.xml",
  5721. "ref/netstandard1.6/ko/System.AppContext.xml",
  5722. "ref/netstandard1.6/ru/System.AppContext.xml",
  5723. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5724. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5725. "ref/xamarinios10/_._",
  5726. "ref/xamarinmac20/_._",
  5727. "ref/xamarintvos10/_._",
  5728. "ref/xamarinwatchos10/_._",
  5729. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5730. "system.appcontext.4.3.0.nupkg.sha512",
  5731. "system.appcontext.nuspec"
  5732. ]
  5733. },
  5734. "System.Buffers/4.5.1": {
  5735. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5736. "type": "package",
  5737. "path": "system.buffers/4.5.1",
  5738. "files": [
  5739. ".nupkg.metadata",
  5740. ".signature.p7s",
  5741. "LICENSE.TXT",
  5742. "THIRD-PARTY-NOTICES.TXT",
  5743. "lib/net461/System.Buffers.dll",
  5744. "lib/net461/System.Buffers.xml",
  5745. "lib/netcoreapp2.0/_._",
  5746. "lib/netstandard1.1/System.Buffers.dll",
  5747. "lib/netstandard1.1/System.Buffers.xml",
  5748. "lib/netstandard2.0/System.Buffers.dll",
  5749. "lib/netstandard2.0/System.Buffers.xml",
  5750. "lib/uap10.0.16299/_._",
  5751. "ref/net45/System.Buffers.dll",
  5752. "ref/net45/System.Buffers.xml",
  5753. "ref/netcoreapp2.0/_._",
  5754. "ref/netstandard1.1/System.Buffers.dll",
  5755. "ref/netstandard1.1/System.Buffers.xml",
  5756. "ref/netstandard2.0/System.Buffers.dll",
  5757. "ref/netstandard2.0/System.Buffers.xml",
  5758. "ref/uap10.0.16299/_._",
  5759. "system.buffers.4.5.1.nupkg.sha512",
  5760. "system.buffers.nuspec",
  5761. "useSharedDesignerContext.txt",
  5762. "version.txt"
  5763. ]
  5764. },
  5765. "System.Collections/4.3.0": {
  5766. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5767. "type": "package",
  5768. "path": "system.collections/4.3.0",
  5769. "files": [
  5770. ".nupkg.metadata",
  5771. ".signature.p7s",
  5772. "ThirdPartyNotices.txt",
  5773. "dotnet_library_license.txt",
  5774. "lib/MonoAndroid10/_._",
  5775. "lib/MonoTouch10/_._",
  5776. "lib/net45/_._",
  5777. "lib/portable-net45+win8+wp8+wpa81/_._",
  5778. "lib/win8/_._",
  5779. "lib/wp80/_._",
  5780. "lib/wpa81/_._",
  5781. "lib/xamarinios10/_._",
  5782. "lib/xamarinmac20/_._",
  5783. "lib/xamarintvos10/_._",
  5784. "lib/xamarinwatchos10/_._",
  5785. "ref/MonoAndroid10/_._",
  5786. "ref/MonoTouch10/_._",
  5787. "ref/net45/_._",
  5788. "ref/netcore50/System.Collections.dll",
  5789. "ref/netcore50/System.Collections.xml",
  5790. "ref/netcore50/de/System.Collections.xml",
  5791. "ref/netcore50/es/System.Collections.xml",
  5792. "ref/netcore50/fr/System.Collections.xml",
  5793. "ref/netcore50/it/System.Collections.xml",
  5794. "ref/netcore50/ja/System.Collections.xml",
  5795. "ref/netcore50/ko/System.Collections.xml",
  5796. "ref/netcore50/ru/System.Collections.xml",
  5797. "ref/netcore50/zh-hans/System.Collections.xml",
  5798. "ref/netcore50/zh-hant/System.Collections.xml",
  5799. "ref/netstandard1.0/System.Collections.dll",
  5800. "ref/netstandard1.0/System.Collections.xml",
  5801. "ref/netstandard1.0/de/System.Collections.xml",
  5802. "ref/netstandard1.0/es/System.Collections.xml",
  5803. "ref/netstandard1.0/fr/System.Collections.xml",
  5804. "ref/netstandard1.0/it/System.Collections.xml",
  5805. "ref/netstandard1.0/ja/System.Collections.xml",
  5806. "ref/netstandard1.0/ko/System.Collections.xml",
  5807. "ref/netstandard1.0/ru/System.Collections.xml",
  5808. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5809. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5810. "ref/netstandard1.3/System.Collections.dll",
  5811. "ref/netstandard1.3/System.Collections.xml",
  5812. "ref/netstandard1.3/de/System.Collections.xml",
  5813. "ref/netstandard1.3/es/System.Collections.xml",
  5814. "ref/netstandard1.3/fr/System.Collections.xml",
  5815. "ref/netstandard1.3/it/System.Collections.xml",
  5816. "ref/netstandard1.3/ja/System.Collections.xml",
  5817. "ref/netstandard1.3/ko/System.Collections.xml",
  5818. "ref/netstandard1.3/ru/System.Collections.xml",
  5819. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5820. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5821. "ref/portable-net45+win8+wp8+wpa81/_._",
  5822. "ref/win8/_._",
  5823. "ref/wp80/_._",
  5824. "ref/wpa81/_._",
  5825. "ref/xamarinios10/_._",
  5826. "ref/xamarinmac20/_._",
  5827. "ref/xamarintvos10/_._",
  5828. "ref/xamarinwatchos10/_._",
  5829. "system.collections.4.3.0.nupkg.sha512",
  5830. "system.collections.nuspec"
  5831. ]
  5832. },
  5833. "System.Collections.Concurrent/4.3.0": {
  5834. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5835. "type": "package",
  5836. "path": "system.collections.concurrent/4.3.0",
  5837. "files": [
  5838. ".nupkg.metadata",
  5839. ".signature.p7s",
  5840. "ThirdPartyNotices.txt",
  5841. "dotnet_library_license.txt",
  5842. "lib/MonoAndroid10/_._",
  5843. "lib/MonoTouch10/_._",
  5844. "lib/net45/_._",
  5845. "lib/netcore50/System.Collections.Concurrent.dll",
  5846. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5847. "lib/portable-net45+win8+wpa81/_._",
  5848. "lib/win8/_._",
  5849. "lib/wpa81/_._",
  5850. "lib/xamarinios10/_._",
  5851. "lib/xamarinmac20/_._",
  5852. "lib/xamarintvos10/_._",
  5853. "lib/xamarinwatchos10/_._",
  5854. "ref/MonoAndroid10/_._",
  5855. "ref/MonoTouch10/_._",
  5856. "ref/net45/_._",
  5857. "ref/netcore50/System.Collections.Concurrent.dll",
  5858. "ref/netcore50/System.Collections.Concurrent.xml",
  5859. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5860. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5861. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5862. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5863. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5864. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5865. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5866. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5867. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5868. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5869. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5870. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5871. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5872. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5873. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5874. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5875. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5876. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5877. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5878. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5879. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5880. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5881. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5882. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5883. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5884. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5885. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5886. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5887. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5888. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5889. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5890. "ref/portable-net45+win8+wpa81/_._",
  5891. "ref/win8/_._",
  5892. "ref/wpa81/_._",
  5893. "ref/xamarinios10/_._",
  5894. "ref/xamarinmac20/_._",
  5895. "ref/xamarintvos10/_._",
  5896. "ref/xamarinwatchos10/_._",
  5897. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5898. "system.collections.concurrent.nuspec"
  5899. ]
  5900. },
  5901. "System.Collections.Immutable/5.0.0": {
  5902. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5903. "type": "package",
  5904. "path": "system.collections.immutable/5.0.0",
  5905. "files": [
  5906. ".nupkg.metadata",
  5907. ".signature.p7s",
  5908. "Icon.png",
  5909. "LICENSE.TXT",
  5910. "THIRD-PARTY-NOTICES.TXT",
  5911. "lib/net461/System.Collections.Immutable.dll",
  5912. "lib/net461/System.Collections.Immutable.xml",
  5913. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5914. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5915. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5916. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5917. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5918. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5919. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5920. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5921. "system.collections.immutable.5.0.0.nupkg.sha512",
  5922. "system.collections.immutable.nuspec",
  5923. "useSharedDesignerContext.txt",
  5924. "version.txt"
  5925. ]
  5926. },
  5927. "System.Collections.NonGeneric/4.3.0": {
  5928. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5929. "type": "package",
  5930. "path": "system.collections.nongeneric/4.3.0",
  5931. "files": [
  5932. ".nupkg.metadata",
  5933. ".signature.p7s",
  5934. "ThirdPartyNotices.txt",
  5935. "dotnet_library_license.txt",
  5936. "lib/MonoAndroid10/_._",
  5937. "lib/MonoTouch10/_._",
  5938. "lib/net46/System.Collections.NonGeneric.dll",
  5939. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5940. "lib/xamarinios10/_._",
  5941. "lib/xamarinmac20/_._",
  5942. "lib/xamarintvos10/_._",
  5943. "lib/xamarinwatchos10/_._",
  5944. "ref/MonoAndroid10/_._",
  5945. "ref/MonoTouch10/_._",
  5946. "ref/net46/System.Collections.NonGeneric.dll",
  5947. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5948. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5949. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5950. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5951. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5952. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5953. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5954. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5955. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5956. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5957. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5958. "ref/xamarinios10/_._",
  5959. "ref/xamarinmac20/_._",
  5960. "ref/xamarintvos10/_._",
  5961. "ref/xamarinwatchos10/_._",
  5962. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5963. "system.collections.nongeneric.nuspec"
  5964. ]
  5965. },
  5966. "System.Collections.Specialized/4.3.0": {
  5967. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5968. "type": "package",
  5969. "path": "system.collections.specialized/4.3.0",
  5970. "files": [
  5971. ".nupkg.metadata",
  5972. ".signature.p7s",
  5973. "ThirdPartyNotices.txt",
  5974. "dotnet_library_license.txt",
  5975. "lib/MonoAndroid10/_._",
  5976. "lib/MonoTouch10/_._",
  5977. "lib/net46/System.Collections.Specialized.dll",
  5978. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5979. "lib/xamarinios10/_._",
  5980. "lib/xamarinmac20/_._",
  5981. "lib/xamarintvos10/_._",
  5982. "lib/xamarinwatchos10/_._",
  5983. "ref/MonoAndroid10/_._",
  5984. "ref/MonoTouch10/_._",
  5985. "ref/net46/System.Collections.Specialized.dll",
  5986. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5987. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5988. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5989. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5990. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5991. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5992. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5993. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5994. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5995. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5996. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5997. "ref/xamarinios10/_._",
  5998. "ref/xamarinmac20/_._",
  5999. "ref/xamarintvos10/_._",
  6000. "ref/xamarinwatchos10/_._",
  6001. "system.collections.specialized.4.3.0.nupkg.sha512",
  6002. "system.collections.specialized.nuspec"
  6003. ]
  6004. },
  6005. "System.ComponentModel/4.3.0": {
  6006. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6007. "type": "package",
  6008. "path": "system.componentmodel/4.3.0",
  6009. "files": [
  6010. ".nupkg.metadata",
  6011. ".signature.p7s",
  6012. "ThirdPartyNotices.txt",
  6013. "dotnet_library_license.txt",
  6014. "lib/MonoAndroid10/_._",
  6015. "lib/MonoTouch10/_._",
  6016. "lib/net45/_._",
  6017. "lib/netcore50/System.ComponentModel.dll",
  6018. "lib/netstandard1.3/System.ComponentModel.dll",
  6019. "lib/portable-net45+win8+wp8+wpa81/_._",
  6020. "lib/win8/_._",
  6021. "lib/wp80/_._",
  6022. "lib/wpa81/_._",
  6023. "lib/xamarinios10/_._",
  6024. "lib/xamarinmac20/_._",
  6025. "lib/xamarintvos10/_._",
  6026. "lib/xamarinwatchos10/_._",
  6027. "ref/MonoAndroid10/_._",
  6028. "ref/MonoTouch10/_._",
  6029. "ref/net45/_._",
  6030. "ref/netcore50/System.ComponentModel.dll",
  6031. "ref/netcore50/System.ComponentModel.xml",
  6032. "ref/netcore50/de/System.ComponentModel.xml",
  6033. "ref/netcore50/es/System.ComponentModel.xml",
  6034. "ref/netcore50/fr/System.ComponentModel.xml",
  6035. "ref/netcore50/it/System.ComponentModel.xml",
  6036. "ref/netcore50/ja/System.ComponentModel.xml",
  6037. "ref/netcore50/ko/System.ComponentModel.xml",
  6038. "ref/netcore50/ru/System.ComponentModel.xml",
  6039. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6040. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6041. "ref/netstandard1.0/System.ComponentModel.dll",
  6042. "ref/netstandard1.0/System.ComponentModel.xml",
  6043. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6044. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6045. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6046. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6047. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6048. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6049. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6050. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6051. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6052. "ref/portable-net45+win8+wp8+wpa81/_._",
  6053. "ref/win8/_._",
  6054. "ref/wp80/_._",
  6055. "ref/wpa81/_._",
  6056. "ref/xamarinios10/_._",
  6057. "ref/xamarinmac20/_._",
  6058. "ref/xamarintvos10/_._",
  6059. "ref/xamarinwatchos10/_._",
  6060. "system.componentmodel.4.3.0.nupkg.sha512",
  6061. "system.componentmodel.nuspec"
  6062. ]
  6063. },
  6064. "System.ComponentModel.Annotations/5.0.0": {
  6065. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6066. "type": "package",
  6067. "path": "system.componentmodel.annotations/5.0.0",
  6068. "files": [
  6069. ".nupkg.metadata",
  6070. ".signature.p7s",
  6071. "Icon.png",
  6072. "LICENSE.TXT",
  6073. "THIRD-PARTY-NOTICES.TXT",
  6074. "lib/MonoAndroid10/_._",
  6075. "lib/MonoTouch10/_._",
  6076. "lib/net45/_._",
  6077. "lib/net461/System.ComponentModel.Annotations.dll",
  6078. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6079. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6080. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6081. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6082. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6083. "lib/portable-net45+win8/_._",
  6084. "lib/win8/_._",
  6085. "lib/xamarinios10/_._",
  6086. "lib/xamarinmac20/_._",
  6087. "lib/xamarintvos10/_._",
  6088. "lib/xamarinwatchos10/_._",
  6089. "ref/MonoAndroid10/_._",
  6090. "ref/MonoTouch10/_._",
  6091. "ref/net45/_._",
  6092. "ref/net461/System.ComponentModel.Annotations.dll",
  6093. "ref/net461/System.ComponentModel.Annotations.xml",
  6094. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6095. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6096. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6097. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6098. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6099. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6100. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6101. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6102. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6103. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6104. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6105. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6106. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6107. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6108. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6109. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6110. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6111. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6112. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6113. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6114. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6115. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6116. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6117. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6118. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6119. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6120. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6121. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6122. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6123. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6124. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6125. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6126. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6127. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6128. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6129. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6130. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6131. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6132. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6133. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6134. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6135. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6136. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6137. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6138. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6139. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6140. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6141. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6142. "ref/portable-net45+win8/_._",
  6143. "ref/win8/_._",
  6144. "ref/xamarinios10/_._",
  6145. "ref/xamarinmac20/_._",
  6146. "ref/xamarintvos10/_._",
  6147. "ref/xamarinwatchos10/_._",
  6148. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6149. "system.componentmodel.annotations.nuspec",
  6150. "useSharedDesignerContext.txt",
  6151. "version.txt"
  6152. ]
  6153. },
  6154. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6155. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6156. "type": "package",
  6157. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6158. "files": [
  6159. ".nupkg.metadata",
  6160. ".signature.p7s",
  6161. "ThirdPartyNotices.txt",
  6162. "dotnet_library_license.txt",
  6163. "lib/MonoAndroid10/_._",
  6164. "lib/MonoTouch10/_._",
  6165. "lib/net45/_._",
  6166. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6167. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6168. "lib/portable-net45+win8+wp8+wpa81/_._",
  6169. "lib/win8/_._",
  6170. "lib/wp80/_._",
  6171. "lib/wpa81/_._",
  6172. "lib/xamarinios10/_._",
  6173. "lib/xamarinmac20/_._",
  6174. "lib/xamarintvos10/_._",
  6175. "lib/xamarinwatchos10/_._",
  6176. "ref/MonoAndroid10/_._",
  6177. "ref/MonoTouch10/_._",
  6178. "ref/net45/_._",
  6179. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6180. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6181. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6182. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6183. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6184. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6185. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6186. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6187. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6188. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6189. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6190. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6191. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6192. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6193. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6194. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6195. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6196. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6197. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6198. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6199. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6200. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6201. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6202. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6203. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6204. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6205. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6206. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6207. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6208. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6209. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6210. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6211. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6212. "ref/portable-net45+win8+wp8+wpa81/_._",
  6213. "ref/win8/_._",
  6214. "ref/wp80/_._",
  6215. "ref/wpa81/_._",
  6216. "ref/xamarinios10/_._",
  6217. "ref/xamarinmac20/_._",
  6218. "ref/xamarintvos10/_._",
  6219. "ref/xamarinwatchos10/_._",
  6220. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6221. "system.componentmodel.eventbasedasync.nuspec"
  6222. ]
  6223. },
  6224. "System.ComponentModel.Primitives/4.3.0": {
  6225. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6226. "type": "package",
  6227. "path": "system.componentmodel.primitives/4.3.0",
  6228. "files": [
  6229. ".nupkg.metadata",
  6230. ".signature.p7s",
  6231. "ThirdPartyNotices.txt",
  6232. "dotnet_library_license.txt",
  6233. "lib/MonoAndroid10/_._",
  6234. "lib/MonoTouch10/_._",
  6235. "lib/net45/System.ComponentModel.Primitives.dll",
  6236. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6237. "lib/xamarinios10/_._",
  6238. "lib/xamarinmac20/_._",
  6239. "lib/xamarintvos10/_._",
  6240. "lib/xamarinwatchos10/_._",
  6241. "ref/MonoAndroid10/_._",
  6242. "ref/MonoTouch10/_._",
  6243. "ref/net45/System.ComponentModel.Primitives.dll",
  6244. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6245. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6246. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6247. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6248. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6249. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6250. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6251. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6252. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6253. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6254. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6255. "ref/xamarinios10/_._",
  6256. "ref/xamarinmac20/_._",
  6257. "ref/xamarintvos10/_._",
  6258. "ref/xamarinwatchos10/_._",
  6259. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6260. "system.componentmodel.primitives.nuspec"
  6261. ]
  6262. },
  6263. "System.ComponentModel.TypeConverter/4.3.0": {
  6264. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6265. "type": "package",
  6266. "path": "system.componentmodel.typeconverter/4.3.0",
  6267. "files": [
  6268. ".nupkg.metadata",
  6269. ".signature.p7s",
  6270. "ThirdPartyNotices.txt",
  6271. "dotnet_library_license.txt",
  6272. "lib/MonoAndroid10/_._",
  6273. "lib/MonoTouch10/_._",
  6274. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6275. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6276. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6277. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6278. "lib/xamarinios10/_._",
  6279. "lib/xamarinmac20/_._",
  6280. "lib/xamarintvos10/_._",
  6281. "lib/xamarinwatchos10/_._",
  6282. "ref/MonoAndroid10/_._",
  6283. "ref/MonoTouch10/_._",
  6284. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6285. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6286. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6287. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6288. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6289. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6290. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6291. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6292. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6293. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6294. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6295. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6296. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6297. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6298. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6299. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6300. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6301. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6302. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6303. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6304. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6305. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6306. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6307. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6308. "ref/xamarinios10/_._",
  6309. "ref/xamarinmac20/_._",
  6310. "ref/xamarintvos10/_._",
  6311. "ref/xamarinwatchos10/_._",
  6312. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6313. "system.componentmodel.typeconverter.nuspec"
  6314. ]
  6315. },
  6316. "System.Configuration.ConfigurationManager/4.7.0": {
  6317. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6318. "type": "package",
  6319. "path": "system.configuration.configurationmanager/4.7.0",
  6320. "files": [
  6321. ".nupkg.metadata",
  6322. ".signature.p7s",
  6323. "LICENSE.TXT",
  6324. "THIRD-PARTY-NOTICES.TXT",
  6325. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6326. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6327. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6328. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6329. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6330. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6331. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6332. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6333. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6334. "system.configuration.configurationmanager.nuspec",
  6335. "useSharedDesignerContext.txt",
  6336. "version.txt"
  6337. ]
  6338. },
  6339. "System.Console/4.3.0": {
  6340. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6341. "type": "package",
  6342. "path": "system.console/4.3.0",
  6343. "files": [
  6344. ".nupkg.metadata",
  6345. ".signature.p7s",
  6346. "ThirdPartyNotices.txt",
  6347. "dotnet_library_license.txt",
  6348. "lib/MonoAndroid10/_._",
  6349. "lib/MonoTouch10/_._",
  6350. "lib/net46/System.Console.dll",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/MonoTouch10/_._",
  6357. "ref/net46/System.Console.dll",
  6358. "ref/netstandard1.3/System.Console.dll",
  6359. "ref/netstandard1.3/System.Console.xml",
  6360. "ref/netstandard1.3/de/System.Console.xml",
  6361. "ref/netstandard1.3/es/System.Console.xml",
  6362. "ref/netstandard1.3/fr/System.Console.xml",
  6363. "ref/netstandard1.3/it/System.Console.xml",
  6364. "ref/netstandard1.3/ja/System.Console.xml",
  6365. "ref/netstandard1.3/ko/System.Console.xml",
  6366. "ref/netstandard1.3/ru/System.Console.xml",
  6367. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6368. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6369. "ref/xamarinios10/_._",
  6370. "ref/xamarinmac20/_._",
  6371. "ref/xamarintvos10/_._",
  6372. "ref/xamarinwatchos10/_._",
  6373. "system.console.4.3.0.nupkg.sha512",
  6374. "system.console.nuspec"
  6375. ]
  6376. },
  6377. "System.Diagnostics.Debug/4.3.0": {
  6378. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6379. "type": "package",
  6380. "path": "system.diagnostics.debug/4.3.0",
  6381. "files": [
  6382. ".nupkg.metadata",
  6383. ".signature.p7s",
  6384. "ThirdPartyNotices.txt",
  6385. "dotnet_library_license.txt",
  6386. "lib/MonoAndroid10/_._",
  6387. "lib/MonoTouch10/_._",
  6388. "lib/net45/_._",
  6389. "lib/portable-net45+win8+wp8+wpa81/_._",
  6390. "lib/win8/_._",
  6391. "lib/wp80/_._",
  6392. "lib/wpa81/_._",
  6393. "lib/xamarinios10/_._",
  6394. "lib/xamarinmac20/_._",
  6395. "lib/xamarintvos10/_._",
  6396. "lib/xamarinwatchos10/_._",
  6397. "ref/MonoAndroid10/_._",
  6398. "ref/MonoTouch10/_._",
  6399. "ref/net45/_._",
  6400. "ref/netcore50/System.Diagnostics.Debug.dll",
  6401. "ref/netcore50/System.Diagnostics.Debug.xml",
  6402. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6403. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6404. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6405. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6406. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6407. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6408. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6409. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6410. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6411. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6412. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6413. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6414. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6415. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6416. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6417. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6418. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6419. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6420. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6421. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6422. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6423. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6424. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6425. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6426. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6427. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6428. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6429. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6430. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6431. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6432. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6433. "ref/portable-net45+win8+wp8+wpa81/_._",
  6434. "ref/win8/_._",
  6435. "ref/wp80/_._",
  6436. "ref/wpa81/_._",
  6437. "ref/xamarinios10/_._",
  6438. "ref/xamarinmac20/_._",
  6439. "ref/xamarintvos10/_._",
  6440. "ref/xamarinwatchos10/_._",
  6441. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6442. "system.diagnostics.debug.nuspec"
  6443. ]
  6444. },
  6445. "System.Diagnostics.DiagnosticSource/6.0.2": {
  6446. "sha512": "6tQaIexFycaotdGn23lf3XJ/eI1GOjQKIvQDRFN9N4pwoNsKnHuXccQ3lnQO6GX8KAb1ic+6ZofJmPdbUVwZag==",
  6447. "type": "package",
  6448. "path": "system.diagnostics.diagnosticsource/6.0.2",
  6449. "files": [
  6450. ".nupkg.metadata",
  6451. ".signature.p7s",
  6452. "Icon.png",
  6453. "LICENSE.TXT",
  6454. "THIRD-PARTY-NOTICES.TXT",
  6455. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6456. "buildTransitive/netcoreapp3.1/_._",
  6457. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6458. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6459. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6460. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6461. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6462. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6463. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6464. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6465. "system.diagnostics.diagnosticsource.6.0.2.nupkg.sha512",
  6466. "system.diagnostics.diagnosticsource.nuspec",
  6467. "useSharedDesignerContext.txt"
  6468. ]
  6469. },
  6470. "System.Diagnostics.Tools/4.3.0": {
  6471. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6472. "type": "package",
  6473. "path": "system.diagnostics.tools/4.3.0",
  6474. "files": [
  6475. ".nupkg.metadata",
  6476. ".signature.p7s",
  6477. "ThirdPartyNotices.txt",
  6478. "dotnet_library_license.txt",
  6479. "lib/MonoAndroid10/_._",
  6480. "lib/MonoTouch10/_._",
  6481. "lib/net45/_._",
  6482. "lib/portable-net45+win8+wp8+wpa81/_._",
  6483. "lib/win8/_._",
  6484. "lib/wp80/_._",
  6485. "lib/wpa81/_._",
  6486. "lib/xamarinios10/_._",
  6487. "lib/xamarinmac20/_._",
  6488. "lib/xamarintvos10/_._",
  6489. "lib/xamarinwatchos10/_._",
  6490. "ref/MonoAndroid10/_._",
  6491. "ref/MonoTouch10/_._",
  6492. "ref/net45/_._",
  6493. "ref/netcore50/System.Diagnostics.Tools.dll",
  6494. "ref/netcore50/System.Diagnostics.Tools.xml",
  6495. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6496. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6497. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6498. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6499. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6500. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6501. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6502. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6503. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6504. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6505. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6506. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6507. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6508. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6509. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6510. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6511. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6512. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6513. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6514. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6515. "ref/portable-net45+win8+wp8+wpa81/_._",
  6516. "ref/win8/_._",
  6517. "ref/wp80/_._",
  6518. "ref/wpa81/_._",
  6519. "ref/xamarinios10/_._",
  6520. "ref/xamarinmac20/_._",
  6521. "ref/xamarintvos10/_._",
  6522. "ref/xamarinwatchos10/_._",
  6523. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6524. "system.diagnostics.tools.nuspec"
  6525. ]
  6526. },
  6527. "System.Diagnostics.TraceSource/4.3.0": {
  6528. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6529. "type": "package",
  6530. "path": "system.diagnostics.tracesource/4.3.0",
  6531. "files": [
  6532. ".nupkg.metadata",
  6533. ".signature.p7s",
  6534. "ThirdPartyNotices.txt",
  6535. "dotnet_library_license.txt",
  6536. "lib/MonoAndroid10/_._",
  6537. "lib/MonoTouch10/_._",
  6538. "lib/net46/System.Diagnostics.TraceSource.dll",
  6539. "lib/xamarinios10/_._",
  6540. "lib/xamarinmac20/_._",
  6541. "lib/xamarintvos10/_._",
  6542. "lib/xamarinwatchos10/_._",
  6543. "ref/MonoAndroid10/_._",
  6544. "ref/MonoTouch10/_._",
  6545. "ref/net46/System.Diagnostics.TraceSource.dll",
  6546. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6547. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6548. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6549. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6550. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6551. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6552. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6553. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6554. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6555. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6556. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6557. "ref/xamarinios10/_._",
  6558. "ref/xamarinmac20/_._",
  6559. "ref/xamarintvos10/_._",
  6560. "ref/xamarinwatchos10/_._",
  6561. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6562. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6563. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6564. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6565. "system.diagnostics.tracesource.nuspec"
  6566. ]
  6567. },
  6568. "System.Diagnostics.Tracing/4.3.0": {
  6569. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6570. "type": "package",
  6571. "path": "system.diagnostics.tracing/4.3.0",
  6572. "files": [
  6573. ".nupkg.metadata",
  6574. ".signature.p7s",
  6575. "ThirdPartyNotices.txt",
  6576. "dotnet_library_license.txt",
  6577. "lib/MonoAndroid10/_._",
  6578. "lib/MonoTouch10/_._",
  6579. "lib/net45/_._",
  6580. "lib/net462/System.Diagnostics.Tracing.dll",
  6581. "lib/portable-net45+win8+wpa81/_._",
  6582. "lib/win8/_._",
  6583. "lib/wpa81/_._",
  6584. "lib/xamarinios10/_._",
  6585. "lib/xamarinmac20/_._",
  6586. "lib/xamarintvos10/_._",
  6587. "lib/xamarinwatchos10/_._",
  6588. "ref/MonoAndroid10/_._",
  6589. "ref/MonoTouch10/_._",
  6590. "ref/net45/_._",
  6591. "ref/net462/System.Diagnostics.Tracing.dll",
  6592. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6593. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6594. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6595. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6596. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6597. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6598. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6599. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6600. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6601. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6602. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6603. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6604. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6605. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6606. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6607. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6608. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6609. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6610. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6611. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6612. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6613. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6614. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6615. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6616. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6617. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6618. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6619. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6620. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6621. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6622. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6623. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6624. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6625. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6626. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6627. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6628. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6629. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6630. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6631. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6632. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6633. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6634. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6635. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6636. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6637. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6638. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6639. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6640. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6641. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6642. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6643. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6644. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6645. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6646. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6647. "ref/portable-net45+win8+wpa81/_._",
  6648. "ref/win8/_._",
  6649. "ref/wpa81/_._",
  6650. "ref/xamarinios10/_._",
  6651. "ref/xamarinmac20/_._",
  6652. "ref/xamarintvos10/_._",
  6653. "ref/xamarinwatchos10/_._",
  6654. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6655. "system.diagnostics.tracing.nuspec"
  6656. ]
  6657. },
  6658. "System.Drawing.Common/5.0.3": {
  6659. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  6660. "type": "package",
  6661. "path": "system.drawing.common/5.0.3",
  6662. "files": [
  6663. ".nupkg.metadata",
  6664. ".signature.p7s",
  6665. "Icon.png",
  6666. "LICENSE.TXT",
  6667. "THIRD-PARTY-NOTICES.TXT",
  6668. "lib/MonoAndroid10/_._",
  6669. "lib/MonoTouch10/_._",
  6670. "lib/net461/System.Drawing.Common.dll",
  6671. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6672. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6673. "lib/netstandard2.0/System.Drawing.Common.dll",
  6674. "lib/xamarinios10/_._",
  6675. "lib/xamarinmac20/_._",
  6676. "lib/xamarintvos10/_._",
  6677. "lib/xamarinwatchos10/_._",
  6678. "ref/MonoAndroid10/_._",
  6679. "ref/MonoTouch10/_._",
  6680. "ref/net461/System.Drawing.Common.dll",
  6681. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6682. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6683. "ref/netstandard2.0/System.Drawing.Common.dll",
  6684. "ref/xamarinios10/_._",
  6685. "ref/xamarinmac20/_._",
  6686. "ref/xamarintvos10/_._",
  6687. "ref/xamarinwatchos10/_._",
  6688. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6689. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6690. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6691. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6692. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6693. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6694. "system.drawing.common.5.0.3.nupkg.sha512",
  6695. "system.drawing.common.nuspec",
  6696. "useSharedDesignerContext.txt",
  6697. "version.txt"
  6698. ]
  6699. },
  6700. "System.Dynamic.Runtime/4.3.0": {
  6701. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6702. "type": "package",
  6703. "path": "system.dynamic.runtime/4.3.0",
  6704. "files": [
  6705. ".nupkg.metadata",
  6706. ".signature.p7s",
  6707. "ThirdPartyNotices.txt",
  6708. "dotnet_library_license.txt",
  6709. "lib/MonoAndroid10/_._",
  6710. "lib/MonoTouch10/_._",
  6711. "lib/net45/_._",
  6712. "lib/netcore50/System.Dynamic.Runtime.dll",
  6713. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6714. "lib/portable-net45+win8+wp8+wpa81/_._",
  6715. "lib/win8/_._",
  6716. "lib/wp80/_._",
  6717. "lib/wpa81/_._",
  6718. "lib/xamarinios10/_._",
  6719. "lib/xamarinmac20/_._",
  6720. "lib/xamarintvos10/_._",
  6721. "lib/xamarinwatchos10/_._",
  6722. "ref/MonoAndroid10/_._",
  6723. "ref/MonoTouch10/_._",
  6724. "ref/net45/_._",
  6725. "ref/netcore50/System.Dynamic.Runtime.dll",
  6726. "ref/netcore50/System.Dynamic.Runtime.xml",
  6727. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6728. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6729. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6730. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6731. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6732. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6733. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6734. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6735. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6736. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6737. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6738. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6739. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6740. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6741. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6742. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6743. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6744. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6745. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6746. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6747. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6748. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6749. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6750. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6751. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6752. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6753. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6754. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6755. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6756. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6757. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6758. "ref/portable-net45+win8+wp8+wpa81/_._",
  6759. "ref/win8/_._",
  6760. "ref/wp80/_._",
  6761. "ref/wpa81/_._",
  6762. "ref/xamarinios10/_._",
  6763. "ref/xamarinmac20/_._",
  6764. "ref/xamarintvos10/_._",
  6765. "ref/xamarinwatchos10/_._",
  6766. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6767. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6768. "system.dynamic.runtime.nuspec"
  6769. ]
  6770. },
  6771. "System.Globalization/4.3.0": {
  6772. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6773. "type": "package",
  6774. "path": "system.globalization/4.3.0",
  6775. "files": [
  6776. ".nupkg.metadata",
  6777. ".signature.p7s",
  6778. "ThirdPartyNotices.txt",
  6779. "dotnet_library_license.txt",
  6780. "lib/MonoAndroid10/_._",
  6781. "lib/MonoTouch10/_._",
  6782. "lib/net45/_._",
  6783. "lib/portable-net45+win8+wp8+wpa81/_._",
  6784. "lib/win8/_._",
  6785. "lib/wp80/_._",
  6786. "lib/wpa81/_._",
  6787. "lib/xamarinios10/_._",
  6788. "lib/xamarinmac20/_._",
  6789. "lib/xamarintvos10/_._",
  6790. "lib/xamarinwatchos10/_._",
  6791. "ref/MonoAndroid10/_._",
  6792. "ref/MonoTouch10/_._",
  6793. "ref/net45/_._",
  6794. "ref/netcore50/System.Globalization.dll",
  6795. "ref/netcore50/System.Globalization.xml",
  6796. "ref/netcore50/de/System.Globalization.xml",
  6797. "ref/netcore50/es/System.Globalization.xml",
  6798. "ref/netcore50/fr/System.Globalization.xml",
  6799. "ref/netcore50/it/System.Globalization.xml",
  6800. "ref/netcore50/ja/System.Globalization.xml",
  6801. "ref/netcore50/ko/System.Globalization.xml",
  6802. "ref/netcore50/ru/System.Globalization.xml",
  6803. "ref/netcore50/zh-hans/System.Globalization.xml",
  6804. "ref/netcore50/zh-hant/System.Globalization.xml",
  6805. "ref/netstandard1.0/System.Globalization.dll",
  6806. "ref/netstandard1.0/System.Globalization.xml",
  6807. "ref/netstandard1.0/de/System.Globalization.xml",
  6808. "ref/netstandard1.0/es/System.Globalization.xml",
  6809. "ref/netstandard1.0/fr/System.Globalization.xml",
  6810. "ref/netstandard1.0/it/System.Globalization.xml",
  6811. "ref/netstandard1.0/ja/System.Globalization.xml",
  6812. "ref/netstandard1.0/ko/System.Globalization.xml",
  6813. "ref/netstandard1.0/ru/System.Globalization.xml",
  6814. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6815. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6816. "ref/netstandard1.3/System.Globalization.dll",
  6817. "ref/netstandard1.3/System.Globalization.xml",
  6818. "ref/netstandard1.3/de/System.Globalization.xml",
  6819. "ref/netstandard1.3/es/System.Globalization.xml",
  6820. "ref/netstandard1.3/fr/System.Globalization.xml",
  6821. "ref/netstandard1.3/it/System.Globalization.xml",
  6822. "ref/netstandard1.3/ja/System.Globalization.xml",
  6823. "ref/netstandard1.3/ko/System.Globalization.xml",
  6824. "ref/netstandard1.3/ru/System.Globalization.xml",
  6825. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6826. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6827. "ref/portable-net45+win8+wp8+wpa81/_._",
  6828. "ref/win8/_._",
  6829. "ref/wp80/_._",
  6830. "ref/wpa81/_._",
  6831. "ref/xamarinios10/_._",
  6832. "ref/xamarinmac20/_._",
  6833. "ref/xamarintvos10/_._",
  6834. "ref/xamarinwatchos10/_._",
  6835. "system.globalization.4.3.0.nupkg.sha512",
  6836. "system.globalization.nuspec"
  6837. ]
  6838. },
  6839. "System.Globalization.Calendars/4.3.0": {
  6840. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6841. "type": "package",
  6842. "path": "system.globalization.calendars/4.3.0",
  6843. "files": [
  6844. ".nupkg.metadata",
  6845. ".signature.p7s",
  6846. "ThirdPartyNotices.txt",
  6847. "dotnet_library_license.txt",
  6848. "lib/MonoAndroid10/_._",
  6849. "lib/MonoTouch10/_._",
  6850. "lib/net46/System.Globalization.Calendars.dll",
  6851. "lib/xamarinios10/_._",
  6852. "lib/xamarinmac20/_._",
  6853. "lib/xamarintvos10/_._",
  6854. "lib/xamarinwatchos10/_._",
  6855. "ref/MonoAndroid10/_._",
  6856. "ref/MonoTouch10/_._",
  6857. "ref/net46/System.Globalization.Calendars.dll",
  6858. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6859. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6860. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6861. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6862. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6863. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6864. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6865. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6866. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6867. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6868. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6869. "ref/xamarinios10/_._",
  6870. "ref/xamarinmac20/_._",
  6871. "ref/xamarintvos10/_._",
  6872. "ref/xamarinwatchos10/_._",
  6873. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6874. "system.globalization.calendars.nuspec"
  6875. ]
  6876. },
  6877. "System.Globalization.Extensions/4.3.0": {
  6878. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6879. "type": "package",
  6880. "path": "system.globalization.extensions/4.3.0",
  6881. "files": [
  6882. ".nupkg.metadata",
  6883. ".signature.p7s",
  6884. "ThirdPartyNotices.txt",
  6885. "dotnet_library_license.txt",
  6886. "lib/MonoAndroid10/_._",
  6887. "lib/MonoTouch10/_._",
  6888. "lib/net46/System.Globalization.Extensions.dll",
  6889. "lib/xamarinios10/_._",
  6890. "lib/xamarinmac20/_._",
  6891. "lib/xamarintvos10/_._",
  6892. "lib/xamarinwatchos10/_._",
  6893. "ref/MonoAndroid10/_._",
  6894. "ref/MonoTouch10/_._",
  6895. "ref/net46/System.Globalization.Extensions.dll",
  6896. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6897. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6898. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6899. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6900. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6901. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6902. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6903. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6904. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6905. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6906. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6907. "ref/xamarinios10/_._",
  6908. "ref/xamarinmac20/_._",
  6909. "ref/xamarintvos10/_._",
  6910. "ref/xamarinwatchos10/_._",
  6911. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6912. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6913. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6914. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6915. "system.globalization.extensions.nuspec"
  6916. ]
  6917. },
  6918. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  6919. "sha512": "PbhxMaAejQ5pVStTsMPzja0Q2FOeEIOQy8isxw2tTxduqIjWRJ+P78bWGpaXH67Tkeb+2t91YBj2stXEw6vyZQ==",
  6920. "type": "package",
  6921. "path": "system.identitymodel.tokens.jwt/8.6.0",
  6922. "files": [
  6923. ".nupkg.metadata",
  6924. ".signature.p7s",
  6925. "README.md",
  6926. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  6927. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  6928. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  6929. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  6930. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  6931. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  6932. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  6933. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  6934. "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
  6935. "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml",
  6936. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6937. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6938. "system.identitymodel.tokens.jwt.8.6.0.nupkg.sha512",
  6939. "system.identitymodel.tokens.jwt.nuspec"
  6940. ]
  6941. },
  6942. "System.IO/4.3.0": {
  6943. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6944. "type": "package",
  6945. "path": "system.io/4.3.0",
  6946. "files": [
  6947. ".nupkg.metadata",
  6948. ".signature.p7s",
  6949. "ThirdPartyNotices.txt",
  6950. "dotnet_library_license.txt",
  6951. "lib/MonoAndroid10/_._",
  6952. "lib/MonoTouch10/_._",
  6953. "lib/net45/_._",
  6954. "lib/net462/System.IO.dll",
  6955. "lib/portable-net45+win8+wp8+wpa81/_._",
  6956. "lib/win8/_._",
  6957. "lib/wp80/_._",
  6958. "lib/wpa81/_._",
  6959. "lib/xamarinios10/_._",
  6960. "lib/xamarinmac20/_._",
  6961. "lib/xamarintvos10/_._",
  6962. "lib/xamarinwatchos10/_._",
  6963. "ref/MonoAndroid10/_._",
  6964. "ref/MonoTouch10/_._",
  6965. "ref/net45/_._",
  6966. "ref/net462/System.IO.dll",
  6967. "ref/netcore50/System.IO.dll",
  6968. "ref/netcore50/System.IO.xml",
  6969. "ref/netcore50/de/System.IO.xml",
  6970. "ref/netcore50/es/System.IO.xml",
  6971. "ref/netcore50/fr/System.IO.xml",
  6972. "ref/netcore50/it/System.IO.xml",
  6973. "ref/netcore50/ja/System.IO.xml",
  6974. "ref/netcore50/ko/System.IO.xml",
  6975. "ref/netcore50/ru/System.IO.xml",
  6976. "ref/netcore50/zh-hans/System.IO.xml",
  6977. "ref/netcore50/zh-hant/System.IO.xml",
  6978. "ref/netstandard1.0/System.IO.dll",
  6979. "ref/netstandard1.0/System.IO.xml",
  6980. "ref/netstandard1.0/de/System.IO.xml",
  6981. "ref/netstandard1.0/es/System.IO.xml",
  6982. "ref/netstandard1.0/fr/System.IO.xml",
  6983. "ref/netstandard1.0/it/System.IO.xml",
  6984. "ref/netstandard1.0/ja/System.IO.xml",
  6985. "ref/netstandard1.0/ko/System.IO.xml",
  6986. "ref/netstandard1.0/ru/System.IO.xml",
  6987. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6988. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6989. "ref/netstandard1.3/System.IO.dll",
  6990. "ref/netstandard1.3/System.IO.xml",
  6991. "ref/netstandard1.3/de/System.IO.xml",
  6992. "ref/netstandard1.3/es/System.IO.xml",
  6993. "ref/netstandard1.3/fr/System.IO.xml",
  6994. "ref/netstandard1.3/it/System.IO.xml",
  6995. "ref/netstandard1.3/ja/System.IO.xml",
  6996. "ref/netstandard1.3/ko/System.IO.xml",
  6997. "ref/netstandard1.3/ru/System.IO.xml",
  6998. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6999. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7000. "ref/netstandard1.5/System.IO.dll",
  7001. "ref/netstandard1.5/System.IO.xml",
  7002. "ref/netstandard1.5/de/System.IO.xml",
  7003. "ref/netstandard1.5/es/System.IO.xml",
  7004. "ref/netstandard1.5/fr/System.IO.xml",
  7005. "ref/netstandard1.5/it/System.IO.xml",
  7006. "ref/netstandard1.5/ja/System.IO.xml",
  7007. "ref/netstandard1.5/ko/System.IO.xml",
  7008. "ref/netstandard1.5/ru/System.IO.xml",
  7009. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7010. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7011. "ref/portable-net45+win8+wp8+wpa81/_._",
  7012. "ref/win8/_._",
  7013. "ref/wp80/_._",
  7014. "ref/wpa81/_._",
  7015. "ref/xamarinios10/_._",
  7016. "ref/xamarinmac20/_._",
  7017. "ref/xamarintvos10/_._",
  7018. "ref/xamarinwatchos10/_._",
  7019. "system.io.4.3.0.nupkg.sha512",
  7020. "system.io.nuspec"
  7021. ]
  7022. },
  7023. "System.IO.Compression/4.3.0": {
  7024. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7025. "type": "package",
  7026. "path": "system.io.compression/4.3.0",
  7027. "files": [
  7028. ".nupkg.metadata",
  7029. ".signature.p7s",
  7030. "ThirdPartyNotices.txt",
  7031. "dotnet_library_license.txt",
  7032. "lib/MonoAndroid10/_._",
  7033. "lib/MonoTouch10/_._",
  7034. "lib/net45/_._",
  7035. "lib/net46/System.IO.Compression.dll",
  7036. "lib/portable-net45+win8+wpa81/_._",
  7037. "lib/win8/_._",
  7038. "lib/wpa81/_._",
  7039. "lib/xamarinios10/_._",
  7040. "lib/xamarinmac20/_._",
  7041. "lib/xamarintvos10/_._",
  7042. "lib/xamarinwatchos10/_._",
  7043. "ref/MonoAndroid10/_._",
  7044. "ref/MonoTouch10/_._",
  7045. "ref/net45/_._",
  7046. "ref/net46/System.IO.Compression.dll",
  7047. "ref/netcore50/System.IO.Compression.dll",
  7048. "ref/netcore50/System.IO.Compression.xml",
  7049. "ref/netcore50/de/System.IO.Compression.xml",
  7050. "ref/netcore50/es/System.IO.Compression.xml",
  7051. "ref/netcore50/fr/System.IO.Compression.xml",
  7052. "ref/netcore50/it/System.IO.Compression.xml",
  7053. "ref/netcore50/ja/System.IO.Compression.xml",
  7054. "ref/netcore50/ko/System.IO.Compression.xml",
  7055. "ref/netcore50/ru/System.IO.Compression.xml",
  7056. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7057. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7058. "ref/netstandard1.1/System.IO.Compression.dll",
  7059. "ref/netstandard1.1/System.IO.Compression.xml",
  7060. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7061. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7062. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7063. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7064. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7065. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7066. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7067. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7068. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7069. "ref/netstandard1.3/System.IO.Compression.dll",
  7070. "ref/netstandard1.3/System.IO.Compression.xml",
  7071. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7072. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7073. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7074. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7075. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7076. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7077. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7078. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7079. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7080. "ref/portable-net45+win8+wpa81/_._",
  7081. "ref/win8/_._",
  7082. "ref/wpa81/_._",
  7083. "ref/xamarinios10/_._",
  7084. "ref/xamarinmac20/_._",
  7085. "ref/xamarintvos10/_._",
  7086. "ref/xamarinwatchos10/_._",
  7087. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7088. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7089. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7090. "system.io.compression.4.3.0.nupkg.sha512",
  7091. "system.io.compression.nuspec"
  7092. ]
  7093. },
  7094. "System.IO.Compression.ZipFile/4.3.0": {
  7095. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7096. "type": "package",
  7097. "path": "system.io.compression.zipfile/4.3.0",
  7098. "files": [
  7099. ".nupkg.metadata",
  7100. ".signature.p7s",
  7101. "ThirdPartyNotices.txt",
  7102. "dotnet_library_license.txt",
  7103. "lib/MonoAndroid10/_._",
  7104. "lib/MonoTouch10/_._",
  7105. "lib/net46/System.IO.Compression.ZipFile.dll",
  7106. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7107. "lib/xamarinios10/_._",
  7108. "lib/xamarinmac20/_._",
  7109. "lib/xamarintvos10/_._",
  7110. "lib/xamarinwatchos10/_._",
  7111. "ref/MonoAndroid10/_._",
  7112. "ref/MonoTouch10/_._",
  7113. "ref/net46/System.IO.Compression.ZipFile.dll",
  7114. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7115. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7116. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7117. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7118. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7119. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7120. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7121. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7122. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7123. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7124. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7125. "ref/xamarinios10/_._",
  7126. "ref/xamarinmac20/_._",
  7127. "ref/xamarintvos10/_._",
  7128. "ref/xamarinwatchos10/_._",
  7129. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7130. "system.io.compression.zipfile.nuspec"
  7131. ]
  7132. },
  7133. "System.IO.FileSystem/4.3.0": {
  7134. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7135. "type": "package",
  7136. "path": "system.io.filesystem/4.3.0",
  7137. "files": [
  7138. ".nupkg.metadata",
  7139. ".signature.p7s",
  7140. "ThirdPartyNotices.txt",
  7141. "dotnet_library_license.txt",
  7142. "lib/MonoAndroid10/_._",
  7143. "lib/MonoTouch10/_._",
  7144. "lib/net46/System.IO.FileSystem.dll",
  7145. "lib/xamarinios10/_._",
  7146. "lib/xamarinmac20/_._",
  7147. "lib/xamarintvos10/_._",
  7148. "lib/xamarinwatchos10/_._",
  7149. "ref/MonoAndroid10/_._",
  7150. "ref/MonoTouch10/_._",
  7151. "ref/net46/System.IO.FileSystem.dll",
  7152. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7153. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7154. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7155. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7156. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7157. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7158. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7159. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7160. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7161. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7162. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7163. "ref/xamarinios10/_._",
  7164. "ref/xamarinmac20/_._",
  7165. "ref/xamarintvos10/_._",
  7166. "ref/xamarinwatchos10/_._",
  7167. "system.io.filesystem.4.3.0.nupkg.sha512",
  7168. "system.io.filesystem.nuspec"
  7169. ]
  7170. },
  7171. "System.IO.FileSystem.Primitives/4.3.0": {
  7172. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7173. "type": "package",
  7174. "path": "system.io.filesystem.primitives/4.3.0",
  7175. "files": [
  7176. ".nupkg.metadata",
  7177. ".signature.p7s",
  7178. "ThirdPartyNotices.txt",
  7179. "dotnet_library_license.txt",
  7180. "lib/MonoAndroid10/_._",
  7181. "lib/MonoTouch10/_._",
  7182. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7183. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7184. "lib/xamarinios10/_._",
  7185. "lib/xamarinmac20/_._",
  7186. "lib/xamarintvos10/_._",
  7187. "lib/xamarinwatchos10/_._",
  7188. "ref/MonoAndroid10/_._",
  7189. "ref/MonoTouch10/_._",
  7190. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7191. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7192. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7193. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7194. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7195. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7196. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7197. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7198. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7199. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7200. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7201. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7202. "ref/xamarinios10/_._",
  7203. "ref/xamarinmac20/_._",
  7204. "ref/xamarintvos10/_._",
  7205. "ref/xamarinwatchos10/_._",
  7206. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7207. "system.io.filesystem.primitives.nuspec"
  7208. ]
  7209. },
  7210. "System.IO.Pipelines/5.0.0": {
  7211. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7212. "type": "package",
  7213. "path": "system.io.pipelines/5.0.0",
  7214. "files": [
  7215. ".nupkg.metadata",
  7216. ".signature.p7s",
  7217. "Icon.png",
  7218. "LICENSE.TXT",
  7219. "THIRD-PARTY-NOTICES.TXT",
  7220. "lib/net461/System.IO.Pipelines.dll",
  7221. "lib/net461/System.IO.Pipelines.xml",
  7222. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7223. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7224. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7225. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7226. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7227. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7228. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7229. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7230. "system.io.pipelines.5.0.0.nupkg.sha512",
  7231. "system.io.pipelines.nuspec",
  7232. "useSharedDesignerContext.txt",
  7233. "version.txt"
  7234. ]
  7235. },
  7236. "System.Linq/4.3.0": {
  7237. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7238. "type": "package",
  7239. "path": "system.linq/4.3.0",
  7240. "files": [
  7241. ".nupkg.metadata",
  7242. ".signature.p7s",
  7243. "ThirdPartyNotices.txt",
  7244. "dotnet_library_license.txt",
  7245. "lib/MonoAndroid10/_._",
  7246. "lib/MonoTouch10/_._",
  7247. "lib/net45/_._",
  7248. "lib/net463/System.Linq.dll",
  7249. "lib/netcore50/System.Linq.dll",
  7250. "lib/netstandard1.6/System.Linq.dll",
  7251. "lib/portable-net45+win8+wp8+wpa81/_._",
  7252. "lib/win8/_._",
  7253. "lib/wp80/_._",
  7254. "lib/wpa81/_._",
  7255. "lib/xamarinios10/_._",
  7256. "lib/xamarinmac20/_._",
  7257. "lib/xamarintvos10/_._",
  7258. "lib/xamarinwatchos10/_._",
  7259. "ref/MonoAndroid10/_._",
  7260. "ref/MonoTouch10/_._",
  7261. "ref/net45/_._",
  7262. "ref/net463/System.Linq.dll",
  7263. "ref/netcore50/System.Linq.dll",
  7264. "ref/netcore50/System.Linq.xml",
  7265. "ref/netcore50/de/System.Linq.xml",
  7266. "ref/netcore50/es/System.Linq.xml",
  7267. "ref/netcore50/fr/System.Linq.xml",
  7268. "ref/netcore50/it/System.Linq.xml",
  7269. "ref/netcore50/ja/System.Linq.xml",
  7270. "ref/netcore50/ko/System.Linq.xml",
  7271. "ref/netcore50/ru/System.Linq.xml",
  7272. "ref/netcore50/zh-hans/System.Linq.xml",
  7273. "ref/netcore50/zh-hant/System.Linq.xml",
  7274. "ref/netstandard1.0/System.Linq.dll",
  7275. "ref/netstandard1.0/System.Linq.xml",
  7276. "ref/netstandard1.0/de/System.Linq.xml",
  7277. "ref/netstandard1.0/es/System.Linq.xml",
  7278. "ref/netstandard1.0/fr/System.Linq.xml",
  7279. "ref/netstandard1.0/it/System.Linq.xml",
  7280. "ref/netstandard1.0/ja/System.Linq.xml",
  7281. "ref/netstandard1.0/ko/System.Linq.xml",
  7282. "ref/netstandard1.0/ru/System.Linq.xml",
  7283. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7284. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7285. "ref/netstandard1.6/System.Linq.dll",
  7286. "ref/netstandard1.6/System.Linq.xml",
  7287. "ref/netstandard1.6/de/System.Linq.xml",
  7288. "ref/netstandard1.6/es/System.Linq.xml",
  7289. "ref/netstandard1.6/fr/System.Linq.xml",
  7290. "ref/netstandard1.6/it/System.Linq.xml",
  7291. "ref/netstandard1.6/ja/System.Linq.xml",
  7292. "ref/netstandard1.6/ko/System.Linq.xml",
  7293. "ref/netstandard1.6/ru/System.Linq.xml",
  7294. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7295. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7296. "ref/portable-net45+win8+wp8+wpa81/_._",
  7297. "ref/win8/_._",
  7298. "ref/wp80/_._",
  7299. "ref/wpa81/_._",
  7300. "ref/xamarinios10/_._",
  7301. "ref/xamarinmac20/_._",
  7302. "ref/xamarintvos10/_._",
  7303. "ref/xamarinwatchos10/_._",
  7304. "system.linq.4.3.0.nupkg.sha512",
  7305. "system.linq.nuspec"
  7306. ]
  7307. },
  7308. "System.Linq.Expressions/4.3.0": {
  7309. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7310. "type": "package",
  7311. "path": "system.linq.expressions/4.3.0",
  7312. "files": [
  7313. ".nupkg.metadata",
  7314. ".signature.p7s",
  7315. "ThirdPartyNotices.txt",
  7316. "dotnet_library_license.txt",
  7317. "lib/MonoAndroid10/_._",
  7318. "lib/MonoTouch10/_._",
  7319. "lib/net45/_._",
  7320. "lib/net463/System.Linq.Expressions.dll",
  7321. "lib/netcore50/System.Linq.Expressions.dll",
  7322. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7323. "lib/portable-net45+win8+wp8+wpa81/_._",
  7324. "lib/win8/_._",
  7325. "lib/wp80/_._",
  7326. "lib/wpa81/_._",
  7327. "lib/xamarinios10/_._",
  7328. "lib/xamarinmac20/_._",
  7329. "lib/xamarintvos10/_._",
  7330. "lib/xamarinwatchos10/_._",
  7331. "ref/MonoAndroid10/_._",
  7332. "ref/MonoTouch10/_._",
  7333. "ref/net45/_._",
  7334. "ref/net463/System.Linq.Expressions.dll",
  7335. "ref/netcore50/System.Linq.Expressions.dll",
  7336. "ref/netcore50/System.Linq.Expressions.xml",
  7337. "ref/netcore50/de/System.Linq.Expressions.xml",
  7338. "ref/netcore50/es/System.Linq.Expressions.xml",
  7339. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7340. "ref/netcore50/it/System.Linq.Expressions.xml",
  7341. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7342. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7343. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7344. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7345. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7346. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7347. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7348. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7349. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7350. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7351. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7352. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7353. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7354. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7355. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7356. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7357. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7358. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7359. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7360. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7361. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7362. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7363. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7364. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7365. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7366. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7367. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7368. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7369. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7370. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7371. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7372. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7373. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7374. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7375. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7376. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7377. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7378. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7379. "ref/portable-net45+win8+wp8+wpa81/_._",
  7380. "ref/win8/_._",
  7381. "ref/wp80/_._",
  7382. "ref/wpa81/_._",
  7383. "ref/xamarinios10/_._",
  7384. "ref/xamarinmac20/_._",
  7385. "ref/xamarintvos10/_._",
  7386. "ref/xamarinwatchos10/_._",
  7387. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7388. "system.linq.expressions.4.3.0.nupkg.sha512",
  7389. "system.linq.expressions.nuspec"
  7390. ]
  7391. },
  7392. "System.Memory/4.5.5": {
  7393. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7394. "type": "package",
  7395. "path": "system.memory/4.5.5",
  7396. "files": [
  7397. ".nupkg.metadata",
  7398. ".signature.p7s",
  7399. "LICENSE.TXT",
  7400. "THIRD-PARTY-NOTICES.TXT",
  7401. "lib/net461/System.Memory.dll",
  7402. "lib/net461/System.Memory.xml",
  7403. "lib/netcoreapp2.1/_._",
  7404. "lib/netstandard1.1/System.Memory.dll",
  7405. "lib/netstandard1.1/System.Memory.xml",
  7406. "lib/netstandard2.0/System.Memory.dll",
  7407. "lib/netstandard2.0/System.Memory.xml",
  7408. "ref/netcoreapp2.1/_._",
  7409. "system.memory.4.5.5.nupkg.sha512",
  7410. "system.memory.nuspec",
  7411. "useSharedDesignerContext.txt",
  7412. "version.txt"
  7413. ]
  7414. },
  7415. "System.Net.Http/4.3.2": {
  7416. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7417. "type": "package",
  7418. "path": "system.net.http/4.3.2",
  7419. "files": [
  7420. ".nupkg.metadata",
  7421. ".signature.p7s",
  7422. "ThirdPartyNotices.txt",
  7423. "dotnet_library_license.txt",
  7424. "lib/Xamarinmac20/_._",
  7425. "lib/monoandroid10/_._",
  7426. "lib/monotouch10/_._",
  7427. "lib/net45/_._",
  7428. "lib/net46/System.Net.Http.dll",
  7429. "lib/portable-net45+win8+wpa81/_._",
  7430. "lib/win8/_._",
  7431. "lib/wpa81/_._",
  7432. "lib/xamarinios10/_._",
  7433. "lib/xamarintvos10/_._",
  7434. "lib/xamarinwatchos10/_._",
  7435. "ref/Xamarinmac20/_._",
  7436. "ref/monoandroid10/_._",
  7437. "ref/monotouch10/_._",
  7438. "ref/net45/_._",
  7439. "ref/net46/System.Net.Http.dll",
  7440. "ref/netcore50/System.Net.Http.dll",
  7441. "ref/netstandard1.1/System.Net.Http.dll",
  7442. "ref/netstandard1.3/System.Net.Http.dll",
  7443. "ref/portable-net45+win8+wpa81/_._",
  7444. "ref/win8/_._",
  7445. "ref/wpa81/_._",
  7446. "ref/xamarinios10/_._",
  7447. "ref/xamarintvos10/_._",
  7448. "ref/xamarinwatchos10/_._",
  7449. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7450. "runtimes/win/lib/net46/System.Net.Http.dll",
  7451. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7452. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7453. "system.net.http.4.3.2.nupkg.sha512",
  7454. "system.net.http.nuspec"
  7455. ]
  7456. },
  7457. "System.Net.NameResolution/4.3.0": {
  7458. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7459. "type": "package",
  7460. "path": "system.net.nameresolution/4.3.0",
  7461. "files": [
  7462. ".nupkg.metadata",
  7463. ".signature.p7s",
  7464. "ThirdPartyNotices.txt",
  7465. "dotnet_library_license.txt",
  7466. "lib/MonoAndroid10/_._",
  7467. "lib/MonoTouch10/_._",
  7468. "lib/net46/System.Net.NameResolution.dll",
  7469. "lib/xamarinios10/_._",
  7470. "lib/xamarinmac20/_._",
  7471. "lib/xamarintvos10/_._",
  7472. "lib/xamarinwatchos10/_._",
  7473. "ref/MonoAndroid10/_._",
  7474. "ref/MonoTouch10/_._",
  7475. "ref/net46/System.Net.NameResolution.dll",
  7476. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7477. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7478. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7479. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7480. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7481. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7482. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7483. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7484. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7485. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7486. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7487. "ref/xamarinios10/_._",
  7488. "ref/xamarinmac20/_._",
  7489. "ref/xamarintvos10/_._",
  7490. "ref/xamarinwatchos10/_._",
  7491. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7492. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7493. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7494. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7495. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7496. "system.net.nameresolution.nuspec"
  7497. ]
  7498. },
  7499. "System.Net.Primitives/4.3.0": {
  7500. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7501. "type": "package",
  7502. "path": "system.net.primitives/4.3.0",
  7503. "files": [
  7504. ".nupkg.metadata",
  7505. ".signature.p7s",
  7506. "ThirdPartyNotices.txt",
  7507. "dotnet_library_license.txt",
  7508. "lib/MonoAndroid10/_._",
  7509. "lib/MonoTouch10/_._",
  7510. "lib/net45/_._",
  7511. "lib/portable-net45+win8+wp8+wpa81/_._",
  7512. "lib/win8/_._",
  7513. "lib/wp80/_._",
  7514. "lib/wpa81/_._",
  7515. "lib/xamarinios10/_._",
  7516. "lib/xamarinmac20/_._",
  7517. "lib/xamarintvos10/_._",
  7518. "lib/xamarinwatchos10/_._",
  7519. "ref/MonoAndroid10/_._",
  7520. "ref/MonoTouch10/_._",
  7521. "ref/net45/_._",
  7522. "ref/netcore50/System.Net.Primitives.dll",
  7523. "ref/netcore50/System.Net.Primitives.xml",
  7524. "ref/netcore50/de/System.Net.Primitives.xml",
  7525. "ref/netcore50/es/System.Net.Primitives.xml",
  7526. "ref/netcore50/fr/System.Net.Primitives.xml",
  7527. "ref/netcore50/it/System.Net.Primitives.xml",
  7528. "ref/netcore50/ja/System.Net.Primitives.xml",
  7529. "ref/netcore50/ko/System.Net.Primitives.xml",
  7530. "ref/netcore50/ru/System.Net.Primitives.xml",
  7531. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7532. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7533. "ref/netstandard1.0/System.Net.Primitives.dll",
  7534. "ref/netstandard1.0/System.Net.Primitives.xml",
  7535. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7536. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7537. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7538. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7539. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7540. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7541. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7542. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7543. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7544. "ref/netstandard1.1/System.Net.Primitives.dll",
  7545. "ref/netstandard1.1/System.Net.Primitives.xml",
  7546. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7547. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7548. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7549. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7550. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7551. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7552. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7553. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7554. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7555. "ref/netstandard1.3/System.Net.Primitives.dll",
  7556. "ref/netstandard1.3/System.Net.Primitives.xml",
  7557. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7558. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7559. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7560. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7561. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7562. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7563. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7564. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7565. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7566. "ref/portable-net45+win8+wp8+wpa81/_._",
  7567. "ref/win8/_._",
  7568. "ref/wp80/_._",
  7569. "ref/wpa81/_._",
  7570. "ref/xamarinios10/_._",
  7571. "ref/xamarinmac20/_._",
  7572. "ref/xamarintvos10/_._",
  7573. "ref/xamarinwatchos10/_._",
  7574. "system.net.primitives.4.3.0.nupkg.sha512",
  7575. "system.net.primitives.nuspec"
  7576. ]
  7577. },
  7578. "System.Net.Security/4.3.0": {
  7579. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7580. "type": "package",
  7581. "path": "system.net.security/4.3.0",
  7582. "files": [
  7583. ".nupkg.metadata",
  7584. ".signature.p7s",
  7585. "ThirdPartyNotices.txt",
  7586. "dotnet_library_license.txt",
  7587. "lib/MonoAndroid10/_._",
  7588. "lib/MonoTouch10/_._",
  7589. "lib/net46/System.Net.Security.dll",
  7590. "lib/xamarinios10/_._",
  7591. "lib/xamarinmac20/_._",
  7592. "lib/xamarintvos10/_._",
  7593. "lib/xamarinwatchos10/_._",
  7594. "ref/MonoAndroid10/_._",
  7595. "ref/MonoTouch10/_._",
  7596. "ref/net46/System.Net.Security.dll",
  7597. "ref/netstandard1.3/System.Net.Security.dll",
  7598. "ref/netstandard1.3/System.Net.Security.xml",
  7599. "ref/netstandard1.3/de/System.Net.Security.xml",
  7600. "ref/netstandard1.3/es/System.Net.Security.xml",
  7601. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7602. "ref/netstandard1.3/it/System.Net.Security.xml",
  7603. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7604. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7605. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7606. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7607. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7608. "ref/xamarinios10/_._",
  7609. "ref/xamarinmac20/_._",
  7610. "ref/xamarintvos10/_._",
  7611. "ref/xamarinwatchos10/_._",
  7612. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7613. "runtimes/win/lib/net46/System.Net.Security.dll",
  7614. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7615. "runtimes/win7/lib/netcore50/_._",
  7616. "system.net.security.4.3.0.nupkg.sha512",
  7617. "system.net.security.nuspec"
  7618. ]
  7619. },
  7620. "System.Net.Sockets/4.3.0": {
  7621. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7622. "type": "package",
  7623. "path": "system.net.sockets/4.3.0",
  7624. "files": [
  7625. ".nupkg.metadata",
  7626. ".signature.p7s",
  7627. "ThirdPartyNotices.txt",
  7628. "dotnet_library_license.txt",
  7629. "lib/MonoAndroid10/_._",
  7630. "lib/MonoTouch10/_._",
  7631. "lib/net46/System.Net.Sockets.dll",
  7632. "lib/xamarinios10/_._",
  7633. "lib/xamarinmac20/_._",
  7634. "lib/xamarintvos10/_._",
  7635. "lib/xamarinwatchos10/_._",
  7636. "ref/MonoAndroid10/_._",
  7637. "ref/MonoTouch10/_._",
  7638. "ref/net46/System.Net.Sockets.dll",
  7639. "ref/netstandard1.3/System.Net.Sockets.dll",
  7640. "ref/netstandard1.3/System.Net.Sockets.xml",
  7641. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7642. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7643. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7644. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7645. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7646. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7647. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7648. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7649. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7650. "ref/xamarinios10/_._",
  7651. "ref/xamarinmac20/_._",
  7652. "ref/xamarintvos10/_._",
  7653. "ref/xamarinwatchos10/_._",
  7654. "system.net.sockets.4.3.0.nupkg.sha512",
  7655. "system.net.sockets.nuspec"
  7656. ]
  7657. },
  7658. "System.ObjectModel/4.3.0": {
  7659. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7660. "type": "package",
  7661. "path": "system.objectmodel/4.3.0",
  7662. "files": [
  7663. ".nupkg.metadata",
  7664. ".signature.p7s",
  7665. "ThirdPartyNotices.txt",
  7666. "dotnet_library_license.txt",
  7667. "lib/MonoAndroid10/_._",
  7668. "lib/MonoTouch10/_._",
  7669. "lib/net45/_._",
  7670. "lib/netcore50/System.ObjectModel.dll",
  7671. "lib/netstandard1.3/System.ObjectModel.dll",
  7672. "lib/portable-net45+win8+wp8+wpa81/_._",
  7673. "lib/win8/_._",
  7674. "lib/wp80/_._",
  7675. "lib/wpa81/_._",
  7676. "lib/xamarinios10/_._",
  7677. "lib/xamarinmac20/_._",
  7678. "lib/xamarintvos10/_._",
  7679. "lib/xamarinwatchos10/_._",
  7680. "ref/MonoAndroid10/_._",
  7681. "ref/MonoTouch10/_._",
  7682. "ref/net45/_._",
  7683. "ref/netcore50/System.ObjectModel.dll",
  7684. "ref/netcore50/System.ObjectModel.xml",
  7685. "ref/netcore50/de/System.ObjectModel.xml",
  7686. "ref/netcore50/es/System.ObjectModel.xml",
  7687. "ref/netcore50/fr/System.ObjectModel.xml",
  7688. "ref/netcore50/it/System.ObjectModel.xml",
  7689. "ref/netcore50/ja/System.ObjectModel.xml",
  7690. "ref/netcore50/ko/System.ObjectModel.xml",
  7691. "ref/netcore50/ru/System.ObjectModel.xml",
  7692. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7693. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7694. "ref/netstandard1.0/System.ObjectModel.dll",
  7695. "ref/netstandard1.0/System.ObjectModel.xml",
  7696. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7697. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7698. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7699. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7700. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7701. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7702. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7703. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7704. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7705. "ref/netstandard1.3/System.ObjectModel.dll",
  7706. "ref/netstandard1.3/System.ObjectModel.xml",
  7707. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7708. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7709. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7710. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7711. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7712. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7713. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7714. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7715. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7716. "ref/portable-net45+win8+wp8+wpa81/_._",
  7717. "ref/win8/_._",
  7718. "ref/wp80/_._",
  7719. "ref/wpa81/_._",
  7720. "ref/xamarinios10/_._",
  7721. "ref/xamarinmac20/_._",
  7722. "ref/xamarintvos10/_._",
  7723. "ref/xamarinwatchos10/_._",
  7724. "system.objectmodel.4.3.0.nupkg.sha512",
  7725. "system.objectmodel.nuspec"
  7726. ]
  7727. },
  7728. "System.Reactive/4.4.1": {
  7729. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  7730. "type": "package",
  7731. "path": "system.reactive/4.4.1",
  7732. "files": [
  7733. ".nupkg.metadata",
  7734. ".signature.p7s",
  7735. "build/netcoreapp3.0/System.Reactive.dll",
  7736. "build/netcoreapp3.0/System.Reactive.targets",
  7737. "build/netcoreapp3.0/System.Reactive.xml",
  7738. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  7739. "lib/net46/System.Reactive.dll",
  7740. "lib/net46/System.Reactive.xml",
  7741. "lib/netcoreapp3.0/_._",
  7742. "lib/netstandard2.0/System.Reactive.dll",
  7743. "lib/netstandard2.0/System.Reactive.xml",
  7744. "lib/uap10.0.16299/System.Reactive.dll",
  7745. "lib/uap10.0.16299/System.Reactive.pri",
  7746. "lib/uap10.0.16299/System.Reactive.xml",
  7747. "lib/uap10.0/System.Reactive.dll",
  7748. "lib/uap10.0/System.Reactive.pri",
  7749. "lib/uap10.0/System.Reactive.xml",
  7750. "system.reactive.4.4.1.nupkg.sha512",
  7751. "system.reactive.nuspec"
  7752. ]
  7753. },
  7754. "System.Reflection/4.3.0": {
  7755. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7756. "type": "package",
  7757. "path": "system.reflection/4.3.0",
  7758. "files": [
  7759. ".nupkg.metadata",
  7760. ".signature.p7s",
  7761. "ThirdPartyNotices.txt",
  7762. "dotnet_library_license.txt",
  7763. "lib/MonoAndroid10/_._",
  7764. "lib/MonoTouch10/_._",
  7765. "lib/net45/_._",
  7766. "lib/net462/System.Reflection.dll",
  7767. "lib/portable-net45+win8+wp8+wpa81/_._",
  7768. "lib/win8/_._",
  7769. "lib/wp80/_._",
  7770. "lib/wpa81/_._",
  7771. "lib/xamarinios10/_._",
  7772. "lib/xamarinmac20/_._",
  7773. "lib/xamarintvos10/_._",
  7774. "lib/xamarinwatchos10/_._",
  7775. "ref/MonoAndroid10/_._",
  7776. "ref/MonoTouch10/_._",
  7777. "ref/net45/_._",
  7778. "ref/net462/System.Reflection.dll",
  7779. "ref/netcore50/System.Reflection.dll",
  7780. "ref/netcore50/System.Reflection.xml",
  7781. "ref/netcore50/de/System.Reflection.xml",
  7782. "ref/netcore50/es/System.Reflection.xml",
  7783. "ref/netcore50/fr/System.Reflection.xml",
  7784. "ref/netcore50/it/System.Reflection.xml",
  7785. "ref/netcore50/ja/System.Reflection.xml",
  7786. "ref/netcore50/ko/System.Reflection.xml",
  7787. "ref/netcore50/ru/System.Reflection.xml",
  7788. "ref/netcore50/zh-hans/System.Reflection.xml",
  7789. "ref/netcore50/zh-hant/System.Reflection.xml",
  7790. "ref/netstandard1.0/System.Reflection.dll",
  7791. "ref/netstandard1.0/System.Reflection.xml",
  7792. "ref/netstandard1.0/de/System.Reflection.xml",
  7793. "ref/netstandard1.0/es/System.Reflection.xml",
  7794. "ref/netstandard1.0/fr/System.Reflection.xml",
  7795. "ref/netstandard1.0/it/System.Reflection.xml",
  7796. "ref/netstandard1.0/ja/System.Reflection.xml",
  7797. "ref/netstandard1.0/ko/System.Reflection.xml",
  7798. "ref/netstandard1.0/ru/System.Reflection.xml",
  7799. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7800. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7801. "ref/netstandard1.3/System.Reflection.dll",
  7802. "ref/netstandard1.3/System.Reflection.xml",
  7803. "ref/netstandard1.3/de/System.Reflection.xml",
  7804. "ref/netstandard1.3/es/System.Reflection.xml",
  7805. "ref/netstandard1.3/fr/System.Reflection.xml",
  7806. "ref/netstandard1.3/it/System.Reflection.xml",
  7807. "ref/netstandard1.3/ja/System.Reflection.xml",
  7808. "ref/netstandard1.3/ko/System.Reflection.xml",
  7809. "ref/netstandard1.3/ru/System.Reflection.xml",
  7810. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7811. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7812. "ref/netstandard1.5/System.Reflection.dll",
  7813. "ref/netstandard1.5/System.Reflection.xml",
  7814. "ref/netstandard1.5/de/System.Reflection.xml",
  7815. "ref/netstandard1.5/es/System.Reflection.xml",
  7816. "ref/netstandard1.5/fr/System.Reflection.xml",
  7817. "ref/netstandard1.5/it/System.Reflection.xml",
  7818. "ref/netstandard1.5/ja/System.Reflection.xml",
  7819. "ref/netstandard1.5/ko/System.Reflection.xml",
  7820. "ref/netstandard1.5/ru/System.Reflection.xml",
  7821. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7822. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7823. "ref/portable-net45+win8+wp8+wpa81/_._",
  7824. "ref/win8/_._",
  7825. "ref/wp80/_._",
  7826. "ref/wpa81/_._",
  7827. "ref/xamarinios10/_._",
  7828. "ref/xamarinmac20/_._",
  7829. "ref/xamarintvos10/_._",
  7830. "ref/xamarinwatchos10/_._",
  7831. "system.reflection.4.3.0.nupkg.sha512",
  7832. "system.reflection.nuspec"
  7833. ]
  7834. },
  7835. "System.Reflection.Emit/4.7.0": {
  7836. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7837. "type": "package",
  7838. "path": "system.reflection.emit/4.7.0",
  7839. "files": [
  7840. ".nupkg.metadata",
  7841. ".signature.p7s",
  7842. "LICENSE.TXT",
  7843. "THIRD-PARTY-NOTICES.TXT",
  7844. "lib/MonoAndroid10/_._",
  7845. "lib/MonoTouch10/_._",
  7846. "lib/net45/_._",
  7847. "lib/netcore50/System.Reflection.Emit.dll",
  7848. "lib/netcoreapp2.0/_._",
  7849. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7850. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7851. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7852. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7853. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7854. "lib/netstandard2.1/_._",
  7855. "lib/xamarinios10/_._",
  7856. "lib/xamarinmac20/_._",
  7857. "lib/xamarintvos10/_._",
  7858. "lib/xamarinwatchos10/_._",
  7859. "ref/MonoAndroid10/_._",
  7860. "ref/MonoTouch10/_._",
  7861. "ref/net45/_._",
  7862. "ref/netcoreapp2.0/_._",
  7863. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7864. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7865. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7866. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7867. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7868. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7869. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7870. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7871. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7872. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7873. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7874. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7875. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7876. "ref/netstandard2.1/_._",
  7877. "ref/xamarinios10/_._",
  7878. "ref/xamarinmac20/_._",
  7879. "ref/xamarintvos10/_._",
  7880. "ref/xamarinwatchos10/_._",
  7881. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7882. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7883. "system.reflection.emit.4.7.0.nupkg.sha512",
  7884. "system.reflection.emit.nuspec",
  7885. "useSharedDesignerContext.txt",
  7886. "version.txt"
  7887. ]
  7888. },
  7889. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7890. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7891. "type": "package",
  7892. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7893. "files": [
  7894. ".nupkg.metadata",
  7895. ".signature.p7s",
  7896. "ThirdPartyNotices.txt",
  7897. "dotnet_library_license.txt",
  7898. "lib/MonoAndroid10/_._",
  7899. "lib/MonoTouch10/_._",
  7900. "lib/net45/_._",
  7901. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7902. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7903. "lib/portable-net45+wp8/_._",
  7904. "lib/wp80/_._",
  7905. "lib/xamarinios10/_._",
  7906. "lib/xamarinmac20/_._",
  7907. "lib/xamarintvos10/_._",
  7908. "lib/xamarinwatchos10/_._",
  7909. "ref/MonoAndroid10/_._",
  7910. "ref/MonoTouch10/_._",
  7911. "ref/net45/_._",
  7912. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7913. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7914. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7915. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7916. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7917. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7918. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7919. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7920. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7921. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7922. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7923. "ref/portable-net45+wp8/_._",
  7924. "ref/wp80/_._",
  7925. "ref/xamarinios10/_._",
  7926. "ref/xamarinmac20/_._",
  7927. "ref/xamarintvos10/_._",
  7928. "ref/xamarinwatchos10/_._",
  7929. "runtimes/aot/lib/netcore50/_._",
  7930. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7931. "system.reflection.emit.ilgeneration.nuspec"
  7932. ]
  7933. },
  7934. "System.Reflection.Emit.Lightweight/4.3.0": {
  7935. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7936. "type": "package",
  7937. "path": "system.reflection.emit.lightweight/4.3.0",
  7938. "files": [
  7939. ".nupkg.metadata",
  7940. ".signature.p7s",
  7941. "ThirdPartyNotices.txt",
  7942. "dotnet_library_license.txt",
  7943. "lib/MonoAndroid10/_._",
  7944. "lib/MonoTouch10/_._",
  7945. "lib/net45/_._",
  7946. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7947. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7948. "lib/portable-net45+wp8/_._",
  7949. "lib/wp80/_._",
  7950. "lib/xamarinios10/_._",
  7951. "lib/xamarinmac20/_._",
  7952. "lib/xamarintvos10/_._",
  7953. "lib/xamarinwatchos10/_._",
  7954. "ref/MonoAndroid10/_._",
  7955. "ref/MonoTouch10/_._",
  7956. "ref/net45/_._",
  7957. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7958. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7959. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7960. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7961. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7962. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7963. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7964. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7965. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7966. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7967. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7968. "ref/portable-net45+wp8/_._",
  7969. "ref/wp80/_._",
  7970. "ref/xamarinios10/_._",
  7971. "ref/xamarinmac20/_._",
  7972. "ref/xamarintvos10/_._",
  7973. "ref/xamarinwatchos10/_._",
  7974. "runtimes/aot/lib/netcore50/_._",
  7975. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7976. "system.reflection.emit.lightweight.nuspec"
  7977. ]
  7978. },
  7979. "System.Reflection.Extensions/4.3.0": {
  7980. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7981. "type": "package",
  7982. "path": "system.reflection.extensions/4.3.0",
  7983. "files": [
  7984. ".nupkg.metadata",
  7985. ".signature.p7s",
  7986. "ThirdPartyNotices.txt",
  7987. "dotnet_library_license.txt",
  7988. "lib/MonoAndroid10/_._",
  7989. "lib/MonoTouch10/_._",
  7990. "lib/net45/_._",
  7991. "lib/portable-net45+win8+wp8+wpa81/_._",
  7992. "lib/win8/_._",
  7993. "lib/wp80/_._",
  7994. "lib/wpa81/_._",
  7995. "lib/xamarinios10/_._",
  7996. "lib/xamarinmac20/_._",
  7997. "lib/xamarintvos10/_._",
  7998. "lib/xamarinwatchos10/_._",
  7999. "ref/MonoAndroid10/_._",
  8000. "ref/MonoTouch10/_._",
  8001. "ref/net45/_._",
  8002. "ref/netcore50/System.Reflection.Extensions.dll",
  8003. "ref/netcore50/System.Reflection.Extensions.xml",
  8004. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8005. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8006. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8007. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8008. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8009. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8010. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8011. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8012. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8013. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8014. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8015. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8016. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8017. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8018. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8019. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8020. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8021. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8022. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8023. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8024. "ref/portable-net45+win8+wp8+wpa81/_._",
  8025. "ref/win8/_._",
  8026. "ref/wp80/_._",
  8027. "ref/wpa81/_._",
  8028. "ref/xamarinios10/_._",
  8029. "ref/xamarinmac20/_._",
  8030. "ref/xamarintvos10/_._",
  8031. "ref/xamarinwatchos10/_._",
  8032. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8033. "system.reflection.extensions.nuspec"
  8034. ]
  8035. },
  8036. "System.Reflection.Primitives/4.3.0": {
  8037. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8038. "type": "package",
  8039. "path": "system.reflection.primitives/4.3.0",
  8040. "files": [
  8041. ".nupkg.metadata",
  8042. ".signature.p7s",
  8043. "ThirdPartyNotices.txt",
  8044. "dotnet_library_license.txt",
  8045. "lib/MonoAndroid10/_._",
  8046. "lib/MonoTouch10/_._",
  8047. "lib/net45/_._",
  8048. "lib/portable-net45+win8+wp8+wpa81/_._",
  8049. "lib/win8/_._",
  8050. "lib/wp80/_._",
  8051. "lib/wpa81/_._",
  8052. "lib/xamarinios10/_._",
  8053. "lib/xamarinmac20/_._",
  8054. "lib/xamarintvos10/_._",
  8055. "lib/xamarinwatchos10/_._",
  8056. "ref/MonoAndroid10/_._",
  8057. "ref/MonoTouch10/_._",
  8058. "ref/net45/_._",
  8059. "ref/netcore50/System.Reflection.Primitives.dll",
  8060. "ref/netcore50/System.Reflection.Primitives.xml",
  8061. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8062. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8063. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8064. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8065. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8066. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8067. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8068. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8069. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8070. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8071. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8072. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8073. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8074. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8075. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8076. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8077. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8078. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8079. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8080. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8081. "ref/portable-net45+win8+wp8+wpa81/_._",
  8082. "ref/win8/_._",
  8083. "ref/wp80/_._",
  8084. "ref/wpa81/_._",
  8085. "ref/xamarinios10/_._",
  8086. "ref/xamarinmac20/_._",
  8087. "ref/xamarintvos10/_._",
  8088. "ref/xamarinwatchos10/_._",
  8089. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8090. "system.reflection.primitives.nuspec"
  8091. ]
  8092. },
  8093. "System.Reflection.TypeExtensions/4.3.0": {
  8094. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8095. "type": "package",
  8096. "path": "system.reflection.typeextensions/4.3.0",
  8097. "files": [
  8098. ".nupkg.metadata",
  8099. ".signature.p7s",
  8100. "ThirdPartyNotices.txt",
  8101. "dotnet_library_license.txt",
  8102. "lib/MonoAndroid10/_._",
  8103. "lib/MonoTouch10/_._",
  8104. "lib/net46/System.Reflection.TypeExtensions.dll",
  8105. "lib/net462/System.Reflection.TypeExtensions.dll",
  8106. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8107. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8108. "lib/xamarinios10/_._",
  8109. "lib/xamarinmac20/_._",
  8110. "lib/xamarintvos10/_._",
  8111. "lib/xamarinwatchos10/_._",
  8112. "ref/MonoAndroid10/_._",
  8113. "ref/MonoTouch10/_._",
  8114. "ref/net46/System.Reflection.TypeExtensions.dll",
  8115. "ref/net462/System.Reflection.TypeExtensions.dll",
  8116. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8117. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8118. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8119. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8120. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8121. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8122. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8123. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8124. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8125. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8126. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8127. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8128. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8129. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8130. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8131. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8132. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8133. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8134. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8135. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8136. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8137. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8138. "ref/xamarinios10/_._",
  8139. "ref/xamarinmac20/_._",
  8140. "ref/xamarintvos10/_._",
  8141. "ref/xamarinwatchos10/_._",
  8142. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8143. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8144. "system.reflection.typeextensions.nuspec"
  8145. ]
  8146. },
  8147. "System.Resources.ResourceManager/4.3.0": {
  8148. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8149. "type": "package",
  8150. "path": "system.resources.resourcemanager/4.3.0",
  8151. "files": [
  8152. ".nupkg.metadata",
  8153. ".signature.p7s",
  8154. "ThirdPartyNotices.txt",
  8155. "dotnet_library_license.txt",
  8156. "lib/MonoAndroid10/_._",
  8157. "lib/MonoTouch10/_._",
  8158. "lib/net45/_._",
  8159. "lib/portable-net45+win8+wp8+wpa81/_._",
  8160. "lib/win8/_._",
  8161. "lib/wp80/_._",
  8162. "lib/wpa81/_._",
  8163. "lib/xamarinios10/_._",
  8164. "lib/xamarinmac20/_._",
  8165. "lib/xamarintvos10/_._",
  8166. "lib/xamarinwatchos10/_._",
  8167. "ref/MonoAndroid10/_._",
  8168. "ref/MonoTouch10/_._",
  8169. "ref/net45/_._",
  8170. "ref/netcore50/System.Resources.ResourceManager.dll",
  8171. "ref/netcore50/System.Resources.ResourceManager.xml",
  8172. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8173. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8174. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8175. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8176. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8177. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8178. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8179. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8180. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8181. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8182. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8183. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8184. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8185. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8186. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8187. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8188. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8189. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8190. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8191. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8192. "ref/portable-net45+win8+wp8+wpa81/_._",
  8193. "ref/win8/_._",
  8194. "ref/wp80/_._",
  8195. "ref/wpa81/_._",
  8196. "ref/xamarinios10/_._",
  8197. "ref/xamarinmac20/_._",
  8198. "ref/xamarintvos10/_._",
  8199. "ref/xamarinwatchos10/_._",
  8200. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8201. "system.resources.resourcemanager.nuspec"
  8202. ]
  8203. },
  8204. "System.Runtime/4.3.0": {
  8205. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8206. "type": "package",
  8207. "path": "system.runtime/4.3.0",
  8208. "files": [
  8209. ".nupkg.metadata",
  8210. ".signature.p7s",
  8211. "ThirdPartyNotices.txt",
  8212. "dotnet_library_license.txt",
  8213. "lib/MonoAndroid10/_._",
  8214. "lib/MonoTouch10/_._",
  8215. "lib/net45/_._",
  8216. "lib/net462/System.Runtime.dll",
  8217. "lib/portable-net45+win8+wp80+wpa81/_._",
  8218. "lib/win8/_._",
  8219. "lib/wp80/_._",
  8220. "lib/wpa81/_._",
  8221. "lib/xamarinios10/_._",
  8222. "lib/xamarinmac20/_._",
  8223. "lib/xamarintvos10/_._",
  8224. "lib/xamarinwatchos10/_._",
  8225. "ref/MonoAndroid10/_._",
  8226. "ref/MonoTouch10/_._",
  8227. "ref/net45/_._",
  8228. "ref/net462/System.Runtime.dll",
  8229. "ref/netcore50/System.Runtime.dll",
  8230. "ref/netcore50/System.Runtime.xml",
  8231. "ref/netcore50/de/System.Runtime.xml",
  8232. "ref/netcore50/es/System.Runtime.xml",
  8233. "ref/netcore50/fr/System.Runtime.xml",
  8234. "ref/netcore50/it/System.Runtime.xml",
  8235. "ref/netcore50/ja/System.Runtime.xml",
  8236. "ref/netcore50/ko/System.Runtime.xml",
  8237. "ref/netcore50/ru/System.Runtime.xml",
  8238. "ref/netcore50/zh-hans/System.Runtime.xml",
  8239. "ref/netcore50/zh-hant/System.Runtime.xml",
  8240. "ref/netstandard1.0/System.Runtime.dll",
  8241. "ref/netstandard1.0/System.Runtime.xml",
  8242. "ref/netstandard1.0/de/System.Runtime.xml",
  8243. "ref/netstandard1.0/es/System.Runtime.xml",
  8244. "ref/netstandard1.0/fr/System.Runtime.xml",
  8245. "ref/netstandard1.0/it/System.Runtime.xml",
  8246. "ref/netstandard1.0/ja/System.Runtime.xml",
  8247. "ref/netstandard1.0/ko/System.Runtime.xml",
  8248. "ref/netstandard1.0/ru/System.Runtime.xml",
  8249. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8250. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8251. "ref/netstandard1.2/System.Runtime.dll",
  8252. "ref/netstandard1.2/System.Runtime.xml",
  8253. "ref/netstandard1.2/de/System.Runtime.xml",
  8254. "ref/netstandard1.2/es/System.Runtime.xml",
  8255. "ref/netstandard1.2/fr/System.Runtime.xml",
  8256. "ref/netstandard1.2/it/System.Runtime.xml",
  8257. "ref/netstandard1.2/ja/System.Runtime.xml",
  8258. "ref/netstandard1.2/ko/System.Runtime.xml",
  8259. "ref/netstandard1.2/ru/System.Runtime.xml",
  8260. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8261. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8262. "ref/netstandard1.3/System.Runtime.dll",
  8263. "ref/netstandard1.3/System.Runtime.xml",
  8264. "ref/netstandard1.3/de/System.Runtime.xml",
  8265. "ref/netstandard1.3/es/System.Runtime.xml",
  8266. "ref/netstandard1.3/fr/System.Runtime.xml",
  8267. "ref/netstandard1.3/it/System.Runtime.xml",
  8268. "ref/netstandard1.3/ja/System.Runtime.xml",
  8269. "ref/netstandard1.3/ko/System.Runtime.xml",
  8270. "ref/netstandard1.3/ru/System.Runtime.xml",
  8271. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8272. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8273. "ref/netstandard1.5/System.Runtime.dll",
  8274. "ref/netstandard1.5/System.Runtime.xml",
  8275. "ref/netstandard1.5/de/System.Runtime.xml",
  8276. "ref/netstandard1.5/es/System.Runtime.xml",
  8277. "ref/netstandard1.5/fr/System.Runtime.xml",
  8278. "ref/netstandard1.5/it/System.Runtime.xml",
  8279. "ref/netstandard1.5/ja/System.Runtime.xml",
  8280. "ref/netstandard1.5/ko/System.Runtime.xml",
  8281. "ref/netstandard1.5/ru/System.Runtime.xml",
  8282. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8283. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8284. "ref/portable-net45+win8+wp80+wpa81/_._",
  8285. "ref/win8/_._",
  8286. "ref/wp80/_._",
  8287. "ref/wpa81/_._",
  8288. "ref/xamarinios10/_._",
  8289. "ref/xamarinmac20/_._",
  8290. "ref/xamarintvos10/_._",
  8291. "ref/xamarinwatchos10/_._",
  8292. "system.runtime.4.3.0.nupkg.sha512",
  8293. "system.runtime.nuspec"
  8294. ]
  8295. },
  8296. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8297. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8298. "type": "package",
  8299. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8300. "files": [
  8301. ".nupkg.metadata",
  8302. ".signature.p7s",
  8303. "Icon.png",
  8304. "LICENSE.TXT",
  8305. "THIRD-PARTY-NOTICES.TXT",
  8306. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8307. "buildTransitive/netcoreapp3.1/_._",
  8308. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8309. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8310. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8311. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8312. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8313. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8314. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8315. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8316. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8317. "system.runtime.compilerservices.unsafe.nuspec",
  8318. "useSharedDesignerContext.txt"
  8319. ]
  8320. },
  8321. "System.Runtime.Extensions/4.3.0": {
  8322. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8323. "type": "package",
  8324. "path": "system.runtime.extensions/4.3.0",
  8325. "files": [
  8326. ".nupkg.metadata",
  8327. ".signature.p7s",
  8328. "ThirdPartyNotices.txt",
  8329. "dotnet_library_license.txt",
  8330. "lib/MonoAndroid10/_._",
  8331. "lib/MonoTouch10/_._",
  8332. "lib/net45/_._",
  8333. "lib/net462/System.Runtime.Extensions.dll",
  8334. "lib/portable-net45+win8+wp8+wpa81/_._",
  8335. "lib/win8/_._",
  8336. "lib/wp80/_._",
  8337. "lib/wpa81/_._",
  8338. "lib/xamarinios10/_._",
  8339. "lib/xamarinmac20/_._",
  8340. "lib/xamarintvos10/_._",
  8341. "lib/xamarinwatchos10/_._",
  8342. "ref/MonoAndroid10/_._",
  8343. "ref/MonoTouch10/_._",
  8344. "ref/net45/_._",
  8345. "ref/net462/System.Runtime.Extensions.dll",
  8346. "ref/netcore50/System.Runtime.Extensions.dll",
  8347. "ref/netcore50/System.Runtime.Extensions.xml",
  8348. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8349. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8350. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8351. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8352. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8353. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8354. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8355. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8356. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8357. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8358. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8359. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8360. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8361. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8362. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8363. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8364. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8365. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8366. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8367. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8368. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8369. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8370. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8371. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8372. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8373. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8374. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8375. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8376. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8377. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8378. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8379. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8380. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8381. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8382. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8383. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8384. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8385. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8386. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8387. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8388. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8389. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8390. "ref/portable-net45+win8+wp8+wpa81/_._",
  8391. "ref/win8/_._",
  8392. "ref/wp80/_._",
  8393. "ref/wpa81/_._",
  8394. "ref/xamarinios10/_._",
  8395. "ref/xamarinmac20/_._",
  8396. "ref/xamarintvos10/_._",
  8397. "ref/xamarinwatchos10/_._",
  8398. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8399. "system.runtime.extensions.nuspec"
  8400. ]
  8401. },
  8402. "System.Runtime.Handles/4.3.0": {
  8403. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8404. "type": "package",
  8405. "path": "system.runtime.handles/4.3.0",
  8406. "files": [
  8407. ".nupkg.metadata",
  8408. ".signature.p7s",
  8409. "ThirdPartyNotices.txt",
  8410. "dotnet_library_license.txt",
  8411. "lib/MonoAndroid10/_._",
  8412. "lib/MonoTouch10/_._",
  8413. "lib/net46/_._",
  8414. "lib/xamarinios10/_._",
  8415. "lib/xamarinmac20/_._",
  8416. "lib/xamarintvos10/_._",
  8417. "lib/xamarinwatchos10/_._",
  8418. "ref/MonoAndroid10/_._",
  8419. "ref/MonoTouch10/_._",
  8420. "ref/net46/_._",
  8421. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8422. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8423. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8424. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8425. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8426. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8427. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8428. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8429. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8430. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8431. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8432. "ref/xamarinios10/_._",
  8433. "ref/xamarinmac20/_._",
  8434. "ref/xamarintvos10/_._",
  8435. "ref/xamarinwatchos10/_._",
  8436. "system.runtime.handles.4.3.0.nupkg.sha512",
  8437. "system.runtime.handles.nuspec"
  8438. ]
  8439. },
  8440. "System.Runtime.InteropServices/4.3.0": {
  8441. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8442. "type": "package",
  8443. "path": "system.runtime.interopservices/4.3.0",
  8444. "files": [
  8445. ".nupkg.metadata",
  8446. ".signature.p7s",
  8447. "ThirdPartyNotices.txt",
  8448. "dotnet_library_license.txt",
  8449. "lib/MonoAndroid10/_._",
  8450. "lib/MonoTouch10/_._",
  8451. "lib/net45/_._",
  8452. "lib/net462/System.Runtime.InteropServices.dll",
  8453. "lib/net463/System.Runtime.InteropServices.dll",
  8454. "lib/portable-net45+win8+wpa81/_._",
  8455. "lib/win8/_._",
  8456. "lib/wpa81/_._",
  8457. "lib/xamarinios10/_._",
  8458. "lib/xamarinmac20/_._",
  8459. "lib/xamarintvos10/_._",
  8460. "lib/xamarinwatchos10/_._",
  8461. "ref/MonoAndroid10/_._",
  8462. "ref/MonoTouch10/_._",
  8463. "ref/net45/_._",
  8464. "ref/net462/System.Runtime.InteropServices.dll",
  8465. "ref/net463/System.Runtime.InteropServices.dll",
  8466. "ref/netcore50/System.Runtime.InteropServices.dll",
  8467. "ref/netcore50/System.Runtime.InteropServices.xml",
  8468. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8469. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8470. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8471. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8472. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8473. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8474. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8475. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8476. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8477. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8478. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8479. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8480. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8481. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8482. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8483. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8484. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8485. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8486. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8487. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8488. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8489. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8490. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8491. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8492. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8493. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8494. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8495. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8496. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8497. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8498. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8499. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8500. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8501. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8502. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8503. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8504. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8505. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8506. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8507. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8508. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8509. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8510. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8511. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8512. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8513. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8514. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8515. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8516. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8517. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8518. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8519. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8520. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8521. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8522. "ref/portable-net45+win8+wpa81/_._",
  8523. "ref/win8/_._",
  8524. "ref/wpa81/_._",
  8525. "ref/xamarinios10/_._",
  8526. "ref/xamarinmac20/_._",
  8527. "ref/xamarintvos10/_._",
  8528. "ref/xamarinwatchos10/_._",
  8529. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8530. "system.runtime.interopservices.nuspec"
  8531. ]
  8532. },
  8533. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8534. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8535. "type": "package",
  8536. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8537. "files": [
  8538. ".nupkg.metadata",
  8539. ".signature.p7s",
  8540. "ThirdPartyNotices.txt",
  8541. "dotnet_library_license.txt",
  8542. "lib/MonoAndroid10/_._",
  8543. "lib/MonoTouch10/_._",
  8544. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8545. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8546. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8547. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8548. "lib/xamarinios10/_._",
  8549. "lib/xamarinmac20/_._",
  8550. "lib/xamarintvos10/_._",
  8551. "lib/xamarinwatchos10/_._",
  8552. "ref/MonoAndroid10/_._",
  8553. "ref/MonoTouch10/_._",
  8554. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8555. "ref/xamarinios10/_._",
  8556. "ref/xamarinmac20/_._",
  8557. "ref/xamarintvos10/_._",
  8558. "ref/xamarinwatchos10/_._",
  8559. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8560. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8561. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8562. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8563. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8564. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8565. "system.runtime.interopservices.runtimeinformation.nuspec"
  8566. ]
  8567. },
  8568. "System.Runtime.Numerics/4.3.0": {
  8569. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8570. "type": "package",
  8571. "path": "system.runtime.numerics/4.3.0",
  8572. "files": [
  8573. ".nupkg.metadata",
  8574. ".signature.p7s",
  8575. "ThirdPartyNotices.txt",
  8576. "dotnet_library_license.txt",
  8577. "lib/MonoAndroid10/_._",
  8578. "lib/MonoTouch10/_._",
  8579. "lib/net45/_._",
  8580. "lib/netcore50/System.Runtime.Numerics.dll",
  8581. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8582. "lib/portable-net45+win8+wpa81/_._",
  8583. "lib/win8/_._",
  8584. "lib/wpa81/_._",
  8585. "lib/xamarinios10/_._",
  8586. "lib/xamarinmac20/_._",
  8587. "lib/xamarintvos10/_._",
  8588. "lib/xamarinwatchos10/_._",
  8589. "ref/MonoAndroid10/_._",
  8590. "ref/MonoTouch10/_._",
  8591. "ref/net45/_._",
  8592. "ref/netcore50/System.Runtime.Numerics.dll",
  8593. "ref/netcore50/System.Runtime.Numerics.xml",
  8594. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8595. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8596. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8597. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8598. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8599. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8600. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8601. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8602. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8603. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8604. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8605. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8606. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8607. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8608. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8609. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8610. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8611. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8612. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8613. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8614. "ref/portable-net45+win8+wpa81/_._",
  8615. "ref/win8/_._",
  8616. "ref/wpa81/_._",
  8617. "ref/xamarinios10/_._",
  8618. "ref/xamarinmac20/_._",
  8619. "ref/xamarintvos10/_._",
  8620. "ref/xamarinwatchos10/_._",
  8621. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8622. "system.runtime.numerics.nuspec"
  8623. ]
  8624. },
  8625. "System.Runtime.Serialization.Primitives/4.3.0": {
  8626. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8627. "type": "package",
  8628. "path": "system.runtime.serialization.primitives/4.3.0",
  8629. "files": [
  8630. ".nupkg.metadata",
  8631. ".signature.p7s",
  8632. "ThirdPartyNotices.txt",
  8633. "dotnet_library_license.txt",
  8634. "lib/MonoAndroid10/_._",
  8635. "lib/MonoTouch10/_._",
  8636. "lib/net45/_._",
  8637. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8638. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8639. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8640. "lib/portable-net45+win8+wp8+wpa81/_._",
  8641. "lib/win8/_._",
  8642. "lib/wp80/_._",
  8643. "lib/wpa81/_._",
  8644. "lib/xamarinios10/_._",
  8645. "lib/xamarinmac20/_._",
  8646. "lib/xamarintvos10/_._",
  8647. "lib/xamarinwatchos10/_._",
  8648. "ref/MonoAndroid10/_._",
  8649. "ref/MonoTouch10/_._",
  8650. "ref/net45/_._",
  8651. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8652. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8653. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8654. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8655. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8656. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8657. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8658. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8659. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8660. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8661. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8662. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8663. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8664. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8665. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8666. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8667. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8668. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8669. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8670. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8671. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8672. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8673. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8674. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8675. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8676. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8677. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8678. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8679. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8680. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8681. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8682. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8683. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8684. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8685. "ref/portable-net45+win8+wp8+wpa81/_._",
  8686. "ref/win8/_._",
  8687. "ref/wp80/_._",
  8688. "ref/wpa81/_._",
  8689. "ref/xamarinios10/_._",
  8690. "ref/xamarinmac20/_._",
  8691. "ref/xamarintvos10/_._",
  8692. "ref/xamarinwatchos10/_._",
  8693. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8694. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8695. "system.runtime.serialization.primitives.nuspec"
  8696. ]
  8697. },
  8698. "System.Security.AccessControl/4.7.0": {
  8699. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8700. "type": "package",
  8701. "path": "system.security.accesscontrol/4.7.0",
  8702. "files": [
  8703. ".nupkg.metadata",
  8704. ".signature.p7s",
  8705. "LICENSE.TXT",
  8706. "THIRD-PARTY-NOTICES.TXT",
  8707. "lib/net46/System.Security.AccessControl.dll",
  8708. "lib/net461/System.Security.AccessControl.dll",
  8709. "lib/net461/System.Security.AccessControl.xml",
  8710. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8711. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8712. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8713. "lib/uap10.0.16299/_._",
  8714. "ref/net46/System.Security.AccessControl.dll",
  8715. "ref/net461/System.Security.AccessControl.dll",
  8716. "ref/net461/System.Security.AccessControl.xml",
  8717. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8718. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8719. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8720. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8721. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8722. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8723. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8724. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8725. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8726. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8727. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8728. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8729. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8730. "ref/uap10.0.16299/_._",
  8731. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8732. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8733. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8734. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8735. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8736. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8737. "runtimes/win/lib/uap10.0.16299/_._",
  8738. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8739. "system.security.accesscontrol.nuspec",
  8740. "useSharedDesignerContext.txt",
  8741. "version.txt"
  8742. ]
  8743. },
  8744. "System.Security.Claims/4.3.0": {
  8745. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8746. "type": "package",
  8747. "path": "system.security.claims/4.3.0",
  8748. "files": [
  8749. ".nupkg.metadata",
  8750. ".signature.p7s",
  8751. "ThirdPartyNotices.txt",
  8752. "dotnet_library_license.txt",
  8753. "lib/MonoAndroid10/_._",
  8754. "lib/MonoTouch10/_._",
  8755. "lib/net46/System.Security.Claims.dll",
  8756. "lib/netstandard1.3/System.Security.Claims.dll",
  8757. "lib/xamarinios10/_._",
  8758. "lib/xamarinmac20/_._",
  8759. "lib/xamarintvos10/_._",
  8760. "lib/xamarinwatchos10/_._",
  8761. "ref/MonoAndroid10/_._",
  8762. "ref/MonoTouch10/_._",
  8763. "ref/net46/System.Security.Claims.dll",
  8764. "ref/netstandard1.3/System.Security.Claims.dll",
  8765. "ref/netstandard1.3/System.Security.Claims.xml",
  8766. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8767. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8768. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8769. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8770. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8771. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8772. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8773. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8774. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8775. "ref/xamarinios10/_._",
  8776. "ref/xamarinmac20/_._",
  8777. "ref/xamarintvos10/_._",
  8778. "ref/xamarinwatchos10/_._",
  8779. "system.security.claims.4.3.0.nupkg.sha512",
  8780. "system.security.claims.nuspec"
  8781. ]
  8782. },
  8783. "System.Security.Cryptography.Algorithms/4.3.0": {
  8784. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8785. "type": "package",
  8786. "path": "system.security.cryptography.algorithms/4.3.0",
  8787. "files": [
  8788. ".nupkg.metadata",
  8789. ".signature.p7s",
  8790. "ThirdPartyNotices.txt",
  8791. "dotnet_library_license.txt",
  8792. "lib/MonoAndroid10/_._",
  8793. "lib/MonoTouch10/_._",
  8794. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8795. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8796. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8797. "lib/xamarinios10/_._",
  8798. "lib/xamarinmac20/_._",
  8799. "lib/xamarintvos10/_._",
  8800. "lib/xamarinwatchos10/_._",
  8801. "ref/MonoAndroid10/_._",
  8802. "ref/MonoTouch10/_._",
  8803. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8804. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8805. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8806. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8807. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8808. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8809. "ref/xamarinios10/_._",
  8810. "ref/xamarinmac20/_._",
  8811. "ref/xamarintvos10/_._",
  8812. "ref/xamarinwatchos10/_._",
  8813. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8814. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8815. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8816. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8817. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8818. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8819. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8820. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8821. "system.security.cryptography.algorithms.nuspec"
  8822. ]
  8823. },
  8824. "System.Security.Cryptography.Cng/4.5.0": {
  8825. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8826. "type": "package",
  8827. "path": "system.security.cryptography.cng/4.5.0",
  8828. "files": [
  8829. ".nupkg.metadata",
  8830. ".signature.p7s",
  8831. "LICENSE.TXT",
  8832. "THIRD-PARTY-NOTICES.TXT",
  8833. "lib/MonoAndroid10/_._",
  8834. "lib/MonoTouch10/_._",
  8835. "lib/net46/System.Security.Cryptography.Cng.dll",
  8836. "lib/net461/System.Security.Cryptography.Cng.dll",
  8837. "lib/net462/System.Security.Cryptography.Cng.dll",
  8838. "lib/net47/System.Security.Cryptography.Cng.dll",
  8839. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8840. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8841. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8842. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8843. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8844. "lib/uap10.0.16299/_._",
  8845. "lib/xamarinios10/_._",
  8846. "lib/xamarinmac20/_._",
  8847. "lib/xamarintvos10/_._",
  8848. "lib/xamarinwatchos10/_._",
  8849. "ref/MonoAndroid10/_._",
  8850. "ref/MonoTouch10/_._",
  8851. "ref/net46/System.Security.Cryptography.Cng.dll",
  8852. "ref/net461/System.Security.Cryptography.Cng.dll",
  8853. "ref/net461/System.Security.Cryptography.Cng.xml",
  8854. "ref/net462/System.Security.Cryptography.Cng.dll",
  8855. "ref/net462/System.Security.Cryptography.Cng.xml",
  8856. "ref/net47/System.Security.Cryptography.Cng.dll",
  8857. "ref/net47/System.Security.Cryptography.Cng.xml",
  8858. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8859. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8860. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8861. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8862. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8863. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8864. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8865. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8866. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8867. "ref/uap10.0.16299/_._",
  8868. "ref/xamarinios10/_._",
  8869. "ref/xamarinmac20/_._",
  8870. "ref/xamarintvos10/_._",
  8871. "ref/xamarinwatchos10/_._",
  8872. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8873. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8874. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8875. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8876. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8877. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8878. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8879. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8880. "runtimes/win/lib/uap10.0.16299/_._",
  8881. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8882. "system.security.cryptography.cng.nuspec",
  8883. "useSharedDesignerContext.txt",
  8884. "version.txt"
  8885. ]
  8886. },
  8887. "System.Security.Cryptography.Csp/4.3.0": {
  8888. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8889. "type": "package",
  8890. "path": "system.security.cryptography.csp/4.3.0",
  8891. "files": [
  8892. ".nupkg.metadata",
  8893. ".signature.p7s",
  8894. "ThirdPartyNotices.txt",
  8895. "dotnet_library_license.txt",
  8896. "lib/MonoAndroid10/_._",
  8897. "lib/MonoTouch10/_._",
  8898. "lib/net46/System.Security.Cryptography.Csp.dll",
  8899. "lib/xamarinios10/_._",
  8900. "lib/xamarinmac20/_._",
  8901. "lib/xamarintvos10/_._",
  8902. "lib/xamarinwatchos10/_._",
  8903. "ref/MonoAndroid10/_._",
  8904. "ref/MonoTouch10/_._",
  8905. "ref/net46/System.Security.Cryptography.Csp.dll",
  8906. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8907. "ref/xamarinios10/_._",
  8908. "ref/xamarinmac20/_._",
  8909. "ref/xamarintvos10/_._",
  8910. "ref/xamarinwatchos10/_._",
  8911. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8912. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8913. "runtimes/win/lib/netcore50/_._",
  8914. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8915. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8916. "system.security.cryptography.csp.nuspec"
  8917. ]
  8918. },
  8919. "System.Security.Cryptography.Encoding/4.3.0": {
  8920. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8921. "type": "package",
  8922. "path": "system.security.cryptography.encoding/4.3.0",
  8923. "files": [
  8924. ".nupkg.metadata",
  8925. ".signature.p7s",
  8926. "ThirdPartyNotices.txt",
  8927. "dotnet_library_license.txt",
  8928. "lib/MonoAndroid10/_._",
  8929. "lib/MonoTouch10/_._",
  8930. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8931. "lib/xamarinios10/_._",
  8932. "lib/xamarinmac20/_._",
  8933. "lib/xamarintvos10/_._",
  8934. "lib/xamarinwatchos10/_._",
  8935. "ref/MonoAndroid10/_._",
  8936. "ref/MonoTouch10/_._",
  8937. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8938. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8939. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8940. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8941. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8942. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8943. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8944. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8945. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8946. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8947. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8948. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8949. "ref/xamarinios10/_._",
  8950. "ref/xamarinmac20/_._",
  8951. "ref/xamarintvos10/_._",
  8952. "ref/xamarinwatchos10/_._",
  8953. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8954. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8955. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8956. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8957. "system.security.cryptography.encoding.nuspec"
  8958. ]
  8959. },
  8960. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8961. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8962. "type": "package",
  8963. "path": "system.security.cryptography.openssl/4.3.0",
  8964. "files": [
  8965. ".nupkg.metadata",
  8966. ".signature.p7s",
  8967. "ThirdPartyNotices.txt",
  8968. "dotnet_library_license.txt",
  8969. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8970. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8971. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8972. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8973. "system.security.cryptography.openssl.nuspec"
  8974. ]
  8975. },
  8976. "System.Security.Cryptography.Primitives/4.3.0": {
  8977. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8978. "type": "package",
  8979. "path": "system.security.cryptography.primitives/4.3.0",
  8980. "files": [
  8981. ".nupkg.metadata",
  8982. ".signature.p7s",
  8983. "ThirdPartyNotices.txt",
  8984. "dotnet_library_license.txt",
  8985. "lib/MonoAndroid10/_._",
  8986. "lib/MonoTouch10/_._",
  8987. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8988. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8989. "lib/xamarinios10/_._",
  8990. "lib/xamarinmac20/_._",
  8991. "lib/xamarintvos10/_._",
  8992. "lib/xamarinwatchos10/_._",
  8993. "ref/MonoAndroid10/_._",
  8994. "ref/MonoTouch10/_._",
  8995. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8996. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8997. "ref/xamarinios10/_._",
  8998. "ref/xamarinmac20/_._",
  8999. "ref/xamarintvos10/_._",
  9000. "ref/xamarinwatchos10/_._",
  9001. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9002. "system.security.cryptography.primitives.nuspec"
  9003. ]
  9004. },
  9005. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9006. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9007. "type": "package",
  9008. "path": "system.security.cryptography.protecteddata/4.7.0",
  9009. "files": [
  9010. ".nupkg.metadata",
  9011. ".signature.p7s",
  9012. "LICENSE.TXT",
  9013. "THIRD-PARTY-NOTICES.TXT",
  9014. "lib/MonoAndroid10/_._",
  9015. "lib/MonoTouch10/_._",
  9016. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9017. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9018. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9019. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9020. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9021. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9022. "lib/xamarinios10/_._",
  9023. "lib/xamarinmac20/_._",
  9024. "lib/xamarintvos10/_._",
  9025. "lib/xamarinwatchos10/_._",
  9026. "ref/MonoAndroid10/_._",
  9027. "ref/MonoTouch10/_._",
  9028. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9029. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9030. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9031. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9032. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9033. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9034. "ref/xamarinios10/_._",
  9035. "ref/xamarinmac20/_._",
  9036. "ref/xamarintvos10/_._",
  9037. "ref/xamarinwatchos10/_._",
  9038. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9039. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9040. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9041. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9042. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9043. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9044. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9045. "system.security.cryptography.protecteddata.nuspec",
  9046. "useSharedDesignerContext.txt",
  9047. "version.txt"
  9048. ]
  9049. },
  9050. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9051. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9052. "type": "package",
  9053. "path": "system.security.cryptography.x509certificates/4.3.0",
  9054. "files": [
  9055. ".nupkg.metadata",
  9056. ".signature.p7s",
  9057. "ThirdPartyNotices.txt",
  9058. "dotnet_library_license.txt",
  9059. "lib/MonoAndroid10/_._",
  9060. "lib/MonoTouch10/_._",
  9061. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9062. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9063. "lib/xamarinios10/_._",
  9064. "lib/xamarinmac20/_._",
  9065. "lib/xamarintvos10/_._",
  9066. "lib/xamarinwatchos10/_._",
  9067. "ref/MonoAndroid10/_._",
  9068. "ref/MonoTouch10/_._",
  9069. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9070. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9071. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9072. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9073. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9074. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9075. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9076. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9077. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9078. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9079. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9080. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9081. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9082. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9083. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9084. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9085. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9086. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9087. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9088. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9089. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9090. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9091. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9092. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9093. "ref/xamarinios10/_._",
  9094. "ref/xamarinmac20/_._",
  9095. "ref/xamarintvos10/_._",
  9096. "ref/xamarinwatchos10/_._",
  9097. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9098. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9099. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9100. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9101. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9102. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9103. "system.security.cryptography.x509certificates.nuspec"
  9104. ]
  9105. },
  9106. "System.Security.Permissions/4.7.0": {
  9107. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9108. "type": "package",
  9109. "path": "system.security.permissions/4.7.0",
  9110. "files": [
  9111. ".nupkg.metadata",
  9112. ".signature.p7s",
  9113. "LICENSE.TXT",
  9114. "THIRD-PARTY-NOTICES.TXT",
  9115. "lib/net461/System.Security.Permissions.dll",
  9116. "lib/net461/System.Security.Permissions.xml",
  9117. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9118. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9119. "lib/netstandard2.0/System.Security.Permissions.dll",
  9120. "lib/netstandard2.0/System.Security.Permissions.xml",
  9121. "ref/net461/System.Security.Permissions.dll",
  9122. "ref/net461/System.Security.Permissions.xml",
  9123. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9124. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9125. "ref/netstandard2.0/System.Security.Permissions.dll",
  9126. "ref/netstandard2.0/System.Security.Permissions.xml",
  9127. "system.security.permissions.4.7.0.nupkg.sha512",
  9128. "system.security.permissions.nuspec",
  9129. "useSharedDesignerContext.txt",
  9130. "version.txt"
  9131. ]
  9132. },
  9133. "System.Security.Principal/4.3.0": {
  9134. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9135. "type": "package",
  9136. "path": "system.security.principal/4.3.0",
  9137. "files": [
  9138. ".nupkg.metadata",
  9139. ".signature.p7s",
  9140. "ThirdPartyNotices.txt",
  9141. "dotnet_library_license.txt",
  9142. "lib/MonoAndroid10/_._",
  9143. "lib/MonoTouch10/_._",
  9144. "lib/net45/_._",
  9145. "lib/netcore50/System.Security.Principal.dll",
  9146. "lib/netstandard1.0/System.Security.Principal.dll",
  9147. "lib/portable-net45+win8+wp8+wpa81/_._",
  9148. "lib/win8/_._",
  9149. "lib/wp80/_._",
  9150. "lib/wpa81/_._",
  9151. "lib/xamarinios10/_._",
  9152. "lib/xamarinmac20/_._",
  9153. "lib/xamarintvos10/_._",
  9154. "lib/xamarinwatchos10/_._",
  9155. "ref/MonoAndroid10/_._",
  9156. "ref/MonoTouch10/_._",
  9157. "ref/net45/_._",
  9158. "ref/netcore50/System.Security.Principal.dll",
  9159. "ref/netcore50/System.Security.Principal.xml",
  9160. "ref/netcore50/de/System.Security.Principal.xml",
  9161. "ref/netcore50/es/System.Security.Principal.xml",
  9162. "ref/netcore50/fr/System.Security.Principal.xml",
  9163. "ref/netcore50/it/System.Security.Principal.xml",
  9164. "ref/netcore50/ja/System.Security.Principal.xml",
  9165. "ref/netcore50/ko/System.Security.Principal.xml",
  9166. "ref/netcore50/ru/System.Security.Principal.xml",
  9167. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9168. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9169. "ref/netstandard1.0/System.Security.Principal.dll",
  9170. "ref/netstandard1.0/System.Security.Principal.xml",
  9171. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9172. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9173. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9174. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9175. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9176. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9177. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9178. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9179. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9180. "ref/portable-net45+win8+wp8+wpa81/_._",
  9181. "ref/win8/_._",
  9182. "ref/wp80/_._",
  9183. "ref/wpa81/_._",
  9184. "ref/xamarinios10/_._",
  9185. "ref/xamarinmac20/_._",
  9186. "ref/xamarintvos10/_._",
  9187. "ref/xamarinwatchos10/_._",
  9188. "system.security.principal.4.3.0.nupkg.sha512",
  9189. "system.security.principal.nuspec"
  9190. ]
  9191. },
  9192. "System.Security.Principal.Windows/4.7.0": {
  9193. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9194. "type": "package",
  9195. "path": "system.security.principal.windows/4.7.0",
  9196. "files": [
  9197. ".nupkg.metadata",
  9198. ".signature.p7s",
  9199. "LICENSE.TXT",
  9200. "THIRD-PARTY-NOTICES.TXT",
  9201. "lib/net46/System.Security.Principal.Windows.dll",
  9202. "lib/net461/System.Security.Principal.Windows.dll",
  9203. "lib/net461/System.Security.Principal.Windows.xml",
  9204. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9205. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9206. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9207. "lib/uap10.0.16299/_._",
  9208. "ref/net46/System.Security.Principal.Windows.dll",
  9209. "ref/net461/System.Security.Principal.Windows.dll",
  9210. "ref/net461/System.Security.Principal.Windows.xml",
  9211. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9212. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9213. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9214. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9215. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9216. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9217. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9218. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9219. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9220. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9221. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9222. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9223. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9224. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9225. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9226. "ref/uap10.0.16299/_._",
  9227. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9228. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9229. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9230. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9231. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9232. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9233. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9234. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9235. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9236. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9237. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9238. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9239. "runtimes/win/lib/uap10.0.16299/_._",
  9240. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9241. "system.security.principal.windows.nuspec",
  9242. "useSharedDesignerContext.txt",
  9243. "version.txt"
  9244. ]
  9245. },
  9246. "System.Text.Encoding/4.3.0": {
  9247. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9248. "type": "package",
  9249. "path": "system.text.encoding/4.3.0",
  9250. "files": [
  9251. ".nupkg.metadata",
  9252. ".signature.p7s",
  9253. "ThirdPartyNotices.txt",
  9254. "dotnet_library_license.txt",
  9255. "lib/MonoAndroid10/_._",
  9256. "lib/MonoTouch10/_._",
  9257. "lib/net45/_._",
  9258. "lib/portable-net45+win8+wp8+wpa81/_._",
  9259. "lib/win8/_._",
  9260. "lib/wp80/_._",
  9261. "lib/wpa81/_._",
  9262. "lib/xamarinios10/_._",
  9263. "lib/xamarinmac20/_._",
  9264. "lib/xamarintvos10/_._",
  9265. "lib/xamarinwatchos10/_._",
  9266. "ref/MonoAndroid10/_._",
  9267. "ref/MonoTouch10/_._",
  9268. "ref/net45/_._",
  9269. "ref/netcore50/System.Text.Encoding.dll",
  9270. "ref/netcore50/System.Text.Encoding.xml",
  9271. "ref/netcore50/de/System.Text.Encoding.xml",
  9272. "ref/netcore50/es/System.Text.Encoding.xml",
  9273. "ref/netcore50/fr/System.Text.Encoding.xml",
  9274. "ref/netcore50/it/System.Text.Encoding.xml",
  9275. "ref/netcore50/ja/System.Text.Encoding.xml",
  9276. "ref/netcore50/ko/System.Text.Encoding.xml",
  9277. "ref/netcore50/ru/System.Text.Encoding.xml",
  9278. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9279. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9280. "ref/netstandard1.0/System.Text.Encoding.dll",
  9281. "ref/netstandard1.0/System.Text.Encoding.xml",
  9282. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9283. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9284. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9285. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9286. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9287. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9288. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9289. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9290. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9291. "ref/netstandard1.3/System.Text.Encoding.dll",
  9292. "ref/netstandard1.3/System.Text.Encoding.xml",
  9293. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9294. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9295. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9296. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9297. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9298. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9299. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9300. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9301. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9302. "ref/portable-net45+win8+wp8+wpa81/_._",
  9303. "ref/win8/_._",
  9304. "ref/wp80/_._",
  9305. "ref/wpa81/_._",
  9306. "ref/xamarinios10/_._",
  9307. "ref/xamarinmac20/_._",
  9308. "ref/xamarintvos10/_._",
  9309. "ref/xamarinwatchos10/_._",
  9310. "system.text.encoding.4.3.0.nupkg.sha512",
  9311. "system.text.encoding.nuspec"
  9312. ]
  9313. },
  9314. "System.Text.Encoding.CodePages/5.0.0": {
  9315. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9316. "type": "package",
  9317. "path": "system.text.encoding.codepages/5.0.0",
  9318. "files": [
  9319. ".nupkg.metadata",
  9320. ".signature.p7s",
  9321. "Icon.png",
  9322. "LICENSE.TXT",
  9323. "THIRD-PARTY-NOTICES.TXT",
  9324. "lib/MonoAndroid10/_._",
  9325. "lib/MonoTouch10/_._",
  9326. "lib/net46/System.Text.Encoding.CodePages.dll",
  9327. "lib/net461/System.Text.Encoding.CodePages.dll",
  9328. "lib/net461/System.Text.Encoding.CodePages.xml",
  9329. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9330. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9331. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9332. "lib/xamarinios10/_._",
  9333. "lib/xamarinmac20/_._",
  9334. "lib/xamarintvos10/_._",
  9335. "lib/xamarinwatchos10/_._",
  9336. "ref/MonoAndroid10/_._",
  9337. "ref/MonoTouch10/_._",
  9338. "ref/xamarinios10/_._",
  9339. "ref/xamarinmac20/_._",
  9340. "ref/xamarintvos10/_._",
  9341. "ref/xamarinwatchos10/_._",
  9342. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9343. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9344. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9345. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9346. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9347. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9348. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9349. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9350. "system.text.encoding.codepages.nuspec",
  9351. "useSharedDesignerContext.txt",
  9352. "version.txt"
  9353. ]
  9354. },
  9355. "System.Text.Encoding.Extensions/4.3.0": {
  9356. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9357. "type": "package",
  9358. "path": "system.text.encoding.extensions/4.3.0",
  9359. "files": [
  9360. ".nupkg.metadata",
  9361. ".signature.p7s",
  9362. "ThirdPartyNotices.txt",
  9363. "dotnet_library_license.txt",
  9364. "lib/MonoAndroid10/_._",
  9365. "lib/MonoTouch10/_._",
  9366. "lib/net45/_._",
  9367. "lib/portable-net45+win8+wp8+wpa81/_._",
  9368. "lib/win8/_._",
  9369. "lib/wp80/_._",
  9370. "lib/wpa81/_._",
  9371. "lib/xamarinios10/_._",
  9372. "lib/xamarinmac20/_._",
  9373. "lib/xamarintvos10/_._",
  9374. "lib/xamarinwatchos10/_._",
  9375. "ref/MonoAndroid10/_._",
  9376. "ref/MonoTouch10/_._",
  9377. "ref/net45/_._",
  9378. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9379. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9380. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9381. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9382. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9383. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9384. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9385. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9386. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9387. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9388. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9389. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9390. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9391. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9392. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9393. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9394. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9395. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9396. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9397. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9398. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9399. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9400. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9401. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9402. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9403. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9404. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9405. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9406. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9407. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9408. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9409. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9410. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9411. "ref/portable-net45+win8+wp8+wpa81/_._",
  9412. "ref/win8/_._",
  9413. "ref/wp80/_._",
  9414. "ref/wpa81/_._",
  9415. "ref/xamarinios10/_._",
  9416. "ref/xamarinmac20/_._",
  9417. "ref/xamarintvos10/_._",
  9418. "ref/xamarinwatchos10/_._",
  9419. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9420. "system.text.encoding.extensions.nuspec"
  9421. ]
  9422. },
  9423. "System.Text.Encodings.Web/8.0.0": {
  9424. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  9425. "type": "package",
  9426. "path": "system.text.encodings.web/8.0.0",
  9427. "files": [
  9428. ".nupkg.metadata",
  9429. ".signature.p7s",
  9430. "Icon.png",
  9431. "LICENSE.TXT",
  9432. "THIRD-PARTY-NOTICES.TXT",
  9433. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  9434. "buildTransitive/net462/_._",
  9435. "buildTransitive/net6.0/_._",
  9436. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  9437. "lib/net462/System.Text.Encodings.Web.dll",
  9438. "lib/net462/System.Text.Encodings.Web.xml",
  9439. "lib/net6.0/System.Text.Encodings.Web.dll",
  9440. "lib/net6.0/System.Text.Encodings.Web.xml",
  9441. "lib/net7.0/System.Text.Encodings.Web.dll",
  9442. "lib/net7.0/System.Text.Encodings.Web.xml",
  9443. "lib/net8.0/System.Text.Encodings.Web.dll",
  9444. "lib/net8.0/System.Text.Encodings.Web.xml",
  9445. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9446. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9447. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  9448. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  9449. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  9450. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  9451. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  9452. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  9453. "system.text.encodings.web.8.0.0.nupkg.sha512",
  9454. "system.text.encodings.web.nuspec",
  9455. "useSharedDesignerContext.txt"
  9456. ]
  9457. },
  9458. "System.Text.Json/8.0.5": {
  9459. "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
  9460. "type": "package",
  9461. "path": "system.text.json/8.0.5",
  9462. "files": [
  9463. ".nupkg.metadata",
  9464. ".signature.p7s",
  9465. "Icon.png",
  9466. "LICENSE.TXT",
  9467. "PACKAGE.md",
  9468. "THIRD-PARTY-NOTICES.TXT",
  9469. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  9470. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9471. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9472. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9473. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9474. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9475. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9476. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9477. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9478. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9479. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9480. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9481. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9482. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9483. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  9484. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9485. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9486. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9487. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9488. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9489. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9490. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9491. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9492. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9493. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9494. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9495. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9496. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9497. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  9498. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9499. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9500. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9501. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9502. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9503. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9504. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9505. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9506. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9507. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9508. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9509. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9510. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9511. "buildTransitive/net461/System.Text.Json.targets",
  9512. "buildTransitive/net462/System.Text.Json.targets",
  9513. "buildTransitive/net6.0/System.Text.Json.targets",
  9514. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  9515. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  9516. "lib/net462/System.Text.Json.dll",
  9517. "lib/net462/System.Text.Json.xml",
  9518. "lib/net6.0/System.Text.Json.dll",
  9519. "lib/net6.0/System.Text.Json.xml",
  9520. "lib/net7.0/System.Text.Json.dll",
  9521. "lib/net7.0/System.Text.Json.xml",
  9522. "lib/net8.0/System.Text.Json.dll",
  9523. "lib/net8.0/System.Text.Json.xml",
  9524. "lib/netstandard2.0/System.Text.Json.dll",
  9525. "lib/netstandard2.0/System.Text.Json.xml",
  9526. "system.text.json.8.0.5.nupkg.sha512",
  9527. "system.text.json.nuspec",
  9528. "useSharedDesignerContext.txt"
  9529. ]
  9530. },
  9531. "System.Text.RegularExpressions/4.3.0": {
  9532. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9533. "type": "package",
  9534. "path": "system.text.regularexpressions/4.3.0",
  9535. "files": [
  9536. ".nupkg.metadata",
  9537. ".signature.p7s",
  9538. "ThirdPartyNotices.txt",
  9539. "dotnet_library_license.txt",
  9540. "lib/MonoAndroid10/_._",
  9541. "lib/MonoTouch10/_._",
  9542. "lib/net45/_._",
  9543. "lib/net463/System.Text.RegularExpressions.dll",
  9544. "lib/netcore50/System.Text.RegularExpressions.dll",
  9545. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9546. "lib/portable-net45+win8+wp8+wpa81/_._",
  9547. "lib/win8/_._",
  9548. "lib/wp80/_._",
  9549. "lib/wpa81/_._",
  9550. "lib/xamarinios10/_._",
  9551. "lib/xamarinmac20/_._",
  9552. "lib/xamarintvos10/_._",
  9553. "lib/xamarinwatchos10/_._",
  9554. "ref/MonoAndroid10/_._",
  9555. "ref/MonoTouch10/_._",
  9556. "ref/net45/_._",
  9557. "ref/net463/System.Text.RegularExpressions.dll",
  9558. "ref/netcore50/System.Text.RegularExpressions.dll",
  9559. "ref/netcore50/System.Text.RegularExpressions.xml",
  9560. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9561. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9562. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9563. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9564. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9565. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9566. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9567. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9568. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9569. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9570. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9571. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9572. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9573. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9574. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9575. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9576. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9577. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9578. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9579. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9580. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9581. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9582. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9583. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9584. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9585. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9586. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9587. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9588. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9589. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9590. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9591. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9592. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9593. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9594. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9595. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9596. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9597. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9598. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9599. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9600. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9601. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9602. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9603. "ref/portable-net45+win8+wp8+wpa81/_._",
  9604. "ref/win8/_._",
  9605. "ref/wp80/_._",
  9606. "ref/wpa81/_._",
  9607. "ref/xamarinios10/_._",
  9608. "ref/xamarinmac20/_._",
  9609. "ref/xamarintvos10/_._",
  9610. "ref/xamarinwatchos10/_._",
  9611. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9612. "system.text.regularexpressions.nuspec"
  9613. ]
  9614. },
  9615. "System.Threading/4.3.0": {
  9616. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9617. "type": "package",
  9618. "path": "system.threading/4.3.0",
  9619. "files": [
  9620. ".nupkg.metadata",
  9621. ".signature.p7s",
  9622. "ThirdPartyNotices.txt",
  9623. "dotnet_library_license.txt",
  9624. "lib/MonoAndroid10/_._",
  9625. "lib/MonoTouch10/_._",
  9626. "lib/net45/_._",
  9627. "lib/netcore50/System.Threading.dll",
  9628. "lib/netstandard1.3/System.Threading.dll",
  9629. "lib/portable-net45+win8+wp8+wpa81/_._",
  9630. "lib/win8/_._",
  9631. "lib/wp80/_._",
  9632. "lib/wpa81/_._",
  9633. "lib/xamarinios10/_._",
  9634. "lib/xamarinmac20/_._",
  9635. "lib/xamarintvos10/_._",
  9636. "lib/xamarinwatchos10/_._",
  9637. "ref/MonoAndroid10/_._",
  9638. "ref/MonoTouch10/_._",
  9639. "ref/net45/_._",
  9640. "ref/netcore50/System.Threading.dll",
  9641. "ref/netcore50/System.Threading.xml",
  9642. "ref/netcore50/de/System.Threading.xml",
  9643. "ref/netcore50/es/System.Threading.xml",
  9644. "ref/netcore50/fr/System.Threading.xml",
  9645. "ref/netcore50/it/System.Threading.xml",
  9646. "ref/netcore50/ja/System.Threading.xml",
  9647. "ref/netcore50/ko/System.Threading.xml",
  9648. "ref/netcore50/ru/System.Threading.xml",
  9649. "ref/netcore50/zh-hans/System.Threading.xml",
  9650. "ref/netcore50/zh-hant/System.Threading.xml",
  9651. "ref/netstandard1.0/System.Threading.dll",
  9652. "ref/netstandard1.0/System.Threading.xml",
  9653. "ref/netstandard1.0/de/System.Threading.xml",
  9654. "ref/netstandard1.0/es/System.Threading.xml",
  9655. "ref/netstandard1.0/fr/System.Threading.xml",
  9656. "ref/netstandard1.0/it/System.Threading.xml",
  9657. "ref/netstandard1.0/ja/System.Threading.xml",
  9658. "ref/netstandard1.0/ko/System.Threading.xml",
  9659. "ref/netstandard1.0/ru/System.Threading.xml",
  9660. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9661. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9662. "ref/netstandard1.3/System.Threading.dll",
  9663. "ref/netstandard1.3/System.Threading.xml",
  9664. "ref/netstandard1.3/de/System.Threading.xml",
  9665. "ref/netstandard1.3/es/System.Threading.xml",
  9666. "ref/netstandard1.3/fr/System.Threading.xml",
  9667. "ref/netstandard1.3/it/System.Threading.xml",
  9668. "ref/netstandard1.3/ja/System.Threading.xml",
  9669. "ref/netstandard1.3/ko/System.Threading.xml",
  9670. "ref/netstandard1.3/ru/System.Threading.xml",
  9671. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9672. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9673. "ref/portable-net45+win8+wp8+wpa81/_._",
  9674. "ref/win8/_._",
  9675. "ref/wp80/_._",
  9676. "ref/wpa81/_._",
  9677. "ref/xamarinios10/_._",
  9678. "ref/xamarinmac20/_._",
  9679. "ref/xamarintvos10/_._",
  9680. "ref/xamarinwatchos10/_._",
  9681. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9682. "system.threading.4.3.0.nupkg.sha512",
  9683. "system.threading.nuspec"
  9684. ]
  9685. },
  9686. "System.Threading.Channels/7.0.0": {
  9687. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9688. "type": "package",
  9689. "path": "system.threading.channels/7.0.0",
  9690. "files": [
  9691. ".nupkg.metadata",
  9692. ".signature.p7s",
  9693. "Icon.png",
  9694. "LICENSE.TXT",
  9695. "THIRD-PARTY-NOTICES.TXT",
  9696. "buildTransitive/net461/System.Threading.Channels.targets",
  9697. "buildTransitive/net462/_._",
  9698. "buildTransitive/net6.0/_._",
  9699. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9700. "lib/net462/System.Threading.Channels.dll",
  9701. "lib/net462/System.Threading.Channels.xml",
  9702. "lib/net6.0/System.Threading.Channels.dll",
  9703. "lib/net6.0/System.Threading.Channels.xml",
  9704. "lib/net7.0/System.Threading.Channels.dll",
  9705. "lib/net7.0/System.Threading.Channels.xml",
  9706. "lib/netstandard2.0/System.Threading.Channels.dll",
  9707. "lib/netstandard2.0/System.Threading.Channels.xml",
  9708. "lib/netstandard2.1/System.Threading.Channels.dll",
  9709. "lib/netstandard2.1/System.Threading.Channels.xml",
  9710. "system.threading.channels.7.0.0.nupkg.sha512",
  9711. "system.threading.channels.nuspec",
  9712. "useSharedDesignerContext.txt"
  9713. ]
  9714. },
  9715. "System.Threading.Tasks/4.3.0": {
  9716. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9717. "type": "package",
  9718. "path": "system.threading.tasks/4.3.0",
  9719. "files": [
  9720. ".nupkg.metadata",
  9721. ".signature.p7s",
  9722. "ThirdPartyNotices.txt",
  9723. "dotnet_library_license.txt",
  9724. "lib/MonoAndroid10/_._",
  9725. "lib/MonoTouch10/_._",
  9726. "lib/net45/_._",
  9727. "lib/portable-net45+win8+wp8+wpa81/_._",
  9728. "lib/win8/_._",
  9729. "lib/wp80/_._",
  9730. "lib/wpa81/_._",
  9731. "lib/xamarinios10/_._",
  9732. "lib/xamarinmac20/_._",
  9733. "lib/xamarintvos10/_._",
  9734. "lib/xamarinwatchos10/_._",
  9735. "ref/MonoAndroid10/_._",
  9736. "ref/MonoTouch10/_._",
  9737. "ref/net45/_._",
  9738. "ref/netcore50/System.Threading.Tasks.dll",
  9739. "ref/netcore50/System.Threading.Tasks.xml",
  9740. "ref/netcore50/de/System.Threading.Tasks.xml",
  9741. "ref/netcore50/es/System.Threading.Tasks.xml",
  9742. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9743. "ref/netcore50/it/System.Threading.Tasks.xml",
  9744. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9745. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9746. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9747. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9748. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9749. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9750. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9751. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9752. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9753. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9754. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9755. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9756. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9757. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9758. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9759. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9760. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9761. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9762. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9763. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9764. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9765. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9766. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9767. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9768. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9769. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9770. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9771. "ref/portable-net45+win8+wp8+wpa81/_._",
  9772. "ref/win8/_._",
  9773. "ref/wp80/_._",
  9774. "ref/wpa81/_._",
  9775. "ref/xamarinios10/_._",
  9776. "ref/xamarinmac20/_._",
  9777. "ref/xamarintvos10/_._",
  9778. "ref/xamarinwatchos10/_._",
  9779. "system.threading.tasks.4.3.0.nupkg.sha512",
  9780. "system.threading.tasks.nuspec"
  9781. ]
  9782. },
  9783. "System.Threading.Tasks.Extensions/4.5.4": {
  9784. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  9785. "type": "package",
  9786. "path": "system.threading.tasks.extensions/4.5.4",
  9787. "files": [
  9788. ".nupkg.metadata",
  9789. ".signature.p7s",
  9790. "LICENSE.TXT",
  9791. "THIRD-PARTY-NOTICES.TXT",
  9792. "lib/MonoAndroid10/_._",
  9793. "lib/MonoTouch10/_._",
  9794. "lib/net461/System.Threading.Tasks.Extensions.dll",
  9795. "lib/net461/System.Threading.Tasks.Extensions.xml",
  9796. "lib/netcoreapp2.1/_._",
  9797. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9798. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9799. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9800. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9801. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9802. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9803. "lib/xamarinios10/_._",
  9804. "lib/xamarinmac20/_._",
  9805. "lib/xamarintvos10/_._",
  9806. "lib/xamarinwatchos10/_._",
  9807. "ref/MonoAndroid10/_._",
  9808. "ref/MonoTouch10/_._",
  9809. "ref/netcoreapp2.1/_._",
  9810. "ref/xamarinios10/_._",
  9811. "ref/xamarinmac20/_._",
  9812. "ref/xamarintvos10/_._",
  9813. "ref/xamarinwatchos10/_._",
  9814. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  9815. "system.threading.tasks.extensions.nuspec",
  9816. "useSharedDesignerContext.txt",
  9817. "version.txt"
  9818. ]
  9819. },
  9820. "System.Threading.Thread/4.3.0": {
  9821. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9822. "type": "package",
  9823. "path": "system.threading.thread/4.3.0",
  9824. "files": [
  9825. ".nupkg.metadata",
  9826. ".signature.p7s",
  9827. "ThirdPartyNotices.txt",
  9828. "dotnet_library_license.txt",
  9829. "lib/MonoAndroid10/_._",
  9830. "lib/MonoTouch10/_._",
  9831. "lib/net46/System.Threading.Thread.dll",
  9832. "lib/netcore50/_._",
  9833. "lib/netstandard1.3/System.Threading.Thread.dll",
  9834. "lib/xamarinios10/_._",
  9835. "lib/xamarinmac20/_._",
  9836. "lib/xamarintvos10/_._",
  9837. "lib/xamarinwatchos10/_._",
  9838. "ref/MonoAndroid10/_._",
  9839. "ref/MonoTouch10/_._",
  9840. "ref/net46/System.Threading.Thread.dll",
  9841. "ref/netstandard1.3/System.Threading.Thread.dll",
  9842. "ref/netstandard1.3/System.Threading.Thread.xml",
  9843. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9844. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9845. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9846. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9847. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9848. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9849. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9850. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9851. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9852. "ref/xamarinios10/_._",
  9853. "ref/xamarinmac20/_._",
  9854. "ref/xamarintvos10/_._",
  9855. "ref/xamarinwatchos10/_._",
  9856. "system.threading.thread.4.3.0.nupkg.sha512",
  9857. "system.threading.thread.nuspec"
  9858. ]
  9859. },
  9860. "System.Threading.ThreadPool/4.3.0": {
  9861. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9862. "type": "package",
  9863. "path": "system.threading.threadpool/4.3.0",
  9864. "files": [
  9865. ".nupkg.metadata",
  9866. ".signature.p7s",
  9867. "ThirdPartyNotices.txt",
  9868. "dotnet_library_license.txt",
  9869. "lib/MonoAndroid10/_._",
  9870. "lib/MonoTouch10/_._",
  9871. "lib/net46/System.Threading.ThreadPool.dll",
  9872. "lib/netcore50/_._",
  9873. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9874. "lib/xamarinios10/_._",
  9875. "lib/xamarinmac20/_._",
  9876. "lib/xamarintvos10/_._",
  9877. "lib/xamarinwatchos10/_._",
  9878. "ref/MonoAndroid10/_._",
  9879. "ref/MonoTouch10/_._",
  9880. "ref/net46/System.Threading.ThreadPool.dll",
  9881. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9882. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9883. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9884. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9885. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9886. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9887. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9888. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9889. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9890. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9891. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9892. "ref/xamarinios10/_._",
  9893. "ref/xamarinmac20/_._",
  9894. "ref/xamarintvos10/_._",
  9895. "ref/xamarinwatchos10/_._",
  9896. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9897. "system.threading.threadpool.nuspec"
  9898. ]
  9899. },
  9900. "System.Threading.Timer/4.3.0": {
  9901. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9902. "type": "package",
  9903. "path": "system.threading.timer/4.3.0",
  9904. "files": [
  9905. ".nupkg.metadata",
  9906. ".signature.p7s",
  9907. "ThirdPartyNotices.txt",
  9908. "dotnet_library_license.txt",
  9909. "lib/MonoAndroid10/_._",
  9910. "lib/MonoTouch10/_._",
  9911. "lib/net451/_._",
  9912. "lib/portable-net451+win81+wpa81/_._",
  9913. "lib/win81/_._",
  9914. "lib/wpa81/_._",
  9915. "lib/xamarinios10/_._",
  9916. "lib/xamarinmac20/_._",
  9917. "lib/xamarintvos10/_._",
  9918. "lib/xamarinwatchos10/_._",
  9919. "ref/MonoAndroid10/_._",
  9920. "ref/MonoTouch10/_._",
  9921. "ref/net451/_._",
  9922. "ref/netcore50/System.Threading.Timer.dll",
  9923. "ref/netcore50/System.Threading.Timer.xml",
  9924. "ref/netcore50/de/System.Threading.Timer.xml",
  9925. "ref/netcore50/es/System.Threading.Timer.xml",
  9926. "ref/netcore50/fr/System.Threading.Timer.xml",
  9927. "ref/netcore50/it/System.Threading.Timer.xml",
  9928. "ref/netcore50/ja/System.Threading.Timer.xml",
  9929. "ref/netcore50/ko/System.Threading.Timer.xml",
  9930. "ref/netcore50/ru/System.Threading.Timer.xml",
  9931. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9932. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9933. "ref/netstandard1.2/System.Threading.Timer.dll",
  9934. "ref/netstandard1.2/System.Threading.Timer.xml",
  9935. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9936. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9937. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9938. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9939. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9940. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9941. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9942. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9943. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9944. "ref/portable-net451+win81+wpa81/_._",
  9945. "ref/win81/_._",
  9946. "ref/wpa81/_._",
  9947. "ref/xamarinios10/_._",
  9948. "ref/xamarinmac20/_._",
  9949. "ref/xamarintvos10/_._",
  9950. "ref/xamarinwatchos10/_._",
  9951. "system.threading.timer.4.3.0.nupkg.sha512",
  9952. "system.threading.timer.nuspec"
  9953. ]
  9954. },
  9955. "System.Windows.Extensions/4.7.0": {
  9956. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9957. "type": "package",
  9958. "path": "system.windows.extensions/4.7.0",
  9959. "files": [
  9960. ".nupkg.metadata",
  9961. ".signature.p7s",
  9962. "LICENSE.TXT",
  9963. "THIRD-PARTY-NOTICES.TXT",
  9964. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9965. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9966. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9967. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9968. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9969. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9970. "system.windows.extensions.4.7.0.nupkg.sha512",
  9971. "system.windows.extensions.nuspec",
  9972. "useSharedDesignerContext.txt",
  9973. "version.txt"
  9974. ]
  9975. },
  9976. "System.Xml.ReaderWriter/4.3.0": {
  9977. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9978. "type": "package",
  9979. "path": "system.xml.readerwriter/4.3.0",
  9980. "files": [
  9981. ".nupkg.metadata",
  9982. ".signature.p7s",
  9983. "ThirdPartyNotices.txt",
  9984. "dotnet_library_license.txt",
  9985. "lib/MonoAndroid10/_._",
  9986. "lib/MonoTouch10/_._",
  9987. "lib/net45/_._",
  9988. "lib/net46/System.Xml.ReaderWriter.dll",
  9989. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9990. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9991. "lib/portable-net45+win8+wp8+wpa81/_._",
  9992. "lib/win8/_._",
  9993. "lib/wp80/_._",
  9994. "lib/wpa81/_._",
  9995. "lib/xamarinios10/_._",
  9996. "lib/xamarinmac20/_._",
  9997. "lib/xamarintvos10/_._",
  9998. "lib/xamarinwatchos10/_._",
  9999. "ref/MonoAndroid10/_._",
  10000. "ref/MonoTouch10/_._",
  10001. "ref/net45/_._",
  10002. "ref/net46/System.Xml.ReaderWriter.dll",
  10003. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10004. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10005. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10006. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10007. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10008. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10009. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10010. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10011. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10012. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10013. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10014. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10015. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10016. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10017. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10018. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10019. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10020. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10021. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10022. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10023. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10024. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10025. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10026. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10027. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10028. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10029. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10030. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10031. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10032. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10033. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10034. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10035. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10036. "ref/portable-net45+win8+wp8+wpa81/_._",
  10037. "ref/win8/_._",
  10038. "ref/wp80/_._",
  10039. "ref/wpa81/_._",
  10040. "ref/xamarinios10/_._",
  10041. "ref/xamarinmac20/_._",
  10042. "ref/xamarintvos10/_._",
  10043. "ref/xamarinwatchos10/_._",
  10044. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10045. "system.xml.readerwriter.nuspec"
  10046. ]
  10047. },
  10048. "System.Xml.XDocument/4.3.0": {
  10049. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10050. "type": "package",
  10051. "path": "system.xml.xdocument/4.3.0",
  10052. "files": [
  10053. ".nupkg.metadata",
  10054. ".signature.p7s",
  10055. "ThirdPartyNotices.txt",
  10056. "dotnet_library_license.txt",
  10057. "lib/MonoAndroid10/_._",
  10058. "lib/MonoTouch10/_._",
  10059. "lib/net45/_._",
  10060. "lib/netcore50/System.Xml.XDocument.dll",
  10061. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10062. "lib/portable-net45+win8+wp8+wpa81/_._",
  10063. "lib/win8/_._",
  10064. "lib/wp80/_._",
  10065. "lib/wpa81/_._",
  10066. "lib/xamarinios10/_._",
  10067. "lib/xamarinmac20/_._",
  10068. "lib/xamarintvos10/_._",
  10069. "lib/xamarinwatchos10/_._",
  10070. "ref/MonoAndroid10/_._",
  10071. "ref/MonoTouch10/_._",
  10072. "ref/net45/_._",
  10073. "ref/netcore50/System.Xml.XDocument.dll",
  10074. "ref/netcore50/System.Xml.XDocument.xml",
  10075. "ref/netcore50/de/System.Xml.XDocument.xml",
  10076. "ref/netcore50/es/System.Xml.XDocument.xml",
  10077. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10078. "ref/netcore50/it/System.Xml.XDocument.xml",
  10079. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10080. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10081. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10082. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10083. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10084. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10085. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10086. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10087. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10088. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10089. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10090. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10091. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10092. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10093. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10094. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10095. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10096. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10097. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10098. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10099. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10100. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10101. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10102. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10103. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10104. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10105. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10106. "ref/portable-net45+win8+wp8+wpa81/_._",
  10107. "ref/win8/_._",
  10108. "ref/wp80/_._",
  10109. "ref/wpa81/_._",
  10110. "ref/xamarinios10/_._",
  10111. "ref/xamarinmac20/_._",
  10112. "ref/xamarintvos10/_._",
  10113. "ref/xamarinwatchos10/_._",
  10114. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10115. "system.xml.xdocument.nuspec"
  10116. ]
  10117. },
  10118. "System.Xml.XmlDocument/4.3.0": {
  10119. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10120. "type": "package",
  10121. "path": "system.xml.xmldocument/4.3.0",
  10122. "files": [
  10123. ".nupkg.metadata",
  10124. ".signature.p7s",
  10125. "ThirdPartyNotices.txt",
  10126. "dotnet_library_license.txt",
  10127. "lib/MonoAndroid10/_._",
  10128. "lib/MonoTouch10/_._",
  10129. "lib/net46/System.Xml.XmlDocument.dll",
  10130. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10131. "lib/xamarinios10/_._",
  10132. "lib/xamarinmac20/_._",
  10133. "lib/xamarintvos10/_._",
  10134. "lib/xamarinwatchos10/_._",
  10135. "ref/MonoAndroid10/_._",
  10136. "ref/MonoTouch10/_._",
  10137. "ref/net46/System.Xml.XmlDocument.dll",
  10138. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10139. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10140. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10141. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10142. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10143. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10144. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10145. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10146. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10147. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10148. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10149. "ref/xamarinios10/_._",
  10150. "ref/xamarinmac20/_._",
  10151. "ref/xamarintvos10/_._",
  10152. "ref/xamarinwatchos10/_._",
  10153. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10154. "system.xml.xmldocument.nuspec"
  10155. ]
  10156. },
  10157. "ZXing.Net/0.16.9": {
  10158. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10159. "type": "package",
  10160. "path": "zxing.net/0.16.9",
  10161. "files": [
  10162. ".nupkg.metadata",
  10163. ".signature.p7s",
  10164. "lib/native/zxing.XML",
  10165. "lib/native/zxing.pri",
  10166. "lib/native/zxing.winmd",
  10167. "lib/net20-cf/zxing.ce2.0.dll",
  10168. "lib/net20-cf/zxing.ce2.0.xml",
  10169. "lib/net20/zxing.XML",
  10170. "lib/net20/zxing.dll",
  10171. "lib/net35-cf/zxing.ce3.5.dll",
  10172. "lib/net35-cf/zxing.ce3.5.xml",
  10173. "lib/net35/zxing.XML",
  10174. "lib/net35/zxing.dll",
  10175. "lib/net40/zxing.XML",
  10176. "lib/net40/zxing.dll",
  10177. "lib/net40/zxing.presentation.XML",
  10178. "lib/net40/zxing.presentation.dll",
  10179. "lib/net45/zxing.XML",
  10180. "lib/net45/zxing.dll",
  10181. "lib/net45/zxing.presentation.XML",
  10182. "lib/net45/zxing.presentation.dll",
  10183. "lib/net461/zxing.XML",
  10184. "lib/net461/zxing.dll",
  10185. "lib/net461/zxing.presentation.XML",
  10186. "lib/net461/zxing.presentation.dll",
  10187. "lib/net47/zxing.XML",
  10188. "lib/net47/zxing.dll",
  10189. "lib/net47/zxing.presentation.XML",
  10190. "lib/net47/zxing.presentation.dll",
  10191. "lib/net48/zxing.XML",
  10192. "lib/net48/zxing.dll",
  10193. "lib/net48/zxing.presentation.XML",
  10194. "lib/net48/zxing.presentation.dll",
  10195. "lib/net5.0/zxing.XML",
  10196. "lib/net5.0/zxing.dll",
  10197. "lib/net6.0/zxing.XML",
  10198. "lib/net6.0/zxing.dll",
  10199. "lib/net7.0/zxing.XML",
  10200. "lib/net7.0/zxing.dll",
  10201. "lib/netcoreapp3.0/zxing.dll",
  10202. "lib/netcoreapp3.0/zxing.xml",
  10203. "lib/netcoreapp3.1/zxing.dll",
  10204. "lib/netcoreapp3.1/zxing.xml",
  10205. "lib/netstandard1.0/zxing.dll",
  10206. "lib/netstandard1.0/zxing.xml",
  10207. "lib/netstandard1.1/zxing.dll",
  10208. "lib/netstandard1.1/zxing.xml",
  10209. "lib/netstandard1.3/zxing.dll",
  10210. "lib/netstandard1.3/zxing.xml",
  10211. "lib/netstandard2.0/zxing.dll",
  10212. "lib/netstandard2.0/zxing.xml",
  10213. "lib/netstandard2.1/zxing.dll",
  10214. "lib/netstandard2.1/zxing.xml",
  10215. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10216. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10217. "lib/sl3-wp/zxing.wp7.0.XML",
  10218. "lib/sl3-wp/zxing.wp7.0.dll",
  10219. "lib/sl4-wp71/zxing.wp7.1.XML",
  10220. "lib/sl4-wp71/zxing.wp7.1.dll",
  10221. "lib/sl4/zxing.sl4.XML",
  10222. "lib/sl4/zxing.sl4.dll",
  10223. "lib/sl5/zxing.sl5.XML",
  10224. "lib/sl5/zxing.sl5.dll",
  10225. "lib/uap10/zxing.dll",
  10226. "lib/uap10/zxing.pri",
  10227. "lib/uap10/zxing.xml",
  10228. "lib/windows8-managed/zxing.winrt.XML",
  10229. "lib/windows8-managed/zxing.winrt.dll",
  10230. "lib/windows8/zxing.XML",
  10231. "lib/windows8/zxing.pri",
  10232. "lib/windows8/zxing.winmd",
  10233. "lib/wp8/zxing.wp8.0.XML",
  10234. "lib/wp8/zxing.wp8.0.dll",
  10235. "logo.jpg",
  10236. "zxing.net.0.16.9.nupkg.sha512",
  10237. "zxing.net.nuspec"
  10238. ]
  10239. },
  10240. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10241. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10242. "type": "package",
  10243. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10244. "files": [
  10245. ".nupkg.metadata",
  10246. ".signature.p7s",
  10247. "lib/net472/ZXing.ImageSharp.V2.dll",
  10248. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10249. "lib/net472/ZXing.ImageSharp.V2.xml",
  10250. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10251. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10252. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10253. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10254. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10255. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10256. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10257. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10258. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10259. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10260. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10261. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10262. "logo.jpg",
  10263. "readme.md",
  10264. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10265. "zxing.net.bindings.imagesharp.v2.nuspec"
  10266. ]
  10267. },
  10268. "Ropin.Core.Common/1.0.0": {
  10269. "type": "project",
  10270. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10271. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10272. },
  10273. "Ropin.Core.Extensions/1.0.0": {
  10274. "type": "project",
  10275. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10276. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10277. },
  10278. "Ropin.Inspection.Common/1.0.0": {
  10279. "type": "project",
  10280. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10281. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10282. },
  10283. "Ropin.Inspection.Model/1.0.0": {
  10284. "type": "project",
  10285. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10286. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10287. },
  10288. "Ropin.Inspection.Repository/1.0.0": {
  10289. "type": "project",
  10290. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10291. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10292. },
  10293. "Ropin.Inspection.Service/1.0.0": {
  10294. "type": "project",
  10295. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10296. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10297. },
  10298. "Ropin.Inspection.Tasks/1.0.0": {
  10299. "type": "project",
  10300. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10301. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10302. }
  10303. },
  10304. "projectFileDependencyGroups": {
  10305. "net5.0": [
  10306. "AutoMapper >= 10.1.1",
  10307. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  10308. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10309. "FBoxClientDriver >= 1.2.0",
  10310. "FBoxClientDriver.Contract >= 1.2.0",
  10311. "InfluxData.Net >= 8.0.1",
  10312. "InitQ >= 1.0.0.14",
  10313. "RabbitMQ.Client >= 6.8.1",
  10314. "Ropin.Core.Common >= 1.0.0",
  10315. "Ropin.Core.Extensions >= 1.0.0",
  10316. "Ropin.Inspection.Common >= 1.0.0",
  10317. "Ropin.Inspection.Model >= 1.0.0",
  10318. "Ropin.Inspection.Service >= 1.0.0",
  10319. "Swashbuckle.AspNetCore >= 5.6.3",
  10320. "System.IdentityModel.Tokens.Jwt >= 8.6.0",
  10321. "log4net >= 2.0.17"
  10322. ]
  10323. },
  10324. "packageFolders": {
  10325. "D:\\.nuget\\packages": {},
  10326. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10327. },
  10328. "project": {
  10329. "version": "1.0.0",
  10330. "restore": {
  10331. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  10332. "projectName": "Ropin.Environmentally.AlarmService",
  10333. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  10334. "packagesPath": "D:\\.nuget\\packages",
  10335. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\obj\\",
  10336. "projectStyle": "PackageReference",
  10337. "fallbackFolders": [
  10338. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10339. ],
  10340. "configFilePaths": [
  10341. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10342. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10343. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10344. ],
  10345. "originalTargetFrameworks": [
  10346. "net5.0"
  10347. ],
  10348. "sources": {
  10349. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10350. "C:\\Program Files\\dotnet\\library-packs": {},
  10351. "https://api.nuget.org/v3/index.json": {}
  10352. },
  10353. "frameworks": {
  10354. "net5.0": {
  10355. "targetAlias": "net5.0",
  10356. "projectReferences": {
  10357. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  10358. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  10359. },
  10360. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10361. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10362. },
  10363. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10364. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10365. },
  10366. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10367. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10368. },
  10369. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  10370. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  10371. }
  10372. }
  10373. }
  10374. },
  10375. "warningProperties": {
  10376. "warnAsError": [
  10377. "NU1605"
  10378. ]
  10379. }
  10380. },
  10381. "frameworks": {
  10382. "net5.0": {
  10383. "targetAlias": "net5.0",
  10384. "dependencies": {
  10385. "AutoMapper": {
  10386. "target": "Package",
  10387. "version": "[10.1.1, )"
  10388. },
  10389. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  10390. "target": "Package",
  10391. "version": "[8.1.1, )"
  10392. },
  10393. "Autofac.Extensions.DependencyInjection": {
  10394. "target": "Package",
  10395. "version": "[7.1.0, )"
  10396. },
  10397. "FBoxClientDriver": {
  10398. "target": "Package",
  10399. "version": "[1.2.0, )"
  10400. },
  10401. "FBoxClientDriver.Contract": {
  10402. "target": "Package",
  10403. "version": "[1.2.0, )"
  10404. },
  10405. "InfluxData.Net": {
  10406. "target": "Package",
  10407. "version": "[8.0.1, )"
  10408. },
  10409. "InitQ": {
  10410. "target": "Package",
  10411. "version": "[1.0.0.14, )"
  10412. },
  10413. "RabbitMQ.Client": {
  10414. "target": "Package",
  10415. "version": "[6.8.1, )"
  10416. },
  10417. "Swashbuckle.AspNetCore": {
  10418. "target": "Package",
  10419. "version": "[5.6.3, )"
  10420. },
  10421. "System.IdentityModel.Tokens.Jwt": {
  10422. "target": "Package",
  10423. "version": "[8.6.0, )"
  10424. },
  10425. "log4net": {
  10426. "target": "Package",
  10427. "version": "[2.0.17, )"
  10428. }
  10429. },
  10430. "imports": [
  10431. "net461",
  10432. "net462",
  10433. "net47",
  10434. "net471",
  10435. "net472",
  10436. "net48",
  10437. "net481"
  10438. ],
  10439. "assetTargetFallback": true,
  10440. "warn": true,
  10441. "frameworkReferences": {
  10442. "Microsoft.AspNetCore.App": {
  10443. "privateAssets": "none"
  10444. },
  10445. "Microsoft.NETCore.App": {
  10446. "privateAssets": "all"
  10447. }
  10448. },
  10449. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10450. }
  10451. }
  10452. }
  10453. }