project.assets.json 342 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/10.1.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0",
  9. "System.Reflection.Emit": "4.7.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/AutoMapper.dll": {}
  13. },
  14. "runtime": {
  15. "lib/netstandard2.0/AutoMapper.dll": {}
  16. }
  17. },
  18. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "AutoMapper": "[10.1.1, 11.0.0)",
  22. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  23. "Microsoft.Extensions.Options": "3.0.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  30. }
  31. },
  32. "BouncyCastle.NetCore/1.8.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0",
  36. "System.Reflection": "4.3.0",
  37. "System.Reflection.TypeExtensions": "4.1.0"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  44. }
  45. },
  46. "Flurl/3.0.2": {
  47. "type": "package",
  48. "compile": {
  49. "lib/netstandard2.0/Flurl.dll": {}
  50. },
  51. "runtime": {
  52. "lib/netstandard2.0/Flurl.dll": {}
  53. }
  54. },
  55. "Flurl.Http/3.2.0": {
  56. "type": "package",
  57. "dependencies": {
  58. "Flurl": "3.0.2",
  59. "Newtonsoft.Json": "12.0.2",
  60. "System.Text.Encoding.CodePages": "4.5.1"
  61. },
  62. "compile": {
  63. "lib/netstandard2.0/Flurl.Http.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netstandard2.0/Flurl.Http.dll": {}
  67. }
  68. },
  69. "Google.Protobuf/3.11.4": {
  70. "type": "package",
  71. "dependencies": {
  72. "System.Memory": "4.5.2"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/Google.Protobuf.dll": {}
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Google.Protobuf.dll": {}
  79. }
  80. },
  81. "K4os.Compression.LZ4/1.1.11": {
  82. "type": "package",
  83. "dependencies": {
  84. "System.Memory": "4.5.3"
  85. },
  86. "compile": {
  87. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  91. }
  92. },
  93. "K4os.Compression.LZ4.Streams/1.1.11": {
  94. "type": "package",
  95. "dependencies": {
  96. "K4os.Compression.LZ4": "1.1.11",
  97. "K4os.Hash.xxHash": "1.0.6"
  98. },
  99. "compile": {
  100. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  104. }
  105. },
  106. "K4os.Hash.xxHash/1.0.6": {
  107. "type": "package",
  108. "dependencies": {
  109. "System.Memory": "4.5.3"
  110. },
  111. "compile": {
  112. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  113. },
  114. "runtime": {
  115. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  116. }
  117. },
  118. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  119. "type": "package",
  120. "compile": {
  121. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  122. },
  123. "runtime": {
  124. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  125. }
  126. },
  127. "Microsoft.Bcl.HashCode/1.1.0": {
  128. "type": "package",
  129. "compile": {
  130. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  134. }
  135. },
  136. "Microsoft.CSharp/4.7.0": {
  137. "type": "package",
  138. "compile": {
  139. "ref/netcoreapp2.0/_._": {}
  140. },
  141. "runtime": {
  142. "lib/netcoreapp2.0/_._": {}
  143. }
  144. },
  145. "Microsoft.EntityFrameworkCore/3.1.1": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  149. "Microsoft.Bcl.HashCode": "1.1.0",
  150. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  151. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  152. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  153. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  154. "Microsoft.Extensions.Logging": "3.1.1",
  155. "System.Collections.Immutable": "1.7.0",
  156. "System.ComponentModel.Annotations": "4.7.0",
  157. "System.Diagnostics.DiagnosticSource": "4.7.0"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  164. }
  165. },
  166. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  167. "type": "package",
  168. "compile": {
  169. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  170. },
  171. "runtime": {
  172. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  173. }
  174. },
  175. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  176. "type": "package",
  177. "compile": {
  178. "lib/netstandard2.0/_._": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/_._": {}
  182. }
  183. },
  184. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.EntityFrameworkCore": "3.1.1"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  191. },
  192. "runtime": {
  193. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  194. }
  195. },
  196. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  197. "type": "package",
  198. "build": {
  199. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  200. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  201. },
  202. "buildMultiTargeting": {
  203. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  204. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  205. }
  206. },
  207. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  208. "type": "package",
  209. "dependencies": {
  210. "Microsoft.Extensions.Primitives": "3.1.1"
  211. },
  212. "compile": {
  213. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  214. },
  215. "runtime": {
  216. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  217. }
  218. },
  219. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  220. "type": "package",
  221. "dependencies": {
  222. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  223. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  224. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  225. "Microsoft.Extensions.Options": "3.1.1"
  226. },
  227. "compile": {
  228. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  232. }
  233. },
  234. "Microsoft.Extensions.Configuration/5.0.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  238. "Microsoft.Extensions.Primitives": "5.0.0"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  242. },
  243. "runtime": {
  244. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  245. }
  246. },
  247. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  248. "type": "package",
  249. "dependencies": {
  250. "Microsoft.Extensions.Primitives": "5.0.0"
  251. },
  252. "compile": {
  253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  257. }
  258. },
  259. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  260. "type": "package",
  261. "dependencies": {
  262. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  263. },
  264. "compile": {
  265. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  266. },
  267. "runtime": {
  268. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  269. }
  270. },
  271. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Configuration": "5.0.0",
  275. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  276. },
  277. "compile": {
  278. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  279. },
  280. "runtime": {
  281. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  282. }
  283. },
  284. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  285. "type": "package",
  286. "dependencies": {
  287. "Microsoft.Extensions.Configuration": "5.0.0",
  288. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  289. },
  290. "compile": {
  291. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  292. },
  293. "runtime": {
  294. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  295. }
  296. },
  297. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  298. "type": "package",
  299. "dependencies": {
  300. "Microsoft.Extensions.Configuration": "5.0.0",
  301. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  302. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  303. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  304. "Microsoft.Extensions.Primitives": "5.0.0"
  305. },
  306. "compile": {
  307. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  308. },
  309. "runtime": {
  310. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  311. }
  312. },
  313. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  314. "type": "package",
  315. "dependencies": {
  316. "Microsoft.Extensions.Configuration": "5.0.0",
  317. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  318. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  319. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  320. "System.Text.Json": "5.0.0"
  321. },
  322. "compile": {
  323. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  324. },
  325. "runtime": {
  326. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  333. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  334. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  335. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  342. },
  343. "build": {
  344. "build/netstandard2.0/_._": {}
  345. }
  346. },
  347. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  348. "type": "package",
  349. "dependencies": {
  350. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  351. },
  352. "compile": {
  353. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  354. },
  355. "runtime": {
  356. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  357. }
  358. },
  359. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  360. "type": "package",
  361. "compile": {
  362. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  363. },
  364. "runtime": {
  365. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  366. }
  367. },
  368. "Microsoft.Extensions.DependencyModel/3.1.6": {
  369. "type": "package",
  370. "dependencies": {
  371. "System.Text.Json": "4.7.2"
  372. },
  373. "compile": {
  374. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  375. },
  376. "runtime": {
  377. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  378. }
  379. },
  380. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  381. "type": "package",
  382. "dependencies": {
  383. "Microsoft.Extensions.Primitives": "5.0.0"
  384. },
  385. "compile": {
  386. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  387. },
  388. "runtime": {
  389. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  390. }
  391. },
  392. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  393. "type": "package",
  394. "dependencies": {
  395. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  396. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  397. "Microsoft.Extensions.Primitives": "5.0.0"
  398. },
  399. "compile": {
  400. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  404. }
  405. },
  406. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  407. "type": "package",
  408. "compile": {
  409. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  410. },
  411. "runtime": {
  412. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  413. }
  414. },
  415. "Microsoft.Extensions.Hosting/5.0.0": {
  416. "type": "package",
  417. "dependencies": {
  418. "Microsoft.Extensions.Configuration": "5.0.0",
  419. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  420. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  421. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  422. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  423. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  424. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  425. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  426. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  427. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  428. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  429. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  430. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  431. "Microsoft.Extensions.Logging": "5.0.0",
  432. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  433. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  434. "Microsoft.Extensions.Logging.Console": "5.0.0",
  435. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  436. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  437. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  438. "Microsoft.Extensions.Options": "5.0.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  442. },
  443. "runtime": {
  444. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  445. }
  446. },
  447. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  448. "type": "package",
  449. "dependencies": {
  450. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  451. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  452. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  453. },
  454. "compile": {
  455. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  456. },
  457. "runtime": {
  458. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  459. }
  460. },
  461. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  462. "type": "package",
  463. "dependencies": {
  464. "Microsoft.Extensions.Hosting": "5.0.0",
  465. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  466. "System.ServiceProcess.ServiceController": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Logging/5.0.0": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  479. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  480. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.Options": "5.0.0",
  482. "System.Diagnostics.DiagnosticSource": "5.0.0"
  483. },
  484. "compile": {
  485. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  486. },
  487. "runtime": {
  488. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  489. }
  490. },
  491. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  492. "type": "package",
  493. "compile": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  495. },
  496. "runtime": {
  497. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  498. }
  499. },
  500. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.Extensions.Configuration": "5.0.0",
  504. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  505. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  506. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  507. "Microsoft.Extensions.Logging": "5.0.0",
  508. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  509. "Microsoft.Extensions.Options": "5.0.0",
  510. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  511. },
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  517. }
  518. },
  519. "Microsoft.Extensions.Logging.Console/5.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  523. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  524. "Microsoft.Extensions.Logging": "5.0.0",
  525. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  526. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  527. "Microsoft.Extensions.Options": "5.0.0",
  528. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
  529. "System.Text.Json": "5.0.0"
  530. },
  531. "compile": {
  532. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  533. },
  534. "runtime": {
  535. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  536. }
  537. },
  538. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  542. "Microsoft.Extensions.Logging": "5.0.0",
  543. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  544. },
  545. "compile": {
  546. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  550. }
  551. },
  552. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  556. "Microsoft.Extensions.Logging": "5.0.0",
  557. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  558. "Microsoft.Extensions.Options": "5.0.0",
  559. "System.Diagnostics.EventLog": "5.0.0"
  560. },
  561. "compile": {
  562. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  563. },
  564. "runtime": {
  565. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  566. }
  567. },
  568. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  569. "type": "package",
  570. "dependencies": {
  571. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  572. "Microsoft.Extensions.Logging": "5.0.0",
  573. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  574. "Microsoft.Extensions.Options": "5.0.0",
  575. "Microsoft.Extensions.Primitives": "5.0.0"
  576. },
  577. "compile": {
  578. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  579. },
  580. "runtime": {
  581. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  582. }
  583. },
  584. "Microsoft.Extensions.Options/5.0.0": {
  585. "type": "package",
  586. "dependencies": {
  587. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  588. "Microsoft.Extensions.Primitives": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  595. }
  596. },
  597. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  598. "type": "package",
  599. "dependencies": {
  600. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  601. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  602. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  603. "Microsoft.Extensions.Options": "5.0.0",
  604. "Microsoft.Extensions.Primitives": "5.0.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  608. },
  609. "runtime": {
  610. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  611. }
  612. },
  613. "Microsoft.Extensions.Primitives/5.0.0": {
  614. "type": "package",
  615. "compile": {
  616. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  617. },
  618. "runtime": {
  619. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  620. }
  621. },
  622. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  623. "type": "package",
  624. "dependencies": {
  625. "Microsoft.IdentityModel.Tokens": "6.11.0"
  626. },
  627. "compile": {
  628. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  629. },
  630. "runtime": {
  631. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  632. }
  633. },
  634. "Microsoft.IdentityModel.Logging/6.11.0": {
  635. "type": "package",
  636. "compile": {
  637. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  638. },
  639. "runtime": {
  640. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  641. }
  642. },
  643. "Microsoft.IdentityModel.Tokens/6.11.0": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.CSharp": "4.5.0",
  647. "Microsoft.IdentityModel.Logging": "6.11.0",
  648. "System.Security.Cryptography.Cng": "4.5.0"
  649. },
  650. "compile": {
  651. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  652. },
  653. "runtime": {
  654. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  655. }
  656. },
  657. "Microsoft.NETCore.Platforms/5.0.0": {
  658. "type": "package",
  659. "compile": {
  660. "lib/netstandard1.0/_._": {}
  661. },
  662. "runtime": {
  663. "lib/netstandard1.0/_._": {}
  664. }
  665. },
  666. "Microsoft.NETCore.Targets/1.1.0": {
  667. "type": "package",
  668. "compile": {
  669. "lib/netstandard1.0/_._": {}
  670. },
  671. "runtime": {
  672. "lib/netstandard1.0/_._": {}
  673. }
  674. },
  675. "Microsoft.OpenApi/1.2.3": {
  676. "type": "package",
  677. "compile": {
  678. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  682. }
  683. },
  684. "Microsoft.Win32.Primitives/4.0.1": {
  685. "type": "package",
  686. "dependencies": {
  687. "Microsoft.NETCore.Platforms": "1.0.1",
  688. "Microsoft.NETCore.Targets": "1.0.1",
  689. "System.Runtime": "4.1.0"
  690. },
  691. "compile": {
  692. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  693. }
  694. },
  695. "Microsoft.Win32.Registry/5.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "System.Security.AccessControl": "5.0.0",
  699. "System.Security.Principal.Windows": "5.0.0"
  700. },
  701. "compile": {
  702. "ref/netstandard2.0/_._": {}
  703. },
  704. "runtime": {
  705. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  706. },
  707. "runtimeTargets": {
  708. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  709. "assetType": "runtime",
  710. "rid": "win"
  711. }
  712. }
  713. },
  714. "Microsoft.Win32.SystemEvents/5.0.0": {
  715. "type": "package",
  716. "dependencies": {
  717. "Microsoft.NETCore.Platforms": "5.0.0"
  718. },
  719. "compile": {
  720. "ref/netstandard2.0/_._": {}
  721. },
  722. "runtime": {
  723. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  724. },
  725. "runtimeTargets": {
  726. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  727. "assetType": "runtime",
  728. "rid": "win"
  729. }
  730. }
  731. },
  732. "MySql.Data/8.0.22": {
  733. "type": "package",
  734. "dependencies": {
  735. "BouncyCastle.NetCore": "1.8.3",
  736. "Google.Protobuf": "3.11.4",
  737. "K4os.Compression.LZ4": "1.1.11",
  738. "K4os.Compression.LZ4.Streams": "1.1.11",
  739. "K4os.Hash.xxHash": "1.0.6",
  740. "SSH.NET": "2016.1.0",
  741. "System.Buffers": "4.5.1",
  742. "System.Configuration.ConfigurationManager": "4.4.1",
  743. "System.Security.Permissions": "4.7.0",
  744. "System.Text.Encoding.CodePages": "4.4.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.1/MySql.Data.dll": {},
  748. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  749. "lib/netstandard2.1/Zstandard.Net.dll": {}
  750. },
  751. "runtime": {
  752. "lib/netstandard2.1/MySql.Data.dll": {},
  753. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  754. "lib/netstandard2.1/Zstandard.Net.dll": {}
  755. }
  756. },
  757. "MySql.Data.EntityFrameworkCore/8.0.22": {
  758. "type": "package",
  759. "dependencies": {
  760. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  761. "MySql.Data": "8.0.22"
  762. },
  763. "compile": {
  764. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  765. },
  766. "runtime": {
  767. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  768. }
  769. },
  770. "NETStandard.Library/1.6.0": {
  771. "type": "package",
  772. "dependencies": {
  773. "Microsoft.NETCore.Platforms": "1.0.1",
  774. "Microsoft.Win32.Primitives": "4.0.1",
  775. "System.AppContext": "4.1.0",
  776. "System.Collections": "4.0.11",
  777. "System.Collections.Concurrent": "4.0.12",
  778. "System.Console": "4.0.0",
  779. "System.Diagnostics.Debug": "4.0.11",
  780. "System.Diagnostics.Tools": "4.0.1",
  781. "System.Diagnostics.Tracing": "4.1.0",
  782. "System.Globalization": "4.0.11",
  783. "System.Globalization.Calendars": "4.0.1",
  784. "System.IO": "4.1.0",
  785. "System.IO.Compression": "4.1.0",
  786. "System.IO.Compression.ZipFile": "4.0.1",
  787. "System.IO.FileSystem": "4.0.1",
  788. "System.IO.FileSystem.Primitives": "4.0.1",
  789. "System.Linq": "4.1.0",
  790. "System.Linq.Expressions": "4.1.0",
  791. "System.Net.Http": "4.1.0",
  792. "System.Net.Primitives": "4.0.11",
  793. "System.Net.Sockets": "4.1.0",
  794. "System.ObjectModel": "4.0.12",
  795. "System.Reflection": "4.1.0",
  796. "System.Reflection.Extensions": "4.0.1",
  797. "System.Reflection.Primitives": "4.0.1",
  798. "System.Resources.ResourceManager": "4.0.1",
  799. "System.Runtime": "4.1.0",
  800. "System.Runtime.Extensions": "4.1.0",
  801. "System.Runtime.Handles": "4.0.1",
  802. "System.Runtime.InteropServices": "4.1.0",
  803. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  804. "System.Runtime.Numerics": "4.0.1",
  805. "System.Security.Cryptography.Algorithms": "4.2.0",
  806. "System.Security.Cryptography.Encoding": "4.0.0",
  807. "System.Security.Cryptography.Primitives": "4.0.0",
  808. "System.Security.Cryptography.X509Certificates": "4.1.0",
  809. "System.Text.Encoding": "4.0.11",
  810. "System.Text.Encoding.Extensions": "4.0.11",
  811. "System.Text.RegularExpressions": "4.1.0",
  812. "System.Threading": "4.0.11",
  813. "System.Threading.Tasks": "4.0.11",
  814. "System.Threading.Timer": "4.0.1",
  815. "System.Xml.ReaderWriter": "4.0.11",
  816. "System.Xml.XDocument": "4.0.11"
  817. }
  818. },
  819. "Newtonsoft.Json/13.0.1": {
  820. "type": "package",
  821. "compile": {
  822. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  823. },
  824. "runtime": {
  825. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  826. }
  827. },
  828. "NLog/4.7.9": {
  829. "type": "package",
  830. "compile": {
  831. "lib/netstandard2.0/NLog.dll": {}
  832. },
  833. "runtime": {
  834. "lib/netstandard2.0/NLog.dll": {}
  835. }
  836. },
  837. "NLog.Extensions.Logging/1.7.2": {
  838. "type": "package",
  839. "dependencies": {
  840. "Microsoft.Extensions.Logging": "3.0.0",
  841. "NLog": "4.7.9"
  842. },
  843. "compile": {
  844. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  845. },
  846. "runtime": {
  847. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  848. }
  849. },
  850. "NLog.Web.AspNetCore/4.12.0": {
  851. "type": "package",
  852. "dependencies": {
  853. "NLog.Extensions.Logging": "1.7.2"
  854. },
  855. "compile": {
  856. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  857. },
  858. "runtime": {
  859. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  860. },
  861. "frameworkReferences": [
  862. "Microsoft.AspNetCore.App"
  863. ]
  864. },
  865. "Pipelines.Sockets.Unofficial/2.2.0": {
  866. "type": "package",
  867. "dependencies": {
  868. "System.IO.Pipelines": "5.0.0"
  869. },
  870. "compile": {
  871. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  872. },
  873. "runtime": {
  874. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  875. }
  876. },
  877. "Quartz/3.3.2": {
  878. "type": "package",
  879. "dependencies": {
  880. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  881. "System.Configuration.ConfigurationManager": "4.7.0",
  882. "System.Diagnostics.DiagnosticSource": "4.7.1"
  883. },
  884. "compile": {
  885. "lib/netstandard2.0/Quartz.dll": {}
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Quartz.dll": {}
  889. }
  890. },
  891. "runtime.native.System/4.0.0": {
  892. "type": "package",
  893. "dependencies": {
  894. "Microsoft.NETCore.Platforms": "1.0.1",
  895. "Microsoft.NETCore.Targets": "1.0.1"
  896. },
  897. "compile": {
  898. "lib/netstandard1.0/_._": {}
  899. },
  900. "runtime": {
  901. "lib/netstandard1.0/_._": {}
  902. }
  903. },
  904. "runtime.native.System.IO.Compression/4.1.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.NETCore.Platforms": "1.0.1",
  908. "Microsoft.NETCore.Targets": "1.0.1"
  909. },
  910. "compile": {
  911. "lib/netstandard1.0/_._": {}
  912. },
  913. "runtime": {
  914. "lib/netstandard1.0/_._": {}
  915. }
  916. },
  917. "runtime.native.System.Net.Http/4.0.1": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.NETCore.Platforms": "1.0.1",
  921. "Microsoft.NETCore.Targets": "1.0.1"
  922. },
  923. "compile": {
  924. "lib/netstandard1.0/_._": {}
  925. },
  926. "runtime": {
  927. "lib/netstandard1.0/_._": {}
  928. }
  929. },
  930. "runtime.native.System.Security.Cryptography/4.0.0": {
  931. "type": "package",
  932. "dependencies": {
  933. "Microsoft.NETCore.Platforms": "1.0.1",
  934. "Microsoft.NETCore.Targets": "1.0.1"
  935. },
  936. "compile": {
  937. "lib/netstandard1.0/_._": {}
  938. },
  939. "runtime": {
  940. "lib/netstandard1.0/_._": {}
  941. }
  942. },
  943. "Scrutor/3.3.0": {
  944. "type": "package",
  945. "dependencies": {
  946. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  947. "Microsoft.Extensions.DependencyModel": "3.1.6"
  948. },
  949. "compile": {
  950. "lib/netcoreapp3.1/Scrutor.dll": {}
  951. },
  952. "runtime": {
  953. "lib/netcoreapp3.1/Scrutor.dll": {}
  954. }
  955. },
  956. "SSH.NET/2016.1.0": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.CSharp": "4.0.1",
  960. "SshNet.Security.Cryptography": "[1.2.0]",
  961. "System.Diagnostics.Debug": "4.0.11",
  962. "System.Diagnostics.Tools": "4.0.1",
  963. "System.Diagnostics.TraceSource": "4.0.0",
  964. "System.Globalization": "4.0.11",
  965. "System.IO": "4.1.0",
  966. "System.IO.FileSystem": "4.0.1",
  967. "System.IO.FileSystem.Primitives": "4.0.1",
  968. "System.Linq": "4.1.0",
  969. "System.Net.NameResolution": "4.0.0",
  970. "System.Net.Sockets": "4.1.0",
  971. "System.Reflection.Extensions": "4.0.1",
  972. "System.Runtime.Extensions": "4.1.0",
  973. "System.Security.Cryptography.Algorithms": "4.2.0",
  974. "System.Text.RegularExpressions": "4.1.0",
  975. "System.Threading": "4.0.11",
  976. "System.Threading.Thread": "4.0.0",
  977. "System.Threading.ThreadPool": "4.0.10",
  978. "System.Threading.Timer": "4.0.1",
  979. "System.Xml.XPath.XmlDocument": "4.0.1",
  980. "System.Xml.XmlDocument": "4.0.1"
  981. },
  982. "compile": {
  983. "lib/netstandard1.3/Renci.SshNet.dll": {}
  984. },
  985. "runtime": {
  986. "lib/netstandard1.3/Renci.SshNet.dll": {}
  987. }
  988. },
  989. "SshNet.Security.Cryptography/1.2.0": {
  990. "type": "package",
  991. "dependencies": {
  992. "System.IO": "4.1.0",
  993. "System.Security.Cryptography.Primitives": "4.0.0"
  994. },
  995. "compile": {
  996. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  997. },
  998. "runtime": {
  999. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1000. }
  1001. },
  1002. "StackExchange.Redis/2.2.62": {
  1003. "type": "package",
  1004. "dependencies": {
  1005. "Pipelines.Sockets.Unofficial": "2.2.0",
  1006. "System.Diagnostics.PerformanceCounter": "5.0.0"
  1007. },
  1008. "compile": {
  1009. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1013. }
  1014. },
  1015. "Swashbuckle.AspNetCore/6.3.1": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1019. "Swashbuckle.AspNetCore.Swagger": "6.3.1",
  1020. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1",
  1021. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.1"
  1022. },
  1023. "build": {
  1024. "build/Swashbuckle.AspNetCore.props": {}
  1025. }
  1026. },
  1027. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1031. "Microsoft.OpenApi": "1.2.3",
  1032. "Scrutor": "3.3.0",
  1033. "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2",
  1034. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1035. },
  1036. "compile": {
  1037. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1041. }
  1042. },
  1043. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  1044. "type": "package",
  1045. "compile": {
  1046. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1047. },
  1048. "runtime": {
  1049. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1050. }
  1051. },
  1052. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.OpenApi": "1.2.3"
  1056. },
  1057. "compile": {
  1058. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1059. },
  1060. "runtime": {
  1061. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1062. },
  1063. "frameworkReferences": [
  1064. "Microsoft.AspNetCore.App"
  1065. ]
  1066. },
  1067. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  1068. "type": "package",
  1069. "dependencies": {
  1070. "Swashbuckle.AspNetCore.Swagger": "6.3.1"
  1071. },
  1072. "compile": {
  1073. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1077. }
  1078. },
  1079. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  1080. "type": "package",
  1081. "compile": {
  1082. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1083. },
  1084. "runtime": {
  1085. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1086. },
  1087. "frameworkReferences": [
  1088. "Microsoft.AspNetCore.App"
  1089. ]
  1090. },
  1091. "System.AppContext/4.1.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "System.Runtime": "4.1.0"
  1095. },
  1096. "compile": {
  1097. "ref/netstandard1.6/System.AppContext.dll": {}
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard1.6/System.AppContext.dll": {}
  1101. }
  1102. },
  1103. "System.Buffers/4.5.1": {
  1104. "type": "package",
  1105. "compile": {
  1106. "ref/netcoreapp2.0/_._": {}
  1107. },
  1108. "runtime": {
  1109. "lib/netcoreapp2.0/_._": {}
  1110. }
  1111. },
  1112. "System.Collections/4.0.11": {
  1113. "type": "package",
  1114. "dependencies": {
  1115. "Microsoft.NETCore.Platforms": "1.0.1",
  1116. "Microsoft.NETCore.Targets": "1.0.1",
  1117. "System.Runtime": "4.1.0"
  1118. },
  1119. "compile": {
  1120. "ref/netstandard1.3/System.Collections.dll": {}
  1121. }
  1122. },
  1123. "System.Collections.Concurrent/4.0.12": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "System.Collections": "4.0.11",
  1127. "System.Diagnostics.Debug": "4.0.11",
  1128. "System.Diagnostics.Tracing": "4.1.0",
  1129. "System.Globalization": "4.0.11",
  1130. "System.Reflection": "4.1.0",
  1131. "System.Resources.ResourceManager": "4.0.1",
  1132. "System.Runtime": "4.1.0",
  1133. "System.Runtime.Extensions": "4.1.0",
  1134. "System.Threading": "4.0.11",
  1135. "System.Threading.Tasks": "4.0.11"
  1136. },
  1137. "compile": {
  1138. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1139. },
  1140. "runtime": {
  1141. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1142. }
  1143. },
  1144. "System.Collections.Immutable/1.7.0": {
  1145. "type": "package",
  1146. "compile": {
  1147. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1151. }
  1152. },
  1153. "System.ComponentModel.Annotations/4.7.0": {
  1154. "type": "package",
  1155. "compile": {
  1156. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1157. },
  1158. "runtime": {
  1159. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1160. }
  1161. },
  1162. "System.Configuration.ConfigurationManager/5.0.0": {
  1163. "type": "package",
  1164. "dependencies": {
  1165. "System.Security.Cryptography.ProtectedData": "5.0.0",
  1166. "System.Security.Permissions": "5.0.0"
  1167. },
  1168. "compile": {
  1169. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1170. },
  1171. "runtime": {
  1172. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1173. }
  1174. },
  1175. "System.Console/4.0.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.NETCore.Platforms": "1.0.1",
  1179. "Microsoft.NETCore.Targets": "1.0.1",
  1180. "System.IO": "4.1.0",
  1181. "System.Runtime": "4.1.0",
  1182. "System.Text.Encoding": "4.0.11"
  1183. },
  1184. "compile": {
  1185. "ref/netstandard1.3/System.Console.dll": {}
  1186. }
  1187. },
  1188. "System.Diagnostics.Debug/4.0.11": {
  1189. "type": "package",
  1190. "dependencies": {
  1191. "Microsoft.NETCore.Platforms": "1.0.1",
  1192. "Microsoft.NETCore.Targets": "1.0.1",
  1193. "System.Runtime": "4.1.0"
  1194. },
  1195. "compile": {
  1196. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1197. }
  1198. },
  1199. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1200. "type": "package",
  1201. "compile": {
  1202. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1203. },
  1204. "runtime": {
  1205. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1206. }
  1207. },
  1208. "System.Diagnostics.EventLog/5.0.0": {
  1209. "type": "package",
  1210. "dependencies": {
  1211. "Microsoft.NETCore.Platforms": "5.0.0",
  1212. "Microsoft.Win32.Registry": "5.0.0",
  1213. "System.Security.Principal.Windows": "5.0.0"
  1214. },
  1215. "compile": {
  1216. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1217. },
  1218. "runtime": {
  1219. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1220. },
  1221. "runtimeTargets": {
  1222. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  1223. "assetType": "runtime",
  1224. "rid": "win"
  1225. }
  1226. }
  1227. },
  1228. "System.Diagnostics.PerformanceCounter/5.0.0": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.NETCore.Platforms": "5.0.0",
  1232. "Microsoft.Win32.Registry": "5.0.0",
  1233. "System.Configuration.ConfigurationManager": "5.0.0",
  1234. "System.Security.Principal.Windows": "5.0.0"
  1235. },
  1236. "compile": {
  1237. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1238. },
  1239. "runtime": {
  1240. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1241. },
  1242. "runtimeTargets": {
  1243. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1244. "assetType": "runtime",
  1245. "rid": "win"
  1246. }
  1247. }
  1248. },
  1249. "System.Diagnostics.Tools/4.0.1": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Microsoft.NETCore.Platforms": "1.0.1",
  1253. "Microsoft.NETCore.Targets": "1.0.1",
  1254. "System.Runtime": "4.1.0"
  1255. },
  1256. "compile": {
  1257. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1258. }
  1259. },
  1260. "System.Diagnostics.TraceSource/4.0.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.NETCore.Platforms": "1.0.1",
  1264. "System.Collections": "4.0.11",
  1265. "System.Diagnostics.Debug": "4.0.11",
  1266. "System.Globalization": "4.0.11",
  1267. "System.Resources.ResourceManager": "4.0.1",
  1268. "System.Runtime": "4.1.0",
  1269. "System.Runtime.Extensions": "4.1.0",
  1270. "System.Threading": "4.0.11",
  1271. "runtime.native.System": "4.0.0"
  1272. },
  1273. "compile": {
  1274. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1275. },
  1276. "runtimeTargets": {
  1277. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1278. "assetType": "runtime",
  1279. "rid": "unix"
  1280. },
  1281. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1282. "assetType": "runtime",
  1283. "rid": "win"
  1284. }
  1285. }
  1286. },
  1287. "System.Diagnostics.Tracing/4.1.0": {
  1288. "type": "package",
  1289. "dependencies": {
  1290. "Microsoft.NETCore.Platforms": "1.0.1",
  1291. "Microsoft.NETCore.Targets": "1.0.1",
  1292. "System.Runtime": "4.1.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1296. }
  1297. },
  1298. "System.Drawing.Common/5.0.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Win32.SystemEvents": "5.0.0"
  1302. },
  1303. "compile": {
  1304. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1305. },
  1306. "runtime": {
  1307. "lib/netcoreapp3.0/System.Drawing.Common.dll": {}
  1308. },
  1309. "runtimeTargets": {
  1310. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1311. "assetType": "runtime",
  1312. "rid": "unix"
  1313. },
  1314. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1315. "assetType": "runtime",
  1316. "rid": "win"
  1317. }
  1318. }
  1319. },
  1320. "System.Globalization/4.0.11": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "Microsoft.NETCore.Platforms": "1.0.1",
  1324. "Microsoft.NETCore.Targets": "1.0.1",
  1325. "System.Runtime": "4.1.0"
  1326. },
  1327. "compile": {
  1328. "ref/netstandard1.3/System.Globalization.dll": {}
  1329. }
  1330. },
  1331. "System.Globalization.Calendars/4.0.1": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "Microsoft.NETCore.Platforms": "1.0.1",
  1335. "Microsoft.NETCore.Targets": "1.0.1",
  1336. "System.Globalization": "4.0.11",
  1337. "System.Runtime": "4.1.0"
  1338. },
  1339. "compile": {
  1340. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1341. }
  1342. },
  1343. "System.Globalization.Extensions/4.0.1": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.0.1",
  1347. "System.Globalization": "4.0.11",
  1348. "System.Resources.ResourceManager": "4.0.1",
  1349. "System.Runtime": "4.1.0",
  1350. "System.Runtime.Extensions": "4.1.0",
  1351. "System.Runtime.InteropServices": "4.1.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard1.3/_._": {}
  1355. },
  1356. "runtimeTargets": {
  1357. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1358. "assetType": "runtime",
  1359. "rid": "unix"
  1360. },
  1361. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1362. "assetType": "runtime",
  1363. "rid": "win"
  1364. }
  1365. }
  1366. },
  1367. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Microsoft.IdentityModel.JsonWebTokens": "6.11.0",
  1371. "Microsoft.IdentityModel.Tokens": "6.11.0"
  1372. },
  1373. "compile": {
  1374. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1378. }
  1379. },
  1380. "System.IO/4.3.0": {
  1381. "type": "package",
  1382. "dependencies": {
  1383. "Microsoft.NETCore.Platforms": "1.1.0",
  1384. "Microsoft.NETCore.Targets": "1.1.0",
  1385. "System.Runtime": "4.3.0",
  1386. "System.Text.Encoding": "4.3.0",
  1387. "System.Threading.Tasks": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.5/System.IO.dll": {}
  1391. }
  1392. },
  1393. "System.IO.Compression/4.1.0": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Microsoft.NETCore.Platforms": "1.0.1",
  1397. "System.Collections": "4.0.11",
  1398. "System.Diagnostics.Debug": "4.0.11",
  1399. "System.IO": "4.1.0",
  1400. "System.Resources.ResourceManager": "4.0.1",
  1401. "System.Runtime": "4.1.0",
  1402. "System.Runtime.Extensions": "4.1.0",
  1403. "System.Runtime.Handles": "4.0.1",
  1404. "System.Runtime.InteropServices": "4.1.0",
  1405. "System.Text.Encoding": "4.0.11",
  1406. "System.Threading": "4.0.11",
  1407. "System.Threading.Tasks": "4.0.11",
  1408. "runtime.native.System": "4.0.0",
  1409. "runtime.native.System.IO.Compression": "4.1.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1413. },
  1414. "runtimeTargets": {
  1415. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1416. "assetType": "runtime",
  1417. "rid": "unix"
  1418. },
  1419. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1420. "assetType": "runtime",
  1421. "rid": "win"
  1422. }
  1423. }
  1424. },
  1425. "System.IO.Compression.ZipFile/4.0.1": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "System.Buffers": "4.0.0",
  1429. "System.IO": "4.1.0",
  1430. "System.IO.Compression": "4.1.0",
  1431. "System.IO.FileSystem": "4.0.1",
  1432. "System.IO.FileSystem.Primitives": "4.0.1",
  1433. "System.Resources.ResourceManager": "4.0.1",
  1434. "System.Runtime": "4.1.0",
  1435. "System.Runtime.Extensions": "4.1.0",
  1436. "System.Text.Encoding": "4.0.11"
  1437. },
  1438. "compile": {
  1439. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1440. },
  1441. "runtime": {
  1442. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1443. }
  1444. },
  1445. "System.IO.FileSystem/4.0.1": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "Microsoft.NETCore.Platforms": "1.0.1",
  1449. "Microsoft.NETCore.Targets": "1.0.1",
  1450. "System.IO": "4.1.0",
  1451. "System.IO.FileSystem.Primitives": "4.0.1",
  1452. "System.Runtime": "4.1.0",
  1453. "System.Runtime.Handles": "4.0.1",
  1454. "System.Text.Encoding": "4.0.11",
  1455. "System.Threading.Tasks": "4.0.11"
  1456. },
  1457. "compile": {
  1458. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1459. }
  1460. },
  1461. "System.IO.FileSystem.Primitives/4.0.1": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "System.Runtime": "4.1.0"
  1465. },
  1466. "compile": {
  1467. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1468. },
  1469. "runtime": {
  1470. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1471. }
  1472. },
  1473. "System.IO.Pipelines/5.0.0": {
  1474. "type": "package",
  1475. "compile": {
  1476. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  1477. },
  1478. "runtime": {
  1479. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  1480. }
  1481. },
  1482. "System.Linq/4.1.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Collections": "4.0.11",
  1486. "System.Diagnostics.Debug": "4.0.11",
  1487. "System.Resources.ResourceManager": "4.0.1",
  1488. "System.Runtime": "4.1.0",
  1489. "System.Runtime.Extensions": "4.1.0"
  1490. },
  1491. "compile": {
  1492. "ref/netstandard1.6/System.Linq.dll": {}
  1493. },
  1494. "runtime": {
  1495. "lib/netstandard1.6/System.Linq.dll": {}
  1496. }
  1497. },
  1498. "System.Linq.Expressions/4.1.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "System.Collections": "4.0.11",
  1502. "System.Diagnostics.Debug": "4.0.11",
  1503. "System.Globalization": "4.0.11",
  1504. "System.IO": "4.1.0",
  1505. "System.Linq": "4.1.0",
  1506. "System.ObjectModel": "4.0.12",
  1507. "System.Reflection": "4.1.0",
  1508. "System.Reflection.Emit": "4.0.1",
  1509. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1510. "System.Reflection.Emit.Lightweight": "4.0.1",
  1511. "System.Reflection.Extensions": "4.0.1",
  1512. "System.Reflection.Primitives": "4.0.1",
  1513. "System.Reflection.TypeExtensions": "4.1.0",
  1514. "System.Resources.ResourceManager": "4.0.1",
  1515. "System.Runtime": "4.1.0",
  1516. "System.Runtime.Extensions": "4.1.0",
  1517. "System.Threading": "4.0.11"
  1518. },
  1519. "compile": {
  1520. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1524. }
  1525. },
  1526. "System.Memory/4.5.3": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netcoreapp2.1/_._": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netcoreapp2.1/_._": {}
  1533. }
  1534. },
  1535. "System.Net.Http/4.1.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "Microsoft.NETCore.Platforms": "1.0.1",
  1539. "System.Collections": "4.0.11",
  1540. "System.Diagnostics.Debug": "4.0.11",
  1541. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1542. "System.Diagnostics.Tracing": "4.1.0",
  1543. "System.Globalization": "4.0.11",
  1544. "System.Globalization.Extensions": "4.0.1",
  1545. "System.IO": "4.1.0",
  1546. "System.IO.FileSystem": "4.0.1",
  1547. "System.Net.Primitives": "4.0.11",
  1548. "System.Resources.ResourceManager": "4.0.1",
  1549. "System.Runtime": "4.1.0",
  1550. "System.Runtime.Extensions": "4.1.0",
  1551. "System.Runtime.Handles": "4.0.1",
  1552. "System.Runtime.InteropServices": "4.1.0",
  1553. "System.Security.Cryptography.Algorithms": "4.2.0",
  1554. "System.Security.Cryptography.Encoding": "4.0.0",
  1555. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1556. "System.Security.Cryptography.Primitives": "4.0.0",
  1557. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1558. "System.Text.Encoding": "4.0.11",
  1559. "System.Threading": "4.0.11",
  1560. "System.Threading.Tasks": "4.0.11",
  1561. "runtime.native.System": "4.0.0",
  1562. "runtime.native.System.Net.Http": "4.0.1",
  1563. "runtime.native.System.Security.Cryptography": "4.0.0"
  1564. },
  1565. "compile": {
  1566. "ref/netstandard1.3/System.Net.Http.dll": {}
  1567. },
  1568. "runtimeTargets": {
  1569. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1570. "assetType": "runtime",
  1571. "rid": "unix"
  1572. },
  1573. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1574. "assetType": "runtime",
  1575. "rid": "win"
  1576. }
  1577. }
  1578. },
  1579. "System.Net.NameResolution/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "System.Collections": "4.0.11",
  1584. "System.Diagnostics.Tracing": "4.1.0",
  1585. "System.Globalization": "4.0.11",
  1586. "System.Net.Primitives": "4.0.11",
  1587. "System.Resources.ResourceManager": "4.0.1",
  1588. "System.Runtime": "4.1.0",
  1589. "System.Runtime.Extensions": "4.1.0",
  1590. "System.Runtime.Handles": "4.0.1",
  1591. "System.Runtime.InteropServices": "4.1.0",
  1592. "System.Security.Principal.Windows": "4.0.0",
  1593. "System.Threading": "4.0.11",
  1594. "System.Threading.Tasks": "4.0.11",
  1595. "runtime.native.System": "4.0.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1599. },
  1600. "runtimeTargets": {
  1601. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1602. "assetType": "runtime",
  1603. "rid": "unix"
  1604. },
  1605. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1606. "assetType": "runtime",
  1607. "rid": "win"
  1608. }
  1609. }
  1610. },
  1611. "System.Net.Primitives/4.0.11": {
  1612. "type": "package",
  1613. "dependencies": {
  1614. "Microsoft.NETCore.Platforms": "1.0.1",
  1615. "Microsoft.NETCore.Targets": "1.0.1",
  1616. "System.Runtime": "4.1.0",
  1617. "System.Runtime.Handles": "4.0.1"
  1618. },
  1619. "compile": {
  1620. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1621. }
  1622. },
  1623. "System.Net.Sockets/4.1.0": {
  1624. "type": "package",
  1625. "dependencies": {
  1626. "Microsoft.NETCore.Platforms": "1.0.1",
  1627. "Microsoft.NETCore.Targets": "1.0.1",
  1628. "System.IO": "4.1.0",
  1629. "System.Net.Primitives": "4.0.11",
  1630. "System.Runtime": "4.1.0",
  1631. "System.Threading.Tasks": "4.0.11"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1635. }
  1636. },
  1637. "System.ObjectModel/4.0.12": {
  1638. "type": "package",
  1639. "dependencies": {
  1640. "System.Collections": "4.0.11",
  1641. "System.Diagnostics.Debug": "4.0.11",
  1642. "System.Resources.ResourceManager": "4.0.1",
  1643. "System.Runtime": "4.1.0",
  1644. "System.Threading": "4.0.11"
  1645. },
  1646. "compile": {
  1647. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1648. },
  1649. "runtime": {
  1650. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1651. }
  1652. },
  1653. "System.Reflection/4.3.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Microsoft.NETCore.Platforms": "1.1.0",
  1657. "Microsoft.NETCore.Targets": "1.1.0",
  1658. "System.IO": "4.3.0",
  1659. "System.Reflection.Primitives": "4.3.0",
  1660. "System.Runtime": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.5/System.Reflection.dll": {}
  1664. }
  1665. },
  1666. "System.Reflection.Emit/4.7.0": {
  1667. "type": "package",
  1668. "compile": {
  1669. "ref/netcoreapp2.0/_._": {}
  1670. },
  1671. "runtime": {
  1672. "lib/netcoreapp2.0/_._": {}
  1673. }
  1674. },
  1675. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "System.Reflection": "4.1.0",
  1679. "System.Reflection.Primitives": "4.0.1",
  1680. "System.Runtime": "4.1.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.0/_._": {}
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1687. }
  1688. },
  1689. "System.Reflection.Emit.Lightweight/4.0.1": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "System.Reflection": "4.1.0",
  1693. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1694. "System.Reflection.Primitives": "4.0.1",
  1695. "System.Runtime": "4.1.0"
  1696. },
  1697. "compile": {
  1698. "ref/netstandard1.0/_._": {}
  1699. },
  1700. "runtime": {
  1701. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1702. }
  1703. },
  1704. "System.Reflection.Extensions/4.0.1": {
  1705. "type": "package",
  1706. "dependencies": {
  1707. "Microsoft.NETCore.Platforms": "1.0.1",
  1708. "Microsoft.NETCore.Targets": "1.0.1",
  1709. "System.Reflection": "4.1.0",
  1710. "System.Runtime": "4.1.0"
  1711. },
  1712. "compile": {
  1713. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1714. }
  1715. },
  1716. "System.Reflection.Primitives/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1725. }
  1726. },
  1727. "System.Reflection.TypeExtensions/4.1.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "System.Reflection": "4.1.0",
  1731. "System.Runtime": "4.1.0"
  1732. },
  1733. "compile": {
  1734. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1738. }
  1739. },
  1740. "System.Resources.ResourceManager/4.0.1": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.0.1",
  1744. "Microsoft.NETCore.Targets": "1.0.1",
  1745. "System.Globalization": "4.0.11",
  1746. "System.Reflection": "4.1.0",
  1747. "System.Runtime": "4.1.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1751. }
  1752. },
  1753. "System.Runtime/4.3.0": {
  1754. "type": "package",
  1755. "dependencies": {
  1756. "Microsoft.NETCore.Platforms": "1.1.0",
  1757. "Microsoft.NETCore.Targets": "1.1.0"
  1758. },
  1759. "compile": {
  1760. "ref/netstandard1.5/System.Runtime.dll": {}
  1761. }
  1762. },
  1763. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  1764. "type": "package",
  1765. "compile": {
  1766. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1767. },
  1768. "runtime": {
  1769. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1770. }
  1771. },
  1772. "System.Runtime.Extensions/4.1.0": {
  1773. "type": "package",
  1774. "dependencies": {
  1775. "Microsoft.NETCore.Platforms": "1.0.1",
  1776. "Microsoft.NETCore.Targets": "1.0.1",
  1777. "System.Runtime": "4.1.0"
  1778. },
  1779. "compile": {
  1780. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1781. }
  1782. },
  1783. "System.Runtime.Handles/4.0.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.NETCore.Platforms": "1.0.1",
  1787. "Microsoft.NETCore.Targets": "1.0.1",
  1788. "System.Runtime": "4.1.0"
  1789. },
  1790. "compile": {
  1791. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1792. }
  1793. },
  1794. "System.Runtime.InteropServices/4.1.0": {
  1795. "type": "package",
  1796. "dependencies": {
  1797. "Microsoft.NETCore.Platforms": "1.0.1",
  1798. "Microsoft.NETCore.Targets": "1.0.1",
  1799. "System.Reflection": "4.1.0",
  1800. "System.Reflection.Primitives": "4.0.1",
  1801. "System.Runtime": "4.1.0",
  1802. "System.Runtime.Handles": "4.0.1"
  1803. },
  1804. "compile": {
  1805. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1806. }
  1807. },
  1808. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "Microsoft.NETCore.Platforms": "1.0.1",
  1812. "System.Reflection": "4.1.0",
  1813. "System.Resources.ResourceManager": "4.0.1",
  1814. "System.Runtime": "4.1.0",
  1815. "System.Runtime.InteropServices": "4.1.0",
  1816. "System.Threading": "4.0.11",
  1817. "runtime.native.System": "4.0.0"
  1818. },
  1819. "compile": {
  1820. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1821. },
  1822. "runtimeTargets": {
  1823. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1824. "assetType": "runtime",
  1825. "rid": "unix"
  1826. },
  1827. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1828. "assetType": "runtime",
  1829. "rid": "win"
  1830. }
  1831. }
  1832. },
  1833. "System.Runtime.Numerics/4.0.1": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "System.Globalization": "4.0.11",
  1837. "System.Resources.ResourceManager": "4.0.1",
  1838. "System.Runtime": "4.1.0",
  1839. "System.Runtime.Extensions": "4.1.0"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1846. }
  1847. },
  1848. "System.Security.AccessControl/5.0.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "5.0.0",
  1852. "System.Security.Principal.Windows": "5.0.0"
  1853. },
  1854. "compile": {
  1855. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1856. },
  1857. "runtime": {
  1858. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1859. },
  1860. "runtimeTargets": {
  1861. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1862. "assetType": "runtime",
  1863. "rid": "win"
  1864. }
  1865. }
  1866. },
  1867. "System.Security.Cryptography.Algorithms/4.2.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "Microsoft.NETCore.Platforms": "1.0.1",
  1871. "System.Collections": "4.0.11",
  1872. "System.IO": "4.1.0",
  1873. "System.Resources.ResourceManager": "4.0.1",
  1874. "System.Runtime": "4.1.0",
  1875. "System.Runtime.Extensions": "4.1.0",
  1876. "System.Runtime.Handles": "4.0.1",
  1877. "System.Runtime.InteropServices": "4.1.0",
  1878. "System.Runtime.Numerics": "4.0.1",
  1879. "System.Security.Cryptography.Encoding": "4.0.0",
  1880. "System.Security.Cryptography.Primitives": "4.0.0",
  1881. "System.Text.Encoding": "4.0.11",
  1882. "runtime.native.System.Security.Cryptography": "4.0.0"
  1883. },
  1884. "compile": {
  1885. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1886. },
  1887. "runtimeTargets": {
  1888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "unix"
  1891. },
  1892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.Security.Cryptography.Cng/4.5.0": {
  1899. "type": "package",
  1900. "compile": {
  1901. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1902. },
  1903. "runtime": {
  1904. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1905. },
  1906. "runtimeTargets": {
  1907. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1908. "assetType": "runtime",
  1909. "rid": "win"
  1910. }
  1911. }
  1912. },
  1913. "System.Security.Cryptography.Csp/4.0.0": {
  1914. "type": "package",
  1915. "dependencies": {
  1916. "Microsoft.NETCore.Platforms": "1.0.1",
  1917. "System.IO": "4.1.0",
  1918. "System.Reflection": "4.1.0",
  1919. "System.Resources.ResourceManager": "4.0.1",
  1920. "System.Runtime": "4.1.0",
  1921. "System.Runtime.Extensions": "4.1.0",
  1922. "System.Runtime.Handles": "4.0.1",
  1923. "System.Runtime.InteropServices": "4.1.0",
  1924. "System.Security.Cryptography.Algorithms": "4.2.0",
  1925. "System.Security.Cryptography.Encoding": "4.0.0",
  1926. "System.Security.Cryptography.Primitives": "4.0.0",
  1927. "System.Text.Encoding": "4.0.11",
  1928. "System.Threading": "4.0.11"
  1929. },
  1930. "compile": {
  1931. "ref/netstandard1.3/_._": {}
  1932. },
  1933. "runtimeTargets": {
  1934. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1935. "assetType": "runtime",
  1936. "rid": "unix"
  1937. },
  1938. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1939. "assetType": "runtime",
  1940. "rid": "win"
  1941. }
  1942. }
  1943. },
  1944. "System.Security.Cryptography.Encoding/4.0.0": {
  1945. "type": "package",
  1946. "dependencies": {
  1947. "Microsoft.NETCore.Platforms": "1.0.1",
  1948. "System.Collections": "4.0.11",
  1949. "System.Collections.Concurrent": "4.0.12",
  1950. "System.Linq": "4.1.0",
  1951. "System.Resources.ResourceManager": "4.0.1",
  1952. "System.Runtime": "4.1.0",
  1953. "System.Runtime.Extensions": "4.1.0",
  1954. "System.Runtime.Handles": "4.0.1",
  1955. "System.Runtime.InteropServices": "4.1.0",
  1956. "System.Security.Cryptography.Primitives": "4.0.0",
  1957. "System.Text.Encoding": "4.0.11",
  1958. "runtime.native.System.Security.Cryptography": "4.0.0"
  1959. },
  1960. "compile": {
  1961. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1962. },
  1963. "runtimeTargets": {
  1964. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1965. "assetType": "runtime",
  1966. "rid": "unix"
  1967. },
  1968. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1969. "assetType": "runtime",
  1970. "rid": "win"
  1971. }
  1972. }
  1973. },
  1974. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.0.11",
  1978. "System.IO": "4.1.0",
  1979. "System.Resources.ResourceManager": "4.0.1",
  1980. "System.Runtime": "4.1.0",
  1981. "System.Runtime.Extensions": "4.1.0",
  1982. "System.Runtime.Handles": "4.0.1",
  1983. "System.Runtime.InteropServices": "4.1.0",
  1984. "System.Runtime.Numerics": "4.0.1",
  1985. "System.Security.Cryptography.Algorithms": "4.2.0",
  1986. "System.Security.Cryptography.Encoding": "4.0.0",
  1987. "System.Security.Cryptography.Primitives": "4.0.0",
  1988. "System.Text.Encoding": "4.0.11",
  1989. "runtime.native.System.Security.Cryptography": "4.0.0"
  1990. },
  1991. "compile": {
  1992. "ref/netstandard1.6/_._": {}
  1993. },
  1994. "runtime": {
  1995. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1996. },
  1997. "runtimeTargets": {
  1998. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1999. "assetType": "runtime",
  2000. "rid": "unix"
  2001. }
  2002. }
  2003. },
  2004. "System.Security.Cryptography.Primitives/4.0.0": {
  2005. "type": "package",
  2006. "dependencies": {
  2007. "System.Diagnostics.Debug": "4.0.11",
  2008. "System.Globalization": "4.0.11",
  2009. "System.IO": "4.1.0",
  2010. "System.Resources.ResourceManager": "4.0.1",
  2011. "System.Runtime": "4.1.0",
  2012. "System.Threading": "4.0.11",
  2013. "System.Threading.Tasks": "4.0.11"
  2014. },
  2015. "compile": {
  2016. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2017. },
  2018. "runtime": {
  2019. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2020. }
  2021. },
  2022. "System.Security.Cryptography.ProtectedData/5.0.0": {
  2023. "type": "package",
  2024. "compile": {
  2025. "ref/netstandard2.0/_._": {}
  2026. },
  2027. "runtime": {
  2028. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2029. },
  2030. "runtimeTargets": {
  2031. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2032. "assetType": "runtime",
  2033. "rid": "win"
  2034. }
  2035. }
  2036. },
  2037. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2038. "type": "package",
  2039. "dependencies": {
  2040. "Microsoft.NETCore.Platforms": "1.0.1",
  2041. "System.Collections": "4.0.11",
  2042. "System.Diagnostics.Debug": "4.0.11",
  2043. "System.Globalization": "4.0.11",
  2044. "System.Globalization.Calendars": "4.0.1",
  2045. "System.IO": "4.1.0",
  2046. "System.IO.FileSystem": "4.0.1",
  2047. "System.IO.FileSystem.Primitives": "4.0.1",
  2048. "System.Resources.ResourceManager": "4.0.1",
  2049. "System.Runtime": "4.1.0",
  2050. "System.Runtime.Extensions": "4.1.0",
  2051. "System.Runtime.Handles": "4.0.1",
  2052. "System.Runtime.InteropServices": "4.1.0",
  2053. "System.Runtime.Numerics": "4.0.1",
  2054. "System.Security.Cryptography.Algorithms": "4.2.0",
  2055. "System.Security.Cryptography.Cng": "4.2.0",
  2056. "System.Security.Cryptography.Csp": "4.0.0",
  2057. "System.Security.Cryptography.Encoding": "4.0.0",
  2058. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2059. "System.Security.Cryptography.Primitives": "4.0.0",
  2060. "System.Text.Encoding": "4.0.11",
  2061. "System.Threading": "4.0.11",
  2062. "runtime.native.System": "4.0.0",
  2063. "runtime.native.System.Net.Http": "4.0.1",
  2064. "runtime.native.System.Security.Cryptography": "4.0.0"
  2065. },
  2066. "compile": {
  2067. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2068. },
  2069. "runtimeTargets": {
  2070. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2071. "assetType": "runtime",
  2072. "rid": "unix"
  2073. },
  2074. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2075. "assetType": "runtime",
  2076. "rid": "win"
  2077. }
  2078. }
  2079. },
  2080. "System.Security.Permissions/5.0.0": {
  2081. "type": "package",
  2082. "dependencies": {
  2083. "System.Security.AccessControl": "5.0.0",
  2084. "System.Windows.Extensions": "5.0.0"
  2085. },
  2086. "compile": {
  2087. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2088. },
  2089. "runtime": {
  2090. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2091. }
  2092. },
  2093. "System.Security.Principal.Windows/5.0.0": {
  2094. "type": "package",
  2095. "compile": {
  2096. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2097. },
  2098. "runtime": {
  2099. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2100. },
  2101. "runtimeTargets": {
  2102. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2103. "assetType": "runtime",
  2104. "rid": "unix"
  2105. },
  2106. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2107. "assetType": "runtime",
  2108. "rid": "win"
  2109. }
  2110. }
  2111. },
  2112. "System.ServiceProcess.ServiceController/5.0.0": {
  2113. "type": "package",
  2114. "dependencies": {
  2115. "System.Diagnostics.EventLog": "5.0.0"
  2116. },
  2117. "compile": {
  2118. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2119. },
  2120. "runtime": {
  2121. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2122. },
  2123. "runtimeTargets": {
  2124. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2125. "assetType": "runtime",
  2126. "rid": "win"
  2127. }
  2128. }
  2129. },
  2130. "System.Text.Encoding/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "Microsoft.NETCore.Platforms": "1.1.0",
  2134. "Microsoft.NETCore.Targets": "1.1.0",
  2135. "System.Runtime": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2139. }
  2140. },
  2141. "System.Text.Encoding.CodePages/4.5.1": {
  2142. "type": "package",
  2143. "dependencies": {
  2144. "Microsoft.NETCore.Platforms": "2.1.2",
  2145. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2146. },
  2147. "compile": {
  2148. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2149. },
  2150. "runtime": {
  2151. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2152. },
  2153. "runtimeTargets": {
  2154. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2155. "assetType": "runtime",
  2156. "rid": "win"
  2157. }
  2158. }
  2159. },
  2160. "System.Text.Encoding.Extensions/4.0.11": {
  2161. "type": "package",
  2162. "dependencies": {
  2163. "Microsoft.NETCore.Platforms": "1.0.1",
  2164. "Microsoft.NETCore.Targets": "1.0.1",
  2165. "System.Runtime": "4.1.0",
  2166. "System.Text.Encoding": "4.0.11"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2170. }
  2171. },
  2172. "System.Text.Json/5.0.0": {
  2173. "type": "package",
  2174. "compile": {
  2175. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2176. },
  2177. "runtime": {
  2178. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2179. }
  2180. },
  2181. "System.Text.RegularExpressions/4.1.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "System.Collections": "4.0.11",
  2185. "System.Globalization": "4.0.11",
  2186. "System.Resources.ResourceManager": "4.0.1",
  2187. "System.Runtime": "4.1.0",
  2188. "System.Runtime.Extensions": "4.1.0",
  2189. "System.Threading": "4.0.11"
  2190. },
  2191. "compile": {
  2192. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2193. },
  2194. "runtime": {
  2195. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2196. }
  2197. },
  2198. "System.Threading/4.0.11": {
  2199. "type": "package",
  2200. "dependencies": {
  2201. "System.Runtime": "4.1.0",
  2202. "System.Threading.Tasks": "4.0.11"
  2203. },
  2204. "compile": {
  2205. "ref/netstandard1.3/System.Threading.dll": {}
  2206. },
  2207. "runtime": {
  2208. "lib/netstandard1.3/System.Threading.dll": {}
  2209. }
  2210. },
  2211. "System.Threading.Tasks/4.3.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "1.1.0",
  2215. "Microsoft.NETCore.Targets": "1.1.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2220. }
  2221. },
  2222. "System.Threading.Tasks.Extensions/4.0.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "System.Collections": "4.0.11",
  2226. "System.Runtime": "4.1.0",
  2227. "System.Threading.Tasks": "4.0.11"
  2228. },
  2229. "compile": {
  2230. "lib/netstandard1.0/_._": {}
  2231. },
  2232. "runtime": {
  2233. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2234. }
  2235. },
  2236. "System.Threading.Thread/4.0.0": {
  2237. "type": "package",
  2238. "dependencies": {
  2239. "System.Runtime": "4.1.0"
  2240. },
  2241. "compile": {
  2242. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2246. }
  2247. },
  2248. "System.Threading.ThreadPool/4.0.10": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "System.Runtime": "4.1.0",
  2252. "System.Runtime.Handles": "4.0.1"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2256. },
  2257. "runtime": {
  2258. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2259. }
  2260. },
  2261. "System.Threading.Timer/4.0.1": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "Microsoft.NETCore.Platforms": "1.0.1",
  2265. "Microsoft.NETCore.Targets": "1.0.1",
  2266. "System.Runtime": "4.1.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2270. }
  2271. },
  2272. "System.Windows.Extensions/5.0.0": {
  2273. "type": "package",
  2274. "dependencies": {
  2275. "System.Drawing.Common": "5.0.0"
  2276. },
  2277. "compile": {
  2278. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2279. },
  2280. "runtime": {
  2281. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "win"
  2287. }
  2288. }
  2289. },
  2290. "System.Xml.ReaderWriter/4.0.11": {
  2291. "type": "package",
  2292. "dependencies": {
  2293. "System.Collections": "4.0.11",
  2294. "System.Diagnostics.Debug": "4.0.11",
  2295. "System.Globalization": "4.0.11",
  2296. "System.IO": "4.1.0",
  2297. "System.IO.FileSystem": "4.0.1",
  2298. "System.IO.FileSystem.Primitives": "4.0.1",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.Extensions": "4.1.0",
  2302. "System.Runtime.InteropServices": "4.1.0",
  2303. "System.Text.Encoding": "4.0.11",
  2304. "System.Text.Encoding.Extensions": "4.0.11",
  2305. "System.Text.RegularExpressions": "4.1.0",
  2306. "System.Threading.Tasks": "4.0.11",
  2307. "System.Threading.Tasks.Extensions": "4.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2314. }
  2315. },
  2316. "System.Xml.XDocument/4.0.11": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "System.Collections": "4.0.11",
  2320. "System.Diagnostics.Debug": "4.0.11",
  2321. "System.Diagnostics.Tools": "4.0.1",
  2322. "System.Globalization": "4.0.11",
  2323. "System.IO": "4.1.0",
  2324. "System.Reflection": "4.1.0",
  2325. "System.Resources.ResourceManager": "4.0.1",
  2326. "System.Runtime": "4.1.0",
  2327. "System.Runtime.Extensions": "4.1.0",
  2328. "System.Text.Encoding": "4.0.11",
  2329. "System.Threading": "4.0.11",
  2330. "System.Xml.ReaderWriter": "4.0.11"
  2331. },
  2332. "compile": {
  2333. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2334. },
  2335. "runtime": {
  2336. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2337. }
  2338. },
  2339. "System.Xml.XmlDocument/4.0.1": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "System.Collections": "4.0.11",
  2343. "System.Diagnostics.Debug": "4.0.11",
  2344. "System.Globalization": "4.0.11",
  2345. "System.IO": "4.1.0",
  2346. "System.Resources.ResourceManager": "4.0.1",
  2347. "System.Runtime": "4.1.0",
  2348. "System.Runtime.Extensions": "4.1.0",
  2349. "System.Text.Encoding": "4.0.11",
  2350. "System.Threading": "4.0.11",
  2351. "System.Xml.ReaderWriter": "4.0.11"
  2352. },
  2353. "compile": {
  2354. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2355. },
  2356. "runtime": {
  2357. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2358. }
  2359. },
  2360. "System.Xml.XPath/4.0.1": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Collections": "4.0.11",
  2364. "System.Diagnostics.Debug": "4.0.11",
  2365. "System.Globalization": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Threading": "4.0.11",
  2371. "System.Xml.ReaderWriter": "4.0.11"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2375. },
  2376. "runtime": {
  2377. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2378. }
  2379. },
  2380. "System.Xml.XPath.XmlDocument/4.0.1": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Collections": "4.0.11",
  2384. "System.Globalization": "4.0.11",
  2385. "System.IO": "4.1.0",
  2386. "System.Resources.ResourceManager": "4.0.1",
  2387. "System.Runtime": "4.1.0",
  2388. "System.Runtime.Extensions": "4.1.0",
  2389. "System.Threading": "4.0.11",
  2390. "System.Xml.ReaderWriter": "4.0.11",
  2391. "System.Xml.XPath": "4.0.1",
  2392. "System.Xml.XmlDocument": "4.0.1"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2399. }
  2400. }
  2401. }
  2402. },
  2403. "libraries": {
  2404. "AutoMapper/10.1.1": {
  2405. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2406. "type": "package",
  2407. "path": "automapper/10.1.1",
  2408. "files": [
  2409. ".nupkg.metadata",
  2410. ".signature.p7s",
  2411. "automapper.10.1.1.nupkg.sha512",
  2412. "automapper.nuspec",
  2413. "icon.png",
  2414. "lib/net461/AutoMapper.dll",
  2415. "lib/net461/AutoMapper.xml",
  2416. "lib/netstandard2.0/AutoMapper.dll",
  2417. "lib/netstandard2.0/AutoMapper.xml"
  2418. ]
  2419. },
  2420. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2421. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2422. "type": "package",
  2423. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2424. "files": [
  2425. ".nupkg.metadata",
  2426. ".signature.p7s",
  2427. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2428. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2429. "icon.png",
  2430. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2431. ]
  2432. },
  2433. "BouncyCastle.NetCore/1.8.3": {
  2434. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2435. "type": "package",
  2436. "path": "bouncycastle.netcore/1.8.3",
  2437. "files": [
  2438. ".nupkg.metadata",
  2439. ".signature.p7s",
  2440. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2441. "bouncycastle.netcore.nuspec",
  2442. "lib/Mono/BouncyCastle.Crypto.dll",
  2443. "lib/Mono/BouncyCastle.Crypto.xml",
  2444. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2445. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2446. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2447. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2448. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2449. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2450. "lib/net20/BouncyCastle.Crypto.dll",
  2451. "lib/net20/BouncyCastle.Crypto.xml",
  2452. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2453. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2454. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2455. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2456. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2457. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2458. ]
  2459. },
  2460. "Flurl/3.0.2": {
  2461. "sha512": "1/6mqdzGCTdAekbWkVZBTylCV+8g3JUSTXRBngRVR274S+RsAYNRF79GbDoDsPfMKu8VPc9HkQWdBEAncK1PQQ==",
  2462. "type": "package",
  2463. "path": "flurl/3.0.2",
  2464. "files": [
  2465. ".nupkg.metadata",
  2466. ".signature.p7s",
  2467. "flurl.3.0.2.nupkg.sha512",
  2468. "flurl.nuspec",
  2469. "icon.png",
  2470. "lib/net461/Flurl.dll",
  2471. "lib/net461/Flurl.pdb",
  2472. "lib/net461/Flurl.xml",
  2473. "lib/net472/Flurl.dll",
  2474. "lib/net472/Flurl.pdb",
  2475. "lib/net472/Flurl.xml",
  2476. "lib/netstandard2.0/Flurl.dll",
  2477. "lib/netstandard2.0/Flurl.pdb",
  2478. "lib/netstandard2.0/Flurl.xml"
  2479. ]
  2480. },
  2481. "Flurl.Http/3.2.0": {
  2482. "sha512": "5S8YiJm5CyRFO418GG9PDrsgmGEaZJtZLUqk3xqBKrfx7W9eKtOSpeji/GwAL+tSgNTALKBPvBKTaT4S83Oo+w==",
  2483. "type": "package",
  2484. "path": "flurl.http/3.2.0",
  2485. "files": [
  2486. ".nupkg.metadata",
  2487. ".signature.p7s",
  2488. "flurl.http.3.2.0.nupkg.sha512",
  2489. "flurl.http.nuspec",
  2490. "icon.png",
  2491. "lib/net461/Flurl.Http.dll",
  2492. "lib/net461/Flurl.Http.pdb",
  2493. "lib/net461/Flurl.xml",
  2494. "lib/net472/Flurl.Http.dll",
  2495. "lib/net472/Flurl.Http.pdb",
  2496. "lib/net472/Flurl.xml",
  2497. "lib/netstandard2.0/Flurl.Http.dll",
  2498. "lib/netstandard2.0/Flurl.Http.pdb",
  2499. "lib/netstandard2.0/Flurl.xml"
  2500. ]
  2501. },
  2502. "Google.Protobuf/3.11.4": {
  2503. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2504. "type": "package",
  2505. "path": "google.protobuf/3.11.4",
  2506. "files": [
  2507. ".nupkg.metadata",
  2508. ".signature.p7s",
  2509. "google.protobuf.3.11.4.nupkg.sha512",
  2510. "google.protobuf.nuspec",
  2511. "lib/net45/Google.Protobuf.dll",
  2512. "lib/net45/Google.Protobuf.pdb",
  2513. "lib/net45/Google.Protobuf.xml",
  2514. "lib/netstandard1.0/Google.Protobuf.dll",
  2515. "lib/netstandard1.0/Google.Protobuf.pdb",
  2516. "lib/netstandard1.0/Google.Protobuf.xml",
  2517. "lib/netstandard2.0/Google.Protobuf.dll",
  2518. "lib/netstandard2.0/Google.Protobuf.pdb",
  2519. "lib/netstandard2.0/Google.Protobuf.xml"
  2520. ]
  2521. },
  2522. "K4os.Compression.LZ4/1.1.11": {
  2523. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2524. "type": "package",
  2525. "path": "k4os.compression.lz4/1.1.11",
  2526. "files": [
  2527. ".nupkg.metadata",
  2528. ".signature.p7s",
  2529. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2530. "k4os.compression.lz4.nuspec",
  2531. "lib/net45/K4os.Compression.LZ4.dll",
  2532. "lib/net45/K4os.Compression.LZ4.xml",
  2533. "lib/net46/K4os.Compression.LZ4.dll",
  2534. "lib/net46/K4os.Compression.LZ4.xml",
  2535. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2536. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2537. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2538. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2539. ]
  2540. },
  2541. "K4os.Compression.LZ4.Streams/1.1.11": {
  2542. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2543. "type": "package",
  2544. "path": "k4os.compression.lz4.streams/1.1.11",
  2545. "files": [
  2546. ".nupkg.metadata",
  2547. ".signature.p7s",
  2548. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2549. "k4os.compression.lz4.streams.nuspec",
  2550. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2551. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2552. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2553. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2554. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2555. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2556. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2557. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2558. ]
  2559. },
  2560. "K4os.Hash.xxHash/1.0.6": {
  2561. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2562. "type": "package",
  2563. "path": "k4os.hash.xxhash/1.0.6",
  2564. "files": [
  2565. ".nupkg.metadata",
  2566. ".signature.p7s",
  2567. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2568. "k4os.hash.xxhash.nuspec",
  2569. "lib/net45/K4os.Hash.xxHash.dll",
  2570. "lib/net45/K4os.Hash.xxHash.xml",
  2571. "lib/net46/K4os.Hash.xxHash.dll",
  2572. "lib/net46/K4os.Hash.xxHash.xml",
  2573. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2574. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2575. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2576. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2577. ]
  2578. },
  2579. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2580. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2581. "type": "package",
  2582. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2583. "files": [
  2584. ".nupkg.metadata",
  2585. ".signature.p7s",
  2586. "LICENSE.TXT",
  2587. "THIRD-PARTY-NOTICES.TXT",
  2588. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2589. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2590. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2591. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2592. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2593. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2594. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2595. "microsoft.bcl.asyncinterfaces.nuspec",
  2596. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2597. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2598. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2599. "useSharedDesignerContext.txt",
  2600. "version.txt"
  2601. ]
  2602. },
  2603. "Microsoft.Bcl.HashCode/1.1.0": {
  2604. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  2605. "type": "package",
  2606. "path": "microsoft.bcl.hashcode/1.1.0",
  2607. "files": [
  2608. ".nupkg.metadata",
  2609. ".signature.p7s",
  2610. "LICENSE.TXT",
  2611. "THIRD-PARTY-NOTICES.TXT",
  2612. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2613. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2614. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2615. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2616. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2617. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2618. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2619. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2620. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  2621. "microsoft.bcl.hashcode.nuspec",
  2622. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2623. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2624. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2625. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2626. "useSharedDesignerContext.txt",
  2627. "version.txt"
  2628. ]
  2629. },
  2630. "Microsoft.CSharp/4.7.0": {
  2631. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2632. "type": "package",
  2633. "path": "microsoft.csharp/4.7.0",
  2634. "files": [
  2635. ".nupkg.metadata",
  2636. ".signature.p7s",
  2637. "LICENSE.TXT",
  2638. "THIRD-PARTY-NOTICES.TXT",
  2639. "lib/MonoAndroid10/_._",
  2640. "lib/MonoTouch10/_._",
  2641. "lib/net45/_._",
  2642. "lib/netcore50/Microsoft.CSharp.dll",
  2643. "lib/netcoreapp2.0/_._",
  2644. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2645. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2646. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2647. "lib/portable-net45+win8+wp8+wpa81/_._",
  2648. "lib/uap10.0.16299/_._",
  2649. "lib/win8/_._",
  2650. "lib/wp80/_._",
  2651. "lib/wpa81/_._",
  2652. "lib/xamarinios10/_._",
  2653. "lib/xamarinmac20/_._",
  2654. "lib/xamarintvos10/_._",
  2655. "lib/xamarinwatchos10/_._",
  2656. "microsoft.csharp.4.7.0.nupkg.sha512",
  2657. "microsoft.csharp.nuspec",
  2658. "ref/MonoAndroid10/_._",
  2659. "ref/MonoTouch10/_._",
  2660. "ref/net45/_._",
  2661. "ref/netcore50/Microsoft.CSharp.dll",
  2662. "ref/netcore50/Microsoft.CSharp.xml",
  2663. "ref/netcore50/de/Microsoft.CSharp.xml",
  2664. "ref/netcore50/es/Microsoft.CSharp.xml",
  2665. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2666. "ref/netcore50/it/Microsoft.CSharp.xml",
  2667. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2668. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2669. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2670. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2671. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2672. "ref/netcoreapp2.0/_._",
  2673. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2674. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2675. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2676. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2677. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2678. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2679. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2680. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2681. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2682. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2683. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2684. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2685. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2686. "ref/portable-net45+win8+wp8+wpa81/_._",
  2687. "ref/uap10.0.16299/_._",
  2688. "ref/win8/_._",
  2689. "ref/wp80/_._",
  2690. "ref/wpa81/_._",
  2691. "ref/xamarinios10/_._",
  2692. "ref/xamarinmac20/_._",
  2693. "ref/xamarintvos10/_._",
  2694. "ref/xamarinwatchos10/_._",
  2695. "useSharedDesignerContext.txt",
  2696. "version.txt"
  2697. ]
  2698. },
  2699. "Microsoft.EntityFrameworkCore/3.1.1": {
  2700. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  2701. "type": "package",
  2702. "path": "microsoft.entityframeworkcore/3.1.1",
  2703. "files": [
  2704. ".nupkg.metadata",
  2705. ".signature.p7s",
  2706. "Icon.png",
  2707. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  2708. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  2709. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  2710. "microsoft.entityframeworkcore.nuspec"
  2711. ]
  2712. },
  2713. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  2714. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  2715. "type": "package",
  2716. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  2717. "files": [
  2718. ".nupkg.metadata",
  2719. ".signature.p7s",
  2720. "Icon.png",
  2721. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2722. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2723. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  2724. "microsoft.entityframeworkcore.abstractions.nuspec"
  2725. ]
  2726. },
  2727. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  2728. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  2729. "type": "package",
  2730. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  2731. "files": [
  2732. ".nupkg.metadata",
  2733. ".signature.p7s",
  2734. "Icon.png",
  2735. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2736. "lib/netstandard2.0/_._",
  2737. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  2738. "microsoft.entityframeworkcore.analyzers.nuspec"
  2739. ]
  2740. },
  2741. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  2742. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  2743. "type": "package",
  2744. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  2745. "files": [
  2746. ".nupkg.metadata",
  2747. ".signature.p7s",
  2748. "Icon.png",
  2749. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2750. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2751. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  2752. "microsoft.entityframeworkcore.relational.nuspec"
  2753. ]
  2754. },
  2755. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  2756. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  2757. "type": "package",
  2758. "path": "microsoft.extensions.apidescription.server/3.0.0",
  2759. "hasTools": true,
  2760. "files": [
  2761. ".nupkg.metadata",
  2762. ".signature.p7s",
  2763. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2764. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2765. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2766. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2767. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  2768. "microsoft.extensions.apidescription.server.nuspec",
  2769. "tools/Newtonsoft.Json.dll",
  2770. "tools/dotnet-getdocument.deps.json",
  2771. "tools/dotnet-getdocument.dll",
  2772. "tools/dotnet-getdocument.runtimeconfig.json",
  2773. "tools/net461-x86/GetDocument.Insider.exe",
  2774. "tools/net461-x86/GetDocument.Insider.exe.config",
  2775. "tools/net461/GetDocument.Insider.exe",
  2776. "tools/net461/GetDocument.Insider.exe.config",
  2777. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  2778. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  2779. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  2780. ]
  2781. },
  2782. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  2783. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  2784. "type": "package",
  2785. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  2786. "files": [
  2787. ".nupkg.metadata",
  2788. ".signature.p7s",
  2789. "Icon.png",
  2790. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  2791. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  2792. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2793. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2794. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  2795. "microsoft.extensions.caching.abstractions.nuspec"
  2796. ]
  2797. },
  2798. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  2799. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  2800. "type": "package",
  2801. "path": "microsoft.extensions.caching.memory/3.1.1",
  2802. "files": [
  2803. ".nupkg.metadata",
  2804. ".signature.p7s",
  2805. "Icon.png",
  2806. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  2807. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  2808. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2809. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2810. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  2811. "microsoft.extensions.caching.memory.nuspec"
  2812. ]
  2813. },
  2814. "Microsoft.Extensions.Configuration/5.0.0": {
  2815. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  2816. "type": "package",
  2817. "path": "microsoft.extensions.configuration/5.0.0",
  2818. "files": [
  2819. ".nupkg.metadata",
  2820. ".signature.p7s",
  2821. "Icon.png",
  2822. "LICENSE.TXT",
  2823. "THIRD-PARTY-NOTICES.TXT",
  2824. "lib/net461/Microsoft.Extensions.Configuration.dll",
  2825. "lib/net461/Microsoft.Extensions.Configuration.xml",
  2826. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2827. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2828. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  2829. "microsoft.extensions.configuration.nuspec",
  2830. "useSharedDesignerContext.txt",
  2831. "version.txt"
  2832. ]
  2833. },
  2834. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  2835. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  2836. "type": "package",
  2837. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  2838. "files": [
  2839. ".nupkg.metadata",
  2840. ".signature.p7s",
  2841. "Icon.png",
  2842. "LICENSE.TXT",
  2843. "THIRD-PARTY-NOTICES.TXT",
  2844. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2845. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2846. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2848. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  2849. "microsoft.extensions.configuration.abstractions.nuspec",
  2850. "useSharedDesignerContext.txt",
  2851. "version.txt"
  2852. ]
  2853. },
  2854. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  2855. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  2856. "type": "package",
  2857. "path": "microsoft.extensions.configuration.binder/5.0.0",
  2858. "files": [
  2859. ".nupkg.metadata",
  2860. ".signature.p7s",
  2861. "Icon.png",
  2862. "LICENSE.TXT",
  2863. "THIRD-PARTY-NOTICES.TXT",
  2864. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  2865. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  2866. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2867. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2868. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  2869. "microsoft.extensions.configuration.binder.nuspec",
  2870. "useSharedDesignerContext.txt",
  2871. "version.txt"
  2872. ]
  2873. },
  2874. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  2875. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  2876. "type": "package",
  2877. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  2878. "files": [
  2879. ".nupkg.metadata",
  2880. ".signature.p7s",
  2881. "Icon.png",
  2882. "LICENSE.TXT",
  2883. "THIRD-PARTY-NOTICES.TXT",
  2884. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  2885. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  2886. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  2887. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  2888. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  2889. "microsoft.extensions.configuration.commandline.nuspec",
  2890. "useSharedDesignerContext.txt",
  2891. "version.txt"
  2892. ]
  2893. },
  2894. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  2895. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  2896. "type": "package",
  2897. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  2898. "files": [
  2899. ".nupkg.metadata",
  2900. ".signature.p7s",
  2901. "Icon.png",
  2902. "LICENSE.TXT",
  2903. "THIRD-PARTY-NOTICES.TXT",
  2904. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2905. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2906. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2907. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2908. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  2909. "microsoft.extensions.configuration.environmentvariables.nuspec",
  2910. "useSharedDesignerContext.txt",
  2911. "version.txt"
  2912. ]
  2913. },
  2914. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  2915. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  2916. "type": "package",
  2917. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  2918. "files": [
  2919. ".nupkg.metadata",
  2920. ".signature.p7s",
  2921. "Icon.png",
  2922. "LICENSE.TXT",
  2923. "THIRD-PARTY-NOTICES.TXT",
  2924. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2925. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2926. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2927. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2928. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  2929. "microsoft.extensions.configuration.fileextensions.nuspec",
  2930. "useSharedDesignerContext.txt",
  2931. "version.txt"
  2932. ]
  2933. },
  2934. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  2935. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  2936. "type": "package",
  2937. "path": "microsoft.extensions.configuration.json/5.0.0",
  2938. "files": [
  2939. ".nupkg.metadata",
  2940. ".signature.p7s",
  2941. "Icon.png",
  2942. "LICENSE.TXT",
  2943. "THIRD-PARTY-NOTICES.TXT",
  2944. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  2945. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  2946. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  2947. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  2948. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  2949. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  2950. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  2951. "microsoft.extensions.configuration.json.nuspec",
  2952. "useSharedDesignerContext.txt",
  2953. "version.txt"
  2954. ]
  2955. },
  2956. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  2957. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  2958. "type": "package",
  2959. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. ".signature.p7s",
  2963. "Icon.png",
  2964. "LICENSE.TXT",
  2965. "THIRD-PARTY-NOTICES.TXT",
  2966. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  2967. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  2968. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2969. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2970. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2971. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2972. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  2973. "microsoft.extensions.configuration.usersecrets.nuspec",
  2974. "useSharedDesignerContext.txt",
  2975. "version.txt"
  2976. ]
  2977. },
  2978. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  2979. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  2980. "type": "package",
  2981. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  2982. "files": [
  2983. ".nupkg.metadata",
  2984. ".signature.p7s",
  2985. "Icon.png",
  2986. "LICENSE.TXT",
  2987. "THIRD-PARTY-NOTICES.TXT",
  2988. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2989. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2990. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  2991. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  2992. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2993. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2994. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2995. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2996. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  2997. "microsoft.extensions.dependencyinjection.nuspec",
  2998. "useSharedDesignerContext.txt",
  2999. "version.txt"
  3000. ]
  3001. },
  3002. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3003. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3004. "type": "package",
  3005. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "Icon.png",
  3010. "LICENSE.TXT",
  3011. "THIRD-PARTY-NOTICES.TXT",
  3012. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3013. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3014. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3015. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3016. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3017. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3018. "useSharedDesignerContext.txt",
  3019. "version.txt"
  3020. ]
  3021. },
  3022. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3023. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  3024. "type": "package",
  3025. "path": "microsoft.extensions.dependencymodel/3.1.6",
  3026. "files": [
  3027. ".nupkg.metadata",
  3028. ".signature.p7s",
  3029. "Icon.png",
  3030. "LICENSE.TXT",
  3031. "THIRD-PARTY-NOTICES.TXT",
  3032. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3033. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  3034. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3035. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  3036. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3037. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  3038. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3039. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3040. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  3041. "microsoft.extensions.dependencymodel.nuspec"
  3042. ]
  3043. },
  3044. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3045. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3046. "type": "package",
  3047. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3048. "files": [
  3049. ".nupkg.metadata",
  3050. ".signature.p7s",
  3051. "Icon.png",
  3052. "LICENSE.TXT",
  3053. "THIRD-PARTY-NOTICES.TXT",
  3054. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3055. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3056. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3057. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3058. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3059. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3060. "useSharedDesignerContext.txt",
  3061. "version.txt"
  3062. ]
  3063. },
  3064. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3065. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3066. "type": "package",
  3067. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3068. "files": [
  3069. ".nupkg.metadata",
  3070. ".signature.p7s",
  3071. "Icon.png",
  3072. "LICENSE.TXT",
  3073. "THIRD-PARTY-NOTICES.TXT",
  3074. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3075. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3076. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3077. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3078. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3079. "microsoft.extensions.fileproviders.physical.nuspec",
  3080. "useSharedDesignerContext.txt",
  3081. "version.txt"
  3082. ]
  3083. },
  3084. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3085. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3086. "type": "package",
  3087. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "Icon.png",
  3092. "LICENSE.TXT",
  3093. "THIRD-PARTY-NOTICES.TXT",
  3094. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3095. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3096. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3097. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3098. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3099. "microsoft.extensions.filesystemglobbing.nuspec",
  3100. "useSharedDesignerContext.txt",
  3101. "version.txt"
  3102. ]
  3103. },
  3104. "Microsoft.Extensions.Hosting/5.0.0": {
  3105. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  3106. "type": "package",
  3107. "path": "microsoft.extensions.hosting/5.0.0",
  3108. "files": [
  3109. ".nupkg.metadata",
  3110. ".signature.p7s",
  3111. "Icon.png",
  3112. "LICENSE.TXT",
  3113. "THIRD-PARTY-NOTICES.TXT",
  3114. "lib/net461/Microsoft.Extensions.Hosting.dll",
  3115. "lib/net461/Microsoft.Extensions.Hosting.xml",
  3116. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3117. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3118. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  3119. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  3120. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  3121. "microsoft.extensions.hosting.nuspec",
  3122. "useSharedDesignerContext.txt",
  3123. "version.txt"
  3124. ]
  3125. },
  3126. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  3127. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  3128. "type": "package",
  3129. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  3130. "files": [
  3131. ".nupkg.metadata",
  3132. ".signature.p7s",
  3133. "Icon.png",
  3134. "LICENSE.TXT",
  3135. "THIRD-PARTY-NOTICES.TXT",
  3136. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  3137. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  3138. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3139. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3140. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3141. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3142. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  3143. "microsoft.extensions.hosting.abstractions.nuspec",
  3144. "useSharedDesignerContext.txt",
  3145. "version.txt"
  3146. ]
  3147. },
  3148. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  3149. "sha512": "xtIf7KkcLMvYoxoW8pokCgIMXeYYGBbrJmuABgQaOc0sylYmSicfdq1Ua/9cRhcTRzWKLWXJRVADDR00ID+GYw==",
  3150. "type": "package",
  3151. "path": "microsoft.extensions.hosting.windowsservices/5.0.1",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "Icon.png",
  3156. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3157. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3158. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3159. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3160. "microsoft.extensions.hosting.windowsservices.5.0.1.nupkg.sha512",
  3161. "microsoft.extensions.hosting.windowsservices.nuspec"
  3162. ]
  3163. },
  3164. "Microsoft.Extensions.Logging/5.0.0": {
  3165. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3166. "type": "package",
  3167. "path": "microsoft.extensions.logging/5.0.0",
  3168. "files": [
  3169. ".nupkg.metadata",
  3170. ".signature.p7s",
  3171. "Icon.png",
  3172. "LICENSE.TXT",
  3173. "THIRD-PARTY-NOTICES.TXT",
  3174. "lib/net461/Microsoft.Extensions.Logging.dll",
  3175. "lib/net461/Microsoft.Extensions.Logging.xml",
  3176. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3177. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3178. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3179. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3180. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3181. "microsoft.extensions.logging.nuspec",
  3182. "useSharedDesignerContext.txt",
  3183. "version.txt"
  3184. ]
  3185. },
  3186. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3187. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3188. "type": "package",
  3189. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "Icon.png",
  3194. "LICENSE.TXT",
  3195. "THIRD-PARTY-NOTICES.TXT",
  3196. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3197. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3198. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3199. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3200. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3201. "microsoft.extensions.logging.abstractions.nuspec",
  3202. "useSharedDesignerContext.txt",
  3203. "version.txt"
  3204. ]
  3205. },
  3206. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  3207. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  3208. "type": "package",
  3209. "path": "microsoft.extensions.logging.configuration/5.0.0",
  3210. "files": [
  3211. ".nupkg.metadata",
  3212. ".signature.p7s",
  3213. "Icon.png",
  3214. "LICENSE.TXT",
  3215. "THIRD-PARTY-NOTICES.TXT",
  3216. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  3217. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  3218. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3219. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3220. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  3221. "microsoft.extensions.logging.configuration.nuspec",
  3222. "useSharedDesignerContext.txt",
  3223. "version.txt"
  3224. ]
  3225. },
  3226. "Microsoft.Extensions.Logging.Console/5.0.0": {
  3227. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  3228. "type": "package",
  3229. "path": "microsoft.extensions.logging.console/5.0.0",
  3230. "files": [
  3231. ".nupkg.metadata",
  3232. ".signature.p7s",
  3233. "Icon.png",
  3234. "LICENSE.TXT",
  3235. "THIRD-PARTY-NOTICES.TXT",
  3236. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  3237. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  3238. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  3239. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  3240. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3241. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3242. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  3243. "microsoft.extensions.logging.console.nuspec",
  3244. "useSharedDesignerContext.txt",
  3245. "version.txt"
  3246. ]
  3247. },
  3248. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  3249. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  3250. "type": "package",
  3251. "path": "microsoft.extensions.logging.debug/5.0.0",
  3252. "files": [
  3253. ".nupkg.metadata",
  3254. ".signature.p7s",
  3255. "Icon.png",
  3256. "LICENSE.TXT",
  3257. "THIRD-PARTY-NOTICES.TXT",
  3258. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  3259. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  3260. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  3261. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  3262. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  3263. "microsoft.extensions.logging.debug.nuspec",
  3264. "useSharedDesignerContext.txt",
  3265. "version.txt"
  3266. ]
  3267. },
  3268. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  3269. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  3270. "type": "package",
  3271. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  3272. "files": [
  3273. ".nupkg.metadata",
  3274. ".signature.p7s",
  3275. "Icon.png",
  3276. "LICENSE.TXT",
  3277. "THIRD-PARTY-NOTICES.TXT",
  3278. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  3279. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  3280. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  3281. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  3282. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  3283. "microsoft.extensions.logging.eventlog.nuspec",
  3284. "useSharedDesignerContext.txt",
  3285. "version.txt"
  3286. ]
  3287. },
  3288. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  3289. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  3290. "type": "package",
  3291. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  3292. "files": [
  3293. ".nupkg.metadata",
  3294. ".signature.p7s",
  3295. "Icon.png",
  3296. "LICENSE.TXT",
  3297. "THIRD-PARTY-NOTICES.TXT",
  3298. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  3299. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  3300. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  3301. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  3302. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  3303. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  3304. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  3305. "microsoft.extensions.logging.eventsource.nuspec",
  3306. "useSharedDesignerContext.txt",
  3307. "version.txt"
  3308. ]
  3309. },
  3310. "Microsoft.Extensions.Options/5.0.0": {
  3311. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3312. "type": "package",
  3313. "path": "microsoft.extensions.options/5.0.0",
  3314. "files": [
  3315. ".nupkg.metadata",
  3316. ".signature.p7s",
  3317. "Icon.png",
  3318. "LICENSE.TXT",
  3319. "THIRD-PARTY-NOTICES.TXT",
  3320. "lib/net461/Microsoft.Extensions.Options.dll",
  3321. "lib/net461/Microsoft.Extensions.Options.xml",
  3322. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3323. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3324. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3325. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3326. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3327. "microsoft.extensions.options.nuspec",
  3328. "useSharedDesignerContext.txt",
  3329. "version.txt"
  3330. ]
  3331. },
  3332. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  3333. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  3334. "type": "package",
  3335. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  3336. "files": [
  3337. ".nupkg.metadata",
  3338. ".signature.p7s",
  3339. "Icon.png",
  3340. "LICENSE.TXT",
  3341. "THIRD-PARTY-NOTICES.TXT",
  3342. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3343. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3344. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3345. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3346. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  3347. "microsoft.extensions.options.configurationextensions.nuspec",
  3348. "useSharedDesignerContext.txt",
  3349. "version.txt"
  3350. ]
  3351. },
  3352. "Microsoft.Extensions.Primitives/5.0.0": {
  3353. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  3354. "type": "package",
  3355. "path": "microsoft.extensions.primitives/5.0.0",
  3356. "files": [
  3357. ".nupkg.metadata",
  3358. ".signature.p7s",
  3359. "Icon.png",
  3360. "LICENSE.TXT",
  3361. "THIRD-PARTY-NOTICES.TXT",
  3362. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3363. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3364. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  3365. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  3366. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3367. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3368. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  3369. "microsoft.extensions.primitives.nuspec",
  3370. "useSharedDesignerContext.txt",
  3371. "version.txt"
  3372. ]
  3373. },
  3374. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  3375. "sha512": "qSLfRLk19E1+Gt2gdPzp5Y4YAlXi1KueXpMJpt0qug6h4PtxbnGnxFBM6bdCIJqoN75LTPztqKdpjla2NIltmA==",
  3376. "type": "package",
  3377. "path": "microsoft.identitymodel.jsonwebtokens/6.11.0",
  3378. "files": [
  3379. ".nupkg.metadata",
  3380. ".signature.p7s",
  3381. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3382. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3383. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3384. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3385. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3386. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3387. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3388. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3389. "microsoft.identitymodel.jsonwebtokens.6.11.0.nupkg.sha512",
  3390. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3391. ]
  3392. },
  3393. "Microsoft.IdentityModel.Logging/6.11.0": {
  3394. "sha512": "81votFg2SzidAB8frGlDV+jCCzfBWWtnKASZTddAziHuB8fT/82s1x7Kty+u01XKtKcrPdfpvbWrIUHdc/C9pw==",
  3395. "type": "package",
  3396. "path": "microsoft.identitymodel.logging/6.11.0",
  3397. "files": [
  3398. ".nupkg.metadata",
  3399. ".signature.p7s",
  3400. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3401. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3402. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3403. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3404. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3405. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3406. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3407. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3408. "microsoft.identitymodel.logging.6.11.0.nupkg.sha512",
  3409. "microsoft.identitymodel.logging.nuspec"
  3410. ]
  3411. },
  3412. "Microsoft.IdentityModel.Tokens/6.11.0": {
  3413. "sha512": "zm0aBLKCDybRQwOinG0cDXobjfcJgXIcJfB5n7gA8KHjswELcET8BiNx54j6n4VF8w6+UxUIdEtO3RMIXQZkfg==",
  3414. "type": "package",
  3415. "path": "microsoft.identitymodel.tokens/6.11.0",
  3416. "files": [
  3417. ".nupkg.metadata",
  3418. ".signature.p7s",
  3419. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3420. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3421. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3422. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3423. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3424. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3425. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3426. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3427. "microsoft.identitymodel.tokens.6.11.0.nupkg.sha512",
  3428. "microsoft.identitymodel.tokens.nuspec"
  3429. ]
  3430. },
  3431. "Microsoft.NETCore.Platforms/5.0.0": {
  3432. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3433. "type": "package",
  3434. "path": "microsoft.netcore.platforms/5.0.0",
  3435. "files": [
  3436. ".nupkg.metadata",
  3437. ".signature.p7s",
  3438. "Icon.png",
  3439. "LICENSE.TXT",
  3440. "THIRD-PARTY-NOTICES.TXT",
  3441. "lib/netstandard1.0/_._",
  3442. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3443. "microsoft.netcore.platforms.nuspec",
  3444. "runtime.json",
  3445. "useSharedDesignerContext.txt",
  3446. "version.txt"
  3447. ]
  3448. },
  3449. "Microsoft.NETCore.Targets/1.1.0": {
  3450. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3451. "type": "package",
  3452. "path": "microsoft.netcore.targets/1.1.0",
  3453. "files": [
  3454. ".nupkg.metadata",
  3455. "ThirdPartyNotices.txt",
  3456. "dotnet_library_license.txt",
  3457. "lib/netstandard1.0/_._",
  3458. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3459. "microsoft.netcore.targets.nuspec",
  3460. "runtime.json"
  3461. ]
  3462. },
  3463. "Microsoft.OpenApi/1.2.3": {
  3464. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3465. "type": "package",
  3466. "path": "microsoft.openapi/1.2.3",
  3467. "files": [
  3468. ".nupkg.metadata",
  3469. ".signature.p7s",
  3470. "lib/net46/Microsoft.OpenApi.dll",
  3471. "lib/net46/Microsoft.OpenApi.pdb",
  3472. "lib/net46/Microsoft.OpenApi.xml",
  3473. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3474. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3475. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3476. "microsoft.openapi.1.2.3.nupkg.sha512",
  3477. "microsoft.openapi.nuspec"
  3478. ]
  3479. },
  3480. "Microsoft.Win32.Primitives/4.0.1": {
  3481. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  3482. "type": "package",
  3483. "path": "microsoft.win32.primitives/4.0.1",
  3484. "files": [
  3485. ".nupkg.metadata",
  3486. "ThirdPartyNotices.txt",
  3487. "dotnet_library_license.txt",
  3488. "lib/MonoAndroid10/_._",
  3489. "lib/MonoTouch10/_._",
  3490. "lib/net46/Microsoft.Win32.Primitives.dll",
  3491. "lib/xamarinios10/_._",
  3492. "lib/xamarinmac20/_._",
  3493. "lib/xamarintvos10/_._",
  3494. "lib/xamarinwatchos10/_._",
  3495. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  3496. "microsoft.win32.primitives.nuspec",
  3497. "ref/MonoAndroid10/_._",
  3498. "ref/MonoTouch10/_._",
  3499. "ref/net46/Microsoft.Win32.Primitives.dll",
  3500. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3501. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3502. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3503. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3504. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3505. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3506. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3507. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3508. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3509. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3510. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3511. "ref/xamarinios10/_._",
  3512. "ref/xamarinmac20/_._",
  3513. "ref/xamarintvos10/_._",
  3514. "ref/xamarinwatchos10/_._"
  3515. ]
  3516. },
  3517. "Microsoft.Win32.Registry/5.0.0": {
  3518. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  3519. "type": "package",
  3520. "path": "microsoft.win32.registry/5.0.0",
  3521. "files": [
  3522. ".nupkg.metadata",
  3523. ".signature.p7s",
  3524. "Icon.png",
  3525. "LICENSE.TXT",
  3526. "THIRD-PARTY-NOTICES.TXT",
  3527. "lib/net46/Microsoft.Win32.Registry.dll",
  3528. "lib/net461/Microsoft.Win32.Registry.dll",
  3529. "lib/net461/Microsoft.Win32.Registry.xml",
  3530. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3531. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3532. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3533. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  3534. "microsoft.win32.registry.nuspec",
  3535. "ref/net46/Microsoft.Win32.Registry.dll",
  3536. "ref/net461/Microsoft.Win32.Registry.dll",
  3537. "ref/net461/Microsoft.Win32.Registry.xml",
  3538. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3539. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3540. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3541. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3542. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3543. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3544. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3545. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3546. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3547. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3548. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3549. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3550. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3551. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3552. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3553. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3554. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3555. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3556. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3557. "useSharedDesignerContext.txt",
  3558. "version.txt"
  3559. ]
  3560. },
  3561. "Microsoft.Win32.SystemEvents/5.0.0": {
  3562. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  3563. "type": "package",
  3564. "path": "microsoft.win32.systemevents/5.0.0",
  3565. "files": [
  3566. ".nupkg.metadata",
  3567. ".signature.p7s",
  3568. "Icon.png",
  3569. "LICENSE.TXT",
  3570. "THIRD-PARTY-NOTICES.TXT",
  3571. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3572. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3573. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3574. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3575. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  3576. "microsoft.win32.systemevents.nuspec",
  3577. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3578. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3579. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3580. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3581. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3582. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3583. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3584. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3585. "useSharedDesignerContext.txt",
  3586. "version.txt"
  3587. ]
  3588. },
  3589. "MySql.Data/8.0.22": {
  3590. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  3591. "type": "package",
  3592. "path": "mysql.data/8.0.22",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "lib/net452/MySql.Data.dll",
  3597. "lib/net452/MySql.Data.xml",
  3598. "lib/net452/Ubiety.Dns.Core.dll",
  3599. "lib/net452/Zstandard.Net.dll",
  3600. "lib/net48/MySql.Data.dll",
  3601. "lib/net48/MySql.Data.xml",
  3602. "lib/net48/Ubiety.Dns.Core.dll",
  3603. "lib/net48/Zstandard.Net.dll",
  3604. "lib/net5.0/MySql.Data.dll",
  3605. "lib/net5.0/MySql.Data.xml",
  3606. "lib/net5.0/Ubiety.Dns.Core.dll",
  3607. "lib/net5.0/Zstandard.Net.dll",
  3608. "lib/netstandard2.0/MySql.Data.dll",
  3609. "lib/netstandard2.0/MySql.Data.xml",
  3610. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3611. "lib/netstandard2.0/Zstandard.Net.dll",
  3612. "lib/netstandard2.1/MySql.Data.dll",
  3613. "lib/netstandard2.1/MySql.Data.xml",
  3614. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3615. "lib/netstandard2.1/Zstandard.Net.dll",
  3616. "mysql.data.8.0.22.nupkg.sha512",
  3617. "mysql.data.nuspec"
  3618. ]
  3619. },
  3620. "MySql.Data.EntityFrameworkCore/8.0.22": {
  3621. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  3622. "type": "package",
  3623. "path": "mysql.data.entityframeworkcore/8.0.22",
  3624. "files": [
  3625. ".nupkg.metadata",
  3626. ".signature.p7s",
  3627. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  3628. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  3629. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  3630. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  3631. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  3632. "mysql.data.entityframeworkcore.nuspec"
  3633. ]
  3634. },
  3635. "NETStandard.Library/1.6.0": {
  3636. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  3637. "type": "package",
  3638. "path": "netstandard.library/1.6.0",
  3639. "files": [
  3640. ".nupkg.metadata",
  3641. "ThirdPartyNotices.txt",
  3642. "dotnet_library_license.txt",
  3643. "netstandard.library.1.6.0.nupkg.sha512",
  3644. "netstandard.library.nuspec"
  3645. ]
  3646. },
  3647. "Newtonsoft.Json/13.0.1": {
  3648. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  3649. "type": "package",
  3650. "path": "newtonsoft.json/13.0.1",
  3651. "files": [
  3652. ".nupkg.metadata",
  3653. ".signature.p7s",
  3654. "LICENSE.md",
  3655. "lib/net20/Newtonsoft.Json.dll",
  3656. "lib/net20/Newtonsoft.Json.xml",
  3657. "lib/net35/Newtonsoft.Json.dll",
  3658. "lib/net35/Newtonsoft.Json.xml",
  3659. "lib/net40/Newtonsoft.Json.dll",
  3660. "lib/net40/Newtonsoft.Json.xml",
  3661. "lib/net45/Newtonsoft.Json.dll",
  3662. "lib/net45/Newtonsoft.Json.xml",
  3663. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3664. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3665. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3666. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3667. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3668. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3669. "newtonsoft.json.13.0.1.nupkg.sha512",
  3670. "newtonsoft.json.nuspec",
  3671. "packageIcon.png"
  3672. ]
  3673. },
  3674. "NLog/4.7.9": {
  3675. "sha512": "Y0dKY5d506ZVcb8dTMp3BSb+jUGaFu/ArvRkgn4daDWKf7qqFXjEFYjqoyTrWkcNguqS6avkwICS0hsFsr4BzA==",
  3676. "type": "package",
  3677. "path": "nlog/4.7.9",
  3678. "files": [
  3679. ".nupkg.metadata",
  3680. ".signature.p7s",
  3681. "lib/monoandroid44/NLog.dll",
  3682. "lib/monoandroid44/NLog.xml",
  3683. "lib/net35/NLog.dll",
  3684. "lib/net35/NLog.xml",
  3685. "lib/net40-client/NLog.dll",
  3686. "lib/net40-client/NLog.xml",
  3687. "lib/net45/NLog.dll",
  3688. "lib/net45/NLog.xml",
  3689. "lib/netstandard1.3/NLog.dll",
  3690. "lib/netstandard1.3/NLog.xml",
  3691. "lib/netstandard1.5/NLog.dll",
  3692. "lib/netstandard1.5/NLog.xml",
  3693. "lib/netstandard2.0/NLog.dll",
  3694. "lib/netstandard2.0/NLog.xml",
  3695. "lib/sl4/NLog.dll",
  3696. "lib/sl4/NLog.xml",
  3697. "lib/sl5/NLog.dll",
  3698. "lib/sl5/NLog.xml",
  3699. "lib/wp8/NLog.dll",
  3700. "lib/wp8/NLog.xml",
  3701. "lib/xamarinios10/NLog.dll",
  3702. "lib/xamarinios10/NLog.xml",
  3703. "nlog.4.7.9.nupkg.sha512",
  3704. "nlog.nuspec"
  3705. ]
  3706. },
  3707. "NLog.Extensions.Logging/1.7.2": {
  3708. "sha512": "0y1QziAUCdePQc4itPOQF3xDcs0iE9NHlIK0hE0eA0+Ef6E9dnJDPveNu7w2ckYaDfJIFHpOoLK8sZmNEyiBCw==",
  3709. "type": "package",
  3710. "path": "nlog.extensions.logging/1.7.2",
  3711. "files": [
  3712. ".nupkg.metadata",
  3713. ".signature.p7s",
  3714. "N.png",
  3715. "lib/net451/NLog.Extensions.Logging.dll",
  3716. "lib/net451/NLog.Extensions.Logging.xml",
  3717. "lib/net461/NLog.Extensions.Logging.dll",
  3718. "lib/net461/NLog.Extensions.Logging.xml",
  3719. "lib/net5.0/NLog.Extensions.Logging.dll",
  3720. "lib/net5.0/NLog.Extensions.Logging.xml",
  3721. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  3722. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  3723. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  3724. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  3725. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  3726. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  3727. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  3728. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  3729. "nlog.extensions.logging.1.7.2.nupkg.sha512",
  3730. "nlog.extensions.logging.nuspec"
  3731. ]
  3732. },
  3733. "NLog.Web.AspNetCore/4.12.0": {
  3734. "sha512": "imBvT0hmVd1bhDpd4cNwurcPDZ9jdHwxH5C3+dzcLQ8stq/wpP/1wbpd3hTzpfrwFkVp06rMXrbdXWcmnw4/Cw==",
  3735. "type": "package",
  3736. "path": "nlog.web.aspnetcore/4.12.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "N.png",
  3741. "lib/net451/NLog.Web.AspNetCore.dll",
  3742. "lib/net451/NLog.Web.AspNetCore.xml",
  3743. "lib/net461/NLog.Web.AspNetCore.dll",
  3744. "lib/net461/NLog.Web.AspNetCore.xml",
  3745. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  3746. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  3747. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  3748. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  3749. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  3750. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  3751. "nlog.web.aspnetcore.4.12.0.nupkg.sha512",
  3752. "nlog.web.aspnetcore.nuspec",
  3753. "readme.txt"
  3754. ]
  3755. },
  3756. "Pipelines.Sockets.Unofficial/2.2.0": {
  3757. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  3758. "type": "package",
  3759. "path": "pipelines.sockets.unofficial/2.2.0",
  3760. "files": [
  3761. ".nupkg.metadata",
  3762. ".signature.p7s",
  3763. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  3764. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  3765. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  3766. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  3767. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  3768. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  3769. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  3770. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  3771. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  3772. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  3773. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  3774. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  3775. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  3776. "pipelines.sockets.unofficial.nuspec"
  3777. ]
  3778. },
  3779. "Quartz/3.3.2": {
  3780. "sha512": "zsLt0LLHfIO+hlLBrBB2f7Qolf2C3SeCWXawgnWXSuvsAWsvWBLSax9Tpu5X/KzoF4Y4UHX7tdxvQjxILEsRWA==",
  3781. "type": "package",
  3782. "path": "quartz/3.3.2",
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "lib/net461/Quartz.dll",
  3787. "lib/net461/Quartz.xml",
  3788. "lib/net472/Quartz.dll",
  3789. "lib/net472/Quartz.xml",
  3790. "lib/netstandard2.0/Quartz.dll",
  3791. "lib/netstandard2.0/Quartz.xml",
  3792. "quartz-logo-small.png",
  3793. "quartz.3.3.2.nupkg.sha512",
  3794. "quartz.nuspec"
  3795. ]
  3796. },
  3797. "runtime.native.System/4.0.0": {
  3798. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  3799. "type": "package",
  3800. "path": "runtime.native.system/4.0.0",
  3801. "files": [
  3802. ".nupkg.metadata",
  3803. "ThirdPartyNotices.txt",
  3804. "dotnet_library_license.txt",
  3805. "lib/netstandard1.0/_._",
  3806. "runtime.native.system.4.0.0.nupkg.sha512",
  3807. "runtime.native.system.nuspec"
  3808. ]
  3809. },
  3810. "runtime.native.System.IO.Compression/4.1.0": {
  3811. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  3812. "type": "package",
  3813. "path": "runtime.native.system.io.compression/4.1.0",
  3814. "files": [
  3815. ".nupkg.metadata",
  3816. "ThirdPartyNotices.txt",
  3817. "dotnet_library_license.txt",
  3818. "lib/netstandard1.0/_._",
  3819. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  3820. "runtime.native.system.io.compression.nuspec"
  3821. ]
  3822. },
  3823. "runtime.native.System.Net.Http/4.0.1": {
  3824. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  3825. "type": "package",
  3826. "path": "runtime.native.system.net.http/4.0.1",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "lib/netstandard1.0/_._",
  3832. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  3833. "runtime.native.system.net.http.nuspec"
  3834. ]
  3835. },
  3836. "runtime.native.System.Security.Cryptography/4.0.0": {
  3837. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  3838. "type": "package",
  3839. "path": "runtime.native.system.security.cryptography/4.0.0",
  3840. "files": [
  3841. ".nupkg.metadata",
  3842. "ThirdPartyNotices.txt",
  3843. "dotnet_library_license.txt",
  3844. "lib/netstandard1.0/_._",
  3845. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  3846. "runtime.native.system.security.cryptography.nuspec"
  3847. ]
  3848. },
  3849. "Scrutor/3.3.0": {
  3850. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  3851. "type": "package",
  3852. "path": "scrutor/3.3.0",
  3853. "files": [
  3854. ".nupkg.metadata",
  3855. ".signature.p7s",
  3856. "lib/net461/Scrutor.dll",
  3857. "lib/net461/Scrutor.pdb",
  3858. "lib/net461/Scrutor.xml",
  3859. "lib/netcoreapp3.1/Scrutor.dll",
  3860. "lib/netcoreapp3.1/Scrutor.pdb",
  3861. "lib/netcoreapp3.1/Scrutor.xml",
  3862. "lib/netstandard2.0/Scrutor.dll",
  3863. "lib/netstandard2.0/Scrutor.pdb",
  3864. "lib/netstandard2.0/Scrutor.xml",
  3865. "scrutor.3.3.0.nupkg.sha512",
  3866. "scrutor.nuspec"
  3867. ]
  3868. },
  3869. "SSH.NET/2016.1.0": {
  3870. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3871. "type": "package",
  3872. "path": "ssh.net/2016.1.0",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "lib/net35/Renci.SshNet.dll",
  3877. "lib/net35/Renci.SshNet.xml",
  3878. "lib/net40/Renci.SshNet.dll",
  3879. "lib/net40/Renci.SshNet.xml",
  3880. "lib/netstandard1.3/Renci.SshNet.dll",
  3881. "lib/netstandard1.3/Renci.SshNet.xml",
  3882. "lib/sl4/Renci.SshNet.dll",
  3883. "lib/sl4/Renci.SshNet.xml",
  3884. "lib/sl5/Renci.SshNet.dll",
  3885. "lib/sl5/Renci.SshNet.xml",
  3886. "lib/uap10/Renci.SshNet.dll",
  3887. "lib/uap10/Renci.SshNet.xml",
  3888. "lib/wp71/Renci.SshNet.dll",
  3889. "lib/wp71/Renci.SshNet.xml",
  3890. "lib/wp8/Renci.SshNet.dll",
  3891. "lib/wp8/Renci.SshNet.xml",
  3892. "ssh.net.2016.1.0.nupkg.sha512",
  3893. "ssh.net.nuspec"
  3894. ]
  3895. },
  3896. "SshNet.Security.Cryptography/1.2.0": {
  3897. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3898. "type": "package",
  3899. "path": "sshnet.security.cryptography/1.2.0",
  3900. "files": [
  3901. ".nupkg.metadata",
  3902. ".signature.p7s",
  3903. "lib/net20/SshNet.Security.Cryptography.dll",
  3904. "lib/net20/SshNet.Security.Cryptography.xml",
  3905. "lib/net40/SshNet.Security.Cryptography.dll",
  3906. "lib/net40/SshNet.Security.Cryptography.xml",
  3907. "lib/net45/SshNet.Security.Cryptography.dll",
  3908. "lib/net45/SshNet.Security.Cryptography.xml",
  3909. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3910. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3911. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3912. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3913. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3914. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3915. "lib/sl4/SshNet.Security.Cryptography.dll",
  3916. "lib/sl4/SshNet.Security.Cryptography.xml",
  3917. "lib/sl5/SshNet.Security.Cryptography.dll",
  3918. "lib/sl5/SshNet.Security.Cryptography.xml",
  3919. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3920. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3921. "lib/wp71/SshNet.Security.Cryptography.dll",
  3922. "lib/wp71/SshNet.Security.Cryptography.xml",
  3923. "lib/wp8/SshNet.Security.Cryptography.dll",
  3924. "lib/wp8/SshNet.Security.Cryptography.xml",
  3925. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3926. "sshnet.security.cryptography.nuspec"
  3927. ]
  3928. },
  3929. "StackExchange.Redis/2.2.62": {
  3930. "sha512": "rcIFo/dK67An3mO1Heov0GZj9TYLMd+YB4drA09vOQz9ZpdjMhxSVtlDATcGpC++EH0aUGGnRnzhq0R0oXBOXg==",
  3931. "type": "package",
  3932. "path": "stackexchange.redis/2.2.62",
  3933. "files": [
  3934. ".nupkg.metadata",
  3935. ".signature.p7s",
  3936. "lib/net461/StackExchange.Redis.dll",
  3937. "lib/net461/StackExchange.Redis.xml",
  3938. "lib/net472/StackExchange.Redis.dll",
  3939. "lib/net472/StackExchange.Redis.xml",
  3940. "lib/net5.0/StackExchange.Redis.dll",
  3941. "lib/net5.0/StackExchange.Redis.xml",
  3942. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  3943. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  3944. "lib/netstandard2.0/StackExchange.Redis.dll",
  3945. "lib/netstandard2.0/StackExchange.Redis.xml",
  3946. "stackexchange.redis.2.2.62.nupkg.sha512",
  3947. "stackexchange.redis.nuspec"
  3948. ]
  3949. },
  3950. "Swashbuckle.AspNetCore/6.3.1": {
  3951. "sha512": "JFk0+HHUPdjYuPhkpGBMLi2JtnEuWkE2pp0yXQp64DmeMe+Fb0hZyVNq/ENJ2vQNso7Zg+C758WmR/xyAl36bA==",
  3952. "type": "package",
  3953. "path": "swashbuckle.aspnetcore/6.3.1",
  3954. "files": [
  3955. ".nupkg.metadata",
  3956. ".signature.p7s",
  3957. "build/Swashbuckle.AspNetCore.props",
  3958. "swashbuckle.aspnetcore.6.3.1.nupkg.sha512",
  3959. "swashbuckle.aspnetcore.nuspec"
  3960. ]
  3961. },
  3962. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  3963. "sha512": "pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==",
  3964. "type": "package",
  3965. "path": "swashbuckle.aspnetcore.filters/7.0.2",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  3970. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  3971. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  3972. "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512",
  3973. "swashbuckle.aspnetcore.filters.nuspec"
  3974. ]
  3975. },
  3976. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  3977. "sha512": "RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==",
  3978. "type": "package",
  3979. "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2",
  3980. "files": [
  3981. ".nupkg.metadata",
  3982. ".signature.p7s",
  3983. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3984. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3985. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3986. "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512",
  3987. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  3988. ]
  3989. },
  3990. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  3991. "sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==",
  3992. "type": "package",
  3993. "path": "swashbuckle.aspnetcore.swagger/6.3.1",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3998. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3999. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4000. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4001. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4002. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4003. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4004. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4005. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4006. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4007. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4008. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4009. "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512",
  4010. "swashbuckle.aspnetcore.swagger.nuspec"
  4011. ]
  4012. },
  4013. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  4014. "sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==",
  4015. "type": "package",
  4016. "path": "swashbuckle.aspnetcore.swaggergen/6.3.1",
  4017. "files": [
  4018. ".nupkg.metadata",
  4019. ".signature.p7s",
  4020. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4021. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4022. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4023. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4024. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4025. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4026. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4027. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4028. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4029. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4030. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4031. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4032. "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512",
  4033. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4034. ]
  4035. },
  4036. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  4037. "sha512": "JLm9hN67jh7RHsX3H30+tb432Li8xm/qV5lRyMMkyHYMfWitIuKAAdrpo2ILcHOIeH7CLMuOO2hp/iLBmE+Bkw==",
  4038. "type": "package",
  4039. "path": "swashbuckle.aspnetcore.swaggerui/6.3.1",
  4040. "files": [
  4041. ".nupkg.metadata",
  4042. ".signature.p7s",
  4043. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4044. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4045. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4046. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4047. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4048. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4049. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4050. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4051. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4052. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4053. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4054. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4055. "swashbuckle.aspnetcore.swaggerui.6.3.1.nupkg.sha512",
  4056. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4057. ]
  4058. },
  4059. "System.AppContext/4.1.0": {
  4060. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  4061. "type": "package",
  4062. "path": "system.appcontext/4.1.0",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. "ThirdPartyNotices.txt",
  4066. "dotnet_library_license.txt",
  4067. "lib/MonoAndroid10/_._",
  4068. "lib/MonoTouch10/_._",
  4069. "lib/net46/System.AppContext.dll",
  4070. "lib/net463/System.AppContext.dll",
  4071. "lib/netcore50/System.AppContext.dll",
  4072. "lib/netstandard1.6/System.AppContext.dll",
  4073. "lib/xamarinios10/_._",
  4074. "lib/xamarinmac20/_._",
  4075. "lib/xamarintvos10/_._",
  4076. "lib/xamarinwatchos10/_._",
  4077. "ref/MonoAndroid10/_._",
  4078. "ref/MonoTouch10/_._",
  4079. "ref/net46/System.AppContext.dll",
  4080. "ref/net463/System.AppContext.dll",
  4081. "ref/netstandard/_._",
  4082. "ref/netstandard1.3/System.AppContext.dll",
  4083. "ref/netstandard1.3/System.AppContext.xml",
  4084. "ref/netstandard1.3/de/System.AppContext.xml",
  4085. "ref/netstandard1.3/es/System.AppContext.xml",
  4086. "ref/netstandard1.3/fr/System.AppContext.xml",
  4087. "ref/netstandard1.3/it/System.AppContext.xml",
  4088. "ref/netstandard1.3/ja/System.AppContext.xml",
  4089. "ref/netstandard1.3/ko/System.AppContext.xml",
  4090. "ref/netstandard1.3/ru/System.AppContext.xml",
  4091. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4092. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4093. "ref/netstandard1.6/System.AppContext.dll",
  4094. "ref/netstandard1.6/System.AppContext.xml",
  4095. "ref/netstandard1.6/de/System.AppContext.xml",
  4096. "ref/netstandard1.6/es/System.AppContext.xml",
  4097. "ref/netstandard1.6/fr/System.AppContext.xml",
  4098. "ref/netstandard1.6/it/System.AppContext.xml",
  4099. "ref/netstandard1.6/ja/System.AppContext.xml",
  4100. "ref/netstandard1.6/ko/System.AppContext.xml",
  4101. "ref/netstandard1.6/ru/System.AppContext.xml",
  4102. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4103. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4104. "ref/xamarinios10/_._",
  4105. "ref/xamarinmac20/_._",
  4106. "ref/xamarintvos10/_._",
  4107. "ref/xamarinwatchos10/_._",
  4108. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4109. "system.appcontext.4.1.0.nupkg.sha512",
  4110. "system.appcontext.nuspec"
  4111. ]
  4112. },
  4113. "System.Buffers/4.5.1": {
  4114. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4115. "type": "package",
  4116. "path": "system.buffers/4.5.1",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "LICENSE.TXT",
  4121. "THIRD-PARTY-NOTICES.TXT",
  4122. "lib/net461/System.Buffers.dll",
  4123. "lib/net461/System.Buffers.xml",
  4124. "lib/netcoreapp2.0/_._",
  4125. "lib/netstandard1.1/System.Buffers.dll",
  4126. "lib/netstandard1.1/System.Buffers.xml",
  4127. "lib/netstandard2.0/System.Buffers.dll",
  4128. "lib/netstandard2.0/System.Buffers.xml",
  4129. "lib/uap10.0.16299/_._",
  4130. "ref/net45/System.Buffers.dll",
  4131. "ref/net45/System.Buffers.xml",
  4132. "ref/netcoreapp2.0/_._",
  4133. "ref/netstandard1.1/System.Buffers.dll",
  4134. "ref/netstandard1.1/System.Buffers.xml",
  4135. "ref/netstandard2.0/System.Buffers.dll",
  4136. "ref/netstandard2.0/System.Buffers.xml",
  4137. "ref/uap10.0.16299/_._",
  4138. "system.buffers.4.5.1.nupkg.sha512",
  4139. "system.buffers.nuspec",
  4140. "useSharedDesignerContext.txt",
  4141. "version.txt"
  4142. ]
  4143. },
  4144. "System.Collections/4.0.11": {
  4145. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  4146. "type": "package",
  4147. "path": "system.collections/4.0.11",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. "ThirdPartyNotices.txt",
  4151. "dotnet_library_license.txt",
  4152. "lib/MonoAndroid10/_._",
  4153. "lib/MonoTouch10/_._",
  4154. "lib/net45/_._",
  4155. "lib/portable-net45+win8+wp8+wpa81/_._",
  4156. "lib/win8/_._",
  4157. "lib/wp80/_._",
  4158. "lib/wpa81/_._",
  4159. "lib/xamarinios10/_._",
  4160. "lib/xamarinmac20/_._",
  4161. "lib/xamarintvos10/_._",
  4162. "lib/xamarinwatchos10/_._",
  4163. "ref/MonoAndroid10/_._",
  4164. "ref/MonoTouch10/_._",
  4165. "ref/net45/_._",
  4166. "ref/netcore50/System.Collections.dll",
  4167. "ref/netcore50/System.Collections.xml",
  4168. "ref/netcore50/de/System.Collections.xml",
  4169. "ref/netcore50/es/System.Collections.xml",
  4170. "ref/netcore50/fr/System.Collections.xml",
  4171. "ref/netcore50/it/System.Collections.xml",
  4172. "ref/netcore50/ja/System.Collections.xml",
  4173. "ref/netcore50/ko/System.Collections.xml",
  4174. "ref/netcore50/ru/System.Collections.xml",
  4175. "ref/netcore50/zh-hans/System.Collections.xml",
  4176. "ref/netcore50/zh-hant/System.Collections.xml",
  4177. "ref/netstandard1.0/System.Collections.dll",
  4178. "ref/netstandard1.0/System.Collections.xml",
  4179. "ref/netstandard1.0/de/System.Collections.xml",
  4180. "ref/netstandard1.0/es/System.Collections.xml",
  4181. "ref/netstandard1.0/fr/System.Collections.xml",
  4182. "ref/netstandard1.0/it/System.Collections.xml",
  4183. "ref/netstandard1.0/ja/System.Collections.xml",
  4184. "ref/netstandard1.0/ko/System.Collections.xml",
  4185. "ref/netstandard1.0/ru/System.Collections.xml",
  4186. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4187. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4188. "ref/netstandard1.3/System.Collections.dll",
  4189. "ref/netstandard1.3/System.Collections.xml",
  4190. "ref/netstandard1.3/de/System.Collections.xml",
  4191. "ref/netstandard1.3/es/System.Collections.xml",
  4192. "ref/netstandard1.3/fr/System.Collections.xml",
  4193. "ref/netstandard1.3/it/System.Collections.xml",
  4194. "ref/netstandard1.3/ja/System.Collections.xml",
  4195. "ref/netstandard1.3/ko/System.Collections.xml",
  4196. "ref/netstandard1.3/ru/System.Collections.xml",
  4197. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4198. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4199. "ref/portable-net45+win8+wp8+wpa81/_._",
  4200. "ref/win8/_._",
  4201. "ref/wp80/_._",
  4202. "ref/wpa81/_._",
  4203. "ref/xamarinios10/_._",
  4204. "ref/xamarinmac20/_._",
  4205. "ref/xamarintvos10/_._",
  4206. "ref/xamarinwatchos10/_._",
  4207. "system.collections.4.0.11.nupkg.sha512",
  4208. "system.collections.nuspec"
  4209. ]
  4210. },
  4211. "System.Collections.Concurrent/4.0.12": {
  4212. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  4213. "type": "package",
  4214. "path": "system.collections.concurrent/4.0.12",
  4215. "files": [
  4216. ".nupkg.metadata",
  4217. "ThirdPartyNotices.txt",
  4218. "dotnet_library_license.txt",
  4219. "lib/MonoAndroid10/_._",
  4220. "lib/MonoTouch10/_._",
  4221. "lib/net45/_._",
  4222. "lib/netcore50/System.Collections.Concurrent.dll",
  4223. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4224. "lib/portable-net45+win8+wpa81/_._",
  4225. "lib/win8/_._",
  4226. "lib/wpa81/_._",
  4227. "lib/xamarinios10/_._",
  4228. "lib/xamarinmac20/_._",
  4229. "lib/xamarintvos10/_._",
  4230. "lib/xamarinwatchos10/_._",
  4231. "ref/MonoAndroid10/_._",
  4232. "ref/MonoTouch10/_._",
  4233. "ref/net45/_._",
  4234. "ref/netcore50/System.Collections.Concurrent.dll",
  4235. "ref/netcore50/System.Collections.Concurrent.xml",
  4236. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4237. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4238. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4239. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4240. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4241. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4242. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4243. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4244. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4245. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4246. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4247. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4248. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4249. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4250. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4251. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4252. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4253. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4254. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4255. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4256. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4257. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4258. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4259. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4260. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4261. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4262. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4263. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4264. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4265. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4266. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4267. "ref/portable-net45+win8+wpa81/_._",
  4268. "ref/win8/_._",
  4269. "ref/wpa81/_._",
  4270. "ref/xamarinios10/_._",
  4271. "ref/xamarinmac20/_._",
  4272. "ref/xamarintvos10/_._",
  4273. "ref/xamarinwatchos10/_._",
  4274. "system.collections.concurrent.4.0.12.nupkg.sha512",
  4275. "system.collections.concurrent.nuspec"
  4276. ]
  4277. },
  4278. "System.Collections.Immutable/1.7.0": {
  4279. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  4280. "type": "package",
  4281. "path": "system.collections.immutable/1.7.0",
  4282. "files": [
  4283. ".nupkg.metadata",
  4284. ".signature.p7s",
  4285. "LICENSE.TXT",
  4286. "THIRD-PARTY-NOTICES.TXT",
  4287. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4288. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4289. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4290. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4291. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4292. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4293. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4294. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4295. "system.collections.immutable.1.7.0.nupkg.sha512",
  4296. "system.collections.immutable.nuspec",
  4297. "useSharedDesignerContext.txt",
  4298. "version.txt"
  4299. ]
  4300. },
  4301. "System.ComponentModel.Annotations/4.7.0": {
  4302. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4303. "type": "package",
  4304. "path": "system.componentmodel.annotations/4.7.0",
  4305. "files": [
  4306. ".nupkg.metadata",
  4307. ".signature.p7s",
  4308. "LICENSE.TXT",
  4309. "THIRD-PARTY-NOTICES.TXT",
  4310. "lib/MonoAndroid10/_._",
  4311. "lib/MonoTouch10/_._",
  4312. "lib/net45/_._",
  4313. "lib/net461/System.ComponentModel.Annotations.dll",
  4314. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4315. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4316. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4317. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4318. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4319. "lib/portable-net45+win8/_._",
  4320. "lib/win8/_._",
  4321. "lib/xamarinios10/_._",
  4322. "lib/xamarinmac20/_._",
  4323. "lib/xamarintvos10/_._",
  4324. "lib/xamarinwatchos10/_._",
  4325. "ref/MonoAndroid10/_._",
  4326. "ref/MonoTouch10/_._",
  4327. "ref/net45/_._",
  4328. "ref/net461/System.ComponentModel.Annotations.dll",
  4329. "ref/net461/System.ComponentModel.Annotations.xml",
  4330. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4331. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4332. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4333. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4334. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4335. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4336. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4337. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4338. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4339. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4340. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4341. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4342. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4343. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4344. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4345. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4346. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4347. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4348. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4349. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4350. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4351. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4352. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4353. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4354. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4355. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4356. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4357. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4358. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4359. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4360. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4361. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4362. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4363. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4364. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4365. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4366. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4367. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4368. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4369. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4370. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4371. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4372. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4373. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4374. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4375. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4376. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4377. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4378. "ref/portable-net45+win8/_._",
  4379. "ref/win8/_._",
  4380. "ref/xamarinios10/_._",
  4381. "ref/xamarinmac20/_._",
  4382. "ref/xamarintvos10/_._",
  4383. "ref/xamarinwatchos10/_._",
  4384. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4385. "system.componentmodel.annotations.nuspec",
  4386. "useSharedDesignerContext.txt",
  4387. "version.txt"
  4388. ]
  4389. },
  4390. "System.Configuration.ConfigurationManager/5.0.0": {
  4391. "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
  4392. "type": "package",
  4393. "path": "system.configuration.configurationmanager/5.0.0",
  4394. "files": [
  4395. ".nupkg.metadata",
  4396. ".signature.p7s",
  4397. "Icon.png",
  4398. "LICENSE.TXT",
  4399. "THIRD-PARTY-NOTICES.TXT",
  4400. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4401. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4402. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4403. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4404. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4405. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4406. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4407. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4408. "system.configuration.configurationmanager.5.0.0.nupkg.sha512",
  4409. "system.configuration.configurationmanager.nuspec",
  4410. "useSharedDesignerContext.txt",
  4411. "version.txt"
  4412. ]
  4413. },
  4414. "System.Console/4.0.0": {
  4415. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  4416. "type": "package",
  4417. "path": "system.console/4.0.0",
  4418. "files": [
  4419. ".nupkg.metadata",
  4420. "ThirdPartyNotices.txt",
  4421. "dotnet_library_license.txt",
  4422. "lib/MonoAndroid10/_._",
  4423. "lib/MonoTouch10/_._",
  4424. "lib/net46/System.Console.dll",
  4425. "lib/xamarinios10/_._",
  4426. "lib/xamarinmac20/_._",
  4427. "lib/xamarintvos10/_._",
  4428. "lib/xamarinwatchos10/_._",
  4429. "ref/MonoAndroid10/_._",
  4430. "ref/MonoTouch10/_._",
  4431. "ref/net46/System.Console.dll",
  4432. "ref/netstandard1.3/System.Console.dll",
  4433. "ref/netstandard1.3/System.Console.xml",
  4434. "ref/netstandard1.3/de/System.Console.xml",
  4435. "ref/netstandard1.3/es/System.Console.xml",
  4436. "ref/netstandard1.3/fr/System.Console.xml",
  4437. "ref/netstandard1.3/it/System.Console.xml",
  4438. "ref/netstandard1.3/ja/System.Console.xml",
  4439. "ref/netstandard1.3/ko/System.Console.xml",
  4440. "ref/netstandard1.3/ru/System.Console.xml",
  4441. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4442. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4443. "ref/xamarinios10/_._",
  4444. "ref/xamarinmac20/_._",
  4445. "ref/xamarintvos10/_._",
  4446. "ref/xamarinwatchos10/_._",
  4447. "system.console.4.0.0.nupkg.sha512",
  4448. "system.console.nuspec"
  4449. ]
  4450. },
  4451. "System.Diagnostics.Debug/4.0.11": {
  4452. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  4453. "type": "package",
  4454. "path": "system.diagnostics.debug/4.0.11",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. "ThirdPartyNotices.txt",
  4458. "dotnet_library_license.txt",
  4459. "lib/MonoAndroid10/_._",
  4460. "lib/MonoTouch10/_._",
  4461. "lib/net45/_._",
  4462. "lib/portable-net45+win8+wp8+wpa81/_._",
  4463. "lib/win8/_._",
  4464. "lib/wp80/_._",
  4465. "lib/wpa81/_._",
  4466. "lib/xamarinios10/_._",
  4467. "lib/xamarinmac20/_._",
  4468. "lib/xamarintvos10/_._",
  4469. "lib/xamarinwatchos10/_._",
  4470. "ref/MonoAndroid10/_._",
  4471. "ref/MonoTouch10/_._",
  4472. "ref/net45/_._",
  4473. "ref/netcore50/System.Diagnostics.Debug.dll",
  4474. "ref/netcore50/System.Diagnostics.Debug.xml",
  4475. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4476. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4477. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4478. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4479. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4480. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4481. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4482. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4483. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4484. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4485. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4486. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4487. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4488. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4489. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4490. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4491. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4492. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4493. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4494. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4495. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4496. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4497. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4498. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4499. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4500. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4501. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4502. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4503. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4504. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4505. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4506. "ref/portable-net45+win8+wp8+wpa81/_._",
  4507. "ref/win8/_._",
  4508. "ref/wp80/_._",
  4509. "ref/wpa81/_._",
  4510. "ref/xamarinios10/_._",
  4511. "ref/xamarinmac20/_._",
  4512. "ref/xamarintvos10/_._",
  4513. "ref/xamarinwatchos10/_._",
  4514. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  4515. "system.diagnostics.debug.nuspec"
  4516. ]
  4517. },
  4518. "System.Diagnostics.DiagnosticSource/5.0.0": {
  4519. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  4520. "type": "package",
  4521. "path": "system.diagnostics.diagnosticsource/5.0.0",
  4522. "files": [
  4523. ".nupkg.metadata",
  4524. ".signature.p7s",
  4525. "Icon.png",
  4526. "LICENSE.TXT",
  4527. "THIRD-PARTY-NOTICES.TXT",
  4528. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4529. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4530. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4531. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4532. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  4533. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  4534. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4535. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4536. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4537. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4538. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4539. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4540. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  4541. "system.diagnostics.diagnosticsource.nuspec",
  4542. "useSharedDesignerContext.txt",
  4543. "version.txt"
  4544. ]
  4545. },
  4546. "System.Diagnostics.EventLog/5.0.0": {
  4547. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  4548. "type": "package",
  4549. "path": "system.diagnostics.eventlog/5.0.0",
  4550. "files": [
  4551. ".nupkg.metadata",
  4552. ".signature.p7s",
  4553. "Icon.png",
  4554. "LICENSE.TXT",
  4555. "THIRD-PARTY-NOTICES.TXT",
  4556. "lib/net461/System.Diagnostics.EventLog.dll",
  4557. "lib/net461/System.Diagnostics.EventLog.xml",
  4558. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  4559. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  4560. "ref/net461/System.Diagnostics.EventLog.dll",
  4561. "ref/net461/System.Diagnostics.EventLog.xml",
  4562. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  4563. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  4564. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  4565. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  4566. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  4567. "system.diagnostics.eventlog.nuspec",
  4568. "useSharedDesignerContext.txt",
  4569. "version.txt"
  4570. ]
  4571. },
  4572. "System.Diagnostics.PerformanceCounter/5.0.0": {
  4573. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  4574. "type": "package",
  4575. "path": "system.diagnostics.performancecounter/5.0.0",
  4576. "files": [
  4577. ".nupkg.metadata",
  4578. ".signature.p7s",
  4579. "Icon.png",
  4580. "LICENSE.TXT",
  4581. "THIRD-PARTY-NOTICES.TXT",
  4582. "lib/MonoAndroid10/_._",
  4583. "lib/MonoTouch10/_._",
  4584. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4585. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4586. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4587. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4588. "lib/xamarinios10/_._",
  4589. "lib/xamarinmac20/_._",
  4590. "lib/xamarintvos10/_._",
  4591. "lib/xamarinwatchos10/_._",
  4592. "ref/MonoAndroid10/_._",
  4593. "ref/MonoTouch10/_._",
  4594. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4595. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4596. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4597. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4598. "ref/xamarinios10/_._",
  4599. "ref/xamarinmac20/_._",
  4600. "ref/xamarintvos10/_._",
  4601. "ref/xamarinwatchos10/_._",
  4602. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4603. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4604. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  4605. "system.diagnostics.performancecounter.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "System.Diagnostics.Tools/4.0.1": {
  4611. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  4612. "type": "package",
  4613. "path": "system.diagnostics.tools/4.0.1",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. "ThirdPartyNotices.txt",
  4617. "dotnet_library_license.txt",
  4618. "lib/MonoAndroid10/_._",
  4619. "lib/MonoTouch10/_._",
  4620. "lib/net45/_._",
  4621. "lib/portable-net45+win8+wp8+wpa81/_._",
  4622. "lib/win8/_._",
  4623. "lib/wp80/_._",
  4624. "lib/wpa81/_._",
  4625. "lib/xamarinios10/_._",
  4626. "lib/xamarinmac20/_._",
  4627. "lib/xamarintvos10/_._",
  4628. "lib/xamarinwatchos10/_._",
  4629. "ref/MonoAndroid10/_._",
  4630. "ref/MonoTouch10/_._",
  4631. "ref/net45/_._",
  4632. "ref/netcore50/System.Diagnostics.Tools.dll",
  4633. "ref/netcore50/System.Diagnostics.Tools.xml",
  4634. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4635. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4636. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4637. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4638. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4639. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4640. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4641. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4642. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4643. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4644. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4645. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4646. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4647. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4648. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4649. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4650. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4651. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4652. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4653. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4654. "ref/portable-net45+win8+wp8+wpa81/_._",
  4655. "ref/win8/_._",
  4656. "ref/wp80/_._",
  4657. "ref/wpa81/_._",
  4658. "ref/xamarinios10/_._",
  4659. "ref/xamarinmac20/_._",
  4660. "ref/xamarintvos10/_._",
  4661. "ref/xamarinwatchos10/_._",
  4662. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  4663. "system.diagnostics.tools.nuspec"
  4664. ]
  4665. },
  4666. "System.Diagnostics.TraceSource/4.0.0": {
  4667. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4668. "type": "package",
  4669. "path": "system.diagnostics.tracesource/4.0.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "lib/MonoAndroid10/_._",
  4676. "lib/MonoTouch10/_._",
  4677. "lib/net46/System.Diagnostics.TraceSource.dll",
  4678. "lib/xamarinios10/_._",
  4679. "lib/xamarinmac20/_._",
  4680. "lib/xamarintvos10/_._",
  4681. "lib/xamarinwatchos10/_._",
  4682. "ref/MonoAndroid10/_._",
  4683. "ref/MonoTouch10/_._",
  4684. "ref/net46/System.Diagnostics.TraceSource.dll",
  4685. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4686. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4687. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4688. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4689. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4690. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4691. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4692. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4693. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4694. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4695. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4696. "ref/xamarinios10/_._",
  4697. "ref/xamarinmac20/_._",
  4698. "ref/xamarintvos10/_._",
  4699. "ref/xamarinwatchos10/_._",
  4700. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4701. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4702. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4703. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4704. "system.diagnostics.tracesource.nuspec"
  4705. ]
  4706. },
  4707. "System.Diagnostics.Tracing/4.1.0": {
  4708. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  4709. "type": "package",
  4710. "path": "system.diagnostics.tracing/4.1.0",
  4711. "files": [
  4712. ".nupkg.metadata",
  4713. "ThirdPartyNotices.txt",
  4714. "dotnet_library_license.txt",
  4715. "lib/MonoAndroid10/_._",
  4716. "lib/MonoTouch10/_._",
  4717. "lib/net45/_._",
  4718. "lib/net462/System.Diagnostics.Tracing.dll",
  4719. "lib/portable-net45+win8+wpa81/_._",
  4720. "lib/win8/_._",
  4721. "lib/wpa81/_._",
  4722. "lib/xamarinios10/_._",
  4723. "lib/xamarinmac20/_._",
  4724. "lib/xamarintvos10/_._",
  4725. "lib/xamarinwatchos10/_._",
  4726. "ref/MonoAndroid10/_._",
  4727. "ref/MonoTouch10/_._",
  4728. "ref/net45/_._",
  4729. "ref/net462/System.Diagnostics.Tracing.dll",
  4730. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4731. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4732. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4733. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4734. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4735. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4736. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4737. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4738. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4739. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4740. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4741. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4742. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4743. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4744. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4745. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4746. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4747. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4748. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4749. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4750. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4751. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4752. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4753. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4754. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4755. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4756. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4757. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4758. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4759. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4760. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4761. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4762. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4763. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4764. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4765. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4766. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4767. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4768. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4769. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4770. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4771. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4772. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4773. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4774. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4775. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4776. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4777. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4778. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4779. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4780. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4781. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4782. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4783. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4784. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4785. "ref/portable-net45+win8+wpa81/_._",
  4786. "ref/win8/_._",
  4787. "ref/wpa81/_._",
  4788. "ref/xamarinios10/_._",
  4789. "ref/xamarinmac20/_._",
  4790. "ref/xamarintvos10/_._",
  4791. "ref/xamarinwatchos10/_._",
  4792. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  4793. "system.diagnostics.tracing.nuspec"
  4794. ]
  4795. },
  4796. "System.Drawing.Common/5.0.0": {
  4797. "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
  4798. "type": "package",
  4799. "path": "system.drawing.common/5.0.0",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "Icon.png",
  4804. "LICENSE.TXT",
  4805. "THIRD-PARTY-NOTICES.TXT",
  4806. "lib/MonoAndroid10/_._",
  4807. "lib/MonoTouch10/_._",
  4808. "lib/net461/System.Drawing.Common.dll",
  4809. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  4810. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  4811. "lib/netstandard2.0/System.Drawing.Common.dll",
  4812. "lib/xamarinios10/_._",
  4813. "lib/xamarinmac20/_._",
  4814. "lib/xamarintvos10/_._",
  4815. "lib/xamarinwatchos10/_._",
  4816. "ref/MonoAndroid10/_._",
  4817. "ref/MonoTouch10/_._",
  4818. "ref/net461/System.Drawing.Common.dll",
  4819. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4820. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4821. "ref/netstandard2.0/System.Drawing.Common.dll",
  4822. "ref/xamarinios10/_._",
  4823. "ref/xamarinmac20/_._",
  4824. "ref/xamarintvos10/_._",
  4825. "ref/xamarinwatchos10/_._",
  4826. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4827. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4828. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4829. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4830. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4831. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4832. "system.drawing.common.5.0.0.nupkg.sha512",
  4833. "system.drawing.common.nuspec",
  4834. "useSharedDesignerContext.txt",
  4835. "version.txt"
  4836. ]
  4837. },
  4838. "System.Globalization/4.0.11": {
  4839. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  4840. "type": "package",
  4841. "path": "system.globalization/4.0.11",
  4842. "files": [
  4843. ".nupkg.metadata",
  4844. "ThirdPartyNotices.txt",
  4845. "dotnet_library_license.txt",
  4846. "lib/MonoAndroid10/_._",
  4847. "lib/MonoTouch10/_._",
  4848. "lib/net45/_._",
  4849. "lib/portable-net45+win8+wp8+wpa81/_._",
  4850. "lib/win8/_._",
  4851. "lib/wp80/_._",
  4852. "lib/wpa81/_._",
  4853. "lib/xamarinios10/_._",
  4854. "lib/xamarinmac20/_._",
  4855. "lib/xamarintvos10/_._",
  4856. "lib/xamarinwatchos10/_._",
  4857. "ref/MonoAndroid10/_._",
  4858. "ref/MonoTouch10/_._",
  4859. "ref/net45/_._",
  4860. "ref/netcore50/System.Globalization.dll",
  4861. "ref/netcore50/System.Globalization.xml",
  4862. "ref/netcore50/de/System.Globalization.xml",
  4863. "ref/netcore50/es/System.Globalization.xml",
  4864. "ref/netcore50/fr/System.Globalization.xml",
  4865. "ref/netcore50/it/System.Globalization.xml",
  4866. "ref/netcore50/ja/System.Globalization.xml",
  4867. "ref/netcore50/ko/System.Globalization.xml",
  4868. "ref/netcore50/ru/System.Globalization.xml",
  4869. "ref/netcore50/zh-hans/System.Globalization.xml",
  4870. "ref/netcore50/zh-hant/System.Globalization.xml",
  4871. "ref/netstandard1.0/System.Globalization.dll",
  4872. "ref/netstandard1.0/System.Globalization.xml",
  4873. "ref/netstandard1.0/de/System.Globalization.xml",
  4874. "ref/netstandard1.0/es/System.Globalization.xml",
  4875. "ref/netstandard1.0/fr/System.Globalization.xml",
  4876. "ref/netstandard1.0/it/System.Globalization.xml",
  4877. "ref/netstandard1.0/ja/System.Globalization.xml",
  4878. "ref/netstandard1.0/ko/System.Globalization.xml",
  4879. "ref/netstandard1.0/ru/System.Globalization.xml",
  4880. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4881. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4882. "ref/netstandard1.3/System.Globalization.dll",
  4883. "ref/netstandard1.3/System.Globalization.xml",
  4884. "ref/netstandard1.3/de/System.Globalization.xml",
  4885. "ref/netstandard1.3/es/System.Globalization.xml",
  4886. "ref/netstandard1.3/fr/System.Globalization.xml",
  4887. "ref/netstandard1.3/it/System.Globalization.xml",
  4888. "ref/netstandard1.3/ja/System.Globalization.xml",
  4889. "ref/netstandard1.3/ko/System.Globalization.xml",
  4890. "ref/netstandard1.3/ru/System.Globalization.xml",
  4891. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4892. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4893. "ref/portable-net45+win8+wp8+wpa81/_._",
  4894. "ref/win8/_._",
  4895. "ref/wp80/_._",
  4896. "ref/wpa81/_._",
  4897. "ref/xamarinios10/_._",
  4898. "ref/xamarinmac20/_._",
  4899. "ref/xamarintvos10/_._",
  4900. "ref/xamarinwatchos10/_._",
  4901. "system.globalization.4.0.11.nupkg.sha512",
  4902. "system.globalization.nuspec"
  4903. ]
  4904. },
  4905. "System.Globalization.Calendars/4.0.1": {
  4906. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  4907. "type": "package",
  4908. "path": "system.globalization.calendars/4.0.1",
  4909. "files": [
  4910. ".nupkg.metadata",
  4911. "ThirdPartyNotices.txt",
  4912. "dotnet_library_license.txt",
  4913. "lib/MonoAndroid10/_._",
  4914. "lib/MonoTouch10/_._",
  4915. "lib/net46/System.Globalization.Calendars.dll",
  4916. "lib/xamarinios10/_._",
  4917. "lib/xamarinmac20/_._",
  4918. "lib/xamarintvos10/_._",
  4919. "lib/xamarinwatchos10/_._",
  4920. "ref/MonoAndroid10/_._",
  4921. "ref/MonoTouch10/_._",
  4922. "ref/net46/System.Globalization.Calendars.dll",
  4923. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4924. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4925. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4926. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4927. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4928. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4929. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4930. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4931. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4932. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4933. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4934. "ref/xamarinios10/_._",
  4935. "ref/xamarinmac20/_._",
  4936. "ref/xamarintvos10/_._",
  4937. "ref/xamarinwatchos10/_._",
  4938. "system.globalization.calendars.4.0.1.nupkg.sha512",
  4939. "system.globalization.calendars.nuspec"
  4940. ]
  4941. },
  4942. "System.Globalization.Extensions/4.0.1": {
  4943. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  4944. "type": "package",
  4945. "path": "system.globalization.extensions/4.0.1",
  4946. "files": [
  4947. ".nupkg.metadata",
  4948. "ThirdPartyNotices.txt",
  4949. "dotnet_library_license.txt",
  4950. "lib/MonoAndroid10/_._",
  4951. "lib/MonoTouch10/_._",
  4952. "lib/net46/System.Globalization.Extensions.dll",
  4953. "lib/xamarinios10/_._",
  4954. "lib/xamarinmac20/_._",
  4955. "lib/xamarintvos10/_._",
  4956. "lib/xamarinwatchos10/_._",
  4957. "ref/MonoAndroid10/_._",
  4958. "ref/MonoTouch10/_._",
  4959. "ref/net46/System.Globalization.Extensions.dll",
  4960. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4961. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4962. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4963. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4964. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4965. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4966. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4967. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4968. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4969. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4970. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4971. "ref/xamarinios10/_._",
  4972. "ref/xamarinmac20/_._",
  4973. "ref/xamarintvos10/_._",
  4974. "ref/xamarinwatchos10/_._",
  4975. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4976. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4977. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4978. "system.globalization.extensions.4.0.1.nupkg.sha512",
  4979. "system.globalization.extensions.nuspec"
  4980. ]
  4981. },
  4982. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  4983. "sha512": "j57TBY3Xf989vFUt2C25DpDqM8P4Re1bi4GL3U6L6VVgJr+AZIWmA1SMEOKyaIwSP0rHWimQh4jGxzycidGflQ==",
  4984. "type": "package",
  4985. "path": "system.identitymodel.tokens.jwt/6.11.0",
  4986. "files": [
  4987. ".nupkg.metadata",
  4988. ".signature.p7s",
  4989. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4990. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4991. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4992. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4993. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  4994. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  4995. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4996. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4997. "system.identitymodel.tokens.jwt.6.11.0.nupkg.sha512",
  4998. "system.identitymodel.tokens.jwt.nuspec"
  4999. ]
  5000. },
  5001. "System.IO/4.3.0": {
  5002. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5003. "type": "package",
  5004. "path": "system.io/4.3.0",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. "ThirdPartyNotices.txt",
  5008. "dotnet_library_license.txt",
  5009. "lib/MonoAndroid10/_._",
  5010. "lib/MonoTouch10/_._",
  5011. "lib/net45/_._",
  5012. "lib/net462/System.IO.dll",
  5013. "lib/portable-net45+win8+wp8+wpa81/_._",
  5014. "lib/win8/_._",
  5015. "lib/wp80/_._",
  5016. "lib/wpa81/_._",
  5017. "lib/xamarinios10/_._",
  5018. "lib/xamarinmac20/_._",
  5019. "lib/xamarintvos10/_._",
  5020. "lib/xamarinwatchos10/_._",
  5021. "ref/MonoAndroid10/_._",
  5022. "ref/MonoTouch10/_._",
  5023. "ref/net45/_._",
  5024. "ref/net462/System.IO.dll",
  5025. "ref/netcore50/System.IO.dll",
  5026. "ref/netcore50/System.IO.xml",
  5027. "ref/netcore50/de/System.IO.xml",
  5028. "ref/netcore50/es/System.IO.xml",
  5029. "ref/netcore50/fr/System.IO.xml",
  5030. "ref/netcore50/it/System.IO.xml",
  5031. "ref/netcore50/ja/System.IO.xml",
  5032. "ref/netcore50/ko/System.IO.xml",
  5033. "ref/netcore50/ru/System.IO.xml",
  5034. "ref/netcore50/zh-hans/System.IO.xml",
  5035. "ref/netcore50/zh-hant/System.IO.xml",
  5036. "ref/netstandard1.0/System.IO.dll",
  5037. "ref/netstandard1.0/System.IO.xml",
  5038. "ref/netstandard1.0/de/System.IO.xml",
  5039. "ref/netstandard1.0/es/System.IO.xml",
  5040. "ref/netstandard1.0/fr/System.IO.xml",
  5041. "ref/netstandard1.0/it/System.IO.xml",
  5042. "ref/netstandard1.0/ja/System.IO.xml",
  5043. "ref/netstandard1.0/ko/System.IO.xml",
  5044. "ref/netstandard1.0/ru/System.IO.xml",
  5045. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5046. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5047. "ref/netstandard1.3/System.IO.dll",
  5048. "ref/netstandard1.3/System.IO.xml",
  5049. "ref/netstandard1.3/de/System.IO.xml",
  5050. "ref/netstandard1.3/es/System.IO.xml",
  5051. "ref/netstandard1.3/fr/System.IO.xml",
  5052. "ref/netstandard1.3/it/System.IO.xml",
  5053. "ref/netstandard1.3/ja/System.IO.xml",
  5054. "ref/netstandard1.3/ko/System.IO.xml",
  5055. "ref/netstandard1.3/ru/System.IO.xml",
  5056. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5057. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5058. "ref/netstandard1.5/System.IO.dll",
  5059. "ref/netstandard1.5/System.IO.xml",
  5060. "ref/netstandard1.5/de/System.IO.xml",
  5061. "ref/netstandard1.5/es/System.IO.xml",
  5062. "ref/netstandard1.5/fr/System.IO.xml",
  5063. "ref/netstandard1.5/it/System.IO.xml",
  5064. "ref/netstandard1.5/ja/System.IO.xml",
  5065. "ref/netstandard1.5/ko/System.IO.xml",
  5066. "ref/netstandard1.5/ru/System.IO.xml",
  5067. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5068. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5069. "ref/portable-net45+win8+wp8+wpa81/_._",
  5070. "ref/win8/_._",
  5071. "ref/wp80/_._",
  5072. "ref/wpa81/_._",
  5073. "ref/xamarinios10/_._",
  5074. "ref/xamarinmac20/_._",
  5075. "ref/xamarintvos10/_._",
  5076. "ref/xamarinwatchos10/_._",
  5077. "system.io.4.3.0.nupkg.sha512",
  5078. "system.io.nuspec"
  5079. ]
  5080. },
  5081. "System.IO.Compression/4.1.0": {
  5082. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  5083. "type": "package",
  5084. "path": "system.io.compression/4.1.0",
  5085. "files": [
  5086. ".nupkg.metadata",
  5087. "ThirdPartyNotices.txt",
  5088. "dotnet_library_license.txt",
  5089. "lib/MonoAndroid10/_._",
  5090. "lib/MonoTouch10/_._",
  5091. "lib/net45/_._",
  5092. "lib/net46/System.IO.Compression.dll",
  5093. "lib/portable-net45+win8+wpa81/_._",
  5094. "lib/win8/_._",
  5095. "lib/wpa81/_._",
  5096. "lib/xamarinios10/_._",
  5097. "lib/xamarinmac20/_._",
  5098. "lib/xamarintvos10/_._",
  5099. "lib/xamarinwatchos10/_._",
  5100. "ref/MonoAndroid10/_._",
  5101. "ref/MonoTouch10/_._",
  5102. "ref/net45/_._",
  5103. "ref/net46/System.IO.Compression.dll",
  5104. "ref/netcore50/System.IO.Compression.dll",
  5105. "ref/netcore50/System.IO.Compression.xml",
  5106. "ref/netcore50/de/System.IO.Compression.xml",
  5107. "ref/netcore50/es/System.IO.Compression.xml",
  5108. "ref/netcore50/fr/System.IO.Compression.xml",
  5109. "ref/netcore50/it/System.IO.Compression.xml",
  5110. "ref/netcore50/ja/System.IO.Compression.xml",
  5111. "ref/netcore50/ko/System.IO.Compression.xml",
  5112. "ref/netcore50/ru/System.IO.Compression.xml",
  5113. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5114. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5115. "ref/netstandard1.1/System.IO.Compression.dll",
  5116. "ref/netstandard1.1/System.IO.Compression.xml",
  5117. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5118. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5119. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5120. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5121. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5122. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5123. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5124. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5125. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5126. "ref/netstandard1.3/System.IO.Compression.dll",
  5127. "ref/netstandard1.3/System.IO.Compression.xml",
  5128. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5129. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5130. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5131. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5132. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5133. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5134. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5135. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5136. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5137. "ref/portable-net45+win8+wpa81/_._",
  5138. "ref/win8/_._",
  5139. "ref/wpa81/_._",
  5140. "ref/xamarinios10/_._",
  5141. "ref/xamarinmac20/_._",
  5142. "ref/xamarintvos10/_._",
  5143. "ref/xamarinwatchos10/_._",
  5144. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5145. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5146. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5147. "system.io.compression.4.1.0.nupkg.sha512",
  5148. "system.io.compression.nuspec"
  5149. ]
  5150. },
  5151. "System.IO.Compression.ZipFile/4.0.1": {
  5152. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  5153. "type": "package",
  5154. "path": "system.io.compression.zipfile/4.0.1",
  5155. "files": [
  5156. ".nupkg.metadata",
  5157. "ThirdPartyNotices.txt",
  5158. "dotnet_library_license.txt",
  5159. "lib/MonoAndroid10/_._",
  5160. "lib/MonoTouch10/_._",
  5161. "lib/net46/System.IO.Compression.ZipFile.dll",
  5162. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5163. "lib/xamarinios10/_._",
  5164. "lib/xamarinmac20/_._",
  5165. "lib/xamarintvos10/_._",
  5166. "lib/xamarinwatchos10/_._",
  5167. "ref/MonoAndroid10/_._",
  5168. "ref/MonoTouch10/_._",
  5169. "ref/net46/System.IO.Compression.ZipFile.dll",
  5170. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5171. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5172. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5173. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5174. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5175. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5176. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5177. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5178. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5179. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5180. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5181. "ref/xamarinios10/_._",
  5182. "ref/xamarinmac20/_._",
  5183. "ref/xamarintvos10/_._",
  5184. "ref/xamarinwatchos10/_._",
  5185. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  5186. "system.io.compression.zipfile.nuspec"
  5187. ]
  5188. },
  5189. "System.IO.FileSystem/4.0.1": {
  5190. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  5191. "type": "package",
  5192. "path": "system.io.filesystem/4.0.1",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. "ThirdPartyNotices.txt",
  5196. "dotnet_library_license.txt",
  5197. "lib/MonoAndroid10/_._",
  5198. "lib/MonoTouch10/_._",
  5199. "lib/net46/System.IO.FileSystem.dll",
  5200. "lib/xamarinios10/_._",
  5201. "lib/xamarinmac20/_._",
  5202. "lib/xamarintvos10/_._",
  5203. "lib/xamarinwatchos10/_._",
  5204. "ref/MonoAndroid10/_._",
  5205. "ref/MonoTouch10/_._",
  5206. "ref/net46/System.IO.FileSystem.dll",
  5207. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5208. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5209. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5210. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5211. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5212. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5213. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5214. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5215. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5216. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5217. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5218. "ref/xamarinios10/_._",
  5219. "ref/xamarinmac20/_._",
  5220. "ref/xamarintvos10/_._",
  5221. "ref/xamarinwatchos10/_._",
  5222. "system.io.filesystem.4.0.1.nupkg.sha512",
  5223. "system.io.filesystem.nuspec"
  5224. ]
  5225. },
  5226. "System.IO.FileSystem.Primitives/4.0.1": {
  5227. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  5228. "type": "package",
  5229. "path": "system.io.filesystem.primitives/4.0.1",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. "ThirdPartyNotices.txt",
  5233. "dotnet_library_license.txt",
  5234. "lib/MonoAndroid10/_._",
  5235. "lib/MonoTouch10/_._",
  5236. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5237. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5238. "lib/xamarinios10/_._",
  5239. "lib/xamarinmac20/_._",
  5240. "lib/xamarintvos10/_._",
  5241. "lib/xamarinwatchos10/_._",
  5242. "ref/MonoAndroid10/_._",
  5243. "ref/MonoTouch10/_._",
  5244. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5245. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5246. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5247. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5248. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5249. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5250. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5251. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5252. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5253. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5254. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5255. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5256. "ref/xamarinios10/_._",
  5257. "ref/xamarinmac20/_._",
  5258. "ref/xamarintvos10/_._",
  5259. "ref/xamarinwatchos10/_._",
  5260. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  5261. "system.io.filesystem.primitives.nuspec"
  5262. ]
  5263. },
  5264. "System.IO.Pipelines/5.0.0": {
  5265. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  5266. "type": "package",
  5267. "path": "system.io.pipelines/5.0.0",
  5268. "files": [
  5269. ".nupkg.metadata",
  5270. ".signature.p7s",
  5271. "Icon.png",
  5272. "LICENSE.TXT",
  5273. "THIRD-PARTY-NOTICES.TXT",
  5274. "lib/net461/System.IO.Pipelines.dll",
  5275. "lib/net461/System.IO.Pipelines.xml",
  5276. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5277. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5278. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5279. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5280. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5281. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5282. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5283. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5284. "system.io.pipelines.5.0.0.nupkg.sha512",
  5285. "system.io.pipelines.nuspec",
  5286. "useSharedDesignerContext.txt",
  5287. "version.txt"
  5288. ]
  5289. },
  5290. "System.Linq/4.1.0": {
  5291. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  5292. "type": "package",
  5293. "path": "system.linq/4.1.0",
  5294. "files": [
  5295. ".nupkg.metadata",
  5296. "ThirdPartyNotices.txt",
  5297. "dotnet_library_license.txt",
  5298. "lib/MonoAndroid10/_._",
  5299. "lib/MonoTouch10/_._",
  5300. "lib/net45/_._",
  5301. "lib/net463/System.Linq.dll",
  5302. "lib/netcore50/System.Linq.dll",
  5303. "lib/netstandard1.6/System.Linq.dll",
  5304. "lib/portable-net45+win8+wp8+wpa81/_._",
  5305. "lib/win8/_._",
  5306. "lib/wp80/_._",
  5307. "lib/wpa81/_._",
  5308. "lib/xamarinios10/_._",
  5309. "lib/xamarinmac20/_._",
  5310. "lib/xamarintvos10/_._",
  5311. "lib/xamarinwatchos10/_._",
  5312. "ref/MonoAndroid10/_._",
  5313. "ref/MonoTouch10/_._",
  5314. "ref/net45/_._",
  5315. "ref/net463/System.Linq.dll",
  5316. "ref/netcore50/System.Linq.dll",
  5317. "ref/netcore50/System.Linq.xml",
  5318. "ref/netcore50/de/System.Linq.xml",
  5319. "ref/netcore50/es/System.Linq.xml",
  5320. "ref/netcore50/fr/System.Linq.xml",
  5321. "ref/netcore50/it/System.Linq.xml",
  5322. "ref/netcore50/ja/System.Linq.xml",
  5323. "ref/netcore50/ko/System.Linq.xml",
  5324. "ref/netcore50/ru/System.Linq.xml",
  5325. "ref/netcore50/zh-hans/System.Linq.xml",
  5326. "ref/netcore50/zh-hant/System.Linq.xml",
  5327. "ref/netstandard1.0/System.Linq.dll",
  5328. "ref/netstandard1.0/System.Linq.xml",
  5329. "ref/netstandard1.0/de/System.Linq.xml",
  5330. "ref/netstandard1.0/es/System.Linq.xml",
  5331. "ref/netstandard1.0/fr/System.Linq.xml",
  5332. "ref/netstandard1.0/it/System.Linq.xml",
  5333. "ref/netstandard1.0/ja/System.Linq.xml",
  5334. "ref/netstandard1.0/ko/System.Linq.xml",
  5335. "ref/netstandard1.0/ru/System.Linq.xml",
  5336. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5337. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5338. "ref/netstandard1.6/System.Linq.dll",
  5339. "ref/netstandard1.6/System.Linq.xml",
  5340. "ref/netstandard1.6/de/System.Linq.xml",
  5341. "ref/netstandard1.6/es/System.Linq.xml",
  5342. "ref/netstandard1.6/fr/System.Linq.xml",
  5343. "ref/netstandard1.6/it/System.Linq.xml",
  5344. "ref/netstandard1.6/ja/System.Linq.xml",
  5345. "ref/netstandard1.6/ko/System.Linq.xml",
  5346. "ref/netstandard1.6/ru/System.Linq.xml",
  5347. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5348. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5349. "ref/portable-net45+win8+wp8+wpa81/_._",
  5350. "ref/win8/_._",
  5351. "ref/wp80/_._",
  5352. "ref/wpa81/_._",
  5353. "ref/xamarinios10/_._",
  5354. "ref/xamarinmac20/_._",
  5355. "ref/xamarintvos10/_._",
  5356. "ref/xamarinwatchos10/_._",
  5357. "system.linq.4.1.0.nupkg.sha512",
  5358. "system.linq.nuspec"
  5359. ]
  5360. },
  5361. "System.Linq.Expressions/4.1.0": {
  5362. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  5363. "type": "package",
  5364. "path": "system.linq.expressions/4.1.0",
  5365. "files": [
  5366. ".nupkg.metadata",
  5367. "ThirdPartyNotices.txt",
  5368. "dotnet_library_license.txt",
  5369. "lib/MonoAndroid10/_._",
  5370. "lib/MonoTouch10/_._",
  5371. "lib/net45/_._",
  5372. "lib/net463/System.Linq.Expressions.dll",
  5373. "lib/netcore50/System.Linq.Expressions.dll",
  5374. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5375. "lib/portable-net45+win8+wp8+wpa81/_._",
  5376. "lib/win8/_._",
  5377. "lib/wp80/_._",
  5378. "lib/wpa81/_._",
  5379. "lib/xamarinios10/_._",
  5380. "lib/xamarinmac20/_._",
  5381. "lib/xamarintvos10/_._",
  5382. "lib/xamarinwatchos10/_._",
  5383. "ref/MonoAndroid10/_._",
  5384. "ref/MonoTouch10/_._",
  5385. "ref/net45/_._",
  5386. "ref/net463/System.Linq.Expressions.dll",
  5387. "ref/netcore50/System.Linq.Expressions.dll",
  5388. "ref/netcore50/System.Linq.Expressions.xml",
  5389. "ref/netcore50/de/System.Linq.Expressions.xml",
  5390. "ref/netcore50/es/System.Linq.Expressions.xml",
  5391. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5392. "ref/netcore50/it/System.Linq.Expressions.xml",
  5393. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5394. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5395. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5396. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5397. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5398. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5399. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5400. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5401. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5402. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5403. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5404. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5405. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5406. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5407. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5408. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5409. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5410. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5411. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5412. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5413. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5414. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5415. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5416. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5417. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5418. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5419. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5420. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5421. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5422. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5423. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5424. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5425. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5426. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5427. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5428. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5429. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5430. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5431. "ref/portable-net45+win8+wp8+wpa81/_._",
  5432. "ref/win8/_._",
  5433. "ref/wp80/_._",
  5434. "ref/wpa81/_._",
  5435. "ref/xamarinios10/_._",
  5436. "ref/xamarinmac20/_._",
  5437. "ref/xamarintvos10/_._",
  5438. "ref/xamarinwatchos10/_._",
  5439. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5440. "system.linq.expressions.4.1.0.nupkg.sha512",
  5441. "system.linq.expressions.nuspec"
  5442. ]
  5443. },
  5444. "System.Memory/4.5.3": {
  5445. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5446. "type": "package",
  5447. "path": "system.memory/4.5.3",
  5448. "files": [
  5449. ".nupkg.metadata",
  5450. ".signature.p7s",
  5451. "LICENSE.TXT",
  5452. "THIRD-PARTY-NOTICES.TXT",
  5453. "lib/netcoreapp2.1/_._",
  5454. "lib/netstandard1.1/System.Memory.dll",
  5455. "lib/netstandard1.1/System.Memory.xml",
  5456. "lib/netstandard2.0/System.Memory.dll",
  5457. "lib/netstandard2.0/System.Memory.xml",
  5458. "ref/netcoreapp2.1/_._",
  5459. "system.memory.4.5.3.nupkg.sha512",
  5460. "system.memory.nuspec",
  5461. "useSharedDesignerContext.txt",
  5462. "version.txt"
  5463. ]
  5464. },
  5465. "System.Net.Http/4.1.0": {
  5466. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  5467. "type": "package",
  5468. "path": "system.net.http/4.1.0",
  5469. "files": [
  5470. ".nupkg.metadata",
  5471. ".signature.p7s",
  5472. "ThirdPartyNotices.txt",
  5473. "dotnet_library_license.txt",
  5474. "lib/Xamarinmac20/_._",
  5475. "lib/monoandroid10/_._",
  5476. "lib/monotouch10/_._",
  5477. "lib/net45/_._",
  5478. "lib/net46/System.Net.Http.dll",
  5479. "lib/portable-net45+win8+wpa81/_._",
  5480. "lib/win8/_._",
  5481. "lib/wpa81/_._",
  5482. "lib/xamarinios10/_._",
  5483. "lib/xamarintvos10/_._",
  5484. "lib/xamarinwatchos10/_._",
  5485. "ref/Xamarinmac20/_._",
  5486. "ref/monoandroid10/_._",
  5487. "ref/monotouch10/_._",
  5488. "ref/net45/_._",
  5489. "ref/net46/System.Net.Http.dll",
  5490. "ref/net46/System.Net.Http.xml",
  5491. "ref/net46/de/System.Net.Http.xml",
  5492. "ref/net46/es/System.Net.Http.xml",
  5493. "ref/net46/fr/System.Net.Http.xml",
  5494. "ref/net46/it/System.Net.Http.xml",
  5495. "ref/net46/ja/System.Net.Http.xml",
  5496. "ref/net46/ko/System.Net.Http.xml",
  5497. "ref/net46/ru/System.Net.Http.xml",
  5498. "ref/net46/zh-hans/System.Net.Http.xml",
  5499. "ref/net46/zh-hant/System.Net.Http.xml",
  5500. "ref/netcore50/System.Net.Http.dll",
  5501. "ref/netcore50/System.Net.Http.xml",
  5502. "ref/netcore50/de/System.Net.Http.xml",
  5503. "ref/netcore50/es/System.Net.Http.xml",
  5504. "ref/netcore50/fr/System.Net.Http.xml",
  5505. "ref/netcore50/it/System.Net.Http.xml",
  5506. "ref/netcore50/ja/System.Net.Http.xml",
  5507. "ref/netcore50/ko/System.Net.Http.xml",
  5508. "ref/netcore50/ru/System.Net.Http.xml",
  5509. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5510. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5511. "ref/netstandard1.1/System.Net.Http.dll",
  5512. "ref/netstandard1.1/System.Net.Http.xml",
  5513. "ref/netstandard1.1/de/System.Net.Http.xml",
  5514. "ref/netstandard1.1/es/System.Net.Http.xml",
  5515. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5516. "ref/netstandard1.1/it/System.Net.Http.xml",
  5517. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5518. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5519. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5520. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5521. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5522. "ref/netstandard1.3/System.Net.Http.dll",
  5523. "ref/netstandard1.3/System.Net.Http.xml",
  5524. "ref/netstandard1.3/de/System.Net.Http.xml",
  5525. "ref/netstandard1.3/es/System.Net.Http.xml",
  5526. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5527. "ref/netstandard1.3/it/System.Net.Http.xml",
  5528. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5529. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5530. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5531. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5532. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5533. "ref/portable-net45+win8+wpa81/_._",
  5534. "ref/win8/_._",
  5535. "ref/wpa81/_._",
  5536. "ref/xamarinios10/_._",
  5537. "ref/xamarintvos10/_._",
  5538. "ref/xamarinwatchos10/_._",
  5539. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5540. "runtimes/win/lib/net46/System.Net.Http.dll",
  5541. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5542. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5543. "system.net.http.4.1.0.nupkg.sha512",
  5544. "system.net.http.nuspec"
  5545. ]
  5546. },
  5547. "System.Net.NameResolution/4.0.0": {
  5548. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  5549. "type": "package",
  5550. "path": "system.net.nameresolution/4.0.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/MonoAndroid10/_._",
  5557. "lib/MonoTouch10/_._",
  5558. "lib/net46/System.Net.NameResolution.dll",
  5559. "lib/xamarinios10/_._",
  5560. "lib/xamarinmac20/_._",
  5561. "lib/xamarintvos10/_._",
  5562. "lib/xamarinwatchos10/_._",
  5563. "ref/MonoAndroid10/_._",
  5564. "ref/MonoTouch10/_._",
  5565. "ref/net46/System.Net.NameResolution.dll",
  5566. "ref/netstandard1.3/System.Net.NameResolution.dll",
  5567. "ref/netstandard1.3/System.Net.NameResolution.xml",
  5568. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  5569. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  5570. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  5571. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  5572. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  5573. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  5574. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  5575. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  5576. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  5577. "ref/xamarinios10/_._",
  5578. "ref/xamarinmac20/_._",
  5579. "ref/xamarintvos10/_._",
  5580. "ref/xamarinwatchos10/_._",
  5581. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  5582. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  5583. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  5584. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  5585. "system.net.nameresolution.4.0.0.nupkg.sha512",
  5586. "system.net.nameresolution.nuspec"
  5587. ]
  5588. },
  5589. "System.Net.Primitives/4.0.11": {
  5590. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  5591. "type": "package",
  5592. "path": "system.net.primitives/4.0.11",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. "ThirdPartyNotices.txt",
  5596. "dotnet_library_license.txt",
  5597. "lib/MonoAndroid10/_._",
  5598. "lib/MonoTouch10/_._",
  5599. "lib/net45/_._",
  5600. "lib/portable-net45+win8+wp8+wpa81/_._",
  5601. "lib/win8/_._",
  5602. "lib/wp80/_._",
  5603. "lib/wpa81/_._",
  5604. "lib/xamarinios10/_._",
  5605. "lib/xamarinmac20/_._",
  5606. "lib/xamarintvos10/_._",
  5607. "lib/xamarinwatchos10/_._",
  5608. "ref/MonoAndroid10/_._",
  5609. "ref/MonoTouch10/_._",
  5610. "ref/net45/_._",
  5611. "ref/netcore50/System.Net.Primitives.dll",
  5612. "ref/netcore50/System.Net.Primitives.xml",
  5613. "ref/netcore50/de/System.Net.Primitives.xml",
  5614. "ref/netcore50/es/System.Net.Primitives.xml",
  5615. "ref/netcore50/fr/System.Net.Primitives.xml",
  5616. "ref/netcore50/it/System.Net.Primitives.xml",
  5617. "ref/netcore50/ja/System.Net.Primitives.xml",
  5618. "ref/netcore50/ko/System.Net.Primitives.xml",
  5619. "ref/netcore50/ru/System.Net.Primitives.xml",
  5620. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5621. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5622. "ref/netstandard1.0/System.Net.Primitives.dll",
  5623. "ref/netstandard1.0/System.Net.Primitives.xml",
  5624. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5625. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5626. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5627. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5628. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5629. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5630. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5631. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5632. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5633. "ref/netstandard1.1/System.Net.Primitives.dll",
  5634. "ref/netstandard1.1/System.Net.Primitives.xml",
  5635. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5636. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5637. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5638. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5639. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5640. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5641. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5642. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5643. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5644. "ref/netstandard1.3/System.Net.Primitives.dll",
  5645. "ref/netstandard1.3/System.Net.Primitives.xml",
  5646. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5647. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5648. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5649. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5650. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5651. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5652. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5653. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5654. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5655. "ref/portable-net45+win8+wp8+wpa81/_._",
  5656. "ref/win8/_._",
  5657. "ref/wp80/_._",
  5658. "ref/wpa81/_._",
  5659. "ref/xamarinios10/_._",
  5660. "ref/xamarinmac20/_._",
  5661. "ref/xamarintvos10/_._",
  5662. "ref/xamarinwatchos10/_._",
  5663. "system.net.primitives.4.0.11.nupkg.sha512",
  5664. "system.net.primitives.nuspec"
  5665. ]
  5666. },
  5667. "System.Net.Sockets/4.1.0": {
  5668. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  5669. "type": "package",
  5670. "path": "system.net.sockets/4.1.0",
  5671. "files": [
  5672. ".nupkg.metadata",
  5673. "ThirdPartyNotices.txt",
  5674. "dotnet_library_license.txt",
  5675. "lib/MonoAndroid10/_._",
  5676. "lib/MonoTouch10/_._",
  5677. "lib/net46/System.Net.Sockets.dll",
  5678. "lib/xamarinios10/_._",
  5679. "lib/xamarinmac20/_._",
  5680. "lib/xamarintvos10/_._",
  5681. "lib/xamarinwatchos10/_._",
  5682. "ref/MonoAndroid10/_._",
  5683. "ref/MonoTouch10/_._",
  5684. "ref/net46/System.Net.Sockets.dll",
  5685. "ref/netstandard1.3/System.Net.Sockets.dll",
  5686. "ref/netstandard1.3/System.Net.Sockets.xml",
  5687. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5688. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5689. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5690. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5691. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5692. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5693. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5694. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5695. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5696. "ref/xamarinios10/_._",
  5697. "ref/xamarinmac20/_._",
  5698. "ref/xamarintvos10/_._",
  5699. "ref/xamarinwatchos10/_._",
  5700. "system.net.sockets.4.1.0.nupkg.sha512",
  5701. "system.net.sockets.nuspec"
  5702. ]
  5703. },
  5704. "System.ObjectModel/4.0.12": {
  5705. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  5706. "type": "package",
  5707. "path": "system.objectmodel/4.0.12",
  5708. "files": [
  5709. ".nupkg.metadata",
  5710. "ThirdPartyNotices.txt",
  5711. "dotnet_library_license.txt",
  5712. "lib/MonoAndroid10/_._",
  5713. "lib/MonoTouch10/_._",
  5714. "lib/net45/_._",
  5715. "lib/netcore50/System.ObjectModel.dll",
  5716. "lib/netstandard1.3/System.ObjectModel.dll",
  5717. "lib/portable-net45+win8+wp8+wpa81/_._",
  5718. "lib/win8/_._",
  5719. "lib/wp80/_._",
  5720. "lib/wpa81/_._",
  5721. "lib/xamarinios10/_._",
  5722. "lib/xamarinmac20/_._",
  5723. "lib/xamarintvos10/_._",
  5724. "lib/xamarinwatchos10/_._",
  5725. "ref/MonoAndroid10/_._",
  5726. "ref/MonoTouch10/_._",
  5727. "ref/net45/_._",
  5728. "ref/netcore50/System.ObjectModel.dll",
  5729. "ref/netcore50/System.ObjectModel.xml",
  5730. "ref/netcore50/de/System.ObjectModel.xml",
  5731. "ref/netcore50/es/System.ObjectModel.xml",
  5732. "ref/netcore50/fr/System.ObjectModel.xml",
  5733. "ref/netcore50/it/System.ObjectModel.xml",
  5734. "ref/netcore50/ja/System.ObjectModel.xml",
  5735. "ref/netcore50/ko/System.ObjectModel.xml",
  5736. "ref/netcore50/ru/System.ObjectModel.xml",
  5737. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5738. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5739. "ref/netstandard1.0/System.ObjectModel.dll",
  5740. "ref/netstandard1.0/System.ObjectModel.xml",
  5741. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5742. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5743. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5744. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5745. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5746. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5747. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5748. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5749. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5750. "ref/netstandard1.3/System.ObjectModel.dll",
  5751. "ref/netstandard1.3/System.ObjectModel.xml",
  5752. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5753. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5754. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5755. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5756. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5757. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5758. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5759. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5760. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5761. "ref/portable-net45+win8+wp8+wpa81/_._",
  5762. "ref/win8/_._",
  5763. "ref/wp80/_._",
  5764. "ref/wpa81/_._",
  5765. "ref/xamarinios10/_._",
  5766. "ref/xamarinmac20/_._",
  5767. "ref/xamarintvos10/_._",
  5768. "ref/xamarinwatchos10/_._",
  5769. "system.objectmodel.4.0.12.nupkg.sha512",
  5770. "system.objectmodel.nuspec"
  5771. ]
  5772. },
  5773. "System.Reflection/4.3.0": {
  5774. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5775. "type": "package",
  5776. "path": "system.reflection/4.3.0",
  5777. "files": [
  5778. ".nupkg.metadata",
  5779. "ThirdPartyNotices.txt",
  5780. "dotnet_library_license.txt",
  5781. "lib/MonoAndroid10/_._",
  5782. "lib/MonoTouch10/_._",
  5783. "lib/net45/_._",
  5784. "lib/net462/System.Reflection.dll",
  5785. "lib/portable-net45+win8+wp8+wpa81/_._",
  5786. "lib/win8/_._",
  5787. "lib/wp80/_._",
  5788. "lib/wpa81/_._",
  5789. "lib/xamarinios10/_._",
  5790. "lib/xamarinmac20/_._",
  5791. "lib/xamarintvos10/_._",
  5792. "lib/xamarinwatchos10/_._",
  5793. "ref/MonoAndroid10/_._",
  5794. "ref/MonoTouch10/_._",
  5795. "ref/net45/_._",
  5796. "ref/net462/System.Reflection.dll",
  5797. "ref/netcore50/System.Reflection.dll",
  5798. "ref/netcore50/System.Reflection.xml",
  5799. "ref/netcore50/de/System.Reflection.xml",
  5800. "ref/netcore50/es/System.Reflection.xml",
  5801. "ref/netcore50/fr/System.Reflection.xml",
  5802. "ref/netcore50/it/System.Reflection.xml",
  5803. "ref/netcore50/ja/System.Reflection.xml",
  5804. "ref/netcore50/ko/System.Reflection.xml",
  5805. "ref/netcore50/ru/System.Reflection.xml",
  5806. "ref/netcore50/zh-hans/System.Reflection.xml",
  5807. "ref/netcore50/zh-hant/System.Reflection.xml",
  5808. "ref/netstandard1.0/System.Reflection.dll",
  5809. "ref/netstandard1.0/System.Reflection.xml",
  5810. "ref/netstandard1.0/de/System.Reflection.xml",
  5811. "ref/netstandard1.0/es/System.Reflection.xml",
  5812. "ref/netstandard1.0/fr/System.Reflection.xml",
  5813. "ref/netstandard1.0/it/System.Reflection.xml",
  5814. "ref/netstandard1.0/ja/System.Reflection.xml",
  5815. "ref/netstandard1.0/ko/System.Reflection.xml",
  5816. "ref/netstandard1.0/ru/System.Reflection.xml",
  5817. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5818. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5819. "ref/netstandard1.3/System.Reflection.dll",
  5820. "ref/netstandard1.3/System.Reflection.xml",
  5821. "ref/netstandard1.3/de/System.Reflection.xml",
  5822. "ref/netstandard1.3/es/System.Reflection.xml",
  5823. "ref/netstandard1.3/fr/System.Reflection.xml",
  5824. "ref/netstandard1.3/it/System.Reflection.xml",
  5825. "ref/netstandard1.3/ja/System.Reflection.xml",
  5826. "ref/netstandard1.3/ko/System.Reflection.xml",
  5827. "ref/netstandard1.3/ru/System.Reflection.xml",
  5828. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5829. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5830. "ref/netstandard1.5/System.Reflection.dll",
  5831. "ref/netstandard1.5/System.Reflection.xml",
  5832. "ref/netstandard1.5/de/System.Reflection.xml",
  5833. "ref/netstandard1.5/es/System.Reflection.xml",
  5834. "ref/netstandard1.5/fr/System.Reflection.xml",
  5835. "ref/netstandard1.5/it/System.Reflection.xml",
  5836. "ref/netstandard1.5/ja/System.Reflection.xml",
  5837. "ref/netstandard1.5/ko/System.Reflection.xml",
  5838. "ref/netstandard1.5/ru/System.Reflection.xml",
  5839. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5840. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5841. "ref/portable-net45+win8+wp8+wpa81/_._",
  5842. "ref/win8/_._",
  5843. "ref/wp80/_._",
  5844. "ref/wpa81/_._",
  5845. "ref/xamarinios10/_._",
  5846. "ref/xamarinmac20/_._",
  5847. "ref/xamarintvos10/_._",
  5848. "ref/xamarinwatchos10/_._",
  5849. "system.reflection.4.3.0.nupkg.sha512",
  5850. "system.reflection.nuspec"
  5851. ]
  5852. },
  5853. "System.Reflection.Emit/4.7.0": {
  5854. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  5855. "type": "package",
  5856. "path": "system.reflection.emit/4.7.0",
  5857. "files": [
  5858. ".nupkg.metadata",
  5859. ".signature.p7s",
  5860. "LICENSE.TXT",
  5861. "THIRD-PARTY-NOTICES.TXT",
  5862. "lib/MonoAndroid10/_._",
  5863. "lib/MonoTouch10/_._",
  5864. "lib/net45/_._",
  5865. "lib/netcore50/System.Reflection.Emit.dll",
  5866. "lib/netcoreapp2.0/_._",
  5867. "lib/netstandard1.1/System.Reflection.Emit.dll",
  5868. "lib/netstandard1.1/System.Reflection.Emit.xml",
  5869. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5870. "lib/netstandard2.0/System.Reflection.Emit.dll",
  5871. "lib/netstandard2.0/System.Reflection.Emit.xml",
  5872. "lib/netstandard2.1/_._",
  5873. "lib/xamarinios10/_._",
  5874. "lib/xamarinmac20/_._",
  5875. "lib/xamarintvos10/_._",
  5876. "lib/xamarinwatchos10/_._",
  5877. "ref/MonoAndroid10/_._",
  5878. "ref/MonoTouch10/_._",
  5879. "ref/net45/_._",
  5880. "ref/netcoreapp2.0/_._",
  5881. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5882. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5883. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5884. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5885. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5886. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5887. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5888. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5889. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5890. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5891. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5892. "ref/netstandard2.0/System.Reflection.Emit.dll",
  5893. "ref/netstandard2.0/System.Reflection.Emit.xml",
  5894. "ref/netstandard2.1/_._",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  5900. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  5901. "system.reflection.emit.4.7.0.nupkg.sha512",
  5902. "system.reflection.emit.nuspec",
  5903. "useSharedDesignerContext.txt",
  5904. "version.txt"
  5905. ]
  5906. },
  5907. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5908. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  5909. "type": "package",
  5910. "path": "system.reflection.emit.ilgeneration/4.0.1",
  5911. "files": [
  5912. ".nupkg.metadata",
  5913. "ThirdPartyNotices.txt",
  5914. "dotnet_library_license.txt",
  5915. "lib/net45/_._",
  5916. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5917. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5918. "lib/portable-net45+wp8/_._",
  5919. "lib/wp80/_._",
  5920. "ref/net45/_._",
  5921. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5922. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5923. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5924. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5925. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5926. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5927. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5928. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5929. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5930. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5931. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5932. "ref/portable-net45+wp8/_._",
  5933. "ref/wp80/_._",
  5934. "runtimes/aot/lib/netcore50/_._",
  5935. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  5936. "system.reflection.emit.ilgeneration.nuspec"
  5937. ]
  5938. },
  5939. "System.Reflection.Emit.Lightweight/4.0.1": {
  5940. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  5941. "type": "package",
  5942. "path": "system.reflection.emit.lightweight/4.0.1",
  5943. "files": [
  5944. ".nupkg.metadata",
  5945. "ThirdPartyNotices.txt",
  5946. "dotnet_library_license.txt",
  5947. "lib/net45/_._",
  5948. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5949. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5950. "lib/portable-net45+wp8/_._",
  5951. "lib/wp80/_._",
  5952. "ref/net45/_._",
  5953. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5954. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5955. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5956. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5957. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5958. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5959. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5960. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5961. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5962. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5963. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5964. "ref/portable-net45+wp8/_._",
  5965. "ref/wp80/_._",
  5966. "runtimes/aot/lib/netcore50/_._",
  5967. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  5968. "system.reflection.emit.lightweight.nuspec"
  5969. ]
  5970. },
  5971. "System.Reflection.Extensions/4.0.1": {
  5972. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  5973. "type": "package",
  5974. "path": "system.reflection.extensions/4.0.1",
  5975. "files": [
  5976. ".nupkg.metadata",
  5977. "ThirdPartyNotices.txt",
  5978. "dotnet_library_license.txt",
  5979. "lib/MonoAndroid10/_._",
  5980. "lib/MonoTouch10/_._",
  5981. "lib/net45/_._",
  5982. "lib/portable-net45+win8+wp8+wpa81/_._",
  5983. "lib/win8/_._",
  5984. "lib/wp80/_._",
  5985. "lib/wpa81/_._",
  5986. "lib/xamarinios10/_._",
  5987. "lib/xamarinmac20/_._",
  5988. "lib/xamarintvos10/_._",
  5989. "lib/xamarinwatchos10/_._",
  5990. "ref/MonoAndroid10/_._",
  5991. "ref/MonoTouch10/_._",
  5992. "ref/net45/_._",
  5993. "ref/netcore50/System.Reflection.Extensions.dll",
  5994. "ref/netcore50/System.Reflection.Extensions.xml",
  5995. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5996. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5997. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5998. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5999. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6000. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6001. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6002. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6003. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6004. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6005. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6006. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6007. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6008. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6009. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6010. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6011. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6012. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6013. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6014. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6015. "ref/portable-net45+win8+wp8+wpa81/_._",
  6016. "ref/win8/_._",
  6017. "ref/wp80/_._",
  6018. "ref/wpa81/_._",
  6019. "ref/xamarinios10/_._",
  6020. "ref/xamarinmac20/_._",
  6021. "ref/xamarintvos10/_._",
  6022. "ref/xamarinwatchos10/_._",
  6023. "system.reflection.extensions.4.0.1.nupkg.sha512",
  6024. "system.reflection.extensions.nuspec"
  6025. ]
  6026. },
  6027. "System.Reflection.Primitives/4.3.0": {
  6028. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6029. "type": "package",
  6030. "path": "system.reflection.primitives/4.3.0",
  6031. "files": [
  6032. ".nupkg.metadata",
  6033. "ThirdPartyNotices.txt",
  6034. "dotnet_library_license.txt",
  6035. "lib/MonoAndroid10/_._",
  6036. "lib/MonoTouch10/_._",
  6037. "lib/net45/_._",
  6038. "lib/portable-net45+win8+wp8+wpa81/_._",
  6039. "lib/win8/_._",
  6040. "lib/wp80/_._",
  6041. "lib/wpa81/_._",
  6042. "lib/xamarinios10/_._",
  6043. "lib/xamarinmac20/_._",
  6044. "lib/xamarintvos10/_._",
  6045. "lib/xamarinwatchos10/_._",
  6046. "ref/MonoAndroid10/_._",
  6047. "ref/MonoTouch10/_._",
  6048. "ref/net45/_._",
  6049. "ref/netcore50/System.Reflection.Primitives.dll",
  6050. "ref/netcore50/System.Reflection.Primitives.xml",
  6051. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6052. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6053. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6054. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6055. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6056. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6057. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6058. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6059. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6060. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6061. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6062. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6063. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6064. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6065. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6066. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6067. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6068. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6069. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6070. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6071. "ref/portable-net45+win8+wp8+wpa81/_._",
  6072. "ref/win8/_._",
  6073. "ref/wp80/_._",
  6074. "ref/wpa81/_._",
  6075. "ref/xamarinios10/_._",
  6076. "ref/xamarinmac20/_._",
  6077. "ref/xamarintvos10/_._",
  6078. "ref/xamarinwatchos10/_._",
  6079. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6080. "system.reflection.primitives.nuspec"
  6081. ]
  6082. },
  6083. "System.Reflection.TypeExtensions/4.1.0": {
  6084. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  6085. "type": "package",
  6086. "path": "system.reflection.typeextensions/4.1.0",
  6087. "files": [
  6088. ".nupkg.metadata",
  6089. "ThirdPartyNotices.txt",
  6090. "dotnet_library_license.txt",
  6091. "lib/MonoAndroid10/_._",
  6092. "lib/MonoTouch10/_._",
  6093. "lib/net46/System.Reflection.TypeExtensions.dll",
  6094. "lib/net462/System.Reflection.TypeExtensions.dll",
  6095. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6096. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6097. "lib/xamarinios10/_._",
  6098. "lib/xamarinmac20/_._",
  6099. "lib/xamarintvos10/_._",
  6100. "lib/xamarinwatchos10/_._",
  6101. "ref/MonoAndroid10/_._",
  6102. "ref/MonoTouch10/_._",
  6103. "ref/net46/System.Reflection.TypeExtensions.dll",
  6104. "ref/net462/System.Reflection.TypeExtensions.dll",
  6105. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6106. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6107. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6108. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6109. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6110. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6111. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6112. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6113. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6114. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6115. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6116. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6117. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6118. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6119. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6120. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6121. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6122. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6123. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6124. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6125. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6126. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6127. "ref/xamarinios10/_._",
  6128. "ref/xamarinmac20/_._",
  6129. "ref/xamarintvos10/_._",
  6130. "ref/xamarinwatchos10/_._",
  6131. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6132. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  6133. "system.reflection.typeextensions.nuspec"
  6134. ]
  6135. },
  6136. "System.Resources.ResourceManager/4.0.1": {
  6137. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  6138. "type": "package",
  6139. "path": "system.resources.resourcemanager/4.0.1",
  6140. "files": [
  6141. ".nupkg.metadata",
  6142. "ThirdPartyNotices.txt",
  6143. "dotnet_library_license.txt",
  6144. "lib/MonoAndroid10/_._",
  6145. "lib/MonoTouch10/_._",
  6146. "lib/net45/_._",
  6147. "lib/portable-net45+win8+wp8+wpa81/_._",
  6148. "lib/win8/_._",
  6149. "lib/wp80/_._",
  6150. "lib/wpa81/_._",
  6151. "lib/xamarinios10/_._",
  6152. "lib/xamarinmac20/_._",
  6153. "lib/xamarintvos10/_._",
  6154. "lib/xamarinwatchos10/_._",
  6155. "ref/MonoAndroid10/_._",
  6156. "ref/MonoTouch10/_._",
  6157. "ref/net45/_._",
  6158. "ref/netcore50/System.Resources.ResourceManager.dll",
  6159. "ref/netcore50/System.Resources.ResourceManager.xml",
  6160. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6161. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6162. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6163. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6164. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6165. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6166. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6167. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6168. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6169. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6170. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6171. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6172. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6173. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6174. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6175. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6176. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6177. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6178. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6179. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6180. "ref/portable-net45+win8+wp8+wpa81/_._",
  6181. "ref/win8/_._",
  6182. "ref/wp80/_._",
  6183. "ref/wpa81/_._",
  6184. "ref/xamarinios10/_._",
  6185. "ref/xamarinmac20/_._",
  6186. "ref/xamarintvos10/_._",
  6187. "ref/xamarinwatchos10/_._",
  6188. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  6189. "system.resources.resourcemanager.nuspec"
  6190. ]
  6191. },
  6192. "System.Runtime/4.3.0": {
  6193. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6194. "type": "package",
  6195. "path": "system.runtime/4.3.0",
  6196. "files": [
  6197. ".nupkg.metadata",
  6198. "ThirdPartyNotices.txt",
  6199. "dotnet_library_license.txt",
  6200. "lib/MonoAndroid10/_._",
  6201. "lib/MonoTouch10/_._",
  6202. "lib/net45/_._",
  6203. "lib/net462/System.Runtime.dll",
  6204. "lib/portable-net45+win8+wp80+wpa81/_._",
  6205. "lib/win8/_._",
  6206. "lib/wp80/_._",
  6207. "lib/wpa81/_._",
  6208. "lib/xamarinios10/_._",
  6209. "lib/xamarinmac20/_._",
  6210. "lib/xamarintvos10/_._",
  6211. "lib/xamarinwatchos10/_._",
  6212. "ref/MonoAndroid10/_._",
  6213. "ref/MonoTouch10/_._",
  6214. "ref/net45/_._",
  6215. "ref/net462/System.Runtime.dll",
  6216. "ref/netcore50/System.Runtime.dll",
  6217. "ref/netcore50/System.Runtime.xml",
  6218. "ref/netcore50/de/System.Runtime.xml",
  6219. "ref/netcore50/es/System.Runtime.xml",
  6220. "ref/netcore50/fr/System.Runtime.xml",
  6221. "ref/netcore50/it/System.Runtime.xml",
  6222. "ref/netcore50/ja/System.Runtime.xml",
  6223. "ref/netcore50/ko/System.Runtime.xml",
  6224. "ref/netcore50/ru/System.Runtime.xml",
  6225. "ref/netcore50/zh-hans/System.Runtime.xml",
  6226. "ref/netcore50/zh-hant/System.Runtime.xml",
  6227. "ref/netstandard1.0/System.Runtime.dll",
  6228. "ref/netstandard1.0/System.Runtime.xml",
  6229. "ref/netstandard1.0/de/System.Runtime.xml",
  6230. "ref/netstandard1.0/es/System.Runtime.xml",
  6231. "ref/netstandard1.0/fr/System.Runtime.xml",
  6232. "ref/netstandard1.0/it/System.Runtime.xml",
  6233. "ref/netstandard1.0/ja/System.Runtime.xml",
  6234. "ref/netstandard1.0/ko/System.Runtime.xml",
  6235. "ref/netstandard1.0/ru/System.Runtime.xml",
  6236. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6237. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6238. "ref/netstandard1.2/System.Runtime.dll",
  6239. "ref/netstandard1.2/System.Runtime.xml",
  6240. "ref/netstandard1.2/de/System.Runtime.xml",
  6241. "ref/netstandard1.2/es/System.Runtime.xml",
  6242. "ref/netstandard1.2/fr/System.Runtime.xml",
  6243. "ref/netstandard1.2/it/System.Runtime.xml",
  6244. "ref/netstandard1.2/ja/System.Runtime.xml",
  6245. "ref/netstandard1.2/ko/System.Runtime.xml",
  6246. "ref/netstandard1.2/ru/System.Runtime.xml",
  6247. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6248. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6249. "ref/netstandard1.3/System.Runtime.dll",
  6250. "ref/netstandard1.3/System.Runtime.xml",
  6251. "ref/netstandard1.3/de/System.Runtime.xml",
  6252. "ref/netstandard1.3/es/System.Runtime.xml",
  6253. "ref/netstandard1.3/fr/System.Runtime.xml",
  6254. "ref/netstandard1.3/it/System.Runtime.xml",
  6255. "ref/netstandard1.3/ja/System.Runtime.xml",
  6256. "ref/netstandard1.3/ko/System.Runtime.xml",
  6257. "ref/netstandard1.3/ru/System.Runtime.xml",
  6258. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6259. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6260. "ref/netstandard1.5/System.Runtime.dll",
  6261. "ref/netstandard1.5/System.Runtime.xml",
  6262. "ref/netstandard1.5/de/System.Runtime.xml",
  6263. "ref/netstandard1.5/es/System.Runtime.xml",
  6264. "ref/netstandard1.5/fr/System.Runtime.xml",
  6265. "ref/netstandard1.5/it/System.Runtime.xml",
  6266. "ref/netstandard1.5/ja/System.Runtime.xml",
  6267. "ref/netstandard1.5/ko/System.Runtime.xml",
  6268. "ref/netstandard1.5/ru/System.Runtime.xml",
  6269. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6270. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6271. "ref/portable-net45+win8+wp80+wpa81/_._",
  6272. "ref/win8/_._",
  6273. "ref/wp80/_._",
  6274. "ref/wpa81/_._",
  6275. "ref/xamarinios10/_._",
  6276. "ref/xamarinmac20/_._",
  6277. "ref/xamarintvos10/_._",
  6278. "ref/xamarinwatchos10/_._",
  6279. "system.runtime.4.3.0.nupkg.sha512",
  6280. "system.runtime.nuspec"
  6281. ]
  6282. },
  6283. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  6284. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  6285. "type": "package",
  6286. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  6287. "files": [
  6288. ".nupkg.metadata",
  6289. ".signature.p7s",
  6290. "LICENSE.TXT",
  6291. "THIRD-PARTY-NOTICES.TXT",
  6292. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6293. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6294. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6295. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6296. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6297. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6298. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6299. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6300. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6301. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6302. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  6303. "system.runtime.compilerservices.unsafe.nuspec",
  6304. "useSharedDesignerContext.txt",
  6305. "version.txt"
  6306. ]
  6307. },
  6308. "System.Runtime.Extensions/4.1.0": {
  6309. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  6310. "type": "package",
  6311. "path": "system.runtime.extensions/4.1.0",
  6312. "files": [
  6313. ".nupkg.metadata",
  6314. "ThirdPartyNotices.txt",
  6315. "dotnet_library_license.txt",
  6316. "lib/MonoAndroid10/_._",
  6317. "lib/MonoTouch10/_._",
  6318. "lib/net45/_._",
  6319. "lib/net462/System.Runtime.Extensions.dll",
  6320. "lib/portable-net45+win8+wp8+wpa81/_._",
  6321. "lib/win8/_._",
  6322. "lib/wp80/_._",
  6323. "lib/wpa81/_._",
  6324. "lib/xamarinios10/_._",
  6325. "lib/xamarinmac20/_._",
  6326. "lib/xamarintvos10/_._",
  6327. "lib/xamarinwatchos10/_._",
  6328. "ref/MonoAndroid10/_._",
  6329. "ref/MonoTouch10/_._",
  6330. "ref/net45/_._",
  6331. "ref/net462/System.Runtime.Extensions.dll",
  6332. "ref/netcore50/System.Runtime.Extensions.dll",
  6333. "ref/netcore50/System.Runtime.Extensions.xml",
  6334. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6335. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6336. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6337. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6338. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6339. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6340. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6341. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6342. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6343. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6344. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6345. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6346. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6347. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6348. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6349. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6350. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6351. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6352. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6353. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6354. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6355. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6356. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6357. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6358. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6359. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6360. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6361. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6362. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6363. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6364. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6365. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6366. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6367. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6368. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6369. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6370. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6371. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6372. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6373. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6374. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6375. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6376. "ref/portable-net45+win8+wp8+wpa81/_._",
  6377. "ref/win8/_._",
  6378. "ref/wp80/_._",
  6379. "ref/wpa81/_._",
  6380. "ref/xamarinios10/_._",
  6381. "ref/xamarinmac20/_._",
  6382. "ref/xamarintvos10/_._",
  6383. "ref/xamarinwatchos10/_._",
  6384. "system.runtime.extensions.4.1.0.nupkg.sha512",
  6385. "system.runtime.extensions.nuspec"
  6386. ]
  6387. },
  6388. "System.Runtime.Handles/4.0.1": {
  6389. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  6390. "type": "package",
  6391. "path": "system.runtime.handles/4.0.1",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. "ThirdPartyNotices.txt",
  6395. "dotnet_library_license.txt",
  6396. "lib/MonoAndroid10/_._",
  6397. "lib/MonoTouch10/_._",
  6398. "lib/net46/_._",
  6399. "lib/xamarinios10/_._",
  6400. "lib/xamarinmac20/_._",
  6401. "lib/xamarintvos10/_._",
  6402. "lib/xamarinwatchos10/_._",
  6403. "ref/MonoAndroid10/_._",
  6404. "ref/MonoTouch10/_._",
  6405. "ref/net46/_._",
  6406. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6407. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6408. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6409. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6410. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6411. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6412. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6413. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6414. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6415. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6416. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6417. "ref/xamarinios10/_._",
  6418. "ref/xamarinmac20/_._",
  6419. "ref/xamarintvos10/_._",
  6420. "ref/xamarinwatchos10/_._",
  6421. "system.runtime.handles.4.0.1.nupkg.sha512",
  6422. "system.runtime.handles.nuspec"
  6423. ]
  6424. },
  6425. "System.Runtime.InteropServices/4.1.0": {
  6426. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  6427. "type": "package",
  6428. "path": "system.runtime.interopservices/4.1.0",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. "ThirdPartyNotices.txt",
  6432. "dotnet_library_license.txt",
  6433. "lib/MonoAndroid10/_._",
  6434. "lib/MonoTouch10/_._",
  6435. "lib/net45/_._",
  6436. "lib/net462/System.Runtime.InteropServices.dll",
  6437. "lib/portable-net45+win8+wpa81/_._",
  6438. "lib/win8/_._",
  6439. "lib/wpa81/_._",
  6440. "lib/xamarinios10/_._",
  6441. "lib/xamarinmac20/_._",
  6442. "lib/xamarintvos10/_._",
  6443. "lib/xamarinwatchos10/_._",
  6444. "ref/MonoAndroid10/_._",
  6445. "ref/MonoTouch10/_._",
  6446. "ref/net45/_._",
  6447. "ref/net462/System.Runtime.InteropServices.dll",
  6448. "ref/netcore50/System.Runtime.InteropServices.dll",
  6449. "ref/netcore50/System.Runtime.InteropServices.xml",
  6450. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6451. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6452. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6453. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6454. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6455. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6456. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6457. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6458. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6459. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6460. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6461. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6462. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6463. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6464. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6465. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6466. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6467. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6468. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6469. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6470. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6471. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6472. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6473. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6474. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6475. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6476. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6477. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6478. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6479. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6480. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6481. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6482. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6483. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6484. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6485. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6486. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6487. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6488. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6489. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6490. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6491. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6492. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6493. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6494. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6495. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6496. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6497. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6498. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6499. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6500. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6501. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6502. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6503. "ref/portable-net45+win8+wpa81/_._",
  6504. "ref/win8/_._",
  6505. "ref/wpa81/_._",
  6506. "ref/xamarinios10/_._",
  6507. "ref/xamarinmac20/_._",
  6508. "ref/xamarintvos10/_._",
  6509. "ref/xamarinwatchos10/_._",
  6510. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  6511. "system.runtime.interopservices.nuspec"
  6512. ]
  6513. },
  6514. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  6515. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  6516. "type": "package",
  6517. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  6518. "files": [
  6519. ".nupkg.metadata",
  6520. "ThirdPartyNotices.txt",
  6521. "dotnet_library_license.txt",
  6522. "lib/MonoAndroid10/_._",
  6523. "lib/MonoTouch10/_._",
  6524. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6525. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6526. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6527. "lib/xamarinios10/_._",
  6528. "lib/xamarinmac20/_._",
  6529. "lib/xamarintvos10/_._",
  6530. "lib/xamarinwatchos10/_._",
  6531. "ref/MonoAndroid10/_._",
  6532. "ref/MonoTouch10/_._",
  6533. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6534. "ref/xamarinios10/_._",
  6535. "ref/xamarinmac20/_._",
  6536. "ref/xamarintvos10/_._",
  6537. "ref/xamarinwatchos10/_._",
  6538. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6539. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6540. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6541. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6542. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6543. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  6544. "system.runtime.interopservices.runtimeinformation.nuspec"
  6545. ]
  6546. },
  6547. "System.Runtime.Numerics/4.0.1": {
  6548. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  6549. "type": "package",
  6550. "path": "system.runtime.numerics/4.0.1",
  6551. "files": [
  6552. ".nupkg.metadata",
  6553. "ThirdPartyNotices.txt",
  6554. "dotnet_library_license.txt",
  6555. "lib/MonoAndroid10/_._",
  6556. "lib/MonoTouch10/_._",
  6557. "lib/net45/_._",
  6558. "lib/netcore50/System.Runtime.Numerics.dll",
  6559. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6560. "lib/portable-net45+win8+wpa81/_._",
  6561. "lib/win8/_._",
  6562. "lib/wpa81/_._",
  6563. "lib/xamarinios10/_._",
  6564. "lib/xamarinmac20/_._",
  6565. "lib/xamarintvos10/_._",
  6566. "lib/xamarinwatchos10/_._",
  6567. "ref/MonoAndroid10/_._",
  6568. "ref/MonoTouch10/_._",
  6569. "ref/net45/_._",
  6570. "ref/netcore50/System.Runtime.Numerics.dll",
  6571. "ref/netcore50/System.Runtime.Numerics.xml",
  6572. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6573. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6574. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6575. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6576. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6577. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6578. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6579. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6580. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6581. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6582. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6583. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6584. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6585. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6586. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6587. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6588. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6589. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6590. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6591. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6592. "ref/portable-net45+win8+wpa81/_._",
  6593. "ref/win8/_._",
  6594. "ref/wpa81/_._",
  6595. "ref/xamarinios10/_._",
  6596. "ref/xamarinmac20/_._",
  6597. "ref/xamarintvos10/_._",
  6598. "ref/xamarinwatchos10/_._",
  6599. "system.runtime.numerics.4.0.1.nupkg.sha512",
  6600. "system.runtime.numerics.nuspec"
  6601. ]
  6602. },
  6603. "System.Security.AccessControl/5.0.0": {
  6604. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  6605. "type": "package",
  6606. "path": "system.security.accesscontrol/5.0.0",
  6607. "files": [
  6608. ".nupkg.metadata",
  6609. ".signature.p7s",
  6610. "Icon.png",
  6611. "LICENSE.TXT",
  6612. "THIRD-PARTY-NOTICES.TXT",
  6613. "lib/net46/System.Security.AccessControl.dll",
  6614. "lib/net461/System.Security.AccessControl.dll",
  6615. "lib/net461/System.Security.AccessControl.xml",
  6616. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6617. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6618. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6619. "lib/uap10.0.16299/_._",
  6620. "ref/net46/System.Security.AccessControl.dll",
  6621. "ref/net461/System.Security.AccessControl.dll",
  6622. "ref/net461/System.Security.AccessControl.xml",
  6623. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6624. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6625. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6626. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6627. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6628. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6629. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6630. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6631. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6632. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6633. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6634. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6635. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6636. "ref/uap10.0.16299/_._",
  6637. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6638. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6639. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6640. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6641. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6642. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6643. "runtimes/win/lib/uap10.0.16299/_._",
  6644. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  6645. "system.security.accesscontrol.nuspec",
  6646. "useSharedDesignerContext.txt",
  6647. "version.txt"
  6648. ]
  6649. },
  6650. "System.Security.Cryptography.Algorithms/4.2.0": {
  6651. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  6652. "type": "package",
  6653. "path": "system.security.cryptography.algorithms/4.2.0",
  6654. "files": [
  6655. ".nupkg.metadata",
  6656. "ThirdPartyNotices.txt",
  6657. "dotnet_library_license.txt",
  6658. "lib/MonoAndroid10/_._",
  6659. "lib/MonoTouch10/_._",
  6660. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6661. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6662. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6663. "lib/xamarinios10/_._",
  6664. "lib/xamarinmac20/_._",
  6665. "lib/xamarintvos10/_._",
  6666. "lib/xamarinwatchos10/_._",
  6667. "ref/MonoAndroid10/_._",
  6668. "ref/MonoTouch10/_._",
  6669. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6670. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6671. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6672. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6673. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6674. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6675. "ref/xamarinios10/_._",
  6676. "ref/xamarinmac20/_._",
  6677. "ref/xamarintvos10/_._",
  6678. "ref/xamarinwatchos10/_._",
  6679. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6680. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6681. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6682. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6683. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6684. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6685. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  6686. "system.security.cryptography.algorithms.nuspec"
  6687. ]
  6688. },
  6689. "System.Security.Cryptography.Cng/4.5.0": {
  6690. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6691. "type": "package",
  6692. "path": "system.security.cryptography.cng/4.5.0",
  6693. "files": [
  6694. ".nupkg.metadata",
  6695. ".signature.p7s",
  6696. "LICENSE.TXT",
  6697. "THIRD-PARTY-NOTICES.TXT",
  6698. "lib/MonoAndroid10/_._",
  6699. "lib/MonoTouch10/_._",
  6700. "lib/net46/System.Security.Cryptography.Cng.dll",
  6701. "lib/net461/System.Security.Cryptography.Cng.dll",
  6702. "lib/net462/System.Security.Cryptography.Cng.dll",
  6703. "lib/net47/System.Security.Cryptography.Cng.dll",
  6704. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6705. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6706. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6707. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6708. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6709. "lib/uap10.0.16299/_._",
  6710. "lib/xamarinios10/_._",
  6711. "lib/xamarinmac20/_._",
  6712. "lib/xamarintvos10/_._",
  6713. "lib/xamarinwatchos10/_._",
  6714. "ref/MonoAndroid10/_._",
  6715. "ref/MonoTouch10/_._",
  6716. "ref/net46/System.Security.Cryptography.Cng.dll",
  6717. "ref/net461/System.Security.Cryptography.Cng.dll",
  6718. "ref/net461/System.Security.Cryptography.Cng.xml",
  6719. "ref/net462/System.Security.Cryptography.Cng.dll",
  6720. "ref/net462/System.Security.Cryptography.Cng.xml",
  6721. "ref/net47/System.Security.Cryptography.Cng.dll",
  6722. "ref/net47/System.Security.Cryptography.Cng.xml",
  6723. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6724. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6725. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6726. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6727. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6728. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6729. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6730. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6731. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6732. "ref/uap10.0.16299/_._",
  6733. "ref/xamarinios10/_._",
  6734. "ref/xamarinmac20/_._",
  6735. "ref/xamarintvos10/_._",
  6736. "ref/xamarinwatchos10/_._",
  6737. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6738. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6739. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6740. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6741. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6742. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6743. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6744. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6745. "runtimes/win/lib/uap10.0.16299/_._",
  6746. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6747. "system.security.cryptography.cng.nuspec",
  6748. "useSharedDesignerContext.txt",
  6749. "version.txt"
  6750. ]
  6751. },
  6752. "System.Security.Cryptography.Csp/4.0.0": {
  6753. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  6754. "type": "package",
  6755. "path": "system.security.cryptography.csp/4.0.0",
  6756. "files": [
  6757. ".nupkg.metadata",
  6758. "ThirdPartyNotices.txt",
  6759. "dotnet_library_license.txt",
  6760. "lib/MonoAndroid10/_._",
  6761. "lib/MonoTouch10/_._",
  6762. "lib/net46/System.Security.Cryptography.Csp.dll",
  6763. "lib/xamarinios10/_._",
  6764. "lib/xamarinmac20/_._",
  6765. "lib/xamarintvos10/_._",
  6766. "lib/xamarinwatchos10/_._",
  6767. "ref/MonoAndroid10/_._",
  6768. "ref/MonoTouch10/_._",
  6769. "ref/net46/System.Security.Cryptography.Csp.dll",
  6770. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6771. "ref/xamarinios10/_._",
  6772. "ref/xamarinmac20/_._",
  6773. "ref/xamarintvos10/_._",
  6774. "ref/xamarinwatchos10/_._",
  6775. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6776. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6777. "runtimes/win/lib/netcore50/_._",
  6778. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6779. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  6780. "system.security.cryptography.csp.nuspec"
  6781. ]
  6782. },
  6783. "System.Security.Cryptography.Encoding/4.0.0": {
  6784. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  6785. "type": "package",
  6786. "path": "system.security.cryptography.encoding/4.0.0",
  6787. "files": [
  6788. ".nupkg.metadata",
  6789. "ThirdPartyNotices.txt",
  6790. "dotnet_library_license.txt",
  6791. "lib/MonoAndroid10/_._",
  6792. "lib/MonoTouch10/_._",
  6793. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6794. "lib/xamarinios10/_._",
  6795. "lib/xamarinmac20/_._",
  6796. "lib/xamarintvos10/_._",
  6797. "lib/xamarinwatchos10/_._",
  6798. "ref/MonoAndroid10/_._",
  6799. "ref/MonoTouch10/_._",
  6800. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6801. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6802. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6803. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6804. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6805. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6806. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6807. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6808. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6809. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6810. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6811. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6812. "ref/xamarinios10/_._",
  6813. "ref/xamarinmac20/_._",
  6814. "ref/xamarintvos10/_._",
  6815. "ref/xamarinwatchos10/_._",
  6816. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6817. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6818. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6819. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  6820. "system.security.cryptography.encoding.nuspec"
  6821. ]
  6822. },
  6823. "System.Security.Cryptography.OpenSsl/4.0.0": {
  6824. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  6825. "type": "package",
  6826. "path": "system.security.cryptography.openssl/4.0.0",
  6827. "files": [
  6828. ".nupkg.metadata",
  6829. "ThirdPartyNotices.txt",
  6830. "dotnet_library_license.txt",
  6831. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6832. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6833. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6834. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  6835. "system.security.cryptography.openssl.nuspec"
  6836. ]
  6837. },
  6838. "System.Security.Cryptography.Primitives/4.0.0": {
  6839. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  6840. "type": "package",
  6841. "path": "system.security.cryptography.primitives/4.0.0",
  6842. "files": [
  6843. ".nupkg.metadata",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6849. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6850. "lib/xamarinios10/_._",
  6851. "lib/xamarinmac20/_._",
  6852. "lib/xamarintvos10/_._",
  6853. "lib/xamarinwatchos10/_._",
  6854. "ref/MonoAndroid10/_._",
  6855. "ref/MonoTouch10/_._",
  6856. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6857. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6858. "ref/xamarinios10/_._",
  6859. "ref/xamarinmac20/_._",
  6860. "ref/xamarintvos10/_._",
  6861. "ref/xamarinwatchos10/_._",
  6862. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  6863. "system.security.cryptography.primitives.nuspec"
  6864. ]
  6865. },
  6866. "System.Security.Cryptography.ProtectedData/5.0.0": {
  6867. "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
  6868. "type": "package",
  6869. "path": "system.security.cryptography.protecteddata/5.0.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. ".signature.p7s",
  6873. "Icon.png",
  6874. "LICENSE.TXT",
  6875. "THIRD-PARTY-NOTICES.TXT",
  6876. "lib/MonoAndroid10/_._",
  6877. "lib/MonoTouch10/_._",
  6878. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6879. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6880. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6881. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6882. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6883. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6884. "lib/xamarinios10/_._",
  6885. "lib/xamarinmac20/_._",
  6886. "lib/xamarintvos10/_._",
  6887. "lib/xamarinwatchos10/_._",
  6888. "ref/MonoAndroid10/_._",
  6889. "ref/MonoTouch10/_._",
  6890. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6891. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6892. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6893. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6894. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6895. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6896. "ref/xamarinios10/_._",
  6897. "ref/xamarinmac20/_._",
  6898. "ref/xamarintvos10/_._",
  6899. "ref/xamarinwatchos10/_._",
  6900. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6901. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6902. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6903. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6904. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6905. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6906. "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
  6907. "system.security.cryptography.protecteddata.nuspec",
  6908. "useSharedDesignerContext.txt",
  6909. "version.txt"
  6910. ]
  6911. },
  6912. "System.Security.Cryptography.X509Certificates/4.1.0": {
  6913. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  6914. "type": "package",
  6915. "path": "system.security.cryptography.x509certificates/4.1.0",
  6916. "files": [
  6917. ".nupkg.metadata",
  6918. "ThirdPartyNotices.txt",
  6919. "dotnet_library_license.txt",
  6920. "lib/MonoAndroid10/_._",
  6921. "lib/MonoTouch10/_._",
  6922. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6923. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6924. "lib/xamarinios10/_._",
  6925. "lib/xamarinmac20/_._",
  6926. "lib/xamarintvos10/_._",
  6927. "lib/xamarinwatchos10/_._",
  6928. "ref/MonoAndroid10/_._",
  6929. "ref/MonoTouch10/_._",
  6930. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6931. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6932. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6933. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6934. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6935. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6936. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6937. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6938. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6939. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6940. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6941. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6942. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6943. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6944. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6945. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6946. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6947. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6948. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6949. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6950. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6951. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6952. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6953. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6954. "ref/xamarinios10/_._",
  6955. "ref/xamarinmac20/_._",
  6956. "ref/xamarintvos10/_._",
  6957. "ref/xamarinwatchos10/_._",
  6958. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6959. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6960. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6961. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6962. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6963. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  6964. "system.security.cryptography.x509certificates.nuspec"
  6965. ]
  6966. },
  6967. "System.Security.Permissions/5.0.0": {
  6968. "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
  6969. "type": "package",
  6970. "path": "system.security.permissions/5.0.0",
  6971. "files": [
  6972. ".nupkg.metadata",
  6973. ".signature.p7s",
  6974. "Icon.png",
  6975. "LICENSE.TXT",
  6976. "THIRD-PARTY-NOTICES.TXT",
  6977. "lib/net461/System.Security.Permissions.dll",
  6978. "lib/net461/System.Security.Permissions.xml",
  6979. "lib/net5.0/System.Security.Permissions.dll",
  6980. "lib/net5.0/System.Security.Permissions.xml",
  6981. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6982. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6983. "lib/netstandard2.0/System.Security.Permissions.dll",
  6984. "lib/netstandard2.0/System.Security.Permissions.xml",
  6985. "ref/net461/System.Security.Permissions.dll",
  6986. "ref/net461/System.Security.Permissions.xml",
  6987. "ref/net5.0/System.Security.Permissions.dll",
  6988. "ref/net5.0/System.Security.Permissions.xml",
  6989. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6990. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6991. "ref/netstandard2.0/System.Security.Permissions.dll",
  6992. "ref/netstandard2.0/System.Security.Permissions.xml",
  6993. "system.security.permissions.5.0.0.nupkg.sha512",
  6994. "system.security.permissions.nuspec",
  6995. "useSharedDesignerContext.txt",
  6996. "version.txt"
  6997. ]
  6998. },
  6999. "System.Security.Principal.Windows/5.0.0": {
  7000. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7001. "type": "package",
  7002. "path": "system.security.principal.windows/5.0.0",
  7003. "files": [
  7004. ".nupkg.metadata",
  7005. ".signature.p7s",
  7006. "Icon.png",
  7007. "LICENSE.TXT",
  7008. "THIRD-PARTY-NOTICES.TXT",
  7009. "lib/net46/System.Security.Principal.Windows.dll",
  7010. "lib/net461/System.Security.Principal.Windows.dll",
  7011. "lib/net461/System.Security.Principal.Windows.xml",
  7012. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7013. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7014. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7015. "lib/uap10.0.16299/_._",
  7016. "ref/net46/System.Security.Principal.Windows.dll",
  7017. "ref/net461/System.Security.Principal.Windows.dll",
  7018. "ref/net461/System.Security.Principal.Windows.xml",
  7019. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7020. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7021. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7022. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7023. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7024. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7025. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7026. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7027. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7028. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7029. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7030. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7031. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7032. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7033. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7034. "ref/uap10.0.16299/_._",
  7035. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7036. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7037. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7038. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7039. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7040. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7041. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7042. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7043. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7044. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7045. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7046. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7047. "runtimes/win/lib/uap10.0.16299/_._",
  7048. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7049. "system.security.principal.windows.nuspec",
  7050. "useSharedDesignerContext.txt",
  7051. "version.txt"
  7052. ]
  7053. },
  7054. "System.ServiceProcess.ServiceController/5.0.0": {
  7055. "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==",
  7056. "type": "package",
  7057. "path": "system.serviceprocess.servicecontroller/5.0.0",
  7058. "files": [
  7059. ".nupkg.metadata",
  7060. ".signature.p7s",
  7061. "Icon.png",
  7062. "LICENSE.TXT",
  7063. "THIRD-PARTY-NOTICES.TXT",
  7064. "lib/net461/System.ServiceProcess.ServiceController.dll",
  7065. "lib/net461/System.ServiceProcess.ServiceController.xml",
  7066. "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  7067. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7068. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7069. "ref/net461/System.ServiceProcess.ServiceController.dll",
  7070. "ref/net461/System.ServiceProcess.ServiceController.xml",
  7071. "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  7072. "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml",
  7073. "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml",
  7074. "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml",
  7075. "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml",
  7076. "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml",
  7077. "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml",
  7078. "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml",
  7079. "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml",
  7080. "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml",
  7081. "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml",
  7082. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7083. "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7084. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll",
  7085. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml",
  7086. "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll",
  7087. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7088. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7089. "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512",
  7090. "system.serviceprocess.servicecontroller.nuspec",
  7091. "useSharedDesignerContext.txt",
  7092. "version.txt"
  7093. ]
  7094. },
  7095. "System.Text.Encoding/4.3.0": {
  7096. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7097. "type": "package",
  7098. "path": "system.text.encoding/4.3.0",
  7099. "files": [
  7100. ".nupkg.metadata",
  7101. "ThirdPartyNotices.txt",
  7102. "dotnet_library_license.txt",
  7103. "lib/MonoAndroid10/_._",
  7104. "lib/MonoTouch10/_._",
  7105. "lib/net45/_._",
  7106. "lib/portable-net45+win8+wp8+wpa81/_._",
  7107. "lib/win8/_._",
  7108. "lib/wp80/_._",
  7109. "lib/wpa81/_._",
  7110. "lib/xamarinios10/_._",
  7111. "lib/xamarinmac20/_._",
  7112. "lib/xamarintvos10/_._",
  7113. "lib/xamarinwatchos10/_._",
  7114. "ref/MonoAndroid10/_._",
  7115. "ref/MonoTouch10/_._",
  7116. "ref/net45/_._",
  7117. "ref/netcore50/System.Text.Encoding.dll",
  7118. "ref/netcore50/System.Text.Encoding.xml",
  7119. "ref/netcore50/de/System.Text.Encoding.xml",
  7120. "ref/netcore50/es/System.Text.Encoding.xml",
  7121. "ref/netcore50/fr/System.Text.Encoding.xml",
  7122. "ref/netcore50/it/System.Text.Encoding.xml",
  7123. "ref/netcore50/ja/System.Text.Encoding.xml",
  7124. "ref/netcore50/ko/System.Text.Encoding.xml",
  7125. "ref/netcore50/ru/System.Text.Encoding.xml",
  7126. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7127. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7128. "ref/netstandard1.0/System.Text.Encoding.dll",
  7129. "ref/netstandard1.0/System.Text.Encoding.xml",
  7130. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7131. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7132. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7133. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7134. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7135. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7136. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7137. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7138. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7139. "ref/netstandard1.3/System.Text.Encoding.dll",
  7140. "ref/netstandard1.3/System.Text.Encoding.xml",
  7141. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7142. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7143. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7144. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7145. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7146. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7147. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7148. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7149. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7150. "ref/portable-net45+win8+wp8+wpa81/_._",
  7151. "ref/win8/_._",
  7152. "ref/wp80/_._",
  7153. "ref/wpa81/_._",
  7154. "ref/xamarinios10/_._",
  7155. "ref/xamarinmac20/_._",
  7156. "ref/xamarintvos10/_._",
  7157. "ref/xamarinwatchos10/_._",
  7158. "system.text.encoding.4.3.0.nupkg.sha512",
  7159. "system.text.encoding.nuspec"
  7160. ]
  7161. },
  7162. "System.Text.Encoding.CodePages/4.5.1": {
  7163. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7164. "type": "package",
  7165. "path": "system.text.encoding.codepages/4.5.1",
  7166. "files": [
  7167. ".nupkg.metadata",
  7168. ".signature.p7s",
  7169. "LICENSE.TXT",
  7170. "THIRD-PARTY-NOTICES.TXT",
  7171. "lib/MonoAndroid10/_._",
  7172. "lib/MonoTouch10/_._",
  7173. "lib/net46/System.Text.Encoding.CodePages.dll",
  7174. "lib/net461/System.Text.Encoding.CodePages.dll",
  7175. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7176. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7177. "lib/xamarinios10/_._",
  7178. "lib/xamarinmac20/_._",
  7179. "lib/xamarintvos10/_._",
  7180. "lib/xamarinwatchos10/_._",
  7181. "ref/MonoAndroid10/_._",
  7182. "ref/MonoTouch10/_._",
  7183. "ref/xamarinios10/_._",
  7184. "ref/xamarinmac20/_._",
  7185. "ref/xamarintvos10/_._",
  7186. "ref/xamarinwatchos10/_._",
  7187. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7188. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7189. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7190. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7191. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7192. "system.text.encoding.codepages.nuspec",
  7193. "useSharedDesignerContext.txt",
  7194. "version.txt"
  7195. ]
  7196. },
  7197. "System.Text.Encoding.Extensions/4.0.11": {
  7198. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  7199. "type": "package",
  7200. "path": "system.text.encoding.extensions/4.0.11",
  7201. "files": [
  7202. ".nupkg.metadata",
  7203. "ThirdPartyNotices.txt",
  7204. "dotnet_library_license.txt",
  7205. "lib/MonoAndroid10/_._",
  7206. "lib/MonoTouch10/_._",
  7207. "lib/net45/_._",
  7208. "lib/portable-net45+win8+wp8+wpa81/_._",
  7209. "lib/win8/_._",
  7210. "lib/wp80/_._",
  7211. "lib/wpa81/_._",
  7212. "lib/xamarinios10/_._",
  7213. "lib/xamarinmac20/_._",
  7214. "lib/xamarintvos10/_._",
  7215. "lib/xamarinwatchos10/_._",
  7216. "ref/MonoAndroid10/_._",
  7217. "ref/MonoTouch10/_._",
  7218. "ref/net45/_._",
  7219. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7220. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7221. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7222. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7223. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7224. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7225. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7226. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7227. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7228. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7229. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7230. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7231. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7232. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7233. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7234. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7235. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7236. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7237. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7238. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7239. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7240. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7241. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7242. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7243. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7244. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7245. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7246. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7247. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7248. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7249. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7250. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7251. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7252. "ref/portable-net45+win8+wp8+wpa81/_._",
  7253. "ref/win8/_._",
  7254. "ref/wp80/_._",
  7255. "ref/wpa81/_._",
  7256. "ref/xamarinios10/_._",
  7257. "ref/xamarinmac20/_._",
  7258. "ref/xamarintvos10/_._",
  7259. "ref/xamarinwatchos10/_._",
  7260. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  7261. "system.text.encoding.extensions.nuspec"
  7262. ]
  7263. },
  7264. "System.Text.Json/5.0.0": {
  7265. "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
  7266. "type": "package",
  7267. "path": "system.text.json/5.0.0",
  7268. "files": [
  7269. ".nupkg.metadata",
  7270. ".signature.p7s",
  7271. "Icon.png",
  7272. "LICENSE.TXT",
  7273. "THIRD-PARTY-NOTICES.TXT",
  7274. "lib/net461/System.Text.Json.dll",
  7275. "lib/net461/System.Text.Json.xml",
  7276. "lib/netcoreapp3.0/System.Text.Json.dll",
  7277. "lib/netcoreapp3.0/System.Text.Json.xml",
  7278. "lib/netstandard2.0/System.Text.Json.dll",
  7279. "lib/netstandard2.0/System.Text.Json.xml",
  7280. "system.text.json.5.0.0.nupkg.sha512",
  7281. "system.text.json.nuspec",
  7282. "useSharedDesignerContext.txt",
  7283. "version.txt"
  7284. ]
  7285. },
  7286. "System.Text.RegularExpressions/4.1.0": {
  7287. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  7288. "type": "package",
  7289. "path": "system.text.regularexpressions/4.1.0",
  7290. "files": [
  7291. ".nupkg.metadata",
  7292. "ThirdPartyNotices.txt",
  7293. "dotnet_library_license.txt",
  7294. "lib/MonoAndroid10/_._",
  7295. "lib/MonoTouch10/_._",
  7296. "lib/net45/_._",
  7297. "lib/net463/System.Text.RegularExpressions.dll",
  7298. "lib/netcore50/System.Text.RegularExpressions.dll",
  7299. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7300. "lib/portable-net45+win8+wp8+wpa81/_._",
  7301. "lib/win8/_._",
  7302. "lib/wp80/_._",
  7303. "lib/wpa81/_._",
  7304. "lib/xamarinios10/_._",
  7305. "lib/xamarinmac20/_._",
  7306. "lib/xamarintvos10/_._",
  7307. "lib/xamarinwatchos10/_._",
  7308. "ref/MonoAndroid10/_._",
  7309. "ref/MonoTouch10/_._",
  7310. "ref/net45/_._",
  7311. "ref/net463/System.Text.RegularExpressions.dll",
  7312. "ref/netcore50/System.Text.RegularExpressions.dll",
  7313. "ref/netcore50/System.Text.RegularExpressions.xml",
  7314. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7315. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7316. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7317. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7318. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7319. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7320. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7321. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7322. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7323. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7324. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7325. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7326. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7327. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7328. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7329. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7330. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7331. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7332. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7333. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7334. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7335. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7336. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7337. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7338. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7339. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7340. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7341. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7342. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7343. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7344. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7345. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7346. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7347. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7348. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7349. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7350. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7351. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7352. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7353. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7354. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7355. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7356. "ref/portable-net45+win8+wp8+wpa81/_._",
  7357. "ref/win8/_._",
  7358. "ref/wp80/_._",
  7359. "ref/wpa81/_._",
  7360. "ref/xamarinios10/_._",
  7361. "ref/xamarinmac20/_._",
  7362. "ref/xamarintvos10/_._",
  7363. "ref/xamarinwatchos10/_._",
  7364. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  7365. "system.text.regularexpressions.nuspec"
  7366. ]
  7367. },
  7368. "System.Threading/4.0.11": {
  7369. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  7370. "type": "package",
  7371. "path": "system.threading/4.0.11",
  7372. "files": [
  7373. ".nupkg.metadata",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net45/_._",
  7379. "lib/netcore50/System.Threading.dll",
  7380. "lib/netstandard1.3/System.Threading.dll",
  7381. "lib/portable-net45+win8+wp8+wpa81/_._",
  7382. "lib/win8/_._",
  7383. "lib/wp80/_._",
  7384. "lib/wpa81/_._",
  7385. "lib/xamarinios10/_._",
  7386. "lib/xamarinmac20/_._",
  7387. "lib/xamarintvos10/_._",
  7388. "lib/xamarinwatchos10/_._",
  7389. "ref/MonoAndroid10/_._",
  7390. "ref/MonoTouch10/_._",
  7391. "ref/net45/_._",
  7392. "ref/netcore50/System.Threading.dll",
  7393. "ref/netcore50/System.Threading.xml",
  7394. "ref/netcore50/de/System.Threading.xml",
  7395. "ref/netcore50/es/System.Threading.xml",
  7396. "ref/netcore50/fr/System.Threading.xml",
  7397. "ref/netcore50/it/System.Threading.xml",
  7398. "ref/netcore50/ja/System.Threading.xml",
  7399. "ref/netcore50/ko/System.Threading.xml",
  7400. "ref/netcore50/ru/System.Threading.xml",
  7401. "ref/netcore50/zh-hans/System.Threading.xml",
  7402. "ref/netcore50/zh-hant/System.Threading.xml",
  7403. "ref/netstandard1.0/System.Threading.dll",
  7404. "ref/netstandard1.0/System.Threading.xml",
  7405. "ref/netstandard1.0/de/System.Threading.xml",
  7406. "ref/netstandard1.0/es/System.Threading.xml",
  7407. "ref/netstandard1.0/fr/System.Threading.xml",
  7408. "ref/netstandard1.0/it/System.Threading.xml",
  7409. "ref/netstandard1.0/ja/System.Threading.xml",
  7410. "ref/netstandard1.0/ko/System.Threading.xml",
  7411. "ref/netstandard1.0/ru/System.Threading.xml",
  7412. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7413. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7414. "ref/netstandard1.3/System.Threading.dll",
  7415. "ref/netstandard1.3/System.Threading.xml",
  7416. "ref/netstandard1.3/de/System.Threading.xml",
  7417. "ref/netstandard1.3/es/System.Threading.xml",
  7418. "ref/netstandard1.3/fr/System.Threading.xml",
  7419. "ref/netstandard1.3/it/System.Threading.xml",
  7420. "ref/netstandard1.3/ja/System.Threading.xml",
  7421. "ref/netstandard1.3/ko/System.Threading.xml",
  7422. "ref/netstandard1.3/ru/System.Threading.xml",
  7423. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7424. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7425. "ref/portable-net45+win8+wp8+wpa81/_._",
  7426. "ref/win8/_._",
  7427. "ref/wp80/_._",
  7428. "ref/wpa81/_._",
  7429. "ref/xamarinios10/_._",
  7430. "ref/xamarinmac20/_._",
  7431. "ref/xamarintvos10/_._",
  7432. "ref/xamarinwatchos10/_._",
  7433. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7434. "system.threading.4.0.11.nupkg.sha512",
  7435. "system.threading.nuspec"
  7436. ]
  7437. },
  7438. "System.Threading.Tasks/4.3.0": {
  7439. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7440. "type": "package",
  7441. "path": "system.threading.tasks/4.3.0",
  7442. "files": [
  7443. ".nupkg.metadata",
  7444. "ThirdPartyNotices.txt",
  7445. "dotnet_library_license.txt",
  7446. "lib/MonoAndroid10/_._",
  7447. "lib/MonoTouch10/_._",
  7448. "lib/net45/_._",
  7449. "lib/portable-net45+win8+wp8+wpa81/_._",
  7450. "lib/win8/_._",
  7451. "lib/wp80/_._",
  7452. "lib/wpa81/_._",
  7453. "lib/xamarinios10/_._",
  7454. "lib/xamarinmac20/_._",
  7455. "lib/xamarintvos10/_._",
  7456. "lib/xamarinwatchos10/_._",
  7457. "ref/MonoAndroid10/_._",
  7458. "ref/MonoTouch10/_._",
  7459. "ref/net45/_._",
  7460. "ref/netcore50/System.Threading.Tasks.dll",
  7461. "ref/netcore50/System.Threading.Tasks.xml",
  7462. "ref/netcore50/de/System.Threading.Tasks.xml",
  7463. "ref/netcore50/es/System.Threading.Tasks.xml",
  7464. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7465. "ref/netcore50/it/System.Threading.Tasks.xml",
  7466. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7467. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7468. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7469. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7470. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7471. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7472. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7473. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7474. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7475. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7476. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7477. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7478. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7479. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7480. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7481. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7482. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7483. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7484. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7485. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7486. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7487. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7488. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7489. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7490. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7491. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7492. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7493. "ref/portable-net45+win8+wp8+wpa81/_._",
  7494. "ref/win8/_._",
  7495. "ref/wp80/_._",
  7496. "ref/wpa81/_._",
  7497. "ref/xamarinios10/_._",
  7498. "ref/xamarinmac20/_._",
  7499. "ref/xamarintvos10/_._",
  7500. "ref/xamarinwatchos10/_._",
  7501. "system.threading.tasks.4.3.0.nupkg.sha512",
  7502. "system.threading.tasks.nuspec"
  7503. ]
  7504. },
  7505. "System.Threading.Tasks.Extensions/4.0.0": {
  7506. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  7507. "type": "package",
  7508. "path": "system.threading.tasks.extensions/4.0.0",
  7509. "files": [
  7510. ".nupkg.metadata",
  7511. "ThirdPartyNotices.txt",
  7512. "dotnet_library_license.txt",
  7513. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7514. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7515. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7516. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7517. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  7518. "system.threading.tasks.extensions.nuspec"
  7519. ]
  7520. },
  7521. "System.Threading.Thread/4.0.0": {
  7522. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  7523. "type": "package",
  7524. "path": "system.threading.thread/4.0.0",
  7525. "files": [
  7526. ".nupkg.metadata",
  7527. ".signature.p7s",
  7528. "ThirdPartyNotices.txt",
  7529. "dotnet_library_license.txt",
  7530. "lib/MonoAndroid10/_._",
  7531. "lib/MonoTouch10/_._",
  7532. "lib/net46/System.Threading.Thread.dll",
  7533. "lib/netcore50/_._",
  7534. "lib/netstandard1.3/System.Threading.Thread.dll",
  7535. "lib/xamarinios10/_._",
  7536. "lib/xamarinmac20/_._",
  7537. "lib/xamarintvos10/_._",
  7538. "lib/xamarinwatchos10/_._",
  7539. "ref/MonoAndroid10/_._",
  7540. "ref/MonoTouch10/_._",
  7541. "ref/net46/System.Threading.Thread.dll",
  7542. "ref/netstandard1.3/System.Threading.Thread.dll",
  7543. "ref/netstandard1.3/System.Threading.Thread.xml",
  7544. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  7545. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  7546. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  7547. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  7548. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  7549. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  7550. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  7551. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  7552. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  7553. "ref/xamarinios10/_._",
  7554. "ref/xamarinmac20/_._",
  7555. "ref/xamarintvos10/_._",
  7556. "ref/xamarinwatchos10/_._",
  7557. "system.threading.thread.4.0.0.nupkg.sha512",
  7558. "system.threading.thread.nuspec"
  7559. ]
  7560. },
  7561. "System.Threading.ThreadPool/4.0.10": {
  7562. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  7563. "type": "package",
  7564. "path": "system.threading.threadpool/4.0.10",
  7565. "files": [
  7566. ".nupkg.metadata",
  7567. ".signature.p7s",
  7568. "ThirdPartyNotices.txt",
  7569. "dotnet_library_license.txt",
  7570. "lib/MonoAndroid10/_._",
  7571. "lib/MonoTouch10/_._",
  7572. "lib/net46/System.Threading.ThreadPool.dll",
  7573. "lib/netcore50/_._",
  7574. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  7575. "lib/xamarinios10/_._",
  7576. "lib/xamarinmac20/_._",
  7577. "lib/xamarintvos10/_._",
  7578. "lib/xamarinwatchos10/_._",
  7579. "ref/MonoAndroid10/_._",
  7580. "ref/MonoTouch10/_._",
  7581. "ref/net46/System.Threading.ThreadPool.dll",
  7582. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  7583. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  7584. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  7585. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  7586. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  7587. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  7588. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  7589. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  7590. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  7591. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  7592. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  7593. "ref/xamarinios10/_._",
  7594. "ref/xamarinmac20/_._",
  7595. "ref/xamarintvos10/_._",
  7596. "ref/xamarinwatchos10/_._",
  7597. "system.threading.threadpool.4.0.10.nupkg.sha512",
  7598. "system.threading.threadpool.nuspec"
  7599. ]
  7600. },
  7601. "System.Threading.Timer/4.0.1": {
  7602. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  7603. "type": "package",
  7604. "path": "system.threading.timer/4.0.1",
  7605. "files": [
  7606. ".nupkg.metadata",
  7607. "ThirdPartyNotices.txt",
  7608. "dotnet_library_license.txt",
  7609. "lib/MonoAndroid10/_._",
  7610. "lib/MonoTouch10/_._",
  7611. "lib/net451/_._",
  7612. "lib/portable-net451+win81+wpa81/_._",
  7613. "lib/win81/_._",
  7614. "lib/wpa81/_._",
  7615. "lib/xamarinios10/_._",
  7616. "lib/xamarinmac20/_._",
  7617. "lib/xamarintvos10/_._",
  7618. "lib/xamarinwatchos10/_._",
  7619. "ref/MonoAndroid10/_._",
  7620. "ref/MonoTouch10/_._",
  7621. "ref/net451/_._",
  7622. "ref/netcore50/System.Threading.Timer.dll",
  7623. "ref/netcore50/System.Threading.Timer.xml",
  7624. "ref/netcore50/de/System.Threading.Timer.xml",
  7625. "ref/netcore50/es/System.Threading.Timer.xml",
  7626. "ref/netcore50/fr/System.Threading.Timer.xml",
  7627. "ref/netcore50/it/System.Threading.Timer.xml",
  7628. "ref/netcore50/ja/System.Threading.Timer.xml",
  7629. "ref/netcore50/ko/System.Threading.Timer.xml",
  7630. "ref/netcore50/ru/System.Threading.Timer.xml",
  7631. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7632. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7633. "ref/netstandard1.2/System.Threading.Timer.dll",
  7634. "ref/netstandard1.2/System.Threading.Timer.xml",
  7635. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7636. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7637. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7638. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7639. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7640. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7641. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7642. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7643. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7644. "ref/portable-net451+win81+wpa81/_._",
  7645. "ref/win81/_._",
  7646. "ref/wpa81/_._",
  7647. "ref/xamarinios10/_._",
  7648. "ref/xamarinmac20/_._",
  7649. "ref/xamarintvos10/_._",
  7650. "ref/xamarinwatchos10/_._",
  7651. "system.threading.timer.4.0.1.nupkg.sha512",
  7652. "system.threading.timer.nuspec"
  7653. ]
  7654. },
  7655. "System.Windows.Extensions/5.0.0": {
  7656. "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
  7657. "type": "package",
  7658. "path": "system.windows.extensions/5.0.0",
  7659. "files": [
  7660. ".nupkg.metadata",
  7661. ".signature.p7s",
  7662. "Icon.png",
  7663. "LICENSE.TXT",
  7664. "THIRD-PARTY-NOTICES.TXT",
  7665. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7666. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7667. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  7668. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  7669. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7670. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7671. "system.windows.extensions.5.0.0.nupkg.sha512",
  7672. "system.windows.extensions.nuspec",
  7673. "useSharedDesignerContext.txt",
  7674. "version.txt"
  7675. ]
  7676. },
  7677. "System.Xml.ReaderWriter/4.0.11": {
  7678. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  7679. "type": "package",
  7680. "path": "system.xml.readerwriter/4.0.11",
  7681. "files": [
  7682. ".nupkg.metadata",
  7683. "ThirdPartyNotices.txt",
  7684. "dotnet_library_license.txt",
  7685. "lib/MonoAndroid10/_._",
  7686. "lib/MonoTouch10/_._",
  7687. "lib/net45/_._",
  7688. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7689. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7690. "lib/portable-net45+win8+wp8+wpa81/_._",
  7691. "lib/win8/_._",
  7692. "lib/wp80/_._",
  7693. "lib/wpa81/_._",
  7694. "lib/xamarinios10/_._",
  7695. "lib/xamarinmac20/_._",
  7696. "lib/xamarintvos10/_._",
  7697. "lib/xamarinwatchos10/_._",
  7698. "ref/MonoAndroid10/_._",
  7699. "ref/MonoTouch10/_._",
  7700. "ref/net45/_._",
  7701. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7702. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7703. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7704. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7705. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7706. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7707. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7708. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7709. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7710. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7711. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7712. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7713. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7714. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7715. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7716. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7717. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7718. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7719. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7720. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7721. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7722. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7723. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7724. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7725. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7726. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7727. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7728. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7729. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7730. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7731. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7732. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7733. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7734. "ref/portable-net45+win8+wp8+wpa81/_._",
  7735. "ref/win8/_._",
  7736. "ref/wp80/_._",
  7737. "ref/wpa81/_._",
  7738. "ref/xamarinios10/_._",
  7739. "ref/xamarinmac20/_._",
  7740. "ref/xamarintvos10/_._",
  7741. "ref/xamarinwatchos10/_._",
  7742. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  7743. "system.xml.readerwriter.nuspec"
  7744. ]
  7745. },
  7746. "System.Xml.XDocument/4.0.11": {
  7747. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  7748. "type": "package",
  7749. "path": "system.xml.xdocument/4.0.11",
  7750. "files": [
  7751. ".nupkg.metadata",
  7752. "ThirdPartyNotices.txt",
  7753. "dotnet_library_license.txt",
  7754. "lib/MonoAndroid10/_._",
  7755. "lib/MonoTouch10/_._",
  7756. "lib/net45/_._",
  7757. "lib/netcore50/System.Xml.XDocument.dll",
  7758. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7759. "lib/portable-net45+win8+wp8+wpa81/_._",
  7760. "lib/win8/_._",
  7761. "lib/wp80/_._",
  7762. "lib/wpa81/_._",
  7763. "lib/xamarinios10/_._",
  7764. "lib/xamarinmac20/_._",
  7765. "lib/xamarintvos10/_._",
  7766. "lib/xamarinwatchos10/_._",
  7767. "ref/MonoAndroid10/_._",
  7768. "ref/MonoTouch10/_._",
  7769. "ref/net45/_._",
  7770. "ref/netcore50/System.Xml.XDocument.dll",
  7771. "ref/netcore50/System.Xml.XDocument.xml",
  7772. "ref/netcore50/de/System.Xml.XDocument.xml",
  7773. "ref/netcore50/es/System.Xml.XDocument.xml",
  7774. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7775. "ref/netcore50/it/System.Xml.XDocument.xml",
  7776. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7777. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7778. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7779. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7780. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7781. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7782. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7783. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7784. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7785. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7786. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7787. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7788. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7789. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7790. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7791. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7792. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7793. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7794. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7795. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7796. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7797. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7798. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7799. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7800. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7801. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7802. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7803. "ref/portable-net45+win8+wp8+wpa81/_._",
  7804. "ref/win8/_._",
  7805. "ref/wp80/_._",
  7806. "ref/wpa81/_._",
  7807. "ref/xamarinios10/_._",
  7808. "ref/xamarinmac20/_._",
  7809. "ref/xamarintvos10/_._",
  7810. "ref/xamarinwatchos10/_._",
  7811. "system.xml.xdocument.4.0.11.nupkg.sha512",
  7812. "system.xml.xdocument.nuspec"
  7813. ]
  7814. },
  7815. "System.Xml.XmlDocument/4.0.1": {
  7816. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  7817. "type": "package",
  7818. "path": "system.xml.xmldocument/4.0.1",
  7819. "files": [
  7820. ".nupkg.metadata",
  7821. "ThirdPartyNotices.txt",
  7822. "dotnet_library_license.txt",
  7823. "lib/MonoAndroid10/_._",
  7824. "lib/MonoTouch10/_._",
  7825. "lib/net46/System.Xml.XmlDocument.dll",
  7826. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7827. "lib/xamarinios10/_._",
  7828. "lib/xamarinmac20/_._",
  7829. "lib/xamarintvos10/_._",
  7830. "lib/xamarinwatchos10/_._",
  7831. "ref/MonoAndroid10/_._",
  7832. "ref/MonoTouch10/_._",
  7833. "ref/net46/System.Xml.XmlDocument.dll",
  7834. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7835. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7836. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7837. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7838. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7839. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7840. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7841. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7842. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7845. "ref/xamarinios10/_._",
  7846. "ref/xamarinmac20/_._",
  7847. "ref/xamarintvos10/_._",
  7848. "ref/xamarinwatchos10/_._",
  7849. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  7850. "system.xml.xmldocument.nuspec"
  7851. ]
  7852. },
  7853. "System.Xml.XPath/4.0.1": {
  7854. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  7855. "type": "package",
  7856. "path": "system.xml.xpath/4.0.1",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. ".signature.p7s",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/System.Xml.XPath.dll",
  7865. "lib/netstandard1.3/System.Xml.XPath.dll",
  7866. "lib/xamarinios10/_._",
  7867. "lib/xamarinmac20/_._",
  7868. "lib/xamarintvos10/_._",
  7869. "lib/xamarinwatchos10/_._",
  7870. "ref/MonoAndroid10/_._",
  7871. "ref/MonoTouch10/_._",
  7872. "ref/net46/System.Xml.XPath.dll",
  7873. "ref/netstandard1.3/System.Xml.XPath.dll",
  7874. "ref/netstandard1.3/System.Xml.XPath.xml",
  7875. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  7876. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  7877. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  7878. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  7879. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  7880. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  7881. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  7882. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  7883. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  7884. "ref/xamarinios10/_._",
  7885. "ref/xamarinmac20/_._",
  7886. "ref/xamarintvos10/_._",
  7887. "ref/xamarinwatchos10/_._",
  7888. "system.xml.xpath.4.0.1.nupkg.sha512",
  7889. "system.xml.xpath.nuspec"
  7890. ]
  7891. },
  7892. "System.Xml.XPath.XmlDocument/4.0.1": {
  7893. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  7894. "type": "package",
  7895. "path": "system.xml.xpath.xmldocument/4.0.1",
  7896. "files": [
  7897. ".nupkg.metadata",
  7898. ".signature.p7s",
  7899. "ThirdPartyNotices.txt",
  7900. "dotnet_library_license.txt",
  7901. "lib/MonoAndroid10/_._",
  7902. "lib/MonoTouch10/_._",
  7903. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7904. "lib/xamarinios10/_._",
  7905. "lib/xamarinmac20/_._",
  7906. "lib/xamarintvos10/_._",
  7907. "lib/xamarinwatchos10/_._",
  7908. "ref/MonoAndroid10/_._",
  7909. "ref/MonoTouch10/_._",
  7910. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7911. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  7912. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  7913. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  7914. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  7915. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  7916. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  7917. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  7918. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  7919. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  7920. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  7921. "ref/xamarinios10/_._",
  7922. "ref/xamarinmac20/_._",
  7923. "ref/xamarintvos10/_._",
  7924. "ref/xamarinwatchos10/_._",
  7925. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  7926. "system.xml.xpath.xmldocument.nuspec"
  7927. ]
  7928. }
  7929. },
  7930. "projectFileDependencyGroups": {
  7931. ".NETCoreApp,Version=v3.1": [
  7932. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  7933. "Flurl.Http >= 3.2.0",
  7934. "Microsoft.Extensions.Hosting.WindowsServices >= 5.0.1",
  7935. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  7936. "NLog.Web.AspNetCore >= 4.12.0",
  7937. "Newtonsoft.Json >= 13.0.1",
  7938. "Quartz >= 3.3.2",
  7939. "StackExchange.Redis >= 2.2.62",
  7940. "Swashbuckle.AspNetCore >= 6.3.1",
  7941. "Swashbuckle.AspNetCore.Filters >= 7.0.2",
  7942. "System.IdentityModel.Tokens.Jwt >= 6.11.0"
  7943. ]
  7944. },
  7945. "packageFolders": {
  7946. "C:\\Users\\user\\.nuget\\packages\\": {}
  7947. },
  7948. "project": {
  7949. "version": "1.0.0",
  7950. "restore": {
  7951. "projectUniqueName": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  7952. "projectName": "IMCS_CCS",
  7953. "projectPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  7954. "packagesPath": "C:\\Users\\user\\.nuget\\packages\\",
  7955. "outputPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\obj\\",
  7956. "projectStyle": "PackageReference",
  7957. "configFilePaths": [
  7958. "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7959. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7960. ],
  7961. "originalTargetFrameworks": [
  7962. "netcoreapp3.1"
  7963. ],
  7964. "sources": {
  7965. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7966. "https://api.nuget.org/v3/index.json": {}
  7967. },
  7968. "frameworks": {
  7969. "netcoreapp3.1": {
  7970. "targetAlias": "netcoreapp3.1",
  7971. "projectReferences": {}
  7972. }
  7973. },
  7974. "warningProperties": {
  7975. "warnAsError": [
  7976. "NU1605"
  7977. ]
  7978. }
  7979. },
  7980. "frameworks": {
  7981. "netcoreapp3.1": {
  7982. "targetAlias": "netcoreapp3.1",
  7983. "dependencies": {
  7984. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  7985. "target": "Package",
  7986. "version": "[8.1.1, )"
  7987. },
  7988. "Flurl.Http": {
  7989. "target": "Package",
  7990. "version": "[3.2.0, )"
  7991. },
  7992. "Microsoft.Extensions.Hosting.WindowsServices": {
  7993. "target": "Package",
  7994. "version": "[5.0.1, )"
  7995. },
  7996. "MySql.Data.EntityFrameworkCore": {
  7997. "target": "Package",
  7998. "version": "[8.0.22, )"
  7999. },
  8000. "NLog.Web.AspNetCore": {
  8001. "target": "Package",
  8002. "version": "[4.12.0, )"
  8003. },
  8004. "Newtonsoft.Json": {
  8005. "target": "Package",
  8006. "version": "[13.0.1, )"
  8007. },
  8008. "Quartz": {
  8009. "target": "Package",
  8010. "version": "[3.3.2, )"
  8011. },
  8012. "StackExchange.Redis": {
  8013. "target": "Package",
  8014. "version": "[2.2.62, )"
  8015. },
  8016. "Swashbuckle.AspNetCore": {
  8017. "target": "Package",
  8018. "version": "[6.3.1, )"
  8019. },
  8020. "Swashbuckle.AspNetCore.Filters": {
  8021. "target": "Package",
  8022. "version": "[7.0.2, )"
  8023. },
  8024. "System.IdentityModel.Tokens.Jwt": {
  8025. "target": "Package",
  8026. "version": "[6.11.0, )"
  8027. }
  8028. },
  8029. "imports": [
  8030. "net461",
  8031. "net462",
  8032. "net47",
  8033. "net471",
  8034. "net472",
  8035. "net48"
  8036. ],
  8037. "assetTargetFallback": true,
  8038. "warn": true,
  8039. "frameworkReferences": {
  8040. "Microsoft.AspNetCore.App": {
  8041. "privateAssets": "none"
  8042. },
  8043. "Microsoft.NETCore.App": {
  8044. "privateAssets": "all"
  8045. }
  8046. },
  8047. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.426\\RuntimeIdentifierGraph.json"
  8048. }
  8049. }
  8050. }
  8051. }