project.assets.json 383 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506
  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.Extras.DynamicProxy/6.0.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Castle.Core": "4.4.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "AutoMapper/10.1.1": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.CSharp": "4.7.0",
  55. "System.Reflection.Emit": "4.7.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.0/AutoMapper.dll": {
  59. "related": ".xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.0/AutoMapper.dll": {
  64. "related": ".xml"
  65. }
  66. }
  67. },
  68. "BouncyCastle.NetCore/1.8.5": {
  69. "type": "package",
  70. "compile": {
  71. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  72. "related": ".xml"
  73. }
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  77. "related": ".xml"
  78. }
  79. }
  80. },
  81. "Castle.Core/4.4.0": {
  82. "type": "package",
  83. "dependencies": {
  84. "NETStandard.Library": "1.6.1",
  85. "System.Collections.Specialized": "4.3.0",
  86. "System.ComponentModel": "4.3.0",
  87. "System.ComponentModel.TypeConverter": "4.3.0",
  88. "System.Diagnostics.TraceSource": "4.3.0",
  89. "System.Dynamic.Runtime": "4.3.0",
  90. "System.Reflection": "4.3.0",
  91. "System.Reflection.Emit": "4.3.0",
  92. "System.Reflection.TypeExtensions": "4.3.0",
  93. "System.Xml.XmlDocument": "4.3.0"
  94. },
  95. "compile": {
  96. "lib/netstandard1.5/Castle.Core.dll": {
  97. "related": ".xml"
  98. }
  99. },
  100. "runtime": {
  101. "lib/netstandard1.5/Castle.Core.dll": {
  102. "related": ".xml"
  103. }
  104. }
  105. },
  106. "Coravel/4.2.1": {
  107. "type": "package",
  108. "dependencies": {
  109. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  110. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  111. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/Coravel.dll": {
  115. "related": ".xml"
  116. }
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Coravel.dll": {
  120. "related": ".xml"
  121. }
  122. }
  123. },
  124. "FluentEmail.Core/3.0.2": {
  125. "type": "package",
  126. "dependencies": {
  127. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  128. },
  129. "compile": {
  130. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  134. }
  135. },
  136. "FluentEmail.Smtp/3.0.2": {
  137. "type": "package",
  138. "dependencies": {
  139. "FluentEmail.Core": "3.0.2"
  140. },
  141. "compile": {
  142. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  146. }
  147. },
  148. "Google.Protobuf/3.11.4": {
  149. "type": "package",
  150. "dependencies": {
  151. "System.Memory": "4.5.2"
  152. },
  153. "compile": {
  154. "lib/netstandard2.0/Google.Protobuf.dll": {
  155. "related": ".pdb;.xml"
  156. }
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/Google.Protobuf.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. }
  163. },
  164. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  165. "type": "package",
  166. "dependencies": {
  167. "AdvancedStringBuilder": "0.1.0",
  168. "JavaScriptEngineSwitcher.Core": "3.21.0"
  169. },
  170. "compile": {
  171. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  172. "related": ".xml"
  173. }
  174. },
  175. "runtime": {
  176. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  177. "related": ".xml"
  178. }
  179. },
  180. "resource": {
  181. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  182. "locale": "ru-RU"
  183. }
  184. }
  185. },
  186. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  187. "type": "package",
  188. "runtimeTargets": {
  189. "runtimes/linux-x64/native/libChakraCore.so": {
  190. "assetType": "native",
  191. "rid": "linux-x64"
  192. }
  193. }
  194. },
  195. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  196. "type": "package",
  197. "build": {
  198. "build/_._": {}
  199. },
  200. "runtimeTargets": {
  201. "runtimes/win-x64/native/ChakraCore.dll": {
  202. "assetType": "native",
  203. "rid": "win-x64"
  204. }
  205. }
  206. },
  207. "JavaScriptEngineSwitcher.Core/3.21.0": {
  208. "type": "package",
  209. "dependencies": {
  210. "AdvancedStringBuilder": "0.1.0"
  211. },
  212. "compile": {
  213. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  214. "related": ".xml"
  215. }
  216. },
  217. "runtime": {
  218. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  219. "related": ".xml"
  220. }
  221. },
  222. "resource": {
  223. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  224. "locale": "ru-RU"
  225. }
  226. }
  227. },
  228. "K4os.Compression.LZ4/1.1.11": {
  229. "type": "package",
  230. "dependencies": {
  231. "System.Memory": "4.5.3"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "K4os.Compression.LZ4.Streams/1.1.11": {
  245. "type": "package",
  246. "dependencies": {
  247. "K4os.Compression.LZ4": "1.1.11",
  248. "K4os.Hash.xxHash": "1.0.6"
  249. },
  250. "compile": {
  251. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  252. "related": ".xml"
  253. }
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  257. "related": ".xml"
  258. }
  259. }
  260. },
  261. "K4os.Hash.xxHash/1.0.6": {
  262. "type": "package",
  263. "dependencies": {
  264. "System.Memory": "4.5.3"
  265. },
  266. "compile": {
  267. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  268. "related": ".xml"
  269. }
  270. },
  271. "runtime": {
  272. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  273. "related": ".xml"
  274. }
  275. }
  276. },
  277. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  278. "type": "package",
  279. "dependencies": {
  280. "Microsoft.EntityFrameworkCore": "5.0.0"
  281. },
  282. "compile": {
  283. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  284. "related": ".xml"
  285. }
  286. },
  287. "runtime": {
  288. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  289. "related": ".xml"
  290. }
  291. }
  292. },
  293. "log4net/2.0.17": {
  294. "type": "package",
  295. "dependencies": {
  296. "System.Configuration.ConfigurationManager": "4.5.0"
  297. },
  298. "compile": {
  299. "lib/netstandard2.0/log4net.dll": {
  300. "related": ".xml"
  301. }
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/log4net.dll": {
  305. "related": ".xml"
  306. }
  307. }
  308. },
  309. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  310. "type": "package",
  311. "dependencies": {
  312. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  313. "System.Text.Encodings.Web": "4.5.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. }
  325. },
  326. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  327. "type": "package",
  328. "dependencies": {
  329. "Microsoft.Extensions.Primitives": "5.0.0",
  330. "System.IO.Pipelines": "5.0.0"
  331. },
  332. "compile": {
  333. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  334. "related": ".xml"
  335. }
  336. },
  337. "runtime": {
  338. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  339. "related": ".xml"
  340. }
  341. }
  342. },
  343. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  344. "type": "package",
  345. "dependencies": {
  346. "Microsoft.Extensions.Logging.Console": "3.1.30",
  347. "Newtonsoft.Json": "13.0.1"
  348. },
  349. "compile": {
  350. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  351. },
  352. "runtime": {
  353. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  354. },
  355. "frameworkReferences": [
  356. "Microsoft.AspNetCore.App"
  357. ]
  358. },
  359. "Microsoft.CSharp/4.7.0": {
  360. "type": "package",
  361. "compile": {
  362. "ref/netcoreapp2.0/_._": {}
  363. },
  364. "runtime": {
  365. "lib/netcoreapp2.0/_._": {}
  366. }
  367. },
  368. "Microsoft.EntityFrameworkCore/5.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  372. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  373. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  374. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  375. "Microsoft.Extensions.Logging": "5.0.0",
  376. "System.Collections.Immutable": "5.0.0",
  377. "System.ComponentModel.Annotations": "5.0.0",
  378. "System.Diagnostics.DiagnosticSource": "5.0.0"
  379. },
  380. "compile": {
  381. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  382. "related": ".xml"
  383. }
  384. },
  385. "runtime": {
  386. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  387. "related": ".xml"
  388. }
  389. }
  390. },
  391. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  392. "type": "package",
  393. "compile": {
  394. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  395. "related": ".xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  400. "related": ".xml"
  401. }
  402. }
  403. },
  404. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  405. "type": "package",
  406. "compile": {
  407. "lib/netstandard2.0/_._": {}
  408. },
  409. "runtime": {
  410. "lib/netstandard2.0/_._": {}
  411. }
  412. },
  413. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  414. "type": "package",
  415. "dependencies": {
  416. "Microsoft.EntityFrameworkCore": "5.0.0",
  417. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  418. },
  419. "compile": {
  420. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  426. "related": ".xml"
  427. }
  428. }
  429. },
  430. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  431. "type": "package",
  432. "build": {
  433. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  434. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  435. },
  436. "buildMultiTargeting": {
  437. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  438. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  439. }
  440. },
  441. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Primitives": "5.0.0"
  445. },
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  453. "related": ".xml"
  454. }
  455. }
  456. },
  457. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  461. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  462. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  463. "Microsoft.Extensions.Options": "5.0.0",
  464. "Microsoft.Extensions.Primitives": "5.0.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.Extensions.Configuration/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.Primitives": "5.0.0"
  482. },
  483. "compile": {
  484. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  485. "related": ".xml"
  486. }
  487. },
  488. "runtime": {
  489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  490. "related": ".xml"
  491. }
  492. }
  493. },
  494. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.Extensions.Primitives": "5.0.0"
  498. },
  499. "compile": {
  500. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  501. "related": ".xml"
  502. }
  503. },
  504. "runtime": {
  505. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  506. "related": ".xml"
  507. }
  508. }
  509. },
  510. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  511. "type": "package",
  512. "dependencies": {
  513. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  514. },
  515. "compile": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  517. "related": ".xml"
  518. }
  519. },
  520. "runtime": {
  521. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  522. "related": ".xml"
  523. }
  524. }
  525. },
  526. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  527. "type": "package",
  528. "dependencies": {
  529. "Microsoft.Extensions.Configuration": "5.0.0",
  530. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  531. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  532. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  533. "Microsoft.Extensions.Primitives": "5.0.0"
  534. },
  535. "compile": {
  536. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.Extensions.Configuration": "5.0.0",
  550. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  551. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  552. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  553. },
  554. "compile": {
  555. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  556. "related": ".xml"
  557. }
  558. },
  559. "runtime": {
  560. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  561. "related": ".xml"
  562. }
  563. }
  564. },
  565. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  569. },
  570. "compile": {
  571. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  572. "related": ".xml"
  573. }
  574. },
  575. "runtime": {
  576. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  577. "related": ".xml"
  578. }
  579. }
  580. },
  581. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  582. "type": "package",
  583. "compile": {
  584. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "runtime": {
  589. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  590. "related": ".xml"
  591. }
  592. }
  593. },
  594. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  595. "type": "package",
  596. "dependencies": {
  597. "Microsoft.Extensions.Primitives": "5.0.0"
  598. },
  599. "compile": {
  600. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  601. "related": ".xml"
  602. }
  603. },
  604. "runtime": {
  605. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  606. "related": ".xml"
  607. }
  608. }
  609. },
  610. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  611. "type": "package",
  612. "dependencies": {
  613. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  614. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  615. "Microsoft.Extensions.Primitives": "5.0.0"
  616. },
  617. "compile": {
  618. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  619. "related": ".xml"
  620. }
  621. },
  622. "runtime": {
  623. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  624. "related": ".xml"
  625. }
  626. }
  627. },
  628. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  629. "type": "package",
  630. "compile": {
  631. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  632. "related": ".xml"
  633. }
  634. },
  635. "runtime": {
  636. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  637. "related": ".xml"
  638. }
  639. }
  640. },
  641. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  642. "type": "package",
  643. "dependencies": {
  644. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  645. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  646. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  647. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  648. },
  649. "compile": {
  650. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  651. "related": ".xml"
  652. }
  653. },
  654. "runtime": {
  655. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  656. "related": ".xml"
  657. }
  658. }
  659. },
  660. "Microsoft.Extensions.Http/5.0.0": {
  661. "type": "package",
  662. "dependencies": {
  663. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  664. "Microsoft.Extensions.Logging": "5.0.0",
  665. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  666. "Microsoft.Extensions.Options": "5.0.0"
  667. },
  668. "compile": {
  669. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  670. "related": ".xml"
  671. }
  672. },
  673. "runtime": {
  674. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  675. "related": ".xml"
  676. }
  677. }
  678. },
  679. "Microsoft.Extensions.Logging/5.0.0": {
  680. "type": "package",
  681. "dependencies": {
  682. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  683. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  684. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  685. "Microsoft.Extensions.Options": "5.0.0"
  686. },
  687. "compile": {
  688. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  689. "related": ".xml"
  690. }
  691. },
  692. "runtime": {
  693. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  694. "related": ".xml"
  695. }
  696. }
  697. },
  698. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  699. "type": "package",
  700. "compile": {
  701. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  702. "related": ".xml"
  703. }
  704. },
  705. "runtime": {
  706. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  707. "related": ".xml"
  708. }
  709. }
  710. },
  711. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  712. "type": "package",
  713. "dependencies": {
  714. "Microsoft.Extensions.Logging": "3.1.30",
  715. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  716. },
  717. "compile": {
  718. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  719. "related": ".xml"
  720. }
  721. },
  722. "runtime": {
  723. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  724. "related": ".xml"
  725. }
  726. }
  727. },
  728. "Microsoft.Extensions.Logging.Console/3.1.30": {
  729. "type": "package",
  730. "dependencies": {
  731. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  732. "Microsoft.Extensions.Logging": "3.1.30",
  733. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  734. },
  735. "compile": {
  736. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  737. "related": ".xml"
  738. }
  739. },
  740. "runtime": {
  741. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  742. "related": ".xml"
  743. }
  744. }
  745. },
  746. "Microsoft.Extensions.Options/5.0.0": {
  747. "type": "package",
  748. "dependencies": {
  749. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  750. "Microsoft.Extensions.Primitives": "5.0.0"
  751. },
  752. "compile": {
  753. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  754. "related": ".xml"
  755. }
  756. },
  757. "runtime": {
  758. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  759. "related": ".xml"
  760. }
  761. }
  762. },
  763. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  764. "type": "package",
  765. "dependencies": {
  766. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  767. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  768. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  769. "Microsoft.Extensions.Options": "3.1.30"
  770. },
  771. "compile": {
  772. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  773. "related": ".xml"
  774. }
  775. },
  776. "runtime": {
  777. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  778. "related": ".xml"
  779. }
  780. }
  781. },
  782. "Microsoft.Extensions.Primitives/5.0.0": {
  783. "type": "package",
  784. "compile": {
  785. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  786. "related": ".xml"
  787. }
  788. },
  789. "runtime": {
  790. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  791. "related": ".xml"
  792. }
  793. }
  794. },
  795. "Microsoft.NETCore.Platforms/5.0.0": {
  796. "type": "package",
  797. "compile": {
  798. "lib/netstandard1.0/_._": {}
  799. },
  800. "runtime": {
  801. "lib/netstandard1.0/_._": {}
  802. }
  803. },
  804. "Microsoft.NETCore.Targets/1.1.0": {
  805. "type": "package",
  806. "compile": {
  807. "lib/netstandard1.0/_._": {}
  808. },
  809. "runtime": {
  810. "lib/netstandard1.0/_._": {}
  811. }
  812. },
  813. "Microsoft.OpenApi/1.2.3": {
  814. "type": "package",
  815. "compile": {
  816. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  817. "related": ".pdb;.xml"
  818. }
  819. },
  820. "runtime": {
  821. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  822. "related": ".pdb;.xml"
  823. }
  824. }
  825. },
  826. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  827. "type": "package",
  828. "build": {
  829. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  830. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  831. }
  832. },
  833. "Microsoft.Win32.Primitives/4.3.0": {
  834. "type": "package",
  835. "dependencies": {
  836. "Microsoft.NETCore.Platforms": "1.1.0",
  837. "Microsoft.NETCore.Targets": "1.1.0",
  838. "System.Runtime": "4.3.0"
  839. },
  840. "compile": {
  841. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  842. "related": ".xml"
  843. }
  844. }
  845. },
  846. "Microsoft.Win32.SystemEvents/5.0.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.NETCore.Platforms": "5.0.0"
  850. },
  851. "compile": {
  852. "ref/netstandard2.0/_._": {
  853. "related": ".xml"
  854. }
  855. },
  856. "runtime": {
  857. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  858. "related": ".xml"
  859. }
  860. },
  861. "runtimeTargets": {
  862. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  863. "assetType": "runtime",
  864. "rid": "win"
  865. }
  866. }
  867. },
  868. "MQTTnet/4.2.1.781": {
  869. "type": "package",
  870. "compile": {
  871. "lib/net5.0/MQTTnet.dll": {
  872. "related": ".xml"
  873. }
  874. },
  875. "runtime": {
  876. "lib/net5.0/MQTTnet.dll": {
  877. "related": ".xml"
  878. }
  879. }
  880. },
  881. "MQTTnet.AspNetCore/4.2.1.781": {
  882. "type": "package",
  883. "dependencies": {
  884. "MQTTnet": "4.2.1.781"
  885. },
  886. "compile": {
  887. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  888. "related": ".xml"
  889. }
  890. },
  891. "runtime": {
  892. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  893. "related": ".xml"
  894. }
  895. },
  896. "frameworkReferences": [
  897. "Microsoft.AspNetCore.App"
  898. ]
  899. },
  900. "MySql.Data/8.0.23": {
  901. "type": "package",
  902. "dependencies": {
  903. "BouncyCastle.NetCore": "1.8.5",
  904. "Google.Protobuf": "3.11.4",
  905. "K4os.Compression.LZ4": "1.1.11",
  906. "K4os.Compression.LZ4.Streams": "1.1.11",
  907. "K4os.Hash.xxHash": "1.0.6",
  908. "SSH.NET": "2020.0.0-beta1",
  909. "System.Buffers": "4.5.1",
  910. "System.Configuration.ConfigurationManager": "4.4.1",
  911. "System.Security.Permissions": "4.7.0",
  912. "System.Text.Encoding.CodePages": "4.4.0"
  913. },
  914. "compile": {
  915. "lib/net5.0/MySql.Data.dll": {
  916. "related": ".xml"
  917. },
  918. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  919. "lib/net5.0/Zstandard.Net.dll": {}
  920. },
  921. "runtime": {
  922. "lib/net5.0/MySql.Data.dll": {
  923. "related": ".xml"
  924. },
  925. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  926. "lib/net5.0/Zstandard.Net.dll": {}
  927. }
  928. },
  929. "MySqlConnector/1.1.0": {
  930. "type": "package",
  931. "compile": {
  932. "lib/net5.0/MySqlConnector.dll": {
  933. "related": ".xml"
  934. }
  935. },
  936. "runtime": {
  937. "lib/net5.0/MySqlConnector.dll": {
  938. "related": ".xml"
  939. }
  940. }
  941. },
  942. "NETStandard.Library/1.6.1": {
  943. "type": "package",
  944. "dependencies": {
  945. "Microsoft.NETCore.Platforms": "1.1.0",
  946. "Microsoft.Win32.Primitives": "4.3.0",
  947. "System.AppContext": "4.3.0",
  948. "System.Collections": "4.3.0",
  949. "System.Collections.Concurrent": "4.3.0",
  950. "System.Console": "4.3.0",
  951. "System.Diagnostics.Debug": "4.3.0",
  952. "System.Diagnostics.Tools": "4.3.0",
  953. "System.Diagnostics.Tracing": "4.3.0",
  954. "System.Globalization": "4.3.0",
  955. "System.Globalization.Calendars": "4.3.0",
  956. "System.IO": "4.3.0",
  957. "System.IO.Compression": "4.3.0",
  958. "System.IO.Compression.ZipFile": "4.3.0",
  959. "System.IO.FileSystem": "4.3.0",
  960. "System.IO.FileSystem.Primitives": "4.3.0",
  961. "System.Linq": "4.3.0",
  962. "System.Linq.Expressions": "4.3.0",
  963. "System.Net.Http": "4.3.0",
  964. "System.Net.Primitives": "4.3.0",
  965. "System.Net.Sockets": "4.3.0",
  966. "System.ObjectModel": "4.3.0",
  967. "System.Reflection": "4.3.0",
  968. "System.Reflection.Extensions": "4.3.0",
  969. "System.Reflection.Primitives": "4.3.0",
  970. "System.Resources.ResourceManager": "4.3.0",
  971. "System.Runtime": "4.3.0",
  972. "System.Runtime.Extensions": "4.3.0",
  973. "System.Runtime.Handles": "4.3.0",
  974. "System.Runtime.InteropServices": "4.3.0",
  975. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  976. "System.Runtime.Numerics": "4.3.0",
  977. "System.Security.Cryptography.Algorithms": "4.3.0",
  978. "System.Security.Cryptography.Encoding": "4.3.0",
  979. "System.Security.Cryptography.Primitives": "4.3.0",
  980. "System.Security.Cryptography.X509Certificates": "4.3.0",
  981. "System.Text.Encoding": "4.3.0",
  982. "System.Text.Encoding.Extensions": "4.3.0",
  983. "System.Text.RegularExpressions": "4.3.0",
  984. "System.Threading": "4.3.0",
  985. "System.Threading.Tasks": "4.3.0",
  986. "System.Threading.Timer": "4.3.0",
  987. "System.Xml.ReaderWriter": "4.3.0",
  988. "System.Xml.XDocument": "4.3.0"
  989. }
  990. },
  991. "Newtonsoft.Json/13.0.3": {
  992. "type": "package",
  993. "compile": {
  994. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  995. "related": ".xml"
  996. }
  997. },
  998. "runtime": {
  999. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1000. "related": ".xml"
  1001. }
  1002. }
  1003. },
  1004. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1008. "MySqlConnector": "1.1.0"
  1009. },
  1010. "compile": {
  1011. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1012. "related": ".xml"
  1013. }
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1017. "related": ".xml"
  1018. }
  1019. }
  1020. },
  1021. "QRCoder/1.4.3": {
  1022. "type": "package",
  1023. "dependencies": {
  1024. "System.Drawing.Common": "5.0.3"
  1025. },
  1026. "compile": {
  1027. "lib/net5.0/QRCoder.dll": {}
  1028. },
  1029. "runtime": {
  1030. "lib/net5.0/QRCoder.dll": {}
  1031. }
  1032. },
  1033. "Quartz/3.3.3": {
  1034. "type": "package",
  1035. "dependencies": {
  1036. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1037. "System.Configuration.ConfigurationManager": "4.7.0",
  1038. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1039. },
  1040. "compile": {
  1041. "lib/netstandard2.0/Quartz.dll": {
  1042. "related": ".xml"
  1043. }
  1044. },
  1045. "runtime": {
  1046. "lib/netstandard2.0/Quartz.dll": {
  1047. "related": ".xml"
  1048. }
  1049. }
  1050. },
  1051. "RabbitMQ.Client/6.8.1": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "System.Memory": "4.5.5",
  1055. "System.Threading.Channels": "7.0.0"
  1056. },
  1057. "compile": {
  1058. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1064. "related": ".xml"
  1065. }
  1066. }
  1067. },
  1068. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1069. "type": "package",
  1070. "runtimeTargets": {
  1071. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1072. "assetType": "native",
  1073. "rid": "debian.8-x64"
  1074. }
  1075. }
  1076. },
  1077. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1078. "type": "package",
  1079. "runtimeTargets": {
  1080. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1081. "assetType": "native",
  1082. "rid": "fedora.23-x64"
  1083. }
  1084. }
  1085. },
  1086. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1087. "type": "package",
  1088. "runtimeTargets": {
  1089. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1090. "assetType": "native",
  1091. "rid": "fedora.24-x64"
  1092. }
  1093. }
  1094. },
  1095. "runtime.native.System/4.3.0": {
  1096. "type": "package",
  1097. "dependencies": {
  1098. "Microsoft.NETCore.Platforms": "1.1.0",
  1099. "Microsoft.NETCore.Targets": "1.1.0"
  1100. },
  1101. "compile": {
  1102. "lib/netstandard1.0/_._": {}
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard1.0/_._": {}
  1106. }
  1107. },
  1108. "runtime.native.System.IO.Compression/4.3.0": {
  1109. "type": "package",
  1110. "dependencies": {
  1111. "Microsoft.NETCore.Platforms": "1.1.0",
  1112. "Microsoft.NETCore.Targets": "1.1.0"
  1113. },
  1114. "compile": {
  1115. "lib/netstandard1.0/_._": {}
  1116. },
  1117. "runtime": {
  1118. "lib/netstandard1.0/_._": {}
  1119. }
  1120. },
  1121. "runtime.native.System.Net.Http/4.3.0": {
  1122. "type": "package",
  1123. "dependencies": {
  1124. "Microsoft.NETCore.Platforms": "1.1.0",
  1125. "Microsoft.NETCore.Targets": "1.1.0"
  1126. },
  1127. "compile": {
  1128. "lib/netstandard1.0/_._": {}
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard1.0/_._": {}
  1132. }
  1133. },
  1134. "runtime.native.System.Net.Security/4.3.0": {
  1135. "type": "package",
  1136. "dependencies": {
  1137. "Microsoft.NETCore.Platforms": "1.1.0",
  1138. "Microsoft.NETCore.Targets": "1.1.0"
  1139. },
  1140. "compile": {
  1141. "lib/netstandard1.0/_._": {}
  1142. },
  1143. "runtime": {
  1144. "lib/netstandard1.0/_._": {}
  1145. }
  1146. },
  1147. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1151. },
  1152. "compile": {
  1153. "lib/netstandard1.0/_._": {}
  1154. },
  1155. "runtime": {
  1156. "lib/netstandard1.0/_._": {}
  1157. }
  1158. },
  1159. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1160. "type": "package",
  1161. "dependencies": {
  1162. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1163. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1164. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1165. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1166. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1167. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1168. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1169. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1170. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1171. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1172. },
  1173. "compile": {
  1174. "lib/netstandard1.0/_._": {}
  1175. },
  1176. "runtime": {
  1177. "lib/netstandard1.0/_._": {}
  1178. }
  1179. },
  1180. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1181. "type": "package",
  1182. "runtimeTargets": {
  1183. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1184. "assetType": "native",
  1185. "rid": "opensuse.13.2-x64"
  1186. }
  1187. }
  1188. },
  1189. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1190. "type": "package",
  1191. "runtimeTargets": {
  1192. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1193. "assetType": "native",
  1194. "rid": "opensuse.42.1-x64"
  1195. }
  1196. }
  1197. },
  1198. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1199. "type": "package",
  1200. "runtimeTargets": {
  1201. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1202. "assetType": "native",
  1203. "rid": "osx.10.10-x64"
  1204. }
  1205. }
  1206. },
  1207. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1208. "type": "package",
  1209. "runtimeTargets": {
  1210. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1211. "assetType": "native",
  1212. "rid": "osx.10.10-x64"
  1213. }
  1214. }
  1215. },
  1216. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1217. "type": "package",
  1218. "runtimeTargets": {
  1219. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1220. "assetType": "native",
  1221. "rid": "rhel.7-x64"
  1222. }
  1223. }
  1224. },
  1225. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1226. "type": "package",
  1227. "runtimeTargets": {
  1228. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1229. "assetType": "native",
  1230. "rid": "ubuntu.14.04-x64"
  1231. }
  1232. }
  1233. },
  1234. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1235. "type": "package",
  1236. "runtimeTargets": {
  1237. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1238. "assetType": "native",
  1239. "rid": "ubuntu.16.04-x64"
  1240. }
  1241. }
  1242. },
  1243. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1244. "type": "package",
  1245. "runtimeTargets": {
  1246. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1247. "assetType": "native",
  1248. "rid": "ubuntu.16.10-x64"
  1249. }
  1250. }
  1251. },
  1252. "SixLabors.ImageSharp/2.1.6": {
  1253. "type": "package",
  1254. "dependencies": {
  1255. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1256. "System.Text.Encoding.CodePages": "5.0.0"
  1257. },
  1258. "compile": {
  1259. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1260. "related": ".xml"
  1261. }
  1262. },
  1263. "runtime": {
  1264. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1265. "related": ".xml"
  1266. }
  1267. }
  1268. },
  1269. "SSH.NET/2020.0.0-beta1": {
  1270. "type": "package",
  1271. "dependencies": {
  1272. "SshNet.Security.Cryptography": "[1.3.0]"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard2.0/Renci.SshNet.dll": {
  1276. "related": ".xml"
  1277. }
  1278. },
  1279. "runtime": {
  1280. "lib/netstandard2.0/Renci.SshNet.dll": {
  1281. "related": ".xml"
  1282. }
  1283. }
  1284. },
  1285. "SshNet.Security.Cryptography/1.3.0": {
  1286. "type": "package",
  1287. "compile": {
  1288. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1289. "related": ".xml"
  1290. }
  1291. },
  1292. "runtime": {
  1293. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1294. "related": ".xml"
  1295. }
  1296. }
  1297. },
  1298. "StackExchange.Redis/1.2.4": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "NETStandard.Library": "1.6.1",
  1302. "System.Collections": "4.3.0",
  1303. "System.Collections.Concurrent": "4.3.0",
  1304. "System.Collections.NonGeneric": "4.3.0",
  1305. "System.Diagnostics.Tools": "4.3.0",
  1306. "System.IO.Compression": "4.3.0",
  1307. "System.IO.FileSystem": "4.3.0",
  1308. "System.Linq": "4.3.0",
  1309. "System.Net.NameResolution": "4.3.0",
  1310. "System.Net.Security": "4.3.0",
  1311. "System.Net.Sockets": "4.3.0",
  1312. "System.Reflection.Emit": "4.3.0",
  1313. "System.Reflection.Emit.Lightweight": "4.3.0",
  1314. "System.Reflection.TypeExtensions": "4.3.0",
  1315. "System.Runtime.Extensions": "4.3.0",
  1316. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1317. "System.Security.Cryptography.Algorithms": "4.3.0",
  1318. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1319. "System.Text.RegularExpressions": "4.3.0",
  1320. "System.Threading": "4.3.0",
  1321. "System.Threading.Thread": "4.3.0",
  1322. "System.Threading.ThreadPool": "4.3.0",
  1323. "System.Threading.Timer": "4.3.0"
  1324. },
  1325. "compile": {
  1326. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1327. "related": ".xml"
  1328. }
  1329. },
  1330. "runtime": {
  1331. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1332. "related": ".xml"
  1333. }
  1334. }
  1335. },
  1336. "Swashbuckle.AspNetCore/5.6.3": {
  1337. "type": "package",
  1338. "dependencies": {
  1339. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1340. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1341. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1342. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1343. },
  1344. "build": {
  1345. "build/Swashbuckle.AspNetCore.props": {}
  1346. }
  1347. },
  1348. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1349. "type": "package",
  1350. "dependencies": {
  1351. "Microsoft.OpenApi": "1.2.3"
  1352. },
  1353. "compile": {
  1354. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1355. "related": ".pdb;.xml"
  1356. }
  1357. },
  1358. "runtime": {
  1359. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1360. "related": ".pdb;.xml"
  1361. }
  1362. },
  1363. "frameworkReferences": [
  1364. "Microsoft.AspNetCore.App"
  1365. ]
  1366. },
  1367. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1371. },
  1372. "compile": {
  1373. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1374. "related": ".pdb;.xml"
  1375. }
  1376. },
  1377. "runtime": {
  1378. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1379. "related": ".pdb;.xml"
  1380. }
  1381. },
  1382. "frameworkReferences": [
  1383. "Microsoft.AspNetCore.App"
  1384. ]
  1385. },
  1386. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1387. "type": "package",
  1388. "compile": {
  1389. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1390. "related": ".pdb;.xml"
  1391. }
  1392. },
  1393. "runtime": {
  1394. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1395. "related": ".pdb;.xml"
  1396. }
  1397. },
  1398. "frameworkReferences": [
  1399. "Microsoft.AspNetCore.App"
  1400. ]
  1401. },
  1402. "System.AppContext/4.3.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "System.Runtime": "4.3.0"
  1406. },
  1407. "compile": {
  1408. "ref/netstandard1.6/System.AppContext.dll": {
  1409. "related": ".xml"
  1410. }
  1411. },
  1412. "runtime": {
  1413. "lib/netstandard1.6/System.AppContext.dll": {}
  1414. }
  1415. },
  1416. "System.Buffers/4.5.1": {
  1417. "type": "package",
  1418. "compile": {
  1419. "ref/netcoreapp2.0/_._": {}
  1420. },
  1421. "runtime": {
  1422. "lib/netcoreapp2.0/_._": {}
  1423. }
  1424. },
  1425. "System.Collections/4.3.0": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "Microsoft.NETCore.Platforms": "1.1.0",
  1429. "Microsoft.NETCore.Targets": "1.1.0",
  1430. "System.Runtime": "4.3.0"
  1431. },
  1432. "compile": {
  1433. "ref/netstandard1.3/System.Collections.dll": {
  1434. "related": ".xml"
  1435. }
  1436. }
  1437. },
  1438. "System.Collections.Concurrent/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "System.Collections": "4.3.0",
  1442. "System.Diagnostics.Debug": "4.3.0",
  1443. "System.Diagnostics.Tracing": "4.3.0",
  1444. "System.Globalization": "4.3.0",
  1445. "System.Reflection": "4.3.0",
  1446. "System.Resources.ResourceManager": "4.3.0",
  1447. "System.Runtime": "4.3.0",
  1448. "System.Runtime.Extensions": "4.3.0",
  1449. "System.Threading": "4.3.0",
  1450. "System.Threading.Tasks": "4.3.0"
  1451. },
  1452. "compile": {
  1453. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1454. "related": ".xml"
  1455. }
  1456. },
  1457. "runtime": {
  1458. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1459. }
  1460. },
  1461. "System.Collections.Immutable/5.0.0": {
  1462. "type": "package",
  1463. "compile": {
  1464. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1465. "related": ".xml"
  1466. }
  1467. },
  1468. "runtime": {
  1469. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1470. "related": ".xml"
  1471. }
  1472. }
  1473. },
  1474. "System.Collections.NonGeneric/4.3.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "System.Diagnostics.Debug": "4.3.0",
  1478. "System.Globalization": "4.3.0",
  1479. "System.Resources.ResourceManager": "4.3.0",
  1480. "System.Runtime": "4.3.0",
  1481. "System.Runtime.Extensions": "4.3.0",
  1482. "System.Threading": "4.3.0"
  1483. },
  1484. "compile": {
  1485. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1486. "related": ".xml"
  1487. }
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1491. }
  1492. },
  1493. "System.Collections.Specialized/4.3.0": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "System.Collections.NonGeneric": "4.3.0",
  1497. "System.Globalization": "4.3.0",
  1498. "System.Globalization.Extensions": "4.3.0",
  1499. "System.Resources.ResourceManager": "4.3.0",
  1500. "System.Runtime": "4.3.0",
  1501. "System.Runtime.Extensions": "4.3.0",
  1502. "System.Threading": "4.3.0"
  1503. },
  1504. "compile": {
  1505. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1506. "related": ".xml"
  1507. }
  1508. },
  1509. "runtime": {
  1510. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1511. }
  1512. },
  1513. "System.ComponentModel/4.3.0": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "System.Runtime": "4.3.0"
  1517. },
  1518. "compile": {
  1519. "ref/netstandard1.0/System.ComponentModel.dll": {
  1520. "related": ".xml"
  1521. }
  1522. },
  1523. "runtime": {
  1524. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1525. }
  1526. },
  1527. "System.ComponentModel.Annotations/5.0.0": {
  1528. "type": "package",
  1529. "compile": {
  1530. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1531. "related": ".xml"
  1532. }
  1533. },
  1534. "runtime": {
  1535. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1536. "related": ".xml"
  1537. }
  1538. }
  1539. },
  1540. "System.ComponentModel.Primitives/4.3.0": {
  1541. "type": "package",
  1542. "dependencies": {
  1543. "System.ComponentModel": "4.3.0",
  1544. "System.Resources.ResourceManager": "4.3.0",
  1545. "System.Runtime": "4.3.0"
  1546. },
  1547. "compile": {
  1548. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1549. "related": ".xml"
  1550. }
  1551. },
  1552. "runtime": {
  1553. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1554. }
  1555. },
  1556. "System.ComponentModel.TypeConverter/4.3.0": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "System.Collections": "4.3.0",
  1560. "System.Collections.NonGeneric": "4.3.0",
  1561. "System.Collections.Specialized": "4.3.0",
  1562. "System.ComponentModel": "4.3.0",
  1563. "System.ComponentModel.Primitives": "4.3.0",
  1564. "System.Globalization": "4.3.0",
  1565. "System.Linq": "4.3.0",
  1566. "System.Reflection": "4.3.0",
  1567. "System.Reflection.Extensions": "4.3.0",
  1568. "System.Reflection.Primitives": "4.3.0",
  1569. "System.Reflection.TypeExtensions": "4.3.0",
  1570. "System.Resources.ResourceManager": "4.3.0",
  1571. "System.Runtime": "4.3.0",
  1572. "System.Runtime.Extensions": "4.3.0",
  1573. "System.Threading": "4.3.0"
  1574. },
  1575. "compile": {
  1576. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1582. }
  1583. },
  1584. "System.Configuration.ConfigurationManager/4.7.0": {
  1585. "type": "package",
  1586. "dependencies": {
  1587. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1588. "System.Security.Permissions": "4.7.0"
  1589. },
  1590. "compile": {
  1591. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1592. "related": ".xml"
  1593. }
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1597. "related": ".xml"
  1598. }
  1599. }
  1600. },
  1601. "System.Console/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "Microsoft.NETCore.Platforms": "1.1.0",
  1605. "Microsoft.NETCore.Targets": "1.1.0",
  1606. "System.IO": "4.3.0",
  1607. "System.Runtime": "4.3.0",
  1608. "System.Text.Encoding": "4.3.0"
  1609. },
  1610. "compile": {
  1611. "ref/netstandard1.3/System.Console.dll": {
  1612. "related": ".xml"
  1613. }
  1614. }
  1615. },
  1616. "System.Diagnostics.Debug/4.3.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.NETCore.Platforms": "1.1.0",
  1620. "Microsoft.NETCore.Targets": "1.1.0",
  1621. "System.Runtime": "4.3.0"
  1622. },
  1623. "compile": {
  1624. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1625. "related": ".xml"
  1626. }
  1627. }
  1628. },
  1629. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1630. "type": "package",
  1631. "compile": {
  1632. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1638. "related": ".xml"
  1639. }
  1640. }
  1641. },
  1642. "System.Diagnostics.Tools/4.3.0": {
  1643. "type": "package",
  1644. "dependencies": {
  1645. "Microsoft.NETCore.Platforms": "1.1.0",
  1646. "Microsoft.NETCore.Targets": "1.1.0",
  1647. "System.Runtime": "4.3.0"
  1648. },
  1649. "compile": {
  1650. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1651. "related": ".xml"
  1652. }
  1653. }
  1654. },
  1655. "System.Diagnostics.TraceSource/4.3.0": {
  1656. "type": "package",
  1657. "dependencies": {
  1658. "Microsoft.NETCore.Platforms": "1.1.0",
  1659. "System.Collections": "4.3.0",
  1660. "System.Diagnostics.Debug": "4.3.0",
  1661. "System.Globalization": "4.3.0",
  1662. "System.Resources.ResourceManager": "4.3.0",
  1663. "System.Runtime": "4.3.0",
  1664. "System.Runtime.Extensions": "4.3.0",
  1665. "System.Threading": "4.3.0",
  1666. "runtime.native.System": "4.3.0"
  1667. },
  1668. "compile": {
  1669. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtimeTargets": {
  1674. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1675. "assetType": "runtime",
  1676. "rid": "unix"
  1677. },
  1678. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1679. "assetType": "runtime",
  1680. "rid": "win"
  1681. }
  1682. }
  1683. },
  1684. "System.Diagnostics.Tracing/4.3.0": {
  1685. "type": "package",
  1686. "dependencies": {
  1687. "Microsoft.NETCore.Platforms": "1.1.0",
  1688. "Microsoft.NETCore.Targets": "1.1.0",
  1689. "System.Runtime": "4.3.0"
  1690. },
  1691. "compile": {
  1692. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1693. "related": ".xml"
  1694. }
  1695. }
  1696. },
  1697. "System.Drawing.Common/5.0.3": {
  1698. "type": "package",
  1699. "dependencies": {
  1700. "Microsoft.Win32.SystemEvents": "5.0.0"
  1701. },
  1702. "compile": {
  1703. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1704. "related": ".xml"
  1705. }
  1706. },
  1707. "runtime": {
  1708. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1709. "related": ".xml"
  1710. }
  1711. },
  1712. "runtimeTargets": {
  1713. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1714. "assetType": "runtime",
  1715. "rid": "unix"
  1716. },
  1717. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1718. "assetType": "runtime",
  1719. "rid": "win"
  1720. }
  1721. }
  1722. },
  1723. "System.Dynamic.Runtime/4.3.0": {
  1724. "type": "package",
  1725. "dependencies": {
  1726. "System.Collections": "4.3.0",
  1727. "System.Diagnostics.Debug": "4.3.0",
  1728. "System.Linq": "4.3.0",
  1729. "System.Linq.Expressions": "4.3.0",
  1730. "System.ObjectModel": "4.3.0",
  1731. "System.Reflection": "4.3.0",
  1732. "System.Reflection.Emit": "4.3.0",
  1733. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1734. "System.Reflection.Primitives": "4.3.0",
  1735. "System.Reflection.TypeExtensions": "4.3.0",
  1736. "System.Resources.ResourceManager": "4.3.0",
  1737. "System.Runtime": "4.3.0",
  1738. "System.Runtime.Extensions": "4.3.0",
  1739. "System.Threading": "4.3.0"
  1740. },
  1741. "compile": {
  1742. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1743. "related": ".xml"
  1744. }
  1745. },
  1746. "runtime": {
  1747. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1748. }
  1749. },
  1750. "System.Globalization/4.3.0": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "Microsoft.NETCore.Platforms": "1.1.0",
  1754. "Microsoft.NETCore.Targets": "1.1.0",
  1755. "System.Runtime": "4.3.0"
  1756. },
  1757. "compile": {
  1758. "ref/netstandard1.3/System.Globalization.dll": {
  1759. "related": ".xml"
  1760. }
  1761. }
  1762. },
  1763. "System.Globalization.Calendars/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0",
  1768. "System.Globalization": "4.3.0",
  1769. "System.Runtime": "4.3.0"
  1770. },
  1771. "compile": {
  1772. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1773. "related": ".xml"
  1774. }
  1775. }
  1776. },
  1777. "System.Globalization.Extensions/4.3.0": {
  1778. "type": "package",
  1779. "dependencies": {
  1780. "Microsoft.NETCore.Platforms": "1.1.0",
  1781. "System.Globalization": "4.3.0",
  1782. "System.Resources.ResourceManager": "4.3.0",
  1783. "System.Runtime": "4.3.0",
  1784. "System.Runtime.Extensions": "4.3.0",
  1785. "System.Runtime.InteropServices": "4.3.0"
  1786. },
  1787. "compile": {
  1788. "ref/netstandard1.3/_._": {
  1789. "related": ".xml"
  1790. }
  1791. },
  1792. "runtimeTargets": {
  1793. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1794. "assetType": "runtime",
  1795. "rid": "unix"
  1796. },
  1797. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1798. "assetType": "runtime",
  1799. "rid": "win"
  1800. }
  1801. }
  1802. },
  1803. "System.IO/4.3.0": {
  1804. "type": "package",
  1805. "dependencies": {
  1806. "Microsoft.NETCore.Platforms": "1.1.0",
  1807. "Microsoft.NETCore.Targets": "1.1.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Text.Encoding": "4.3.0",
  1810. "System.Threading.Tasks": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.5/System.IO.dll": {
  1814. "related": ".xml"
  1815. }
  1816. }
  1817. },
  1818. "System.IO.Compression/4.3.0": {
  1819. "type": "package",
  1820. "dependencies": {
  1821. "Microsoft.NETCore.Platforms": "1.1.0",
  1822. "System.Buffers": "4.3.0",
  1823. "System.Collections": "4.3.0",
  1824. "System.Diagnostics.Debug": "4.3.0",
  1825. "System.IO": "4.3.0",
  1826. "System.Resources.ResourceManager": "4.3.0",
  1827. "System.Runtime": "4.3.0",
  1828. "System.Runtime.Extensions": "4.3.0",
  1829. "System.Runtime.Handles": "4.3.0",
  1830. "System.Runtime.InteropServices": "4.3.0",
  1831. "System.Text.Encoding": "4.3.0",
  1832. "System.Threading": "4.3.0",
  1833. "System.Threading.Tasks": "4.3.0",
  1834. "runtime.native.System": "4.3.0",
  1835. "runtime.native.System.IO.Compression": "4.3.0"
  1836. },
  1837. "compile": {
  1838. "ref/netstandard1.3/System.IO.Compression.dll": {
  1839. "related": ".xml"
  1840. }
  1841. },
  1842. "runtimeTargets": {
  1843. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1844. "assetType": "runtime",
  1845. "rid": "unix"
  1846. },
  1847. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1848. "assetType": "runtime",
  1849. "rid": "win"
  1850. }
  1851. }
  1852. },
  1853. "System.IO.Compression.ZipFile/4.3.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "System.Buffers": "4.3.0",
  1857. "System.IO": "4.3.0",
  1858. "System.IO.Compression": "4.3.0",
  1859. "System.IO.FileSystem": "4.3.0",
  1860. "System.IO.FileSystem.Primitives": "4.3.0",
  1861. "System.Resources.ResourceManager": "4.3.0",
  1862. "System.Runtime": "4.3.0",
  1863. "System.Runtime.Extensions": "4.3.0",
  1864. "System.Text.Encoding": "4.3.0"
  1865. },
  1866. "compile": {
  1867. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1868. "related": ".xml"
  1869. }
  1870. },
  1871. "runtime": {
  1872. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1873. }
  1874. },
  1875. "System.IO.FileSystem/4.3.0": {
  1876. "type": "package",
  1877. "dependencies": {
  1878. "Microsoft.NETCore.Platforms": "1.1.0",
  1879. "Microsoft.NETCore.Targets": "1.1.0",
  1880. "System.IO": "4.3.0",
  1881. "System.IO.FileSystem.Primitives": "4.3.0",
  1882. "System.Runtime": "4.3.0",
  1883. "System.Runtime.Handles": "4.3.0",
  1884. "System.Text.Encoding": "4.3.0",
  1885. "System.Threading.Tasks": "4.3.0"
  1886. },
  1887. "compile": {
  1888. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1889. "related": ".xml"
  1890. }
  1891. }
  1892. },
  1893. "System.IO.FileSystem.Primitives/4.3.0": {
  1894. "type": "package",
  1895. "dependencies": {
  1896. "System.Runtime": "4.3.0"
  1897. },
  1898. "compile": {
  1899. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1900. "related": ".xml"
  1901. }
  1902. },
  1903. "runtime": {
  1904. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1905. }
  1906. },
  1907. "System.IO.Pipelines/5.0.0": {
  1908. "type": "package",
  1909. "compile": {
  1910. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1911. "related": ".xml"
  1912. }
  1913. },
  1914. "runtime": {
  1915. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1916. "related": ".xml"
  1917. }
  1918. }
  1919. },
  1920. "System.Linq/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "System.Collections": "4.3.0",
  1924. "System.Diagnostics.Debug": "4.3.0",
  1925. "System.Resources.ResourceManager": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Runtime.Extensions": "4.3.0"
  1928. },
  1929. "compile": {
  1930. "ref/netstandard1.6/System.Linq.dll": {
  1931. "related": ".xml"
  1932. }
  1933. },
  1934. "runtime": {
  1935. "lib/netstandard1.6/System.Linq.dll": {}
  1936. }
  1937. },
  1938. "System.Linq.Expressions/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.Collections": "4.3.0",
  1942. "System.Diagnostics.Debug": "4.3.0",
  1943. "System.Globalization": "4.3.0",
  1944. "System.IO": "4.3.0",
  1945. "System.Linq": "4.3.0",
  1946. "System.ObjectModel": "4.3.0",
  1947. "System.Reflection": "4.3.0",
  1948. "System.Reflection.Emit": "4.3.0",
  1949. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1950. "System.Reflection.Emit.Lightweight": "4.3.0",
  1951. "System.Reflection.Extensions": "4.3.0",
  1952. "System.Reflection.Primitives": "4.3.0",
  1953. "System.Reflection.TypeExtensions": "4.3.0",
  1954. "System.Resources.ResourceManager": "4.3.0",
  1955. "System.Runtime": "4.3.0",
  1956. "System.Runtime.Extensions": "4.3.0",
  1957. "System.Threading": "4.3.0"
  1958. },
  1959. "compile": {
  1960. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1961. "related": ".xml"
  1962. }
  1963. },
  1964. "runtime": {
  1965. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1966. }
  1967. },
  1968. "System.Memory/4.5.5": {
  1969. "type": "package",
  1970. "compile": {
  1971. "ref/netcoreapp2.1/_._": {}
  1972. },
  1973. "runtime": {
  1974. "lib/netcoreapp2.1/_._": {}
  1975. }
  1976. },
  1977. "System.Net.Http/4.3.0": {
  1978. "type": "package",
  1979. "dependencies": {
  1980. "Microsoft.NETCore.Platforms": "1.1.0",
  1981. "System.Collections": "4.3.0",
  1982. "System.Diagnostics.Debug": "4.3.0",
  1983. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1984. "System.Diagnostics.Tracing": "4.3.0",
  1985. "System.Globalization": "4.3.0",
  1986. "System.Globalization.Extensions": "4.3.0",
  1987. "System.IO": "4.3.0",
  1988. "System.IO.FileSystem": "4.3.0",
  1989. "System.Net.Primitives": "4.3.0",
  1990. "System.Resources.ResourceManager": "4.3.0",
  1991. "System.Runtime": "4.3.0",
  1992. "System.Runtime.Extensions": "4.3.0",
  1993. "System.Runtime.Handles": "4.3.0",
  1994. "System.Runtime.InteropServices": "4.3.0",
  1995. "System.Security.Cryptography.Algorithms": "4.3.0",
  1996. "System.Security.Cryptography.Encoding": "4.3.0",
  1997. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1998. "System.Security.Cryptography.Primitives": "4.3.0",
  1999. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2000. "System.Text.Encoding": "4.3.0",
  2001. "System.Threading": "4.3.0",
  2002. "System.Threading.Tasks": "4.3.0",
  2003. "runtime.native.System": "4.3.0",
  2004. "runtime.native.System.Net.Http": "4.3.0",
  2005. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2006. },
  2007. "compile": {
  2008. "ref/netstandard1.3/System.Net.Http.dll": {
  2009. "related": ".xml"
  2010. }
  2011. },
  2012. "runtimeTargets": {
  2013. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2014. "assetType": "runtime",
  2015. "rid": "unix"
  2016. },
  2017. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2018. "assetType": "runtime",
  2019. "rid": "win"
  2020. }
  2021. }
  2022. },
  2023. "System.Net.NameResolution/4.3.0": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "Microsoft.NETCore.Platforms": "1.1.0",
  2027. "System.Collections": "4.3.0",
  2028. "System.Diagnostics.Tracing": "4.3.0",
  2029. "System.Globalization": "4.3.0",
  2030. "System.Net.Primitives": "4.3.0",
  2031. "System.Resources.ResourceManager": "4.3.0",
  2032. "System.Runtime": "4.3.0",
  2033. "System.Runtime.Extensions": "4.3.0",
  2034. "System.Runtime.Handles": "4.3.0",
  2035. "System.Runtime.InteropServices": "4.3.0",
  2036. "System.Security.Principal.Windows": "4.3.0",
  2037. "System.Threading": "4.3.0",
  2038. "System.Threading.Tasks": "4.3.0",
  2039. "runtime.native.System": "4.3.0"
  2040. },
  2041. "compile": {
  2042. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2043. "related": ".xml"
  2044. }
  2045. },
  2046. "runtimeTargets": {
  2047. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "unix"
  2050. },
  2051. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2052. "assetType": "runtime",
  2053. "rid": "win"
  2054. }
  2055. }
  2056. },
  2057. "System.Net.Primitives/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "Microsoft.NETCore.Targets": "1.1.0",
  2062. "System.Runtime": "4.3.0",
  2063. "System.Runtime.Handles": "4.3.0"
  2064. },
  2065. "compile": {
  2066. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2067. "related": ".xml"
  2068. }
  2069. }
  2070. },
  2071. "System.Net.Security/4.3.0": {
  2072. "type": "package",
  2073. "dependencies": {
  2074. "Microsoft.NETCore.Platforms": "1.1.0",
  2075. "Microsoft.Win32.Primitives": "4.3.0",
  2076. "System.Collections": "4.3.0",
  2077. "System.Collections.Concurrent": "4.3.0",
  2078. "System.Diagnostics.Tracing": "4.3.0",
  2079. "System.Globalization": "4.3.0",
  2080. "System.Globalization.Extensions": "4.3.0",
  2081. "System.IO": "4.3.0",
  2082. "System.Net.Primitives": "4.3.0",
  2083. "System.Resources.ResourceManager": "4.3.0",
  2084. "System.Runtime": "4.3.0",
  2085. "System.Runtime.Extensions": "4.3.0",
  2086. "System.Runtime.Handles": "4.3.0",
  2087. "System.Runtime.InteropServices": "4.3.0",
  2088. "System.Security.Claims": "4.3.0",
  2089. "System.Security.Cryptography.Algorithms": "4.3.0",
  2090. "System.Security.Cryptography.Encoding": "4.3.0",
  2091. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2092. "System.Security.Cryptography.Primitives": "4.3.0",
  2093. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2094. "System.Security.Principal": "4.3.0",
  2095. "System.Text.Encoding": "4.3.0",
  2096. "System.Threading": "4.3.0",
  2097. "System.Threading.Tasks": "4.3.0",
  2098. "System.Threading.ThreadPool": "4.3.0",
  2099. "runtime.native.System": "4.3.0",
  2100. "runtime.native.System.Net.Security": "4.3.0",
  2101. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2102. },
  2103. "compile": {
  2104. "ref/netstandard1.3/System.Net.Security.dll": {
  2105. "related": ".xml"
  2106. }
  2107. },
  2108. "runtimeTargets": {
  2109. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2110. "assetType": "runtime",
  2111. "rid": "unix"
  2112. },
  2113. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2114. "assetType": "runtime",
  2115. "rid": "win"
  2116. }
  2117. }
  2118. },
  2119. "System.Net.Sockets/4.3.0": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "Microsoft.NETCore.Platforms": "1.1.0",
  2123. "Microsoft.NETCore.Targets": "1.1.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Net.Primitives": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Threading.Tasks": "4.3.0"
  2128. },
  2129. "compile": {
  2130. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2131. "related": ".xml"
  2132. }
  2133. }
  2134. },
  2135. "System.ObjectModel/4.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "System.Collections": "4.3.0",
  2139. "System.Diagnostics.Debug": "4.3.0",
  2140. "System.Resources.ResourceManager": "4.3.0",
  2141. "System.Runtime": "4.3.0",
  2142. "System.Threading": "4.3.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.3/System.ObjectModel.dll": {
  2146. "related": ".xml"
  2147. }
  2148. },
  2149. "runtime": {
  2150. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2151. }
  2152. },
  2153. "System.Reflection/4.3.0": {
  2154. "type": "package",
  2155. "dependencies": {
  2156. "Microsoft.NETCore.Platforms": "1.1.0",
  2157. "Microsoft.NETCore.Targets": "1.1.0",
  2158. "System.IO": "4.3.0",
  2159. "System.Reflection.Primitives": "4.3.0",
  2160. "System.Runtime": "4.3.0"
  2161. },
  2162. "compile": {
  2163. "ref/netstandard1.5/System.Reflection.dll": {
  2164. "related": ".xml"
  2165. }
  2166. }
  2167. },
  2168. "System.Reflection.Emit/4.7.0": {
  2169. "type": "package",
  2170. "compile": {
  2171. "ref/netcoreapp2.0/_._": {}
  2172. },
  2173. "runtime": {
  2174. "lib/netcoreapp2.0/_._": {}
  2175. }
  2176. },
  2177. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "System.Reflection": "4.3.0",
  2181. "System.Reflection.Primitives": "4.3.0",
  2182. "System.Runtime": "4.3.0"
  2183. },
  2184. "compile": {
  2185. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2186. "related": ".xml"
  2187. }
  2188. },
  2189. "runtime": {
  2190. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2191. }
  2192. },
  2193. "System.Reflection.Emit.Lightweight/4.3.0": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "System.Reflection": "4.3.0",
  2197. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2198. "System.Reflection.Primitives": "4.3.0",
  2199. "System.Runtime": "4.3.0"
  2200. },
  2201. "compile": {
  2202. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2203. "related": ".xml"
  2204. }
  2205. },
  2206. "runtime": {
  2207. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2208. }
  2209. },
  2210. "System.Reflection.Extensions/4.3.0": {
  2211. "type": "package",
  2212. "dependencies": {
  2213. "Microsoft.NETCore.Platforms": "1.1.0",
  2214. "Microsoft.NETCore.Targets": "1.1.0",
  2215. "System.Reflection": "4.3.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Reflection.Primitives/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0",
  2229. "System.Runtime": "4.3.0"
  2230. },
  2231. "compile": {
  2232. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2233. "related": ".xml"
  2234. }
  2235. }
  2236. },
  2237. "System.Reflection.TypeExtensions/4.3.0": {
  2238. "type": "package",
  2239. "dependencies": {
  2240. "System.Reflection": "4.3.0",
  2241. "System.Runtime": "4.3.0"
  2242. },
  2243. "compile": {
  2244. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "runtime": {
  2249. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2250. }
  2251. },
  2252. "System.Resources.ResourceManager/4.3.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "Microsoft.NETCore.Platforms": "1.1.0",
  2256. "Microsoft.NETCore.Targets": "1.1.0",
  2257. "System.Globalization": "4.3.0",
  2258. "System.Reflection": "4.3.0",
  2259. "System.Runtime": "4.3.0"
  2260. },
  2261. "compile": {
  2262. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2263. "related": ".xml"
  2264. }
  2265. }
  2266. },
  2267. "System.Runtime/4.3.0": {
  2268. "type": "package",
  2269. "dependencies": {
  2270. "Microsoft.NETCore.Platforms": "1.1.0",
  2271. "Microsoft.NETCore.Targets": "1.1.0"
  2272. },
  2273. "compile": {
  2274. "ref/netstandard1.5/System.Runtime.dll": {
  2275. "related": ".xml"
  2276. }
  2277. }
  2278. },
  2279. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2280. "type": "package",
  2281. "compile": {
  2282. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2283. "related": ".xml"
  2284. }
  2285. },
  2286. "runtime": {
  2287. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2288. "related": ".xml"
  2289. }
  2290. }
  2291. },
  2292. "System.Runtime.Extensions/4.3.0": {
  2293. "type": "package",
  2294. "dependencies": {
  2295. "Microsoft.NETCore.Platforms": "1.1.0",
  2296. "Microsoft.NETCore.Targets": "1.1.0",
  2297. "System.Runtime": "4.3.0"
  2298. },
  2299. "compile": {
  2300. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2301. "related": ".xml"
  2302. }
  2303. }
  2304. },
  2305. "System.Runtime.Handles/4.3.0": {
  2306. "type": "package",
  2307. "dependencies": {
  2308. "Microsoft.NETCore.Platforms": "1.1.0",
  2309. "Microsoft.NETCore.Targets": "1.1.0",
  2310. "System.Runtime": "4.3.0"
  2311. },
  2312. "compile": {
  2313. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2314. "related": ".xml"
  2315. }
  2316. }
  2317. },
  2318. "System.Runtime.InteropServices/4.3.0": {
  2319. "type": "package",
  2320. "dependencies": {
  2321. "Microsoft.NETCore.Platforms": "1.1.0",
  2322. "Microsoft.NETCore.Targets": "1.1.0",
  2323. "System.Reflection": "4.3.0",
  2324. "System.Reflection.Primitives": "4.3.0",
  2325. "System.Runtime": "4.3.0",
  2326. "System.Runtime.Handles": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2330. }
  2331. },
  2332. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2333. "type": "package",
  2334. "dependencies": {
  2335. "System.Reflection": "4.3.0",
  2336. "System.Reflection.Extensions": "4.3.0",
  2337. "System.Resources.ResourceManager": "4.3.0",
  2338. "System.Runtime": "4.3.0",
  2339. "System.Runtime.InteropServices": "4.3.0",
  2340. "System.Threading": "4.3.0",
  2341. "runtime.native.System": "4.3.0"
  2342. },
  2343. "compile": {
  2344. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2348. },
  2349. "runtimeTargets": {
  2350. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "unix"
  2353. },
  2354. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2355. "assetType": "runtime",
  2356. "rid": "win"
  2357. }
  2358. }
  2359. },
  2360. "System.Runtime.Numerics/4.3.0": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Globalization": "4.3.0",
  2364. "System.Resources.ResourceManager": "4.3.0",
  2365. "System.Runtime": "4.3.0",
  2366. "System.Runtime.Extensions": "4.3.0"
  2367. },
  2368. "compile": {
  2369. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2370. "related": ".xml"
  2371. }
  2372. },
  2373. "runtime": {
  2374. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2375. }
  2376. },
  2377. "System.Security.AccessControl/4.7.0": {
  2378. "type": "package",
  2379. "dependencies": {
  2380. "Microsoft.NETCore.Platforms": "3.1.0",
  2381. "System.Security.Principal.Windows": "4.7.0"
  2382. },
  2383. "compile": {
  2384. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2385. "related": ".xml"
  2386. }
  2387. },
  2388. "runtime": {
  2389. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2390. "related": ".xml"
  2391. }
  2392. },
  2393. "runtimeTargets": {
  2394. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2395. "assetType": "runtime",
  2396. "rid": "win"
  2397. }
  2398. }
  2399. },
  2400. "System.Security.Claims/4.3.0": {
  2401. "type": "package",
  2402. "dependencies": {
  2403. "System.Collections": "4.3.0",
  2404. "System.Globalization": "4.3.0",
  2405. "System.IO": "4.3.0",
  2406. "System.Resources.ResourceManager": "4.3.0",
  2407. "System.Runtime": "4.3.0",
  2408. "System.Runtime.Extensions": "4.3.0",
  2409. "System.Security.Principal": "4.3.0"
  2410. },
  2411. "compile": {
  2412. "ref/netstandard1.3/_._": {
  2413. "related": ".xml"
  2414. }
  2415. },
  2416. "runtime": {
  2417. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2418. }
  2419. },
  2420. "System.Security.Cryptography.Algorithms/4.3.0": {
  2421. "type": "package",
  2422. "dependencies": {
  2423. "Microsoft.NETCore.Platforms": "1.1.0",
  2424. "System.Collections": "4.3.0",
  2425. "System.IO": "4.3.0",
  2426. "System.Resources.ResourceManager": "4.3.0",
  2427. "System.Runtime": "4.3.0",
  2428. "System.Runtime.Extensions": "4.3.0",
  2429. "System.Runtime.Handles": "4.3.0",
  2430. "System.Runtime.InteropServices": "4.3.0",
  2431. "System.Runtime.Numerics": "4.3.0",
  2432. "System.Security.Cryptography.Encoding": "4.3.0",
  2433. "System.Security.Cryptography.Primitives": "4.3.0",
  2434. "System.Text.Encoding": "4.3.0",
  2435. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2436. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2437. },
  2438. "compile": {
  2439. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2440. },
  2441. "runtimeTargets": {
  2442. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2443. "assetType": "runtime",
  2444. "rid": "osx"
  2445. },
  2446. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2447. "assetType": "runtime",
  2448. "rid": "unix"
  2449. },
  2450. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2451. "assetType": "runtime",
  2452. "rid": "win"
  2453. }
  2454. }
  2455. },
  2456. "System.Security.Cryptography.Cng/4.3.0": {
  2457. "type": "package",
  2458. "dependencies": {
  2459. "Microsoft.NETCore.Platforms": "1.1.0",
  2460. "System.IO": "4.3.0",
  2461. "System.Resources.ResourceManager": "4.3.0",
  2462. "System.Runtime": "4.3.0",
  2463. "System.Runtime.Extensions": "4.3.0",
  2464. "System.Runtime.Handles": "4.3.0",
  2465. "System.Runtime.InteropServices": "4.3.0",
  2466. "System.Security.Cryptography.Algorithms": "4.3.0",
  2467. "System.Security.Cryptography.Encoding": "4.3.0",
  2468. "System.Security.Cryptography.Primitives": "4.3.0",
  2469. "System.Text.Encoding": "4.3.0"
  2470. },
  2471. "compile": {
  2472. "ref/netstandard1.6/_._": {}
  2473. },
  2474. "runtimeTargets": {
  2475. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2476. "assetType": "runtime",
  2477. "rid": "unix"
  2478. },
  2479. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2480. "assetType": "runtime",
  2481. "rid": "win"
  2482. }
  2483. }
  2484. },
  2485. "System.Security.Cryptography.Csp/4.3.0": {
  2486. "type": "package",
  2487. "dependencies": {
  2488. "Microsoft.NETCore.Platforms": "1.1.0",
  2489. "System.IO": "4.3.0",
  2490. "System.Reflection": "4.3.0",
  2491. "System.Resources.ResourceManager": "4.3.0",
  2492. "System.Runtime": "4.3.0",
  2493. "System.Runtime.Extensions": "4.3.0",
  2494. "System.Runtime.Handles": "4.3.0",
  2495. "System.Runtime.InteropServices": "4.3.0",
  2496. "System.Security.Cryptography.Algorithms": "4.3.0",
  2497. "System.Security.Cryptography.Encoding": "4.3.0",
  2498. "System.Security.Cryptography.Primitives": "4.3.0",
  2499. "System.Text.Encoding": "4.3.0",
  2500. "System.Threading": "4.3.0"
  2501. },
  2502. "compile": {
  2503. "ref/netstandard1.3/_._": {}
  2504. },
  2505. "runtimeTargets": {
  2506. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "unix"
  2509. },
  2510. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2511. "assetType": "runtime",
  2512. "rid": "win"
  2513. }
  2514. }
  2515. },
  2516. "System.Security.Cryptography.Encoding/4.3.0": {
  2517. "type": "package",
  2518. "dependencies": {
  2519. "Microsoft.NETCore.Platforms": "1.1.0",
  2520. "System.Collections": "4.3.0",
  2521. "System.Collections.Concurrent": "4.3.0",
  2522. "System.Linq": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0",
  2525. "System.Runtime.Extensions": "4.3.0",
  2526. "System.Runtime.Handles": "4.3.0",
  2527. "System.Runtime.InteropServices": "4.3.0",
  2528. "System.Security.Cryptography.Primitives": "4.3.0",
  2529. "System.Text.Encoding": "4.3.0",
  2530. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2531. },
  2532. "compile": {
  2533. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2534. "related": ".xml"
  2535. }
  2536. },
  2537. "runtimeTargets": {
  2538. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2539. "assetType": "runtime",
  2540. "rid": "unix"
  2541. },
  2542. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2543. "assetType": "runtime",
  2544. "rid": "win"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Collections": "4.3.0",
  2552. "System.IO": "4.3.0",
  2553. "System.Resources.ResourceManager": "4.3.0",
  2554. "System.Runtime": "4.3.0",
  2555. "System.Runtime.Extensions": "4.3.0",
  2556. "System.Runtime.Handles": "4.3.0",
  2557. "System.Runtime.InteropServices": "4.3.0",
  2558. "System.Runtime.Numerics": "4.3.0",
  2559. "System.Security.Cryptography.Algorithms": "4.3.0",
  2560. "System.Security.Cryptography.Encoding": "4.3.0",
  2561. "System.Security.Cryptography.Primitives": "4.3.0",
  2562. "System.Text.Encoding": "4.3.0",
  2563. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2564. },
  2565. "compile": {
  2566. "ref/netstandard1.6/_._": {}
  2567. },
  2568. "runtime": {
  2569. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2570. },
  2571. "runtimeTargets": {
  2572. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2573. "assetType": "runtime",
  2574. "rid": "unix"
  2575. }
  2576. }
  2577. },
  2578. "System.Security.Cryptography.Primitives/4.3.0": {
  2579. "type": "package",
  2580. "dependencies": {
  2581. "System.Diagnostics.Debug": "4.3.0",
  2582. "System.Globalization": "4.3.0",
  2583. "System.IO": "4.3.0",
  2584. "System.Resources.ResourceManager": "4.3.0",
  2585. "System.Runtime": "4.3.0",
  2586. "System.Threading": "4.3.0",
  2587. "System.Threading.Tasks": "4.3.0"
  2588. },
  2589. "compile": {
  2590. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2591. },
  2592. "runtime": {
  2593. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2594. }
  2595. },
  2596. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2597. "type": "package",
  2598. "compile": {
  2599. "ref/netstandard2.0/_._": {
  2600. "related": ".xml"
  2601. }
  2602. },
  2603. "runtime": {
  2604. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2605. "related": ".xml"
  2606. }
  2607. },
  2608. "runtimeTargets": {
  2609. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2610. "assetType": "runtime",
  2611. "rid": "win"
  2612. }
  2613. }
  2614. },
  2615. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2616. "type": "package",
  2617. "dependencies": {
  2618. "Microsoft.NETCore.Platforms": "1.1.0",
  2619. "System.Collections": "4.3.0",
  2620. "System.Diagnostics.Debug": "4.3.0",
  2621. "System.Globalization": "4.3.0",
  2622. "System.Globalization.Calendars": "4.3.0",
  2623. "System.IO": "4.3.0",
  2624. "System.IO.FileSystem": "4.3.0",
  2625. "System.IO.FileSystem.Primitives": "4.3.0",
  2626. "System.Resources.ResourceManager": "4.3.0",
  2627. "System.Runtime": "4.3.0",
  2628. "System.Runtime.Extensions": "4.3.0",
  2629. "System.Runtime.Handles": "4.3.0",
  2630. "System.Runtime.InteropServices": "4.3.0",
  2631. "System.Runtime.Numerics": "4.3.0",
  2632. "System.Security.Cryptography.Algorithms": "4.3.0",
  2633. "System.Security.Cryptography.Cng": "4.3.0",
  2634. "System.Security.Cryptography.Csp": "4.3.0",
  2635. "System.Security.Cryptography.Encoding": "4.3.0",
  2636. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2637. "System.Security.Cryptography.Primitives": "4.3.0",
  2638. "System.Text.Encoding": "4.3.0",
  2639. "System.Threading": "4.3.0",
  2640. "runtime.native.System": "4.3.0",
  2641. "runtime.native.System.Net.Http": "4.3.0",
  2642. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2643. },
  2644. "compile": {
  2645. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2646. "related": ".xml"
  2647. }
  2648. },
  2649. "runtimeTargets": {
  2650. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "unix"
  2653. },
  2654. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2655. "assetType": "runtime",
  2656. "rid": "win"
  2657. }
  2658. }
  2659. },
  2660. "System.Security.Permissions/4.7.0": {
  2661. "type": "package",
  2662. "dependencies": {
  2663. "System.Security.AccessControl": "4.7.0",
  2664. "System.Windows.Extensions": "4.7.0"
  2665. },
  2666. "compile": {
  2667. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2668. "related": ".xml"
  2669. }
  2670. },
  2671. "runtime": {
  2672. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2673. "related": ".xml"
  2674. }
  2675. }
  2676. },
  2677. "System.Security.Principal/4.3.0": {
  2678. "type": "package",
  2679. "dependencies": {
  2680. "System.Runtime": "4.3.0"
  2681. },
  2682. "compile": {
  2683. "ref/netstandard1.0/System.Security.Principal.dll": {
  2684. "related": ".xml"
  2685. }
  2686. },
  2687. "runtime": {
  2688. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2689. }
  2690. },
  2691. "System.Security.Principal.Windows/4.7.0": {
  2692. "type": "package",
  2693. "compile": {
  2694. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2695. "related": ".xml"
  2696. }
  2697. },
  2698. "runtime": {
  2699. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2700. "related": ".xml"
  2701. }
  2702. },
  2703. "runtimeTargets": {
  2704. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2705. "assetType": "runtime",
  2706. "rid": "unix"
  2707. },
  2708. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2709. "assetType": "runtime",
  2710. "rid": "win"
  2711. }
  2712. }
  2713. },
  2714. "System.Text.Encoding/4.3.0": {
  2715. "type": "package",
  2716. "dependencies": {
  2717. "Microsoft.NETCore.Platforms": "1.1.0",
  2718. "Microsoft.NETCore.Targets": "1.1.0",
  2719. "System.Runtime": "4.3.0"
  2720. },
  2721. "compile": {
  2722. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2723. "related": ".xml"
  2724. }
  2725. }
  2726. },
  2727. "System.Text.Encoding.CodePages/5.0.0": {
  2728. "type": "package",
  2729. "dependencies": {
  2730. "Microsoft.NETCore.Platforms": "5.0.0"
  2731. },
  2732. "compile": {
  2733. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2734. "related": ".xml"
  2735. }
  2736. },
  2737. "runtime": {
  2738. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2739. "related": ".xml"
  2740. }
  2741. },
  2742. "runtimeTargets": {
  2743. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2744. "assetType": "runtime",
  2745. "rid": "win"
  2746. }
  2747. }
  2748. },
  2749. "System.Text.Encoding.Extensions/4.3.0": {
  2750. "type": "package",
  2751. "dependencies": {
  2752. "Microsoft.NETCore.Platforms": "1.1.0",
  2753. "Microsoft.NETCore.Targets": "1.1.0",
  2754. "System.Runtime": "4.3.0",
  2755. "System.Text.Encoding": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2759. "related": ".xml"
  2760. }
  2761. }
  2762. },
  2763. "System.Text.Encodings.Web/4.5.0": {
  2764. "type": "package",
  2765. "compile": {
  2766. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2767. "related": ".xml"
  2768. }
  2769. },
  2770. "runtime": {
  2771. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2772. "related": ".xml"
  2773. }
  2774. }
  2775. },
  2776. "System.Text.RegularExpressions/4.3.0": {
  2777. "type": "package",
  2778. "dependencies": {
  2779. "System.Runtime": "4.3.0"
  2780. },
  2781. "compile": {
  2782. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2783. },
  2784. "runtime": {
  2785. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2786. }
  2787. },
  2788. "System.Threading/4.3.0": {
  2789. "type": "package",
  2790. "dependencies": {
  2791. "System.Runtime": "4.3.0",
  2792. "System.Threading.Tasks": "4.3.0"
  2793. },
  2794. "compile": {
  2795. "ref/netstandard1.3/System.Threading.dll": {
  2796. "related": ".xml"
  2797. }
  2798. },
  2799. "runtime": {
  2800. "lib/netstandard1.3/System.Threading.dll": {}
  2801. }
  2802. },
  2803. "System.Threading.Channels/7.0.0": {
  2804. "type": "package",
  2805. "compile": {
  2806. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2807. "related": ".xml"
  2808. }
  2809. },
  2810. "runtime": {
  2811. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "build": {
  2816. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2817. }
  2818. },
  2819. "System.Threading.Tasks/4.3.0": {
  2820. "type": "package",
  2821. "dependencies": {
  2822. "Microsoft.NETCore.Platforms": "1.1.0",
  2823. "Microsoft.NETCore.Targets": "1.1.0",
  2824. "System.Runtime": "4.3.0"
  2825. },
  2826. "compile": {
  2827. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2828. "related": ".xml"
  2829. }
  2830. }
  2831. },
  2832. "System.Threading.Tasks.Extensions/4.3.0": {
  2833. "type": "package",
  2834. "dependencies": {
  2835. "System.Collections": "4.3.0",
  2836. "System.Runtime": "4.3.0",
  2837. "System.Threading.Tasks": "4.3.0"
  2838. },
  2839. "compile": {
  2840. "lib/netstandard1.0/_._": {
  2841. "related": ".xml"
  2842. }
  2843. },
  2844. "runtime": {
  2845. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2846. "related": ".xml"
  2847. }
  2848. }
  2849. },
  2850. "System.Threading.Thread/4.3.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "System.Runtime": "4.3.0"
  2854. },
  2855. "compile": {
  2856. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2857. "related": ".xml"
  2858. }
  2859. },
  2860. "runtime": {
  2861. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2862. }
  2863. },
  2864. "System.Threading.ThreadPool/4.3.0": {
  2865. "type": "package",
  2866. "dependencies": {
  2867. "System.Runtime": "4.3.0",
  2868. "System.Runtime.Handles": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2872. "related": ".xml"
  2873. }
  2874. },
  2875. "runtime": {
  2876. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2877. }
  2878. },
  2879. "System.Threading.Timer/4.3.0": {
  2880. "type": "package",
  2881. "dependencies": {
  2882. "Microsoft.NETCore.Platforms": "1.1.0",
  2883. "Microsoft.NETCore.Targets": "1.1.0",
  2884. "System.Runtime": "4.3.0"
  2885. },
  2886. "compile": {
  2887. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2888. "related": ".xml"
  2889. }
  2890. }
  2891. },
  2892. "System.Windows.Extensions/4.7.0": {
  2893. "type": "package",
  2894. "dependencies": {
  2895. "System.Drawing.Common": "4.7.0"
  2896. },
  2897. "compile": {
  2898. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2899. "related": ".xml"
  2900. }
  2901. },
  2902. "runtime": {
  2903. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2904. "related": ".xml"
  2905. }
  2906. },
  2907. "runtimeTargets": {
  2908. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2909. "assetType": "runtime",
  2910. "rid": "win"
  2911. }
  2912. }
  2913. },
  2914. "System.Xml.ReaderWriter/4.3.0": {
  2915. "type": "package",
  2916. "dependencies": {
  2917. "System.Collections": "4.3.0",
  2918. "System.Diagnostics.Debug": "4.3.0",
  2919. "System.Globalization": "4.3.0",
  2920. "System.IO": "4.3.0",
  2921. "System.IO.FileSystem": "4.3.0",
  2922. "System.IO.FileSystem.Primitives": "4.3.0",
  2923. "System.Resources.ResourceManager": "4.3.0",
  2924. "System.Runtime": "4.3.0",
  2925. "System.Runtime.Extensions": "4.3.0",
  2926. "System.Runtime.InteropServices": "4.3.0",
  2927. "System.Text.Encoding": "4.3.0",
  2928. "System.Text.Encoding.Extensions": "4.3.0",
  2929. "System.Text.RegularExpressions": "4.3.0",
  2930. "System.Threading.Tasks": "4.3.0",
  2931. "System.Threading.Tasks.Extensions": "4.3.0"
  2932. },
  2933. "compile": {
  2934. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2935. "related": ".xml"
  2936. }
  2937. },
  2938. "runtime": {
  2939. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2940. }
  2941. },
  2942. "System.Xml.XDocument/4.3.0": {
  2943. "type": "package",
  2944. "dependencies": {
  2945. "System.Collections": "4.3.0",
  2946. "System.Diagnostics.Debug": "4.3.0",
  2947. "System.Diagnostics.Tools": "4.3.0",
  2948. "System.Globalization": "4.3.0",
  2949. "System.IO": "4.3.0",
  2950. "System.Reflection": "4.3.0",
  2951. "System.Resources.ResourceManager": "4.3.0",
  2952. "System.Runtime": "4.3.0",
  2953. "System.Runtime.Extensions": "4.3.0",
  2954. "System.Text.Encoding": "4.3.0",
  2955. "System.Threading": "4.3.0",
  2956. "System.Xml.ReaderWriter": "4.3.0"
  2957. },
  2958. "compile": {
  2959. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2960. "related": ".xml"
  2961. }
  2962. },
  2963. "runtime": {
  2964. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2965. }
  2966. },
  2967. "System.Xml.XmlDocument/4.3.0": {
  2968. "type": "package",
  2969. "dependencies": {
  2970. "System.Collections": "4.3.0",
  2971. "System.Diagnostics.Debug": "4.3.0",
  2972. "System.Globalization": "4.3.0",
  2973. "System.IO": "4.3.0",
  2974. "System.Resources.ResourceManager": "4.3.0",
  2975. "System.Runtime": "4.3.0",
  2976. "System.Runtime.Extensions": "4.3.0",
  2977. "System.Text.Encoding": "4.3.0",
  2978. "System.Threading": "4.3.0",
  2979. "System.Xml.ReaderWriter": "4.3.0"
  2980. },
  2981. "compile": {
  2982. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2983. "related": ".xml"
  2984. }
  2985. },
  2986. "runtime": {
  2987. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2988. }
  2989. },
  2990. "ToolGood.Words/3.1.0.2": {
  2991. "type": "package",
  2992. "compile": {
  2993. "lib/netstandard2.1/ToolGood.Words.dll": {
  2994. "related": ".xml"
  2995. }
  2996. },
  2997. "runtime": {
  2998. "lib/netstandard2.1/ToolGood.Words.dll": {
  2999. "related": ".xml"
  3000. }
  3001. }
  3002. },
  3003. "Ulid/1.4.1": {
  3004. "type": "package",
  3005. "dependencies": {
  3006. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  3007. },
  3008. "compile": {
  3009. "lib/netstandard2.1/Ulid.dll": {
  3010. "related": ".xml"
  3011. }
  3012. },
  3013. "runtime": {
  3014. "lib/netstandard2.1/Ulid.dll": {
  3015. "related": ".xml"
  3016. }
  3017. }
  3018. },
  3019. "ZXing.Net/0.16.9": {
  3020. "type": "package",
  3021. "compile": {
  3022. "lib/net5.0/zxing.dll": {
  3023. "related": ".XML"
  3024. }
  3025. },
  3026. "runtime": {
  3027. "lib/net5.0/zxing.dll": {
  3028. "related": ".XML"
  3029. }
  3030. }
  3031. },
  3032. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3033. "type": "package",
  3034. "dependencies": {
  3035. "SixLabors.ImageSharp": "2.1.3",
  3036. "ZXing.Net": "0.16.9"
  3037. },
  3038. "compile": {
  3039. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3040. "related": ".pdb;.xml"
  3041. }
  3042. },
  3043. "runtime": {
  3044. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3045. "related": ".pdb;.xml"
  3046. }
  3047. }
  3048. },
  3049. "Ropin.Core.Common/1.0.0": {
  3050. "type": "project",
  3051. "framework": ".NETCoreApp,Version=v5.0",
  3052. "dependencies": {
  3053. "Coravel": "4.2.1",
  3054. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3055. "Newtonsoft.Json": "13.0.1",
  3056. "QRCoder": "1.4.3",
  3057. "SixLabors.ImageSharp": "2.1.6",
  3058. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3059. },
  3060. "compile": {
  3061. "bin/placeholder/Ropin.Core.Common.dll": {}
  3062. },
  3063. "runtime": {
  3064. "bin/placeholder/Ropin.Core.Common.dll": {}
  3065. }
  3066. },
  3067. "Ropin.Core.Extensions/1.0.0": {
  3068. "type": "project",
  3069. "framework": ".NETCoreApp,Version=v5.0",
  3070. "dependencies": {
  3071. "Autofac": "6.2.0",
  3072. "Autofac.Extras.DynamicProxy": "6.0.0",
  3073. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3074. "Ropin.Core.Common": "1.0.0",
  3075. "Ropin.Inspection.Common": "1.0.0",
  3076. "Ropin.Inspection.Service": "1.0.0",
  3077. "Ropin.Inspection.Tasks": "1.0.0",
  3078. "StackExchange.Redis": "1.2.4",
  3079. "log4net": "2.0.17"
  3080. },
  3081. "compile": {
  3082. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3083. },
  3084. "runtime": {
  3085. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3086. }
  3087. },
  3088. "Ropin.Inspection.Common/1.0.0": {
  3089. "type": "project",
  3090. "framework": ".NETCoreApp,Version=v5.0",
  3091. "dependencies": {
  3092. "FluentEmail.Smtp": "3.0.2",
  3093. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3094. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3095. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3096. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3097. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3098. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3099. "Microsoft.Extensions.Configuration": "5.0.0",
  3100. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3101. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3102. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3103. "Microsoft.Extensions.Http": "5.0.0",
  3104. "Newtonsoft.Json": "13.0.1",
  3105. "RabbitMQ.Client": "6.8.1",
  3106. "ToolGood.Words": "3.1.0.2",
  3107. "Ulid": "1.4.1",
  3108. "log4net": "2.0.17"
  3109. },
  3110. "compile": {
  3111. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3112. },
  3113. "runtime": {
  3114. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3115. }
  3116. },
  3117. "Ropin.Inspection.Model/1.0.0": {
  3118. "type": "project",
  3119. "framework": ".NETCoreApp,Version=v5.0",
  3120. "dependencies": {
  3121. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3122. "Microsoft.EntityFrameworkCore": "5.0.0",
  3123. "MySql.Data": "8.0.23",
  3124. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3125. "Ropin.Inspection.Common": "1.0.0"
  3126. },
  3127. "compile": {
  3128. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3129. },
  3130. "runtime": {
  3131. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3132. }
  3133. },
  3134. "Ropin.Inspection.Repository/1.0.0": {
  3135. "type": "project",
  3136. "framework": ".NETCoreApp,Version=v5.0",
  3137. "dependencies": {
  3138. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3139. "Microsoft.EntityFrameworkCore": "5.0.0",
  3140. "Ropin.Inspection.Model": "1.0.0"
  3141. },
  3142. "compile": {
  3143. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3144. },
  3145. "runtime": {
  3146. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3147. }
  3148. },
  3149. "Ropin.Inspection.Service/1.0.0": {
  3150. "type": "project",
  3151. "framework": ".NETCoreApp,Version=v5.0",
  3152. "dependencies": {
  3153. "AutoMapper": "10.1.1",
  3154. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3155. "Newtonsoft.Json": "13.0.1",
  3156. "Ropin.Core.Common": "1.0.0",
  3157. "Ropin.Inspection.Common": "1.0.0",
  3158. "Ropin.Inspection.Model": "1.0.0",
  3159. "Ropin.Inspection.Repository": "1.0.0",
  3160. "log4net": "2.0.17"
  3161. },
  3162. "compile": {
  3163. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3164. },
  3165. "runtime": {
  3166. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3167. }
  3168. },
  3169. "Ropin.Inspection.Tasks/1.0.0": {
  3170. "type": "project",
  3171. "framework": ".NETCoreApp,Version=v5.0",
  3172. "dependencies": {
  3173. "Quartz": "3.3.3",
  3174. "Ropin.Inspection.Common": "1.0.0",
  3175. "Ropin.Inspection.Model": "1.0.0",
  3176. "Ropin.Inspection.Service": "1.0.0"
  3177. },
  3178. "compile": {
  3179. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3180. },
  3181. "runtime": {
  3182. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3183. }
  3184. }
  3185. }
  3186. },
  3187. "libraries": {
  3188. "AdvancedStringBuilder/0.1.0": {
  3189. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3190. "type": "package",
  3191. "path": "advancedstringbuilder/0.1.0",
  3192. "files": [
  3193. ".nupkg.metadata",
  3194. ".signature.p7s",
  3195. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3196. "advancedstringbuilder.nuspec",
  3197. "lib/net40-client/AdvancedStringBuilder.dll",
  3198. "lib/net40-client/AdvancedStringBuilder.xml",
  3199. "lib/net45/AdvancedStringBuilder.dll",
  3200. "lib/net45/AdvancedStringBuilder.xml",
  3201. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3202. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3203. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3204. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3205. ]
  3206. },
  3207. "Autofac/6.2.0": {
  3208. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3209. "type": "package",
  3210. "path": "autofac/6.2.0",
  3211. "files": [
  3212. ".nupkg.metadata",
  3213. ".signature.p7s",
  3214. "autofac.6.2.0.nupkg.sha512",
  3215. "autofac.nuspec",
  3216. "icon.png",
  3217. "lib/net5.0/Autofac.dll",
  3218. "lib/net5.0/Autofac.pdb",
  3219. "lib/net5.0/Autofac.xml",
  3220. "lib/netstandard2.0/Autofac.dll",
  3221. "lib/netstandard2.0/Autofac.pdb",
  3222. "lib/netstandard2.0/Autofac.xml",
  3223. "lib/netstandard2.1/Autofac.dll",
  3224. "lib/netstandard2.1/Autofac.pdb",
  3225. "lib/netstandard2.1/Autofac.xml"
  3226. ]
  3227. },
  3228. "Autofac.Extras.DynamicProxy/6.0.0": {
  3229. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3230. "type": "package",
  3231. "path": "autofac.extras.dynamicproxy/6.0.0",
  3232. "files": [
  3233. ".nupkg.metadata",
  3234. ".signature.p7s",
  3235. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3236. "autofac.extras.dynamicproxy.nuspec",
  3237. "icon.png",
  3238. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3239. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3240. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3241. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3242. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3243. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3244. ]
  3245. },
  3246. "AutoMapper/10.1.1": {
  3247. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3248. "type": "package",
  3249. "path": "automapper/10.1.1",
  3250. "files": [
  3251. ".nupkg.metadata",
  3252. ".signature.p7s",
  3253. "automapper.10.1.1.nupkg.sha512",
  3254. "automapper.nuspec",
  3255. "icon.png",
  3256. "lib/net461/AutoMapper.dll",
  3257. "lib/net461/AutoMapper.xml",
  3258. "lib/netstandard2.0/AutoMapper.dll",
  3259. "lib/netstandard2.0/AutoMapper.xml"
  3260. ]
  3261. },
  3262. "BouncyCastle.NetCore/1.8.5": {
  3263. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3264. "type": "package",
  3265. "path": "bouncycastle.netcore/1.8.5",
  3266. "files": [
  3267. ".nupkg.metadata",
  3268. ".signature.p7s",
  3269. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3270. "bouncycastle.netcore.nuspec",
  3271. "lib/Mono/BouncyCastle.Crypto.dll",
  3272. "lib/Mono/BouncyCastle.Crypto.xml",
  3273. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3274. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3275. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3276. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3277. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3278. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3279. "lib/net20/BouncyCastle.Crypto.dll",
  3280. "lib/net20/BouncyCastle.Crypto.xml",
  3281. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3282. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3283. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3284. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3285. ]
  3286. },
  3287. "Castle.Core/4.4.0": {
  3288. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3289. "type": "package",
  3290. "path": "castle.core/4.4.0",
  3291. "files": [
  3292. ".nupkg.metadata",
  3293. ".signature.p7s",
  3294. "ASL - Apache Software Foundation License.txt",
  3295. "CHANGELOG.md",
  3296. "LICENSE",
  3297. "castle.core.4.4.0.nupkg.sha512",
  3298. "castle.core.nuspec",
  3299. "lib/net35/Castle.Core.dll",
  3300. "lib/net35/Castle.Core.xml",
  3301. "lib/net40/Castle.Core.dll",
  3302. "lib/net40/Castle.Core.xml",
  3303. "lib/net45/Castle.Core.dll",
  3304. "lib/net45/Castle.Core.xml",
  3305. "lib/netstandard1.3/Castle.Core.dll",
  3306. "lib/netstandard1.3/Castle.Core.xml",
  3307. "lib/netstandard1.5/Castle.Core.dll",
  3308. "lib/netstandard1.5/Castle.Core.xml",
  3309. "readme.txt"
  3310. ]
  3311. },
  3312. "Coravel/4.2.1": {
  3313. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3314. "type": "package",
  3315. "path": "coravel/4.2.1",
  3316. "files": [
  3317. ".nupkg.metadata",
  3318. ".signature.p7s",
  3319. "coravel.4.2.1.nupkg.sha512",
  3320. "coravel.nuspec",
  3321. "lib/netstandard2.0/Coravel.dll",
  3322. "lib/netstandard2.0/Coravel.xml",
  3323. "logo.png",
  3324. "readme.md"
  3325. ]
  3326. },
  3327. "FluentEmail.Core/3.0.2": {
  3328. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3329. "type": "package",
  3330. "path": "fluentemail.core/3.0.2",
  3331. "files": [
  3332. ".nupkg.metadata",
  3333. ".signature.p7s",
  3334. "fluentemail.core.3.0.2.nupkg.sha512",
  3335. "fluentemail.core.nuspec",
  3336. "fluentemail_logo_64x64.png",
  3337. "lib/netstandard2.0/FluentEmail.Core.dll"
  3338. ]
  3339. },
  3340. "FluentEmail.Smtp/3.0.2": {
  3341. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3342. "type": "package",
  3343. "path": "fluentemail.smtp/3.0.2",
  3344. "files": [
  3345. ".nupkg.metadata",
  3346. ".signature.p7s",
  3347. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3348. "fluentemail.smtp.nuspec",
  3349. "fluentemail_logo_64x64.png",
  3350. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3351. ]
  3352. },
  3353. "Google.Protobuf/3.11.4": {
  3354. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3355. "type": "package",
  3356. "path": "google.protobuf/3.11.4",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "google.protobuf.3.11.4.nupkg.sha512",
  3361. "google.protobuf.nuspec",
  3362. "lib/net45/Google.Protobuf.dll",
  3363. "lib/net45/Google.Protobuf.pdb",
  3364. "lib/net45/Google.Protobuf.xml",
  3365. "lib/netstandard1.0/Google.Protobuf.dll",
  3366. "lib/netstandard1.0/Google.Protobuf.pdb",
  3367. "lib/netstandard1.0/Google.Protobuf.xml",
  3368. "lib/netstandard2.0/Google.Protobuf.dll",
  3369. "lib/netstandard2.0/Google.Protobuf.pdb",
  3370. "lib/netstandard2.0/Google.Protobuf.xml"
  3371. ]
  3372. },
  3373. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3374. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3375. "type": "package",
  3376. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3377. "files": [
  3378. ".nupkg.metadata",
  3379. ".signature.p7s",
  3380. "LICENSE.txt",
  3381. "advanced-string-builder-license.txt",
  3382. "chakra-samples-license.txt",
  3383. "icon.png",
  3384. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3385. "javascriptengineswitcher.chakracore.nuspec",
  3386. "jsrt-dotnet-license.txt",
  3387. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3388. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3389. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3390. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3391. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3392. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3393. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3394. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3395. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3396. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3397. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3398. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3399. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3400. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3401. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3402. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3403. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3404. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3405. "polyfills-for-old-dot-net-license.txt",
  3406. "readme.txt"
  3407. ]
  3408. },
  3409. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3410. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3411. "type": "package",
  3412. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3413. "files": [
  3414. ".nupkg.metadata",
  3415. ".signature.p7s",
  3416. "LICENSE.txt",
  3417. "chakra-core-license.txt",
  3418. "icon.png",
  3419. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3420. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3421. "readme.txt",
  3422. "runtimes/linux-x64/native/libChakraCore.so"
  3423. ]
  3424. },
  3425. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3426. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3427. "type": "package",
  3428. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3429. "hasTools": true,
  3430. "files": [
  3431. ".nupkg.metadata",
  3432. ".signature.p7s",
  3433. "LICENSE.txt",
  3434. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3435. "chakra-core-license.txt",
  3436. "icon.png",
  3437. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3438. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3439. "readme.txt",
  3440. "runtimes/win-x64/native/ChakraCore.dll",
  3441. "tools/Install.ps1",
  3442. "tools/Uninstall.ps1"
  3443. ]
  3444. },
  3445. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3446. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3447. "type": "package",
  3448. "path": "javascriptengineswitcher.core/3.21.0",
  3449. "files": [
  3450. ".nupkg.metadata",
  3451. ".signature.p7s",
  3452. "LICENSE.txt",
  3453. "advanced-string-builder-license.txt",
  3454. "icon.png",
  3455. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3456. "javascriptengineswitcher.core.nuspec",
  3457. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3458. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3459. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3460. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3461. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3462. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3463. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3464. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3465. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3466. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3467. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3468. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3469. "readme.txt"
  3470. ]
  3471. },
  3472. "K4os.Compression.LZ4/1.1.11": {
  3473. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3474. "type": "package",
  3475. "path": "k4os.compression.lz4/1.1.11",
  3476. "files": [
  3477. ".nupkg.metadata",
  3478. ".signature.p7s",
  3479. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3480. "k4os.compression.lz4.nuspec",
  3481. "lib/net45/K4os.Compression.LZ4.dll",
  3482. "lib/net45/K4os.Compression.LZ4.xml",
  3483. "lib/net46/K4os.Compression.LZ4.dll",
  3484. "lib/net46/K4os.Compression.LZ4.xml",
  3485. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3486. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3487. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3488. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3489. ]
  3490. },
  3491. "K4os.Compression.LZ4.Streams/1.1.11": {
  3492. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3493. "type": "package",
  3494. "path": "k4os.compression.lz4.streams/1.1.11",
  3495. "files": [
  3496. ".nupkg.metadata",
  3497. ".signature.p7s",
  3498. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3499. "k4os.compression.lz4.streams.nuspec",
  3500. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3501. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3502. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3503. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3504. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3505. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3506. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3507. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3508. ]
  3509. },
  3510. "K4os.Hash.xxHash/1.0.6": {
  3511. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3512. "type": "package",
  3513. "path": "k4os.hash.xxhash/1.0.6",
  3514. "files": [
  3515. ".nupkg.metadata",
  3516. ".signature.p7s",
  3517. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3518. "k4os.hash.xxhash.nuspec",
  3519. "lib/net45/K4os.Hash.xxHash.dll",
  3520. "lib/net45/K4os.Hash.xxHash.xml",
  3521. "lib/net46/K4os.Hash.xxHash.dll",
  3522. "lib/net46/K4os.Hash.xxHash.xml",
  3523. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3524. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3525. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3526. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3527. ]
  3528. },
  3529. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3530. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3531. "type": "package",
  3532. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3533. "files": [
  3534. ".nupkg.metadata",
  3535. ".signature.p7s",
  3536. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3537. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3538. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3539. "linqkit.microsoft.entityframeworkcore.nuspec"
  3540. ]
  3541. },
  3542. "log4net/2.0.17": {
  3543. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3544. "type": "package",
  3545. "path": "log4net/2.0.17",
  3546. "files": [
  3547. ".nupkg.metadata",
  3548. ".signature.p7s",
  3549. "lib/net20/log4net.dll",
  3550. "lib/net20/log4net.xml",
  3551. "lib/net35/log4net.dll",
  3552. "lib/net35/log4net.xml",
  3553. "lib/net40-client/log4net.dll",
  3554. "lib/net40-client/log4net.xml",
  3555. "lib/net40/log4net.dll",
  3556. "lib/net40/log4net.xml",
  3557. "lib/net45/log4net.dll",
  3558. "lib/net45/log4net.xml",
  3559. "lib/netstandard1.3/log4net.dll",
  3560. "lib/netstandard1.3/log4net.xml",
  3561. "lib/netstandard2.0/log4net.dll",
  3562. "lib/netstandard2.0/log4net.xml",
  3563. "log4net.2.0.17.nupkg.sha512",
  3564. "log4net.nuspec",
  3565. "package-icon.png"
  3566. ]
  3567. },
  3568. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3569. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3570. "type": "package",
  3571. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3572. "files": [
  3573. ".nupkg.metadata",
  3574. ".signature.p7s",
  3575. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3576. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3577. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3578. "microsoft.aspnetcore.http.abstractions.nuspec"
  3579. ]
  3580. },
  3581. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3582. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3583. "type": "package",
  3584. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3585. "files": [
  3586. ".nupkg.metadata",
  3587. ".signature.p7s",
  3588. "Icon.png",
  3589. "THIRD-PARTY-NOTICES.TXT",
  3590. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3591. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3592. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3593. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3594. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3595. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3596. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3597. "microsoft.aspnetcore.http.features.nuspec"
  3598. ]
  3599. },
  3600. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3601. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3602. "type": "package",
  3603. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3604. "files": [
  3605. ".nupkg.metadata",
  3606. ".signature.p7s",
  3607. "Icon.png",
  3608. "THIRD-PARTY-NOTICES.TXT",
  3609. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3610. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3611. "microsoft.aspnetcore.nodeservices.nuspec"
  3612. ]
  3613. },
  3614. "Microsoft.CSharp/4.7.0": {
  3615. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3616. "type": "package",
  3617. "path": "microsoft.csharp/4.7.0",
  3618. "files": [
  3619. ".nupkg.metadata",
  3620. ".signature.p7s",
  3621. "LICENSE.TXT",
  3622. "THIRD-PARTY-NOTICES.TXT",
  3623. "lib/MonoAndroid10/_._",
  3624. "lib/MonoTouch10/_._",
  3625. "lib/net45/_._",
  3626. "lib/netcore50/Microsoft.CSharp.dll",
  3627. "lib/netcoreapp2.0/_._",
  3628. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3629. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3630. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3631. "lib/portable-net45+win8+wp8+wpa81/_._",
  3632. "lib/uap10.0.16299/_._",
  3633. "lib/win8/_._",
  3634. "lib/wp80/_._",
  3635. "lib/wpa81/_._",
  3636. "lib/xamarinios10/_._",
  3637. "lib/xamarinmac20/_._",
  3638. "lib/xamarintvos10/_._",
  3639. "lib/xamarinwatchos10/_._",
  3640. "microsoft.csharp.4.7.0.nupkg.sha512",
  3641. "microsoft.csharp.nuspec",
  3642. "ref/MonoAndroid10/_._",
  3643. "ref/MonoTouch10/_._",
  3644. "ref/net45/_._",
  3645. "ref/netcore50/Microsoft.CSharp.dll",
  3646. "ref/netcore50/Microsoft.CSharp.xml",
  3647. "ref/netcore50/de/Microsoft.CSharp.xml",
  3648. "ref/netcore50/es/Microsoft.CSharp.xml",
  3649. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3650. "ref/netcore50/it/Microsoft.CSharp.xml",
  3651. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3652. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3653. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3654. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3655. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3656. "ref/netcoreapp2.0/_._",
  3657. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3658. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3659. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3660. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3661. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3662. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3663. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3664. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3665. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3666. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3667. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3668. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3669. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3670. "ref/portable-net45+win8+wp8+wpa81/_._",
  3671. "ref/uap10.0.16299/_._",
  3672. "ref/win8/_._",
  3673. "ref/wp80/_._",
  3674. "ref/wpa81/_._",
  3675. "ref/xamarinios10/_._",
  3676. "ref/xamarinmac20/_._",
  3677. "ref/xamarintvos10/_._",
  3678. "ref/xamarinwatchos10/_._",
  3679. "useSharedDesignerContext.txt",
  3680. "version.txt"
  3681. ]
  3682. },
  3683. "Microsoft.EntityFrameworkCore/5.0.0": {
  3684. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3685. "type": "package",
  3686. "path": "microsoft.entityframeworkcore/5.0.0",
  3687. "files": [
  3688. ".nupkg.metadata",
  3689. ".signature.p7s",
  3690. "Icon.png",
  3691. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3692. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3693. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3694. "microsoft.entityframeworkcore.nuspec"
  3695. ]
  3696. },
  3697. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3698. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3699. "type": "package",
  3700. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3701. "files": [
  3702. ".nupkg.metadata",
  3703. ".signature.p7s",
  3704. "Icon.png",
  3705. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3706. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3707. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3708. "microsoft.entityframeworkcore.abstractions.nuspec"
  3709. ]
  3710. },
  3711. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3712. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3713. "type": "package",
  3714. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3715. "files": [
  3716. ".nupkg.metadata",
  3717. ".signature.p7s",
  3718. "Icon.png",
  3719. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3720. "lib/netstandard2.0/_._",
  3721. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3722. "microsoft.entityframeworkcore.analyzers.nuspec"
  3723. ]
  3724. },
  3725. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3726. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3727. "type": "package",
  3728. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3729. "files": [
  3730. ".nupkg.metadata",
  3731. ".signature.p7s",
  3732. "Icon.png",
  3733. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3734. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3735. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3736. "microsoft.entityframeworkcore.relational.nuspec"
  3737. ]
  3738. },
  3739. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3740. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3741. "type": "package",
  3742. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3743. "hasTools": true,
  3744. "files": [
  3745. ".nupkg.metadata",
  3746. ".signature.p7s",
  3747. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3748. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3749. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3750. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3751. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3752. "microsoft.extensions.apidescription.server.nuspec",
  3753. "tools/Newtonsoft.Json.dll",
  3754. "tools/dotnet-getdocument.deps.json",
  3755. "tools/dotnet-getdocument.dll",
  3756. "tools/dotnet-getdocument.runtimeconfig.json",
  3757. "tools/net461-x86/GetDocument.Insider.exe",
  3758. "tools/net461-x86/GetDocument.Insider.exe.config",
  3759. "tools/net461/GetDocument.Insider.exe",
  3760. "tools/net461/GetDocument.Insider.exe.config",
  3761. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3762. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3763. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3764. ]
  3765. },
  3766. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3767. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3768. "type": "package",
  3769. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3770. "files": [
  3771. ".nupkg.metadata",
  3772. ".signature.p7s",
  3773. "Icon.png",
  3774. "LICENSE.TXT",
  3775. "THIRD-PARTY-NOTICES.TXT",
  3776. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3777. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3778. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3779. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3780. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3781. "microsoft.extensions.caching.abstractions.nuspec",
  3782. "useSharedDesignerContext.txt",
  3783. "version.txt"
  3784. ]
  3785. },
  3786. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3787. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3788. "type": "package",
  3789. "path": "microsoft.extensions.caching.memory/5.0.0",
  3790. "files": [
  3791. ".nupkg.metadata",
  3792. ".signature.p7s",
  3793. "Icon.png",
  3794. "LICENSE.TXT",
  3795. "THIRD-PARTY-NOTICES.TXT",
  3796. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3797. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3798. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3799. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3800. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3801. "microsoft.extensions.caching.memory.nuspec",
  3802. "useSharedDesignerContext.txt",
  3803. "version.txt"
  3804. ]
  3805. },
  3806. "Microsoft.Extensions.Configuration/5.0.0": {
  3807. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3808. "type": "package",
  3809. "path": "microsoft.extensions.configuration/5.0.0",
  3810. "files": [
  3811. ".nupkg.metadata",
  3812. ".signature.p7s",
  3813. "Icon.png",
  3814. "LICENSE.TXT",
  3815. "THIRD-PARTY-NOTICES.TXT",
  3816. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3817. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3818. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3819. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3820. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3821. "microsoft.extensions.configuration.nuspec",
  3822. "useSharedDesignerContext.txt",
  3823. "version.txt"
  3824. ]
  3825. },
  3826. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3827. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3828. "type": "package",
  3829. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3830. "files": [
  3831. ".nupkg.metadata",
  3832. ".signature.p7s",
  3833. "Icon.png",
  3834. "LICENSE.TXT",
  3835. "THIRD-PARTY-NOTICES.TXT",
  3836. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3837. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3838. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3839. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3840. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3841. "microsoft.extensions.configuration.abstractions.nuspec",
  3842. "useSharedDesignerContext.txt",
  3843. "version.txt"
  3844. ]
  3845. },
  3846. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3847. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3848. "type": "package",
  3849. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3850. "files": [
  3851. ".nupkg.metadata",
  3852. ".signature.p7s",
  3853. "Icon.png",
  3854. "LICENSE.TXT",
  3855. "THIRD-PARTY-NOTICES.TXT",
  3856. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3857. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3858. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3859. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3860. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3861. "microsoft.extensions.configuration.binder.nuspec",
  3862. "useSharedDesignerContext.txt",
  3863. "version.txt"
  3864. ]
  3865. },
  3866. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3867. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3868. "type": "package",
  3869. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3870. "files": [
  3871. ".nupkg.metadata",
  3872. ".signature.p7s",
  3873. "Icon.png",
  3874. "LICENSE.TXT",
  3875. "THIRD-PARTY-NOTICES.TXT",
  3876. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3877. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3878. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3879. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3880. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3881. "microsoft.extensions.configuration.fileextensions.nuspec",
  3882. "useSharedDesignerContext.txt",
  3883. "version.txt"
  3884. ]
  3885. },
  3886. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3887. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3888. "type": "package",
  3889. "path": "microsoft.extensions.configuration.json/5.0.0",
  3890. "files": [
  3891. ".nupkg.metadata",
  3892. ".signature.p7s",
  3893. "Icon.png",
  3894. "LICENSE.TXT",
  3895. "THIRD-PARTY-NOTICES.TXT",
  3896. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3897. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3898. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3899. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3900. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3901. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3902. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3903. "microsoft.extensions.configuration.json.nuspec",
  3904. "useSharedDesignerContext.txt",
  3905. "version.txt"
  3906. ]
  3907. },
  3908. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3909. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3910. "type": "package",
  3911. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3912. "files": [
  3913. ".nupkg.metadata",
  3914. ".signature.p7s",
  3915. "Icon.png",
  3916. "LICENSE.TXT",
  3917. "THIRD-PARTY-NOTICES.TXT",
  3918. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3919. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3920. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3921. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3922. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3923. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3924. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3925. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3926. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3927. "microsoft.extensions.dependencyinjection.nuspec",
  3928. "useSharedDesignerContext.txt",
  3929. "version.txt"
  3930. ]
  3931. },
  3932. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3933. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3934. "type": "package",
  3935. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3936. "files": [
  3937. ".nupkg.metadata",
  3938. ".signature.p7s",
  3939. "Icon.png",
  3940. "LICENSE.TXT",
  3941. "THIRD-PARTY-NOTICES.TXT",
  3942. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3943. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3944. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3945. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3946. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3947. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3948. "useSharedDesignerContext.txt",
  3949. "version.txt"
  3950. ]
  3951. },
  3952. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3953. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3954. "type": "package",
  3955. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3956. "files": [
  3957. ".nupkg.metadata",
  3958. ".signature.p7s",
  3959. "Icon.png",
  3960. "LICENSE.TXT",
  3961. "THIRD-PARTY-NOTICES.TXT",
  3962. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3963. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3964. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3965. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3966. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3967. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3968. "useSharedDesignerContext.txt",
  3969. "version.txt"
  3970. ]
  3971. },
  3972. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3973. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3974. "type": "package",
  3975. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3976. "files": [
  3977. ".nupkg.metadata",
  3978. ".signature.p7s",
  3979. "Icon.png",
  3980. "LICENSE.TXT",
  3981. "THIRD-PARTY-NOTICES.TXT",
  3982. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3983. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3984. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3985. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3986. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3987. "microsoft.extensions.fileproviders.physical.nuspec",
  3988. "useSharedDesignerContext.txt",
  3989. "version.txt"
  3990. ]
  3991. },
  3992. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3993. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3994. "type": "package",
  3995. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "Icon.png",
  4000. "LICENSE.TXT",
  4001. "THIRD-PARTY-NOTICES.TXT",
  4002. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4003. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4004. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4005. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4006. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4007. "microsoft.extensions.filesystemglobbing.nuspec",
  4008. "useSharedDesignerContext.txt",
  4009. "version.txt"
  4010. ]
  4011. },
  4012. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4013. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4014. "type": "package",
  4015. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4016. "files": [
  4017. ".nupkg.metadata",
  4018. ".signature.p7s",
  4019. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4020. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4021. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4022. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4023. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4024. "microsoft.extensions.hosting.abstractions.nuspec",
  4025. "packageIcon.png"
  4026. ]
  4027. },
  4028. "Microsoft.Extensions.Http/5.0.0": {
  4029. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4030. "type": "package",
  4031. "path": "microsoft.extensions.http/5.0.0",
  4032. "files": [
  4033. ".nupkg.metadata",
  4034. ".signature.p7s",
  4035. "Icon.png",
  4036. "LICENSE.TXT",
  4037. "THIRD-PARTY-NOTICES.TXT",
  4038. "lib/net461/Microsoft.Extensions.Http.dll",
  4039. "lib/net461/Microsoft.Extensions.Http.xml",
  4040. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4041. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4042. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4043. "microsoft.extensions.http.nuspec",
  4044. "useSharedDesignerContext.txt",
  4045. "version.txt"
  4046. ]
  4047. },
  4048. "Microsoft.Extensions.Logging/5.0.0": {
  4049. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4050. "type": "package",
  4051. "path": "microsoft.extensions.logging/5.0.0",
  4052. "files": [
  4053. ".nupkg.metadata",
  4054. ".signature.p7s",
  4055. "Icon.png",
  4056. "LICENSE.TXT",
  4057. "THIRD-PARTY-NOTICES.TXT",
  4058. "lib/net461/Microsoft.Extensions.Logging.dll",
  4059. "lib/net461/Microsoft.Extensions.Logging.xml",
  4060. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4061. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4062. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4063. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4064. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4065. "microsoft.extensions.logging.nuspec",
  4066. "useSharedDesignerContext.txt",
  4067. "version.txt"
  4068. ]
  4069. },
  4070. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4071. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4072. "type": "package",
  4073. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4074. "files": [
  4075. ".nupkg.metadata",
  4076. ".signature.p7s",
  4077. "Icon.png",
  4078. "LICENSE.TXT",
  4079. "THIRD-PARTY-NOTICES.TXT",
  4080. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4081. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4082. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4083. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4084. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4085. "microsoft.extensions.logging.abstractions.nuspec",
  4086. "useSharedDesignerContext.txt",
  4087. "version.txt"
  4088. ]
  4089. },
  4090. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4091. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4092. "type": "package",
  4093. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4094. "files": [
  4095. ".nupkg.metadata",
  4096. ".signature.p7s",
  4097. "Icon.png",
  4098. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4099. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4100. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4101. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4102. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4103. "microsoft.extensions.logging.configuration.nuspec"
  4104. ]
  4105. },
  4106. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4107. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4108. "type": "package",
  4109. "path": "microsoft.extensions.logging.console/3.1.30",
  4110. "files": [
  4111. ".nupkg.metadata",
  4112. ".signature.p7s",
  4113. "Icon.png",
  4114. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4115. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4116. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4117. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4118. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4119. "microsoft.extensions.logging.console.nuspec"
  4120. ]
  4121. },
  4122. "Microsoft.Extensions.Options/5.0.0": {
  4123. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4124. "type": "package",
  4125. "path": "microsoft.extensions.options/5.0.0",
  4126. "files": [
  4127. ".nupkg.metadata",
  4128. ".signature.p7s",
  4129. "Icon.png",
  4130. "LICENSE.TXT",
  4131. "THIRD-PARTY-NOTICES.TXT",
  4132. "lib/net461/Microsoft.Extensions.Options.dll",
  4133. "lib/net461/Microsoft.Extensions.Options.xml",
  4134. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4135. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4136. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4137. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4138. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4139. "microsoft.extensions.options.nuspec",
  4140. "useSharedDesignerContext.txt",
  4141. "version.txt"
  4142. ]
  4143. },
  4144. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4145. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4146. "type": "package",
  4147. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. ".signature.p7s",
  4151. "Icon.png",
  4152. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4153. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4154. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4155. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4156. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4157. "microsoft.extensions.options.configurationextensions.nuspec"
  4158. ]
  4159. },
  4160. "Microsoft.Extensions.Primitives/5.0.0": {
  4161. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4162. "type": "package",
  4163. "path": "microsoft.extensions.primitives/5.0.0",
  4164. "files": [
  4165. ".nupkg.metadata",
  4166. ".signature.p7s",
  4167. "Icon.png",
  4168. "LICENSE.TXT",
  4169. "THIRD-PARTY-NOTICES.TXT",
  4170. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4171. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4172. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4173. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4174. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4175. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4176. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4177. "microsoft.extensions.primitives.nuspec",
  4178. "useSharedDesignerContext.txt",
  4179. "version.txt"
  4180. ]
  4181. },
  4182. "Microsoft.NETCore.Platforms/5.0.0": {
  4183. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4184. "type": "package",
  4185. "path": "microsoft.netcore.platforms/5.0.0",
  4186. "files": [
  4187. ".nupkg.metadata",
  4188. ".signature.p7s",
  4189. "Icon.png",
  4190. "LICENSE.TXT",
  4191. "THIRD-PARTY-NOTICES.TXT",
  4192. "lib/netstandard1.0/_._",
  4193. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4194. "microsoft.netcore.platforms.nuspec",
  4195. "runtime.json",
  4196. "useSharedDesignerContext.txt",
  4197. "version.txt"
  4198. ]
  4199. },
  4200. "Microsoft.NETCore.Targets/1.1.0": {
  4201. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4202. "type": "package",
  4203. "path": "microsoft.netcore.targets/1.1.0",
  4204. "files": [
  4205. ".nupkg.metadata",
  4206. ".signature.p7s",
  4207. "ThirdPartyNotices.txt",
  4208. "dotnet_library_license.txt",
  4209. "lib/netstandard1.0/_._",
  4210. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4211. "microsoft.netcore.targets.nuspec",
  4212. "runtime.json"
  4213. ]
  4214. },
  4215. "Microsoft.OpenApi/1.2.3": {
  4216. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4217. "type": "package",
  4218. "path": "microsoft.openapi/1.2.3",
  4219. "files": [
  4220. ".nupkg.metadata",
  4221. ".signature.p7s",
  4222. "lib/net46/Microsoft.OpenApi.dll",
  4223. "lib/net46/Microsoft.OpenApi.pdb",
  4224. "lib/net46/Microsoft.OpenApi.xml",
  4225. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4226. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4227. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4228. "microsoft.openapi.1.2.3.nupkg.sha512",
  4229. "microsoft.openapi.nuspec"
  4230. ]
  4231. },
  4232. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4233. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4234. "type": "package",
  4235. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4236. "hasTools": true,
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "CHANGELOG.md",
  4241. "EULA.md",
  4242. "ThirdPartyNotices.txt",
  4243. "build/Container.props",
  4244. "build/Container.targets",
  4245. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4246. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4247. "build/Rules/GeneralBrowseObject.xaml",
  4248. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4249. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4250. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4251. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4252. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4253. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4254. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4255. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4256. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4257. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4258. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4259. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4260. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4261. "build/ToolsTarget.props",
  4262. "build/ToolsTarget.targets",
  4263. "icon.png",
  4264. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4265. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4266. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4267. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4268. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4269. "tools/Newtonsoft.Json.dll",
  4270. "tools/System.Security.Principal.Windows.dll",
  4271. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4272. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4273. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4274. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4275. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4276. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4277. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4278. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4279. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4280. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4281. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4282. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4283. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4284. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4285. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4286. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4287. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4288. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4289. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4290. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4291. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4292. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4293. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4294. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4295. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4296. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4297. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4298. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4299. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4300. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4301. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4302. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4303. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4304. "tools/utils/KillProcess.exe",
  4305. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4306. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4307. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4308. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4309. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4310. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4311. ]
  4312. },
  4313. "Microsoft.Win32.Primitives/4.3.0": {
  4314. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4315. "type": "package",
  4316. "path": "microsoft.win32.primitives/4.3.0",
  4317. "files": [
  4318. ".nupkg.metadata",
  4319. ".signature.p7s",
  4320. "ThirdPartyNotices.txt",
  4321. "dotnet_library_license.txt",
  4322. "lib/MonoAndroid10/_._",
  4323. "lib/MonoTouch10/_._",
  4324. "lib/net46/Microsoft.Win32.Primitives.dll",
  4325. "lib/xamarinios10/_._",
  4326. "lib/xamarinmac20/_._",
  4327. "lib/xamarintvos10/_._",
  4328. "lib/xamarinwatchos10/_._",
  4329. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4330. "microsoft.win32.primitives.nuspec",
  4331. "ref/MonoAndroid10/_._",
  4332. "ref/MonoTouch10/_._",
  4333. "ref/net46/Microsoft.Win32.Primitives.dll",
  4334. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4335. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4336. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4337. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4338. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4339. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4340. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4341. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4342. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4343. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4344. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4345. "ref/xamarinios10/_._",
  4346. "ref/xamarinmac20/_._",
  4347. "ref/xamarintvos10/_._",
  4348. "ref/xamarinwatchos10/_._"
  4349. ]
  4350. },
  4351. "Microsoft.Win32.SystemEvents/5.0.0": {
  4352. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4353. "type": "package",
  4354. "path": "microsoft.win32.systemevents/5.0.0",
  4355. "files": [
  4356. ".nupkg.metadata",
  4357. ".signature.p7s",
  4358. "Icon.png",
  4359. "LICENSE.TXT",
  4360. "THIRD-PARTY-NOTICES.TXT",
  4361. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4362. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4363. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4364. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4365. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4366. "microsoft.win32.systemevents.nuspec",
  4367. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4368. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4369. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4370. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4371. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4372. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4373. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4374. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4375. "useSharedDesignerContext.txt",
  4376. "version.txt"
  4377. ]
  4378. },
  4379. "MQTTnet/4.2.1.781": {
  4380. "sha512": "oKPAoW1Ynukm6ws6P3NmmMlNb3xIlPVf/89WVCkoWOJdz1dYtAdGYRdqe876pVsPru4j0uyU/hKf7iL3NU1r6w==",
  4381. "type": "package",
  4382. "path": "mqttnet/4.2.1.781",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "lib/net452/MQTTnet.dll",
  4387. "lib/net452/MQTTnet.xml",
  4388. "lib/net461/MQTTnet.dll",
  4389. "lib/net461/MQTTnet.xml",
  4390. "lib/net48/MQTTnet.dll",
  4391. "lib/net48/MQTTnet.xml",
  4392. "lib/net5.0/MQTTnet.dll",
  4393. "lib/net5.0/MQTTnet.xml",
  4394. "lib/net6.0/MQTTnet.dll",
  4395. "lib/net6.0/MQTTnet.xml",
  4396. "lib/net7.0/MQTTnet.dll",
  4397. "lib/net7.0/MQTTnet.xml",
  4398. "lib/netcoreapp3.1/MQTTnet.dll",
  4399. "lib/netcoreapp3.1/MQTTnet.xml",
  4400. "lib/netstandard1.3/MQTTnet.dll",
  4401. "lib/netstandard1.3/MQTTnet.xml",
  4402. "lib/netstandard2.0/MQTTnet.dll",
  4403. "lib/netstandard2.0/MQTTnet.xml",
  4404. "lib/netstandard2.1/MQTTnet.dll",
  4405. "lib/netstandard2.1/MQTTnet.xml",
  4406. "lib/uap10.0.10240/MQTTnet.dll",
  4407. "lib/uap10.0.10240/MQTTnet.pri",
  4408. "lib/uap10.0.10240/MQTTnet.xml",
  4409. "mqttnet.4.2.1.781.nupkg.sha512",
  4410. "mqttnet.nuspec",
  4411. "nuget.png"
  4412. ]
  4413. },
  4414. "MQTTnet.AspNetCore/4.2.1.781": {
  4415. "sha512": "lYier2E8s2TQn6PTCT8HnHih2RmTj2UlsqdPmrLJPayfmOSB7eaWLJARtwGpHHF2HEgsNtt99CkNdLwDrKu7AQ==",
  4416. "type": "package",
  4417. "path": "mqttnet.aspnetcore/4.2.1.781",
  4418. "files": [
  4419. ".nupkg.metadata",
  4420. ".signature.p7s",
  4421. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4422. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4423. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4424. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4425. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4426. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4427. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4428. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4429. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4430. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4431. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4432. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4433. "mqttnet.aspnetcore.4.2.1.781.nupkg.sha512",
  4434. "mqttnet.aspnetcore.nuspec",
  4435. "nuget.png"
  4436. ]
  4437. },
  4438. "MySql.Data/8.0.23": {
  4439. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4440. "type": "package",
  4441. "path": "mysql.data/8.0.23",
  4442. "files": [
  4443. ".nupkg.metadata",
  4444. ".signature.p7s",
  4445. "lib/net452/MySql.Data.dll",
  4446. "lib/net452/MySql.Data.xml",
  4447. "lib/net452/Ubiety.Dns.Core.dll",
  4448. "lib/net452/Zstandard.Net.dll",
  4449. "lib/net48/MySql.Data.dll",
  4450. "lib/net48/MySql.Data.xml",
  4451. "lib/net48/Ubiety.Dns.Core.dll",
  4452. "lib/net48/Zstandard.Net.dll",
  4453. "lib/net5.0/MySql.Data.dll",
  4454. "lib/net5.0/MySql.Data.xml",
  4455. "lib/net5.0/Ubiety.Dns.Core.dll",
  4456. "lib/net5.0/Zstandard.Net.dll",
  4457. "lib/netstandard2.0/MySql.Data.dll",
  4458. "lib/netstandard2.0/MySql.Data.xml",
  4459. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4460. "lib/netstandard2.0/Zstandard.Net.dll",
  4461. "lib/netstandard2.1/MySql.Data.dll",
  4462. "lib/netstandard2.1/MySql.Data.xml",
  4463. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4464. "lib/netstandard2.1/Zstandard.Net.dll",
  4465. "mysql.data.8.0.23.nupkg.sha512",
  4466. "mysql.data.nuspec"
  4467. ]
  4468. },
  4469. "MySqlConnector/1.1.0": {
  4470. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4471. "type": "package",
  4472. "path": "mysqlconnector/1.1.0",
  4473. "files": [
  4474. ".nupkg.metadata",
  4475. ".signature.p7s",
  4476. "lib/net45/MySqlConnector.dll",
  4477. "lib/net45/MySqlConnector.xml",
  4478. "lib/net461/MySqlConnector.dll",
  4479. "lib/net461/MySqlConnector.xml",
  4480. "lib/net471/MySqlConnector.dll",
  4481. "lib/net471/MySqlConnector.xml",
  4482. "lib/net5.0/MySqlConnector.dll",
  4483. "lib/net5.0/MySqlConnector.xml",
  4484. "lib/netcoreapp2.1/MySqlConnector.dll",
  4485. "lib/netcoreapp2.1/MySqlConnector.xml",
  4486. "lib/netcoreapp3.1/MySqlConnector.dll",
  4487. "lib/netcoreapp3.1/MySqlConnector.xml",
  4488. "lib/netstandard1.3/MySqlConnector.dll",
  4489. "lib/netstandard1.3/MySqlConnector.xml",
  4490. "lib/netstandard2.0/MySqlConnector.dll",
  4491. "lib/netstandard2.0/MySqlConnector.xml",
  4492. "lib/netstandard2.1/MySqlConnector.dll",
  4493. "lib/netstandard2.1/MySqlConnector.xml",
  4494. "logo.png",
  4495. "mysqlconnector.1.1.0.nupkg.sha512",
  4496. "mysqlconnector.nuspec"
  4497. ]
  4498. },
  4499. "NETStandard.Library/1.6.1": {
  4500. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4501. "type": "package",
  4502. "path": "netstandard.library/1.6.1",
  4503. "files": [
  4504. ".nupkg.metadata",
  4505. ".signature.p7s",
  4506. "ThirdPartyNotices.txt",
  4507. "dotnet_library_license.txt",
  4508. "netstandard.library.1.6.1.nupkg.sha512",
  4509. "netstandard.library.nuspec"
  4510. ]
  4511. },
  4512. "Newtonsoft.Json/13.0.3": {
  4513. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4514. "type": "package",
  4515. "path": "newtonsoft.json/13.0.3",
  4516. "files": [
  4517. ".nupkg.metadata",
  4518. ".signature.p7s",
  4519. "LICENSE.md",
  4520. "README.md",
  4521. "lib/net20/Newtonsoft.Json.dll",
  4522. "lib/net20/Newtonsoft.Json.xml",
  4523. "lib/net35/Newtonsoft.Json.dll",
  4524. "lib/net35/Newtonsoft.Json.xml",
  4525. "lib/net40/Newtonsoft.Json.dll",
  4526. "lib/net40/Newtonsoft.Json.xml",
  4527. "lib/net45/Newtonsoft.Json.dll",
  4528. "lib/net45/Newtonsoft.Json.xml",
  4529. "lib/net6.0/Newtonsoft.Json.dll",
  4530. "lib/net6.0/Newtonsoft.Json.xml",
  4531. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4532. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4533. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4534. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4535. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4536. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4537. "newtonsoft.json.13.0.3.nupkg.sha512",
  4538. "newtonsoft.json.nuspec",
  4539. "packageIcon.png"
  4540. ]
  4541. },
  4542. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4543. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4544. "type": "package",
  4545. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4546. "files": [
  4547. ".nupkg.metadata",
  4548. ".signature.p7s",
  4549. "icon.png",
  4550. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4551. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4552. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4553. "pomelo.entityframeworkcore.mysql.nuspec"
  4554. ]
  4555. },
  4556. "QRCoder/1.4.3": {
  4557. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4558. "type": "package",
  4559. "path": "qrcoder/1.4.3",
  4560. "files": [
  4561. ".nupkg.metadata",
  4562. ".signature.p7s",
  4563. "lib/net35/QRCoder.dll",
  4564. "lib/net40/QRCoder.dll",
  4565. "lib/net5.0-windows7.0/QRCoder.dll",
  4566. "lib/net5.0/QRCoder.dll",
  4567. "lib/net6.0-windows7.0/QRCoder.dll",
  4568. "lib/net6.0/QRCoder.dll",
  4569. "lib/netstandard1.3/QRCoder.dll",
  4570. "lib/netstandard2.0/QRCoder.dll",
  4571. "nuget-icon.png",
  4572. "nuget-readme.md",
  4573. "qrcoder.1.4.3.nupkg.sha512",
  4574. "qrcoder.nuspec"
  4575. ]
  4576. },
  4577. "Quartz/3.3.3": {
  4578. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4579. "type": "package",
  4580. "path": "quartz/3.3.3",
  4581. "files": [
  4582. ".nupkg.metadata",
  4583. ".signature.p7s",
  4584. "lib/net461/Quartz.dll",
  4585. "lib/net461/Quartz.xml",
  4586. "lib/net472/Quartz.dll",
  4587. "lib/net472/Quartz.xml",
  4588. "lib/netstandard2.0/Quartz.dll",
  4589. "lib/netstandard2.0/Quartz.xml",
  4590. "quartz-logo-small.png",
  4591. "quartz.3.3.3.nupkg.sha512",
  4592. "quartz.nuspec"
  4593. ]
  4594. },
  4595. "RabbitMQ.Client/6.8.1": {
  4596. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4597. "type": "package",
  4598. "path": "rabbitmq.client/6.8.1",
  4599. "files": [
  4600. ".nupkg.metadata",
  4601. ".signature.p7s",
  4602. "README.md",
  4603. "icon.png",
  4604. "lib/net462/RabbitMQ.Client.dll",
  4605. "lib/net462/RabbitMQ.Client.xml",
  4606. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4607. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4608. "rabbitmq.client.6.8.1.nupkg.sha512",
  4609. "rabbitmq.client.nuspec"
  4610. ]
  4611. },
  4612. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4613. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4614. "type": "package",
  4615. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4622. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4623. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4624. ]
  4625. },
  4626. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4627. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4628. "type": "package",
  4629. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4630. "files": [
  4631. ".nupkg.metadata",
  4632. ".signature.p7s",
  4633. "ThirdPartyNotices.txt",
  4634. "dotnet_library_license.txt",
  4635. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4636. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4637. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4638. ]
  4639. },
  4640. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4641. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4642. "type": "package",
  4643. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4644. "files": [
  4645. ".nupkg.metadata",
  4646. ".signature.p7s",
  4647. "ThirdPartyNotices.txt",
  4648. "dotnet_library_license.txt",
  4649. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4650. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4651. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4652. ]
  4653. },
  4654. "runtime.native.System/4.3.0": {
  4655. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4656. "type": "package",
  4657. "path": "runtime.native.system/4.3.0",
  4658. "files": [
  4659. ".nupkg.metadata",
  4660. ".signature.p7s",
  4661. "ThirdPartyNotices.txt",
  4662. "dotnet_library_license.txt",
  4663. "lib/netstandard1.0/_._",
  4664. "runtime.native.system.4.3.0.nupkg.sha512",
  4665. "runtime.native.system.nuspec"
  4666. ]
  4667. },
  4668. "runtime.native.System.IO.Compression/4.3.0": {
  4669. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4670. "type": "package",
  4671. "path": "runtime.native.system.io.compression/4.3.0",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "ThirdPartyNotices.txt",
  4676. "dotnet_library_license.txt",
  4677. "lib/netstandard1.0/_._",
  4678. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4679. "runtime.native.system.io.compression.nuspec"
  4680. ]
  4681. },
  4682. "runtime.native.System.Net.Http/4.3.0": {
  4683. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4684. "type": "package",
  4685. "path": "runtime.native.system.net.http/4.3.0",
  4686. "files": [
  4687. ".nupkg.metadata",
  4688. ".signature.p7s",
  4689. "ThirdPartyNotices.txt",
  4690. "dotnet_library_license.txt",
  4691. "lib/netstandard1.0/_._",
  4692. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4693. "runtime.native.system.net.http.nuspec"
  4694. ]
  4695. },
  4696. "runtime.native.System.Net.Security/4.3.0": {
  4697. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4698. "type": "package",
  4699. "path": "runtime.native.system.net.security/4.3.0",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "ThirdPartyNotices.txt",
  4704. "dotnet_library_license.txt",
  4705. "lib/netstandard1.0/_._",
  4706. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4707. "runtime.native.system.net.security.nuspec"
  4708. ]
  4709. },
  4710. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4711. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4712. "type": "package",
  4713. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4714. "files": [
  4715. ".nupkg.metadata",
  4716. ".signature.p7s",
  4717. "ThirdPartyNotices.txt",
  4718. "dotnet_library_license.txt",
  4719. "lib/netstandard1.0/_._",
  4720. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4721. "runtime.native.system.security.cryptography.apple.nuspec"
  4722. ]
  4723. },
  4724. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4725. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4726. "type": "package",
  4727. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4728. "files": [
  4729. ".nupkg.metadata",
  4730. ".signature.p7s",
  4731. "ThirdPartyNotices.txt",
  4732. "dotnet_library_license.txt",
  4733. "lib/netstandard1.0/_._",
  4734. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4735. "runtime.native.system.security.cryptography.openssl.nuspec"
  4736. ]
  4737. },
  4738. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4739. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4740. "type": "package",
  4741. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4742. "files": [
  4743. ".nupkg.metadata",
  4744. ".signature.p7s",
  4745. "ThirdPartyNotices.txt",
  4746. "dotnet_library_license.txt",
  4747. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4748. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4749. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4750. ]
  4751. },
  4752. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4753. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4754. "type": "package",
  4755. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4756. "files": [
  4757. ".nupkg.metadata",
  4758. ".signature.p7s",
  4759. "ThirdPartyNotices.txt",
  4760. "dotnet_library_license.txt",
  4761. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4762. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4763. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4764. ]
  4765. },
  4766. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4767. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4768. "type": "package",
  4769. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4770. "files": [
  4771. ".nupkg.metadata",
  4772. ".signature.p7s",
  4773. "ThirdPartyNotices.txt",
  4774. "dotnet_library_license.txt",
  4775. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4776. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4777. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4778. ]
  4779. },
  4780. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4781. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4782. "type": "package",
  4783. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4784. "files": [
  4785. ".nupkg.metadata",
  4786. ".signature.p7s",
  4787. "ThirdPartyNotices.txt",
  4788. "dotnet_library_license.txt",
  4789. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4790. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4791. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4792. ]
  4793. },
  4794. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4795. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4796. "type": "package",
  4797. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4798. "files": [
  4799. ".nupkg.metadata",
  4800. ".signature.p7s",
  4801. "ThirdPartyNotices.txt",
  4802. "dotnet_library_license.txt",
  4803. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4804. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4805. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4806. ]
  4807. },
  4808. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4809. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4810. "type": "package",
  4811. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4812. "files": [
  4813. ".nupkg.metadata",
  4814. ".signature.p7s",
  4815. "ThirdPartyNotices.txt",
  4816. "dotnet_library_license.txt",
  4817. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4818. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4819. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4820. ]
  4821. },
  4822. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4823. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4824. "type": "package",
  4825. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4826. "files": [
  4827. ".nupkg.metadata",
  4828. ".signature.p7s",
  4829. "ThirdPartyNotices.txt",
  4830. "dotnet_library_license.txt",
  4831. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4832. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4833. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4834. ]
  4835. },
  4836. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4837. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4838. "type": "package",
  4839. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4840. "files": [
  4841. ".nupkg.metadata",
  4842. ".signature.p7s",
  4843. "ThirdPartyNotices.txt",
  4844. "dotnet_library_license.txt",
  4845. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4846. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4847. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4848. ]
  4849. },
  4850. "SixLabors.ImageSharp/2.1.6": {
  4851. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4852. "type": "package",
  4853. "path": "sixlabors.imagesharp/2.1.6",
  4854. "files": [
  4855. ".nupkg.metadata",
  4856. ".signature.p7s",
  4857. "lib/net472/SixLabors.ImageSharp.dll",
  4858. "lib/net472/SixLabors.ImageSharp.xml",
  4859. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4860. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4861. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4862. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4863. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4864. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4865. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4866. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4867. "sixlabors.imagesharp.128.png",
  4868. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4869. "sixlabors.imagesharp.nuspec"
  4870. ]
  4871. },
  4872. "SSH.NET/2020.0.0-beta1": {
  4873. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4874. "type": "package",
  4875. "path": "ssh.net/2020.0.0-beta1",
  4876. "files": [
  4877. ".nupkg.metadata",
  4878. ".signature.p7s",
  4879. "lib/net35/Renci.SshNet.dll",
  4880. "lib/net35/Renci.SshNet.xml",
  4881. "lib/net40/Renci.SshNet.dll",
  4882. "lib/net40/Renci.SshNet.xml",
  4883. "lib/netstandard1.3/Renci.SshNet.dll",
  4884. "lib/netstandard1.3/Renci.SshNet.xml",
  4885. "lib/netstandard2.0/Renci.SshNet.dll",
  4886. "lib/netstandard2.0/Renci.SshNet.xml",
  4887. "lib/sl4/Renci.SshNet.dll",
  4888. "lib/sl4/Renci.SshNet.xml",
  4889. "lib/sl5/Renci.SshNet.dll",
  4890. "lib/sl5/Renci.SshNet.xml",
  4891. "lib/uap10/Renci.SshNet.dll",
  4892. "lib/uap10/Renci.SshNet.xml",
  4893. "lib/wp71/Renci.SshNet.dll",
  4894. "lib/wp71/Renci.SshNet.xml",
  4895. "lib/wp8/Renci.SshNet.dll",
  4896. "lib/wp8/Renci.SshNet.xml",
  4897. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4898. "ssh.net.nuspec"
  4899. ]
  4900. },
  4901. "SshNet.Security.Cryptography/1.3.0": {
  4902. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4903. "type": "package",
  4904. "path": "sshnet.security.cryptography/1.3.0",
  4905. "files": [
  4906. ".nupkg.metadata",
  4907. ".signature.p7s",
  4908. "lib/net20/SshNet.Security.Cryptography.dll",
  4909. "lib/net20/SshNet.Security.Cryptography.xml",
  4910. "lib/net40/SshNet.Security.Cryptography.dll",
  4911. "lib/net40/SshNet.Security.Cryptography.xml",
  4912. "lib/net45/SshNet.Security.Cryptography.dll",
  4913. "lib/net45/SshNet.Security.Cryptography.xml",
  4914. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4915. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4916. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4917. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4918. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4919. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4920. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4921. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4922. "lib/sl4/SshNet.Security.Cryptography.dll",
  4923. "lib/sl4/SshNet.Security.Cryptography.xml",
  4924. "lib/sl5/SshNet.Security.Cryptography.dll",
  4925. "lib/sl5/SshNet.Security.Cryptography.xml",
  4926. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4927. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4928. "lib/wp71/SshNet.Security.Cryptography.dll",
  4929. "lib/wp71/SshNet.Security.Cryptography.xml",
  4930. "lib/wp8/SshNet.Security.Cryptography.dll",
  4931. "lib/wp8/SshNet.Security.Cryptography.xml",
  4932. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4933. "sshnet.security.cryptography.nuspec"
  4934. ]
  4935. },
  4936. "StackExchange.Redis/1.2.4": {
  4937. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4938. "type": "package",
  4939. "path": "stackexchange.redis/1.2.4",
  4940. "files": [
  4941. ".nupkg.metadata",
  4942. ".signature.p7s",
  4943. "lib/net45/StackExchange.Redis.dll",
  4944. "lib/net45/StackExchange.Redis.xml",
  4945. "lib/net46/StackExchange.Redis.dll",
  4946. "lib/net46/StackExchange.Redis.xml",
  4947. "lib/netstandard1.5/StackExchange.Redis.dll",
  4948. "lib/netstandard1.5/StackExchange.Redis.xml",
  4949. "stackexchange.redis.1.2.4.nupkg.sha512",
  4950. "stackexchange.redis.nuspec"
  4951. ]
  4952. },
  4953. "Swashbuckle.AspNetCore/5.6.3": {
  4954. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4955. "type": "package",
  4956. "path": "swashbuckle.aspnetcore/5.6.3",
  4957. "files": [
  4958. ".nupkg.metadata",
  4959. ".signature.p7s",
  4960. "build/Swashbuckle.AspNetCore.props",
  4961. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4962. "swashbuckle.aspnetcore.nuspec"
  4963. ]
  4964. },
  4965. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4966. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4967. "type": "package",
  4968. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4969. "files": [
  4970. ".nupkg.metadata",
  4971. ".signature.p7s",
  4972. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4973. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4974. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4975. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4976. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4977. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4978. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4979. "swashbuckle.aspnetcore.swagger.nuspec"
  4980. ]
  4981. },
  4982. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4983. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4984. "type": "package",
  4985. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4986. "files": [
  4987. ".nupkg.metadata",
  4988. ".signature.p7s",
  4989. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4990. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4991. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4992. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4993. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4994. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4995. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4996. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4997. ]
  4998. },
  4999. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5000. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5001. "type": "package",
  5002. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5003. "files": [
  5004. ".nupkg.metadata",
  5005. ".signature.p7s",
  5006. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5007. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5008. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5009. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5010. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5011. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5012. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5013. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5014. ]
  5015. },
  5016. "System.AppContext/4.3.0": {
  5017. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5018. "type": "package",
  5019. "path": "system.appcontext/4.3.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "ThirdPartyNotices.txt",
  5024. "dotnet_library_license.txt",
  5025. "lib/MonoAndroid10/_._",
  5026. "lib/MonoTouch10/_._",
  5027. "lib/net46/System.AppContext.dll",
  5028. "lib/net463/System.AppContext.dll",
  5029. "lib/netcore50/System.AppContext.dll",
  5030. "lib/netstandard1.6/System.AppContext.dll",
  5031. "lib/xamarinios10/_._",
  5032. "lib/xamarinmac20/_._",
  5033. "lib/xamarintvos10/_._",
  5034. "lib/xamarinwatchos10/_._",
  5035. "ref/MonoAndroid10/_._",
  5036. "ref/MonoTouch10/_._",
  5037. "ref/net46/System.AppContext.dll",
  5038. "ref/net463/System.AppContext.dll",
  5039. "ref/netstandard/_._",
  5040. "ref/netstandard1.3/System.AppContext.dll",
  5041. "ref/netstandard1.3/System.AppContext.xml",
  5042. "ref/netstandard1.3/de/System.AppContext.xml",
  5043. "ref/netstandard1.3/es/System.AppContext.xml",
  5044. "ref/netstandard1.3/fr/System.AppContext.xml",
  5045. "ref/netstandard1.3/it/System.AppContext.xml",
  5046. "ref/netstandard1.3/ja/System.AppContext.xml",
  5047. "ref/netstandard1.3/ko/System.AppContext.xml",
  5048. "ref/netstandard1.3/ru/System.AppContext.xml",
  5049. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5050. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5051. "ref/netstandard1.6/System.AppContext.dll",
  5052. "ref/netstandard1.6/System.AppContext.xml",
  5053. "ref/netstandard1.6/de/System.AppContext.xml",
  5054. "ref/netstandard1.6/es/System.AppContext.xml",
  5055. "ref/netstandard1.6/fr/System.AppContext.xml",
  5056. "ref/netstandard1.6/it/System.AppContext.xml",
  5057. "ref/netstandard1.6/ja/System.AppContext.xml",
  5058. "ref/netstandard1.6/ko/System.AppContext.xml",
  5059. "ref/netstandard1.6/ru/System.AppContext.xml",
  5060. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5061. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5062. "ref/xamarinios10/_._",
  5063. "ref/xamarinmac20/_._",
  5064. "ref/xamarintvos10/_._",
  5065. "ref/xamarinwatchos10/_._",
  5066. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5067. "system.appcontext.4.3.0.nupkg.sha512",
  5068. "system.appcontext.nuspec"
  5069. ]
  5070. },
  5071. "System.Buffers/4.5.1": {
  5072. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5073. "type": "package",
  5074. "path": "system.buffers/4.5.1",
  5075. "files": [
  5076. ".nupkg.metadata",
  5077. ".signature.p7s",
  5078. "LICENSE.TXT",
  5079. "THIRD-PARTY-NOTICES.TXT",
  5080. "lib/net461/System.Buffers.dll",
  5081. "lib/net461/System.Buffers.xml",
  5082. "lib/netcoreapp2.0/_._",
  5083. "lib/netstandard1.1/System.Buffers.dll",
  5084. "lib/netstandard1.1/System.Buffers.xml",
  5085. "lib/netstandard2.0/System.Buffers.dll",
  5086. "lib/netstandard2.0/System.Buffers.xml",
  5087. "lib/uap10.0.16299/_._",
  5088. "ref/net45/System.Buffers.dll",
  5089. "ref/net45/System.Buffers.xml",
  5090. "ref/netcoreapp2.0/_._",
  5091. "ref/netstandard1.1/System.Buffers.dll",
  5092. "ref/netstandard1.1/System.Buffers.xml",
  5093. "ref/netstandard2.0/System.Buffers.dll",
  5094. "ref/netstandard2.0/System.Buffers.xml",
  5095. "ref/uap10.0.16299/_._",
  5096. "system.buffers.4.5.1.nupkg.sha512",
  5097. "system.buffers.nuspec",
  5098. "useSharedDesignerContext.txt",
  5099. "version.txt"
  5100. ]
  5101. },
  5102. "System.Collections/4.3.0": {
  5103. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5104. "type": "package",
  5105. "path": "system.collections/4.3.0",
  5106. "files": [
  5107. ".nupkg.metadata",
  5108. ".signature.p7s",
  5109. "ThirdPartyNotices.txt",
  5110. "dotnet_library_license.txt",
  5111. "lib/MonoAndroid10/_._",
  5112. "lib/MonoTouch10/_._",
  5113. "lib/net45/_._",
  5114. "lib/portable-net45+win8+wp8+wpa81/_._",
  5115. "lib/win8/_._",
  5116. "lib/wp80/_._",
  5117. "lib/wpa81/_._",
  5118. "lib/xamarinios10/_._",
  5119. "lib/xamarinmac20/_._",
  5120. "lib/xamarintvos10/_._",
  5121. "lib/xamarinwatchos10/_._",
  5122. "ref/MonoAndroid10/_._",
  5123. "ref/MonoTouch10/_._",
  5124. "ref/net45/_._",
  5125. "ref/netcore50/System.Collections.dll",
  5126. "ref/netcore50/System.Collections.xml",
  5127. "ref/netcore50/de/System.Collections.xml",
  5128. "ref/netcore50/es/System.Collections.xml",
  5129. "ref/netcore50/fr/System.Collections.xml",
  5130. "ref/netcore50/it/System.Collections.xml",
  5131. "ref/netcore50/ja/System.Collections.xml",
  5132. "ref/netcore50/ko/System.Collections.xml",
  5133. "ref/netcore50/ru/System.Collections.xml",
  5134. "ref/netcore50/zh-hans/System.Collections.xml",
  5135. "ref/netcore50/zh-hant/System.Collections.xml",
  5136. "ref/netstandard1.0/System.Collections.dll",
  5137. "ref/netstandard1.0/System.Collections.xml",
  5138. "ref/netstandard1.0/de/System.Collections.xml",
  5139. "ref/netstandard1.0/es/System.Collections.xml",
  5140. "ref/netstandard1.0/fr/System.Collections.xml",
  5141. "ref/netstandard1.0/it/System.Collections.xml",
  5142. "ref/netstandard1.0/ja/System.Collections.xml",
  5143. "ref/netstandard1.0/ko/System.Collections.xml",
  5144. "ref/netstandard1.0/ru/System.Collections.xml",
  5145. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5146. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5147. "ref/netstandard1.3/System.Collections.dll",
  5148. "ref/netstandard1.3/System.Collections.xml",
  5149. "ref/netstandard1.3/de/System.Collections.xml",
  5150. "ref/netstandard1.3/es/System.Collections.xml",
  5151. "ref/netstandard1.3/fr/System.Collections.xml",
  5152. "ref/netstandard1.3/it/System.Collections.xml",
  5153. "ref/netstandard1.3/ja/System.Collections.xml",
  5154. "ref/netstandard1.3/ko/System.Collections.xml",
  5155. "ref/netstandard1.3/ru/System.Collections.xml",
  5156. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5157. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5158. "ref/portable-net45+win8+wp8+wpa81/_._",
  5159. "ref/win8/_._",
  5160. "ref/wp80/_._",
  5161. "ref/wpa81/_._",
  5162. "ref/xamarinios10/_._",
  5163. "ref/xamarinmac20/_._",
  5164. "ref/xamarintvos10/_._",
  5165. "ref/xamarinwatchos10/_._",
  5166. "system.collections.4.3.0.nupkg.sha512",
  5167. "system.collections.nuspec"
  5168. ]
  5169. },
  5170. "System.Collections.Concurrent/4.3.0": {
  5171. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5172. "type": "package",
  5173. "path": "system.collections.concurrent/4.3.0",
  5174. "files": [
  5175. ".nupkg.metadata",
  5176. ".signature.p7s",
  5177. "ThirdPartyNotices.txt",
  5178. "dotnet_library_license.txt",
  5179. "lib/MonoAndroid10/_._",
  5180. "lib/MonoTouch10/_._",
  5181. "lib/net45/_._",
  5182. "lib/netcore50/System.Collections.Concurrent.dll",
  5183. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5184. "lib/portable-net45+win8+wpa81/_._",
  5185. "lib/win8/_._",
  5186. "lib/wpa81/_._",
  5187. "lib/xamarinios10/_._",
  5188. "lib/xamarinmac20/_._",
  5189. "lib/xamarintvos10/_._",
  5190. "lib/xamarinwatchos10/_._",
  5191. "ref/MonoAndroid10/_._",
  5192. "ref/MonoTouch10/_._",
  5193. "ref/net45/_._",
  5194. "ref/netcore50/System.Collections.Concurrent.dll",
  5195. "ref/netcore50/System.Collections.Concurrent.xml",
  5196. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5197. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5198. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5199. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5200. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5201. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5202. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5203. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5204. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5205. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5206. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5207. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5208. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5209. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5210. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5211. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5212. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5213. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5214. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5215. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5216. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5217. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5218. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5219. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5220. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5221. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5222. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5223. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5224. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5225. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5226. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5227. "ref/portable-net45+win8+wpa81/_._",
  5228. "ref/win8/_._",
  5229. "ref/wpa81/_._",
  5230. "ref/xamarinios10/_._",
  5231. "ref/xamarinmac20/_._",
  5232. "ref/xamarintvos10/_._",
  5233. "ref/xamarinwatchos10/_._",
  5234. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5235. "system.collections.concurrent.nuspec"
  5236. ]
  5237. },
  5238. "System.Collections.Immutable/5.0.0": {
  5239. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5240. "type": "package",
  5241. "path": "system.collections.immutable/5.0.0",
  5242. "files": [
  5243. ".nupkg.metadata",
  5244. ".signature.p7s",
  5245. "Icon.png",
  5246. "LICENSE.TXT",
  5247. "THIRD-PARTY-NOTICES.TXT",
  5248. "lib/net461/System.Collections.Immutable.dll",
  5249. "lib/net461/System.Collections.Immutable.xml",
  5250. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5251. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5252. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5253. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5254. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5255. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5256. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5257. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5258. "system.collections.immutable.5.0.0.nupkg.sha512",
  5259. "system.collections.immutable.nuspec",
  5260. "useSharedDesignerContext.txt",
  5261. "version.txt"
  5262. ]
  5263. },
  5264. "System.Collections.NonGeneric/4.3.0": {
  5265. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5266. "type": "package",
  5267. "path": "system.collections.nongeneric/4.3.0",
  5268. "files": [
  5269. ".nupkg.metadata",
  5270. ".signature.p7s",
  5271. "ThirdPartyNotices.txt",
  5272. "dotnet_library_license.txt",
  5273. "lib/MonoAndroid10/_._",
  5274. "lib/MonoTouch10/_._",
  5275. "lib/net46/System.Collections.NonGeneric.dll",
  5276. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5277. "lib/xamarinios10/_._",
  5278. "lib/xamarinmac20/_._",
  5279. "lib/xamarintvos10/_._",
  5280. "lib/xamarinwatchos10/_._",
  5281. "ref/MonoAndroid10/_._",
  5282. "ref/MonoTouch10/_._",
  5283. "ref/net46/System.Collections.NonGeneric.dll",
  5284. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5285. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5286. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5287. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5288. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5289. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5290. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5291. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5292. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5293. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5294. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5295. "ref/xamarinios10/_._",
  5296. "ref/xamarinmac20/_._",
  5297. "ref/xamarintvos10/_._",
  5298. "ref/xamarinwatchos10/_._",
  5299. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5300. "system.collections.nongeneric.nuspec"
  5301. ]
  5302. },
  5303. "System.Collections.Specialized/4.3.0": {
  5304. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5305. "type": "package",
  5306. "path": "system.collections.specialized/4.3.0",
  5307. "files": [
  5308. ".nupkg.metadata",
  5309. ".signature.p7s",
  5310. "ThirdPartyNotices.txt",
  5311. "dotnet_library_license.txt",
  5312. "lib/MonoAndroid10/_._",
  5313. "lib/MonoTouch10/_._",
  5314. "lib/net46/System.Collections.Specialized.dll",
  5315. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5316. "lib/xamarinios10/_._",
  5317. "lib/xamarinmac20/_._",
  5318. "lib/xamarintvos10/_._",
  5319. "lib/xamarinwatchos10/_._",
  5320. "ref/MonoAndroid10/_._",
  5321. "ref/MonoTouch10/_._",
  5322. "ref/net46/System.Collections.Specialized.dll",
  5323. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5324. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5325. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5326. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5327. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5328. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5329. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5330. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5331. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5332. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5333. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5334. "ref/xamarinios10/_._",
  5335. "ref/xamarinmac20/_._",
  5336. "ref/xamarintvos10/_._",
  5337. "ref/xamarinwatchos10/_._",
  5338. "system.collections.specialized.4.3.0.nupkg.sha512",
  5339. "system.collections.specialized.nuspec"
  5340. ]
  5341. },
  5342. "System.ComponentModel/4.3.0": {
  5343. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5344. "type": "package",
  5345. "path": "system.componentmodel/4.3.0",
  5346. "files": [
  5347. ".nupkg.metadata",
  5348. ".signature.p7s",
  5349. "ThirdPartyNotices.txt",
  5350. "dotnet_library_license.txt",
  5351. "lib/MonoAndroid10/_._",
  5352. "lib/MonoTouch10/_._",
  5353. "lib/net45/_._",
  5354. "lib/netcore50/System.ComponentModel.dll",
  5355. "lib/netstandard1.3/System.ComponentModel.dll",
  5356. "lib/portable-net45+win8+wp8+wpa81/_._",
  5357. "lib/win8/_._",
  5358. "lib/wp80/_._",
  5359. "lib/wpa81/_._",
  5360. "lib/xamarinios10/_._",
  5361. "lib/xamarinmac20/_._",
  5362. "lib/xamarintvos10/_._",
  5363. "lib/xamarinwatchos10/_._",
  5364. "ref/MonoAndroid10/_._",
  5365. "ref/MonoTouch10/_._",
  5366. "ref/net45/_._",
  5367. "ref/netcore50/System.ComponentModel.dll",
  5368. "ref/netcore50/System.ComponentModel.xml",
  5369. "ref/netcore50/de/System.ComponentModel.xml",
  5370. "ref/netcore50/es/System.ComponentModel.xml",
  5371. "ref/netcore50/fr/System.ComponentModel.xml",
  5372. "ref/netcore50/it/System.ComponentModel.xml",
  5373. "ref/netcore50/ja/System.ComponentModel.xml",
  5374. "ref/netcore50/ko/System.ComponentModel.xml",
  5375. "ref/netcore50/ru/System.ComponentModel.xml",
  5376. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5377. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5378. "ref/netstandard1.0/System.ComponentModel.dll",
  5379. "ref/netstandard1.0/System.ComponentModel.xml",
  5380. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5381. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5382. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5383. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5384. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5385. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5386. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5387. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5388. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5389. "ref/portable-net45+win8+wp8+wpa81/_._",
  5390. "ref/win8/_._",
  5391. "ref/wp80/_._",
  5392. "ref/wpa81/_._",
  5393. "ref/xamarinios10/_._",
  5394. "ref/xamarinmac20/_._",
  5395. "ref/xamarintvos10/_._",
  5396. "ref/xamarinwatchos10/_._",
  5397. "system.componentmodel.4.3.0.nupkg.sha512",
  5398. "system.componentmodel.nuspec"
  5399. ]
  5400. },
  5401. "System.ComponentModel.Annotations/5.0.0": {
  5402. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5403. "type": "package",
  5404. "path": "system.componentmodel.annotations/5.0.0",
  5405. "files": [
  5406. ".nupkg.metadata",
  5407. ".signature.p7s",
  5408. "Icon.png",
  5409. "LICENSE.TXT",
  5410. "THIRD-PARTY-NOTICES.TXT",
  5411. "lib/MonoAndroid10/_._",
  5412. "lib/MonoTouch10/_._",
  5413. "lib/net45/_._",
  5414. "lib/net461/System.ComponentModel.Annotations.dll",
  5415. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5416. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5417. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5418. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5419. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5420. "lib/portable-net45+win8/_._",
  5421. "lib/win8/_._",
  5422. "lib/xamarinios10/_._",
  5423. "lib/xamarinmac20/_._",
  5424. "lib/xamarintvos10/_._",
  5425. "lib/xamarinwatchos10/_._",
  5426. "ref/MonoAndroid10/_._",
  5427. "ref/MonoTouch10/_._",
  5428. "ref/net45/_._",
  5429. "ref/net461/System.ComponentModel.Annotations.dll",
  5430. "ref/net461/System.ComponentModel.Annotations.xml",
  5431. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5432. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5433. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5434. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5435. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5436. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5437. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5438. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5439. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5440. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5441. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5442. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5443. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5444. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5445. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5446. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5447. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5448. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5449. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5450. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5451. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5452. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5453. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5454. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5455. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5456. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5457. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5458. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5459. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5460. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5461. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5462. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5463. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5464. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5465. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5466. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5467. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5468. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5469. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5470. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5471. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5472. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5473. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5474. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5475. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5476. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5477. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5478. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5479. "ref/portable-net45+win8/_._",
  5480. "ref/win8/_._",
  5481. "ref/xamarinios10/_._",
  5482. "ref/xamarinmac20/_._",
  5483. "ref/xamarintvos10/_._",
  5484. "ref/xamarinwatchos10/_._",
  5485. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5486. "system.componentmodel.annotations.nuspec",
  5487. "useSharedDesignerContext.txt",
  5488. "version.txt"
  5489. ]
  5490. },
  5491. "System.ComponentModel.Primitives/4.3.0": {
  5492. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5493. "type": "package",
  5494. "path": "system.componentmodel.primitives/4.3.0",
  5495. "files": [
  5496. ".nupkg.metadata",
  5497. ".signature.p7s",
  5498. "ThirdPartyNotices.txt",
  5499. "dotnet_library_license.txt",
  5500. "lib/MonoAndroid10/_._",
  5501. "lib/MonoTouch10/_._",
  5502. "lib/net45/System.ComponentModel.Primitives.dll",
  5503. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5504. "lib/xamarinios10/_._",
  5505. "lib/xamarinmac20/_._",
  5506. "lib/xamarintvos10/_._",
  5507. "lib/xamarinwatchos10/_._",
  5508. "ref/MonoAndroid10/_._",
  5509. "ref/MonoTouch10/_._",
  5510. "ref/net45/System.ComponentModel.Primitives.dll",
  5511. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5512. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5513. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5514. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5515. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5516. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5517. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5518. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5519. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5520. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5521. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5522. "ref/xamarinios10/_._",
  5523. "ref/xamarinmac20/_._",
  5524. "ref/xamarintvos10/_._",
  5525. "ref/xamarinwatchos10/_._",
  5526. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5527. "system.componentmodel.primitives.nuspec"
  5528. ]
  5529. },
  5530. "System.ComponentModel.TypeConverter/4.3.0": {
  5531. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5532. "type": "package",
  5533. "path": "system.componentmodel.typeconverter/4.3.0",
  5534. "files": [
  5535. ".nupkg.metadata",
  5536. ".signature.p7s",
  5537. "ThirdPartyNotices.txt",
  5538. "dotnet_library_license.txt",
  5539. "lib/MonoAndroid10/_._",
  5540. "lib/MonoTouch10/_._",
  5541. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5542. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5543. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5544. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5545. "lib/xamarinios10/_._",
  5546. "lib/xamarinmac20/_._",
  5547. "lib/xamarintvos10/_._",
  5548. "lib/xamarinwatchos10/_._",
  5549. "ref/MonoAndroid10/_._",
  5550. "ref/MonoTouch10/_._",
  5551. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5552. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5553. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5554. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5555. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5556. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5557. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5558. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5559. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5560. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5561. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5562. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5563. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5564. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5565. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5566. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5567. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5568. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5569. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5570. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5571. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5572. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5573. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5574. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5575. "ref/xamarinios10/_._",
  5576. "ref/xamarinmac20/_._",
  5577. "ref/xamarintvos10/_._",
  5578. "ref/xamarinwatchos10/_._",
  5579. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5580. "system.componentmodel.typeconverter.nuspec"
  5581. ]
  5582. },
  5583. "System.Configuration.ConfigurationManager/4.7.0": {
  5584. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5585. "type": "package",
  5586. "path": "system.configuration.configurationmanager/4.7.0",
  5587. "files": [
  5588. ".nupkg.metadata",
  5589. ".signature.p7s",
  5590. "LICENSE.TXT",
  5591. "THIRD-PARTY-NOTICES.TXT",
  5592. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5593. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5594. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5595. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5596. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5597. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5598. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5599. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5600. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5601. "system.configuration.configurationmanager.nuspec",
  5602. "useSharedDesignerContext.txt",
  5603. "version.txt"
  5604. ]
  5605. },
  5606. "System.Console/4.3.0": {
  5607. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5608. "type": "package",
  5609. "path": "system.console/4.3.0",
  5610. "files": [
  5611. ".nupkg.metadata",
  5612. ".signature.p7s",
  5613. "ThirdPartyNotices.txt",
  5614. "dotnet_library_license.txt",
  5615. "lib/MonoAndroid10/_._",
  5616. "lib/MonoTouch10/_._",
  5617. "lib/net46/System.Console.dll",
  5618. "lib/xamarinios10/_._",
  5619. "lib/xamarinmac20/_._",
  5620. "lib/xamarintvos10/_._",
  5621. "lib/xamarinwatchos10/_._",
  5622. "ref/MonoAndroid10/_._",
  5623. "ref/MonoTouch10/_._",
  5624. "ref/net46/System.Console.dll",
  5625. "ref/netstandard1.3/System.Console.dll",
  5626. "ref/netstandard1.3/System.Console.xml",
  5627. "ref/netstandard1.3/de/System.Console.xml",
  5628. "ref/netstandard1.3/es/System.Console.xml",
  5629. "ref/netstandard1.3/fr/System.Console.xml",
  5630. "ref/netstandard1.3/it/System.Console.xml",
  5631. "ref/netstandard1.3/ja/System.Console.xml",
  5632. "ref/netstandard1.3/ko/System.Console.xml",
  5633. "ref/netstandard1.3/ru/System.Console.xml",
  5634. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5635. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5636. "ref/xamarinios10/_._",
  5637. "ref/xamarinmac20/_._",
  5638. "ref/xamarintvos10/_._",
  5639. "ref/xamarinwatchos10/_._",
  5640. "system.console.4.3.0.nupkg.sha512",
  5641. "system.console.nuspec"
  5642. ]
  5643. },
  5644. "System.Diagnostics.Debug/4.3.0": {
  5645. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5646. "type": "package",
  5647. "path": "system.diagnostics.debug/4.3.0",
  5648. "files": [
  5649. ".nupkg.metadata",
  5650. ".signature.p7s",
  5651. "ThirdPartyNotices.txt",
  5652. "dotnet_library_license.txt",
  5653. "lib/MonoAndroid10/_._",
  5654. "lib/MonoTouch10/_._",
  5655. "lib/net45/_._",
  5656. "lib/portable-net45+win8+wp8+wpa81/_._",
  5657. "lib/win8/_._",
  5658. "lib/wp80/_._",
  5659. "lib/wpa81/_._",
  5660. "lib/xamarinios10/_._",
  5661. "lib/xamarinmac20/_._",
  5662. "lib/xamarintvos10/_._",
  5663. "lib/xamarinwatchos10/_._",
  5664. "ref/MonoAndroid10/_._",
  5665. "ref/MonoTouch10/_._",
  5666. "ref/net45/_._",
  5667. "ref/netcore50/System.Diagnostics.Debug.dll",
  5668. "ref/netcore50/System.Diagnostics.Debug.xml",
  5669. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5670. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5671. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5672. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5673. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5674. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5675. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5676. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5677. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5678. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5679. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5680. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5681. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5682. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5683. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5684. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5685. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5686. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5687. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5688. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5689. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5690. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5691. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5692. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5693. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5694. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5695. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5696. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5697. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5698. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5699. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5700. "ref/portable-net45+win8+wp8+wpa81/_._",
  5701. "ref/win8/_._",
  5702. "ref/wp80/_._",
  5703. "ref/wpa81/_._",
  5704. "ref/xamarinios10/_._",
  5705. "ref/xamarinmac20/_._",
  5706. "ref/xamarintvos10/_._",
  5707. "ref/xamarinwatchos10/_._",
  5708. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5709. "system.diagnostics.debug.nuspec"
  5710. ]
  5711. },
  5712. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5713. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5714. "type": "package",
  5715. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5716. "files": [
  5717. ".nupkg.metadata",
  5718. ".signature.p7s",
  5719. "Icon.png",
  5720. "LICENSE.TXT",
  5721. "THIRD-PARTY-NOTICES.TXT",
  5722. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5723. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5724. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5725. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5726. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5727. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5728. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5729. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5730. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5731. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5732. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5733. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5734. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5735. "system.diagnostics.diagnosticsource.nuspec",
  5736. "useSharedDesignerContext.txt",
  5737. "version.txt"
  5738. ]
  5739. },
  5740. "System.Diagnostics.Tools/4.3.0": {
  5741. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5742. "type": "package",
  5743. "path": "system.diagnostics.tools/4.3.0",
  5744. "files": [
  5745. ".nupkg.metadata",
  5746. ".signature.p7s",
  5747. "ThirdPartyNotices.txt",
  5748. "dotnet_library_license.txt",
  5749. "lib/MonoAndroid10/_._",
  5750. "lib/MonoTouch10/_._",
  5751. "lib/net45/_._",
  5752. "lib/portable-net45+win8+wp8+wpa81/_._",
  5753. "lib/win8/_._",
  5754. "lib/wp80/_._",
  5755. "lib/wpa81/_._",
  5756. "lib/xamarinios10/_._",
  5757. "lib/xamarinmac20/_._",
  5758. "lib/xamarintvos10/_._",
  5759. "lib/xamarinwatchos10/_._",
  5760. "ref/MonoAndroid10/_._",
  5761. "ref/MonoTouch10/_._",
  5762. "ref/net45/_._",
  5763. "ref/netcore50/System.Diagnostics.Tools.dll",
  5764. "ref/netcore50/System.Diagnostics.Tools.xml",
  5765. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5766. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5767. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5768. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5769. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5770. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5771. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5772. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5773. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5774. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5775. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5776. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5777. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5778. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5779. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5780. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5781. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5782. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5783. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5784. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5785. "ref/portable-net45+win8+wp8+wpa81/_._",
  5786. "ref/win8/_._",
  5787. "ref/wp80/_._",
  5788. "ref/wpa81/_._",
  5789. "ref/xamarinios10/_._",
  5790. "ref/xamarinmac20/_._",
  5791. "ref/xamarintvos10/_._",
  5792. "ref/xamarinwatchos10/_._",
  5793. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5794. "system.diagnostics.tools.nuspec"
  5795. ]
  5796. },
  5797. "System.Diagnostics.TraceSource/4.3.0": {
  5798. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5799. "type": "package",
  5800. "path": "system.diagnostics.tracesource/4.3.0",
  5801. "files": [
  5802. ".nupkg.metadata",
  5803. ".signature.p7s",
  5804. "ThirdPartyNotices.txt",
  5805. "dotnet_library_license.txt",
  5806. "lib/MonoAndroid10/_._",
  5807. "lib/MonoTouch10/_._",
  5808. "lib/net46/System.Diagnostics.TraceSource.dll",
  5809. "lib/xamarinios10/_._",
  5810. "lib/xamarinmac20/_._",
  5811. "lib/xamarintvos10/_._",
  5812. "lib/xamarinwatchos10/_._",
  5813. "ref/MonoAndroid10/_._",
  5814. "ref/MonoTouch10/_._",
  5815. "ref/net46/System.Diagnostics.TraceSource.dll",
  5816. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5817. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5818. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5819. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5820. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5821. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5822. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5823. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5824. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5825. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5826. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5827. "ref/xamarinios10/_._",
  5828. "ref/xamarinmac20/_._",
  5829. "ref/xamarintvos10/_._",
  5830. "ref/xamarinwatchos10/_._",
  5831. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5832. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5833. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5834. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5835. "system.diagnostics.tracesource.nuspec"
  5836. ]
  5837. },
  5838. "System.Diagnostics.Tracing/4.3.0": {
  5839. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5840. "type": "package",
  5841. "path": "system.diagnostics.tracing/4.3.0",
  5842. "files": [
  5843. ".nupkg.metadata",
  5844. ".signature.p7s",
  5845. "ThirdPartyNotices.txt",
  5846. "dotnet_library_license.txt",
  5847. "lib/MonoAndroid10/_._",
  5848. "lib/MonoTouch10/_._",
  5849. "lib/net45/_._",
  5850. "lib/net462/System.Diagnostics.Tracing.dll",
  5851. "lib/portable-net45+win8+wpa81/_._",
  5852. "lib/win8/_._",
  5853. "lib/wpa81/_._",
  5854. "lib/xamarinios10/_._",
  5855. "lib/xamarinmac20/_._",
  5856. "lib/xamarintvos10/_._",
  5857. "lib/xamarinwatchos10/_._",
  5858. "ref/MonoAndroid10/_._",
  5859. "ref/MonoTouch10/_._",
  5860. "ref/net45/_._",
  5861. "ref/net462/System.Diagnostics.Tracing.dll",
  5862. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5863. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5864. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5865. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5866. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5867. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5868. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5869. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5870. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5871. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5872. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5873. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5874. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5875. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5876. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5877. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5878. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5879. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5880. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5881. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5882. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5883. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5885. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5887. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5888. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5890. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5891. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5896. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5899. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5900. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5901. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5902. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5903. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5904. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5905. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5906. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5907. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5908. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5909. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5910. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5911. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5912. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5913. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5914. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5915. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5916. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5917. "ref/portable-net45+win8+wpa81/_._",
  5918. "ref/win8/_._",
  5919. "ref/wpa81/_._",
  5920. "ref/xamarinios10/_._",
  5921. "ref/xamarinmac20/_._",
  5922. "ref/xamarintvos10/_._",
  5923. "ref/xamarinwatchos10/_._",
  5924. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5925. "system.diagnostics.tracing.nuspec"
  5926. ]
  5927. },
  5928. "System.Drawing.Common/5.0.3": {
  5929. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5930. "type": "package",
  5931. "path": "system.drawing.common/5.0.3",
  5932. "files": [
  5933. ".nupkg.metadata",
  5934. ".signature.p7s",
  5935. "Icon.png",
  5936. "LICENSE.TXT",
  5937. "THIRD-PARTY-NOTICES.TXT",
  5938. "lib/MonoAndroid10/_._",
  5939. "lib/MonoTouch10/_._",
  5940. "lib/net461/System.Drawing.Common.dll",
  5941. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5942. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5943. "lib/netstandard2.0/System.Drawing.Common.dll",
  5944. "lib/xamarinios10/_._",
  5945. "lib/xamarinmac20/_._",
  5946. "lib/xamarintvos10/_._",
  5947. "lib/xamarinwatchos10/_._",
  5948. "ref/MonoAndroid10/_._",
  5949. "ref/MonoTouch10/_._",
  5950. "ref/net461/System.Drawing.Common.dll",
  5951. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5952. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5953. "ref/netstandard2.0/System.Drawing.Common.dll",
  5954. "ref/xamarinios10/_._",
  5955. "ref/xamarinmac20/_._",
  5956. "ref/xamarintvos10/_._",
  5957. "ref/xamarinwatchos10/_._",
  5958. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5959. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5960. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5961. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5962. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5963. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5964. "system.drawing.common.5.0.3.nupkg.sha512",
  5965. "system.drawing.common.nuspec",
  5966. "useSharedDesignerContext.txt",
  5967. "version.txt"
  5968. ]
  5969. },
  5970. "System.Dynamic.Runtime/4.3.0": {
  5971. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5972. "type": "package",
  5973. "path": "system.dynamic.runtime/4.3.0",
  5974. "files": [
  5975. ".nupkg.metadata",
  5976. ".signature.p7s",
  5977. "ThirdPartyNotices.txt",
  5978. "dotnet_library_license.txt",
  5979. "lib/MonoAndroid10/_._",
  5980. "lib/MonoTouch10/_._",
  5981. "lib/net45/_._",
  5982. "lib/netcore50/System.Dynamic.Runtime.dll",
  5983. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5984. "lib/portable-net45+win8+wp8+wpa81/_._",
  5985. "lib/win8/_._",
  5986. "lib/wp80/_._",
  5987. "lib/wpa81/_._",
  5988. "lib/xamarinios10/_._",
  5989. "lib/xamarinmac20/_._",
  5990. "lib/xamarintvos10/_._",
  5991. "lib/xamarinwatchos10/_._",
  5992. "ref/MonoAndroid10/_._",
  5993. "ref/MonoTouch10/_._",
  5994. "ref/net45/_._",
  5995. "ref/netcore50/System.Dynamic.Runtime.dll",
  5996. "ref/netcore50/System.Dynamic.Runtime.xml",
  5997. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5998. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5999. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6000. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6001. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6002. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6003. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6004. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6005. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6006. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6007. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6008. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6009. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6010. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6011. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6012. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6013. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6014. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6015. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6016. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6017. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6018. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6019. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6020. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6021. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6022. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6023. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6024. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6025. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6026. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6027. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6028. "ref/portable-net45+win8+wp8+wpa81/_._",
  6029. "ref/win8/_._",
  6030. "ref/wp80/_._",
  6031. "ref/wpa81/_._",
  6032. "ref/xamarinios10/_._",
  6033. "ref/xamarinmac20/_._",
  6034. "ref/xamarintvos10/_._",
  6035. "ref/xamarinwatchos10/_._",
  6036. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6037. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6038. "system.dynamic.runtime.nuspec"
  6039. ]
  6040. },
  6041. "System.Globalization/4.3.0": {
  6042. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6043. "type": "package",
  6044. "path": "system.globalization/4.3.0",
  6045. "files": [
  6046. ".nupkg.metadata",
  6047. ".signature.p7s",
  6048. "ThirdPartyNotices.txt",
  6049. "dotnet_library_license.txt",
  6050. "lib/MonoAndroid10/_._",
  6051. "lib/MonoTouch10/_._",
  6052. "lib/net45/_._",
  6053. "lib/portable-net45+win8+wp8+wpa81/_._",
  6054. "lib/win8/_._",
  6055. "lib/wp80/_._",
  6056. "lib/wpa81/_._",
  6057. "lib/xamarinios10/_._",
  6058. "lib/xamarinmac20/_._",
  6059. "lib/xamarintvos10/_._",
  6060. "lib/xamarinwatchos10/_._",
  6061. "ref/MonoAndroid10/_._",
  6062. "ref/MonoTouch10/_._",
  6063. "ref/net45/_._",
  6064. "ref/netcore50/System.Globalization.dll",
  6065. "ref/netcore50/System.Globalization.xml",
  6066. "ref/netcore50/de/System.Globalization.xml",
  6067. "ref/netcore50/es/System.Globalization.xml",
  6068. "ref/netcore50/fr/System.Globalization.xml",
  6069. "ref/netcore50/it/System.Globalization.xml",
  6070. "ref/netcore50/ja/System.Globalization.xml",
  6071. "ref/netcore50/ko/System.Globalization.xml",
  6072. "ref/netcore50/ru/System.Globalization.xml",
  6073. "ref/netcore50/zh-hans/System.Globalization.xml",
  6074. "ref/netcore50/zh-hant/System.Globalization.xml",
  6075. "ref/netstandard1.0/System.Globalization.dll",
  6076. "ref/netstandard1.0/System.Globalization.xml",
  6077. "ref/netstandard1.0/de/System.Globalization.xml",
  6078. "ref/netstandard1.0/es/System.Globalization.xml",
  6079. "ref/netstandard1.0/fr/System.Globalization.xml",
  6080. "ref/netstandard1.0/it/System.Globalization.xml",
  6081. "ref/netstandard1.0/ja/System.Globalization.xml",
  6082. "ref/netstandard1.0/ko/System.Globalization.xml",
  6083. "ref/netstandard1.0/ru/System.Globalization.xml",
  6084. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6085. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6086. "ref/netstandard1.3/System.Globalization.dll",
  6087. "ref/netstandard1.3/System.Globalization.xml",
  6088. "ref/netstandard1.3/de/System.Globalization.xml",
  6089. "ref/netstandard1.3/es/System.Globalization.xml",
  6090. "ref/netstandard1.3/fr/System.Globalization.xml",
  6091. "ref/netstandard1.3/it/System.Globalization.xml",
  6092. "ref/netstandard1.3/ja/System.Globalization.xml",
  6093. "ref/netstandard1.3/ko/System.Globalization.xml",
  6094. "ref/netstandard1.3/ru/System.Globalization.xml",
  6095. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6096. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6097. "ref/portable-net45+win8+wp8+wpa81/_._",
  6098. "ref/win8/_._",
  6099. "ref/wp80/_._",
  6100. "ref/wpa81/_._",
  6101. "ref/xamarinios10/_._",
  6102. "ref/xamarinmac20/_._",
  6103. "ref/xamarintvos10/_._",
  6104. "ref/xamarinwatchos10/_._",
  6105. "system.globalization.4.3.0.nupkg.sha512",
  6106. "system.globalization.nuspec"
  6107. ]
  6108. },
  6109. "System.Globalization.Calendars/4.3.0": {
  6110. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6111. "type": "package",
  6112. "path": "system.globalization.calendars/4.3.0",
  6113. "files": [
  6114. ".nupkg.metadata",
  6115. ".signature.p7s",
  6116. "ThirdPartyNotices.txt",
  6117. "dotnet_library_license.txt",
  6118. "lib/MonoAndroid10/_._",
  6119. "lib/MonoTouch10/_._",
  6120. "lib/net46/System.Globalization.Calendars.dll",
  6121. "lib/xamarinios10/_._",
  6122. "lib/xamarinmac20/_._",
  6123. "lib/xamarintvos10/_._",
  6124. "lib/xamarinwatchos10/_._",
  6125. "ref/MonoAndroid10/_._",
  6126. "ref/MonoTouch10/_._",
  6127. "ref/net46/System.Globalization.Calendars.dll",
  6128. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6129. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6130. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6131. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6132. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6133. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6134. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6135. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6136. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6137. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6138. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6139. "ref/xamarinios10/_._",
  6140. "ref/xamarinmac20/_._",
  6141. "ref/xamarintvos10/_._",
  6142. "ref/xamarinwatchos10/_._",
  6143. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6144. "system.globalization.calendars.nuspec"
  6145. ]
  6146. },
  6147. "System.Globalization.Extensions/4.3.0": {
  6148. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6149. "type": "package",
  6150. "path": "system.globalization.extensions/4.3.0",
  6151. "files": [
  6152. ".nupkg.metadata",
  6153. ".signature.p7s",
  6154. "ThirdPartyNotices.txt",
  6155. "dotnet_library_license.txt",
  6156. "lib/MonoAndroid10/_._",
  6157. "lib/MonoTouch10/_._",
  6158. "lib/net46/System.Globalization.Extensions.dll",
  6159. "lib/xamarinios10/_._",
  6160. "lib/xamarinmac20/_._",
  6161. "lib/xamarintvos10/_._",
  6162. "lib/xamarinwatchos10/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/net46/System.Globalization.Extensions.dll",
  6166. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6167. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6168. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6169. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6170. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6171. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6172. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6173. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6174. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6175. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6176. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6177. "ref/xamarinios10/_._",
  6178. "ref/xamarinmac20/_._",
  6179. "ref/xamarintvos10/_._",
  6180. "ref/xamarinwatchos10/_._",
  6181. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6182. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6183. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6184. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6185. "system.globalization.extensions.nuspec"
  6186. ]
  6187. },
  6188. "System.IO/4.3.0": {
  6189. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6190. "type": "package",
  6191. "path": "system.io/4.3.0",
  6192. "files": [
  6193. ".nupkg.metadata",
  6194. ".signature.p7s",
  6195. "ThirdPartyNotices.txt",
  6196. "dotnet_library_license.txt",
  6197. "lib/MonoAndroid10/_._",
  6198. "lib/MonoTouch10/_._",
  6199. "lib/net45/_._",
  6200. "lib/net462/System.IO.dll",
  6201. "lib/portable-net45+win8+wp8+wpa81/_._",
  6202. "lib/win8/_._",
  6203. "lib/wp80/_._",
  6204. "lib/wpa81/_._",
  6205. "lib/xamarinios10/_._",
  6206. "lib/xamarinmac20/_._",
  6207. "lib/xamarintvos10/_._",
  6208. "lib/xamarinwatchos10/_._",
  6209. "ref/MonoAndroid10/_._",
  6210. "ref/MonoTouch10/_._",
  6211. "ref/net45/_._",
  6212. "ref/net462/System.IO.dll",
  6213. "ref/netcore50/System.IO.dll",
  6214. "ref/netcore50/System.IO.xml",
  6215. "ref/netcore50/de/System.IO.xml",
  6216. "ref/netcore50/es/System.IO.xml",
  6217. "ref/netcore50/fr/System.IO.xml",
  6218. "ref/netcore50/it/System.IO.xml",
  6219. "ref/netcore50/ja/System.IO.xml",
  6220. "ref/netcore50/ko/System.IO.xml",
  6221. "ref/netcore50/ru/System.IO.xml",
  6222. "ref/netcore50/zh-hans/System.IO.xml",
  6223. "ref/netcore50/zh-hant/System.IO.xml",
  6224. "ref/netstandard1.0/System.IO.dll",
  6225. "ref/netstandard1.0/System.IO.xml",
  6226. "ref/netstandard1.0/de/System.IO.xml",
  6227. "ref/netstandard1.0/es/System.IO.xml",
  6228. "ref/netstandard1.0/fr/System.IO.xml",
  6229. "ref/netstandard1.0/it/System.IO.xml",
  6230. "ref/netstandard1.0/ja/System.IO.xml",
  6231. "ref/netstandard1.0/ko/System.IO.xml",
  6232. "ref/netstandard1.0/ru/System.IO.xml",
  6233. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6234. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6235. "ref/netstandard1.3/System.IO.dll",
  6236. "ref/netstandard1.3/System.IO.xml",
  6237. "ref/netstandard1.3/de/System.IO.xml",
  6238. "ref/netstandard1.3/es/System.IO.xml",
  6239. "ref/netstandard1.3/fr/System.IO.xml",
  6240. "ref/netstandard1.3/it/System.IO.xml",
  6241. "ref/netstandard1.3/ja/System.IO.xml",
  6242. "ref/netstandard1.3/ko/System.IO.xml",
  6243. "ref/netstandard1.3/ru/System.IO.xml",
  6244. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6245. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6246. "ref/netstandard1.5/System.IO.dll",
  6247. "ref/netstandard1.5/System.IO.xml",
  6248. "ref/netstandard1.5/de/System.IO.xml",
  6249. "ref/netstandard1.5/es/System.IO.xml",
  6250. "ref/netstandard1.5/fr/System.IO.xml",
  6251. "ref/netstandard1.5/it/System.IO.xml",
  6252. "ref/netstandard1.5/ja/System.IO.xml",
  6253. "ref/netstandard1.5/ko/System.IO.xml",
  6254. "ref/netstandard1.5/ru/System.IO.xml",
  6255. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6256. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6257. "ref/portable-net45+win8+wp8+wpa81/_._",
  6258. "ref/win8/_._",
  6259. "ref/wp80/_._",
  6260. "ref/wpa81/_._",
  6261. "ref/xamarinios10/_._",
  6262. "ref/xamarinmac20/_._",
  6263. "ref/xamarintvos10/_._",
  6264. "ref/xamarinwatchos10/_._",
  6265. "system.io.4.3.0.nupkg.sha512",
  6266. "system.io.nuspec"
  6267. ]
  6268. },
  6269. "System.IO.Compression/4.3.0": {
  6270. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6271. "type": "package",
  6272. "path": "system.io.compression/4.3.0",
  6273. "files": [
  6274. ".nupkg.metadata",
  6275. ".signature.p7s",
  6276. "ThirdPartyNotices.txt",
  6277. "dotnet_library_license.txt",
  6278. "lib/MonoAndroid10/_._",
  6279. "lib/MonoTouch10/_._",
  6280. "lib/net45/_._",
  6281. "lib/net46/System.IO.Compression.dll",
  6282. "lib/portable-net45+win8+wpa81/_._",
  6283. "lib/win8/_._",
  6284. "lib/wpa81/_._",
  6285. "lib/xamarinios10/_._",
  6286. "lib/xamarinmac20/_._",
  6287. "lib/xamarintvos10/_._",
  6288. "lib/xamarinwatchos10/_._",
  6289. "ref/MonoAndroid10/_._",
  6290. "ref/MonoTouch10/_._",
  6291. "ref/net45/_._",
  6292. "ref/net46/System.IO.Compression.dll",
  6293. "ref/netcore50/System.IO.Compression.dll",
  6294. "ref/netcore50/System.IO.Compression.xml",
  6295. "ref/netcore50/de/System.IO.Compression.xml",
  6296. "ref/netcore50/es/System.IO.Compression.xml",
  6297. "ref/netcore50/fr/System.IO.Compression.xml",
  6298. "ref/netcore50/it/System.IO.Compression.xml",
  6299. "ref/netcore50/ja/System.IO.Compression.xml",
  6300. "ref/netcore50/ko/System.IO.Compression.xml",
  6301. "ref/netcore50/ru/System.IO.Compression.xml",
  6302. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6303. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6304. "ref/netstandard1.1/System.IO.Compression.dll",
  6305. "ref/netstandard1.1/System.IO.Compression.xml",
  6306. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6307. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6308. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6309. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6310. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6311. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6312. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6313. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6314. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6315. "ref/netstandard1.3/System.IO.Compression.dll",
  6316. "ref/netstandard1.3/System.IO.Compression.xml",
  6317. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6318. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6319. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6320. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6321. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6322. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6323. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6324. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6325. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6326. "ref/portable-net45+win8+wpa81/_._",
  6327. "ref/win8/_._",
  6328. "ref/wpa81/_._",
  6329. "ref/xamarinios10/_._",
  6330. "ref/xamarinmac20/_._",
  6331. "ref/xamarintvos10/_._",
  6332. "ref/xamarinwatchos10/_._",
  6333. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6334. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6335. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6336. "system.io.compression.4.3.0.nupkg.sha512",
  6337. "system.io.compression.nuspec"
  6338. ]
  6339. },
  6340. "System.IO.Compression.ZipFile/4.3.0": {
  6341. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6342. "type": "package",
  6343. "path": "system.io.compression.zipfile/4.3.0",
  6344. "files": [
  6345. ".nupkg.metadata",
  6346. ".signature.p7s",
  6347. "ThirdPartyNotices.txt",
  6348. "dotnet_library_license.txt",
  6349. "lib/MonoAndroid10/_._",
  6350. "lib/MonoTouch10/_._",
  6351. "lib/net46/System.IO.Compression.ZipFile.dll",
  6352. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6353. "lib/xamarinios10/_._",
  6354. "lib/xamarinmac20/_._",
  6355. "lib/xamarintvos10/_._",
  6356. "lib/xamarinwatchos10/_._",
  6357. "ref/MonoAndroid10/_._",
  6358. "ref/MonoTouch10/_._",
  6359. "ref/net46/System.IO.Compression.ZipFile.dll",
  6360. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6361. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6362. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6363. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6364. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6365. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6366. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6367. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6368. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6369. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6370. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6371. "ref/xamarinios10/_._",
  6372. "ref/xamarinmac20/_._",
  6373. "ref/xamarintvos10/_._",
  6374. "ref/xamarinwatchos10/_._",
  6375. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6376. "system.io.compression.zipfile.nuspec"
  6377. ]
  6378. },
  6379. "System.IO.FileSystem/4.3.0": {
  6380. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6381. "type": "package",
  6382. "path": "system.io.filesystem/4.3.0",
  6383. "files": [
  6384. ".nupkg.metadata",
  6385. ".signature.p7s",
  6386. "ThirdPartyNotices.txt",
  6387. "dotnet_library_license.txt",
  6388. "lib/MonoAndroid10/_._",
  6389. "lib/MonoTouch10/_._",
  6390. "lib/net46/System.IO.FileSystem.dll",
  6391. "lib/xamarinios10/_._",
  6392. "lib/xamarinmac20/_._",
  6393. "lib/xamarintvos10/_._",
  6394. "lib/xamarinwatchos10/_._",
  6395. "ref/MonoAndroid10/_._",
  6396. "ref/MonoTouch10/_._",
  6397. "ref/net46/System.IO.FileSystem.dll",
  6398. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6399. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6400. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6401. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6402. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6403. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6404. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6405. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6406. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6407. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6408. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6409. "ref/xamarinios10/_._",
  6410. "ref/xamarinmac20/_._",
  6411. "ref/xamarintvos10/_._",
  6412. "ref/xamarinwatchos10/_._",
  6413. "system.io.filesystem.4.3.0.nupkg.sha512",
  6414. "system.io.filesystem.nuspec"
  6415. ]
  6416. },
  6417. "System.IO.FileSystem.Primitives/4.3.0": {
  6418. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6419. "type": "package",
  6420. "path": "system.io.filesystem.primitives/4.3.0",
  6421. "files": [
  6422. ".nupkg.metadata",
  6423. ".signature.p7s",
  6424. "ThirdPartyNotices.txt",
  6425. "dotnet_library_license.txt",
  6426. "lib/MonoAndroid10/_._",
  6427. "lib/MonoTouch10/_._",
  6428. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6429. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6430. "lib/xamarinios10/_._",
  6431. "lib/xamarinmac20/_._",
  6432. "lib/xamarintvos10/_._",
  6433. "lib/xamarinwatchos10/_._",
  6434. "ref/MonoAndroid10/_._",
  6435. "ref/MonoTouch10/_._",
  6436. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6437. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6438. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6439. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6440. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6441. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6442. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6443. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6444. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6445. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6446. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6447. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6448. "ref/xamarinios10/_._",
  6449. "ref/xamarinmac20/_._",
  6450. "ref/xamarintvos10/_._",
  6451. "ref/xamarinwatchos10/_._",
  6452. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6453. "system.io.filesystem.primitives.nuspec"
  6454. ]
  6455. },
  6456. "System.IO.Pipelines/5.0.0": {
  6457. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6458. "type": "package",
  6459. "path": "system.io.pipelines/5.0.0",
  6460. "files": [
  6461. ".nupkg.metadata",
  6462. ".signature.p7s",
  6463. "Icon.png",
  6464. "LICENSE.TXT",
  6465. "THIRD-PARTY-NOTICES.TXT",
  6466. "lib/net461/System.IO.Pipelines.dll",
  6467. "lib/net461/System.IO.Pipelines.xml",
  6468. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6469. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6470. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6471. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6472. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6473. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6474. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6475. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6476. "system.io.pipelines.5.0.0.nupkg.sha512",
  6477. "system.io.pipelines.nuspec",
  6478. "useSharedDesignerContext.txt",
  6479. "version.txt"
  6480. ]
  6481. },
  6482. "System.Linq/4.3.0": {
  6483. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6484. "type": "package",
  6485. "path": "system.linq/4.3.0",
  6486. "files": [
  6487. ".nupkg.metadata",
  6488. ".signature.p7s",
  6489. "ThirdPartyNotices.txt",
  6490. "dotnet_library_license.txt",
  6491. "lib/MonoAndroid10/_._",
  6492. "lib/MonoTouch10/_._",
  6493. "lib/net45/_._",
  6494. "lib/net463/System.Linq.dll",
  6495. "lib/netcore50/System.Linq.dll",
  6496. "lib/netstandard1.6/System.Linq.dll",
  6497. "lib/portable-net45+win8+wp8+wpa81/_._",
  6498. "lib/win8/_._",
  6499. "lib/wp80/_._",
  6500. "lib/wpa81/_._",
  6501. "lib/xamarinios10/_._",
  6502. "lib/xamarinmac20/_._",
  6503. "lib/xamarintvos10/_._",
  6504. "lib/xamarinwatchos10/_._",
  6505. "ref/MonoAndroid10/_._",
  6506. "ref/MonoTouch10/_._",
  6507. "ref/net45/_._",
  6508. "ref/net463/System.Linq.dll",
  6509. "ref/netcore50/System.Linq.dll",
  6510. "ref/netcore50/System.Linq.xml",
  6511. "ref/netcore50/de/System.Linq.xml",
  6512. "ref/netcore50/es/System.Linq.xml",
  6513. "ref/netcore50/fr/System.Linq.xml",
  6514. "ref/netcore50/it/System.Linq.xml",
  6515. "ref/netcore50/ja/System.Linq.xml",
  6516. "ref/netcore50/ko/System.Linq.xml",
  6517. "ref/netcore50/ru/System.Linq.xml",
  6518. "ref/netcore50/zh-hans/System.Linq.xml",
  6519. "ref/netcore50/zh-hant/System.Linq.xml",
  6520. "ref/netstandard1.0/System.Linq.dll",
  6521. "ref/netstandard1.0/System.Linq.xml",
  6522. "ref/netstandard1.0/de/System.Linq.xml",
  6523. "ref/netstandard1.0/es/System.Linq.xml",
  6524. "ref/netstandard1.0/fr/System.Linq.xml",
  6525. "ref/netstandard1.0/it/System.Linq.xml",
  6526. "ref/netstandard1.0/ja/System.Linq.xml",
  6527. "ref/netstandard1.0/ko/System.Linq.xml",
  6528. "ref/netstandard1.0/ru/System.Linq.xml",
  6529. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6530. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6531. "ref/netstandard1.6/System.Linq.dll",
  6532. "ref/netstandard1.6/System.Linq.xml",
  6533. "ref/netstandard1.6/de/System.Linq.xml",
  6534. "ref/netstandard1.6/es/System.Linq.xml",
  6535. "ref/netstandard1.6/fr/System.Linq.xml",
  6536. "ref/netstandard1.6/it/System.Linq.xml",
  6537. "ref/netstandard1.6/ja/System.Linq.xml",
  6538. "ref/netstandard1.6/ko/System.Linq.xml",
  6539. "ref/netstandard1.6/ru/System.Linq.xml",
  6540. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6541. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6542. "ref/portable-net45+win8+wp8+wpa81/_._",
  6543. "ref/win8/_._",
  6544. "ref/wp80/_._",
  6545. "ref/wpa81/_._",
  6546. "ref/xamarinios10/_._",
  6547. "ref/xamarinmac20/_._",
  6548. "ref/xamarintvos10/_._",
  6549. "ref/xamarinwatchos10/_._",
  6550. "system.linq.4.3.0.nupkg.sha512",
  6551. "system.linq.nuspec"
  6552. ]
  6553. },
  6554. "System.Linq.Expressions/4.3.0": {
  6555. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6556. "type": "package",
  6557. "path": "system.linq.expressions/4.3.0",
  6558. "files": [
  6559. ".nupkg.metadata",
  6560. ".signature.p7s",
  6561. "ThirdPartyNotices.txt",
  6562. "dotnet_library_license.txt",
  6563. "lib/MonoAndroid10/_._",
  6564. "lib/MonoTouch10/_._",
  6565. "lib/net45/_._",
  6566. "lib/net463/System.Linq.Expressions.dll",
  6567. "lib/netcore50/System.Linq.Expressions.dll",
  6568. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6569. "lib/portable-net45+win8+wp8+wpa81/_._",
  6570. "lib/win8/_._",
  6571. "lib/wp80/_._",
  6572. "lib/wpa81/_._",
  6573. "lib/xamarinios10/_._",
  6574. "lib/xamarinmac20/_._",
  6575. "lib/xamarintvos10/_._",
  6576. "lib/xamarinwatchos10/_._",
  6577. "ref/MonoAndroid10/_._",
  6578. "ref/MonoTouch10/_._",
  6579. "ref/net45/_._",
  6580. "ref/net463/System.Linq.Expressions.dll",
  6581. "ref/netcore50/System.Linq.Expressions.dll",
  6582. "ref/netcore50/System.Linq.Expressions.xml",
  6583. "ref/netcore50/de/System.Linq.Expressions.xml",
  6584. "ref/netcore50/es/System.Linq.Expressions.xml",
  6585. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6586. "ref/netcore50/it/System.Linq.Expressions.xml",
  6587. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6588. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6589. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6590. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6591. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6592. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6593. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6594. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6595. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6596. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6597. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6598. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6599. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6600. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6601. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6602. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6603. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6604. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6605. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6606. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6607. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6608. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6609. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6610. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6611. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6612. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6613. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6614. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6615. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6616. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6617. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6618. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6619. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6620. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6621. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6622. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6623. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6624. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6625. "ref/portable-net45+win8+wp8+wpa81/_._",
  6626. "ref/win8/_._",
  6627. "ref/wp80/_._",
  6628. "ref/wpa81/_._",
  6629. "ref/xamarinios10/_._",
  6630. "ref/xamarinmac20/_._",
  6631. "ref/xamarintvos10/_._",
  6632. "ref/xamarinwatchos10/_._",
  6633. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6634. "system.linq.expressions.4.3.0.nupkg.sha512",
  6635. "system.linq.expressions.nuspec"
  6636. ]
  6637. },
  6638. "System.Memory/4.5.5": {
  6639. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6640. "type": "package",
  6641. "path": "system.memory/4.5.5",
  6642. "files": [
  6643. ".nupkg.metadata",
  6644. ".signature.p7s",
  6645. "LICENSE.TXT",
  6646. "THIRD-PARTY-NOTICES.TXT",
  6647. "lib/net461/System.Memory.dll",
  6648. "lib/net461/System.Memory.xml",
  6649. "lib/netcoreapp2.1/_._",
  6650. "lib/netstandard1.1/System.Memory.dll",
  6651. "lib/netstandard1.1/System.Memory.xml",
  6652. "lib/netstandard2.0/System.Memory.dll",
  6653. "lib/netstandard2.0/System.Memory.xml",
  6654. "ref/netcoreapp2.1/_._",
  6655. "system.memory.4.5.5.nupkg.sha512",
  6656. "system.memory.nuspec",
  6657. "useSharedDesignerContext.txt",
  6658. "version.txt"
  6659. ]
  6660. },
  6661. "System.Net.Http/4.3.0": {
  6662. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6663. "type": "package",
  6664. "path": "system.net.http/4.3.0",
  6665. "files": [
  6666. ".nupkg.metadata",
  6667. ".signature.p7s",
  6668. "ThirdPartyNotices.txt",
  6669. "dotnet_library_license.txt",
  6670. "lib/Xamarinmac20/_._",
  6671. "lib/monoandroid10/_._",
  6672. "lib/monotouch10/_._",
  6673. "lib/net45/_._",
  6674. "lib/net46/System.Net.Http.dll",
  6675. "lib/portable-net45+win8+wpa81/_._",
  6676. "lib/win8/_._",
  6677. "lib/wpa81/_._",
  6678. "lib/xamarinios10/_._",
  6679. "lib/xamarintvos10/_._",
  6680. "lib/xamarinwatchos10/_._",
  6681. "ref/Xamarinmac20/_._",
  6682. "ref/monoandroid10/_._",
  6683. "ref/monotouch10/_._",
  6684. "ref/net45/_._",
  6685. "ref/net46/System.Net.Http.dll",
  6686. "ref/net46/System.Net.Http.xml",
  6687. "ref/net46/de/System.Net.Http.xml",
  6688. "ref/net46/es/System.Net.Http.xml",
  6689. "ref/net46/fr/System.Net.Http.xml",
  6690. "ref/net46/it/System.Net.Http.xml",
  6691. "ref/net46/ja/System.Net.Http.xml",
  6692. "ref/net46/ko/System.Net.Http.xml",
  6693. "ref/net46/ru/System.Net.Http.xml",
  6694. "ref/net46/zh-hans/System.Net.Http.xml",
  6695. "ref/net46/zh-hant/System.Net.Http.xml",
  6696. "ref/netcore50/System.Net.Http.dll",
  6697. "ref/netcore50/System.Net.Http.xml",
  6698. "ref/netcore50/de/System.Net.Http.xml",
  6699. "ref/netcore50/es/System.Net.Http.xml",
  6700. "ref/netcore50/fr/System.Net.Http.xml",
  6701. "ref/netcore50/it/System.Net.Http.xml",
  6702. "ref/netcore50/ja/System.Net.Http.xml",
  6703. "ref/netcore50/ko/System.Net.Http.xml",
  6704. "ref/netcore50/ru/System.Net.Http.xml",
  6705. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6706. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6707. "ref/netstandard1.1/System.Net.Http.dll",
  6708. "ref/netstandard1.1/System.Net.Http.xml",
  6709. "ref/netstandard1.1/de/System.Net.Http.xml",
  6710. "ref/netstandard1.1/es/System.Net.Http.xml",
  6711. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6712. "ref/netstandard1.1/it/System.Net.Http.xml",
  6713. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6714. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6715. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6716. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6717. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6718. "ref/netstandard1.3/System.Net.Http.dll",
  6719. "ref/netstandard1.3/System.Net.Http.xml",
  6720. "ref/netstandard1.3/de/System.Net.Http.xml",
  6721. "ref/netstandard1.3/es/System.Net.Http.xml",
  6722. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6723. "ref/netstandard1.3/it/System.Net.Http.xml",
  6724. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6725. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6726. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6727. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6728. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6729. "ref/portable-net45+win8+wpa81/_._",
  6730. "ref/win8/_._",
  6731. "ref/wpa81/_._",
  6732. "ref/xamarinios10/_._",
  6733. "ref/xamarintvos10/_._",
  6734. "ref/xamarinwatchos10/_._",
  6735. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6736. "runtimes/win/lib/net46/System.Net.Http.dll",
  6737. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6738. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6739. "system.net.http.4.3.0.nupkg.sha512",
  6740. "system.net.http.nuspec"
  6741. ]
  6742. },
  6743. "System.Net.NameResolution/4.3.0": {
  6744. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6745. "type": "package",
  6746. "path": "system.net.nameresolution/4.3.0",
  6747. "files": [
  6748. ".nupkg.metadata",
  6749. ".signature.p7s",
  6750. "ThirdPartyNotices.txt",
  6751. "dotnet_library_license.txt",
  6752. "lib/MonoAndroid10/_._",
  6753. "lib/MonoTouch10/_._",
  6754. "lib/net46/System.Net.NameResolution.dll",
  6755. "lib/xamarinios10/_._",
  6756. "lib/xamarinmac20/_._",
  6757. "lib/xamarintvos10/_._",
  6758. "lib/xamarinwatchos10/_._",
  6759. "ref/MonoAndroid10/_._",
  6760. "ref/MonoTouch10/_._",
  6761. "ref/net46/System.Net.NameResolution.dll",
  6762. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6763. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6764. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6765. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6766. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6767. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6768. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6769. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6770. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6771. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6772. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6773. "ref/xamarinios10/_._",
  6774. "ref/xamarinmac20/_._",
  6775. "ref/xamarintvos10/_._",
  6776. "ref/xamarinwatchos10/_._",
  6777. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6778. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6779. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6780. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6781. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6782. "system.net.nameresolution.nuspec"
  6783. ]
  6784. },
  6785. "System.Net.Primitives/4.3.0": {
  6786. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6787. "type": "package",
  6788. "path": "system.net.primitives/4.3.0",
  6789. "files": [
  6790. ".nupkg.metadata",
  6791. ".signature.p7s",
  6792. "ThirdPartyNotices.txt",
  6793. "dotnet_library_license.txt",
  6794. "lib/MonoAndroid10/_._",
  6795. "lib/MonoTouch10/_._",
  6796. "lib/net45/_._",
  6797. "lib/portable-net45+win8+wp8+wpa81/_._",
  6798. "lib/win8/_._",
  6799. "lib/wp80/_._",
  6800. "lib/wpa81/_._",
  6801. "lib/xamarinios10/_._",
  6802. "lib/xamarinmac20/_._",
  6803. "lib/xamarintvos10/_._",
  6804. "lib/xamarinwatchos10/_._",
  6805. "ref/MonoAndroid10/_._",
  6806. "ref/MonoTouch10/_._",
  6807. "ref/net45/_._",
  6808. "ref/netcore50/System.Net.Primitives.dll",
  6809. "ref/netcore50/System.Net.Primitives.xml",
  6810. "ref/netcore50/de/System.Net.Primitives.xml",
  6811. "ref/netcore50/es/System.Net.Primitives.xml",
  6812. "ref/netcore50/fr/System.Net.Primitives.xml",
  6813. "ref/netcore50/it/System.Net.Primitives.xml",
  6814. "ref/netcore50/ja/System.Net.Primitives.xml",
  6815. "ref/netcore50/ko/System.Net.Primitives.xml",
  6816. "ref/netcore50/ru/System.Net.Primitives.xml",
  6817. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6818. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6819. "ref/netstandard1.0/System.Net.Primitives.dll",
  6820. "ref/netstandard1.0/System.Net.Primitives.xml",
  6821. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6822. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6823. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6824. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6825. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6826. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6827. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6828. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6829. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6830. "ref/netstandard1.1/System.Net.Primitives.dll",
  6831. "ref/netstandard1.1/System.Net.Primitives.xml",
  6832. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6833. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6834. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6835. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6836. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6837. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6838. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6839. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6840. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6841. "ref/netstandard1.3/System.Net.Primitives.dll",
  6842. "ref/netstandard1.3/System.Net.Primitives.xml",
  6843. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6844. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6845. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6846. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6847. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6848. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6849. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6850. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6851. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6852. "ref/portable-net45+win8+wp8+wpa81/_._",
  6853. "ref/win8/_._",
  6854. "ref/wp80/_._",
  6855. "ref/wpa81/_._",
  6856. "ref/xamarinios10/_._",
  6857. "ref/xamarinmac20/_._",
  6858. "ref/xamarintvos10/_._",
  6859. "ref/xamarinwatchos10/_._",
  6860. "system.net.primitives.4.3.0.nupkg.sha512",
  6861. "system.net.primitives.nuspec"
  6862. ]
  6863. },
  6864. "System.Net.Security/4.3.0": {
  6865. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6866. "type": "package",
  6867. "path": "system.net.security/4.3.0",
  6868. "files": [
  6869. ".nupkg.metadata",
  6870. ".signature.p7s",
  6871. "ThirdPartyNotices.txt",
  6872. "dotnet_library_license.txt",
  6873. "lib/MonoAndroid10/_._",
  6874. "lib/MonoTouch10/_._",
  6875. "lib/net46/System.Net.Security.dll",
  6876. "lib/xamarinios10/_._",
  6877. "lib/xamarinmac20/_._",
  6878. "lib/xamarintvos10/_._",
  6879. "lib/xamarinwatchos10/_._",
  6880. "ref/MonoAndroid10/_._",
  6881. "ref/MonoTouch10/_._",
  6882. "ref/net46/System.Net.Security.dll",
  6883. "ref/netstandard1.3/System.Net.Security.dll",
  6884. "ref/netstandard1.3/System.Net.Security.xml",
  6885. "ref/netstandard1.3/de/System.Net.Security.xml",
  6886. "ref/netstandard1.3/es/System.Net.Security.xml",
  6887. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6888. "ref/netstandard1.3/it/System.Net.Security.xml",
  6889. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6890. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6891. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6892. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6893. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6894. "ref/xamarinios10/_._",
  6895. "ref/xamarinmac20/_._",
  6896. "ref/xamarintvos10/_._",
  6897. "ref/xamarinwatchos10/_._",
  6898. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6899. "runtimes/win/lib/net46/System.Net.Security.dll",
  6900. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6901. "runtimes/win7/lib/netcore50/_._",
  6902. "system.net.security.4.3.0.nupkg.sha512",
  6903. "system.net.security.nuspec"
  6904. ]
  6905. },
  6906. "System.Net.Sockets/4.3.0": {
  6907. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6908. "type": "package",
  6909. "path": "system.net.sockets/4.3.0",
  6910. "files": [
  6911. ".nupkg.metadata",
  6912. ".signature.p7s",
  6913. "ThirdPartyNotices.txt",
  6914. "dotnet_library_license.txt",
  6915. "lib/MonoAndroid10/_._",
  6916. "lib/MonoTouch10/_._",
  6917. "lib/net46/System.Net.Sockets.dll",
  6918. "lib/xamarinios10/_._",
  6919. "lib/xamarinmac20/_._",
  6920. "lib/xamarintvos10/_._",
  6921. "lib/xamarinwatchos10/_._",
  6922. "ref/MonoAndroid10/_._",
  6923. "ref/MonoTouch10/_._",
  6924. "ref/net46/System.Net.Sockets.dll",
  6925. "ref/netstandard1.3/System.Net.Sockets.dll",
  6926. "ref/netstandard1.3/System.Net.Sockets.xml",
  6927. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6928. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6929. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6930. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6931. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6932. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6933. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6934. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6935. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6936. "ref/xamarinios10/_._",
  6937. "ref/xamarinmac20/_._",
  6938. "ref/xamarintvos10/_._",
  6939. "ref/xamarinwatchos10/_._",
  6940. "system.net.sockets.4.3.0.nupkg.sha512",
  6941. "system.net.sockets.nuspec"
  6942. ]
  6943. },
  6944. "System.ObjectModel/4.3.0": {
  6945. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6946. "type": "package",
  6947. "path": "system.objectmodel/4.3.0",
  6948. "files": [
  6949. ".nupkg.metadata",
  6950. ".signature.p7s",
  6951. "ThirdPartyNotices.txt",
  6952. "dotnet_library_license.txt",
  6953. "lib/MonoAndroid10/_._",
  6954. "lib/MonoTouch10/_._",
  6955. "lib/net45/_._",
  6956. "lib/netcore50/System.ObjectModel.dll",
  6957. "lib/netstandard1.3/System.ObjectModel.dll",
  6958. "lib/portable-net45+win8+wp8+wpa81/_._",
  6959. "lib/win8/_._",
  6960. "lib/wp80/_._",
  6961. "lib/wpa81/_._",
  6962. "lib/xamarinios10/_._",
  6963. "lib/xamarinmac20/_._",
  6964. "lib/xamarintvos10/_._",
  6965. "lib/xamarinwatchos10/_._",
  6966. "ref/MonoAndroid10/_._",
  6967. "ref/MonoTouch10/_._",
  6968. "ref/net45/_._",
  6969. "ref/netcore50/System.ObjectModel.dll",
  6970. "ref/netcore50/System.ObjectModel.xml",
  6971. "ref/netcore50/de/System.ObjectModel.xml",
  6972. "ref/netcore50/es/System.ObjectModel.xml",
  6973. "ref/netcore50/fr/System.ObjectModel.xml",
  6974. "ref/netcore50/it/System.ObjectModel.xml",
  6975. "ref/netcore50/ja/System.ObjectModel.xml",
  6976. "ref/netcore50/ko/System.ObjectModel.xml",
  6977. "ref/netcore50/ru/System.ObjectModel.xml",
  6978. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6979. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6980. "ref/netstandard1.0/System.ObjectModel.dll",
  6981. "ref/netstandard1.0/System.ObjectModel.xml",
  6982. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6983. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6984. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6985. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6986. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6987. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6988. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6989. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6990. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6991. "ref/netstandard1.3/System.ObjectModel.dll",
  6992. "ref/netstandard1.3/System.ObjectModel.xml",
  6993. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6994. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6995. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6996. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6997. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6998. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6999. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7000. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7001. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7002. "ref/portable-net45+win8+wp8+wpa81/_._",
  7003. "ref/win8/_._",
  7004. "ref/wp80/_._",
  7005. "ref/wpa81/_._",
  7006. "ref/xamarinios10/_._",
  7007. "ref/xamarinmac20/_._",
  7008. "ref/xamarintvos10/_._",
  7009. "ref/xamarinwatchos10/_._",
  7010. "system.objectmodel.4.3.0.nupkg.sha512",
  7011. "system.objectmodel.nuspec"
  7012. ]
  7013. },
  7014. "System.Reflection/4.3.0": {
  7015. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7016. "type": "package",
  7017. "path": "system.reflection/4.3.0",
  7018. "files": [
  7019. ".nupkg.metadata",
  7020. ".signature.p7s",
  7021. "ThirdPartyNotices.txt",
  7022. "dotnet_library_license.txt",
  7023. "lib/MonoAndroid10/_._",
  7024. "lib/MonoTouch10/_._",
  7025. "lib/net45/_._",
  7026. "lib/net462/System.Reflection.dll",
  7027. "lib/portable-net45+win8+wp8+wpa81/_._",
  7028. "lib/win8/_._",
  7029. "lib/wp80/_._",
  7030. "lib/wpa81/_._",
  7031. "lib/xamarinios10/_._",
  7032. "lib/xamarinmac20/_._",
  7033. "lib/xamarintvos10/_._",
  7034. "lib/xamarinwatchos10/_._",
  7035. "ref/MonoAndroid10/_._",
  7036. "ref/MonoTouch10/_._",
  7037. "ref/net45/_._",
  7038. "ref/net462/System.Reflection.dll",
  7039. "ref/netcore50/System.Reflection.dll",
  7040. "ref/netcore50/System.Reflection.xml",
  7041. "ref/netcore50/de/System.Reflection.xml",
  7042. "ref/netcore50/es/System.Reflection.xml",
  7043. "ref/netcore50/fr/System.Reflection.xml",
  7044. "ref/netcore50/it/System.Reflection.xml",
  7045. "ref/netcore50/ja/System.Reflection.xml",
  7046. "ref/netcore50/ko/System.Reflection.xml",
  7047. "ref/netcore50/ru/System.Reflection.xml",
  7048. "ref/netcore50/zh-hans/System.Reflection.xml",
  7049. "ref/netcore50/zh-hant/System.Reflection.xml",
  7050. "ref/netstandard1.0/System.Reflection.dll",
  7051. "ref/netstandard1.0/System.Reflection.xml",
  7052. "ref/netstandard1.0/de/System.Reflection.xml",
  7053. "ref/netstandard1.0/es/System.Reflection.xml",
  7054. "ref/netstandard1.0/fr/System.Reflection.xml",
  7055. "ref/netstandard1.0/it/System.Reflection.xml",
  7056. "ref/netstandard1.0/ja/System.Reflection.xml",
  7057. "ref/netstandard1.0/ko/System.Reflection.xml",
  7058. "ref/netstandard1.0/ru/System.Reflection.xml",
  7059. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7060. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7061. "ref/netstandard1.3/System.Reflection.dll",
  7062. "ref/netstandard1.3/System.Reflection.xml",
  7063. "ref/netstandard1.3/de/System.Reflection.xml",
  7064. "ref/netstandard1.3/es/System.Reflection.xml",
  7065. "ref/netstandard1.3/fr/System.Reflection.xml",
  7066. "ref/netstandard1.3/it/System.Reflection.xml",
  7067. "ref/netstandard1.3/ja/System.Reflection.xml",
  7068. "ref/netstandard1.3/ko/System.Reflection.xml",
  7069. "ref/netstandard1.3/ru/System.Reflection.xml",
  7070. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7071. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7072. "ref/netstandard1.5/System.Reflection.dll",
  7073. "ref/netstandard1.5/System.Reflection.xml",
  7074. "ref/netstandard1.5/de/System.Reflection.xml",
  7075. "ref/netstandard1.5/es/System.Reflection.xml",
  7076. "ref/netstandard1.5/fr/System.Reflection.xml",
  7077. "ref/netstandard1.5/it/System.Reflection.xml",
  7078. "ref/netstandard1.5/ja/System.Reflection.xml",
  7079. "ref/netstandard1.5/ko/System.Reflection.xml",
  7080. "ref/netstandard1.5/ru/System.Reflection.xml",
  7081. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7082. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7083. "ref/portable-net45+win8+wp8+wpa81/_._",
  7084. "ref/win8/_._",
  7085. "ref/wp80/_._",
  7086. "ref/wpa81/_._",
  7087. "ref/xamarinios10/_._",
  7088. "ref/xamarinmac20/_._",
  7089. "ref/xamarintvos10/_._",
  7090. "ref/xamarinwatchos10/_._",
  7091. "system.reflection.4.3.0.nupkg.sha512",
  7092. "system.reflection.nuspec"
  7093. ]
  7094. },
  7095. "System.Reflection.Emit/4.7.0": {
  7096. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7097. "type": "package",
  7098. "path": "system.reflection.emit/4.7.0",
  7099. "files": [
  7100. ".nupkg.metadata",
  7101. ".signature.p7s",
  7102. "LICENSE.TXT",
  7103. "THIRD-PARTY-NOTICES.TXT",
  7104. "lib/MonoAndroid10/_._",
  7105. "lib/MonoTouch10/_._",
  7106. "lib/net45/_._",
  7107. "lib/netcore50/System.Reflection.Emit.dll",
  7108. "lib/netcoreapp2.0/_._",
  7109. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7110. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7111. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7112. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7113. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7114. "lib/netstandard2.1/_._",
  7115. "lib/xamarinios10/_._",
  7116. "lib/xamarinmac20/_._",
  7117. "lib/xamarintvos10/_._",
  7118. "lib/xamarinwatchos10/_._",
  7119. "ref/MonoAndroid10/_._",
  7120. "ref/MonoTouch10/_._",
  7121. "ref/net45/_._",
  7122. "ref/netcoreapp2.0/_._",
  7123. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7124. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7125. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7126. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7127. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7128. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7129. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7130. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7131. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7132. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7133. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7134. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7135. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7136. "ref/netstandard2.1/_._",
  7137. "ref/xamarinios10/_._",
  7138. "ref/xamarinmac20/_._",
  7139. "ref/xamarintvos10/_._",
  7140. "ref/xamarinwatchos10/_._",
  7141. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7142. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7143. "system.reflection.emit.4.7.0.nupkg.sha512",
  7144. "system.reflection.emit.nuspec",
  7145. "useSharedDesignerContext.txt",
  7146. "version.txt"
  7147. ]
  7148. },
  7149. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7150. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7151. "type": "package",
  7152. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7153. "files": [
  7154. ".nupkg.metadata",
  7155. ".signature.p7s",
  7156. "ThirdPartyNotices.txt",
  7157. "dotnet_library_license.txt",
  7158. "lib/MonoAndroid10/_._",
  7159. "lib/MonoTouch10/_._",
  7160. "lib/net45/_._",
  7161. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7162. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7163. "lib/portable-net45+wp8/_._",
  7164. "lib/wp80/_._",
  7165. "lib/xamarinios10/_._",
  7166. "lib/xamarinmac20/_._",
  7167. "lib/xamarintvos10/_._",
  7168. "lib/xamarinwatchos10/_._",
  7169. "ref/MonoAndroid10/_._",
  7170. "ref/MonoTouch10/_._",
  7171. "ref/net45/_._",
  7172. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7173. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7174. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7175. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7176. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7177. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7178. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7179. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7180. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7181. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7182. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7183. "ref/portable-net45+wp8/_._",
  7184. "ref/wp80/_._",
  7185. "ref/xamarinios10/_._",
  7186. "ref/xamarinmac20/_._",
  7187. "ref/xamarintvos10/_._",
  7188. "ref/xamarinwatchos10/_._",
  7189. "runtimes/aot/lib/netcore50/_._",
  7190. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7191. "system.reflection.emit.ilgeneration.nuspec"
  7192. ]
  7193. },
  7194. "System.Reflection.Emit.Lightweight/4.3.0": {
  7195. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7196. "type": "package",
  7197. "path": "system.reflection.emit.lightweight/4.3.0",
  7198. "files": [
  7199. ".nupkg.metadata",
  7200. ".signature.p7s",
  7201. "ThirdPartyNotices.txt",
  7202. "dotnet_library_license.txt",
  7203. "lib/MonoAndroid10/_._",
  7204. "lib/MonoTouch10/_._",
  7205. "lib/net45/_._",
  7206. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7207. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7208. "lib/portable-net45+wp8/_._",
  7209. "lib/wp80/_._",
  7210. "lib/xamarinios10/_._",
  7211. "lib/xamarinmac20/_._",
  7212. "lib/xamarintvos10/_._",
  7213. "lib/xamarinwatchos10/_._",
  7214. "ref/MonoAndroid10/_._",
  7215. "ref/MonoTouch10/_._",
  7216. "ref/net45/_._",
  7217. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7218. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7219. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7220. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7221. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7222. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7223. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7224. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7225. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7226. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7227. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7228. "ref/portable-net45+wp8/_._",
  7229. "ref/wp80/_._",
  7230. "ref/xamarinios10/_._",
  7231. "ref/xamarinmac20/_._",
  7232. "ref/xamarintvos10/_._",
  7233. "ref/xamarinwatchos10/_._",
  7234. "runtimes/aot/lib/netcore50/_._",
  7235. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7236. "system.reflection.emit.lightweight.nuspec"
  7237. ]
  7238. },
  7239. "System.Reflection.Extensions/4.3.0": {
  7240. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7241. "type": "package",
  7242. "path": "system.reflection.extensions/4.3.0",
  7243. "files": [
  7244. ".nupkg.metadata",
  7245. ".signature.p7s",
  7246. "ThirdPartyNotices.txt",
  7247. "dotnet_library_license.txt",
  7248. "lib/MonoAndroid10/_._",
  7249. "lib/MonoTouch10/_._",
  7250. "lib/net45/_._",
  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/netcore50/System.Reflection.Extensions.dll",
  7263. "ref/netcore50/System.Reflection.Extensions.xml",
  7264. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7265. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7266. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7267. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7268. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7269. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7270. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7271. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7272. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7273. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7274. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7275. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7276. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7277. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7278. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7279. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7280. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7281. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7282. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7283. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7284. "ref/portable-net45+win8+wp8+wpa81/_._",
  7285. "ref/win8/_._",
  7286. "ref/wp80/_._",
  7287. "ref/wpa81/_._",
  7288. "ref/xamarinios10/_._",
  7289. "ref/xamarinmac20/_._",
  7290. "ref/xamarintvos10/_._",
  7291. "ref/xamarinwatchos10/_._",
  7292. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7293. "system.reflection.extensions.nuspec"
  7294. ]
  7295. },
  7296. "System.Reflection.Primitives/4.3.0": {
  7297. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7298. "type": "package",
  7299. "path": "system.reflection.primitives/4.3.0",
  7300. "files": [
  7301. ".nupkg.metadata",
  7302. ".signature.p7s",
  7303. "ThirdPartyNotices.txt",
  7304. "dotnet_library_license.txt",
  7305. "lib/MonoAndroid10/_._",
  7306. "lib/MonoTouch10/_._",
  7307. "lib/net45/_._",
  7308. "lib/portable-net45+win8+wp8+wpa81/_._",
  7309. "lib/win8/_._",
  7310. "lib/wp80/_._",
  7311. "lib/wpa81/_._",
  7312. "lib/xamarinios10/_._",
  7313. "lib/xamarinmac20/_._",
  7314. "lib/xamarintvos10/_._",
  7315. "lib/xamarinwatchos10/_._",
  7316. "ref/MonoAndroid10/_._",
  7317. "ref/MonoTouch10/_._",
  7318. "ref/net45/_._",
  7319. "ref/netcore50/System.Reflection.Primitives.dll",
  7320. "ref/netcore50/System.Reflection.Primitives.xml",
  7321. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7322. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7323. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7324. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7325. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7326. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7327. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7328. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7329. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7330. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7331. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7332. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7333. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7334. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7335. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7336. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7337. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7338. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7339. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7340. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7341. "ref/portable-net45+win8+wp8+wpa81/_._",
  7342. "ref/win8/_._",
  7343. "ref/wp80/_._",
  7344. "ref/wpa81/_._",
  7345. "ref/xamarinios10/_._",
  7346. "ref/xamarinmac20/_._",
  7347. "ref/xamarintvos10/_._",
  7348. "ref/xamarinwatchos10/_._",
  7349. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7350. "system.reflection.primitives.nuspec"
  7351. ]
  7352. },
  7353. "System.Reflection.TypeExtensions/4.3.0": {
  7354. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7355. "type": "package",
  7356. "path": "system.reflection.typeextensions/4.3.0",
  7357. "files": [
  7358. ".nupkg.metadata",
  7359. ".signature.p7s",
  7360. "ThirdPartyNotices.txt",
  7361. "dotnet_library_license.txt",
  7362. "lib/MonoAndroid10/_._",
  7363. "lib/MonoTouch10/_._",
  7364. "lib/net46/System.Reflection.TypeExtensions.dll",
  7365. "lib/net462/System.Reflection.TypeExtensions.dll",
  7366. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7367. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7368. "lib/xamarinios10/_._",
  7369. "lib/xamarinmac20/_._",
  7370. "lib/xamarintvos10/_._",
  7371. "lib/xamarinwatchos10/_._",
  7372. "ref/MonoAndroid10/_._",
  7373. "ref/MonoTouch10/_._",
  7374. "ref/net46/System.Reflection.TypeExtensions.dll",
  7375. "ref/net462/System.Reflection.TypeExtensions.dll",
  7376. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7377. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7378. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7379. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7380. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7381. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7382. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7383. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7384. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7385. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7386. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7387. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7388. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7389. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7390. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7391. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7392. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7393. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7394. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7395. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7396. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7397. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7398. "ref/xamarinios10/_._",
  7399. "ref/xamarinmac20/_._",
  7400. "ref/xamarintvos10/_._",
  7401. "ref/xamarinwatchos10/_._",
  7402. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7403. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7404. "system.reflection.typeextensions.nuspec"
  7405. ]
  7406. },
  7407. "System.Resources.ResourceManager/4.3.0": {
  7408. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7409. "type": "package",
  7410. "path": "system.resources.resourcemanager/4.3.0",
  7411. "files": [
  7412. ".nupkg.metadata",
  7413. ".signature.p7s",
  7414. "ThirdPartyNotices.txt",
  7415. "dotnet_library_license.txt",
  7416. "lib/MonoAndroid10/_._",
  7417. "lib/MonoTouch10/_._",
  7418. "lib/net45/_._",
  7419. "lib/portable-net45+win8+wp8+wpa81/_._",
  7420. "lib/win8/_._",
  7421. "lib/wp80/_._",
  7422. "lib/wpa81/_._",
  7423. "lib/xamarinios10/_._",
  7424. "lib/xamarinmac20/_._",
  7425. "lib/xamarintvos10/_._",
  7426. "lib/xamarinwatchos10/_._",
  7427. "ref/MonoAndroid10/_._",
  7428. "ref/MonoTouch10/_._",
  7429. "ref/net45/_._",
  7430. "ref/netcore50/System.Resources.ResourceManager.dll",
  7431. "ref/netcore50/System.Resources.ResourceManager.xml",
  7432. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7433. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7434. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7435. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7436. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7437. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7438. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7439. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7440. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7441. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7442. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7443. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7444. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7445. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7446. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7447. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7448. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7449. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7450. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7451. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7452. "ref/portable-net45+win8+wp8+wpa81/_._",
  7453. "ref/win8/_._",
  7454. "ref/wp80/_._",
  7455. "ref/wpa81/_._",
  7456. "ref/xamarinios10/_._",
  7457. "ref/xamarinmac20/_._",
  7458. "ref/xamarintvos10/_._",
  7459. "ref/xamarinwatchos10/_._",
  7460. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7461. "system.resources.resourcemanager.nuspec"
  7462. ]
  7463. },
  7464. "System.Runtime/4.3.0": {
  7465. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7466. "type": "package",
  7467. "path": "system.runtime/4.3.0",
  7468. "files": [
  7469. ".nupkg.metadata",
  7470. ".signature.p7s",
  7471. "ThirdPartyNotices.txt",
  7472. "dotnet_library_license.txt",
  7473. "lib/MonoAndroid10/_._",
  7474. "lib/MonoTouch10/_._",
  7475. "lib/net45/_._",
  7476. "lib/net462/System.Runtime.dll",
  7477. "lib/portable-net45+win8+wp80+wpa81/_._",
  7478. "lib/win8/_._",
  7479. "lib/wp80/_._",
  7480. "lib/wpa81/_._",
  7481. "lib/xamarinios10/_._",
  7482. "lib/xamarinmac20/_._",
  7483. "lib/xamarintvos10/_._",
  7484. "lib/xamarinwatchos10/_._",
  7485. "ref/MonoAndroid10/_._",
  7486. "ref/MonoTouch10/_._",
  7487. "ref/net45/_._",
  7488. "ref/net462/System.Runtime.dll",
  7489. "ref/netcore50/System.Runtime.dll",
  7490. "ref/netcore50/System.Runtime.xml",
  7491. "ref/netcore50/de/System.Runtime.xml",
  7492. "ref/netcore50/es/System.Runtime.xml",
  7493. "ref/netcore50/fr/System.Runtime.xml",
  7494. "ref/netcore50/it/System.Runtime.xml",
  7495. "ref/netcore50/ja/System.Runtime.xml",
  7496. "ref/netcore50/ko/System.Runtime.xml",
  7497. "ref/netcore50/ru/System.Runtime.xml",
  7498. "ref/netcore50/zh-hans/System.Runtime.xml",
  7499. "ref/netcore50/zh-hant/System.Runtime.xml",
  7500. "ref/netstandard1.0/System.Runtime.dll",
  7501. "ref/netstandard1.0/System.Runtime.xml",
  7502. "ref/netstandard1.0/de/System.Runtime.xml",
  7503. "ref/netstandard1.0/es/System.Runtime.xml",
  7504. "ref/netstandard1.0/fr/System.Runtime.xml",
  7505. "ref/netstandard1.0/it/System.Runtime.xml",
  7506. "ref/netstandard1.0/ja/System.Runtime.xml",
  7507. "ref/netstandard1.0/ko/System.Runtime.xml",
  7508. "ref/netstandard1.0/ru/System.Runtime.xml",
  7509. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7510. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7511. "ref/netstandard1.2/System.Runtime.dll",
  7512. "ref/netstandard1.2/System.Runtime.xml",
  7513. "ref/netstandard1.2/de/System.Runtime.xml",
  7514. "ref/netstandard1.2/es/System.Runtime.xml",
  7515. "ref/netstandard1.2/fr/System.Runtime.xml",
  7516. "ref/netstandard1.2/it/System.Runtime.xml",
  7517. "ref/netstandard1.2/ja/System.Runtime.xml",
  7518. "ref/netstandard1.2/ko/System.Runtime.xml",
  7519. "ref/netstandard1.2/ru/System.Runtime.xml",
  7520. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7521. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7522. "ref/netstandard1.3/System.Runtime.dll",
  7523. "ref/netstandard1.3/System.Runtime.xml",
  7524. "ref/netstandard1.3/de/System.Runtime.xml",
  7525. "ref/netstandard1.3/es/System.Runtime.xml",
  7526. "ref/netstandard1.3/fr/System.Runtime.xml",
  7527. "ref/netstandard1.3/it/System.Runtime.xml",
  7528. "ref/netstandard1.3/ja/System.Runtime.xml",
  7529. "ref/netstandard1.3/ko/System.Runtime.xml",
  7530. "ref/netstandard1.3/ru/System.Runtime.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7533. "ref/netstandard1.5/System.Runtime.dll",
  7534. "ref/netstandard1.5/System.Runtime.xml",
  7535. "ref/netstandard1.5/de/System.Runtime.xml",
  7536. "ref/netstandard1.5/es/System.Runtime.xml",
  7537. "ref/netstandard1.5/fr/System.Runtime.xml",
  7538. "ref/netstandard1.5/it/System.Runtime.xml",
  7539. "ref/netstandard1.5/ja/System.Runtime.xml",
  7540. "ref/netstandard1.5/ko/System.Runtime.xml",
  7541. "ref/netstandard1.5/ru/System.Runtime.xml",
  7542. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7543. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7544. "ref/portable-net45+win8+wp80+wpa81/_._",
  7545. "ref/win8/_._",
  7546. "ref/wp80/_._",
  7547. "ref/wpa81/_._",
  7548. "ref/xamarinios10/_._",
  7549. "ref/xamarinmac20/_._",
  7550. "ref/xamarintvos10/_._",
  7551. "ref/xamarinwatchos10/_._",
  7552. "system.runtime.4.3.0.nupkg.sha512",
  7553. "system.runtime.nuspec"
  7554. ]
  7555. },
  7556. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7557. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7558. "type": "package",
  7559. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7560. "files": [
  7561. ".nupkg.metadata",
  7562. ".signature.p7s",
  7563. "Icon.png",
  7564. "LICENSE.TXT",
  7565. "THIRD-PARTY-NOTICES.TXT",
  7566. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7567. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7568. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7569. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7570. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7571. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7572. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7573. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7574. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7575. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7576. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7577. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7578. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7579. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7580. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7581. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7582. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7583. "system.runtime.compilerservices.unsafe.nuspec",
  7584. "useSharedDesignerContext.txt",
  7585. "version.txt"
  7586. ]
  7587. },
  7588. "System.Runtime.Extensions/4.3.0": {
  7589. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7590. "type": "package",
  7591. "path": "system.runtime.extensions/4.3.0",
  7592. "files": [
  7593. ".nupkg.metadata",
  7594. ".signature.p7s",
  7595. "ThirdPartyNotices.txt",
  7596. "dotnet_library_license.txt",
  7597. "lib/MonoAndroid10/_._",
  7598. "lib/MonoTouch10/_._",
  7599. "lib/net45/_._",
  7600. "lib/net462/System.Runtime.Extensions.dll",
  7601. "lib/portable-net45+win8+wp8+wpa81/_._",
  7602. "lib/win8/_._",
  7603. "lib/wp80/_._",
  7604. "lib/wpa81/_._",
  7605. "lib/xamarinios10/_._",
  7606. "lib/xamarinmac20/_._",
  7607. "lib/xamarintvos10/_._",
  7608. "lib/xamarinwatchos10/_._",
  7609. "ref/MonoAndroid10/_._",
  7610. "ref/MonoTouch10/_._",
  7611. "ref/net45/_._",
  7612. "ref/net462/System.Runtime.Extensions.dll",
  7613. "ref/netcore50/System.Runtime.Extensions.dll",
  7614. "ref/netcore50/System.Runtime.Extensions.xml",
  7615. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7616. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7617. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7618. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7619. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7620. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7621. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7622. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7623. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7624. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7625. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7626. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7627. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7628. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7629. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7630. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7631. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7632. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7633. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7634. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7635. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7636. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7637. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7638. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7639. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7640. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7641. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7642. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7643. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7644. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7645. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7646. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7647. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7648. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7649. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7650. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7651. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7652. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7653. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7654. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7655. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7656. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7657. "ref/portable-net45+win8+wp8+wpa81/_._",
  7658. "ref/win8/_._",
  7659. "ref/wp80/_._",
  7660. "ref/wpa81/_._",
  7661. "ref/xamarinios10/_._",
  7662. "ref/xamarinmac20/_._",
  7663. "ref/xamarintvos10/_._",
  7664. "ref/xamarinwatchos10/_._",
  7665. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7666. "system.runtime.extensions.nuspec"
  7667. ]
  7668. },
  7669. "System.Runtime.Handles/4.3.0": {
  7670. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7671. "type": "package",
  7672. "path": "system.runtime.handles/4.3.0",
  7673. "files": [
  7674. ".nupkg.metadata",
  7675. ".signature.p7s",
  7676. "ThirdPartyNotices.txt",
  7677. "dotnet_library_license.txt",
  7678. "lib/MonoAndroid10/_._",
  7679. "lib/MonoTouch10/_._",
  7680. "lib/net46/_._",
  7681. "lib/xamarinios10/_._",
  7682. "lib/xamarinmac20/_._",
  7683. "lib/xamarintvos10/_._",
  7684. "lib/xamarinwatchos10/_._",
  7685. "ref/MonoAndroid10/_._",
  7686. "ref/MonoTouch10/_._",
  7687. "ref/net46/_._",
  7688. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7689. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7690. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7691. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7692. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7693. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7694. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7695. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7696. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7697. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7698. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7699. "ref/xamarinios10/_._",
  7700. "ref/xamarinmac20/_._",
  7701. "ref/xamarintvos10/_._",
  7702. "ref/xamarinwatchos10/_._",
  7703. "system.runtime.handles.4.3.0.nupkg.sha512",
  7704. "system.runtime.handles.nuspec"
  7705. ]
  7706. },
  7707. "System.Runtime.InteropServices/4.3.0": {
  7708. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7709. "type": "package",
  7710. "path": "system.runtime.interopservices/4.3.0",
  7711. "files": [
  7712. ".nupkg.metadata",
  7713. ".signature.p7s",
  7714. "ThirdPartyNotices.txt",
  7715. "dotnet_library_license.txt",
  7716. "lib/MonoAndroid10/_._",
  7717. "lib/MonoTouch10/_._",
  7718. "lib/net45/_._",
  7719. "lib/net462/System.Runtime.InteropServices.dll",
  7720. "lib/net463/System.Runtime.InteropServices.dll",
  7721. "lib/portable-net45+win8+wpa81/_._",
  7722. "lib/win8/_._",
  7723. "lib/wpa81/_._",
  7724. "lib/xamarinios10/_._",
  7725. "lib/xamarinmac20/_._",
  7726. "lib/xamarintvos10/_._",
  7727. "lib/xamarinwatchos10/_._",
  7728. "ref/MonoAndroid10/_._",
  7729. "ref/MonoTouch10/_._",
  7730. "ref/net45/_._",
  7731. "ref/net462/System.Runtime.InteropServices.dll",
  7732. "ref/net463/System.Runtime.InteropServices.dll",
  7733. "ref/netcore50/System.Runtime.InteropServices.dll",
  7734. "ref/netcore50/System.Runtime.InteropServices.xml",
  7735. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7736. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7737. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7738. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7739. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7740. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7741. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7742. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7743. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7744. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7745. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7746. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7747. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7748. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7749. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7750. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7751. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7752. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7753. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7754. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7755. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7756. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7757. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7758. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7759. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7760. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7761. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7762. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7763. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7764. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7765. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7766. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7767. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7768. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7769. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7770. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7771. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7772. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7773. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7774. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7775. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7776. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7777. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7778. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7779. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7780. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7781. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7782. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7783. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7784. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7785. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7786. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7787. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7788. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7789. "ref/portable-net45+win8+wpa81/_._",
  7790. "ref/win8/_._",
  7791. "ref/wpa81/_._",
  7792. "ref/xamarinios10/_._",
  7793. "ref/xamarinmac20/_._",
  7794. "ref/xamarintvos10/_._",
  7795. "ref/xamarinwatchos10/_._",
  7796. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7797. "system.runtime.interopservices.nuspec"
  7798. ]
  7799. },
  7800. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7801. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7802. "type": "package",
  7803. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7804. "files": [
  7805. ".nupkg.metadata",
  7806. ".signature.p7s",
  7807. "ThirdPartyNotices.txt",
  7808. "dotnet_library_license.txt",
  7809. "lib/MonoAndroid10/_._",
  7810. "lib/MonoTouch10/_._",
  7811. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7812. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7813. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7814. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7815. "lib/xamarinios10/_._",
  7816. "lib/xamarinmac20/_._",
  7817. "lib/xamarintvos10/_._",
  7818. "lib/xamarinwatchos10/_._",
  7819. "ref/MonoAndroid10/_._",
  7820. "ref/MonoTouch10/_._",
  7821. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7822. "ref/xamarinios10/_._",
  7823. "ref/xamarinmac20/_._",
  7824. "ref/xamarintvos10/_._",
  7825. "ref/xamarinwatchos10/_._",
  7826. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7827. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7828. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7829. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7830. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7831. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7832. "system.runtime.interopservices.runtimeinformation.nuspec"
  7833. ]
  7834. },
  7835. "System.Runtime.Numerics/4.3.0": {
  7836. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7837. "type": "package",
  7838. "path": "system.runtime.numerics/4.3.0",
  7839. "files": [
  7840. ".nupkg.metadata",
  7841. ".signature.p7s",
  7842. "ThirdPartyNotices.txt",
  7843. "dotnet_library_license.txt",
  7844. "lib/MonoAndroid10/_._",
  7845. "lib/MonoTouch10/_._",
  7846. "lib/net45/_._",
  7847. "lib/netcore50/System.Runtime.Numerics.dll",
  7848. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7849. "lib/portable-net45+win8+wpa81/_._",
  7850. "lib/win8/_._",
  7851. "lib/wpa81/_._",
  7852. "lib/xamarinios10/_._",
  7853. "lib/xamarinmac20/_._",
  7854. "lib/xamarintvos10/_._",
  7855. "lib/xamarinwatchos10/_._",
  7856. "ref/MonoAndroid10/_._",
  7857. "ref/MonoTouch10/_._",
  7858. "ref/net45/_._",
  7859. "ref/netcore50/System.Runtime.Numerics.dll",
  7860. "ref/netcore50/System.Runtime.Numerics.xml",
  7861. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7862. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7863. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7864. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7865. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7866. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7867. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7868. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7869. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7870. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7871. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7872. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7873. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7874. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7875. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7876. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7877. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7878. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7879. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7880. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7881. "ref/portable-net45+win8+wpa81/_._",
  7882. "ref/win8/_._",
  7883. "ref/wpa81/_._",
  7884. "ref/xamarinios10/_._",
  7885. "ref/xamarinmac20/_._",
  7886. "ref/xamarintvos10/_._",
  7887. "ref/xamarinwatchos10/_._",
  7888. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7889. "system.runtime.numerics.nuspec"
  7890. ]
  7891. },
  7892. "System.Security.AccessControl/4.7.0": {
  7893. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7894. "type": "package",
  7895. "path": "system.security.accesscontrol/4.7.0",
  7896. "files": [
  7897. ".nupkg.metadata",
  7898. ".signature.p7s",
  7899. "LICENSE.TXT",
  7900. "THIRD-PARTY-NOTICES.TXT",
  7901. "lib/net46/System.Security.AccessControl.dll",
  7902. "lib/net461/System.Security.AccessControl.dll",
  7903. "lib/net461/System.Security.AccessControl.xml",
  7904. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7905. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7906. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7907. "lib/uap10.0.16299/_._",
  7908. "ref/net46/System.Security.AccessControl.dll",
  7909. "ref/net461/System.Security.AccessControl.dll",
  7910. "ref/net461/System.Security.AccessControl.xml",
  7911. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7912. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7913. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7914. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7915. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7916. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7917. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7918. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7919. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7920. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7921. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7922. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7923. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7924. "ref/uap10.0.16299/_._",
  7925. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7926. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7927. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7928. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7929. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7930. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7931. "runtimes/win/lib/uap10.0.16299/_._",
  7932. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7933. "system.security.accesscontrol.nuspec",
  7934. "useSharedDesignerContext.txt",
  7935. "version.txt"
  7936. ]
  7937. },
  7938. "System.Security.Claims/4.3.0": {
  7939. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7940. "type": "package",
  7941. "path": "system.security.claims/4.3.0",
  7942. "files": [
  7943. ".nupkg.metadata",
  7944. ".signature.p7s",
  7945. "ThirdPartyNotices.txt",
  7946. "dotnet_library_license.txt",
  7947. "lib/MonoAndroid10/_._",
  7948. "lib/MonoTouch10/_._",
  7949. "lib/net46/System.Security.Claims.dll",
  7950. "lib/netstandard1.3/System.Security.Claims.dll",
  7951. "lib/xamarinios10/_._",
  7952. "lib/xamarinmac20/_._",
  7953. "lib/xamarintvos10/_._",
  7954. "lib/xamarinwatchos10/_._",
  7955. "ref/MonoAndroid10/_._",
  7956. "ref/MonoTouch10/_._",
  7957. "ref/net46/System.Security.Claims.dll",
  7958. "ref/netstandard1.3/System.Security.Claims.dll",
  7959. "ref/netstandard1.3/System.Security.Claims.xml",
  7960. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7961. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7962. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7963. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7964. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7965. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7966. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7967. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7968. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7969. "ref/xamarinios10/_._",
  7970. "ref/xamarinmac20/_._",
  7971. "ref/xamarintvos10/_._",
  7972. "ref/xamarinwatchos10/_._",
  7973. "system.security.claims.4.3.0.nupkg.sha512",
  7974. "system.security.claims.nuspec"
  7975. ]
  7976. },
  7977. "System.Security.Cryptography.Algorithms/4.3.0": {
  7978. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7979. "type": "package",
  7980. "path": "system.security.cryptography.algorithms/4.3.0",
  7981. "files": [
  7982. ".nupkg.metadata",
  7983. ".signature.p7s",
  7984. "ThirdPartyNotices.txt",
  7985. "dotnet_library_license.txt",
  7986. "lib/MonoAndroid10/_._",
  7987. "lib/MonoTouch10/_._",
  7988. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7989. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7990. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7991. "lib/xamarinios10/_._",
  7992. "lib/xamarinmac20/_._",
  7993. "lib/xamarintvos10/_._",
  7994. "lib/xamarinwatchos10/_._",
  7995. "ref/MonoAndroid10/_._",
  7996. "ref/MonoTouch10/_._",
  7997. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7998. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7999. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8000. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8001. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8002. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8003. "ref/xamarinios10/_._",
  8004. "ref/xamarinmac20/_._",
  8005. "ref/xamarintvos10/_._",
  8006. "ref/xamarinwatchos10/_._",
  8007. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8008. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8009. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8010. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8011. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8012. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8013. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8014. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8015. "system.security.cryptography.algorithms.nuspec"
  8016. ]
  8017. },
  8018. "System.Security.Cryptography.Cng/4.3.0": {
  8019. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8020. "type": "package",
  8021. "path": "system.security.cryptography.cng/4.3.0",
  8022. "files": [
  8023. ".nupkg.metadata",
  8024. ".signature.p7s",
  8025. "ThirdPartyNotices.txt",
  8026. "dotnet_library_license.txt",
  8027. "lib/net46/System.Security.Cryptography.Cng.dll",
  8028. "lib/net461/System.Security.Cryptography.Cng.dll",
  8029. "lib/net463/System.Security.Cryptography.Cng.dll",
  8030. "ref/net46/System.Security.Cryptography.Cng.dll",
  8031. "ref/net461/System.Security.Cryptography.Cng.dll",
  8032. "ref/net463/System.Security.Cryptography.Cng.dll",
  8033. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8034. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8035. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8036. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8037. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8038. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8039. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8040. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8041. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8042. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8043. "system.security.cryptography.cng.nuspec"
  8044. ]
  8045. },
  8046. "System.Security.Cryptography.Csp/4.3.0": {
  8047. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8048. "type": "package",
  8049. "path": "system.security.cryptography.csp/4.3.0",
  8050. "files": [
  8051. ".nupkg.metadata",
  8052. ".signature.p7s",
  8053. "ThirdPartyNotices.txt",
  8054. "dotnet_library_license.txt",
  8055. "lib/MonoAndroid10/_._",
  8056. "lib/MonoTouch10/_._",
  8057. "lib/net46/System.Security.Cryptography.Csp.dll",
  8058. "lib/xamarinios10/_._",
  8059. "lib/xamarinmac20/_._",
  8060. "lib/xamarintvos10/_._",
  8061. "lib/xamarinwatchos10/_._",
  8062. "ref/MonoAndroid10/_._",
  8063. "ref/MonoTouch10/_._",
  8064. "ref/net46/System.Security.Cryptography.Csp.dll",
  8065. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8066. "ref/xamarinios10/_._",
  8067. "ref/xamarinmac20/_._",
  8068. "ref/xamarintvos10/_._",
  8069. "ref/xamarinwatchos10/_._",
  8070. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8071. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8072. "runtimes/win/lib/netcore50/_._",
  8073. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8074. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8075. "system.security.cryptography.csp.nuspec"
  8076. ]
  8077. },
  8078. "System.Security.Cryptography.Encoding/4.3.0": {
  8079. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8080. "type": "package",
  8081. "path": "system.security.cryptography.encoding/4.3.0",
  8082. "files": [
  8083. ".nupkg.metadata",
  8084. ".signature.p7s",
  8085. "ThirdPartyNotices.txt",
  8086. "dotnet_library_license.txt",
  8087. "lib/MonoAndroid10/_._",
  8088. "lib/MonoTouch10/_._",
  8089. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8090. "lib/xamarinios10/_._",
  8091. "lib/xamarinmac20/_._",
  8092. "lib/xamarintvos10/_._",
  8093. "lib/xamarinwatchos10/_._",
  8094. "ref/MonoAndroid10/_._",
  8095. "ref/MonoTouch10/_._",
  8096. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8097. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8098. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8099. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8100. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8101. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8102. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8103. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8104. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8105. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8106. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8107. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8108. "ref/xamarinios10/_._",
  8109. "ref/xamarinmac20/_._",
  8110. "ref/xamarintvos10/_._",
  8111. "ref/xamarinwatchos10/_._",
  8112. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8113. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8114. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8115. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8116. "system.security.cryptography.encoding.nuspec"
  8117. ]
  8118. },
  8119. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8120. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8121. "type": "package",
  8122. "path": "system.security.cryptography.openssl/4.3.0",
  8123. "files": [
  8124. ".nupkg.metadata",
  8125. ".signature.p7s",
  8126. "ThirdPartyNotices.txt",
  8127. "dotnet_library_license.txt",
  8128. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8129. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8130. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8131. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8132. "system.security.cryptography.openssl.nuspec"
  8133. ]
  8134. },
  8135. "System.Security.Cryptography.Primitives/4.3.0": {
  8136. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8137. "type": "package",
  8138. "path": "system.security.cryptography.primitives/4.3.0",
  8139. "files": [
  8140. ".nupkg.metadata",
  8141. ".signature.p7s",
  8142. "ThirdPartyNotices.txt",
  8143. "dotnet_library_license.txt",
  8144. "lib/MonoAndroid10/_._",
  8145. "lib/MonoTouch10/_._",
  8146. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8147. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8148. "lib/xamarinios10/_._",
  8149. "lib/xamarinmac20/_._",
  8150. "lib/xamarintvos10/_._",
  8151. "lib/xamarinwatchos10/_._",
  8152. "ref/MonoAndroid10/_._",
  8153. "ref/MonoTouch10/_._",
  8154. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8155. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8156. "ref/xamarinios10/_._",
  8157. "ref/xamarinmac20/_._",
  8158. "ref/xamarintvos10/_._",
  8159. "ref/xamarinwatchos10/_._",
  8160. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8161. "system.security.cryptography.primitives.nuspec"
  8162. ]
  8163. },
  8164. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8165. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8166. "type": "package",
  8167. "path": "system.security.cryptography.protecteddata/4.7.0",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "LICENSE.TXT",
  8172. "THIRD-PARTY-NOTICES.TXT",
  8173. "lib/MonoAndroid10/_._",
  8174. "lib/MonoTouch10/_._",
  8175. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8176. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8177. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8178. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8179. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8180. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8181. "lib/xamarinios10/_._",
  8182. "lib/xamarinmac20/_._",
  8183. "lib/xamarintvos10/_._",
  8184. "lib/xamarinwatchos10/_._",
  8185. "ref/MonoAndroid10/_._",
  8186. "ref/MonoTouch10/_._",
  8187. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8188. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8189. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8190. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8191. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8192. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8193. "ref/xamarinios10/_._",
  8194. "ref/xamarinmac20/_._",
  8195. "ref/xamarintvos10/_._",
  8196. "ref/xamarinwatchos10/_._",
  8197. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8198. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8199. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8200. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8201. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8202. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8203. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8204. "system.security.cryptography.protecteddata.nuspec",
  8205. "useSharedDesignerContext.txt",
  8206. "version.txt"
  8207. ]
  8208. },
  8209. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8210. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8211. "type": "package",
  8212. "path": "system.security.cryptography.x509certificates/4.3.0",
  8213. "files": [
  8214. ".nupkg.metadata",
  8215. ".signature.p7s",
  8216. "ThirdPartyNotices.txt",
  8217. "dotnet_library_license.txt",
  8218. "lib/MonoAndroid10/_._",
  8219. "lib/MonoTouch10/_._",
  8220. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8221. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8222. "lib/xamarinios10/_._",
  8223. "lib/xamarinmac20/_._",
  8224. "lib/xamarintvos10/_._",
  8225. "lib/xamarinwatchos10/_._",
  8226. "ref/MonoAndroid10/_._",
  8227. "ref/MonoTouch10/_._",
  8228. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8229. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8230. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8231. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8232. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8233. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8234. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8235. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8236. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8237. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8238. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8239. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8240. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8241. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8242. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8243. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8244. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8245. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8246. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8247. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8248. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8249. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8250. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8251. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8252. "ref/xamarinios10/_._",
  8253. "ref/xamarinmac20/_._",
  8254. "ref/xamarintvos10/_._",
  8255. "ref/xamarinwatchos10/_._",
  8256. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8257. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8258. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8259. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8260. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8261. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8262. "system.security.cryptography.x509certificates.nuspec"
  8263. ]
  8264. },
  8265. "System.Security.Permissions/4.7.0": {
  8266. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8267. "type": "package",
  8268. "path": "system.security.permissions/4.7.0",
  8269. "files": [
  8270. ".nupkg.metadata",
  8271. ".signature.p7s",
  8272. "LICENSE.TXT",
  8273. "THIRD-PARTY-NOTICES.TXT",
  8274. "lib/net461/System.Security.Permissions.dll",
  8275. "lib/net461/System.Security.Permissions.xml",
  8276. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8277. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8278. "lib/netstandard2.0/System.Security.Permissions.dll",
  8279. "lib/netstandard2.0/System.Security.Permissions.xml",
  8280. "ref/net461/System.Security.Permissions.dll",
  8281. "ref/net461/System.Security.Permissions.xml",
  8282. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8283. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8284. "ref/netstandard2.0/System.Security.Permissions.dll",
  8285. "ref/netstandard2.0/System.Security.Permissions.xml",
  8286. "system.security.permissions.4.7.0.nupkg.sha512",
  8287. "system.security.permissions.nuspec",
  8288. "useSharedDesignerContext.txt",
  8289. "version.txt"
  8290. ]
  8291. },
  8292. "System.Security.Principal/4.3.0": {
  8293. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8294. "type": "package",
  8295. "path": "system.security.principal/4.3.0",
  8296. "files": [
  8297. ".nupkg.metadata",
  8298. ".signature.p7s",
  8299. "ThirdPartyNotices.txt",
  8300. "dotnet_library_license.txt",
  8301. "lib/MonoAndroid10/_._",
  8302. "lib/MonoTouch10/_._",
  8303. "lib/net45/_._",
  8304. "lib/netcore50/System.Security.Principal.dll",
  8305. "lib/netstandard1.0/System.Security.Principal.dll",
  8306. "lib/portable-net45+win8+wp8+wpa81/_._",
  8307. "lib/win8/_._",
  8308. "lib/wp80/_._",
  8309. "lib/wpa81/_._",
  8310. "lib/xamarinios10/_._",
  8311. "lib/xamarinmac20/_._",
  8312. "lib/xamarintvos10/_._",
  8313. "lib/xamarinwatchos10/_._",
  8314. "ref/MonoAndroid10/_._",
  8315. "ref/MonoTouch10/_._",
  8316. "ref/net45/_._",
  8317. "ref/netcore50/System.Security.Principal.dll",
  8318. "ref/netcore50/System.Security.Principal.xml",
  8319. "ref/netcore50/de/System.Security.Principal.xml",
  8320. "ref/netcore50/es/System.Security.Principal.xml",
  8321. "ref/netcore50/fr/System.Security.Principal.xml",
  8322. "ref/netcore50/it/System.Security.Principal.xml",
  8323. "ref/netcore50/ja/System.Security.Principal.xml",
  8324. "ref/netcore50/ko/System.Security.Principal.xml",
  8325. "ref/netcore50/ru/System.Security.Principal.xml",
  8326. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8327. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8328. "ref/netstandard1.0/System.Security.Principal.dll",
  8329. "ref/netstandard1.0/System.Security.Principal.xml",
  8330. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8331. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8332. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8333. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8334. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8335. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8336. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8337. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8338. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8339. "ref/portable-net45+win8+wp8+wpa81/_._",
  8340. "ref/win8/_._",
  8341. "ref/wp80/_._",
  8342. "ref/wpa81/_._",
  8343. "ref/xamarinios10/_._",
  8344. "ref/xamarinmac20/_._",
  8345. "ref/xamarintvos10/_._",
  8346. "ref/xamarinwatchos10/_._",
  8347. "system.security.principal.4.3.0.nupkg.sha512",
  8348. "system.security.principal.nuspec"
  8349. ]
  8350. },
  8351. "System.Security.Principal.Windows/4.7.0": {
  8352. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8353. "type": "package",
  8354. "path": "system.security.principal.windows/4.7.0",
  8355. "files": [
  8356. ".nupkg.metadata",
  8357. ".signature.p7s",
  8358. "LICENSE.TXT",
  8359. "THIRD-PARTY-NOTICES.TXT",
  8360. "lib/net46/System.Security.Principal.Windows.dll",
  8361. "lib/net461/System.Security.Principal.Windows.dll",
  8362. "lib/net461/System.Security.Principal.Windows.xml",
  8363. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8364. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8365. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8366. "lib/uap10.0.16299/_._",
  8367. "ref/net46/System.Security.Principal.Windows.dll",
  8368. "ref/net461/System.Security.Principal.Windows.dll",
  8369. "ref/net461/System.Security.Principal.Windows.xml",
  8370. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8371. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8372. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8373. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8374. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8375. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8376. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8377. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8378. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8379. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8380. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8381. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8382. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8383. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8384. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8385. "ref/uap10.0.16299/_._",
  8386. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8387. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8388. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8389. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8390. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8391. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8392. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8393. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8394. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8395. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8396. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8397. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8398. "runtimes/win/lib/uap10.0.16299/_._",
  8399. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8400. "system.security.principal.windows.nuspec",
  8401. "useSharedDesignerContext.txt",
  8402. "version.txt"
  8403. ]
  8404. },
  8405. "System.Text.Encoding/4.3.0": {
  8406. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8407. "type": "package",
  8408. "path": "system.text.encoding/4.3.0",
  8409. "files": [
  8410. ".nupkg.metadata",
  8411. ".signature.p7s",
  8412. "ThirdPartyNotices.txt",
  8413. "dotnet_library_license.txt",
  8414. "lib/MonoAndroid10/_._",
  8415. "lib/MonoTouch10/_._",
  8416. "lib/net45/_._",
  8417. "lib/portable-net45+win8+wp8+wpa81/_._",
  8418. "lib/win8/_._",
  8419. "lib/wp80/_._",
  8420. "lib/wpa81/_._",
  8421. "lib/xamarinios10/_._",
  8422. "lib/xamarinmac20/_._",
  8423. "lib/xamarintvos10/_._",
  8424. "lib/xamarinwatchos10/_._",
  8425. "ref/MonoAndroid10/_._",
  8426. "ref/MonoTouch10/_._",
  8427. "ref/net45/_._",
  8428. "ref/netcore50/System.Text.Encoding.dll",
  8429. "ref/netcore50/System.Text.Encoding.xml",
  8430. "ref/netcore50/de/System.Text.Encoding.xml",
  8431. "ref/netcore50/es/System.Text.Encoding.xml",
  8432. "ref/netcore50/fr/System.Text.Encoding.xml",
  8433. "ref/netcore50/it/System.Text.Encoding.xml",
  8434. "ref/netcore50/ja/System.Text.Encoding.xml",
  8435. "ref/netcore50/ko/System.Text.Encoding.xml",
  8436. "ref/netcore50/ru/System.Text.Encoding.xml",
  8437. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8438. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8439. "ref/netstandard1.0/System.Text.Encoding.dll",
  8440. "ref/netstandard1.0/System.Text.Encoding.xml",
  8441. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8442. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8443. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8444. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8445. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8446. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8447. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8448. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8449. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8450. "ref/netstandard1.3/System.Text.Encoding.dll",
  8451. "ref/netstandard1.3/System.Text.Encoding.xml",
  8452. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8453. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8454. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8455. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8456. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8457. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8458. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8459. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8460. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8461. "ref/portable-net45+win8+wp8+wpa81/_._",
  8462. "ref/win8/_._",
  8463. "ref/wp80/_._",
  8464. "ref/wpa81/_._",
  8465. "ref/xamarinios10/_._",
  8466. "ref/xamarinmac20/_._",
  8467. "ref/xamarintvos10/_._",
  8468. "ref/xamarinwatchos10/_._",
  8469. "system.text.encoding.4.3.0.nupkg.sha512",
  8470. "system.text.encoding.nuspec"
  8471. ]
  8472. },
  8473. "System.Text.Encoding.CodePages/5.0.0": {
  8474. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8475. "type": "package",
  8476. "path": "system.text.encoding.codepages/5.0.0",
  8477. "files": [
  8478. ".nupkg.metadata",
  8479. ".signature.p7s",
  8480. "Icon.png",
  8481. "LICENSE.TXT",
  8482. "THIRD-PARTY-NOTICES.TXT",
  8483. "lib/MonoAndroid10/_._",
  8484. "lib/MonoTouch10/_._",
  8485. "lib/net46/System.Text.Encoding.CodePages.dll",
  8486. "lib/net461/System.Text.Encoding.CodePages.dll",
  8487. "lib/net461/System.Text.Encoding.CodePages.xml",
  8488. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8489. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8490. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8491. "lib/xamarinios10/_._",
  8492. "lib/xamarinmac20/_._",
  8493. "lib/xamarintvos10/_._",
  8494. "lib/xamarinwatchos10/_._",
  8495. "ref/MonoAndroid10/_._",
  8496. "ref/MonoTouch10/_._",
  8497. "ref/xamarinios10/_._",
  8498. "ref/xamarinmac20/_._",
  8499. "ref/xamarintvos10/_._",
  8500. "ref/xamarinwatchos10/_._",
  8501. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8502. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8503. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8504. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8505. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8506. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8507. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8508. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8509. "system.text.encoding.codepages.nuspec",
  8510. "useSharedDesignerContext.txt",
  8511. "version.txt"
  8512. ]
  8513. },
  8514. "System.Text.Encoding.Extensions/4.3.0": {
  8515. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8516. "type": "package",
  8517. "path": "system.text.encoding.extensions/4.3.0",
  8518. "files": [
  8519. ".nupkg.metadata",
  8520. ".signature.p7s",
  8521. "ThirdPartyNotices.txt",
  8522. "dotnet_library_license.txt",
  8523. "lib/MonoAndroid10/_._",
  8524. "lib/MonoTouch10/_._",
  8525. "lib/net45/_._",
  8526. "lib/portable-net45+win8+wp8+wpa81/_._",
  8527. "lib/win8/_._",
  8528. "lib/wp80/_._",
  8529. "lib/wpa81/_._",
  8530. "lib/xamarinios10/_._",
  8531. "lib/xamarinmac20/_._",
  8532. "lib/xamarintvos10/_._",
  8533. "lib/xamarinwatchos10/_._",
  8534. "ref/MonoAndroid10/_._",
  8535. "ref/MonoTouch10/_._",
  8536. "ref/net45/_._",
  8537. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8538. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8539. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8540. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8541. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8542. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8543. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8544. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8545. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8546. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8547. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8548. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8549. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8550. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8551. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8552. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8553. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8554. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8555. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8556. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8557. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8558. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8559. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8560. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8561. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8562. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8563. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8564. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8565. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8566. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8567. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8568. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8569. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8570. "ref/portable-net45+win8+wp8+wpa81/_._",
  8571. "ref/win8/_._",
  8572. "ref/wp80/_._",
  8573. "ref/wpa81/_._",
  8574. "ref/xamarinios10/_._",
  8575. "ref/xamarinmac20/_._",
  8576. "ref/xamarintvos10/_._",
  8577. "ref/xamarinwatchos10/_._",
  8578. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8579. "system.text.encoding.extensions.nuspec"
  8580. ]
  8581. },
  8582. "System.Text.Encodings.Web/4.5.0": {
  8583. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8584. "type": "package",
  8585. "path": "system.text.encodings.web/4.5.0",
  8586. "files": [
  8587. ".nupkg.metadata",
  8588. ".signature.p7s",
  8589. "LICENSE.TXT",
  8590. "THIRD-PARTY-NOTICES.TXT",
  8591. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8592. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8593. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8594. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8595. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8596. "system.text.encodings.web.nuspec",
  8597. "useSharedDesignerContext.txt",
  8598. "version.txt"
  8599. ]
  8600. },
  8601. "System.Text.RegularExpressions/4.3.0": {
  8602. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8603. "type": "package",
  8604. "path": "system.text.regularexpressions/4.3.0",
  8605. "files": [
  8606. ".nupkg.metadata",
  8607. ".signature.p7s",
  8608. "ThirdPartyNotices.txt",
  8609. "dotnet_library_license.txt",
  8610. "lib/MonoAndroid10/_._",
  8611. "lib/MonoTouch10/_._",
  8612. "lib/net45/_._",
  8613. "lib/net463/System.Text.RegularExpressions.dll",
  8614. "lib/netcore50/System.Text.RegularExpressions.dll",
  8615. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8616. "lib/portable-net45+win8+wp8+wpa81/_._",
  8617. "lib/win8/_._",
  8618. "lib/wp80/_._",
  8619. "lib/wpa81/_._",
  8620. "lib/xamarinios10/_._",
  8621. "lib/xamarinmac20/_._",
  8622. "lib/xamarintvos10/_._",
  8623. "lib/xamarinwatchos10/_._",
  8624. "ref/MonoAndroid10/_._",
  8625. "ref/MonoTouch10/_._",
  8626. "ref/net45/_._",
  8627. "ref/net463/System.Text.RegularExpressions.dll",
  8628. "ref/netcore50/System.Text.RegularExpressions.dll",
  8629. "ref/netcore50/System.Text.RegularExpressions.xml",
  8630. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8631. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8632. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8633. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8634. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8635. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8636. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8637. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8638. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8639. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8640. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8641. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8642. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8643. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8644. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8645. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8646. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8647. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8648. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8649. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8650. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8651. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8652. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8653. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8654. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8655. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8656. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8657. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8658. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8659. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8660. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8661. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8662. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8663. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8664. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8665. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8666. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8667. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8668. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8669. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8670. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8671. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8672. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8673. "ref/portable-net45+win8+wp8+wpa81/_._",
  8674. "ref/win8/_._",
  8675. "ref/wp80/_._",
  8676. "ref/wpa81/_._",
  8677. "ref/xamarinios10/_._",
  8678. "ref/xamarinmac20/_._",
  8679. "ref/xamarintvos10/_._",
  8680. "ref/xamarinwatchos10/_._",
  8681. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8682. "system.text.regularexpressions.nuspec"
  8683. ]
  8684. },
  8685. "System.Threading/4.3.0": {
  8686. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8687. "type": "package",
  8688. "path": "system.threading/4.3.0",
  8689. "files": [
  8690. ".nupkg.metadata",
  8691. ".signature.p7s",
  8692. "ThirdPartyNotices.txt",
  8693. "dotnet_library_license.txt",
  8694. "lib/MonoAndroid10/_._",
  8695. "lib/MonoTouch10/_._",
  8696. "lib/net45/_._",
  8697. "lib/netcore50/System.Threading.dll",
  8698. "lib/netstandard1.3/System.Threading.dll",
  8699. "lib/portable-net45+win8+wp8+wpa81/_._",
  8700. "lib/win8/_._",
  8701. "lib/wp80/_._",
  8702. "lib/wpa81/_._",
  8703. "lib/xamarinios10/_._",
  8704. "lib/xamarinmac20/_._",
  8705. "lib/xamarintvos10/_._",
  8706. "lib/xamarinwatchos10/_._",
  8707. "ref/MonoAndroid10/_._",
  8708. "ref/MonoTouch10/_._",
  8709. "ref/net45/_._",
  8710. "ref/netcore50/System.Threading.dll",
  8711. "ref/netcore50/System.Threading.xml",
  8712. "ref/netcore50/de/System.Threading.xml",
  8713. "ref/netcore50/es/System.Threading.xml",
  8714. "ref/netcore50/fr/System.Threading.xml",
  8715. "ref/netcore50/it/System.Threading.xml",
  8716. "ref/netcore50/ja/System.Threading.xml",
  8717. "ref/netcore50/ko/System.Threading.xml",
  8718. "ref/netcore50/ru/System.Threading.xml",
  8719. "ref/netcore50/zh-hans/System.Threading.xml",
  8720. "ref/netcore50/zh-hant/System.Threading.xml",
  8721. "ref/netstandard1.0/System.Threading.dll",
  8722. "ref/netstandard1.0/System.Threading.xml",
  8723. "ref/netstandard1.0/de/System.Threading.xml",
  8724. "ref/netstandard1.0/es/System.Threading.xml",
  8725. "ref/netstandard1.0/fr/System.Threading.xml",
  8726. "ref/netstandard1.0/it/System.Threading.xml",
  8727. "ref/netstandard1.0/ja/System.Threading.xml",
  8728. "ref/netstandard1.0/ko/System.Threading.xml",
  8729. "ref/netstandard1.0/ru/System.Threading.xml",
  8730. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8731. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8732. "ref/netstandard1.3/System.Threading.dll",
  8733. "ref/netstandard1.3/System.Threading.xml",
  8734. "ref/netstandard1.3/de/System.Threading.xml",
  8735. "ref/netstandard1.3/es/System.Threading.xml",
  8736. "ref/netstandard1.3/fr/System.Threading.xml",
  8737. "ref/netstandard1.3/it/System.Threading.xml",
  8738. "ref/netstandard1.3/ja/System.Threading.xml",
  8739. "ref/netstandard1.3/ko/System.Threading.xml",
  8740. "ref/netstandard1.3/ru/System.Threading.xml",
  8741. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8742. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8743. "ref/portable-net45+win8+wp8+wpa81/_._",
  8744. "ref/win8/_._",
  8745. "ref/wp80/_._",
  8746. "ref/wpa81/_._",
  8747. "ref/xamarinios10/_._",
  8748. "ref/xamarinmac20/_._",
  8749. "ref/xamarintvos10/_._",
  8750. "ref/xamarinwatchos10/_._",
  8751. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8752. "system.threading.4.3.0.nupkg.sha512",
  8753. "system.threading.nuspec"
  8754. ]
  8755. },
  8756. "System.Threading.Channels/7.0.0": {
  8757. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8758. "type": "package",
  8759. "path": "system.threading.channels/7.0.0",
  8760. "files": [
  8761. ".nupkg.metadata",
  8762. ".signature.p7s",
  8763. "Icon.png",
  8764. "LICENSE.TXT",
  8765. "THIRD-PARTY-NOTICES.TXT",
  8766. "buildTransitive/net461/System.Threading.Channels.targets",
  8767. "buildTransitive/net462/_._",
  8768. "buildTransitive/net6.0/_._",
  8769. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8770. "lib/net462/System.Threading.Channels.dll",
  8771. "lib/net462/System.Threading.Channels.xml",
  8772. "lib/net6.0/System.Threading.Channels.dll",
  8773. "lib/net6.0/System.Threading.Channels.xml",
  8774. "lib/net7.0/System.Threading.Channels.dll",
  8775. "lib/net7.0/System.Threading.Channels.xml",
  8776. "lib/netstandard2.0/System.Threading.Channels.dll",
  8777. "lib/netstandard2.0/System.Threading.Channels.xml",
  8778. "lib/netstandard2.1/System.Threading.Channels.dll",
  8779. "lib/netstandard2.1/System.Threading.Channels.xml",
  8780. "system.threading.channels.7.0.0.nupkg.sha512",
  8781. "system.threading.channels.nuspec",
  8782. "useSharedDesignerContext.txt"
  8783. ]
  8784. },
  8785. "System.Threading.Tasks/4.3.0": {
  8786. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8787. "type": "package",
  8788. "path": "system.threading.tasks/4.3.0",
  8789. "files": [
  8790. ".nupkg.metadata",
  8791. ".signature.p7s",
  8792. "ThirdPartyNotices.txt",
  8793. "dotnet_library_license.txt",
  8794. "lib/MonoAndroid10/_._",
  8795. "lib/MonoTouch10/_._",
  8796. "lib/net45/_._",
  8797. "lib/portable-net45+win8+wp8+wpa81/_._",
  8798. "lib/win8/_._",
  8799. "lib/wp80/_._",
  8800. "lib/wpa81/_._",
  8801. "lib/xamarinios10/_._",
  8802. "lib/xamarinmac20/_._",
  8803. "lib/xamarintvos10/_._",
  8804. "lib/xamarinwatchos10/_._",
  8805. "ref/MonoAndroid10/_._",
  8806. "ref/MonoTouch10/_._",
  8807. "ref/net45/_._",
  8808. "ref/netcore50/System.Threading.Tasks.dll",
  8809. "ref/netcore50/System.Threading.Tasks.xml",
  8810. "ref/netcore50/de/System.Threading.Tasks.xml",
  8811. "ref/netcore50/es/System.Threading.Tasks.xml",
  8812. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8813. "ref/netcore50/it/System.Threading.Tasks.xml",
  8814. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8815. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8816. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8817. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8818. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8819. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8820. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8821. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8822. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8823. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8824. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8825. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8826. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8827. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8828. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8829. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8830. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8831. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8832. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8833. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8834. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8835. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8836. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8837. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8838. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8839. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8840. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8841. "ref/portable-net45+win8+wp8+wpa81/_._",
  8842. "ref/win8/_._",
  8843. "ref/wp80/_._",
  8844. "ref/wpa81/_._",
  8845. "ref/xamarinios10/_._",
  8846. "ref/xamarinmac20/_._",
  8847. "ref/xamarintvos10/_._",
  8848. "ref/xamarinwatchos10/_._",
  8849. "system.threading.tasks.4.3.0.nupkg.sha512",
  8850. "system.threading.tasks.nuspec"
  8851. ]
  8852. },
  8853. "System.Threading.Tasks.Extensions/4.3.0": {
  8854. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8855. "type": "package",
  8856. "path": "system.threading.tasks.extensions/4.3.0",
  8857. "files": [
  8858. ".nupkg.metadata",
  8859. ".signature.p7s",
  8860. "ThirdPartyNotices.txt",
  8861. "dotnet_library_license.txt",
  8862. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8863. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8864. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8865. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8866. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8867. "system.threading.tasks.extensions.nuspec"
  8868. ]
  8869. },
  8870. "System.Threading.Thread/4.3.0": {
  8871. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8872. "type": "package",
  8873. "path": "system.threading.thread/4.3.0",
  8874. "files": [
  8875. ".nupkg.metadata",
  8876. ".signature.p7s",
  8877. "ThirdPartyNotices.txt",
  8878. "dotnet_library_license.txt",
  8879. "lib/MonoAndroid10/_._",
  8880. "lib/MonoTouch10/_._",
  8881. "lib/net46/System.Threading.Thread.dll",
  8882. "lib/netcore50/_._",
  8883. "lib/netstandard1.3/System.Threading.Thread.dll",
  8884. "lib/xamarinios10/_._",
  8885. "lib/xamarinmac20/_._",
  8886. "lib/xamarintvos10/_._",
  8887. "lib/xamarinwatchos10/_._",
  8888. "ref/MonoAndroid10/_._",
  8889. "ref/MonoTouch10/_._",
  8890. "ref/net46/System.Threading.Thread.dll",
  8891. "ref/netstandard1.3/System.Threading.Thread.dll",
  8892. "ref/netstandard1.3/System.Threading.Thread.xml",
  8893. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8894. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8895. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8896. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8897. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8898. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8899. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8900. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8901. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8902. "ref/xamarinios10/_._",
  8903. "ref/xamarinmac20/_._",
  8904. "ref/xamarintvos10/_._",
  8905. "ref/xamarinwatchos10/_._",
  8906. "system.threading.thread.4.3.0.nupkg.sha512",
  8907. "system.threading.thread.nuspec"
  8908. ]
  8909. },
  8910. "System.Threading.ThreadPool/4.3.0": {
  8911. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8912. "type": "package",
  8913. "path": "system.threading.threadpool/4.3.0",
  8914. "files": [
  8915. ".nupkg.metadata",
  8916. ".signature.p7s",
  8917. "ThirdPartyNotices.txt",
  8918. "dotnet_library_license.txt",
  8919. "lib/MonoAndroid10/_._",
  8920. "lib/MonoTouch10/_._",
  8921. "lib/net46/System.Threading.ThreadPool.dll",
  8922. "lib/netcore50/_._",
  8923. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8924. "lib/xamarinios10/_._",
  8925. "lib/xamarinmac20/_._",
  8926. "lib/xamarintvos10/_._",
  8927. "lib/xamarinwatchos10/_._",
  8928. "ref/MonoAndroid10/_._",
  8929. "ref/MonoTouch10/_._",
  8930. "ref/net46/System.Threading.ThreadPool.dll",
  8931. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8932. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8933. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8934. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8935. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8936. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8937. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8938. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8939. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8940. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8941. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8942. "ref/xamarinios10/_._",
  8943. "ref/xamarinmac20/_._",
  8944. "ref/xamarintvos10/_._",
  8945. "ref/xamarinwatchos10/_._",
  8946. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8947. "system.threading.threadpool.nuspec"
  8948. ]
  8949. },
  8950. "System.Threading.Timer/4.3.0": {
  8951. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8952. "type": "package",
  8953. "path": "system.threading.timer/4.3.0",
  8954. "files": [
  8955. ".nupkg.metadata",
  8956. ".signature.p7s",
  8957. "ThirdPartyNotices.txt",
  8958. "dotnet_library_license.txt",
  8959. "lib/MonoAndroid10/_._",
  8960. "lib/MonoTouch10/_._",
  8961. "lib/net451/_._",
  8962. "lib/portable-net451+win81+wpa81/_._",
  8963. "lib/win81/_._",
  8964. "lib/wpa81/_._",
  8965. "lib/xamarinios10/_._",
  8966. "lib/xamarinmac20/_._",
  8967. "lib/xamarintvos10/_._",
  8968. "lib/xamarinwatchos10/_._",
  8969. "ref/MonoAndroid10/_._",
  8970. "ref/MonoTouch10/_._",
  8971. "ref/net451/_._",
  8972. "ref/netcore50/System.Threading.Timer.dll",
  8973. "ref/netcore50/System.Threading.Timer.xml",
  8974. "ref/netcore50/de/System.Threading.Timer.xml",
  8975. "ref/netcore50/es/System.Threading.Timer.xml",
  8976. "ref/netcore50/fr/System.Threading.Timer.xml",
  8977. "ref/netcore50/it/System.Threading.Timer.xml",
  8978. "ref/netcore50/ja/System.Threading.Timer.xml",
  8979. "ref/netcore50/ko/System.Threading.Timer.xml",
  8980. "ref/netcore50/ru/System.Threading.Timer.xml",
  8981. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8982. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8983. "ref/netstandard1.2/System.Threading.Timer.dll",
  8984. "ref/netstandard1.2/System.Threading.Timer.xml",
  8985. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8986. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8987. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8988. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8989. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8990. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8991. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8992. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8993. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8994. "ref/portable-net451+win81+wpa81/_._",
  8995. "ref/win81/_._",
  8996. "ref/wpa81/_._",
  8997. "ref/xamarinios10/_._",
  8998. "ref/xamarinmac20/_._",
  8999. "ref/xamarintvos10/_._",
  9000. "ref/xamarinwatchos10/_._",
  9001. "system.threading.timer.4.3.0.nupkg.sha512",
  9002. "system.threading.timer.nuspec"
  9003. ]
  9004. },
  9005. "System.Windows.Extensions/4.7.0": {
  9006. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9007. "type": "package",
  9008. "path": "system.windows.extensions/4.7.0",
  9009. "files": [
  9010. ".nupkg.metadata",
  9011. ".signature.p7s",
  9012. "LICENSE.TXT",
  9013. "THIRD-PARTY-NOTICES.TXT",
  9014. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9015. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9016. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9017. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9018. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9019. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9020. "system.windows.extensions.4.7.0.nupkg.sha512",
  9021. "system.windows.extensions.nuspec",
  9022. "useSharedDesignerContext.txt",
  9023. "version.txt"
  9024. ]
  9025. },
  9026. "System.Xml.ReaderWriter/4.3.0": {
  9027. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9028. "type": "package",
  9029. "path": "system.xml.readerwriter/4.3.0",
  9030. "files": [
  9031. ".nupkg.metadata",
  9032. ".signature.p7s",
  9033. "ThirdPartyNotices.txt",
  9034. "dotnet_library_license.txt",
  9035. "lib/MonoAndroid10/_._",
  9036. "lib/MonoTouch10/_._",
  9037. "lib/net45/_._",
  9038. "lib/net46/System.Xml.ReaderWriter.dll",
  9039. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9040. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9041. "lib/portable-net45+win8+wp8+wpa81/_._",
  9042. "lib/win8/_._",
  9043. "lib/wp80/_._",
  9044. "lib/wpa81/_._",
  9045. "lib/xamarinios10/_._",
  9046. "lib/xamarinmac20/_._",
  9047. "lib/xamarintvos10/_._",
  9048. "lib/xamarinwatchos10/_._",
  9049. "ref/MonoAndroid10/_._",
  9050. "ref/MonoTouch10/_._",
  9051. "ref/net45/_._",
  9052. "ref/net46/System.Xml.ReaderWriter.dll",
  9053. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9054. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9055. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9056. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9057. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9058. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9059. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9060. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9061. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9062. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9063. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9064. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9065. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9066. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9067. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9068. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9069. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9070. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9071. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9072. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9073. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9074. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9075. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9076. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9077. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9078. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9079. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9080. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9081. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9082. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9083. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9084. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9085. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9086. "ref/portable-net45+win8+wp8+wpa81/_._",
  9087. "ref/win8/_._",
  9088. "ref/wp80/_._",
  9089. "ref/wpa81/_._",
  9090. "ref/xamarinios10/_._",
  9091. "ref/xamarinmac20/_._",
  9092. "ref/xamarintvos10/_._",
  9093. "ref/xamarinwatchos10/_._",
  9094. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9095. "system.xml.readerwriter.nuspec"
  9096. ]
  9097. },
  9098. "System.Xml.XDocument/4.3.0": {
  9099. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9100. "type": "package",
  9101. "path": "system.xml.xdocument/4.3.0",
  9102. "files": [
  9103. ".nupkg.metadata",
  9104. ".signature.p7s",
  9105. "ThirdPartyNotices.txt",
  9106. "dotnet_library_license.txt",
  9107. "lib/MonoAndroid10/_._",
  9108. "lib/MonoTouch10/_._",
  9109. "lib/net45/_._",
  9110. "lib/netcore50/System.Xml.XDocument.dll",
  9111. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9112. "lib/portable-net45+win8+wp8+wpa81/_._",
  9113. "lib/win8/_._",
  9114. "lib/wp80/_._",
  9115. "lib/wpa81/_._",
  9116. "lib/xamarinios10/_._",
  9117. "lib/xamarinmac20/_._",
  9118. "lib/xamarintvos10/_._",
  9119. "lib/xamarinwatchos10/_._",
  9120. "ref/MonoAndroid10/_._",
  9121. "ref/MonoTouch10/_._",
  9122. "ref/net45/_._",
  9123. "ref/netcore50/System.Xml.XDocument.dll",
  9124. "ref/netcore50/System.Xml.XDocument.xml",
  9125. "ref/netcore50/de/System.Xml.XDocument.xml",
  9126. "ref/netcore50/es/System.Xml.XDocument.xml",
  9127. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9128. "ref/netcore50/it/System.Xml.XDocument.xml",
  9129. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9130. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9131. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9132. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9133. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9134. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9135. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9136. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9137. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9138. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9139. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9140. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9141. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9142. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9143. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9144. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9145. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9146. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9147. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9148. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9149. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9150. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9151. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9152. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9153. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9154. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9155. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9156. "ref/portable-net45+win8+wp8+wpa81/_._",
  9157. "ref/win8/_._",
  9158. "ref/wp80/_._",
  9159. "ref/wpa81/_._",
  9160. "ref/xamarinios10/_._",
  9161. "ref/xamarinmac20/_._",
  9162. "ref/xamarintvos10/_._",
  9163. "ref/xamarinwatchos10/_._",
  9164. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9165. "system.xml.xdocument.nuspec"
  9166. ]
  9167. },
  9168. "System.Xml.XmlDocument/4.3.0": {
  9169. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9170. "type": "package",
  9171. "path": "system.xml.xmldocument/4.3.0",
  9172. "files": [
  9173. ".nupkg.metadata",
  9174. ".signature.p7s",
  9175. "ThirdPartyNotices.txt",
  9176. "dotnet_library_license.txt",
  9177. "lib/MonoAndroid10/_._",
  9178. "lib/MonoTouch10/_._",
  9179. "lib/net46/System.Xml.XmlDocument.dll",
  9180. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9181. "lib/xamarinios10/_._",
  9182. "lib/xamarinmac20/_._",
  9183. "lib/xamarintvos10/_._",
  9184. "lib/xamarinwatchos10/_._",
  9185. "ref/MonoAndroid10/_._",
  9186. "ref/MonoTouch10/_._",
  9187. "ref/net46/System.Xml.XmlDocument.dll",
  9188. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9189. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9190. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9191. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9192. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9193. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9194. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9195. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9196. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9197. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9198. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9199. "ref/xamarinios10/_._",
  9200. "ref/xamarinmac20/_._",
  9201. "ref/xamarintvos10/_._",
  9202. "ref/xamarinwatchos10/_._",
  9203. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9204. "system.xml.xmldocument.nuspec"
  9205. ]
  9206. },
  9207. "ToolGood.Words/3.1.0.2": {
  9208. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9209. "type": "package",
  9210. "path": "toolgood.words/3.1.0.2",
  9211. "files": [
  9212. ".nupkg.metadata",
  9213. ".signature.p7s",
  9214. "LICENSE",
  9215. "lib/net6.0/ToolGood.Words.dll",
  9216. "lib/net6.0/ToolGood.Words.xml",
  9217. "lib/net8.0/ToolGood.Words.dll",
  9218. "lib/net8.0/ToolGood.Words.xml",
  9219. "lib/net9.0/ToolGood.Words.dll",
  9220. "lib/net9.0/ToolGood.Words.xml",
  9221. "lib/netstandard2.1/ToolGood.Words.dll",
  9222. "lib/netstandard2.1/ToolGood.Words.xml",
  9223. "toolgood.words.3.1.0.2.nupkg.sha512",
  9224. "toolgood.words.nuspec"
  9225. ]
  9226. },
  9227. "Ulid/1.4.1": {
  9228. "sha512": "V6crLJ8a29raWeNwxYGfH9RTKA3H0nR0D9LAGzN3KtEsbiiaWkUjDor6OT5Oz7pxCK+NaY2hu2FLoYEOa8oCkA==",
  9229. "type": "package",
  9230. "path": "ulid/1.4.1",
  9231. "files": [
  9232. ".nupkg.metadata",
  9233. ".signature.p7s",
  9234. "Icon.png",
  9235. "lib/net6.0/Ulid.dll",
  9236. "lib/net6.0/Ulid.xml",
  9237. "lib/net7.0/Ulid.dll",
  9238. "lib/net7.0/Ulid.xml",
  9239. "lib/net8.0/Ulid.dll",
  9240. "lib/net8.0/Ulid.xml",
  9241. "lib/netstandard2.0/Ulid.dll",
  9242. "lib/netstandard2.0/Ulid.xml",
  9243. "lib/netstandard2.1/Ulid.dll",
  9244. "lib/netstandard2.1/Ulid.xml",
  9245. "ulid.1.4.1.nupkg.sha512",
  9246. "ulid.nuspec"
  9247. ]
  9248. },
  9249. "ZXing.Net/0.16.9": {
  9250. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9251. "type": "package",
  9252. "path": "zxing.net/0.16.9",
  9253. "files": [
  9254. ".nupkg.metadata",
  9255. ".signature.p7s",
  9256. "lib/native/zxing.XML",
  9257. "lib/native/zxing.pri",
  9258. "lib/native/zxing.winmd",
  9259. "lib/net20-cf/zxing.ce2.0.dll",
  9260. "lib/net20-cf/zxing.ce2.0.xml",
  9261. "lib/net20/zxing.XML",
  9262. "lib/net20/zxing.dll",
  9263. "lib/net35-cf/zxing.ce3.5.dll",
  9264. "lib/net35-cf/zxing.ce3.5.xml",
  9265. "lib/net35/zxing.XML",
  9266. "lib/net35/zxing.dll",
  9267. "lib/net40/zxing.XML",
  9268. "lib/net40/zxing.dll",
  9269. "lib/net40/zxing.presentation.XML",
  9270. "lib/net40/zxing.presentation.dll",
  9271. "lib/net45/zxing.XML",
  9272. "lib/net45/zxing.dll",
  9273. "lib/net45/zxing.presentation.XML",
  9274. "lib/net45/zxing.presentation.dll",
  9275. "lib/net461/zxing.XML",
  9276. "lib/net461/zxing.dll",
  9277. "lib/net461/zxing.presentation.XML",
  9278. "lib/net461/zxing.presentation.dll",
  9279. "lib/net47/zxing.XML",
  9280. "lib/net47/zxing.dll",
  9281. "lib/net47/zxing.presentation.XML",
  9282. "lib/net47/zxing.presentation.dll",
  9283. "lib/net48/zxing.XML",
  9284. "lib/net48/zxing.dll",
  9285. "lib/net48/zxing.presentation.XML",
  9286. "lib/net48/zxing.presentation.dll",
  9287. "lib/net5.0/zxing.XML",
  9288. "lib/net5.0/zxing.dll",
  9289. "lib/net6.0/zxing.XML",
  9290. "lib/net6.0/zxing.dll",
  9291. "lib/net7.0/zxing.XML",
  9292. "lib/net7.0/zxing.dll",
  9293. "lib/netcoreapp3.0/zxing.dll",
  9294. "lib/netcoreapp3.0/zxing.xml",
  9295. "lib/netcoreapp3.1/zxing.dll",
  9296. "lib/netcoreapp3.1/zxing.xml",
  9297. "lib/netstandard1.0/zxing.dll",
  9298. "lib/netstandard1.0/zxing.xml",
  9299. "lib/netstandard1.1/zxing.dll",
  9300. "lib/netstandard1.1/zxing.xml",
  9301. "lib/netstandard1.3/zxing.dll",
  9302. "lib/netstandard1.3/zxing.xml",
  9303. "lib/netstandard2.0/zxing.dll",
  9304. "lib/netstandard2.0/zxing.xml",
  9305. "lib/netstandard2.1/zxing.dll",
  9306. "lib/netstandard2.1/zxing.xml",
  9307. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9308. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9309. "lib/sl3-wp/zxing.wp7.0.XML",
  9310. "lib/sl3-wp/zxing.wp7.0.dll",
  9311. "lib/sl4-wp71/zxing.wp7.1.XML",
  9312. "lib/sl4-wp71/zxing.wp7.1.dll",
  9313. "lib/sl4/zxing.sl4.XML",
  9314. "lib/sl4/zxing.sl4.dll",
  9315. "lib/sl5/zxing.sl5.XML",
  9316. "lib/sl5/zxing.sl5.dll",
  9317. "lib/uap10/zxing.dll",
  9318. "lib/uap10/zxing.pri",
  9319. "lib/uap10/zxing.xml",
  9320. "lib/windows8-managed/zxing.winrt.XML",
  9321. "lib/windows8-managed/zxing.winrt.dll",
  9322. "lib/windows8/zxing.XML",
  9323. "lib/windows8/zxing.pri",
  9324. "lib/windows8/zxing.winmd",
  9325. "lib/wp8/zxing.wp8.0.XML",
  9326. "lib/wp8/zxing.wp8.0.dll",
  9327. "logo.jpg",
  9328. "zxing.net.0.16.9.nupkg.sha512",
  9329. "zxing.net.nuspec"
  9330. ]
  9331. },
  9332. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9333. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9334. "type": "package",
  9335. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9336. "files": [
  9337. ".nupkg.metadata",
  9338. ".signature.p7s",
  9339. "lib/net472/ZXing.ImageSharp.V2.dll",
  9340. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9341. "lib/net472/ZXing.ImageSharp.V2.xml",
  9342. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9343. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9344. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9345. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9346. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9347. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9348. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9349. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9350. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9351. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9352. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9353. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9354. "logo.jpg",
  9355. "readme.md",
  9356. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9357. "zxing.net.bindings.imagesharp.v2.nuspec"
  9358. ]
  9359. },
  9360. "Ropin.Core.Common/1.0.0": {
  9361. "type": "project",
  9362. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9363. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9364. },
  9365. "Ropin.Core.Extensions/1.0.0": {
  9366. "type": "project",
  9367. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  9368. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  9369. },
  9370. "Ropin.Inspection.Common/1.0.0": {
  9371. "type": "project",
  9372. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9373. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9374. },
  9375. "Ropin.Inspection.Model/1.0.0": {
  9376. "type": "project",
  9377. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9378. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9379. },
  9380. "Ropin.Inspection.Repository/1.0.0": {
  9381. "type": "project",
  9382. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9383. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9384. },
  9385. "Ropin.Inspection.Service/1.0.0": {
  9386. "type": "project",
  9387. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  9388. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  9389. },
  9390. "Ropin.Inspection.Tasks/1.0.0": {
  9391. "type": "project",
  9392. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  9393. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  9394. }
  9395. },
  9396. "projectFileDependencyGroups": {
  9397. "net5.0": [
  9398. "MQTTnet.AspNetCore >= 4.2.1.781",
  9399. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9400. "Newtonsoft.Json >= 13.0.3",
  9401. "Ropin.Core.Common >= 1.0.0",
  9402. "Ropin.Core.Extensions >= 1.0.0",
  9403. "Ropin.Inspection.Model >= 1.0.0",
  9404. "Ropin.Inspection.Repository >= 1.0.0",
  9405. "Swashbuckle.AspNetCore >= 5.6.3"
  9406. ]
  9407. },
  9408. "packageFolders": {
  9409. "D:\\.nuget\\packages": {},
  9410. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9411. },
  9412. "project": {
  9413. "version": "1.0.0",
  9414. "restore": {
  9415. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9416. "projectName": "Ropin.IOT.MqttService",
  9417. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9418. "packagesPath": "D:\\.nuget\\packages",
  9419. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\obj\\",
  9420. "projectStyle": "PackageReference",
  9421. "fallbackFolders": [
  9422. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9423. ],
  9424. "configFilePaths": [
  9425. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9426. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9427. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9428. ],
  9429. "originalTargetFrameworks": [
  9430. "net5.0"
  9431. ],
  9432. "sources": {
  9433. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9434. "C:\\Program Files\\dotnet\\library-packs": {},
  9435. "https://api.nuget.org/v3/index.json": {}
  9436. },
  9437. "frameworks": {
  9438. "net5.0": {
  9439. "targetAlias": "net5.0",
  9440. "projectReferences": {
  9441. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9442. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9443. },
  9444. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  9445. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  9446. },
  9447. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9448. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9449. },
  9450. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9451. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9452. }
  9453. }
  9454. }
  9455. },
  9456. "warningProperties": {
  9457. "warnAsError": [
  9458. "NU1605"
  9459. ]
  9460. }
  9461. },
  9462. "frameworks": {
  9463. "net5.0": {
  9464. "targetAlias": "net5.0",
  9465. "dependencies": {
  9466. "MQTTnet.AspNetCore": {
  9467. "target": "Package",
  9468. "version": "[4.2.1.781, )"
  9469. },
  9470. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9471. "target": "Package",
  9472. "version": "[1.17.2, )"
  9473. },
  9474. "Newtonsoft.Json": {
  9475. "target": "Package",
  9476. "version": "[13.0.3, )"
  9477. },
  9478. "Swashbuckle.AspNetCore": {
  9479. "target": "Package",
  9480. "version": "[5.6.3, )"
  9481. }
  9482. },
  9483. "imports": [
  9484. "net461",
  9485. "net462",
  9486. "net47",
  9487. "net471",
  9488. "net472",
  9489. "net48",
  9490. "net481"
  9491. ],
  9492. "assetTargetFallback": true,
  9493. "warn": true,
  9494. "frameworkReferences": {
  9495. "Microsoft.AspNetCore.App": {
  9496. "privateAssets": "none"
  9497. },
  9498. "Microsoft.NETCore.App": {
  9499. "privateAssets": "all"
  9500. }
  9501. },
  9502. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9503. }
  9504. }
  9505. }
  9506. }