project.assets.json 382 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467
  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. "ZXing.Net/0.16.9": {
  3004. "type": "package",
  3005. "compile": {
  3006. "lib/net5.0/zxing.dll": {
  3007. "related": ".XML"
  3008. }
  3009. },
  3010. "runtime": {
  3011. "lib/net5.0/zxing.dll": {
  3012. "related": ".XML"
  3013. }
  3014. }
  3015. },
  3016. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3017. "type": "package",
  3018. "dependencies": {
  3019. "SixLabors.ImageSharp": "2.1.3",
  3020. "ZXing.Net": "0.16.9"
  3021. },
  3022. "compile": {
  3023. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3024. "related": ".pdb;.xml"
  3025. }
  3026. },
  3027. "runtime": {
  3028. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3029. "related": ".pdb;.xml"
  3030. }
  3031. }
  3032. },
  3033. "Ropin.Core.Common/1.0.0": {
  3034. "type": "project",
  3035. "framework": ".NETCoreApp,Version=v5.0",
  3036. "dependencies": {
  3037. "Coravel": "4.2.1",
  3038. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3039. "Newtonsoft.Json": "13.0.1",
  3040. "QRCoder": "1.4.3",
  3041. "SixLabors.ImageSharp": "2.1.6",
  3042. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3043. },
  3044. "compile": {
  3045. "bin/placeholder/Ropin.Core.Common.dll": {}
  3046. },
  3047. "runtime": {
  3048. "bin/placeholder/Ropin.Core.Common.dll": {}
  3049. }
  3050. },
  3051. "Ropin.Core.Extensions/1.0.0": {
  3052. "type": "project",
  3053. "framework": ".NETCoreApp,Version=v5.0",
  3054. "dependencies": {
  3055. "Autofac": "6.2.0",
  3056. "Autofac.Extras.DynamicProxy": "6.0.0",
  3057. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3058. "Ropin.Core.Common": "1.0.0",
  3059. "Ropin.Inspection.Common": "1.0.0",
  3060. "Ropin.Inspection.Service": "1.0.0",
  3061. "Ropin.Inspection.Tasks": "1.0.0",
  3062. "StackExchange.Redis": "1.2.4",
  3063. "log4net": "2.0.17"
  3064. },
  3065. "compile": {
  3066. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3067. },
  3068. "runtime": {
  3069. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3070. }
  3071. },
  3072. "Ropin.Inspection.Common/1.0.0": {
  3073. "type": "project",
  3074. "framework": ".NETCoreApp,Version=v5.0",
  3075. "dependencies": {
  3076. "FluentEmail.Smtp": "3.0.2",
  3077. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3078. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3079. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3080. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3081. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3082. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3083. "Microsoft.Extensions.Configuration": "5.0.0",
  3084. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3085. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3086. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3087. "Microsoft.Extensions.Http": "5.0.0",
  3088. "Newtonsoft.Json": "13.0.1",
  3089. "RabbitMQ.Client": "6.8.1",
  3090. "ToolGood.Words": "3.1.0.2",
  3091. "log4net": "2.0.17"
  3092. },
  3093. "compile": {
  3094. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3095. },
  3096. "runtime": {
  3097. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3098. }
  3099. },
  3100. "Ropin.Inspection.Model/1.0.0": {
  3101. "type": "project",
  3102. "framework": ".NETCoreApp,Version=v5.0",
  3103. "dependencies": {
  3104. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3105. "Microsoft.EntityFrameworkCore": "5.0.0",
  3106. "MySql.Data": "8.0.23",
  3107. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3108. "Ropin.Inspection.Common": "1.0.0"
  3109. },
  3110. "compile": {
  3111. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3112. },
  3113. "runtime": {
  3114. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3115. }
  3116. },
  3117. "Ropin.Inspection.Repository/1.0.0": {
  3118. "type": "project",
  3119. "framework": ".NETCoreApp,Version=v5.0",
  3120. "dependencies": {
  3121. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3122. "Microsoft.EntityFrameworkCore": "5.0.0",
  3123. "Ropin.Inspection.Model": "1.0.0"
  3124. },
  3125. "compile": {
  3126. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3127. },
  3128. "runtime": {
  3129. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3130. }
  3131. },
  3132. "Ropin.Inspection.Service/1.0.0": {
  3133. "type": "project",
  3134. "framework": ".NETCoreApp,Version=v5.0",
  3135. "dependencies": {
  3136. "AutoMapper": "10.1.1",
  3137. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3138. "Newtonsoft.Json": "13.0.1",
  3139. "Ropin.Core.Common": "1.0.0",
  3140. "Ropin.Inspection.Common": "1.0.0",
  3141. "Ropin.Inspection.Model": "1.0.0",
  3142. "Ropin.Inspection.Repository": "1.0.0",
  3143. "log4net": "2.0.17"
  3144. },
  3145. "compile": {
  3146. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3147. },
  3148. "runtime": {
  3149. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3150. }
  3151. },
  3152. "Ropin.Inspection.Tasks/1.0.0": {
  3153. "type": "project",
  3154. "framework": ".NETCoreApp,Version=v5.0",
  3155. "dependencies": {
  3156. "Quartz": "3.3.3",
  3157. "Ropin.Inspection.Common": "1.0.0",
  3158. "Ropin.Inspection.Model": "1.0.0",
  3159. "Ropin.Inspection.Service": "1.0.0"
  3160. },
  3161. "compile": {
  3162. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3163. },
  3164. "runtime": {
  3165. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3166. }
  3167. }
  3168. }
  3169. },
  3170. "libraries": {
  3171. "AdvancedStringBuilder/0.1.0": {
  3172. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3173. "type": "package",
  3174. "path": "advancedstringbuilder/0.1.0",
  3175. "files": [
  3176. ".nupkg.metadata",
  3177. ".signature.p7s",
  3178. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3179. "advancedstringbuilder.nuspec",
  3180. "lib/net40-client/AdvancedStringBuilder.dll",
  3181. "lib/net40-client/AdvancedStringBuilder.xml",
  3182. "lib/net45/AdvancedStringBuilder.dll",
  3183. "lib/net45/AdvancedStringBuilder.xml",
  3184. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3185. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3186. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3187. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3188. ]
  3189. },
  3190. "Autofac/6.2.0": {
  3191. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3192. "type": "package",
  3193. "path": "autofac/6.2.0",
  3194. "files": [
  3195. ".nupkg.metadata",
  3196. ".signature.p7s",
  3197. "autofac.6.2.0.nupkg.sha512",
  3198. "autofac.nuspec",
  3199. "icon.png",
  3200. "lib/net5.0/Autofac.dll",
  3201. "lib/net5.0/Autofac.pdb",
  3202. "lib/net5.0/Autofac.xml",
  3203. "lib/netstandard2.0/Autofac.dll",
  3204. "lib/netstandard2.0/Autofac.pdb",
  3205. "lib/netstandard2.0/Autofac.xml",
  3206. "lib/netstandard2.1/Autofac.dll",
  3207. "lib/netstandard2.1/Autofac.pdb",
  3208. "lib/netstandard2.1/Autofac.xml"
  3209. ]
  3210. },
  3211. "Autofac.Extras.DynamicProxy/6.0.0": {
  3212. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3213. "type": "package",
  3214. "path": "autofac.extras.dynamicproxy/6.0.0",
  3215. "files": [
  3216. ".nupkg.metadata",
  3217. ".signature.p7s",
  3218. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3219. "autofac.extras.dynamicproxy.nuspec",
  3220. "icon.png",
  3221. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3222. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3223. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3224. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3225. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3226. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3227. ]
  3228. },
  3229. "AutoMapper/10.1.1": {
  3230. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3231. "type": "package",
  3232. "path": "automapper/10.1.1",
  3233. "files": [
  3234. ".nupkg.metadata",
  3235. ".signature.p7s",
  3236. "automapper.10.1.1.nupkg.sha512",
  3237. "automapper.nuspec",
  3238. "icon.png",
  3239. "lib/net461/AutoMapper.dll",
  3240. "lib/net461/AutoMapper.xml",
  3241. "lib/netstandard2.0/AutoMapper.dll",
  3242. "lib/netstandard2.0/AutoMapper.xml"
  3243. ]
  3244. },
  3245. "BouncyCastle.NetCore/1.8.5": {
  3246. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3247. "type": "package",
  3248. "path": "bouncycastle.netcore/1.8.5",
  3249. "files": [
  3250. ".nupkg.metadata",
  3251. ".signature.p7s",
  3252. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3253. "bouncycastle.netcore.nuspec",
  3254. "lib/Mono/BouncyCastle.Crypto.dll",
  3255. "lib/Mono/BouncyCastle.Crypto.xml",
  3256. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3257. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3258. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3259. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3260. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3261. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3262. "lib/net20/BouncyCastle.Crypto.dll",
  3263. "lib/net20/BouncyCastle.Crypto.xml",
  3264. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3265. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3266. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3267. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3268. ]
  3269. },
  3270. "Castle.Core/4.4.0": {
  3271. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3272. "type": "package",
  3273. "path": "castle.core/4.4.0",
  3274. "files": [
  3275. ".nupkg.metadata",
  3276. ".signature.p7s",
  3277. "ASL - Apache Software Foundation License.txt",
  3278. "CHANGELOG.md",
  3279. "LICENSE",
  3280. "castle.core.4.4.0.nupkg.sha512",
  3281. "castle.core.nuspec",
  3282. "lib/net35/Castle.Core.dll",
  3283. "lib/net35/Castle.Core.xml",
  3284. "lib/net40/Castle.Core.dll",
  3285. "lib/net40/Castle.Core.xml",
  3286. "lib/net45/Castle.Core.dll",
  3287. "lib/net45/Castle.Core.xml",
  3288. "lib/netstandard1.3/Castle.Core.dll",
  3289. "lib/netstandard1.3/Castle.Core.xml",
  3290. "lib/netstandard1.5/Castle.Core.dll",
  3291. "lib/netstandard1.5/Castle.Core.xml",
  3292. "readme.txt"
  3293. ]
  3294. },
  3295. "Coravel/4.2.1": {
  3296. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3297. "type": "package",
  3298. "path": "coravel/4.2.1",
  3299. "files": [
  3300. ".nupkg.metadata",
  3301. ".signature.p7s",
  3302. "coravel.4.2.1.nupkg.sha512",
  3303. "coravel.nuspec",
  3304. "lib/netstandard2.0/Coravel.dll",
  3305. "lib/netstandard2.0/Coravel.xml",
  3306. "logo.png",
  3307. "readme.md"
  3308. ]
  3309. },
  3310. "FluentEmail.Core/3.0.2": {
  3311. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3312. "type": "package",
  3313. "path": "fluentemail.core/3.0.2",
  3314. "files": [
  3315. ".nupkg.metadata",
  3316. ".signature.p7s",
  3317. "fluentemail.core.3.0.2.nupkg.sha512",
  3318. "fluentemail.core.nuspec",
  3319. "fluentemail_logo_64x64.png",
  3320. "lib/netstandard2.0/FluentEmail.Core.dll"
  3321. ]
  3322. },
  3323. "FluentEmail.Smtp/3.0.2": {
  3324. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3325. "type": "package",
  3326. "path": "fluentemail.smtp/3.0.2",
  3327. "files": [
  3328. ".nupkg.metadata",
  3329. ".signature.p7s",
  3330. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3331. "fluentemail.smtp.nuspec",
  3332. "fluentemail_logo_64x64.png",
  3333. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3334. ]
  3335. },
  3336. "Google.Protobuf/3.11.4": {
  3337. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3338. "type": "package",
  3339. "path": "google.protobuf/3.11.4",
  3340. "files": [
  3341. ".nupkg.metadata",
  3342. ".signature.p7s",
  3343. "google.protobuf.3.11.4.nupkg.sha512",
  3344. "google.protobuf.nuspec",
  3345. "lib/net45/Google.Protobuf.dll",
  3346. "lib/net45/Google.Protobuf.pdb",
  3347. "lib/net45/Google.Protobuf.xml",
  3348. "lib/netstandard1.0/Google.Protobuf.dll",
  3349. "lib/netstandard1.0/Google.Protobuf.pdb",
  3350. "lib/netstandard1.0/Google.Protobuf.xml",
  3351. "lib/netstandard2.0/Google.Protobuf.dll",
  3352. "lib/netstandard2.0/Google.Protobuf.pdb",
  3353. "lib/netstandard2.0/Google.Protobuf.xml"
  3354. ]
  3355. },
  3356. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3357. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3358. "type": "package",
  3359. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3360. "files": [
  3361. ".nupkg.metadata",
  3362. ".signature.p7s",
  3363. "LICENSE.txt",
  3364. "advanced-string-builder-license.txt",
  3365. "chakra-samples-license.txt",
  3366. "icon.png",
  3367. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3368. "javascriptengineswitcher.chakracore.nuspec",
  3369. "jsrt-dotnet-license.txt",
  3370. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3371. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3372. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3373. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3374. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3375. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3376. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3377. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3378. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3379. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3380. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3381. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3382. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3383. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3384. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3385. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3386. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3387. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3388. "polyfills-for-old-dot-net-license.txt",
  3389. "readme.txt"
  3390. ]
  3391. },
  3392. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3393. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3394. "type": "package",
  3395. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3396. "files": [
  3397. ".nupkg.metadata",
  3398. ".signature.p7s",
  3399. "LICENSE.txt",
  3400. "chakra-core-license.txt",
  3401. "icon.png",
  3402. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3403. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3404. "readme.txt",
  3405. "runtimes/linux-x64/native/libChakraCore.so"
  3406. ]
  3407. },
  3408. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3409. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3410. "type": "package",
  3411. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3412. "hasTools": true,
  3413. "files": [
  3414. ".nupkg.metadata",
  3415. ".signature.p7s",
  3416. "LICENSE.txt",
  3417. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3418. "chakra-core-license.txt",
  3419. "icon.png",
  3420. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3421. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3422. "readme.txt",
  3423. "runtimes/win-x64/native/ChakraCore.dll",
  3424. "tools/Install.ps1",
  3425. "tools/Uninstall.ps1"
  3426. ]
  3427. },
  3428. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3429. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3430. "type": "package",
  3431. "path": "javascriptengineswitcher.core/3.21.0",
  3432. "files": [
  3433. ".nupkg.metadata",
  3434. ".signature.p7s",
  3435. "LICENSE.txt",
  3436. "advanced-string-builder-license.txt",
  3437. "icon.png",
  3438. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3439. "javascriptengineswitcher.core.nuspec",
  3440. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3441. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3442. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3443. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3444. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3445. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3446. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3447. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3448. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3449. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3450. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3451. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3452. "readme.txt"
  3453. ]
  3454. },
  3455. "K4os.Compression.LZ4/1.1.11": {
  3456. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3457. "type": "package",
  3458. "path": "k4os.compression.lz4/1.1.11",
  3459. "files": [
  3460. ".nupkg.metadata",
  3461. ".signature.p7s",
  3462. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3463. "k4os.compression.lz4.nuspec",
  3464. "lib/net45/K4os.Compression.LZ4.dll",
  3465. "lib/net45/K4os.Compression.LZ4.xml",
  3466. "lib/net46/K4os.Compression.LZ4.dll",
  3467. "lib/net46/K4os.Compression.LZ4.xml",
  3468. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3469. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3470. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3471. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3472. ]
  3473. },
  3474. "K4os.Compression.LZ4.Streams/1.1.11": {
  3475. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3476. "type": "package",
  3477. "path": "k4os.compression.lz4.streams/1.1.11",
  3478. "files": [
  3479. ".nupkg.metadata",
  3480. ".signature.p7s",
  3481. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3482. "k4os.compression.lz4.streams.nuspec",
  3483. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3484. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3485. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3486. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3487. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3488. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3489. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3490. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3491. ]
  3492. },
  3493. "K4os.Hash.xxHash/1.0.6": {
  3494. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3495. "type": "package",
  3496. "path": "k4os.hash.xxhash/1.0.6",
  3497. "files": [
  3498. ".nupkg.metadata",
  3499. ".signature.p7s",
  3500. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3501. "k4os.hash.xxhash.nuspec",
  3502. "lib/net45/K4os.Hash.xxHash.dll",
  3503. "lib/net45/K4os.Hash.xxHash.xml",
  3504. "lib/net46/K4os.Hash.xxHash.dll",
  3505. "lib/net46/K4os.Hash.xxHash.xml",
  3506. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3507. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3508. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3509. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3510. ]
  3511. },
  3512. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3513. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3514. "type": "package",
  3515. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3516. "files": [
  3517. ".nupkg.metadata",
  3518. ".signature.p7s",
  3519. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3520. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3521. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3522. "linqkit.microsoft.entityframeworkcore.nuspec"
  3523. ]
  3524. },
  3525. "log4net/2.0.17": {
  3526. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3527. "type": "package",
  3528. "path": "log4net/2.0.17",
  3529. "files": [
  3530. ".nupkg.metadata",
  3531. ".signature.p7s",
  3532. "lib/net20/log4net.dll",
  3533. "lib/net20/log4net.xml",
  3534. "lib/net35/log4net.dll",
  3535. "lib/net35/log4net.xml",
  3536. "lib/net40-client/log4net.dll",
  3537. "lib/net40-client/log4net.xml",
  3538. "lib/net40/log4net.dll",
  3539. "lib/net40/log4net.xml",
  3540. "lib/net45/log4net.dll",
  3541. "lib/net45/log4net.xml",
  3542. "lib/netstandard1.3/log4net.dll",
  3543. "lib/netstandard1.3/log4net.xml",
  3544. "lib/netstandard2.0/log4net.dll",
  3545. "lib/netstandard2.0/log4net.xml",
  3546. "log4net.2.0.17.nupkg.sha512",
  3547. "log4net.nuspec",
  3548. "package-icon.png"
  3549. ]
  3550. },
  3551. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3552. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3553. "type": "package",
  3554. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3555. "files": [
  3556. ".nupkg.metadata",
  3557. ".signature.p7s",
  3558. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3559. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3560. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3561. "microsoft.aspnetcore.http.abstractions.nuspec"
  3562. ]
  3563. },
  3564. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3565. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3566. "type": "package",
  3567. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3568. "files": [
  3569. ".nupkg.metadata",
  3570. ".signature.p7s",
  3571. "Icon.png",
  3572. "THIRD-PARTY-NOTICES.TXT",
  3573. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3574. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3575. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3576. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3577. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3578. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3579. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3580. "microsoft.aspnetcore.http.features.nuspec"
  3581. ]
  3582. },
  3583. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3584. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3585. "type": "package",
  3586. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3587. "files": [
  3588. ".nupkg.metadata",
  3589. ".signature.p7s",
  3590. "Icon.png",
  3591. "THIRD-PARTY-NOTICES.TXT",
  3592. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3593. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3594. "microsoft.aspnetcore.nodeservices.nuspec"
  3595. ]
  3596. },
  3597. "Microsoft.CSharp/4.7.0": {
  3598. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3599. "type": "package",
  3600. "path": "microsoft.csharp/4.7.0",
  3601. "files": [
  3602. ".nupkg.metadata",
  3603. ".signature.p7s",
  3604. "LICENSE.TXT",
  3605. "THIRD-PARTY-NOTICES.TXT",
  3606. "lib/MonoAndroid10/_._",
  3607. "lib/MonoTouch10/_._",
  3608. "lib/net45/_._",
  3609. "lib/netcore50/Microsoft.CSharp.dll",
  3610. "lib/netcoreapp2.0/_._",
  3611. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3612. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3613. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3614. "lib/portable-net45+win8+wp8+wpa81/_._",
  3615. "lib/uap10.0.16299/_._",
  3616. "lib/win8/_._",
  3617. "lib/wp80/_._",
  3618. "lib/wpa81/_._",
  3619. "lib/xamarinios10/_._",
  3620. "lib/xamarinmac20/_._",
  3621. "lib/xamarintvos10/_._",
  3622. "lib/xamarinwatchos10/_._",
  3623. "microsoft.csharp.4.7.0.nupkg.sha512",
  3624. "microsoft.csharp.nuspec",
  3625. "ref/MonoAndroid10/_._",
  3626. "ref/MonoTouch10/_._",
  3627. "ref/net45/_._",
  3628. "ref/netcore50/Microsoft.CSharp.dll",
  3629. "ref/netcore50/Microsoft.CSharp.xml",
  3630. "ref/netcore50/de/Microsoft.CSharp.xml",
  3631. "ref/netcore50/es/Microsoft.CSharp.xml",
  3632. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3633. "ref/netcore50/it/Microsoft.CSharp.xml",
  3634. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3635. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3636. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3637. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3638. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3639. "ref/netcoreapp2.0/_._",
  3640. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3641. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3642. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3643. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3644. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3645. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3646. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3647. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3648. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3649. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3650. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3651. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3652. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3653. "ref/portable-net45+win8+wp8+wpa81/_._",
  3654. "ref/uap10.0.16299/_._",
  3655. "ref/win8/_._",
  3656. "ref/wp80/_._",
  3657. "ref/wpa81/_._",
  3658. "ref/xamarinios10/_._",
  3659. "ref/xamarinmac20/_._",
  3660. "ref/xamarintvos10/_._",
  3661. "ref/xamarinwatchos10/_._",
  3662. "useSharedDesignerContext.txt",
  3663. "version.txt"
  3664. ]
  3665. },
  3666. "Microsoft.EntityFrameworkCore/5.0.0": {
  3667. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3668. "type": "package",
  3669. "path": "microsoft.entityframeworkcore/5.0.0",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "Icon.png",
  3674. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3675. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3676. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3677. "microsoft.entityframeworkcore.nuspec"
  3678. ]
  3679. },
  3680. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3681. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3682. "type": "package",
  3683. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3684. "files": [
  3685. ".nupkg.metadata",
  3686. ".signature.p7s",
  3687. "Icon.png",
  3688. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3689. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3690. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3691. "microsoft.entityframeworkcore.abstractions.nuspec"
  3692. ]
  3693. },
  3694. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3695. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3696. "type": "package",
  3697. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3698. "files": [
  3699. ".nupkg.metadata",
  3700. ".signature.p7s",
  3701. "Icon.png",
  3702. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3703. "lib/netstandard2.0/_._",
  3704. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3705. "microsoft.entityframeworkcore.analyzers.nuspec"
  3706. ]
  3707. },
  3708. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3709. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3710. "type": "package",
  3711. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3712. "files": [
  3713. ".nupkg.metadata",
  3714. ".signature.p7s",
  3715. "Icon.png",
  3716. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3717. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3718. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3719. "microsoft.entityframeworkcore.relational.nuspec"
  3720. ]
  3721. },
  3722. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3723. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3724. "type": "package",
  3725. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3726. "hasTools": true,
  3727. "files": [
  3728. ".nupkg.metadata",
  3729. ".signature.p7s",
  3730. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3731. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3732. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3733. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3734. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3735. "microsoft.extensions.apidescription.server.nuspec",
  3736. "tools/Newtonsoft.Json.dll",
  3737. "tools/dotnet-getdocument.deps.json",
  3738. "tools/dotnet-getdocument.dll",
  3739. "tools/dotnet-getdocument.runtimeconfig.json",
  3740. "tools/net461-x86/GetDocument.Insider.exe",
  3741. "tools/net461-x86/GetDocument.Insider.exe.config",
  3742. "tools/net461/GetDocument.Insider.exe",
  3743. "tools/net461/GetDocument.Insider.exe.config",
  3744. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3745. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3746. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3747. ]
  3748. },
  3749. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3750. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3751. "type": "package",
  3752. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "Icon.png",
  3757. "LICENSE.TXT",
  3758. "THIRD-PARTY-NOTICES.TXT",
  3759. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3760. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3761. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3762. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3763. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3764. "microsoft.extensions.caching.abstractions.nuspec",
  3765. "useSharedDesignerContext.txt",
  3766. "version.txt"
  3767. ]
  3768. },
  3769. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3770. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3771. "type": "package",
  3772. "path": "microsoft.extensions.caching.memory/5.0.0",
  3773. "files": [
  3774. ".nupkg.metadata",
  3775. ".signature.p7s",
  3776. "Icon.png",
  3777. "LICENSE.TXT",
  3778. "THIRD-PARTY-NOTICES.TXT",
  3779. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3780. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3781. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3782. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3783. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3784. "microsoft.extensions.caching.memory.nuspec",
  3785. "useSharedDesignerContext.txt",
  3786. "version.txt"
  3787. ]
  3788. },
  3789. "Microsoft.Extensions.Configuration/5.0.0": {
  3790. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3791. "type": "package",
  3792. "path": "microsoft.extensions.configuration/5.0.0",
  3793. "files": [
  3794. ".nupkg.metadata",
  3795. ".signature.p7s",
  3796. "Icon.png",
  3797. "LICENSE.TXT",
  3798. "THIRD-PARTY-NOTICES.TXT",
  3799. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3800. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3801. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3802. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3803. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3804. "microsoft.extensions.configuration.nuspec",
  3805. "useSharedDesignerContext.txt",
  3806. "version.txt"
  3807. ]
  3808. },
  3809. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3810. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3811. "type": "package",
  3812. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3813. "files": [
  3814. ".nupkg.metadata",
  3815. ".signature.p7s",
  3816. "Icon.png",
  3817. "LICENSE.TXT",
  3818. "THIRD-PARTY-NOTICES.TXT",
  3819. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3820. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3821. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3822. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3823. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3824. "microsoft.extensions.configuration.abstractions.nuspec",
  3825. "useSharedDesignerContext.txt",
  3826. "version.txt"
  3827. ]
  3828. },
  3829. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3830. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3831. "type": "package",
  3832. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3833. "files": [
  3834. ".nupkg.metadata",
  3835. ".signature.p7s",
  3836. "Icon.png",
  3837. "LICENSE.TXT",
  3838. "THIRD-PARTY-NOTICES.TXT",
  3839. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3840. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3841. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3842. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3843. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3844. "microsoft.extensions.configuration.binder.nuspec",
  3845. "useSharedDesignerContext.txt",
  3846. "version.txt"
  3847. ]
  3848. },
  3849. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3850. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3851. "type": "package",
  3852. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3853. "files": [
  3854. ".nupkg.metadata",
  3855. ".signature.p7s",
  3856. "Icon.png",
  3857. "LICENSE.TXT",
  3858. "THIRD-PARTY-NOTICES.TXT",
  3859. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3860. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3861. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3862. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3863. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3864. "microsoft.extensions.configuration.fileextensions.nuspec",
  3865. "useSharedDesignerContext.txt",
  3866. "version.txt"
  3867. ]
  3868. },
  3869. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3870. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3871. "type": "package",
  3872. "path": "microsoft.extensions.configuration.json/5.0.0",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "Icon.png",
  3877. "LICENSE.TXT",
  3878. "THIRD-PARTY-NOTICES.TXT",
  3879. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3880. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3881. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3882. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3883. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3884. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3885. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3886. "microsoft.extensions.configuration.json.nuspec",
  3887. "useSharedDesignerContext.txt",
  3888. "version.txt"
  3889. ]
  3890. },
  3891. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3892. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3893. "type": "package",
  3894. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3895. "files": [
  3896. ".nupkg.metadata",
  3897. ".signature.p7s",
  3898. "Icon.png",
  3899. "LICENSE.TXT",
  3900. "THIRD-PARTY-NOTICES.TXT",
  3901. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3902. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3903. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3904. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3905. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3906. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3907. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3908. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3909. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3910. "microsoft.extensions.dependencyinjection.nuspec",
  3911. "useSharedDesignerContext.txt",
  3912. "version.txt"
  3913. ]
  3914. },
  3915. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3916. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3917. "type": "package",
  3918. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3919. "files": [
  3920. ".nupkg.metadata",
  3921. ".signature.p7s",
  3922. "Icon.png",
  3923. "LICENSE.TXT",
  3924. "THIRD-PARTY-NOTICES.TXT",
  3925. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3926. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3927. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3928. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3929. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3930. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3931. "useSharedDesignerContext.txt",
  3932. "version.txt"
  3933. ]
  3934. },
  3935. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3936. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3937. "type": "package",
  3938. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3939. "files": [
  3940. ".nupkg.metadata",
  3941. ".signature.p7s",
  3942. "Icon.png",
  3943. "LICENSE.TXT",
  3944. "THIRD-PARTY-NOTICES.TXT",
  3945. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3946. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3947. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3948. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3949. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3950. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3951. "useSharedDesignerContext.txt",
  3952. "version.txt"
  3953. ]
  3954. },
  3955. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3956. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3957. "type": "package",
  3958. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3959. "files": [
  3960. ".nupkg.metadata",
  3961. ".signature.p7s",
  3962. "Icon.png",
  3963. "LICENSE.TXT",
  3964. "THIRD-PARTY-NOTICES.TXT",
  3965. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3966. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3967. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3968. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3969. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3970. "microsoft.extensions.fileproviders.physical.nuspec",
  3971. "useSharedDesignerContext.txt",
  3972. "version.txt"
  3973. ]
  3974. },
  3975. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3976. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3977. "type": "package",
  3978. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3979. "files": [
  3980. ".nupkg.metadata",
  3981. ".signature.p7s",
  3982. "Icon.png",
  3983. "LICENSE.TXT",
  3984. "THIRD-PARTY-NOTICES.TXT",
  3985. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3986. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3987. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3988. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3989. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3990. "microsoft.extensions.filesystemglobbing.nuspec",
  3991. "useSharedDesignerContext.txt",
  3992. "version.txt"
  3993. ]
  3994. },
  3995. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3996. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3997. "type": "package",
  3998. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3999. "files": [
  4000. ".nupkg.metadata",
  4001. ".signature.p7s",
  4002. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4003. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4004. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4005. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4006. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4007. "microsoft.extensions.hosting.abstractions.nuspec",
  4008. "packageIcon.png"
  4009. ]
  4010. },
  4011. "Microsoft.Extensions.Http/5.0.0": {
  4012. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4013. "type": "package",
  4014. "path": "microsoft.extensions.http/5.0.0",
  4015. "files": [
  4016. ".nupkg.metadata",
  4017. ".signature.p7s",
  4018. "Icon.png",
  4019. "LICENSE.TXT",
  4020. "THIRD-PARTY-NOTICES.TXT",
  4021. "lib/net461/Microsoft.Extensions.Http.dll",
  4022. "lib/net461/Microsoft.Extensions.Http.xml",
  4023. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4024. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4025. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4026. "microsoft.extensions.http.nuspec",
  4027. "useSharedDesignerContext.txt",
  4028. "version.txt"
  4029. ]
  4030. },
  4031. "Microsoft.Extensions.Logging/5.0.0": {
  4032. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4033. "type": "package",
  4034. "path": "microsoft.extensions.logging/5.0.0",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "Icon.png",
  4039. "LICENSE.TXT",
  4040. "THIRD-PARTY-NOTICES.TXT",
  4041. "lib/net461/Microsoft.Extensions.Logging.dll",
  4042. "lib/net461/Microsoft.Extensions.Logging.xml",
  4043. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4044. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4045. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4046. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4047. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4048. "microsoft.extensions.logging.nuspec",
  4049. "useSharedDesignerContext.txt",
  4050. "version.txt"
  4051. ]
  4052. },
  4053. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4054. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4055. "type": "package",
  4056. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4057. "files": [
  4058. ".nupkg.metadata",
  4059. ".signature.p7s",
  4060. "Icon.png",
  4061. "LICENSE.TXT",
  4062. "THIRD-PARTY-NOTICES.TXT",
  4063. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4064. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4065. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4066. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4067. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4068. "microsoft.extensions.logging.abstractions.nuspec",
  4069. "useSharedDesignerContext.txt",
  4070. "version.txt"
  4071. ]
  4072. },
  4073. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4074. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4075. "type": "package",
  4076. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4077. "files": [
  4078. ".nupkg.metadata",
  4079. ".signature.p7s",
  4080. "Icon.png",
  4081. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4082. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4083. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4084. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4085. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4086. "microsoft.extensions.logging.configuration.nuspec"
  4087. ]
  4088. },
  4089. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4090. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4091. "type": "package",
  4092. "path": "microsoft.extensions.logging.console/3.1.30",
  4093. "files": [
  4094. ".nupkg.metadata",
  4095. ".signature.p7s",
  4096. "Icon.png",
  4097. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4098. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4099. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4100. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4101. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4102. "microsoft.extensions.logging.console.nuspec"
  4103. ]
  4104. },
  4105. "Microsoft.Extensions.Options/5.0.0": {
  4106. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4107. "type": "package",
  4108. "path": "microsoft.extensions.options/5.0.0",
  4109. "files": [
  4110. ".nupkg.metadata",
  4111. ".signature.p7s",
  4112. "Icon.png",
  4113. "LICENSE.TXT",
  4114. "THIRD-PARTY-NOTICES.TXT",
  4115. "lib/net461/Microsoft.Extensions.Options.dll",
  4116. "lib/net461/Microsoft.Extensions.Options.xml",
  4117. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4118. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4119. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4120. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4121. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4122. "microsoft.extensions.options.nuspec",
  4123. "useSharedDesignerContext.txt",
  4124. "version.txt"
  4125. ]
  4126. },
  4127. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4128. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4129. "type": "package",
  4130. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. ".signature.p7s",
  4134. "Icon.png",
  4135. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4136. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4137. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4138. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4139. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4140. "microsoft.extensions.options.configurationextensions.nuspec"
  4141. ]
  4142. },
  4143. "Microsoft.Extensions.Primitives/5.0.0": {
  4144. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4145. "type": "package",
  4146. "path": "microsoft.extensions.primitives/5.0.0",
  4147. "files": [
  4148. ".nupkg.metadata",
  4149. ".signature.p7s",
  4150. "Icon.png",
  4151. "LICENSE.TXT",
  4152. "THIRD-PARTY-NOTICES.TXT",
  4153. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4154. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4155. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4156. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4157. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4158. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4159. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4160. "microsoft.extensions.primitives.nuspec",
  4161. "useSharedDesignerContext.txt",
  4162. "version.txt"
  4163. ]
  4164. },
  4165. "Microsoft.NETCore.Platforms/5.0.0": {
  4166. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4167. "type": "package",
  4168. "path": "microsoft.netcore.platforms/5.0.0",
  4169. "files": [
  4170. ".nupkg.metadata",
  4171. ".signature.p7s",
  4172. "Icon.png",
  4173. "LICENSE.TXT",
  4174. "THIRD-PARTY-NOTICES.TXT",
  4175. "lib/netstandard1.0/_._",
  4176. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4177. "microsoft.netcore.platforms.nuspec",
  4178. "runtime.json",
  4179. "useSharedDesignerContext.txt",
  4180. "version.txt"
  4181. ]
  4182. },
  4183. "Microsoft.NETCore.Targets/1.1.0": {
  4184. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4185. "type": "package",
  4186. "path": "microsoft.netcore.targets/1.1.0",
  4187. "files": [
  4188. ".nupkg.metadata",
  4189. ".signature.p7s",
  4190. "ThirdPartyNotices.txt",
  4191. "dotnet_library_license.txt",
  4192. "lib/netstandard1.0/_._",
  4193. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4194. "microsoft.netcore.targets.nuspec",
  4195. "runtime.json"
  4196. ]
  4197. },
  4198. "Microsoft.OpenApi/1.2.3": {
  4199. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4200. "type": "package",
  4201. "path": "microsoft.openapi/1.2.3",
  4202. "files": [
  4203. ".nupkg.metadata",
  4204. ".signature.p7s",
  4205. "lib/net46/Microsoft.OpenApi.dll",
  4206. "lib/net46/Microsoft.OpenApi.pdb",
  4207. "lib/net46/Microsoft.OpenApi.xml",
  4208. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4209. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4210. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4211. "microsoft.openapi.1.2.3.nupkg.sha512",
  4212. "microsoft.openapi.nuspec"
  4213. ]
  4214. },
  4215. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4216. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4217. "type": "package",
  4218. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4219. "hasTools": true,
  4220. "files": [
  4221. ".nupkg.metadata",
  4222. ".signature.p7s",
  4223. "CHANGELOG.md",
  4224. "EULA.md",
  4225. "ThirdPartyNotices.txt",
  4226. "build/Container.props",
  4227. "build/Container.targets",
  4228. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4229. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4230. "build/Rules/GeneralBrowseObject.xaml",
  4231. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4232. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4233. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4234. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4235. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4236. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4237. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4238. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4239. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4240. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4241. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4242. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4243. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4244. "build/ToolsTarget.props",
  4245. "build/ToolsTarget.targets",
  4246. "icon.png",
  4247. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4248. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4249. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4250. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4251. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4252. "tools/Newtonsoft.Json.dll",
  4253. "tools/System.Security.Principal.Windows.dll",
  4254. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4255. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4256. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4257. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4258. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4259. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4260. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4261. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4262. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4263. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4264. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4265. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4266. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4267. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4268. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4269. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4270. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4271. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4272. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4273. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4274. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4275. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4276. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4277. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4278. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4279. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4280. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4281. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4282. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4283. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4284. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4285. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4286. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4287. "tools/utils/KillProcess.exe",
  4288. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4289. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4290. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4291. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4292. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4293. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4294. ]
  4295. },
  4296. "Microsoft.Win32.Primitives/4.3.0": {
  4297. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4298. "type": "package",
  4299. "path": "microsoft.win32.primitives/4.3.0",
  4300. "files": [
  4301. ".nupkg.metadata",
  4302. ".signature.p7s",
  4303. "ThirdPartyNotices.txt",
  4304. "dotnet_library_license.txt",
  4305. "lib/MonoAndroid10/_._",
  4306. "lib/MonoTouch10/_._",
  4307. "lib/net46/Microsoft.Win32.Primitives.dll",
  4308. "lib/xamarinios10/_._",
  4309. "lib/xamarinmac20/_._",
  4310. "lib/xamarintvos10/_._",
  4311. "lib/xamarinwatchos10/_._",
  4312. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4313. "microsoft.win32.primitives.nuspec",
  4314. "ref/MonoAndroid10/_._",
  4315. "ref/MonoTouch10/_._",
  4316. "ref/net46/Microsoft.Win32.Primitives.dll",
  4317. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4318. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4319. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4320. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4321. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4322. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4323. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4324. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4325. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4326. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4327. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4328. "ref/xamarinios10/_._",
  4329. "ref/xamarinmac20/_._",
  4330. "ref/xamarintvos10/_._",
  4331. "ref/xamarinwatchos10/_._"
  4332. ]
  4333. },
  4334. "Microsoft.Win32.SystemEvents/5.0.0": {
  4335. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4336. "type": "package",
  4337. "path": "microsoft.win32.systemevents/5.0.0",
  4338. "files": [
  4339. ".nupkg.metadata",
  4340. ".signature.p7s",
  4341. "Icon.png",
  4342. "LICENSE.TXT",
  4343. "THIRD-PARTY-NOTICES.TXT",
  4344. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4345. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4346. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4347. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4348. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4349. "microsoft.win32.systemevents.nuspec",
  4350. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4351. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4352. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4353. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4354. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4355. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4356. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4357. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4358. "useSharedDesignerContext.txt",
  4359. "version.txt"
  4360. ]
  4361. },
  4362. "MQTTnet/4.2.1.781": {
  4363. "sha512": "oKPAoW1Ynukm6ws6P3NmmMlNb3xIlPVf/89WVCkoWOJdz1dYtAdGYRdqe876pVsPru4j0uyU/hKf7iL3NU1r6w==",
  4364. "type": "package",
  4365. "path": "mqttnet/4.2.1.781",
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "lib/net452/MQTTnet.dll",
  4370. "lib/net452/MQTTnet.xml",
  4371. "lib/net461/MQTTnet.dll",
  4372. "lib/net461/MQTTnet.xml",
  4373. "lib/net48/MQTTnet.dll",
  4374. "lib/net48/MQTTnet.xml",
  4375. "lib/net5.0/MQTTnet.dll",
  4376. "lib/net5.0/MQTTnet.xml",
  4377. "lib/net6.0/MQTTnet.dll",
  4378. "lib/net6.0/MQTTnet.xml",
  4379. "lib/net7.0/MQTTnet.dll",
  4380. "lib/net7.0/MQTTnet.xml",
  4381. "lib/netcoreapp3.1/MQTTnet.dll",
  4382. "lib/netcoreapp3.1/MQTTnet.xml",
  4383. "lib/netstandard1.3/MQTTnet.dll",
  4384. "lib/netstandard1.3/MQTTnet.xml",
  4385. "lib/netstandard2.0/MQTTnet.dll",
  4386. "lib/netstandard2.0/MQTTnet.xml",
  4387. "lib/netstandard2.1/MQTTnet.dll",
  4388. "lib/netstandard2.1/MQTTnet.xml",
  4389. "lib/uap10.0.10240/MQTTnet.dll",
  4390. "lib/uap10.0.10240/MQTTnet.pri",
  4391. "lib/uap10.0.10240/MQTTnet.xml",
  4392. "mqttnet.4.2.1.781.nupkg.sha512",
  4393. "mqttnet.nuspec",
  4394. "nuget.png"
  4395. ]
  4396. },
  4397. "MQTTnet.AspNetCore/4.2.1.781": {
  4398. "sha512": "lYier2E8s2TQn6PTCT8HnHih2RmTj2UlsqdPmrLJPayfmOSB7eaWLJARtwGpHHF2HEgsNtt99CkNdLwDrKu7AQ==",
  4399. "type": "package",
  4400. "path": "mqttnet.aspnetcore/4.2.1.781",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4405. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4406. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4407. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4408. "lib/net7.0/MQTTnet.AspNetCore.dll",
  4409. "lib/net7.0/MQTTnet.AspNetCore.xml",
  4410. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4411. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4412. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4413. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4414. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4415. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4416. "mqttnet.aspnetcore.4.2.1.781.nupkg.sha512",
  4417. "mqttnet.aspnetcore.nuspec",
  4418. "nuget.png"
  4419. ]
  4420. },
  4421. "MySql.Data/8.0.23": {
  4422. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4423. "type": "package",
  4424. "path": "mysql.data/8.0.23",
  4425. "files": [
  4426. ".nupkg.metadata",
  4427. ".signature.p7s",
  4428. "lib/net452/MySql.Data.dll",
  4429. "lib/net452/MySql.Data.xml",
  4430. "lib/net452/Ubiety.Dns.Core.dll",
  4431. "lib/net452/Zstandard.Net.dll",
  4432. "lib/net48/MySql.Data.dll",
  4433. "lib/net48/MySql.Data.xml",
  4434. "lib/net48/Ubiety.Dns.Core.dll",
  4435. "lib/net48/Zstandard.Net.dll",
  4436. "lib/net5.0/MySql.Data.dll",
  4437. "lib/net5.0/MySql.Data.xml",
  4438. "lib/net5.0/Ubiety.Dns.Core.dll",
  4439. "lib/net5.0/Zstandard.Net.dll",
  4440. "lib/netstandard2.0/MySql.Data.dll",
  4441. "lib/netstandard2.0/MySql.Data.xml",
  4442. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4443. "lib/netstandard2.0/Zstandard.Net.dll",
  4444. "lib/netstandard2.1/MySql.Data.dll",
  4445. "lib/netstandard2.1/MySql.Data.xml",
  4446. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4447. "lib/netstandard2.1/Zstandard.Net.dll",
  4448. "mysql.data.8.0.23.nupkg.sha512",
  4449. "mysql.data.nuspec"
  4450. ]
  4451. },
  4452. "MySqlConnector/1.1.0": {
  4453. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4454. "type": "package",
  4455. "path": "mysqlconnector/1.1.0",
  4456. "files": [
  4457. ".nupkg.metadata",
  4458. ".signature.p7s",
  4459. "lib/net45/MySqlConnector.dll",
  4460. "lib/net45/MySqlConnector.xml",
  4461. "lib/net461/MySqlConnector.dll",
  4462. "lib/net461/MySqlConnector.xml",
  4463. "lib/net471/MySqlConnector.dll",
  4464. "lib/net471/MySqlConnector.xml",
  4465. "lib/net5.0/MySqlConnector.dll",
  4466. "lib/net5.0/MySqlConnector.xml",
  4467. "lib/netcoreapp2.1/MySqlConnector.dll",
  4468. "lib/netcoreapp2.1/MySqlConnector.xml",
  4469. "lib/netcoreapp3.1/MySqlConnector.dll",
  4470. "lib/netcoreapp3.1/MySqlConnector.xml",
  4471. "lib/netstandard1.3/MySqlConnector.dll",
  4472. "lib/netstandard1.3/MySqlConnector.xml",
  4473. "lib/netstandard2.0/MySqlConnector.dll",
  4474. "lib/netstandard2.0/MySqlConnector.xml",
  4475. "lib/netstandard2.1/MySqlConnector.dll",
  4476. "lib/netstandard2.1/MySqlConnector.xml",
  4477. "logo.png",
  4478. "mysqlconnector.1.1.0.nupkg.sha512",
  4479. "mysqlconnector.nuspec"
  4480. ]
  4481. },
  4482. "NETStandard.Library/1.6.1": {
  4483. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4484. "type": "package",
  4485. "path": "netstandard.library/1.6.1",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "ThirdPartyNotices.txt",
  4490. "dotnet_library_license.txt",
  4491. "netstandard.library.1.6.1.nupkg.sha512",
  4492. "netstandard.library.nuspec"
  4493. ]
  4494. },
  4495. "Newtonsoft.Json/13.0.3": {
  4496. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4497. "type": "package",
  4498. "path": "newtonsoft.json/13.0.3",
  4499. "files": [
  4500. ".nupkg.metadata",
  4501. ".signature.p7s",
  4502. "LICENSE.md",
  4503. "README.md",
  4504. "lib/net20/Newtonsoft.Json.dll",
  4505. "lib/net20/Newtonsoft.Json.xml",
  4506. "lib/net35/Newtonsoft.Json.dll",
  4507. "lib/net35/Newtonsoft.Json.xml",
  4508. "lib/net40/Newtonsoft.Json.dll",
  4509. "lib/net40/Newtonsoft.Json.xml",
  4510. "lib/net45/Newtonsoft.Json.dll",
  4511. "lib/net45/Newtonsoft.Json.xml",
  4512. "lib/net6.0/Newtonsoft.Json.dll",
  4513. "lib/net6.0/Newtonsoft.Json.xml",
  4514. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4515. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4516. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4517. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4518. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4519. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4520. "newtonsoft.json.13.0.3.nupkg.sha512",
  4521. "newtonsoft.json.nuspec",
  4522. "packageIcon.png"
  4523. ]
  4524. },
  4525. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4526. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4527. "type": "package",
  4528. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "icon.png",
  4533. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4534. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4535. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4536. "pomelo.entityframeworkcore.mysql.nuspec"
  4537. ]
  4538. },
  4539. "QRCoder/1.4.3": {
  4540. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4541. "type": "package",
  4542. "path": "qrcoder/1.4.3",
  4543. "files": [
  4544. ".nupkg.metadata",
  4545. ".signature.p7s",
  4546. "lib/net35/QRCoder.dll",
  4547. "lib/net40/QRCoder.dll",
  4548. "lib/net5.0-windows7.0/QRCoder.dll",
  4549. "lib/net5.0/QRCoder.dll",
  4550. "lib/net6.0-windows7.0/QRCoder.dll",
  4551. "lib/net6.0/QRCoder.dll",
  4552. "lib/netstandard1.3/QRCoder.dll",
  4553. "lib/netstandard2.0/QRCoder.dll",
  4554. "nuget-icon.png",
  4555. "nuget-readme.md",
  4556. "qrcoder.1.4.3.nupkg.sha512",
  4557. "qrcoder.nuspec"
  4558. ]
  4559. },
  4560. "Quartz/3.3.3": {
  4561. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4562. "type": "package",
  4563. "path": "quartz/3.3.3",
  4564. "files": [
  4565. ".nupkg.metadata",
  4566. ".signature.p7s",
  4567. "lib/net461/Quartz.dll",
  4568. "lib/net461/Quartz.xml",
  4569. "lib/net472/Quartz.dll",
  4570. "lib/net472/Quartz.xml",
  4571. "lib/netstandard2.0/Quartz.dll",
  4572. "lib/netstandard2.0/Quartz.xml",
  4573. "quartz-logo-small.png",
  4574. "quartz.3.3.3.nupkg.sha512",
  4575. "quartz.nuspec"
  4576. ]
  4577. },
  4578. "RabbitMQ.Client/6.8.1": {
  4579. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4580. "type": "package",
  4581. "path": "rabbitmq.client/6.8.1",
  4582. "files": [
  4583. ".nupkg.metadata",
  4584. ".signature.p7s",
  4585. "README.md",
  4586. "icon.png",
  4587. "lib/net462/RabbitMQ.Client.dll",
  4588. "lib/net462/RabbitMQ.Client.xml",
  4589. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4590. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4591. "rabbitmq.client.6.8.1.nupkg.sha512",
  4592. "rabbitmq.client.nuspec"
  4593. ]
  4594. },
  4595. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4596. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4597. "type": "package",
  4598. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4599. "files": [
  4600. ".nupkg.metadata",
  4601. ".signature.p7s",
  4602. "ThirdPartyNotices.txt",
  4603. "dotnet_library_license.txt",
  4604. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4605. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4606. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4607. ]
  4608. },
  4609. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4610. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4611. "type": "package",
  4612. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4613. "files": [
  4614. ".nupkg.metadata",
  4615. ".signature.p7s",
  4616. "ThirdPartyNotices.txt",
  4617. "dotnet_library_license.txt",
  4618. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4619. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4620. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4621. ]
  4622. },
  4623. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4624. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4625. "type": "package",
  4626. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4627. "files": [
  4628. ".nupkg.metadata",
  4629. ".signature.p7s",
  4630. "ThirdPartyNotices.txt",
  4631. "dotnet_library_license.txt",
  4632. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4633. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4634. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4635. ]
  4636. },
  4637. "runtime.native.System/4.3.0": {
  4638. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4639. "type": "package",
  4640. "path": "runtime.native.system/4.3.0",
  4641. "files": [
  4642. ".nupkg.metadata",
  4643. ".signature.p7s",
  4644. "ThirdPartyNotices.txt",
  4645. "dotnet_library_license.txt",
  4646. "lib/netstandard1.0/_._",
  4647. "runtime.native.system.4.3.0.nupkg.sha512",
  4648. "runtime.native.system.nuspec"
  4649. ]
  4650. },
  4651. "runtime.native.System.IO.Compression/4.3.0": {
  4652. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4653. "type": "package",
  4654. "path": "runtime.native.system.io.compression/4.3.0",
  4655. "files": [
  4656. ".nupkg.metadata",
  4657. ".signature.p7s",
  4658. "ThirdPartyNotices.txt",
  4659. "dotnet_library_license.txt",
  4660. "lib/netstandard1.0/_._",
  4661. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4662. "runtime.native.system.io.compression.nuspec"
  4663. ]
  4664. },
  4665. "runtime.native.System.Net.Http/4.3.0": {
  4666. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4667. "type": "package",
  4668. "path": "runtime.native.system.net.http/4.3.0",
  4669. "files": [
  4670. ".nupkg.metadata",
  4671. ".signature.p7s",
  4672. "ThirdPartyNotices.txt",
  4673. "dotnet_library_license.txt",
  4674. "lib/netstandard1.0/_._",
  4675. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4676. "runtime.native.system.net.http.nuspec"
  4677. ]
  4678. },
  4679. "runtime.native.System.Net.Security/4.3.0": {
  4680. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4681. "type": "package",
  4682. "path": "runtime.native.system.net.security/4.3.0",
  4683. "files": [
  4684. ".nupkg.metadata",
  4685. ".signature.p7s",
  4686. "ThirdPartyNotices.txt",
  4687. "dotnet_library_license.txt",
  4688. "lib/netstandard1.0/_._",
  4689. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4690. "runtime.native.system.net.security.nuspec"
  4691. ]
  4692. },
  4693. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4694. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4695. "type": "package",
  4696. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4697. "files": [
  4698. ".nupkg.metadata",
  4699. ".signature.p7s",
  4700. "ThirdPartyNotices.txt",
  4701. "dotnet_library_license.txt",
  4702. "lib/netstandard1.0/_._",
  4703. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4704. "runtime.native.system.security.cryptography.apple.nuspec"
  4705. ]
  4706. },
  4707. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4708. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4709. "type": "package",
  4710. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4711. "files": [
  4712. ".nupkg.metadata",
  4713. ".signature.p7s",
  4714. "ThirdPartyNotices.txt",
  4715. "dotnet_library_license.txt",
  4716. "lib/netstandard1.0/_._",
  4717. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4718. "runtime.native.system.security.cryptography.openssl.nuspec"
  4719. ]
  4720. },
  4721. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4722. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4723. "type": "package",
  4724. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4725. "files": [
  4726. ".nupkg.metadata",
  4727. ".signature.p7s",
  4728. "ThirdPartyNotices.txt",
  4729. "dotnet_library_license.txt",
  4730. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4731. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4732. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4733. ]
  4734. },
  4735. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4736. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4737. "type": "package",
  4738. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4739. "files": [
  4740. ".nupkg.metadata",
  4741. ".signature.p7s",
  4742. "ThirdPartyNotices.txt",
  4743. "dotnet_library_license.txt",
  4744. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4745. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4746. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4747. ]
  4748. },
  4749. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4750. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4751. "type": "package",
  4752. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4753. "files": [
  4754. ".nupkg.metadata",
  4755. ".signature.p7s",
  4756. "ThirdPartyNotices.txt",
  4757. "dotnet_library_license.txt",
  4758. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4759. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4760. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4761. ]
  4762. },
  4763. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4764. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4765. "type": "package",
  4766. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4767. "files": [
  4768. ".nupkg.metadata",
  4769. ".signature.p7s",
  4770. "ThirdPartyNotices.txt",
  4771. "dotnet_library_license.txt",
  4772. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4773. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4774. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4775. ]
  4776. },
  4777. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4778. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4779. "type": "package",
  4780. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4781. "files": [
  4782. ".nupkg.metadata",
  4783. ".signature.p7s",
  4784. "ThirdPartyNotices.txt",
  4785. "dotnet_library_license.txt",
  4786. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4787. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4788. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4789. ]
  4790. },
  4791. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4792. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4793. "type": "package",
  4794. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4795. "files": [
  4796. ".nupkg.metadata",
  4797. ".signature.p7s",
  4798. "ThirdPartyNotices.txt",
  4799. "dotnet_library_license.txt",
  4800. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4801. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4802. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4803. ]
  4804. },
  4805. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4806. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4807. "type": "package",
  4808. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4809. "files": [
  4810. ".nupkg.metadata",
  4811. ".signature.p7s",
  4812. "ThirdPartyNotices.txt",
  4813. "dotnet_library_license.txt",
  4814. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4815. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4816. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4817. ]
  4818. },
  4819. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4820. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4821. "type": "package",
  4822. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4823. "files": [
  4824. ".nupkg.metadata",
  4825. ".signature.p7s",
  4826. "ThirdPartyNotices.txt",
  4827. "dotnet_library_license.txt",
  4828. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4829. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4830. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4831. ]
  4832. },
  4833. "SixLabors.ImageSharp/2.1.6": {
  4834. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4835. "type": "package",
  4836. "path": "sixlabors.imagesharp/2.1.6",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "lib/net472/SixLabors.ImageSharp.dll",
  4841. "lib/net472/SixLabors.ImageSharp.xml",
  4842. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4843. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4844. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4845. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4846. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4847. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4848. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4849. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4850. "sixlabors.imagesharp.128.png",
  4851. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4852. "sixlabors.imagesharp.nuspec"
  4853. ]
  4854. },
  4855. "SSH.NET/2020.0.0-beta1": {
  4856. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4857. "type": "package",
  4858. "path": "ssh.net/2020.0.0-beta1",
  4859. "files": [
  4860. ".nupkg.metadata",
  4861. ".signature.p7s",
  4862. "lib/net35/Renci.SshNet.dll",
  4863. "lib/net35/Renci.SshNet.xml",
  4864. "lib/net40/Renci.SshNet.dll",
  4865. "lib/net40/Renci.SshNet.xml",
  4866. "lib/netstandard1.3/Renci.SshNet.dll",
  4867. "lib/netstandard1.3/Renci.SshNet.xml",
  4868. "lib/netstandard2.0/Renci.SshNet.dll",
  4869. "lib/netstandard2.0/Renci.SshNet.xml",
  4870. "lib/sl4/Renci.SshNet.dll",
  4871. "lib/sl4/Renci.SshNet.xml",
  4872. "lib/sl5/Renci.SshNet.dll",
  4873. "lib/sl5/Renci.SshNet.xml",
  4874. "lib/uap10/Renci.SshNet.dll",
  4875. "lib/uap10/Renci.SshNet.xml",
  4876. "lib/wp71/Renci.SshNet.dll",
  4877. "lib/wp71/Renci.SshNet.xml",
  4878. "lib/wp8/Renci.SshNet.dll",
  4879. "lib/wp8/Renci.SshNet.xml",
  4880. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4881. "ssh.net.nuspec"
  4882. ]
  4883. },
  4884. "SshNet.Security.Cryptography/1.3.0": {
  4885. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4886. "type": "package",
  4887. "path": "sshnet.security.cryptography/1.3.0",
  4888. "files": [
  4889. ".nupkg.metadata",
  4890. ".signature.p7s",
  4891. "lib/net20/SshNet.Security.Cryptography.dll",
  4892. "lib/net20/SshNet.Security.Cryptography.xml",
  4893. "lib/net40/SshNet.Security.Cryptography.dll",
  4894. "lib/net40/SshNet.Security.Cryptography.xml",
  4895. "lib/net45/SshNet.Security.Cryptography.dll",
  4896. "lib/net45/SshNet.Security.Cryptography.xml",
  4897. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4898. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4899. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4900. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4901. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4902. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4903. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4904. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4905. "lib/sl4/SshNet.Security.Cryptography.dll",
  4906. "lib/sl4/SshNet.Security.Cryptography.xml",
  4907. "lib/sl5/SshNet.Security.Cryptography.dll",
  4908. "lib/sl5/SshNet.Security.Cryptography.xml",
  4909. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4910. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4911. "lib/wp71/SshNet.Security.Cryptography.dll",
  4912. "lib/wp71/SshNet.Security.Cryptography.xml",
  4913. "lib/wp8/SshNet.Security.Cryptography.dll",
  4914. "lib/wp8/SshNet.Security.Cryptography.xml",
  4915. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4916. "sshnet.security.cryptography.nuspec"
  4917. ]
  4918. },
  4919. "StackExchange.Redis/1.2.4": {
  4920. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4921. "type": "package",
  4922. "path": "stackexchange.redis/1.2.4",
  4923. "files": [
  4924. ".nupkg.metadata",
  4925. ".signature.p7s",
  4926. "lib/net45/StackExchange.Redis.dll",
  4927. "lib/net45/StackExchange.Redis.xml",
  4928. "lib/net46/StackExchange.Redis.dll",
  4929. "lib/net46/StackExchange.Redis.xml",
  4930. "lib/netstandard1.5/StackExchange.Redis.dll",
  4931. "lib/netstandard1.5/StackExchange.Redis.xml",
  4932. "stackexchange.redis.1.2.4.nupkg.sha512",
  4933. "stackexchange.redis.nuspec"
  4934. ]
  4935. },
  4936. "Swashbuckle.AspNetCore/5.6.3": {
  4937. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4938. "type": "package",
  4939. "path": "swashbuckle.aspnetcore/5.6.3",
  4940. "files": [
  4941. ".nupkg.metadata",
  4942. ".signature.p7s",
  4943. "build/Swashbuckle.AspNetCore.props",
  4944. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4945. "swashbuckle.aspnetcore.nuspec"
  4946. ]
  4947. },
  4948. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4949. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4950. "type": "package",
  4951. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4952. "files": [
  4953. ".nupkg.metadata",
  4954. ".signature.p7s",
  4955. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4956. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4957. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4958. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4959. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4960. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4961. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4962. "swashbuckle.aspnetcore.swagger.nuspec"
  4963. ]
  4964. },
  4965. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4966. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4967. "type": "package",
  4968. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4969. "files": [
  4970. ".nupkg.metadata",
  4971. ".signature.p7s",
  4972. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4973. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4974. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4975. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4976. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4977. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4978. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4979. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4980. ]
  4981. },
  4982. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4983. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4984. "type": "package",
  4985. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4986. "files": [
  4987. ".nupkg.metadata",
  4988. ".signature.p7s",
  4989. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4990. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4991. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4992. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4993. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4994. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4995. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  4996. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4997. ]
  4998. },
  4999. "System.AppContext/4.3.0": {
  5000. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5001. "type": "package",
  5002. "path": "system.appcontext/4.3.0",
  5003. "files": [
  5004. ".nupkg.metadata",
  5005. ".signature.p7s",
  5006. "ThirdPartyNotices.txt",
  5007. "dotnet_library_license.txt",
  5008. "lib/MonoAndroid10/_._",
  5009. "lib/MonoTouch10/_._",
  5010. "lib/net46/System.AppContext.dll",
  5011. "lib/net463/System.AppContext.dll",
  5012. "lib/netcore50/System.AppContext.dll",
  5013. "lib/netstandard1.6/System.AppContext.dll",
  5014. "lib/xamarinios10/_._",
  5015. "lib/xamarinmac20/_._",
  5016. "lib/xamarintvos10/_._",
  5017. "lib/xamarinwatchos10/_._",
  5018. "ref/MonoAndroid10/_._",
  5019. "ref/MonoTouch10/_._",
  5020. "ref/net46/System.AppContext.dll",
  5021. "ref/net463/System.AppContext.dll",
  5022. "ref/netstandard/_._",
  5023. "ref/netstandard1.3/System.AppContext.dll",
  5024. "ref/netstandard1.3/System.AppContext.xml",
  5025. "ref/netstandard1.3/de/System.AppContext.xml",
  5026. "ref/netstandard1.3/es/System.AppContext.xml",
  5027. "ref/netstandard1.3/fr/System.AppContext.xml",
  5028. "ref/netstandard1.3/it/System.AppContext.xml",
  5029. "ref/netstandard1.3/ja/System.AppContext.xml",
  5030. "ref/netstandard1.3/ko/System.AppContext.xml",
  5031. "ref/netstandard1.3/ru/System.AppContext.xml",
  5032. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5033. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5034. "ref/netstandard1.6/System.AppContext.dll",
  5035. "ref/netstandard1.6/System.AppContext.xml",
  5036. "ref/netstandard1.6/de/System.AppContext.xml",
  5037. "ref/netstandard1.6/es/System.AppContext.xml",
  5038. "ref/netstandard1.6/fr/System.AppContext.xml",
  5039. "ref/netstandard1.6/it/System.AppContext.xml",
  5040. "ref/netstandard1.6/ja/System.AppContext.xml",
  5041. "ref/netstandard1.6/ko/System.AppContext.xml",
  5042. "ref/netstandard1.6/ru/System.AppContext.xml",
  5043. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5044. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5045. "ref/xamarinios10/_._",
  5046. "ref/xamarinmac20/_._",
  5047. "ref/xamarintvos10/_._",
  5048. "ref/xamarinwatchos10/_._",
  5049. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5050. "system.appcontext.4.3.0.nupkg.sha512",
  5051. "system.appcontext.nuspec"
  5052. ]
  5053. },
  5054. "System.Buffers/4.5.1": {
  5055. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5056. "type": "package",
  5057. "path": "system.buffers/4.5.1",
  5058. "files": [
  5059. ".nupkg.metadata",
  5060. ".signature.p7s",
  5061. "LICENSE.TXT",
  5062. "THIRD-PARTY-NOTICES.TXT",
  5063. "lib/net461/System.Buffers.dll",
  5064. "lib/net461/System.Buffers.xml",
  5065. "lib/netcoreapp2.0/_._",
  5066. "lib/netstandard1.1/System.Buffers.dll",
  5067. "lib/netstandard1.1/System.Buffers.xml",
  5068. "lib/netstandard2.0/System.Buffers.dll",
  5069. "lib/netstandard2.0/System.Buffers.xml",
  5070. "lib/uap10.0.16299/_._",
  5071. "ref/net45/System.Buffers.dll",
  5072. "ref/net45/System.Buffers.xml",
  5073. "ref/netcoreapp2.0/_._",
  5074. "ref/netstandard1.1/System.Buffers.dll",
  5075. "ref/netstandard1.1/System.Buffers.xml",
  5076. "ref/netstandard2.0/System.Buffers.dll",
  5077. "ref/netstandard2.0/System.Buffers.xml",
  5078. "ref/uap10.0.16299/_._",
  5079. "system.buffers.4.5.1.nupkg.sha512",
  5080. "system.buffers.nuspec",
  5081. "useSharedDesignerContext.txt",
  5082. "version.txt"
  5083. ]
  5084. },
  5085. "System.Collections/4.3.0": {
  5086. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5087. "type": "package",
  5088. "path": "system.collections/4.3.0",
  5089. "files": [
  5090. ".nupkg.metadata",
  5091. ".signature.p7s",
  5092. "ThirdPartyNotices.txt",
  5093. "dotnet_library_license.txt",
  5094. "lib/MonoAndroid10/_._",
  5095. "lib/MonoTouch10/_._",
  5096. "lib/net45/_._",
  5097. "lib/portable-net45+win8+wp8+wpa81/_._",
  5098. "lib/win8/_._",
  5099. "lib/wp80/_._",
  5100. "lib/wpa81/_._",
  5101. "lib/xamarinios10/_._",
  5102. "lib/xamarinmac20/_._",
  5103. "lib/xamarintvos10/_._",
  5104. "lib/xamarinwatchos10/_._",
  5105. "ref/MonoAndroid10/_._",
  5106. "ref/MonoTouch10/_._",
  5107. "ref/net45/_._",
  5108. "ref/netcore50/System.Collections.dll",
  5109. "ref/netcore50/System.Collections.xml",
  5110. "ref/netcore50/de/System.Collections.xml",
  5111. "ref/netcore50/es/System.Collections.xml",
  5112. "ref/netcore50/fr/System.Collections.xml",
  5113. "ref/netcore50/it/System.Collections.xml",
  5114. "ref/netcore50/ja/System.Collections.xml",
  5115. "ref/netcore50/ko/System.Collections.xml",
  5116. "ref/netcore50/ru/System.Collections.xml",
  5117. "ref/netcore50/zh-hans/System.Collections.xml",
  5118. "ref/netcore50/zh-hant/System.Collections.xml",
  5119. "ref/netstandard1.0/System.Collections.dll",
  5120. "ref/netstandard1.0/System.Collections.xml",
  5121. "ref/netstandard1.0/de/System.Collections.xml",
  5122. "ref/netstandard1.0/es/System.Collections.xml",
  5123. "ref/netstandard1.0/fr/System.Collections.xml",
  5124. "ref/netstandard1.0/it/System.Collections.xml",
  5125. "ref/netstandard1.0/ja/System.Collections.xml",
  5126. "ref/netstandard1.0/ko/System.Collections.xml",
  5127. "ref/netstandard1.0/ru/System.Collections.xml",
  5128. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5129. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5130. "ref/netstandard1.3/System.Collections.dll",
  5131. "ref/netstandard1.3/System.Collections.xml",
  5132. "ref/netstandard1.3/de/System.Collections.xml",
  5133. "ref/netstandard1.3/es/System.Collections.xml",
  5134. "ref/netstandard1.3/fr/System.Collections.xml",
  5135. "ref/netstandard1.3/it/System.Collections.xml",
  5136. "ref/netstandard1.3/ja/System.Collections.xml",
  5137. "ref/netstandard1.3/ko/System.Collections.xml",
  5138. "ref/netstandard1.3/ru/System.Collections.xml",
  5139. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5140. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5141. "ref/portable-net45+win8+wp8+wpa81/_._",
  5142. "ref/win8/_._",
  5143. "ref/wp80/_._",
  5144. "ref/wpa81/_._",
  5145. "ref/xamarinios10/_._",
  5146. "ref/xamarinmac20/_._",
  5147. "ref/xamarintvos10/_._",
  5148. "ref/xamarinwatchos10/_._",
  5149. "system.collections.4.3.0.nupkg.sha512",
  5150. "system.collections.nuspec"
  5151. ]
  5152. },
  5153. "System.Collections.Concurrent/4.3.0": {
  5154. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5155. "type": "package",
  5156. "path": "system.collections.concurrent/4.3.0",
  5157. "files": [
  5158. ".nupkg.metadata",
  5159. ".signature.p7s",
  5160. "ThirdPartyNotices.txt",
  5161. "dotnet_library_license.txt",
  5162. "lib/MonoAndroid10/_._",
  5163. "lib/MonoTouch10/_._",
  5164. "lib/net45/_._",
  5165. "lib/netcore50/System.Collections.Concurrent.dll",
  5166. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5167. "lib/portable-net45+win8+wpa81/_._",
  5168. "lib/win8/_._",
  5169. "lib/wpa81/_._",
  5170. "lib/xamarinios10/_._",
  5171. "lib/xamarinmac20/_._",
  5172. "lib/xamarintvos10/_._",
  5173. "lib/xamarinwatchos10/_._",
  5174. "ref/MonoAndroid10/_._",
  5175. "ref/MonoTouch10/_._",
  5176. "ref/net45/_._",
  5177. "ref/netcore50/System.Collections.Concurrent.dll",
  5178. "ref/netcore50/System.Collections.Concurrent.xml",
  5179. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5180. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5181. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5182. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5183. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5184. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5185. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5186. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5187. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5188. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5189. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5190. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5191. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5192. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5193. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5194. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5195. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5196. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5197. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5198. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5199. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5200. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5201. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5202. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5203. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5204. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5205. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5206. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5207. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5208. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5209. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5210. "ref/portable-net45+win8+wpa81/_._",
  5211. "ref/win8/_._",
  5212. "ref/wpa81/_._",
  5213. "ref/xamarinios10/_._",
  5214. "ref/xamarinmac20/_._",
  5215. "ref/xamarintvos10/_._",
  5216. "ref/xamarinwatchos10/_._",
  5217. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5218. "system.collections.concurrent.nuspec"
  5219. ]
  5220. },
  5221. "System.Collections.Immutable/5.0.0": {
  5222. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5223. "type": "package",
  5224. "path": "system.collections.immutable/5.0.0",
  5225. "files": [
  5226. ".nupkg.metadata",
  5227. ".signature.p7s",
  5228. "Icon.png",
  5229. "LICENSE.TXT",
  5230. "THIRD-PARTY-NOTICES.TXT",
  5231. "lib/net461/System.Collections.Immutable.dll",
  5232. "lib/net461/System.Collections.Immutable.xml",
  5233. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5234. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5235. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5236. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5237. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5238. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5239. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5240. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5241. "system.collections.immutable.5.0.0.nupkg.sha512",
  5242. "system.collections.immutable.nuspec",
  5243. "useSharedDesignerContext.txt",
  5244. "version.txt"
  5245. ]
  5246. },
  5247. "System.Collections.NonGeneric/4.3.0": {
  5248. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5249. "type": "package",
  5250. "path": "system.collections.nongeneric/4.3.0",
  5251. "files": [
  5252. ".nupkg.metadata",
  5253. ".signature.p7s",
  5254. "ThirdPartyNotices.txt",
  5255. "dotnet_library_license.txt",
  5256. "lib/MonoAndroid10/_._",
  5257. "lib/MonoTouch10/_._",
  5258. "lib/net46/System.Collections.NonGeneric.dll",
  5259. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5260. "lib/xamarinios10/_._",
  5261. "lib/xamarinmac20/_._",
  5262. "lib/xamarintvos10/_._",
  5263. "lib/xamarinwatchos10/_._",
  5264. "ref/MonoAndroid10/_._",
  5265. "ref/MonoTouch10/_._",
  5266. "ref/net46/System.Collections.NonGeneric.dll",
  5267. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5268. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5269. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5270. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5271. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5272. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5273. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5274. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5275. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5276. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5277. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5278. "ref/xamarinios10/_._",
  5279. "ref/xamarinmac20/_._",
  5280. "ref/xamarintvos10/_._",
  5281. "ref/xamarinwatchos10/_._",
  5282. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5283. "system.collections.nongeneric.nuspec"
  5284. ]
  5285. },
  5286. "System.Collections.Specialized/4.3.0": {
  5287. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5288. "type": "package",
  5289. "path": "system.collections.specialized/4.3.0",
  5290. "files": [
  5291. ".nupkg.metadata",
  5292. ".signature.p7s",
  5293. "ThirdPartyNotices.txt",
  5294. "dotnet_library_license.txt",
  5295. "lib/MonoAndroid10/_._",
  5296. "lib/MonoTouch10/_._",
  5297. "lib/net46/System.Collections.Specialized.dll",
  5298. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5299. "lib/xamarinios10/_._",
  5300. "lib/xamarinmac20/_._",
  5301. "lib/xamarintvos10/_._",
  5302. "lib/xamarinwatchos10/_._",
  5303. "ref/MonoAndroid10/_._",
  5304. "ref/MonoTouch10/_._",
  5305. "ref/net46/System.Collections.Specialized.dll",
  5306. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5307. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5308. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5309. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5310. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5311. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5312. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5313. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5314. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5315. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5316. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5317. "ref/xamarinios10/_._",
  5318. "ref/xamarinmac20/_._",
  5319. "ref/xamarintvos10/_._",
  5320. "ref/xamarinwatchos10/_._",
  5321. "system.collections.specialized.4.3.0.nupkg.sha512",
  5322. "system.collections.specialized.nuspec"
  5323. ]
  5324. },
  5325. "System.ComponentModel/4.3.0": {
  5326. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5327. "type": "package",
  5328. "path": "system.componentmodel/4.3.0",
  5329. "files": [
  5330. ".nupkg.metadata",
  5331. ".signature.p7s",
  5332. "ThirdPartyNotices.txt",
  5333. "dotnet_library_license.txt",
  5334. "lib/MonoAndroid10/_._",
  5335. "lib/MonoTouch10/_._",
  5336. "lib/net45/_._",
  5337. "lib/netcore50/System.ComponentModel.dll",
  5338. "lib/netstandard1.3/System.ComponentModel.dll",
  5339. "lib/portable-net45+win8+wp8+wpa81/_._",
  5340. "lib/win8/_._",
  5341. "lib/wp80/_._",
  5342. "lib/wpa81/_._",
  5343. "lib/xamarinios10/_._",
  5344. "lib/xamarinmac20/_._",
  5345. "lib/xamarintvos10/_._",
  5346. "lib/xamarinwatchos10/_._",
  5347. "ref/MonoAndroid10/_._",
  5348. "ref/MonoTouch10/_._",
  5349. "ref/net45/_._",
  5350. "ref/netcore50/System.ComponentModel.dll",
  5351. "ref/netcore50/System.ComponentModel.xml",
  5352. "ref/netcore50/de/System.ComponentModel.xml",
  5353. "ref/netcore50/es/System.ComponentModel.xml",
  5354. "ref/netcore50/fr/System.ComponentModel.xml",
  5355. "ref/netcore50/it/System.ComponentModel.xml",
  5356. "ref/netcore50/ja/System.ComponentModel.xml",
  5357. "ref/netcore50/ko/System.ComponentModel.xml",
  5358. "ref/netcore50/ru/System.ComponentModel.xml",
  5359. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5360. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5361. "ref/netstandard1.0/System.ComponentModel.dll",
  5362. "ref/netstandard1.0/System.ComponentModel.xml",
  5363. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5364. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5365. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5366. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5367. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5368. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5369. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5370. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5371. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5372. "ref/portable-net45+win8+wp8+wpa81/_._",
  5373. "ref/win8/_._",
  5374. "ref/wp80/_._",
  5375. "ref/wpa81/_._",
  5376. "ref/xamarinios10/_._",
  5377. "ref/xamarinmac20/_._",
  5378. "ref/xamarintvos10/_._",
  5379. "ref/xamarinwatchos10/_._",
  5380. "system.componentmodel.4.3.0.nupkg.sha512",
  5381. "system.componentmodel.nuspec"
  5382. ]
  5383. },
  5384. "System.ComponentModel.Annotations/5.0.0": {
  5385. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5386. "type": "package",
  5387. "path": "system.componentmodel.annotations/5.0.0",
  5388. "files": [
  5389. ".nupkg.metadata",
  5390. ".signature.p7s",
  5391. "Icon.png",
  5392. "LICENSE.TXT",
  5393. "THIRD-PARTY-NOTICES.TXT",
  5394. "lib/MonoAndroid10/_._",
  5395. "lib/MonoTouch10/_._",
  5396. "lib/net45/_._",
  5397. "lib/net461/System.ComponentModel.Annotations.dll",
  5398. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5399. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5400. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5401. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5402. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5403. "lib/portable-net45+win8/_._",
  5404. "lib/win8/_._",
  5405. "lib/xamarinios10/_._",
  5406. "lib/xamarinmac20/_._",
  5407. "lib/xamarintvos10/_._",
  5408. "lib/xamarinwatchos10/_._",
  5409. "ref/MonoAndroid10/_._",
  5410. "ref/MonoTouch10/_._",
  5411. "ref/net45/_._",
  5412. "ref/net461/System.ComponentModel.Annotations.dll",
  5413. "ref/net461/System.ComponentModel.Annotations.xml",
  5414. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5415. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5416. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5417. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5418. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5419. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5420. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5421. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5422. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5423. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5424. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5425. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5426. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5427. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5428. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5429. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5430. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5431. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5432. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5433. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5434. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5435. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5436. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5437. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5438. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5439. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5440. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5441. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5442. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5443. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5444. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5445. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5446. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5447. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5448. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5449. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5450. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5451. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5452. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5453. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5454. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5455. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5456. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5457. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5458. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5459. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5460. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5461. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5462. "ref/portable-net45+win8/_._",
  5463. "ref/win8/_._",
  5464. "ref/xamarinios10/_._",
  5465. "ref/xamarinmac20/_._",
  5466. "ref/xamarintvos10/_._",
  5467. "ref/xamarinwatchos10/_._",
  5468. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5469. "system.componentmodel.annotations.nuspec",
  5470. "useSharedDesignerContext.txt",
  5471. "version.txt"
  5472. ]
  5473. },
  5474. "System.ComponentModel.Primitives/4.3.0": {
  5475. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5476. "type": "package",
  5477. "path": "system.componentmodel.primitives/4.3.0",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "ThirdPartyNotices.txt",
  5482. "dotnet_library_license.txt",
  5483. "lib/MonoAndroid10/_._",
  5484. "lib/MonoTouch10/_._",
  5485. "lib/net45/System.ComponentModel.Primitives.dll",
  5486. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5487. "lib/xamarinios10/_._",
  5488. "lib/xamarinmac20/_._",
  5489. "lib/xamarintvos10/_._",
  5490. "lib/xamarinwatchos10/_._",
  5491. "ref/MonoAndroid10/_._",
  5492. "ref/MonoTouch10/_._",
  5493. "ref/net45/System.ComponentModel.Primitives.dll",
  5494. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5495. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5496. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5497. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5498. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5499. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5500. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5501. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5502. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5503. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5504. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5505. "ref/xamarinios10/_._",
  5506. "ref/xamarinmac20/_._",
  5507. "ref/xamarintvos10/_._",
  5508. "ref/xamarinwatchos10/_._",
  5509. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5510. "system.componentmodel.primitives.nuspec"
  5511. ]
  5512. },
  5513. "System.ComponentModel.TypeConverter/4.3.0": {
  5514. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5515. "type": "package",
  5516. "path": "system.componentmodel.typeconverter/4.3.0",
  5517. "files": [
  5518. ".nupkg.metadata",
  5519. ".signature.p7s",
  5520. "ThirdPartyNotices.txt",
  5521. "dotnet_library_license.txt",
  5522. "lib/MonoAndroid10/_._",
  5523. "lib/MonoTouch10/_._",
  5524. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5525. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5526. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5527. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5528. "lib/xamarinios10/_._",
  5529. "lib/xamarinmac20/_._",
  5530. "lib/xamarintvos10/_._",
  5531. "lib/xamarinwatchos10/_._",
  5532. "ref/MonoAndroid10/_._",
  5533. "ref/MonoTouch10/_._",
  5534. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5535. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5536. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5537. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5538. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5539. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5540. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5541. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5542. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5543. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5544. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5545. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5546. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5547. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5548. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5549. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5550. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5551. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5552. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5553. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5554. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5555. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5556. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5557. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5558. "ref/xamarinios10/_._",
  5559. "ref/xamarinmac20/_._",
  5560. "ref/xamarintvos10/_._",
  5561. "ref/xamarinwatchos10/_._",
  5562. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5563. "system.componentmodel.typeconverter.nuspec"
  5564. ]
  5565. },
  5566. "System.Configuration.ConfigurationManager/4.7.0": {
  5567. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5568. "type": "package",
  5569. "path": "system.configuration.configurationmanager/4.7.0",
  5570. "files": [
  5571. ".nupkg.metadata",
  5572. ".signature.p7s",
  5573. "LICENSE.TXT",
  5574. "THIRD-PARTY-NOTICES.TXT",
  5575. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5576. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5577. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5578. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5579. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5580. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5581. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5582. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5583. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5584. "system.configuration.configurationmanager.nuspec",
  5585. "useSharedDesignerContext.txt",
  5586. "version.txt"
  5587. ]
  5588. },
  5589. "System.Console/4.3.0": {
  5590. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5591. "type": "package",
  5592. "path": "system.console/4.3.0",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "ThirdPartyNotices.txt",
  5597. "dotnet_library_license.txt",
  5598. "lib/MonoAndroid10/_._",
  5599. "lib/MonoTouch10/_._",
  5600. "lib/net46/System.Console.dll",
  5601. "lib/xamarinios10/_._",
  5602. "lib/xamarinmac20/_._",
  5603. "lib/xamarintvos10/_._",
  5604. "lib/xamarinwatchos10/_._",
  5605. "ref/MonoAndroid10/_._",
  5606. "ref/MonoTouch10/_._",
  5607. "ref/net46/System.Console.dll",
  5608. "ref/netstandard1.3/System.Console.dll",
  5609. "ref/netstandard1.3/System.Console.xml",
  5610. "ref/netstandard1.3/de/System.Console.xml",
  5611. "ref/netstandard1.3/es/System.Console.xml",
  5612. "ref/netstandard1.3/fr/System.Console.xml",
  5613. "ref/netstandard1.3/it/System.Console.xml",
  5614. "ref/netstandard1.3/ja/System.Console.xml",
  5615. "ref/netstandard1.3/ko/System.Console.xml",
  5616. "ref/netstandard1.3/ru/System.Console.xml",
  5617. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5618. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5619. "ref/xamarinios10/_._",
  5620. "ref/xamarinmac20/_._",
  5621. "ref/xamarintvos10/_._",
  5622. "ref/xamarinwatchos10/_._",
  5623. "system.console.4.3.0.nupkg.sha512",
  5624. "system.console.nuspec"
  5625. ]
  5626. },
  5627. "System.Diagnostics.Debug/4.3.0": {
  5628. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5629. "type": "package",
  5630. "path": "system.diagnostics.debug/4.3.0",
  5631. "files": [
  5632. ".nupkg.metadata",
  5633. ".signature.p7s",
  5634. "ThirdPartyNotices.txt",
  5635. "dotnet_library_license.txt",
  5636. "lib/MonoAndroid10/_._",
  5637. "lib/MonoTouch10/_._",
  5638. "lib/net45/_._",
  5639. "lib/portable-net45+win8+wp8+wpa81/_._",
  5640. "lib/win8/_._",
  5641. "lib/wp80/_._",
  5642. "lib/wpa81/_._",
  5643. "lib/xamarinios10/_._",
  5644. "lib/xamarinmac20/_._",
  5645. "lib/xamarintvos10/_._",
  5646. "lib/xamarinwatchos10/_._",
  5647. "ref/MonoAndroid10/_._",
  5648. "ref/MonoTouch10/_._",
  5649. "ref/net45/_._",
  5650. "ref/netcore50/System.Diagnostics.Debug.dll",
  5651. "ref/netcore50/System.Diagnostics.Debug.xml",
  5652. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5653. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5654. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5655. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5656. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5657. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5658. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5659. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5660. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5661. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5662. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5663. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5664. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5665. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5666. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5667. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5668. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5669. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5670. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5671. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5672. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5673. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5674. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5675. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5676. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5677. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5678. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5679. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5680. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5681. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5682. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5683. "ref/portable-net45+win8+wp8+wpa81/_._",
  5684. "ref/win8/_._",
  5685. "ref/wp80/_._",
  5686. "ref/wpa81/_._",
  5687. "ref/xamarinios10/_._",
  5688. "ref/xamarinmac20/_._",
  5689. "ref/xamarintvos10/_._",
  5690. "ref/xamarinwatchos10/_._",
  5691. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5692. "system.diagnostics.debug.nuspec"
  5693. ]
  5694. },
  5695. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5696. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5697. "type": "package",
  5698. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5699. "files": [
  5700. ".nupkg.metadata",
  5701. ".signature.p7s",
  5702. "Icon.png",
  5703. "LICENSE.TXT",
  5704. "THIRD-PARTY-NOTICES.TXT",
  5705. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5706. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5707. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5708. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5709. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5710. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5711. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5712. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5713. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5714. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5715. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5716. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5717. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5718. "system.diagnostics.diagnosticsource.nuspec",
  5719. "useSharedDesignerContext.txt",
  5720. "version.txt"
  5721. ]
  5722. },
  5723. "System.Diagnostics.Tools/4.3.0": {
  5724. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5725. "type": "package",
  5726. "path": "system.diagnostics.tools/4.3.0",
  5727. "files": [
  5728. ".nupkg.metadata",
  5729. ".signature.p7s",
  5730. "ThirdPartyNotices.txt",
  5731. "dotnet_library_license.txt",
  5732. "lib/MonoAndroid10/_._",
  5733. "lib/MonoTouch10/_._",
  5734. "lib/net45/_._",
  5735. "lib/portable-net45+win8+wp8+wpa81/_._",
  5736. "lib/win8/_._",
  5737. "lib/wp80/_._",
  5738. "lib/wpa81/_._",
  5739. "lib/xamarinios10/_._",
  5740. "lib/xamarinmac20/_._",
  5741. "lib/xamarintvos10/_._",
  5742. "lib/xamarinwatchos10/_._",
  5743. "ref/MonoAndroid10/_._",
  5744. "ref/MonoTouch10/_._",
  5745. "ref/net45/_._",
  5746. "ref/netcore50/System.Diagnostics.Tools.dll",
  5747. "ref/netcore50/System.Diagnostics.Tools.xml",
  5748. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5749. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5750. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5751. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5752. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5753. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5754. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5755. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5756. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5757. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5758. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5759. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5760. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5761. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5762. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5763. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5764. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5765. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5766. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5767. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5768. "ref/portable-net45+win8+wp8+wpa81/_._",
  5769. "ref/win8/_._",
  5770. "ref/wp80/_._",
  5771. "ref/wpa81/_._",
  5772. "ref/xamarinios10/_._",
  5773. "ref/xamarinmac20/_._",
  5774. "ref/xamarintvos10/_._",
  5775. "ref/xamarinwatchos10/_._",
  5776. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5777. "system.diagnostics.tools.nuspec"
  5778. ]
  5779. },
  5780. "System.Diagnostics.TraceSource/4.3.0": {
  5781. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5782. "type": "package",
  5783. "path": "system.diagnostics.tracesource/4.3.0",
  5784. "files": [
  5785. ".nupkg.metadata",
  5786. ".signature.p7s",
  5787. "ThirdPartyNotices.txt",
  5788. "dotnet_library_license.txt",
  5789. "lib/MonoAndroid10/_._",
  5790. "lib/MonoTouch10/_._",
  5791. "lib/net46/System.Diagnostics.TraceSource.dll",
  5792. "lib/xamarinios10/_._",
  5793. "lib/xamarinmac20/_._",
  5794. "lib/xamarintvos10/_._",
  5795. "lib/xamarinwatchos10/_._",
  5796. "ref/MonoAndroid10/_._",
  5797. "ref/MonoTouch10/_._",
  5798. "ref/net46/System.Diagnostics.TraceSource.dll",
  5799. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5800. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5801. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5802. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5803. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5804. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5805. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5806. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5807. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5808. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5809. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5810. "ref/xamarinios10/_._",
  5811. "ref/xamarinmac20/_._",
  5812. "ref/xamarintvos10/_._",
  5813. "ref/xamarinwatchos10/_._",
  5814. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5815. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5816. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5817. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5818. "system.diagnostics.tracesource.nuspec"
  5819. ]
  5820. },
  5821. "System.Diagnostics.Tracing/4.3.0": {
  5822. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5823. "type": "package",
  5824. "path": "system.diagnostics.tracing/4.3.0",
  5825. "files": [
  5826. ".nupkg.metadata",
  5827. ".signature.p7s",
  5828. "ThirdPartyNotices.txt",
  5829. "dotnet_library_license.txt",
  5830. "lib/MonoAndroid10/_._",
  5831. "lib/MonoTouch10/_._",
  5832. "lib/net45/_._",
  5833. "lib/net462/System.Diagnostics.Tracing.dll",
  5834. "lib/portable-net45+win8+wpa81/_._",
  5835. "lib/win8/_._",
  5836. "lib/wpa81/_._",
  5837. "lib/xamarinios10/_._",
  5838. "lib/xamarinmac20/_._",
  5839. "lib/xamarintvos10/_._",
  5840. "lib/xamarinwatchos10/_._",
  5841. "ref/MonoAndroid10/_._",
  5842. "ref/MonoTouch10/_._",
  5843. "ref/net45/_._",
  5844. "ref/net462/System.Diagnostics.Tracing.dll",
  5845. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5846. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5847. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5848. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5849. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5850. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5851. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5852. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5853. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5854. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5855. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5856. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5857. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5858. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5859. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5860. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5861. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5862. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5863. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5864. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5865. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5866. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5867. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5868. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5869. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5870. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5871. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5872. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5873. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5874. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5875. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5876. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5877. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5878. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5879. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5880. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5881. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5882. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5883. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5884. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5885. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5886. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5887. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5888. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5889. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5890. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5891. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5892. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5893. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5894. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5895. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5896. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5897. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5898. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5899. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5900. "ref/portable-net45+win8+wpa81/_._",
  5901. "ref/win8/_._",
  5902. "ref/wpa81/_._",
  5903. "ref/xamarinios10/_._",
  5904. "ref/xamarinmac20/_._",
  5905. "ref/xamarintvos10/_._",
  5906. "ref/xamarinwatchos10/_._",
  5907. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5908. "system.diagnostics.tracing.nuspec"
  5909. ]
  5910. },
  5911. "System.Drawing.Common/5.0.3": {
  5912. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5913. "type": "package",
  5914. "path": "system.drawing.common/5.0.3",
  5915. "files": [
  5916. ".nupkg.metadata",
  5917. ".signature.p7s",
  5918. "Icon.png",
  5919. "LICENSE.TXT",
  5920. "THIRD-PARTY-NOTICES.TXT",
  5921. "lib/MonoAndroid10/_._",
  5922. "lib/MonoTouch10/_._",
  5923. "lib/net461/System.Drawing.Common.dll",
  5924. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5925. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5926. "lib/netstandard2.0/System.Drawing.Common.dll",
  5927. "lib/xamarinios10/_._",
  5928. "lib/xamarinmac20/_._",
  5929. "lib/xamarintvos10/_._",
  5930. "lib/xamarinwatchos10/_._",
  5931. "ref/MonoAndroid10/_._",
  5932. "ref/MonoTouch10/_._",
  5933. "ref/net461/System.Drawing.Common.dll",
  5934. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5935. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5936. "ref/netstandard2.0/System.Drawing.Common.dll",
  5937. "ref/xamarinios10/_._",
  5938. "ref/xamarinmac20/_._",
  5939. "ref/xamarintvos10/_._",
  5940. "ref/xamarinwatchos10/_._",
  5941. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5942. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5943. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5944. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5945. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5946. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5947. "system.drawing.common.5.0.3.nupkg.sha512",
  5948. "system.drawing.common.nuspec",
  5949. "useSharedDesignerContext.txt",
  5950. "version.txt"
  5951. ]
  5952. },
  5953. "System.Dynamic.Runtime/4.3.0": {
  5954. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5955. "type": "package",
  5956. "path": "system.dynamic.runtime/4.3.0",
  5957. "files": [
  5958. ".nupkg.metadata",
  5959. ".signature.p7s",
  5960. "ThirdPartyNotices.txt",
  5961. "dotnet_library_license.txt",
  5962. "lib/MonoAndroid10/_._",
  5963. "lib/MonoTouch10/_._",
  5964. "lib/net45/_._",
  5965. "lib/netcore50/System.Dynamic.Runtime.dll",
  5966. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5967. "lib/portable-net45+win8+wp8+wpa81/_._",
  5968. "lib/win8/_._",
  5969. "lib/wp80/_._",
  5970. "lib/wpa81/_._",
  5971. "lib/xamarinios10/_._",
  5972. "lib/xamarinmac20/_._",
  5973. "lib/xamarintvos10/_._",
  5974. "lib/xamarinwatchos10/_._",
  5975. "ref/MonoAndroid10/_._",
  5976. "ref/MonoTouch10/_._",
  5977. "ref/net45/_._",
  5978. "ref/netcore50/System.Dynamic.Runtime.dll",
  5979. "ref/netcore50/System.Dynamic.Runtime.xml",
  5980. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5981. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5982. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5983. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5984. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5985. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5986. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5987. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5988. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5989. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5990. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5991. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5992. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5993. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5994. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5995. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5996. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5997. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5998. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5999. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6000. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6001. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6002. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6003. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6004. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6005. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6006. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6007. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6008. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6009. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6010. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6011. "ref/portable-net45+win8+wp8+wpa81/_._",
  6012. "ref/win8/_._",
  6013. "ref/wp80/_._",
  6014. "ref/wpa81/_._",
  6015. "ref/xamarinios10/_._",
  6016. "ref/xamarinmac20/_._",
  6017. "ref/xamarintvos10/_._",
  6018. "ref/xamarinwatchos10/_._",
  6019. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6020. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6021. "system.dynamic.runtime.nuspec"
  6022. ]
  6023. },
  6024. "System.Globalization/4.3.0": {
  6025. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6026. "type": "package",
  6027. "path": "system.globalization/4.3.0",
  6028. "files": [
  6029. ".nupkg.metadata",
  6030. ".signature.p7s",
  6031. "ThirdPartyNotices.txt",
  6032. "dotnet_library_license.txt",
  6033. "lib/MonoAndroid10/_._",
  6034. "lib/MonoTouch10/_._",
  6035. "lib/net45/_._",
  6036. "lib/portable-net45+win8+wp8+wpa81/_._",
  6037. "lib/win8/_._",
  6038. "lib/wp80/_._",
  6039. "lib/wpa81/_._",
  6040. "lib/xamarinios10/_._",
  6041. "lib/xamarinmac20/_._",
  6042. "lib/xamarintvos10/_._",
  6043. "lib/xamarinwatchos10/_._",
  6044. "ref/MonoAndroid10/_._",
  6045. "ref/MonoTouch10/_._",
  6046. "ref/net45/_._",
  6047. "ref/netcore50/System.Globalization.dll",
  6048. "ref/netcore50/System.Globalization.xml",
  6049. "ref/netcore50/de/System.Globalization.xml",
  6050. "ref/netcore50/es/System.Globalization.xml",
  6051. "ref/netcore50/fr/System.Globalization.xml",
  6052. "ref/netcore50/it/System.Globalization.xml",
  6053. "ref/netcore50/ja/System.Globalization.xml",
  6054. "ref/netcore50/ko/System.Globalization.xml",
  6055. "ref/netcore50/ru/System.Globalization.xml",
  6056. "ref/netcore50/zh-hans/System.Globalization.xml",
  6057. "ref/netcore50/zh-hant/System.Globalization.xml",
  6058. "ref/netstandard1.0/System.Globalization.dll",
  6059. "ref/netstandard1.0/System.Globalization.xml",
  6060. "ref/netstandard1.0/de/System.Globalization.xml",
  6061. "ref/netstandard1.0/es/System.Globalization.xml",
  6062. "ref/netstandard1.0/fr/System.Globalization.xml",
  6063. "ref/netstandard1.0/it/System.Globalization.xml",
  6064. "ref/netstandard1.0/ja/System.Globalization.xml",
  6065. "ref/netstandard1.0/ko/System.Globalization.xml",
  6066. "ref/netstandard1.0/ru/System.Globalization.xml",
  6067. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6068. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6069. "ref/netstandard1.3/System.Globalization.dll",
  6070. "ref/netstandard1.3/System.Globalization.xml",
  6071. "ref/netstandard1.3/de/System.Globalization.xml",
  6072. "ref/netstandard1.3/es/System.Globalization.xml",
  6073. "ref/netstandard1.3/fr/System.Globalization.xml",
  6074. "ref/netstandard1.3/it/System.Globalization.xml",
  6075. "ref/netstandard1.3/ja/System.Globalization.xml",
  6076. "ref/netstandard1.3/ko/System.Globalization.xml",
  6077. "ref/netstandard1.3/ru/System.Globalization.xml",
  6078. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6079. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6080. "ref/portable-net45+win8+wp8+wpa81/_._",
  6081. "ref/win8/_._",
  6082. "ref/wp80/_._",
  6083. "ref/wpa81/_._",
  6084. "ref/xamarinios10/_._",
  6085. "ref/xamarinmac20/_._",
  6086. "ref/xamarintvos10/_._",
  6087. "ref/xamarinwatchos10/_._",
  6088. "system.globalization.4.3.0.nupkg.sha512",
  6089. "system.globalization.nuspec"
  6090. ]
  6091. },
  6092. "System.Globalization.Calendars/4.3.0": {
  6093. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6094. "type": "package",
  6095. "path": "system.globalization.calendars/4.3.0",
  6096. "files": [
  6097. ".nupkg.metadata",
  6098. ".signature.p7s",
  6099. "ThirdPartyNotices.txt",
  6100. "dotnet_library_license.txt",
  6101. "lib/MonoAndroid10/_._",
  6102. "lib/MonoTouch10/_._",
  6103. "lib/net46/System.Globalization.Calendars.dll",
  6104. "lib/xamarinios10/_._",
  6105. "lib/xamarinmac20/_._",
  6106. "lib/xamarintvos10/_._",
  6107. "lib/xamarinwatchos10/_._",
  6108. "ref/MonoAndroid10/_._",
  6109. "ref/MonoTouch10/_._",
  6110. "ref/net46/System.Globalization.Calendars.dll",
  6111. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6112. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6113. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6114. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6115. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6116. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6117. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6118. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6119. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6120. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6121. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6122. "ref/xamarinios10/_._",
  6123. "ref/xamarinmac20/_._",
  6124. "ref/xamarintvos10/_._",
  6125. "ref/xamarinwatchos10/_._",
  6126. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6127. "system.globalization.calendars.nuspec"
  6128. ]
  6129. },
  6130. "System.Globalization.Extensions/4.3.0": {
  6131. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6132. "type": "package",
  6133. "path": "system.globalization.extensions/4.3.0",
  6134. "files": [
  6135. ".nupkg.metadata",
  6136. ".signature.p7s",
  6137. "ThirdPartyNotices.txt",
  6138. "dotnet_library_license.txt",
  6139. "lib/MonoAndroid10/_._",
  6140. "lib/MonoTouch10/_._",
  6141. "lib/net46/System.Globalization.Extensions.dll",
  6142. "lib/xamarinios10/_._",
  6143. "lib/xamarinmac20/_._",
  6144. "lib/xamarintvos10/_._",
  6145. "lib/xamarinwatchos10/_._",
  6146. "ref/MonoAndroid10/_._",
  6147. "ref/MonoTouch10/_._",
  6148. "ref/net46/System.Globalization.Extensions.dll",
  6149. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6150. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6151. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6152. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6153. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6154. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6155. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6156. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6157. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6158. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6159. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6160. "ref/xamarinios10/_._",
  6161. "ref/xamarinmac20/_._",
  6162. "ref/xamarintvos10/_._",
  6163. "ref/xamarinwatchos10/_._",
  6164. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6165. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6166. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6167. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6168. "system.globalization.extensions.nuspec"
  6169. ]
  6170. },
  6171. "System.IO/4.3.0": {
  6172. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6173. "type": "package",
  6174. "path": "system.io/4.3.0",
  6175. "files": [
  6176. ".nupkg.metadata",
  6177. ".signature.p7s",
  6178. "ThirdPartyNotices.txt",
  6179. "dotnet_library_license.txt",
  6180. "lib/MonoAndroid10/_._",
  6181. "lib/MonoTouch10/_._",
  6182. "lib/net45/_._",
  6183. "lib/net462/System.IO.dll",
  6184. "lib/portable-net45+win8+wp8+wpa81/_._",
  6185. "lib/win8/_._",
  6186. "lib/wp80/_._",
  6187. "lib/wpa81/_._",
  6188. "lib/xamarinios10/_._",
  6189. "lib/xamarinmac20/_._",
  6190. "lib/xamarintvos10/_._",
  6191. "lib/xamarinwatchos10/_._",
  6192. "ref/MonoAndroid10/_._",
  6193. "ref/MonoTouch10/_._",
  6194. "ref/net45/_._",
  6195. "ref/net462/System.IO.dll",
  6196. "ref/netcore50/System.IO.dll",
  6197. "ref/netcore50/System.IO.xml",
  6198. "ref/netcore50/de/System.IO.xml",
  6199. "ref/netcore50/es/System.IO.xml",
  6200. "ref/netcore50/fr/System.IO.xml",
  6201. "ref/netcore50/it/System.IO.xml",
  6202. "ref/netcore50/ja/System.IO.xml",
  6203. "ref/netcore50/ko/System.IO.xml",
  6204. "ref/netcore50/ru/System.IO.xml",
  6205. "ref/netcore50/zh-hans/System.IO.xml",
  6206. "ref/netcore50/zh-hant/System.IO.xml",
  6207. "ref/netstandard1.0/System.IO.dll",
  6208. "ref/netstandard1.0/System.IO.xml",
  6209. "ref/netstandard1.0/de/System.IO.xml",
  6210. "ref/netstandard1.0/es/System.IO.xml",
  6211. "ref/netstandard1.0/fr/System.IO.xml",
  6212. "ref/netstandard1.0/it/System.IO.xml",
  6213. "ref/netstandard1.0/ja/System.IO.xml",
  6214. "ref/netstandard1.0/ko/System.IO.xml",
  6215. "ref/netstandard1.0/ru/System.IO.xml",
  6216. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6217. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6218. "ref/netstandard1.3/System.IO.dll",
  6219. "ref/netstandard1.3/System.IO.xml",
  6220. "ref/netstandard1.3/de/System.IO.xml",
  6221. "ref/netstandard1.3/es/System.IO.xml",
  6222. "ref/netstandard1.3/fr/System.IO.xml",
  6223. "ref/netstandard1.3/it/System.IO.xml",
  6224. "ref/netstandard1.3/ja/System.IO.xml",
  6225. "ref/netstandard1.3/ko/System.IO.xml",
  6226. "ref/netstandard1.3/ru/System.IO.xml",
  6227. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6228. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6229. "ref/netstandard1.5/System.IO.dll",
  6230. "ref/netstandard1.5/System.IO.xml",
  6231. "ref/netstandard1.5/de/System.IO.xml",
  6232. "ref/netstandard1.5/es/System.IO.xml",
  6233. "ref/netstandard1.5/fr/System.IO.xml",
  6234. "ref/netstandard1.5/it/System.IO.xml",
  6235. "ref/netstandard1.5/ja/System.IO.xml",
  6236. "ref/netstandard1.5/ko/System.IO.xml",
  6237. "ref/netstandard1.5/ru/System.IO.xml",
  6238. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6239. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6240. "ref/portable-net45+win8+wp8+wpa81/_._",
  6241. "ref/win8/_._",
  6242. "ref/wp80/_._",
  6243. "ref/wpa81/_._",
  6244. "ref/xamarinios10/_._",
  6245. "ref/xamarinmac20/_._",
  6246. "ref/xamarintvos10/_._",
  6247. "ref/xamarinwatchos10/_._",
  6248. "system.io.4.3.0.nupkg.sha512",
  6249. "system.io.nuspec"
  6250. ]
  6251. },
  6252. "System.IO.Compression/4.3.0": {
  6253. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6254. "type": "package",
  6255. "path": "system.io.compression/4.3.0",
  6256. "files": [
  6257. ".nupkg.metadata",
  6258. ".signature.p7s",
  6259. "ThirdPartyNotices.txt",
  6260. "dotnet_library_license.txt",
  6261. "lib/MonoAndroid10/_._",
  6262. "lib/MonoTouch10/_._",
  6263. "lib/net45/_._",
  6264. "lib/net46/System.IO.Compression.dll",
  6265. "lib/portable-net45+win8+wpa81/_._",
  6266. "lib/win8/_._",
  6267. "lib/wpa81/_._",
  6268. "lib/xamarinios10/_._",
  6269. "lib/xamarinmac20/_._",
  6270. "lib/xamarintvos10/_._",
  6271. "lib/xamarinwatchos10/_._",
  6272. "ref/MonoAndroid10/_._",
  6273. "ref/MonoTouch10/_._",
  6274. "ref/net45/_._",
  6275. "ref/net46/System.IO.Compression.dll",
  6276. "ref/netcore50/System.IO.Compression.dll",
  6277. "ref/netcore50/System.IO.Compression.xml",
  6278. "ref/netcore50/de/System.IO.Compression.xml",
  6279. "ref/netcore50/es/System.IO.Compression.xml",
  6280. "ref/netcore50/fr/System.IO.Compression.xml",
  6281. "ref/netcore50/it/System.IO.Compression.xml",
  6282. "ref/netcore50/ja/System.IO.Compression.xml",
  6283. "ref/netcore50/ko/System.IO.Compression.xml",
  6284. "ref/netcore50/ru/System.IO.Compression.xml",
  6285. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6286. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6287. "ref/netstandard1.1/System.IO.Compression.dll",
  6288. "ref/netstandard1.1/System.IO.Compression.xml",
  6289. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6290. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6291. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6292. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6293. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6294. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6295. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6296. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6297. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6298. "ref/netstandard1.3/System.IO.Compression.dll",
  6299. "ref/netstandard1.3/System.IO.Compression.xml",
  6300. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6301. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6302. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6303. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6304. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6305. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6306. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6307. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6308. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6309. "ref/portable-net45+win8+wpa81/_._",
  6310. "ref/win8/_._",
  6311. "ref/wpa81/_._",
  6312. "ref/xamarinios10/_._",
  6313. "ref/xamarinmac20/_._",
  6314. "ref/xamarintvos10/_._",
  6315. "ref/xamarinwatchos10/_._",
  6316. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6317. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6318. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6319. "system.io.compression.4.3.0.nupkg.sha512",
  6320. "system.io.compression.nuspec"
  6321. ]
  6322. },
  6323. "System.IO.Compression.ZipFile/4.3.0": {
  6324. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6325. "type": "package",
  6326. "path": "system.io.compression.zipfile/4.3.0",
  6327. "files": [
  6328. ".nupkg.metadata",
  6329. ".signature.p7s",
  6330. "ThirdPartyNotices.txt",
  6331. "dotnet_library_license.txt",
  6332. "lib/MonoAndroid10/_._",
  6333. "lib/MonoTouch10/_._",
  6334. "lib/net46/System.IO.Compression.ZipFile.dll",
  6335. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6336. "lib/xamarinios10/_._",
  6337. "lib/xamarinmac20/_._",
  6338. "lib/xamarintvos10/_._",
  6339. "lib/xamarinwatchos10/_._",
  6340. "ref/MonoAndroid10/_._",
  6341. "ref/MonoTouch10/_._",
  6342. "ref/net46/System.IO.Compression.ZipFile.dll",
  6343. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6344. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6345. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6346. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6347. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6348. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6349. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6350. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6351. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6352. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6353. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6354. "ref/xamarinios10/_._",
  6355. "ref/xamarinmac20/_._",
  6356. "ref/xamarintvos10/_._",
  6357. "ref/xamarinwatchos10/_._",
  6358. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6359. "system.io.compression.zipfile.nuspec"
  6360. ]
  6361. },
  6362. "System.IO.FileSystem/4.3.0": {
  6363. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6364. "type": "package",
  6365. "path": "system.io.filesystem/4.3.0",
  6366. "files": [
  6367. ".nupkg.metadata",
  6368. ".signature.p7s",
  6369. "ThirdPartyNotices.txt",
  6370. "dotnet_library_license.txt",
  6371. "lib/MonoAndroid10/_._",
  6372. "lib/MonoTouch10/_._",
  6373. "lib/net46/System.IO.FileSystem.dll",
  6374. "lib/xamarinios10/_._",
  6375. "lib/xamarinmac20/_._",
  6376. "lib/xamarintvos10/_._",
  6377. "lib/xamarinwatchos10/_._",
  6378. "ref/MonoAndroid10/_._",
  6379. "ref/MonoTouch10/_._",
  6380. "ref/net46/System.IO.FileSystem.dll",
  6381. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6382. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6383. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6384. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6385. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6386. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6387. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6388. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6389. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6390. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6391. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6392. "ref/xamarinios10/_._",
  6393. "ref/xamarinmac20/_._",
  6394. "ref/xamarintvos10/_._",
  6395. "ref/xamarinwatchos10/_._",
  6396. "system.io.filesystem.4.3.0.nupkg.sha512",
  6397. "system.io.filesystem.nuspec"
  6398. ]
  6399. },
  6400. "System.IO.FileSystem.Primitives/4.3.0": {
  6401. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6402. "type": "package",
  6403. "path": "system.io.filesystem.primitives/4.3.0",
  6404. "files": [
  6405. ".nupkg.metadata",
  6406. ".signature.p7s",
  6407. "ThirdPartyNotices.txt",
  6408. "dotnet_library_license.txt",
  6409. "lib/MonoAndroid10/_._",
  6410. "lib/MonoTouch10/_._",
  6411. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6412. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6413. "lib/xamarinios10/_._",
  6414. "lib/xamarinmac20/_._",
  6415. "lib/xamarintvos10/_._",
  6416. "lib/xamarinwatchos10/_._",
  6417. "ref/MonoAndroid10/_._",
  6418. "ref/MonoTouch10/_._",
  6419. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6420. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6421. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6422. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6423. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6424. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6425. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6426. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6427. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6428. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6429. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6430. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6431. "ref/xamarinios10/_._",
  6432. "ref/xamarinmac20/_._",
  6433. "ref/xamarintvos10/_._",
  6434. "ref/xamarinwatchos10/_._",
  6435. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6436. "system.io.filesystem.primitives.nuspec"
  6437. ]
  6438. },
  6439. "System.IO.Pipelines/5.0.0": {
  6440. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6441. "type": "package",
  6442. "path": "system.io.pipelines/5.0.0",
  6443. "files": [
  6444. ".nupkg.metadata",
  6445. ".signature.p7s",
  6446. "Icon.png",
  6447. "LICENSE.TXT",
  6448. "THIRD-PARTY-NOTICES.TXT",
  6449. "lib/net461/System.IO.Pipelines.dll",
  6450. "lib/net461/System.IO.Pipelines.xml",
  6451. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6452. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6453. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6454. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6455. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6456. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6457. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6458. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6459. "system.io.pipelines.5.0.0.nupkg.sha512",
  6460. "system.io.pipelines.nuspec",
  6461. "useSharedDesignerContext.txt",
  6462. "version.txt"
  6463. ]
  6464. },
  6465. "System.Linq/4.3.0": {
  6466. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6467. "type": "package",
  6468. "path": "system.linq/4.3.0",
  6469. "files": [
  6470. ".nupkg.metadata",
  6471. ".signature.p7s",
  6472. "ThirdPartyNotices.txt",
  6473. "dotnet_library_license.txt",
  6474. "lib/MonoAndroid10/_._",
  6475. "lib/MonoTouch10/_._",
  6476. "lib/net45/_._",
  6477. "lib/net463/System.Linq.dll",
  6478. "lib/netcore50/System.Linq.dll",
  6479. "lib/netstandard1.6/System.Linq.dll",
  6480. "lib/portable-net45+win8+wp8+wpa81/_._",
  6481. "lib/win8/_._",
  6482. "lib/wp80/_._",
  6483. "lib/wpa81/_._",
  6484. "lib/xamarinios10/_._",
  6485. "lib/xamarinmac20/_._",
  6486. "lib/xamarintvos10/_._",
  6487. "lib/xamarinwatchos10/_._",
  6488. "ref/MonoAndroid10/_._",
  6489. "ref/MonoTouch10/_._",
  6490. "ref/net45/_._",
  6491. "ref/net463/System.Linq.dll",
  6492. "ref/netcore50/System.Linq.dll",
  6493. "ref/netcore50/System.Linq.xml",
  6494. "ref/netcore50/de/System.Linq.xml",
  6495. "ref/netcore50/es/System.Linq.xml",
  6496. "ref/netcore50/fr/System.Linq.xml",
  6497. "ref/netcore50/it/System.Linq.xml",
  6498. "ref/netcore50/ja/System.Linq.xml",
  6499. "ref/netcore50/ko/System.Linq.xml",
  6500. "ref/netcore50/ru/System.Linq.xml",
  6501. "ref/netcore50/zh-hans/System.Linq.xml",
  6502. "ref/netcore50/zh-hant/System.Linq.xml",
  6503. "ref/netstandard1.0/System.Linq.dll",
  6504. "ref/netstandard1.0/System.Linq.xml",
  6505. "ref/netstandard1.0/de/System.Linq.xml",
  6506. "ref/netstandard1.0/es/System.Linq.xml",
  6507. "ref/netstandard1.0/fr/System.Linq.xml",
  6508. "ref/netstandard1.0/it/System.Linq.xml",
  6509. "ref/netstandard1.0/ja/System.Linq.xml",
  6510. "ref/netstandard1.0/ko/System.Linq.xml",
  6511. "ref/netstandard1.0/ru/System.Linq.xml",
  6512. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6513. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6514. "ref/netstandard1.6/System.Linq.dll",
  6515. "ref/netstandard1.6/System.Linq.xml",
  6516. "ref/netstandard1.6/de/System.Linq.xml",
  6517. "ref/netstandard1.6/es/System.Linq.xml",
  6518. "ref/netstandard1.6/fr/System.Linq.xml",
  6519. "ref/netstandard1.6/it/System.Linq.xml",
  6520. "ref/netstandard1.6/ja/System.Linq.xml",
  6521. "ref/netstandard1.6/ko/System.Linq.xml",
  6522. "ref/netstandard1.6/ru/System.Linq.xml",
  6523. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6524. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6525. "ref/portable-net45+win8+wp8+wpa81/_._",
  6526. "ref/win8/_._",
  6527. "ref/wp80/_._",
  6528. "ref/wpa81/_._",
  6529. "ref/xamarinios10/_._",
  6530. "ref/xamarinmac20/_._",
  6531. "ref/xamarintvos10/_._",
  6532. "ref/xamarinwatchos10/_._",
  6533. "system.linq.4.3.0.nupkg.sha512",
  6534. "system.linq.nuspec"
  6535. ]
  6536. },
  6537. "System.Linq.Expressions/4.3.0": {
  6538. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6539. "type": "package",
  6540. "path": "system.linq.expressions/4.3.0",
  6541. "files": [
  6542. ".nupkg.metadata",
  6543. ".signature.p7s",
  6544. "ThirdPartyNotices.txt",
  6545. "dotnet_library_license.txt",
  6546. "lib/MonoAndroid10/_._",
  6547. "lib/MonoTouch10/_._",
  6548. "lib/net45/_._",
  6549. "lib/net463/System.Linq.Expressions.dll",
  6550. "lib/netcore50/System.Linq.Expressions.dll",
  6551. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6552. "lib/portable-net45+win8+wp8+wpa81/_._",
  6553. "lib/win8/_._",
  6554. "lib/wp80/_._",
  6555. "lib/wpa81/_._",
  6556. "lib/xamarinios10/_._",
  6557. "lib/xamarinmac20/_._",
  6558. "lib/xamarintvos10/_._",
  6559. "lib/xamarinwatchos10/_._",
  6560. "ref/MonoAndroid10/_._",
  6561. "ref/MonoTouch10/_._",
  6562. "ref/net45/_._",
  6563. "ref/net463/System.Linq.Expressions.dll",
  6564. "ref/netcore50/System.Linq.Expressions.dll",
  6565. "ref/netcore50/System.Linq.Expressions.xml",
  6566. "ref/netcore50/de/System.Linq.Expressions.xml",
  6567. "ref/netcore50/es/System.Linq.Expressions.xml",
  6568. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6569. "ref/netcore50/it/System.Linq.Expressions.xml",
  6570. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6571. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6572. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6573. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6574. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6575. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6576. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6577. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6578. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6579. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6580. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6581. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6582. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6583. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6584. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6585. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6586. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6587. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6588. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6589. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6590. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6591. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6592. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6593. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6594. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6595. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6596. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6597. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6598. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6599. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6600. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6601. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6602. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6603. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6604. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6605. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6606. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6607. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6608. "ref/portable-net45+win8+wp8+wpa81/_._",
  6609. "ref/win8/_._",
  6610. "ref/wp80/_._",
  6611. "ref/wpa81/_._",
  6612. "ref/xamarinios10/_._",
  6613. "ref/xamarinmac20/_._",
  6614. "ref/xamarintvos10/_._",
  6615. "ref/xamarinwatchos10/_._",
  6616. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6617. "system.linq.expressions.4.3.0.nupkg.sha512",
  6618. "system.linq.expressions.nuspec"
  6619. ]
  6620. },
  6621. "System.Memory/4.5.5": {
  6622. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6623. "type": "package",
  6624. "path": "system.memory/4.5.5",
  6625. "files": [
  6626. ".nupkg.metadata",
  6627. ".signature.p7s",
  6628. "LICENSE.TXT",
  6629. "THIRD-PARTY-NOTICES.TXT",
  6630. "lib/net461/System.Memory.dll",
  6631. "lib/net461/System.Memory.xml",
  6632. "lib/netcoreapp2.1/_._",
  6633. "lib/netstandard1.1/System.Memory.dll",
  6634. "lib/netstandard1.1/System.Memory.xml",
  6635. "lib/netstandard2.0/System.Memory.dll",
  6636. "lib/netstandard2.0/System.Memory.xml",
  6637. "ref/netcoreapp2.1/_._",
  6638. "system.memory.4.5.5.nupkg.sha512",
  6639. "system.memory.nuspec",
  6640. "useSharedDesignerContext.txt",
  6641. "version.txt"
  6642. ]
  6643. },
  6644. "System.Net.Http/4.3.0": {
  6645. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6646. "type": "package",
  6647. "path": "system.net.http/4.3.0",
  6648. "files": [
  6649. ".nupkg.metadata",
  6650. ".signature.p7s",
  6651. "ThirdPartyNotices.txt",
  6652. "dotnet_library_license.txt",
  6653. "lib/Xamarinmac20/_._",
  6654. "lib/monoandroid10/_._",
  6655. "lib/monotouch10/_._",
  6656. "lib/net45/_._",
  6657. "lib/net46/System.Net.Http.dll",
  6658. "lib/portable-net45+win8+wpa81/_._",
  6659. "lib/win8/_._",
  6660. "lib/wpa81/_._",
  6661. "lib/xamarinios10/_._",
  6662. "lib/xamarintvos10/_._",
  6663. "lib/xamarinwatchos10/_._",
  6664. "ref/Xamarinmac20/_._",
  6665. "ref/monoandroid10/_._",
  6666. "ref/monotouch10/_._",
  6667. "ref/net45/_._",
  6668. "ref/net46/System.Net.Http.dll",
  6669. "ref/net46/System.Net.Http.xml",
  6670. "ref/net46/de/System.Net.Http.xml",
  6671. "ref/net46/es/System.Net.Http.xml",
  6672. "ref/net46/fr/System.Net.Http.xml",
  6673. "ref/net46/it/System.Net.Http.xml",
  6674. "ref/net46/ja/System.Net.Http.xml",
  6675. "ref/net46/ko/System.Net.Http.xml",
  6676. "ref/net46/ru/System.Net.Http.xml",
  6677. "ref/net46/zh-hans/System.Net.Http.xml",
  6678. "ref/net46/zh-hant/System.Net.Http.xml",
  6679. "ref/netcore50/System.Net.Http.dll",
  6680. "ref/netcore50/System.Net.Http.xml",
  6681. "ref/netcore50/de/System.Net.Http.xml",
  6682. "ref/netcore50/es/System.Net.Http.xml",
  6683. "ref/netcore50/fr/System.Net.Http.xml",
  6684. "ref/netcore50/it/System.Net.Http.xml",
  6685. "ref/netcore50/ja/System.Net.Http.xml",
  6686. "ref/netcore50/ko/System.Net.Http.xml",
  6687. "ref/netcore50/ru/System.Net.Http.xml",
  6688. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6689. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6690. "ref/netstandard1.1/System.Net.Http.dll",
  6691. "ref/netstandard1.1/System.Net.Http.xml",
  6692. "ref/netstandard1.1/de/System.Net.Http.xml",
  6693. "ref/netstandard1.1/es/System.Net.Http.xml",
  6694. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6695. "ref/netstandard1.1/it/System.Net.Http.xml",
  6696. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6697. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6698. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6699. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6700. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6701. "ref/netstandard1.3/System.Net.Http.dll",
  6702. "ref/netstandard1.3/System.Net.Http.xml",
  6703. "ref/netstandard1.3/de/System.Net.Http.xml",
  6704. "ref/netstandard1.3/es/System.Net.Http.xml",
  6705. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6706. "ref/netstandard1.3/it/System.Net.Http.xml",
  6707. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6708. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6709. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6710. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6711. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6712. "ref/portable-net45+win8+wpa81/_._",
  6713. "ref/win8/_._",
  6714. "ref/wpa81/_._",
  6715. "ref/xamarinios10/_._",
  6716. "ref/xamarintvos10/_._",
  6717. "ref/xamarinwatchos10/_._",
  6718. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6719. "runtimes/win/lib/net46/System.Net.Http.dll",
  6720. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6721. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6722. "system.net.http.4.3.0.nupkg.sha512",
  6723. "system.net.http.nuspec"
  6724. ]
  6725. },
  6726. "System.Net.NameResolution/4.3.0": {
  6727. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6728. "type": "package",
  6729. "path": "system.net.nameresolution/4.3.0",
  6730. "files": [
  6731. ".nupkg.metadata",
  6732. ".signature.p7s",
  6733. "ThirdPartyNotices.txt",
  6734. "dotnet_library_license.txt",
  6735. "lib/MonoAndroid10/_._",
  6736. "lib/MonoTouch10/_._",
  6737. "lib/net46/System.Net.NameResolution.dll",
  6738. "lib/xamarinios10/_._",
  6739. "lib/xamarinmac20/_._",
  6740. "lib/xamarintvos10/_._",
  6741. "lib/xamarinwatchos10/_._",
  6742. "ref/MonoAndroid10/_._",
  6743. "ref/MonoTouch10/_._",
  6744. "ref/net46/System.Net.NameResolution.dll",
  6745. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6746. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6747. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6748. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6749. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6750. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6751. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6752. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6753. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6754. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6755. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6756. "ref/xamarinios10/_._",
  6757. "ref/xamarinmac20/_._",
  6758. "ref/xamarintvos10/_._",
  6759. "ref/xamarinwatchos10/_._",
  6760. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6761. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6762. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6763. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6764. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6765. "system.net.nameresolution.nuspec"
  6766. ]
  6767. },
  6768. "System.Net.Primitives/4.3.0": {
  6769. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6770. "type": "package",
  6771. "path": "system.net.primitives/4.3.0",
  6772. "files": [
  6773. ".nupkg.metadata",
  6774. ".signature.p7s",
  6775. "ThirdPartyNotices.txt",
  6776. "dotnet_library_license.txt",
  6777. "lib/MonoAndroid10/_._",
  6778. "lib/MonoTouch10/_._",
  6779. "lib/net45/_._",
  6780. "lib/portable-net45+win8+wp8+wpa81/_._",
  6781. "lib/win8/_._",
  6782. "lib/wp80/_._",
  6783. "lib/wpa81/_._",
  6784. "lib/xamarinios10/_._",
  6785. "lib/xamarinmac20/_._",
  6786. "lib/xamarintvos10/_._",
  6787. "lib/xamarinwatchos10/_._",
  6788. "ref/MonoAndroid10/_._",
  6789. "ref/MonoTouch10/_._",
  6790. "ref/net45/_._",
  6791. "ref/netcore50/System.Net.Primitives.dll",
  6792. "ref/netcore50/System.Net.Primitives.xml",
  6793. "ref/netcore50/de/System.Net.Primitives.xml",
  6794. "ref/netcore50/es/System.Net.Primitives.xml",
  6795. "ref/netcore50/fr/System.Net.Primitives.xml",
  6796. "ref/netcore50/it/System.Net.Primitives.xml",
  6797. "ref/netcore50/ja/System.Net.Primitives.xml",
  6798. "ref/netcore50/ko/System.Net.Primitives.xml",
  6799. "ref/netcore50/ru/System.Net.Primitives.xml",
  6800. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6801. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6802. "ref/netstandard1.0/System.Net.Primitives.dll",
  6803. "ref/netstandard1.0/System.Net.Primitives.xml",
  6804. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6805. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6806. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6807. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6808. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6809. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6810. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6811. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6812. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6813. "ref/netstandard1.1/System.Net.Primitives.dll",
  6814. "ref/netstandard1.1/System.Net.Primitives.xml",
  6815. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6816. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6817. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6818. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6819. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6820. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6821. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6822. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6823. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6824. "ref/netstandard1.3/System.Net.Primitives.dll",
  6825. "ref/netstandard1.3/System.Net.Primitives.xml",
  6826. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6827. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6828. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6829. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6830. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6831. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6832. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6833. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6834. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6835. "ref/portable-net45+win8+wp8+wpa81/_._",
  6836. "ref/win8/_._",
  6837. "ref/wp80/_._",
  6838. "ref/wpa81/_._",
  6839. "ref/xamarinios10/_._",
  6840. "ref/xamarinmac20/_._",
  6841. "ref/xamarintvos10/_._",
  6842. "ref/xamarinwatchos10/_._",
  6843. "system.net.primitives.4.3.0.nupkg.sha512",
  6844. "system.net.primitives.nuspec"
  6845. ]
  6846. },
  6847. "System.Net.Security/4.3.0": {
  6848. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6849. "type": "package",
  6850. "path": "system.net.security/4.3.0",
  6851. "files": [
  6852. ".nupkg.metadata",
  6853. ".signature.p7s",
  6854. "ThirdPartyNotices.txt",
  6855. "dotnet_library_license.txt",
  6856. "lib/MonoAndroid10/_._",
  6857. "lib/MonoTouch10/_._",
  6858. "lib/net46/System.Net.Security.dll",
  6859. "lib/xamarinios10/_._",
  6860. "lib/xamarinmac20/_._",
  6861. "lib/xamarintvos10/_._",
  6862. "lib/xamarinwatchos10/_._",
  6863. "ref/MonoAndroid10/_._",
  6864. "ref/MonoTouch10/_._",
  6865. "ref/net46/System.Net.Security.dll",
  6866. "ref/netstandard1.3/System.Net.Security.dll",
  6867. "ref/netstandard1.3/System.Net.Security.xml",
  6868. "ref/netstandard1.3/de/System.Net.Security.xml",
  6869. "ref/netstandard1.3/es/System.Net.Security.xml",
  6870. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6871. "ref/netstandard1.3/it/System.Net.Security.xml",
  6872. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6873. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6874. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6875. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6876. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6877. "ref/xamarinios10/_._",
  6878. "ref/xamarinmac20/_._",
  6879. "ref/xamarintvos10/_._",
  6880. "ref/xamarinwatchos10/_._",
  6881. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6882. "runtimes/win/lib/net46/System.Net.Security.dll",
  6883. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6884. "runtimes/win7/lib/netcore50/_._",
  6885. "system.net.security.4.3.0.nupkg.sha512",
  6886. "system.net.security.nuspec"
  6887. ]
  6888. },
  6889. "System.Net.Sockets/4.3.0": {
  6890. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6891. "type": "package",
  6892. "path": "system.net.sockets/4.3.0",
  6893. "files": [
  6894. ".nupkg.metadata",
  6895. ".signature.p7s",
  6896. "ThirdPartyNotices.txt",
  6897. "dotnet_library_license.txt",
  6898. "lib/MonoAndroid10/_._",
  6899. "lib/MonoTouch10/_._",
  6900. "lib/net46/System.Net.Sockets.dll",
  6901. "lib/xamarinios10/_._",
  6902. "lib/xamarinmac20/_._",
  6903. "lib/xamarintvos10/_._",
  6904. "lib/xamarinwatchos10/_._",
  6905. "ref/MonoAndroid10/_._",
  6906. "ref/MonoTouch10/_._",
  6907. "ref/net46/System.Net.Sockets.dll",
  6908. "ref/netstandard1.3/System.Net.Sockets.dll",
  6909. "ref/netstandard1.3/System.Net.Sockets.xml",
  6910. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6911. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6912. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6913. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6914. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6915. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6916. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6917. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6918. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6919. "ref/xamarinios10/_._",
  6920. "ref/xamarinmac20/_._",
  6921. "ref/xamarintvos10/_._",
  6922. "ref/xamarinwatchos10/_._",
  6923. "system.net.sockets.4.3.0.nupkg.sha512",
  6924. "system.net.sockets.nuspec"
  6925. ]
  6926. },
  6927. "System.ObjectModel/4.3.0": {
  6928. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6929. "type": "package",
  6930. "path": "system.objectmodel/4.3.0",
  6931. "files": [
  6932. ".nupkg.metadata",
  6933. ".signature.p7s",
  6934. "ThirdPartyNotices.txt",
  6935. "dotnet_library_license.txt",
  6936. "lib/MonoAndroid10/_._",
  6937. "lib/MonoTouch10/_._",
  6938. "lib/net45/_._",
  6939. "lib/netcore50/System.ObjectModel.dll",
  6940. "lib/netstandard1.3/System.ObjectModel.dll",
  6941. "lib/portable-net45+win8+wp8+wpa81/_._",
  6942. "lib/win8/_._",
  6943. "lib/wp80/_._",
  6944. "lib/wpa81/_._",
  6945. "lib/xamarinios10/_._",
  6946. "lib/xamarinmac20/_._",
  6947. "lib/xamarintvos10/_._",
  6948. "lib/xamarinwatchos10/_._",
  6949. "ref/MonoAndroid10/_._",
  6950. "ref/MonoTouch10/_._",
  6951. "ref/net45/_._",
  6952. "ref/netcore50/System.ObjectModel.dll",
  6953. "ref/netcore50/System.ObjectModel.xml",
  6954. "ref/netcore50/de/System.ObjectModel.xml",
  6955. "ref/netcore50/es/System.ObjectModel.xml",
  6956. "ref/netcore50/fr/System.ObjectModel.xml",
  6957. "ref/netcore50/it/System.ObjectModel.xml",
  6958. "ref/netcore50/ja/System.ObjectModel.xml",
  6959. "ref/netcore50/ko/System.ObjectModel.xml",
  6960. "ref/netcore50/ru/System.ObjectModel.xml",
  6961. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6962. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6963. "ref/netstandard1.0/System.ObjectModel.dll",
  6964. "ref/netstandard1.0/System.ObjectModel.xml",
  6965. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6966. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6967. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6968. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6969. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6970. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6971. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6972. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6973. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6974. "ref/netstandard1.3/System.ObjectModel.dll",
  6975. "ref/netstandard1.3/System.ObjectModel.xml",
  6976. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6977. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6978. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6979. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6980. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6981. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6982. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6983. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6984. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6985. "ref/portable-net45+win8+wp8+wpa81/_._",
  6986. "ref/win8/_._",
  6987. "ref/wp80/_._",
  6988. "ref/wpa81/_._",
  6989. "ref/xamarinios10/_._",
  6990. "ref/xamarinmac20/_._",
  6991. "ref/xamarintvos10/_._",
  6992. "ref/xamarinwatchos10/_._",
  6993. "system.objectmodel.4.3.0.nupkg.sha512",
  6994. "system.objectmodel.nuspec"
  6995. ]
  6996. },
  6997. "System.Reflection/4.3.0": {
  6998. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6999. "type": "package",
  7000. "path": "system.reflection/4.3.0",
  7001. "files": [
  7002. ".nupkg.metadata",
  7003. ".signature.p7s",
  7004. "ThirdPartyNotices.txt",
  7005. "dotnet_library_license.txt",
  7006. "lib/MonoAndroid10/_._",
  7007. "lib/MonoTouch10/_._",
  7008. "lib/net45/_._",
  7009. "lib/net462/System.Reflection.dll",
  7010. "lib/portable-net45+win8+wp8+wpa81/_._",
  7011. "lib/win8/_._",
  7012. "lib/wp80/_._",
  7013. "lib/wpa81/_._",
  7014. "lib/xamarinios10/_._",
  7015. "lib/xamarinmac20/_._",
  7016. "lib/xamarintvos10/_._",
  7017. "lib/xamarinwatchos10/_._",
  7018. "ref/MonoAndroid10/_._",
  7019. "ref/MonoTouch10/_._",
  7020. "ref/net45/_._",
  7021. "ref/net462/System.Reflection.dll",
  7022. "ref/netcore50/System.Reflection.dll",
  7023. "ref/netcore50/System.Reflection.xml",
  7024. "ref/netcore50/de/System.Reflection.xml",
  7025. "ref/netcore50/es/System.Reflection.xml",
  7026. "ref/netcore50/fr/System.Reflection.xml",
  7027. "ref/netcore50/it/System.Reflection.xml",
  7028. "ref/netcore50/ja/System.Reflection.xml",
  7029. "ref/netcore50/ko/System.Reflection.xml",
  7030. "ref/netcore50/ru/System.Reflection.xml",
  7031. "ref/netcore50/zh-hans/System.Reflection.xml",
  7032. "ref/netcore50/zh-hant/System.Reflection.xml",
  7033. "ref/netstandard1.0/System.Reflection.dll",
  7034. "ref/netstandard1.0/System.Reflection.xml",
  7035. "ref/netstandard1.0/de/System.Reflection.xml",
  7036. "ref/netstandard1.0/es/System.Reflection.xml",
  7037. "ref/netstandard1.0/fr/System.Reflection.xml",
  7038. "ref/netstandard1.0/it/System.Reflection.xml",
  7039. "ref/netstandard1.0/ja/System.Reflection.xml",
  7040. "ref/netstandard1.0/ko/System.Reflection.xml",
  7041. "ref/netstandard1.0/ru/System.Reflection.xml",
  7042. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7043. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7044. "ref/netstandard1.3/System.Reflection.dll",
  7045. "ref/netstandard1.3/System.Reflection.xml",
  7046. "ref/netstandard1.3/de/System.Reflection.xml",
  7047. "ref/netstandard1.3/es/System.Reflection.xml",
  7048. "ref/netstandard1.3/fr/System.Reflection.xml",
  7049. "ref/netstandard1.3/it/System.Reflection.xml",
  7050. "ref/netstandard1.3/ja/System.Reflection.xml",
  7051. "ref/netstandard1.3/ko/System.Reflection.xml",
  7052. "ref/netstandard1.3/ru/System.Reflection.xml",
  7053. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7054. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7055. "ref/netstandard1.5/System.Reflection.dll",
  7056. "ref/netstandard1.5/System.Reflection.xml",
  7057. "ref/netstandard1.5/de/System.Reflection.xml",
  7058. "ref/netstandard1.5/es/System.Reflection.xml",
  7059. "ref/netstandard1.5/fr/System.Reflection.xml",
  7060. "ref/netstandard1.5/it/System.Reflection.xml",
  7061. "ref/netstandard1.5/ja/System.Reflection.xml",
  7062. "ref/netstandard1.5/ko/System.Reflection.xml",
  7063. "ref/netstandard1.5/ru/System.Reflection.xml",
  7064. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7065. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7066. "ref/portable-net45+win8+wp8+wpa81/_._",
  7067. "ref/win8/_._",
  7068. "ref/wp80/_._",
  7069. "ref/wpa81/_._",
  7070. "ref/xamarinios10/_._",
  7071. "ref/xamarinmac20/_._",
  7072. "ref/xamarintvos10/_._",
  7073. "ref/xamarinwatchos10/_._",
  7074. "system.reflection.4.3.0.nupkg.sha512",
  7075. "system.reflection.nuspec"
  7076. ]
  7077. },
  7078. "System.Reflection.Emit/4.7.0": {
  7079. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7080. "type": "package",
  7081. "path": "system.reflection.emit/4.7.0",
  7082. "files": [
  7083. ".nupkg.metadata",
  7084. ".signature.p7s",
  7085. "LICENSE.TXT",
  7086. "THIRD-PARTY-NOTICES.TXT",
  7087. "lib/MonoAndroid10/_._",
  7088. "lib/MonoTouch10/_._",
  7089. "lib/net45/_._",
  7090. "lib/netcore50/System.Reflection.Emit.dll",
  7091. "lib/netcoreapp2.0/_._",
  7092. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7093. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7094. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7095. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7096. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7097. "lib/netstandard2.1/_._",
  7098. "lib/xamarinios10/_._",
  7099. "lib/xamarinmac20/_._",
  7100. "lib/xamarintvos10/_._",
  7101. "lib/xamarinwatchos10/_._",
  7102. "ref/MonoAndroid10/_._",
  7103. "ref/MonoTouch10/_._",
  7104. "ref/net45/_._",
  7105. "ref/netcoreapp2.0/_._",
  7106. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7107. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7108. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7109. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7110. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7111. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7112. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7113. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7114. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7115. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7116. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7117. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7118. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7119. "ref/netstandard2.1/_._",
  7120. "ref/xamarinios10/_._",
  7121. "ref/xamarinmac20/_._",
  7122. "ref/xamarintvos10/_._",
  7123. "ref/xamarinwatchos10/_._",
  7124. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7125. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7126. "system.reflection.emit.4.7.0.nupkg.sha512",
  7127. "system.reflection.emit.nuspec",
  7128. "useSharedDesignerContext.txt",
  7129. "version.txt"
  7130. ]
  7131. },
  7132. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7133. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7134. "type": "package",
  7135. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7136. "files": [
  7137. ".nupkg.metadata",
  7138. ".signature.p7s",
  7139. "ThirdPartyNotices.txt",
  7140. "dotnet_library_license.txt",
  7141. "lib/MonoAndroid10/_._",
  7142. "lib/MonoTouch10/_._",
  7143. "lib/net45/_._",
  7144. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7145. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7146. "lib/portable-net45+wp8/_._",
  7147. "lib/wp80/_._",
  7148. "lib/xamarinios10/_._",
  7149. "lib/xamarinmac20/_._",
  7150. "lib/xamarintvos10/_._",
  7151. "lib/xamarinwatchos10/_._",
  7152. "ref/MonoAndroid10/_._",
  7153. "ref/MonoTouch10/_._",
  7154. "ref/net45/_._",
  7155. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7156. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7157. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7158. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7159. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7160. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7161. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7162. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7163. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7164. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7165. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7166. "ref/portable-net45+wp8/_._",
  7167. "ref/wp80/_._",
  7168. "ref/xamarinios10/_._",
  7169. "ref/xamarinmac20/_._",
  7170. "ref/xamarintvos10/_._",
  7171. "ref/xamarinwatchos10/_._",
  7172. "runtimes/aot/lib/netcore50/_._",
  7173. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7174. "system.reflection.emit.ilgeneration.nuspec"
  7175. ]
  7176. },
  7177. "System.Reflection.Emit.Lightweight/4.3.0": {
  7178. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7179. "type": "package",
  7180. "path": "system.reflection.emit.lightweight/4.3.0",
  7181. "files": [
  7182. ".nupkg.metadata",
  7183. ".signature.p7s",
  7184. "ThirdPartyNotices.txt",
  7185. "dotnet_library_license.txt",
  7186. "lib/MonoAndroid10/_._",
  7187. "lib/MonoTouch10/_._",
  7188. "lib/net45/_._",
  7189. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7190. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7191. "lib/portable-net45+wp8/_._",
  7192. "lib/wp80/_._",
  7193. "lib/xamarinios10/_._",
  7194. "lib/xamarinmac20/_._",
  7195. "lib/xamarintvos10/_._",
  7196. "lib/xamarinwatchos10/_._",
  7197. "ref/MonoAndroid10/_._",
  7198. "ref/MonoTouch10/_._",
  7199. "ref/net45/_._",
  7200. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7201. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7202. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7203. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7204. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7205. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7206. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7207. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7208. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7209. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7210. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7211. "ref/portable-net45+wp8/_._",
  7212. "ref/wp80/_._",
  7213. "ref/xamarinios10/_._",
  7214. "ref/xamarinmac20/_._",
  7215. "ref/xamarintvos10/_._",
  7216. "ref/xamarinwatchos10/_._",
  7217. "runtimes/aot/lib/netcore50/_._",
  7218. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7219. "system.reflection.emit.lightweight.nuspec"
  7220. ]
  7221. },
  7222. "System.Reflection.Extensions/4.3.0": {
  7223. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7224. "type": "package",
  7225. "path": "system.reflection.extensions/4.3.0",
  7226. "files": [
  7227. ".nupkg.metadata",
  7228. ".signature.p7s",
  7229. "ThirdPartyNotices.txt",
  7230. "dotnet_library_license.txt",
  7231. "lib/MonoAndroid10/_._",
  7232. "lib/MonoTouch10/_._",
  7233. "lib/net45/_._",
  7234. "lib/portable-net45+win8+wp8+wpa81/_._",
  7235. "lib/win8/_._",
  7236. "lib/wp80/_._",
  7237. "lib/wpa81/_._",
  7238. "lib/xamarinios10/_._",
  7239. "lib/xamarinmac20/_._",
  7240. "lib/xamarintvos10/_._",
  7241. "lib/xamarinwatchos10/_._",
  7242. "ref/MonoAndroid10/_._",
  7243. "ref/MonoTouch10/_._",
  7244. "ref/net45/_._",
  7245. "ref/netcore50/System.Reflection.Extensions.dll",
  7246. "ref/netcore50/System.Reflection.Extensions.xml",
  7247. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7248. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7249. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7250. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7251. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7252. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7253. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7254. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7255. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7256. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7257. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7258. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7259. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7260. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7261. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7262. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7263. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7264. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7265. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7266. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7267. "ref/portable-net45+win8+wp8+wpa81/_._",
  7268. "ref/win8/_._",
  7269. "ref/wp80/_._",
  7270. "ref/wpa81/_._",
  7271. "ref/xamarinios10/_._",
  7272. "ref/xamarinmac20/_._",
  7273. "ref/xamarintvos10/_._",
  7274. "ref/xamarinwatchos10/_._",
  7275. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7276. "system.reflection.extensions.nuspec"
  7277. ]
  7278. },
  7279. "System.Reflection.Primitives/4.3.0": {
  7280. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7281. "type": "package",
  7282. "path": "system.reflection.primitives/4.3.0",
  7283. "files": [
  7284. ".nupkg.metadata",
  7285. ".signature.p7s",
  7286. "ThirdPartyNotices.txt",
  7287. "dotnet_library_license.txt",
  7288. "lib/MonoAndroid10/_._",
  7289. "lib/MonoTouch10/_._",
  7290. "lib/net45/_._",
  7291. "lib/portable-net45+win8+wp8+wpa81/_._",
  7292. "lib/win8/_._",
  7293. "lib/wp80/_._",
  7294. "lib/wpa81/_._",
  7295. "lib/xamarinios10/_._",
  7296. "lib/xamarinmac20/_._",
  7297. "lib/xamarintvos10/_._",
  7298. "lib/xamarinwatchos10/_._",
  7299. "ref/MonoAndroid10/_._",
  7300. "ref/MonoTouch10/_._",
  7301. "ref/net45/_._",
  7302. "ref/netcore50/System.Reflection.Primitives.dll",
  7303. "ref/netcore50/System.Reflection.Primitives.xml",
  7304. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7305. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7306. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7307. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7308. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7309. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7310. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7311. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7312. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7313. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7314. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7315. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7316. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7317. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7318. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7319. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7320. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7321. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7322. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7323. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7324. "ref/portable-net45+win8+wp8+wpa81/_._",
  7325. "ref/win8/_._",
  7326. "ref/wp80/_._",
  7327. "ref/wpa81/_._",
  7328. "ref/xamarinios10/_._",
  7329. "ref/xamarinmac20/_._",
  7330. "ref/xamarintvos10/_._",
  7331. "ref/xamarinwatchos10/_._",
  7332. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7333. "system.reflection.primitives.nuspec"
  7334. ]
  7335. },
  7336. "System.Reflection.TypeExtensions/4.3.0": {
  7337. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7338. "type": "package",
  7339. "path": "system.reflection.typeextensions/4.3.0",
  7340. "files": [
  7341. ".nupkg.metadata",
  7342. ".signature.p7s",
  7343. "ThirdPartyNotices.txt",
  7344. "dotnet_library_license.txt",
  7345. "lib/MonoAndroid10/_._",
  7346. "lib/MonoTouch10/_._",
  7347. "lib/net46/System.Reflection.TypeExtensions.dll",
  7348. "lib/net462/System.Reflection.TypeExtensions.dll",
  7349. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7350. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7351. "lib/xamarinios10/_._",
  7352. "lib/xamarinmac20/_._",
  7353. "lib/xamarintvos10/_._",
  7354. "lib/xamarinwatchos10/_._",
  7355. "ref/MonoAndroid10/_._",
  7356. "ref/MonoTouch10/_._",
  7357. "ref/net46/System.Reflection.TypeExtensions.dll",
  7358. "ref/net462/System.Reflection.TypeExtensions.dll",
  7359. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7360. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7361. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7362. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7363. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7364. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7365. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7366. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7367. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7368. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7369. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7370. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7371. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7372. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7373. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7374. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7375. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7376. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7377. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7378. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7379. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7380. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7381. "ref/xamarinios10/_._",
  7382. "ref/xamarinmac20/_._",
  7383. "ref/xamarintvos10/_._",
  7384. "ref/xamarinwatchos10/_._",
  7385. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7386. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7387. "system.reflection.typeextensions.nuspec"
  7388. ]
  7389. },
  7390. "System.Resources.ResourceManager/4.3.0": {
  7391. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7392. "type": "package",
  7393. "path": "system.resources.resourcemanager/4.3.0",
  7394. "files": [
  7395. ".nupkg.metadata",
  7396. ".signature.p7s",
  7397. "ThirdPartyNotices.txt",
  7398. "dotnet_library_license.txt",
  7399. "lib/MonoAndroid10/_._",
  7400. "lib/MonoTouch10/_._",
  7401. "lib/net45/_._",
  7402. "lib/portable-net45+win8+wp8+wpa81/_._",
  7403. "lib/win8/_._",
  7404. "lib/wp80/_._",
  7405. "lib/wpa81/_._",
  7406. "lib/xamarinios10/_._",
  7407. "lib/xamarinmac20/_._",
  7408. "lib/xamarintvos10/_._",
  7409. "lib/xamarinwatchos10/_._",
  7410. "ref/MonoAndroid10/_._",
  7411. "ref/MonoTouch10/_._",
  7412. "ref/net45/_._",
  7413. "ref/netcore50/System.Resources.ResourceManager.dll",
  7414. "ref/netcore50/System.Resources.ResourceManager.xml",
  7415. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7416. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7417. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7418. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7419. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7420. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7421. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7422. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7423. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7424. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7425. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7426. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7427. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7428. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7429. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7430. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7431. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7432. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7433. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7434. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7435. "ref/portable-net45+win8+wp8+wpa81/_._",
  7436. "ref/win8/_._",
  7437. "ref/wp80/_._",
  7438. "ref/wpa81/_._",
  7439. "ref/xamarinios10/_._",
  7440. "ref/xamarinmac20/_._",
  7441. "ref/xamarintvos10/_._",
  7442. "ref/xamarinwatchos10/_._",
  7443. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7444. "system.resources.resourcemanager.nuspec"
  7445. ]
  7446. },
  7447. "System.Runtime/4.3.0": {
  7448. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7449. "type": "package",
  7450. "path": "system.runtime/4.3.0",
  7451. "files": [
  7452. ".nupkg.metadata",
  7453. ".signature.p7s",
  7454. "ThirdPartyNotices.txt",
  7455. "dotnet_library_license.txt",
  7456. "lib/MonoAndroid10/_._",
  7457. "lib/MonoTouch10/_._",
  7458. "lib/net45/_._",
  7459. "lib/net462/System.Runtime.dll",
  7460. "lib/portable-net45+win8+wp80+wpa81/_._",
  7461. "lib/win8/_._",
  7462. "lib/wp80/_._",
  7463. "lib/wpa81/_._",
  7464. "lib/xamarinios10/_._",
  7465. "lib/xamarinmac20/_._",
  7466. "lib/xamarintvos10/_._",
  7467. "lib/xamarinwatchos10/_._",
  7468. "ref/MonoAndroid10/_._",
  7469. "ref/MonoTouch10/_._",
  7470. "ref/net45/_._",
  7471. "ref/net462/System.Runtime.dll",
  7472. "ref/netcore50/System.Runtime.dll",
  7473. "ref/netcore50/System.Runtime.xml",
  7474. "ref/netcore50/de/System.Runtime.xml",
  7475. "ref/netcore50/es/System.Runtime.xml",
  7476. "ref/netcore50/fr/System.Runtime.xml",
  7477. "ref/netcore50/it/System.Runtime.xml",
  7478. "ref/netcore50/ja/System.Runtime.xml",
  7479. "ref/netcore50/ko/System.Runtime.xml",
  7480. "ref/netcore50/ru/System.Runtime.xml",
  7481. "ref/netcore50/zh-hans/System.Runtime.xml",
  7482. "ref/netcore50/zh-hant/System.Runtime.xml",
  7483. "ref/netstandard1.0/System.Runtime.dll",
  7484. "ref/netstandard1.0/System.Runtime.xml",
  7485. "ref/netstandard1.0/de/System.Runtime.xml",
  7486. "ref/netstandard1.0/es/System.Runtime.xml",
  7487. "ref/netstandard1.0/fr/System.Runtime.xml",
  7488. "ref/netstandard1.0/it/System.Runtime.xml",
  7489. "ref/netstandard1.0/ja/System.Runtime.xml",
  7490. "ref/netstandard1.0/ko/System.Runtime.xml",
  7491. "ref/netstandard1.0/ru/System.Runtime.xml",
  7492. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7493. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7494. "ref/netstandard1.2/System.Runtime.dll",
  7495. "ref/netstandard1.2/System.Runtime.xml",
  7496. "ref/netstandard1.2/de/System.Runtime.xml",
  7497. "ref/netstandard1.2/es/System.Runtime.xml",
  7498. "ref/netstandard1.2/fr/System.Runtime.xml",
  7499. "ref/netstandard1.2/it/System.Runtime.xml",
  7500. "ref/netstandard1.2/ja/System.Runtime.xml",
  7501. "ref/netstandard1.2/ko/System.Runtime.xml",
  7502. "ref/netstandard1.2/ru/System.Runtime.xml",
  7503. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7504. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7505. "ref/netstandard1.3/System.Runtime.dll",
  7506. "ref/netstandard1.3/System.Runtime.xml",
  7507. "ref/netstandard1.3/de/System.Runtime.xml",
  7508. "ref/netstandard1.3/es/System.Runtime.xml",
  7509. "ref/netstandard1.3/fr/System.Runtime.xml",
  7510. "ref/netstandard1.3/it/System.Runtime.xml",
  7511. "ref/netstandard1.3/ja/System.Runtime.xml",
  7512. "ref/netstandard1.3/ko/System.Runtime.xml",
  7513. "ref/netstandard1.3/ru/System.Runtime.xml",
  7514. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7515. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7516. "ref/netstandard1.5/System.Runtime.dll",
  7517. "ref/netstandard1.5/System.Runtime.xml",
  7518. "ref/netstandard1.5/de/System.Runtime.xml",
  7519. "ref/netstandard1.5/es/System.Runtime.xml",
  7520. "ref/netstandard1.5/fr/System.Runtime.xml",
  7521. "ref/netstandard1.5/it/System.Runtime.xml",
  7522. "ref/netstandard1.5/ja/System.Runtime.xml",
  7523. "ref/netstandard1.5/ko/System.Runtime.xml",
  7524. "ref/netstandard1.5/ru/System.Runtime.xml",
  7525. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7526. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7527. "ref/portable-net45+win8+wp80+wpa81/_._",
  7528. "ref/win8/_._",
  7529. "ref/wp80/_._",
  7530. "ref/wpa81/_._",
  7531. "ref/xamarinios10/_._",
  7532. "ref/xamarinmac20/_._",
  7533. "ref/xamarintvos10/_._",
  7534. "ref/xamarinwatchos10/_._",
  7535. "system.runtime.4.3.0.nupkg.sha512",
  7536. "system.runtime.nuspec"
  7537. ]
  7538. },
  7539. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7540. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7541. "type": "package",
  7542. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7543. "files": [
  7544. ".nupkg.metadata",
  7545. ".signature.p7s",
  7546. "Icon.png",
  7547. "LICENSE.TXT",
  7548. "THIRD-PARTY-NOTICES.TXT",
  7549. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7550. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7551. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7552. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7553. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7554. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7555. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7556. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7557. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7558. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7559. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7560. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7561. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7562. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7563. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7564. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7565. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7566. "system.runtime.compilerservices.unsafe.nuspec",
  7567. "useSharedDesignerContext.txt",
  7568. "version.txt"
  7569. ]
  7570. },
  7571. "System.Runtime.Extensions/4.3.0": {
  7572. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7573. "type": "package",
  7574. "path": "system.runtime.extensions/4.3.0",
  7575. "files": [
  7576. ".nupkg.metadata",
  7577. ".signature.p7s",
  7578. "ThirdPartyNotices.txt",
  7579. "dotnet_library_license.txt",
  7580. "lib/MonoAndroid10/_._",
  7581. "lib/MonoTouch10/_._",
  7582. "lib/net45/_._",
  7583. "lib/net462/System.Runtime.Extensions.dll",
  7584. "lib/portable-net45+win8+wp8+wpa81/_._",
  7585. "lib/win8/_._",
  7586. "lib/wp80/_._",
  7587. "lib/wpa81/_._",
  7588. "lib/xamarinios10/_._",
  7589. "lib/xamarinmac20/_._",
  7590. "lib/xamarintvos10/_._",
  7591. "lib/xamarinwatchos10/_._",
  7592. "ref/MonoAndroid10/_._",
  7593. "ref/MonoTouch10/_._",
  7594. "ref/net45/_._",
  7595. "ref/net462/System.Runtime.Extensions.dll",
  7596. "ref/netcore50/System.Runtime.Extensions.dll",
  7597. "ref/netcore50/System.Runtime.Extensions.xml",
  7598. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7599. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7600. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7601. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7602. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7603. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7604. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7605. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7606. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7607. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7608. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7609. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7610. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7611. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7612. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7613. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7614. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7615. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7616. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7617. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7618. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7619. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7620. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7621. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7622. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7623. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7624. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7625. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7626. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7627. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7628. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7629. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7630. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7631. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7632. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7633. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7634. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7635. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7636. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7637. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7638. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7639. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7640. "ref/portable-net45+win8+wp8+wpa81/_._",
  7641. "ref/win8/_._",
  7642. "ref/wp80/_._",
  7643. "ref/wpa81/_._",
  7644. "ref/xamarinios10/_._",
  7645. "ref/xamarinmac20/_._",
  7646. "ref/xamarintvos10/_._",
  7647. "ref/xamarinwatchos10/_._",
  7648. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7649. "system.runtime.extensions.nuspec"
  7650. ]
  7651. },
  7652. "System.Runtime.Handles/4.3.0": {
  7653. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7654. "type": "package",
  7655. "path": "system.runtime.handles/4.3.0",
  7656. "files": [
  7657. ".nupkg.metadata",
  7658. ".signature.p7s",
  7659. "ThirdPartyNotices.txt",
  7660. "dotnet_library_license.txt",
  7661. "lib/MonoAndroid10/_._",
  7662. "lib/MonoTouch10/_._",
  7663. "lib/net46/_._",
  7664. "lib/xamarinios10/_._",
  7665. "lib/xamarinmac20/_._",
  7666. "lib/xamarintvos10/_._",
  7667. "lib/xamarinwatchos10/_._",
  7668. "ref/MonoAndroid10/_._",
  7669. "ref/MonoTouch10/_._",
  7670. "ref/net46/_._",
  7671. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7672. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7673. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7674. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7675. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7676. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7677. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7678. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7679. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7680. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7681. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7682. "ref/xamarinios10/_._",
  7683. "ref/xamarinmac20/_._",
  7684. "ref/xamarintvos10/_._",
  7685. "ref/xamarinwatchos10/_._",
  7686. "system.runtime.handles.4.3.0.nupkg.sha512",
  7687. "system.runtime.handles.nuspec"
  7688. ]
  7689. },
  7690. "System.Runtime.InteropServices/4.3.0": {
  7691. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7692. "type": "package",
  7693. "path": "system.runtime.interopservices/4.3.0",
  7694. "files": [
  7695. ".nupkg.metadata",
  7696. ".signature.p7s",
  7697. "ThirdPartyNotices.txt",
  7698. "dotnet_library_license.txt",
  7699. "lib/MonoAndroid10/_._",
  7700. "lib/MonoTouch10/_._",
  7701. "lib/net45/_._",
  7702. "lib/net462/System.Runtime.InteropServices.dll",
  7703. "lib/net463/System.Runtime.InteropServices.dll",
  7704. "lib/portable-net45+win8+wpa81/_._",
  7705. "lib/win8/_._",
  7706. "lib/wpa81/_._",
  7707. "lib/xamarinios10/_._",
  7708. "lib/xamarinmac20/_._",
  7709. "lib/xamarintvos10/_._",
  7710. "lib/xamarinwatchos10/_._",
  7711. "ref/MonoAndroid10/_._",
  7712. "ref/MonoTouch10/_._",
  7713. "ref/net45/_._",
  7714. "ref/net462/System.Runtime.InteropServices.dll",
  7715. "ref/net463/System.Runtime.InteropServices.dll",
  7716. "ref/netcore50/System.Runtime.InteropServices.dll",
  7717. "ref/netcore50/System.Runtime.InteropServices.xml",
  7718. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7719. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7720. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7721. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7722. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7723. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7724. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7725. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7726. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7727. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7728. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7729. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7730. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7731. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7732. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7733. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7734. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7735. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7736. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7737. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7738. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7739. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7740. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7741. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7742. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7743. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7744. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7745. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7746. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7747. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7748. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7749. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7750. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7751. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7752. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7753. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7754. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7755. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7756. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7757. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7758. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7759. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7760. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7761. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7762. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7763. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7764. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7765. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7766. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7767. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7768. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7769. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7770. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7771. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7772. "ref/portable-net45+win8+wpa81/_._",
  7773. "ref/win8/_._",
  7774. "ref/wpa81/_._",
  7775. "ref/xamarinios10/_._",
  7776. "ref/xamarinmac20/_._",
  7777. "ref/xamarintvos10/_._",
  7778. "ref/xamarinwatchos10/_._",
  7779. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7780. "system.runtime.interopservices.nuspec"
  7781. ]
  7782. },
  7783. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7784. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7785. "type": "package",
  7786. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7787. "files": [
  7788. ".nupkg.metadata",
  7789. ".signature.p7s",
  7790. "ThirdPartyNotices.txt",
  7791. "dotnet_library_license.txt",
  7792. "lib/MonoAndroid10/_._",
  7793. "lib/MonoTouch10/_._",
  7794. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7795. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7796. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7797. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7798. "lib/xamarinios10/_._",
  7799. "lib/xamarinmac20/_._",
  7800. "lib/xamarintvos10/_._",
  7801. "lib/xamarinwatchos10/_._",
  7802. "ref/MonoAndroid10/_._",
  7803. "ref/MonoTouch10/_._",
  7804. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7805. "ref/xamarinios10/_._",
  7806. "ref/xamarinmac20/_._",
  7807. "ref/xamarintvos10/_._",
  7808. "ref/xamarinwatchos10/_._",
  7809. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7810. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7811. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7812. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7813. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7814. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7815. "system.runtime.interopservices.runtimeinformation.nuspec"
  7816. ]
  7817. },
  7818. "System.Runtime.Numerics/4.3.0": {
  7819. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7820. "type": "package",
  7821. "path": "system.runtime.numerics/4.3.0",
  7822. "files": [
  7823. ".nupkg.metadata",
  7824. ".signature.p7s",
  7825. "ThirdPartyNotices.txt",
  7826. "dotnet_library_license.txt",
  7827. "lib/MonoAndroid10/_._",
  7828. "lib/MonoTouch10/_._",
  7829. "lib/net45/_._",
  7830. "lib/netcore50/System.Runtime.Numerics.dll",
  7831. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7832. "lib/portable-net45+win8+wpa81/_._",
  7833. "lib/win8/_._",
  7834. "lib/wpa81/_._",
  7835. "lib/xamarinios10/_._",
  7836. "lib/xamarinmac20/_._",
  7837. "lib/xamarintvos10/_._",
  7838. "lib/xamarinwatchos10/_._",
  7839. "ref/MonoAndroid10/_._",
  7840. "ref/MonoTouch10/_._",
  7841. "ref/net45/_._",
  7842. "ref/netcore50/System.Runtime.Numerics.dll",
  7843. "ref/netcore50/System.Runtime.Numerics.xml",
  7844. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7845. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7846. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7847. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7848. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7849. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7850. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7851. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7852. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7853. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7854. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7855. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7856. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7857. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7858. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7859. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7860. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7861. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7862. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7863. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7864. "ref/portable-net45+win8+wpa81/_._",
  7865. "ref/win8/_._",
  7866. "ref/wpa81/_._",
  7867. "ref/xamarinios10/_._",
  7868. "ref/xamarinmac20/_._",
  7869. "ref/xamarintvos10/_._",
  7870. "ref/xamarinwatchos10/_._",
  7871. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7872. "system.runtime.numerics.nuspec"
  7873. ]
  7874. },
  7875. "System.Security.AccessControl/4.7.0": {
  7876. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7877. "type": "package",
  7878. "path": "system.security.accesscontrol/4.7.0",
  7879. "files": [
  7880. ".nupkg.metadata",
  7881. ".signature.p7s",
  7882. "LICENSE.TXT",
  7883. "THIRD-PARTY-NOTICES.TXT",
  7884. "lib/net46/System.Security.AccessControl.dll",
  7885. "lib/net461/System.Security.AccessControl.dll",
  7886. "lib/net461/System.Security.AccessControl.xml",
  7887. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7888. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7889. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7890. "lib/uap10.0.16299/_._",
  7891. "ref/net46/System.Security.AccessControl.dll",
  7892. "ref/net461/System.Security.AccessControl.dll",
  7893. "ref/net461/System.Security.AccessControl.xml",
  7894. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7895. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7896. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7897. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7898. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7899. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7900. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7901. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7902. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7903. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7904. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7905. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7906. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7907. "ref/uap10.0.16299/_._",
  7908. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7909. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7910. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7911. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7912. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7913. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7914. "runtimes/win/lib/uap10.0.16299/_._",
  7915. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7916. "system.security.accesscontrol.nuspec",
  7917. "useSharedDesignerContext.txt",
  7918. "version.txt"
  7919. ]
  7920. },
  7921. "System.Security.Claims/4.3.0": {
  7922. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7923. "type": "package",
  7924. "path": "system.security.claims/4.3.0",
  7925. "files": [
  7926. ".nupkg.metadata",
  7927. ".signature.p7s",
  7928. "ThirdPartyNotices.txt",
  7929. "dotnet_library_license.txt",
  7930. "lib/MonoAndroid10/_._",
  7931. "lib/MonoTouch10/_._",
  7932. "lib/net46/System.Security.Claims.dll",
  7933. "lib/netstandard1.3/System.Security.Claims.dll",
  7934. "lib/xamarinios10/_._",
  7935. "lib/xamarinmac20/_._",
  7936. "lib/xamarintvos10/_._",
  7937. "lib/xamarinwatchos10/_._",
  7938. "ref/MonoAndroid10/_._",
  7939. "ref/MonoTouch10/_._",
  7940. "ref/net46/System.Security.Claims.dll",
  7941. "ref/netstandard1.3/System.Security.Claims.dll",
  7942. "ref/netstandard1.3/System.Security.Claims.xml",
  7943. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7944. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7945. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7946. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7947. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7948. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7949. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7950. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7951. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7952. "ref/xamarinios10/_._",
  7953. "ref/xamarinmac20/_._",
  7954. "ref/xamarintvos10/_._",
  7955. "ref/xamarinwatchos10/_._",
  7956. "system.security.claims.4.3.0.nupkg.sha512",
  7957. "system.security.claims.nuspec"
  7958. ]
  7959. },
  7960. "System.Security.Cryptography.Algorithms/4.3.0": {
  7961. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7962. "type": "package",
  7963. "path": "system.security.cryptography.algorithms/4.3.0",
  7964. "files": [
  7965. ".nupkg.metadata",
  7966. ".signature.p7s",
  7967. "ThirdPartyNotices.txt",
  7968. "dotnet_library_license.txt",
  7969. "lib/MonoAndroid10/_._",
  7970. "lib/MonoTouch10/_._",
  7971. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7972. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7973. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7974. "lib/xamarinios10/_._",
  7975. "lib/xamarinmac20/_._",
  7976. "lib/xamarintvos10/_._",
  7977. "lib/xamarinwatchos10/_._",
  7978. "ref/MonoAndroid10/_._",
  7979. "ref/MonoTouch10/_._",
  7980. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7981. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7982. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7983. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7984. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7985. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7986. "ref/xamarinios10/_._",
  7987. "ref/xamarinmac20/_._",
  7988. "ref/xamarintvos10/_._",
  7989. "ref/xamarinwatchos10/_._",
  7990. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7991. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7992. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7993. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7994. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7995. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7996. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7997. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7998. "system.security.cryptography.algorithms.nuspec"
  7999. ]
  8000. },
  8001. "System.Security.Cryptography.Cng/4.3.0": {
  8002. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8003. "type": "package",
  8004. "path": "system.security.cryptography.cng/4.3.0",
  8005. "files": [
  8006. ".nupkg.metadata",
  8007. ".signature.p7s",
  8008. "ThirdPartyNotices.txt",
  8009. "dotnet_library_license.txt",
  8010. "lib/net46/System.Security.Cryptography.Cng.dll",
  8011. "lib/net461/System.Security.Cryptography.Cng.dll",
  8012. "lib/net463/System.Security.Cryptography.Cng.dll",
  8013. "ref/net46/System.Security.Cryptography.Cng.dll",
  8014. "ref/net461/System.Security.Cryptography.Cng.dll",
  8015. "ref/net463/System.Security.Cryptography.Cng.dll",
  8016. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8017. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8018. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8019. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8020. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8021. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8022. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8023. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8024. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8025. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8026. "system.security.cryptography.cng.nuspec"
  8027. ]
  8028. },
  8029. "System.Security.Cryptography.Csp/4.3.0": {
  8030. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8031. "type": "package",
  8032. "path": "system.security.cryptography.csp/4.3.0",
  8033. "files": [
  8034. ".nupkg.metadata",
  8035. ".signature.p7s",
  8036. "ThirdPartyNotices.txt",
  8037. "dotnet_library_license.txt",
  8038. "lib/MonoAndroid10/_._",
  8039. "lib/MonoTouch10/_._",
  8040. "lib/net46/System.Security.Cryptography.Csp.dll",
  8041. "lib/xamarinios10/_._",
  8042. "lib/xamarinmac20/_._",
  8043. "lib/xamarintvos10/_._",
  8044. "lib/xamarinwatchos10/_._",
  8045. "ref/MonoAndroid10/_._",
  8046. "ref/MonoTouch10/_._",
  8047. "ref/net46/System.Security.Cryptography.Csp.dll",
  8048. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8049. "ref/xamarinios10/_._",
  8050. "ref/xamarinmac20/_._",
  8051. "ref/xamarintvos10/_._",
  8052. "ref/xamarinwatchos10/_._",
  8053. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8054. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8055. "runtimes/win/lib/netcore50/_._",
  8056. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8057. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8058. "system.security.cryptography.csp.nuspec"
  8059. ]
  8060. },
  8061. "System.Security.Cryptography.Encoding/4.3.0": {
  8062. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8063. "type": "package",
  8064. "path": "system.security.cryptography.encoding/4.3.0",
  8065. "files": [
  8066. ".nupkg.metadata",
  8067. ".signature.p7s",
  8068. "ThirdPartyNotices.txt",
  8069. "dotnet_library_license.txt",
  8070. "lib/MonoAndroid10/_._",
  8071. "lib/MonoTouch10/_._",
  8072. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8073. "lib/xamarinios10/_._",
  8074. "lib/xamarinmac20/_._",
  8075. "lib/xamarintvos10/_._",
  8076. "lib/xamarinwatchos10/_._",
  8077. "ref/MonoAndroid10/_._",
  8078. "ref/MonoTouch10/_._",
  8079. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8080. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8081. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8082. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8083. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8084. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8085. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8086. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8087. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8088. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8089. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8090. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8091. "ref/xamarinios10/_._",
  8092. "ref/xamarinmac20/_._",
  8093. "ref/xamarintvos10/_._",
  8094. "ref/xamarinwatchos10/_._",
  8095. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8096. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8097. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8098. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8099. "system.security.cryptography.encoding.nuspec"
  8100. ]
  8101. },
  8102. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8103. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8104. "type": "package",
  8105. "path": "system.security.cryptography.openssl/4.3.0",
  8106. "files": [
  8107. ".nupkg.metadata",
  8108. ".signature.p7s",
  8109. "ThirdPartyNotices.txt",
  8110. "dotnet_library_license.txt",
  8111. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8112. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8113. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8114. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8115. "system.security.cryptography.openssl.nuspec"
  8116. ]
  8117. },
  8118. "System.Security.Cryptography.Primitives/4.3.0": {
  8119. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8120. "type": "package",
  8121. "path": "system.security.cryptography.primitives/4.3.0",
  8122. "files": [
  8123. ".nupkg.metadata",
  8124. ".signature.p7s",
  8125. "ThirdPartyNotices.txt",
  8126. "dotnet_library_license.txt",
  8127. "lib/MonoAndroid10/_._",
  8128. "lib/MonoTouch10/_._",
  8129. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8130. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8131. "lib/xamarinios10/_._",
  8132. "lib/xamarinmac20/_._",
  8133. "lib/xamarintvos10/_._",
  8134. "lib/xamarinwatchos10/_._",
  8135. "ref/MonoAndroid10/_._",
  8136. "ref/MonoTouch10/_._",
  8137. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8138. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8139. "ref/xamarinios10/_._",
  8140. "ref/xamarinmac20/_._",
  8141. "ref/xamarintvos10/_._",
  8142. "ref/xamarinwatchos10/_._",
  8143. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8144. "system.security.cryptography.primitives.nuspec"
  8145. ]
  8146. },
  8147. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8148. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8149. "type": "package",
  8150. "path": "system.security.cryptography.protecteddata/4.7.0",
  8151. "files": [
  8152. ".nupkg.metadata",
  8153. ".signature.p7s",
  8154. "LICENSE.TXT",
  8155. "THIRD-PARTY-NOTICES.TXT",
  8156. "lib/MonoAndroid10/_._",
  8157. "lib/MonoTouch10/_._",
  8158. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8159. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8160. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8161. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8162. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8163. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8164. "lib/xamarinios10/_._",
  8165. "lib/xamarinmac20/_._",
  8166. "lib/xamarintvos10/_._",
  8167. "lib/xamarinwatchos10/_._",
  8168. "ref/MonoAndroid10/_._",
  8169. "ref/MonoTouch10/_._",
  8170. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8171. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8172. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8173. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8174. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8175. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8176. "ref/xamarinios10/_._",
  8177. "ref/xamarinmac20/_._",
  8178. "ref/xamarintvos10/_._",
  8179. "ref/xamarinwatchos10/_._",
  8180. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8181. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8182. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8183. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8184. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8185. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8186. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8187. "system.security.cryptography.protecteddata.nuspec",
  8188. "useSharedDesignerContext.txt",
  8189. "version.txt"
  8190. ]
  8191. },
  8192. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8193. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8194. "type": "package",
  8195. "path": "system.security.cryptography.x509certificates/4.3.0",
  8196. "files": [
  8197. ".nupkg.metadata",
  8198. ".signature.p7s",
  8199. "ThirdPartyNotices.txt",
  8200. "dotnet_library_license.txt",
  8201. "lib/MonoAndroid10/_._",
  8202. "lib/MonoTouch10/_._",
  8203. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8204. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8205. "lib/xamarinios10/_._",
  8206. "lib/xamarinmac20/_._",
  8207. "lib/xamarintvos10/_._",
  8208. "lib/xamarinwatchos10/_._",
  8209. "ref/MonoAndroid10/_._",
  8210. "ref/MonoTouch10/_._",
  8211. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8212. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8213. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8214. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8215. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8216. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8217. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8218. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8219. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8220. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8221. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8222. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8223. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8224. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8225. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8226. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8227. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8228. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8229. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8230. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8231. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8232. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8233. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8234. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8235. "ref/xamarinios10/_._",
  8236. "ref/xamarinmac20/_._",
  8237. "ref/xamarintvos10/_._",
  8238. "ref/xamarinwatchos10/_._",
  8239. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8240. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8241. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8242. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8243. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8244. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8245. "system.security.cryptography.x509certificates.nuspec"
  8246. ]
  8247. },
  8248. "System.Security.Permissions/4.7.0": {
  8249. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8250. "type": "package",
  8251. "path": "system.security.permissions/4.7.0",
  8252. "files": [
  8253. ".nupkg.metadata",
  8254. ".signature.p7s",
  8255. "LICENSE.TXT",
  8256. "THIRD-PARTY-NOTICES.TXT",
  8257. "lib/net461/System.Security.Permissions.dll",
  8258. "lib/net461/System.Security.Permissions.xml",
  8259. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8260. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8261. "lib/netstandard2.0/System.Security.Permissions.dll",
  8262. "lib/netstandard2.0/System.Security.Permissions.xml",
  8263. "ref/net461/System.Security.Permissions.dll",
  8264. "ref/net461/System.Security.Permissions.xml",
  8265. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8266. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8267. "ref/netstandard2.0/System.Security.Permissions.dll",
  8268. "ref/netstandard2.0/System.Security.Permissions.xml",
  8269. "system.security.permissions.4.7.0.nupkg.sha512",
  8270. "system.security.permissions.nuspec",
  8271. "useSharedDesignerContext.txt",
  8272. "version.txt"
  8273. ]
  8274. },
  8275. "System.Security.Principal/4.3.0": {
  8276. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8277. "type": "package",
  8278. "path": "system.security.principal/4.3.0",
  8279. "files": [
  8280. ".nupkg.metadata",
  8281. ".signature.p7s",
  8282. "ThirdPartyNotices.txt",
  8283. "dotnet_library_license.txt",
  8284. "lib/MonoAndroid10/_._",
  8285. "lib/MonoTouch10/_._",
  8286. "lib/net45/_._",
  8287. "lib/netcore50/System.Security.Principal.dll",
  8288. "lib/netstandard1.0/System.Security.Principal.dll",
  8289. "lib/portable-net45+win8+wp8+wpa81/_._",
  8290. "lib/win8/_._",
  8291. "lib/wp80/_._",
  8292. "lib/wpa81/_._",
  8293. "lib/xamarinios10/_._",
  8294. "lib/xamarinmac20/_._",
  8295. "lib/xamarintvos10/_._",
  8296. "lib/xamarinwatchos10/_._",
  8297. "ref/MonoAndroid10/_._",
  8298. "ref/MonoTouch10/_._",
  8299. "ref/net45/_._",
  8300. "ref/netcore50/System.Security.Principal.dll",
  8301. "ref/netcore50/System.Security.Principal.xml",
  8302. "ref/netcore50/de/System.Security.Principal.xml",
  8303. "ref/netcore50/es/System.Security.Principal.xml",
  8304. "ref/netcore50/fr/System.Security.Principal.xml",
  8305. "ref/netcore50/it/System.Security.Principal.xml",
  8306. "ref/netcore50/ja/System.Security.Principal.xml",
  8307. "ref/netcore50/ko/System.Security.Principal.xml",
  8308. "ref/netcore50/ru/System.Security.Principal.xml",
  8309. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8310. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8311. "ref/netstandard1.0/System.Security.Principal.dll",
  8312. "ref/netstandard1.0/System.Security.Principal.xml",
  8313. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8314. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8315. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8316. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8317. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8318. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8319. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8320. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8321. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8322. "ref/portable-net45+win8+wp8+wpa81/_._",
  8323. "ref/win8/_._",
  8324. "ref/wp80/_._",
  8325. "ref/wpa81/_._",
  8326. "ref/xamarinios10/_._",
  8327. "ref/xamarinmac20/_._",
  8328. "ref/xamarintvos10/_._",
  8329. "ref/xamarinwatchos10/_._",
  8330. "system.security.principal.4.3.0.nupkg.sha512",
  8331. "system.security.principal.nuspec"
  8332. ]
  8333. },
  8334. "System.Security.Principal.Windows/4.7.0": {
  8335. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8336. "type": "package",
  8337. "path": "system.security.principal.windows/4.7.0",
  8338. "files": [
  8339. ".nupkg.metadata",
  8340. ".signature.p7s",
  8341. "LICENSE.TXT",
  8342. "THIRD-PARTY-NOTICES.TXT",
  8343. "lib/net46/System.Security.Principal.Windows.dll",
  8344. "lib/net461/System.Security.Principal.Windows.dll",
  8345. "lib/net461/System.Security.Principal.Windows.xml",
  8346. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8347. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8348. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8349. "lib/uap10.0.16299/_._",
  8350. "ref/net46/System.Security.Principal.Windows.dll",
  8351. "ref/net461/System.Security.Principal.Windows.dll",
  8352. "ref/net461/System.Security.Principal.Windows.xml",
  8353. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8354. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8355. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8356. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8357. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8358. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8359. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8360. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8361. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8362. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8363. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8364. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8365. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8366. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8367. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8368. "ref/uap10.0.16299/_._",
  8369. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8370. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8371. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8372. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8373. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8374. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8375. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8376. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8377. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8378. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8379. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8380. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8381. "runtimes/win/lib/uap10.0.16299/_._",
  8382. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8383. "system.security.principal.windows.nuspec",
  8384. "useSharedDesignerContext.txt",
  8385. "version.txt"
  8386. ]
  8387. },
  8388. "System.Text.Encoding/4.3.0": {
  8389. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8390. "type": "package",
  8391. "path": "system.text.encoding/4.3.0",
  8392. "files": [
  8393. ".nupkg.metadata",
  8394. ".signature.p7s",
  8395. "ThirdPartyNotices.txt",
  8396. "dotnet_library_license.txt",
  8397. "lib/MonoAndroid10/_._",
  8398. "lib/MonoTouch10/_._",
  8399. "lib/net45/_._",
  8400. "lib/portable-net45+win8+wp8+wpa81/_._",
  8401. "lib/win8/_._",
  8402. "lib/wp80/_._",
  8403. "lib/wpa81/_._",
  8404. "lib/xamarinios10/_._",
  8405. "lib/xamarinmac20/_._",
  8406. "lib/xamarintvos10/_._",
  8407. "lib/xamarinwatchos10/_._",
  8408. "ref/MonoAndroid10/_._",
  8409. "ref/MonoTouch10/_._",
  8410. "ref/net45/_._",
  8411. "ref/netcore50/System.Text.Encoding.dll",
  8412. "ref/netcore50/System.Text.Encoding.xml",
  8413. "ref/netcore50/de/System.Text.Encoding.xml",
  8414. "ref/netcore50/es/System.Text.Encoding.xml",
  8415. "ref/netcore50/fr/System.Text.Encoding.xml",
  8416. "ref/netcore50/it/System.Text.Encoding.xml",
  8417. "ref/netcore50/ja/System.Text.Encoding.xml",
  8418. "ref/netcore50/ko/System.Text.Encoding.xml",
  8419. "ref/netcore50/ru/System.Text.Encoding.xml",
  8420. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8421. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8422. "ref/netstandard1.0/System.Text.Encoding.dll",
  8423. "ref/netstandard1.0/System.Text.Encoding.xml",
  8424. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8425. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8426. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8427. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8428. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8429. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8430. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8431. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8432. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8433. "ref/netstandard1.3/System.Text.Encoding.dll",
  8434. "ref/netstandard1.3/System.Text.Encoding.xml",
  8435. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8436. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8437. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8438. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8439. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8440. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8441. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8442. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8443. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8444. "ref/portable-net45+win8+wp8+wpa81/_._",
  8445. "ref/win8/_._",
  8446. "ref/wp80/_._",
  8447. "ref/wpa81/_._",
  8448. "ref/xamarinios10/_._",
  8449. "ref/xamarinmac20/_._",
  8450. "ref/xamarintvos10/_._",
  8451. "ref/xamarinwatchos10/_._",
  8452. "system.text.encoding.4.3.0.nupkg.sha512",
  8453. "system.text.encoding.nuspec"
  8454. ]
  8455. },
  8456. "System.Text.Encoding.CodePages/5.0.0": {
  8457. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8458. "type": "package",
  8459. "path": "system.text.encoding.codepages/5.0.0",
  8460. "files": [
  8461. ".nupkg.metadata",
  8462. ".signature.p7s",
  8463. "Icon.png",
  8464. "LICENSE.TXT",
  8465. "THIRD-PARTY-NOTICES.TXT",
  8466. "lib/MonoAndroid10/_._",
  8467. "lib/MonoTouch10/_._",
  8468. "lib/net46/System.Text.Encoding.CodePages.dll",
  8469. "lib/net461/System.Text.Encoding.CodePages.dll",
  8470. "lib/net461/System.Text.Encoding.CodePages.xml",
  8471. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8472. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8473. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8474. "lib/xamarinios10/_._",
  8475. "lib/xamarinmac20/_._",
  8476. "lib/xamarintvos10/_._",
  8477. "lib/xamarinwatchos10/_._",
  8478. "ref/MonoAndroid10/_._",
  8479. "ref/MonoTouch10/_._",
  8480. "ref/xamarinios10/_._",
  8481. "ref/xamarinmac20/_._",
  8482. "ref/xamarintvos10/_._",
  8483. "ref/xamarinwatchos10/_._",
  8484. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8485. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8486. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8487. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8488. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8489. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8490. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8491. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8492. "system.text.encoding.codepages.nuspec",
  8493. "useSharedDesignerContext.txt",
  8494. "version.txt"
  8495. ]
  8496. },
  8497. "System.Text.Encoding.Extensions/4.3.0": {
  8498. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8499. "type": "package",
  8500. "path": "system.text.encoding.extensions/4.3.0",
  8501. "files": [
  8502. ".nupkg.metadata",
  8503. ".signature.p7s",
  8504. "ThirdPartyNotices.txt",
  8505. "dotnet_library_license.txt",
  8506. "lib/MonoAndroid10/_._",
  8507. "lib/MonoTouch10/_._",
  8508. "lib/net45/_._",
  8509. "lib/portable-net45+win8+wp8+wpa81/_._",
  8510. "lib/win8/_._",
  8511. "lib/wp80/_._",
  8512. "lib/wpa81/_._",
  8513. "lib/xamarinios10/_._",
  8514. "lib/xamarinmac20/_._",
  8515. "lib/xamarintvos10/_._",
  8516. "lib/xamarinwatchos10/_._",
  8517. "ref/MonoAndroid10/_._",
  8518. "ref/MonoTouch10/_._",
  8519. "ref/net45/_._",
  8520. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8521. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8522. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8523. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8524. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8525. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8526. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8527. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8528. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8529. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8530. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8531. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8532. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8533. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8534. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8535. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8536. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8537. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8538. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8539. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8540. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8541. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8542. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8543. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8544. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8545. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8546. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8547. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8548. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8549. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8550. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8551. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8552. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8553. "ref/portable-net45+win8+wp8+wpa81/_._",
  8554. "ref/win8/_._",
  8555. "ref/wp80/_._",
  8556. "ref/wpa81/_._",
  8557. "ref/xamarinios10/_._",
  8558. "ref/xamarinmac20/_._",
  8559. "ref/xamarintvos10/_._",
  8560. "ref/xamarinwatchos10/_._",
  8561. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8562. "system.text.encoding.extensions.nuspec"
  8563. ]
  8564. },
  8565. "System.Text.Encodings.Web/4.5.0": {
  8566. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8567. "type": "package",
  8568. "path": "system.text.encodings.web/4.5.0",
  8569. "files": [
  8570. ".nupkg.metadata",
  8571. ".signature.p7s",
  8572. "LICENSE.TXT",
  8573. "THIRD-PARTY-NOTICES.TXT",
  8574. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8575. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8576. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8577. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8578. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8579. "system.text.encodings.web.nuspec",
  8580. "useSharedDesignerContext.txt",
  8581. "version.txt"
  8582. ]
  8583. },
  8584. "System.Text.RegularExpressions/4.3.0": {
  8585. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8586. "type": "package",
  8587. "path": "system.text.regularexpressions/4.3.0",
  8588. "files": [
  8589. ".nupkg.metadata",
  8590. ".signature.p7s",
  8591. "ThirdPartyNotices.txt",
  8592. "dotnet_library_license.txt",
  8593. "lib/MonoAndroid10/_._",
  8594. "lib/MonoTouch10/_._",
  8595. "lib/net45/_._",
  8596. "lib/net463/System.Text.RegularExpressions.dll",
  8597. "lib/netcore50/System.Text.RegularExpressions.dll",
  8598. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8599. "lib/portable-net45+win8+wp8+wpa81/_._",
  8600. "lib/win8/_._",
  8601. "lib/wp80/_._",
  8602. "lib/wpa81/_._",
  8603. "lib/xamarinios10/_._",
  8604. "lib/xamarinmac20/_._",
  8605. "lib/xamarintvos10/_._",
  8606. "lib/xamarinwatchos10/_._",
  8607. "ref/MonoAndroid10/_._",
  8608. "ref/MonoTouch10/_._",
  8609. "ref/net45/_._",
  8610. "ref/net463/System.Text.RegularExpressions.dll",
  8611. "ref/netcore50/System.Text.RegularExpressions.dll",
  8612. "ref/netcore50/System.Text.RegularExpressions.xml",
  8613. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8614. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8615. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8616. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8617. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8618. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8619. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8620. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8621. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8622. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8623. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8624. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8625. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8626. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8627. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8628. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8629. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8630. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8631. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8632. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8633. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8634. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8635. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8636. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8637. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8638. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8639. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8640. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8641. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8642. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8643. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8644. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8645. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8646. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8647. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8648. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8649. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8650. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8651. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8652. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8653. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8654. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8655. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8656. "ref/portable-net45+win8+wp8+wpa81/_._",
  8657. "ref/win8/_._",
  8658. "ref/wp80/_._",
  8659. "ref/wpa81/_._",
  8660. "ref/xamarinios10/_._",
  8661. "ref/xamarinmac20/_._",
  8662. "ref/xamarintvos10/_._",
  8663. "ref/xamarinwatchos10/_._",
  8664. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8665. "system.text.regularexpressions.nuspec"
  8666. ]
  8667. },
  8668. "System.Threading/4.3.0": {
  8669. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8670. "type": "package",
  8671. "path": "system.threading/4.3.0",
  8672. "files": [
  8673. ".nupkg.metadata",
  8674. ".signature.p7s",
  8675. "ThirdPartyNotices.txt",
  8676. "dotnet_library_license.txt",
  8677. "lib/MonoAndroid10/_._",
  8678. "lib/MonoTouch10/_._",
  8679. "lib/net45/_._",
  8680. "lib/netcore50/System.Threading.dll",
  8681. "lib/netstandard1.3/System.Threading.dll",
  8682. "lib/portable-net45+win8+wp8+wpa81/_._",
  8683. "lib/win8/_._",
  8684. "lib/wp80/_._",
  8685. "lib/wpa81/_._",
  8686. "lib/xamarinios10/_._",
  8687. "lib/xamarinmac20/_._",
  8688. "lib/xamarintvos10/_._",
  8689. "lib/xamarinwatchos10/_._",
  8690. "ref/MonoAndroid10/_._",
  8691. "ref/MonoTouch10/_._",
  8692. "ref/net45/_._",
  8693. "ref/netcore50/System.Threading.dll",
  8694. "ref/netcore50/System.Threading.xml",
  8695. "ref/netcore50/de/System.Threading.xml",
  8696. "ref/netcore50/es/System.Threading.xml",
  8697. "ref/netcore50/fr/System.Threading.xml",
  8698. "ref/netcore50/it/System.Threading.xml",
  8699. "ref/netcore50/ja/System.Threading.xml",
  8700. "ref/netcore50/ko/System.Threading.xml",
  8701. "ref/netcore50/ru/System.Threading.xml",
  8702. "ref/netcore50/zh-hans/System.Threading.xml",
  8703. "ref/netcore50/zh-hant/System.Threading.xml",
  8704. "ref/netstandard1.0/System.Threading.dll",
  8705. "ref/netstandard1.0/System.Threading.xml",
  8706. "ref/netstandard1.0/de/System.Threading.xml",
  8707. "ref/netstandard1.0/es/System.Threading.xml",
  8708. "ref/netstandard1.0/fr/System.Threading.xml",
  8709. "ref/netstandard1.0/it/System.Threading.xml",
  8710. "ref/netstandard1.0/ja/System.Threading.xml",
  8711. "ref/netstandard1.0/ko/System.Threading.xml",
  8712. "ref/netstandard1.0/ru/System.Threading.xml",
  8713. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8714. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8715. "ref/netstandard1.3/System.Threading.dll",
  8716. "ref/netstandard1.3/System.Threading.xml",
  8717. "ref/netstandard1.3/de/System.Threading.xml",
  8718. "ref/netstandard1.3/es/System.Threading.xml",
  8719. "ref/netstandard1.3/fr/System.Threading.xml",
  8720. "ref/netstandard1.3/it/System.Threading.xml",
  8721. "ref/netstandard1.3/ja/System.Threading.xml",
  8722. "ref/netstandard1.3/ko/System.Threading.xml",
  8723. "ref/netstandard1.3/ru/System.Threading.xml",
  8724. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8725. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8726. "ref/portable-net45+win8+wp8+wpa81/_._",
  8727. "ref/win8/_._",
  8728. "ref/wp80/_._",
  8729. "ref/wpa81/_._",
  8730. "ref/xamarinios10/_._",
  8731. "ref/xamarinmac20/_._",
  8732. "ref/xamarintvos10/_._",
  8733. "ref/xamarinwatchos10/_._",
  8734. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8735. "system.threading.4.3.0.nupkg.sha512",
  8736. "system.threading.nuspec"
  8737. ]
  8738. },
  8739. "System.Threading.Channels/7.0.0": {
  8740. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8741. "type": "package",
  8742. "path": "system.threading.channels/7.0.0",
  8743. "files": [
  8744. ".nupkg.metadata",
  8745. ".signature.p7s",
  8746. "Icon.png",
  8747. "LICENSE.TXT",
  8748. "THIRD-PARTY-NOTICES.TXT",
  8749. "buildTransitive/net461/System.Threading.Channels.targets",
  8750. "buildTransitive/net462/_._",
  8751. "buildTransitive/net6.0/_._",
  8752. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8753. "lib/net462/System.Threading.Channels.dll",
  8754. "lib/net462/System.Threading.Channels.xml",
  8755. "lib/net6.0/System.Threading.Channels.dll",
  8756. "lib/net6.0/System.Threading.Channels.xml",
  8757. "lib/net7.0/System.Threading.Channels.dll",
  8758. "lib/net7.0/System.Threading.Channels.xml",
  8759. "lib/netstandard2.0/System.Threading.Channels.dll",
  8760. "lib/netstandard2.0/System.Threading.Channels.xml",
  8761. "lib/netstandard2.1/System.Threading.Channels.dll",
  8762. "lib/netstandard2.1/System.Threading.Channels.xml",
  8763. "system.threading.channels.7.0.0.nupkg.sha512",
  8764. "system.threading.channels.nuspec",
  8765. "useSharedDesignerContext.txt"
  8766. ]
  8767. },
  8768. "System.Threading.Tasks/4.3.0": {
  8769. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8770. "type": "package",
  8771. "path": "system.threading.tasks/4.3.0",
  8772. "files": [
  8773. ".nupkg.metadata",
  8774. ".signature.p7s",
  8775. "ThirdPartyNotices.txt",
  8776. "dotnet_library_license.txt",
  8777. "lib/MonoAndroid10/_._",
  8778. "lib/MonoTouch10/_._",
  8779. "lib/net45/_._",
  8780. "lib/portable-net45+win8+wp8+wpa81/_._",
  8781. "lib/win8/_._",
  8782. "lib/wp80/_._",
  8783. "lib/wpa81/_._",
  8784. "lib/xamarinios10/_._",
  8785. "lib/xamarinmac20/_._",
  8786. "lib/xamarintvos10/_._",
  8787. "lib/xamarinwatchos10/_._",
  8788. "ref/MonoAndroid10/_._",
  8789. "ref/MonoTouch10/_._",
  8790. "ref/net45/_._",
  8791. "ref/netcore50/System.Threading.Tasks.dll",
  8792. "ref/netcore50/System.Threading.Tasks.xml",
  8793. "ref/netcore50/de/System.Threading.Tasks.xml",
  8794. "ref/netcore50/es/System.Threading.Tasks.xml",
  8795. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8796. "ref/netcore50/it/System.Threading.Tasks.xml",
  8797. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8798. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8799. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8800. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8801. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8802. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8803. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8804. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8805. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8806. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8807. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8808. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8809. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8810. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8811. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8812. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8813. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8814. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8815. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8816. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8817. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8818. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8819. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8820. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8821. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8822. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8823. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8824. "ref/portable-net45+win8+wp8+wpa81/_._",
  8825. "ref/win8/_._",
  8826. "ref/wp80/_._",
  8827. "ref/wpa81/_._",
  8828. "ref/xamarinios10/_._",
  8829. "ref/xamarinmac20/_._",
  8830. "ref/xamarintvos10/_._",
  8831. "ref/xamarinwatchos10/_._",
  8832. "system.threading.tasks.4.3.0.nupkg.sha512",
  8833. "system.threading.tasks.nuspec"
  8834. ]
  8835. },
  8836. "System.Threading.Tasks.Extensions/4.3.0": {
  8837. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8838. "type": "package",
  8839. "path": "system.threading.tasks.extensions/4.3.0",
  8840. "files": [
  8841. ".nupkg.metadata",
  8842. ".signature.p7s",
  8843. "ThirdPartyNotices.txt",
  8844. "dotnet_library_license.txt",
  8845. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8846. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8847. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8848. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8849. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8850. "system.threading.tasks.extensions.nuspec"
  8851. ]
  8852. },
  8853. "System.Threading.Thread/4.3.0": {
  8854. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8855. "type": "package",
  8856. "path": "system.threading.thread/4.3.0",
  8857. "files": [
  8858. ".nupkg.metadata",
  8859. ".signature.p7s",
  8860. "ThirdPartyNotices.txt",
  8861. "dotnet_library_license.txt",
  8862. "lib/MonoAndroid10/_._",
  8863. "lib/MonoTouch10/_._",
  8864. "lib/net46/System.Threading.Thread.dll",
  8865. "lib/netcore50/_._",
  8866. "lib/netstandard1.3/System.Threading.Thread.dll",
  8867. "lib/xamarinios10/_._",
  8868. "lib/xamarinmac20/_._",
  8869. "lib/xamarintvos10/_._",
  8870. "lib/xamarinwatchos10/_._",
  8871. "ref/MonoAndroid10/_._",
  8872. "ref/MonoTouch10/_._",
  8873. "ref/net46/System.Threading.Thread.dll",
  8874. "ref/netstandard1.3/System.Threading.Thread.dll",
  8875. "ref/netstandard1.3/System.Threading.Thread.xml",
  8876. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8877. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8878. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8879. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8880. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8881. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8882. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8883. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8884. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8885. "ref/xamarinios10/_._",
  8886. "ref/xamarinmac20/_._",
  8887. "ref/xamarintvos10/_._",
  8888. "ref/xamarinwatchos10/_._",
  8889. "system.threading.thread.4.3.0.nupkg.sha512",
  8890. "system.threading.thread.nuspec"
  8891. ]
  8892. },
  8893. "System.Threading.ThreadPool/4.3.0": {
  8894. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8895. "type": "package",
  8896. "path": "system.threading.threadpool/4.3.0",
  8897. "files": [
  8898. ".nupkg.metadata",
  8899. ".signature.p7s",
  8900. "ThirdPartyNotices.txt",
  8901. "dotnet_library_license.txt",
  8902. "lib/MonoAndroid10/_._",
  8903. "lib/MonoTouch10/_._",
  8904. "lib/net46/System.Threading.ThreadPool.dll",
  8905. "lib/netcore50/_._",
  8906. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8907. "lib/xamarinios10/_._",
  8908. "lib/xamarinmac20/_._",
  8909. "lib/xamarintvos10/_._",
  8910. "lib/xamarinwatchos10/_._",
  8911. "ref/MonoAndroid10/_._",
  8912. "ref/MonoTouch10/_._",
  8913. "ref/net46/System.Threading.ThreadPool.dll",
  8914. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8915. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8916. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8917. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8918. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8919. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8920. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8921. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8922. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8923. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8924. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8925. "ref/xamarinios10/_._",
  8926. "ref/xamarinmac20/_._",
  8927. "ref/xamarintvos10/_._",
  8928. "ref/xamarinwatchos10/_._",
  8929. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8930. "system.threading.threadpool.nuspec"
  8931. ]
  8932. },
  8933. "System.Threading.Timer/4.3.0": {
  8934. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8935. "type": "package",
  8936. "path": "system.threading.timer/4.3.0",
  8937. "files": [
  8938. ".nupkg.metadata",
  8939. ".signature.p7s",
  8940. "ThirdPartyNotices.txt",
  8941. "dotnet_library_license.txt",
  8942. "lib/MonoAndroid10/_._",
  8943. "lib/MonoTouch10/_._",
  8944. "lib/net451/_._",
  8945. "lib/portable-net451+win81+wpa81/_._",
  8946. "lib/win81/_._",
  8947. "lib/wpa81/_._",
  8948. "lib/xamarinios10/_._",
  8949. "lib/xamarinmac20/_._",
  8950. "lib/xamarintvos10/_._",
  8951. "lib/xamarinwatchos10/_._",
  8952. "ref/MonoAndroid10/_._",
  8953. "ref/MonoTouch10/_._",
  8954. "ref/net451/_._",
  8955. "ref/netcore50/System.Threading.Timer.dll",
  8956. "ref/netcore50/System.Threading.Timer.xml",
  8957. "ref/netcore50/de/System.Threading.Timer.xml",
  8958. "ref/netcore50/es/System.Threading.Timer.xml",
  8959. "ref/netcore50/fr/System.Threading.Timer.xml",
  8960. "ref/netcore50/it/System.Threading.Timer.xml",
  8961. "ref/netcore50/ja/System.Threading.Timer.xml",
  8962. "ref/netcore50/ko/System.Threading.Timer.xml",
  8963. "ref/netcore50/ru/System.Threading.Timer.xml",
  8964. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8965. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8966. "ref/netstandard1.2/System.Threading.Timer.dll",
  8967. "ref/netstandard1.2/System.Threading.Timer.xml",
  8968. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8969. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8970. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8971. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8972. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8973. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8974. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8975. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8976. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8977. "ref/portable-net451+win81+wpa81/_._",
  8978. "ref/win81/_._",
  8979. "ref/wpa81/_._",
  8980. "ref/xamarinios10/_._",
  8981. "ref/xamarinmac20/_._",
  8982. "ref/xamarintvos10/_._",
  8983. "ref/xamarinwatchos10/_._",
  8984. "system.threading.timer.4.3.0.nupkg.sha512",
  8985. "system.threading.timer.nuspec"
  8986. ]
  8987. },
  8988. "System.Windows.Extensions/4.7.0": {
  8989. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8990. "type": "package",
  8991. "path": "system.windows.extensions/4.7.0",
  8992. "files": [
  8993. ".nupkg.metadata",
  8994. ".signature.p7s",
  8995. "LICENSE.TXT",
  8996. "THIRD-PARTY-NOTICES.TXT",
  8997. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8998. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8999. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9000. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9001. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9002. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9003. "system.windows.extensions.4.7.0.nupkg.sha512",
  9004. "system.windows.extensions.nuspec",
  9005. "useSharedDesignerContext.txt",
  9006. "version.txt"
  9007. ]
  9008. },
  9009. "System.Xml.ReaderWriter/4.3.0": {
  9010. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9011. "type": "package",
  9012. "path": "system.xml.readerwriter/4.3.0",
  9013. "files": [
  9014. ".nupkg.metadata",
  9015. ".signature.p7s",
  9016. "ThirdPartyNotices.txt",
  9017. "dotnet_library_license.txt",
  9018. "lib/MonoAndroid10/_._",
  9019. "lib/MonoTouch10/_._",
  9020. "lib/net45/_._",
  9021. "lib/net46/System.Xml.ReaderWriter.dll",
  9022. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9023. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9024. "lib/portable-net45+win8+wp8+wpa81/_._",
  9025. "lib/win8/_._",
  9026. "lib/wp80/_._",
  9027. "lib/wpa81/_._",
  9028. "lib/xamarinios10/_._",
  9029. "lib/xamarinmac20/_._",
  9030. "lib/xamarintvos10/_._",
  9031. "lib/xamarinwatchos10/_._",
  9032. "ref/MonoAndroid10/_._",
  9033. "ref/MonoTouch10/_._",
  9034. "ref/net45/_._",
  9035. "ref/net46/System.Xml.ReaderWriter.dll",
  9036. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9037. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9038. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9039. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9040. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9041. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9042. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9043. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9044. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9045. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9046. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9047. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9048. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9049. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9050. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9051. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9052. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9053. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9054. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9055. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9056. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9057. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9058. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9059. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9060. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9061. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9062. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9063. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9064. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9065. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9066. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9067. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9068. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9069. "ref/portable-net45+win8+wp8+wpa81/_._",
  9070. "ref/win8/_._",
  9071. "ref/wp80/_._",
  9072. "ref/wpa81/_._",
  9073. "ref/xamarinios10/_._",
  9074. "ref/xamarinmac20/_._",
  9075. "ref/xamarintvos10/_._",
  9076. "ref/xamarinwatchos10/_._",
  9077. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9078. "system.xml.readerwriter.nuspec"
  9079. ]
  9080. },
  9081. "System.Xml.XDocument/4.3.0": {
  9082. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9083. "type": "package",
  9084. "path": "system.xml.xdocument/4.3.0",
  9085. "files": [
  9086. ".nupkg.metadata",
  9087. ".signature.p7s",
  9088. "ThirdPartyNotices.txt",
  9089. "dotnet_library_license.txt",
  9090. "lib/MonoAndroid10/_._",
  9091. "lib/MonoTouch10/_._",
  9092. "lib/net45/_._",
  9093. "lib/netcore50/System.Xml.XDocument.dll",
  9094. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9095. "lib/portable-net45+win8+wp8+wpa81/_._",
  9096. "lib/win8/_._",
  9097. "lib/wp80/_._",
  9098. "lib/wpa81/_._",
  9099. "lib/xamarinios10/_._",
  9100. "lib/xamarinmac20/_._",
  9101. "lib/xamarintvos10/_._",
  9102. "lib/xamarinwatchos10/_._",
  9103. "ref/MonoAndroid10/_._",
  9104. "ref/MonoTouch10/_._",
  9105. "ref/net45/_._",
  9106. "ref/netcore50/System.Xml.XDocument.dll",
  9107. "ref/netcore50/System.Xml.XDocument.xml",
  9108. "ref/netcore50/de/System.Xml.XDocument.xml",
  9109. "ref/netcore50/es/System.Xml.XDocument.xml",
  9110. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9111. "ref/netcore50/it/System.Xml.XDocument.xml",
  9112. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9113. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9114. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9115. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9116. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9117. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9118. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9119. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9120. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9121. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9122. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9123. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9124. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9125. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9126. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9127. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9128. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9129. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9130. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9131. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9132. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9133. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9134. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9135. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9136. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9137. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9138. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9139. "ref/portable-net45+win8+wp8+wpa81/_._",
  9140. "ref/win8/_._",
  9141. "ref/wp80/_._",
  9142. "ref/wpa81/_._",
  9143. "ref/xamarinios10/_._",
  9144. "ref/xamarinmac20/_._",
  9145. "ref/xamarintvos10/_._",
  9146. "ref/xamarinwatchos10/_._",
  9147. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9148. "system.xml.xdocument.nuspec"
  9149. ]
  9150. },
  9151. "System.Xml.XmlDocument/4.3.0": {
  9152. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9153. "type": "package",
  9154. "path": "system.xml.xmldocument/4.3.0",
  9155. "files": [
  9156. ".nupkg.metadata",
  9157. ".signature.p7s",
  9158. "ThirdPartyNotices.txt",
  9159. "dotnet_library_license.txt",
  9160. "lib/MonoAndroid10/_._",
  9161. "lib/MonoTouch10/_._",
  9162. "lib/net46/System.Xml.XmlDocument.dll",
  9163. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9164. "lib/xamarinios10/_._",
  9165. "lib/xamarinmac20/_._",
  9166. "lib/xamarintvos10/_._",
  9167. "lib/xamarinwatchos10/_._",
  9168. "ref/MonoAndroid10/_._",
  9169. "ref/MonoTouch10/_._",
  9170. "ref/net46/System.Xml.XmlDocument.dll",
  9171. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9172. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9173. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9174. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9175. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9176. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9177. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9178. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9179. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9180. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9181. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9182. "ref/xamarinios10/_._",
  9183. "ref/xamarinmac20/_._",
  9184. "ref/xamarintvos10/_._",
  9185. "ref/xamarinwatchos10/_._",
  9186. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9187. "system.xml.xmldocument.nuspec"
  9188. ]
  9189. },
  9190. "ToolGood.Words/3.1.0.2": {
  9191. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  9192. "type": "package",
  9193. "path": "toolgood.words/3.1.0.2",
  9194. "files": [
  9195. ".nupkg.metadata",
  9196. ".signature.p7s",
  9197. "LICENSE",
  9198. "lib/net6.0/ToolGood.Words.dll",
  9199. "lib/net6.0/ToolGood.Words.xml",
  9200. "lib/net8.0/ToolGood.Words.dll",
  9201. "lib/net8.0/ToolGood.Words.xml",
  9202. "lib/net9.0/ToolGood.Words.dll",
  9203. "lib/net9.0/ToolGood.Words.xml",
  9204. "lib/netstandard2.1/ToolGood.Words.dll",
  9205. "lib/netstandard2.1/ToolGood.Words.xml",
  9206. "toolgood.words.3.1.0.2.nupkg.sha512",
  9207. "toolgood.words.nuspec"
  9208. ]
  9209. },
  9210. "ZXing.Net/0.16.9": {
  9211. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9212. "type": "package",
  9213. "path": "zxing.net/0.16.9",
  9214. "files": [
  9215. ".nupkg.metadata",
  9216. ".signature.p7s",
  9217. "lib/native/zxing.XML",
  9218. "lib/native/zxing.pri",
  9219. "lib/native/zxing.winmd",
  9220. "lib/net20-cf/zxing.ce2.0.dll",
  9221. "lib/net20-cf/zxing.ce2.0.xml",
  9222. "lib/net20/zxing.XML",
  9223. "lib/net20/zxing.dll",
  9224. "lib/net35-cf/zxing.ce3.5.dll",
  9225. "lib/net35-cf/zxing.ce3.5.xml",
  9226. "lib/net35/zxing.XML",
  9227. "lib/net35/zxing.dll",
  9228. "lib/net40/zxing.XML",
  9229. "lib/net40/zxing.dll",
  9230. "lib/net40/zxing.presentation.XML",
  9231. "lib/net40/zxing.presentation.dll",
  9232. "lib/net45/zxing.XML",
  9233. "lib/net45/zxing.dll",
  9234. "lib/net45/zxing.presentation.XML",
  9235. "lib/net45/zxing.presentation.dll",
  9236. "lib/net461/zxing.XML",
  9237. "lib/net461/zxing.dll",
  9238. "lib/net461/zxing.presentation.XML",
  9239. "lib/net461/zxing.presentation.dll",
  9240. "lib/net47/zxing.XML",
  9241. "lib/net47/zxing.dll",
  9242. "lib/net47/zxing.presentation.XML",
  9243. "lib/net47/zxing.presentation.dll",
  9244. "lib/net48/zxing.XML",
  9245. "lib/net48/zxing.dll",
  9246. "lib/net48/zxing.presentation.XML",
  9247. "lib/net48/zxing.presentation.dll",
  9248. "lib/net5.0/zxing.XML",
  9249. "lib/net5.0/zxing.dll",
  9250. "lib/net6.0/zxing.XML",
  9251. "lib/net6.0/zxing.dll",
  9252. "lib/net7.0/zxing.XML",
  9253. "lib/net7.0/zxing.dll",
  9254. "lib/netcoreapp3.0/zxing.dll",
  9255. "lib/netcoreapp3.0/zxing.xml",
  9256. "lib/netcoreapp3.1/zxing.dll",
  9257. "lib/netcoreapp3.1/zxing.xml",
  9258. "lib/netstandard1.0/zxing.dll",
  9259. "lib/netstandard1.0/zxing.xml",
  9260. "lib/netstandard1.1/zxing.dll",
  9261. "lib/netstandard1.1/zxing.xml",
  9262. "lib/netstandard1.3/zxing.dll",
  9263. "lib/netstandard1.3/zxing.xml",
  9264. "lib/netstandard2.0/zxing.dll",
  9265. "lib/netstandard2.0/zxing.xml",
  9266. "lib/netstandard2.1/zxing.dll",
  9267. "lib/netstandard2.1/zxing.xml",
  9268. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9269. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9270. "lib/sl3-wp/zxing.wp7.0.XML",
  9271. "lib/sl3-wp/zxing.wp7.0.dll",
  9272. "lib/sl4-wp71/zxing.wp7.1.XML",
  9273. "lib/sl4-wp71/zxing.wp7.1.dll",
  9274. "lib/sl4/zxing.sl4.XML",
  9275. "lib/sl4/zxing.sl4.dll",
  9276. "lib/sl5/zxing.sl5.XML",
  9277. "lib/sl5/zxing.sl5.dll",
  9278. "lib/uap10/zxing.dll",
  9279. "lib/uap10/zxing.pri",
  9280. "lib/uap10/zxing.xml",
  9281. "lib/windows8-managed/zxing.winrt.XML",
  9282. "lib/windows8-managed/zxing.winrt.dll",
  9283. "lib/windows8/zxing.XML",
  9284. "lib/windows8/zxing.pri",
  9285. "lib/windows8/zxing.winmd",
  9286. "lib/wp8/zxing.wp8.0.XML",
  9287. "lib/wp8/zxing.wp8.0.dll",
  9288. "logo.jpg",
  9289. "zxing.net.0.16.9.nupkg.sha512",
  9290. "zxing.net.nuspec"
  9291. ]
  9292. },
  9293. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9294. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9295. "type": "package",
  9296. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9297. "files": [
  9298. ".nupkg.metadata",
  9299. ".signature.p7s",
  9300. "lib/net472/ZXing.ImageSharp.V2.dll",
  9301. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9302. "lib/net472/ZXing.ImageSharp.V2.xml",
  9303. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9304. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9305. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9306. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9307. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9308. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9309. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9310. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9311. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9312. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9313. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9314. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9315. "logo.jpg",
  9316. "readme.md",
  9317. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9318. "zxing.net.bindings.imagesharp.v2.nuspec"
  9319. ]
  9320. },
  9321. "Ropin.Core.Common/1.0.0": {
  9322. "type": "project",
  9323. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9324. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9325. },
  9326. "Ropin.Core.Extensions/1.0.0": {
  9327. "type": "project",
  9328. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  9329. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  9330. },
  9331. "Ropin.Inspection.Common/1.0.0": {
  9332. "type": "project",
  9333. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9334. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9335. },
  9336. "Ropin.Inspection.Model/1.0.0": {
  9337. "type": "project",
  9338. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9339. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9340. },
  9341. "Ropin.Inspection.Repository/1.0.0": {
  9342. "type": "project",
  9343. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9344. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9345. },
  9346. "Ropin.Inspection.Service/1.0.0": {
  9347. "type": "project",
  9348. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  9349. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  9350. },
  9351. "Ropin.Inspection.Tasks/1.0.0": {
  9352. "type": "project",
  9353. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  9354. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  9355. }
  9356. },
  9357. "projectFileDependencyGroups": {
  9358. "net5.0": [
  9359. "MQTTnet.AspNetCore >= 4.2.1.781",
  9360. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9361. "Newtonsoft.Json >= 13.0.3",
  9362. "Ropin.Core.Common >= 1.0.0",
  9363. "Ropin.Core.Extensions >= 1.0.0",
  9364. "Ropin.Inspection.Model >= 1.0.0",
  9365. "Ropin.Inspection.Repository >= 1.0.0",
  9366. "Swashbuckle.AspNetCore >= 5.6.3"
  9367. ]
  9368. },
  9369. "packageFolders": {
  9370. "D:\\.nuget\\packages": {},
  9371. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9372. },
  9373. "project": {
  9374. "version": "1.0.0",
  9375. "restore": {
  9376. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9377. "projectName": "Ropin.IOT.MqttService",
  9378. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\Ropin.IOT.MqttService.csproj",
  9379. "packagesPath": "D:\\.nuget\\packages",
  9380. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MqttService\\obj\\",
  9381. "projectStyle": "PackageReference",
  9382. "fallbackFolders": [
  9383. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9384. ],
  9385. "configFilePaths": [
  9386. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9387. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9388. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9389. ],
  9390. "originalTargetFrameworks": [
  9391. "net5.0"
  9392. ],
  9393. "sources": {
  9394. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9395. "C:\\Program Files\\dotnet\\library-packs": {},
  9396. "https://api.nuget.org/v3/index.json": {}
  9397. },
  9398. "frameworks": {
  9399. "net5.0": {
  9400. "targetAlias": "net5.0",
  9401. "projectReferences": {
  9402. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9403. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9404. },
  9405. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  9406. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  9407. },
  9408. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9409. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9410. },
  9411. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9412. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9413. }
  9414. }
  9415. }
  9416. },
  9417. "warningProperties": {
  9418. "warnAsError": [
  9419. "NU1605"
  9420. ]
  9421. }
  9422. },
  9423. "frameworks": {
  9424. "net5.0": {
  9425. "targetAlias": "net5.0",
  9426. "dependencies": {
  9427. "MQTTnet.AspNetCore": {
  9428. "target": "Package",
  9429. "version": "[4.2.1.781, )"
  9430. },
  9431. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9432. "target": "Package",
  9433. "version": "[1.17.2, )"
  9434. },
  9435. "Newtonsoft.Json": {
  9436. "target": "Package",
  9437. "version": "[13.0.3, )"
  9438. },
  9439. "Swashbuckle.AspNetCore": {
  9440. "target": "Package",
  9441. "version": "[5.6.3, )"
  9442. }
  9443. },
  9444. "imports": [
  9445. "net461",
  9446. "net462",
  9447. "net47",
  9448. "net471",
  9449. "net472",
  9450. "net48",
  9451. "net481"
  9452. ],
  9453. "assetTargetFallback": true,
  9454. "warn": true,
  9455. "frameworkReferences": {
  9456. "Microsoft.AspNetCore.App": {
  9457. "privateAssets": "none"
  9458. },
  9459. "Microsoft.NETCore.App": {
  9460. "privateAssets": "all"
  9461. }
  9462. },
  9463. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9464. }
  9465. }
  9466. }
  9467. }