project.assets.json 485 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/12.0.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.1/AutoMapper.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/netstandard2.1/AutoMapper.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  22. "type": "package",
  23. "dependencies": {
  24. "AutoMapper": "[12.0.1]",
  25. "Microsoft.Extensions.Options": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  29. },
  30. "runtime": {
  31. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  32. }
  33. },
  34. "BouncyCastle.NetCore/1.8.3": {
  35. "type": "package",
  36. "dependencies": {
  37. "NETStandard.Library": "1.6.0",
  38. "System.Reflection": "4.3.0",
  39. "System.Reflection.TypeExtensions": "4.1.0"
  40. },
  41. "compile": {
  42. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  43. "related": ".xml"
  44. }
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  48. "related": ".xml"
  49. }
  50. }
  51. },
  52. "Flurl/4.0.0": {
  53. "type": "package",
  54. "compile": {
  55. "lib/netstandard2.0/Flurl.dll": {
  56. "related": ".xml"
  57. }
  58. },
  59. "runtime": {
  60. "lib/netstandard2.0/Flurl.dll": {
  61. "related": ".xml"
  62. }
  63. }
  64. },
  65. "Flurl.Http/4.0.2": {
  66. "type": "package",
  67. "dependencies": {
  68. "Flurl": "4.0.0",
  69. "System.Text.Encoding.CodePages": "4.5.1",
  70. "System.Text.Json": "6.0.4"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Flurl.Http.dll": {
  74. "related": ".xml"
  75. }
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Flurl.Http.dll": {
  79. "related": ".xml"
  80. }
  81. }
  82. },
  83. "Google.Protobuf/3.11.4": {
  84. "type": "package",
  85. "dependencies": {
  86. "System.Memory": "4.5.2"
  87. },
  88. "compile": {
  89. "lib/netstandard2.0/Google.Protobuf.dll": {
  90. "related": ".pdb;.xml"
  91. }
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Google.Protobuf.dll": {
  95. "related": ".pdb;.xml"
  96. }
  97. }
  98. },
  99. "K4os.Compression.LZ4/1.1.11": {
  100. "type": "package",
  101. "dependencies": {
  102. "System.Memory": "4.5.3"
  103. },
  104. "compile": {
  105. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  106. "related": ".xml"
  107. }
  108. },
  109. "runtime": {
  110. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  111. "related": ".xml"
  112. }
  113. }
  114. },
  115. "K4os.Compression.LZ4.Streams/1.1.11": {
  116. "type": "package",
  117. "dependencies": {
  118. "K4os.Compression.LZ4": "1.1.11",
  119. "K4os.Hash.xxHash": "1.0.6"
  120. },
  121. "compile": {
  122. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  123. "related": ".xml"
  124. }
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  128. "related": ".xml"
  129. }
  130. }
  131. },
  132. "K4os.Hash.xxHash/1.0.6": {
  133. "type": "package",
  134. "dependencies": {
  135. "System.Memory": "4.5.3"
  136. },
  137. "compile": {
  138. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  139. "related": ".xml"
  140. }
  141. },
  142. "runtime": {
  143. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  144. "related": ".xml"
  145. }
  146. }
  147. },
  148. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  152. "related": ".xml"
  153. }
  154. },
  155. "runtime": {
  156. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  157. "related": ".xml"
  158. }
  159. }
  160. },
  161. "Microsoft.Bcl.HashCode/1.1.0": {
  162. "type": "package",
  163. "compile": {
  164. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  165. },
  166. "runtime": {
  167. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
  168. "related": ".xml"
  169. }
  170. }
  171. },
  172. "Microsoft.CSharp/4.7.0": {
  173. "type": "package",
  174. "compile": {
  175. "ref/netcoreapp2.0/_._": {}
  176. },
  177. "runtime": {
  178. "lib/netcoreapp2.0/_._": {}
  179. }
  180. },
  181. "Microsoft.EntityFrameworkCore/3.1.1": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  185. "Microsoft.Bcl.HashCode": "1.1.0",
  186. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  187. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  188. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  189. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  190. "Microsoft.Extensions.Logging": "3.1.1",
  191. "System.Collections.Immutable": "1.7.0",
  192. "System.ComponentModel.Annotations": "4.7.0",
  193. "System.Diagnostics.DiagnosticSource": "4.7.0"
  194. },
  195. "compile": {
  196. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "runtime": {
  201. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  202. "related": ".xml"
  203. }
  204. }
  205. },
  206. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  207. "type": "package",
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  220. "type": "package",
  221. "compile": {
  222. "lib/netstandard2.0/_._": {}
  223. },
  224. "runtime": {
  225. "lib/netstandard2.0/_._": {}
  226. }
  227. },
  228. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  229. "type": "package",
  230. "dependencies": {
  231. "Microsoft.EntityFrameworkCore": "3.1.1"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  245. "type": "package",
  246. "build": {
  247. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  248. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  249. },
  250. "buildMultiTargeting": {
  251. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  252. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  253. }
  254. },
  255. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  256. "type": "package",
  257. "dependencies": {
  258. "Microsoft.Extensions.Primitives": "3.1.1"
  259. },
  260. "compile": {
  261. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  262. "related": ".xml"
  263. }
  264. },
  265. "runtime": {
  266. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  267. "related": ".xml"
  268. }
  269. }
  270. },
  271. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  275. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  276. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  277. "Microsoft.Extensions.Options": "3.1.1"
  278. },
  279. "compile": {
  280. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  281. "related": ".xml"
  282. }
  283. },
  284. "runtime": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  286. "related": ".xml"
  287. }
  288. }
  289. },
  290. "Microsoft.Extensions.Configuration/8.0.0": {
  291. "type": "package",
  292. "dependencies": {
  293. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  294. "Microsoft.Extensions.Primitives": "8.0.0"
  295. },
  296. "compile": {
  297. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  298. "related": ".xml"
  299. }
  300. },
  301. "runtime": {
  302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "build": {
  307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  308. }
  309. },
  310. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "Microsoft.Extensions.Primitives": "8.0.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "build": {
  326. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  333. },
  334. "compile": {
  335. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  336. "related": ".xml"
  337. }
  338. },
  339. "runtime": {
  340. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  341. "related": ".xml"
  342. }
  343. },
  344. "build": {
  345. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  346. }
  347. },
  348. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.Extensions.Configuration": "8.0.0",
  352. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  361. "related": ".xml"
  362. }
  363. },
  364. "build": {
  365. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  366. }
  367. },
  368. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.Extensions.Configuration": "8.0.0",
  372. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  373. },
  374. "compile": {
  375. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  376. "related": ".xml"
  377. }
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  381. "related": ".xml"
  382. }
  383. },
  384. "build": {
  385. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  386. }
  387. },
  388. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.Extensions.Configuration": "8.0.0",
  392. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  393. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  394. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  395. "Microsoft.Extensions.Primitives": "8.0.0"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  404. "related": ".xml"
  405. }
  406. },
  407. "build": {
  408. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  409. }
  410. },
  411. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  412. "type": "package",
  413. "dependencies": {
  414. "Microsoft.Extensions.Configuration": "8.0.0",
  415. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  416. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  417. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  418. "System.Text.Json": "8.0.0"
  419. },
  420. "compile": {
  421. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "runtime": {
  426. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "build": {
  431. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  432. }
  433. },
  434. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  438. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  439. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  440. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  441. },
  442. "compile": {
  443. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "build": {
  453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  454. }
  455. },
  456. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  460. },
  461. "compile": {
  462. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  463. "related": ".xml"
  464. }
  465. },
  466. "runtime": {
  467. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "build": {
  472. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  473. }
  474. },
  475. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  476. "type": "package",
  477. "compile": {
  478. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. },
  482. "runtime": {
  483. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "build": {
  488. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  489. }
  490. },
  491. "Microsoft.Extensions.DependencyModel/3.1.6": {
  492. "type": "package",
  493. "dependencies": {
  494. "System.Text.Json": "4.7.2"
  495. },
  496. "compile": {
  497. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  498. "related": ".xml"
  499. }
  500. },
  501. "runtime": {
  502. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  503. "related": ".xml"
  504. }
  505. }
  506. },
  507. "Microsoft.Extensions.Diagnostics/8.0.0": {
  508. "type": "package",
  509. "dependencies": {
  510. "Microsoft.Extensions.Configuration": "8.0.0",
  511. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  512. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  513. },
  514. "compile": {
  515. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "build": {
  525. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  526. }
  527. },
  528. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  529. "type": "package",
  530. "dependencies": {
  531. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  532. "Microsoft.Extensions.Options": "8.0.0",
  533. "System.Buffers": "4.5.1",
  534. "System.Diagnostics.DiagnosticSource": "8.0.0",
  535. "System.Memory": "4.5.5"
  536. },
  537. "compile": {
  538. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  539. "related": ".xml"
  540. }
  541. },
  542. "runtime": {
  543. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  544. "related": ".xml"
  545. }
  546. },
  547. "build": {
  548. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  549. }
  550. },
  551. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  552. "type": "package",
  553. "dependencies": {
  554. "Microsoft.Extensions.Primitives": "8.0.0"
  555. },
  556. "compile": {
  557. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  558. "related": ".xml"
  559. }
  560. },
  561. "runtime": {
  562. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "build": {
  567. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  568. }
  569. },
  570. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  571. "type": "package",
  572. "dependencies": {
  573. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  574. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  575. "Microsoft.Extensions.Primitives": "8.0.0"
  576. },
  577. "compile": {
  578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  579. "related": ".xml"
  580. }
  581. },
  582. "runtime": {
  583. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  584. "related": ".xml"
  585. }
  586. },
  587. "build": {
  588. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  589. }
  590. },
  591. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  592. "type": "package",
  593. "compile": {
  594. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  595. "related": ".xml"
  596. }
  597. },
  598. "runtime": {
  599. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "build": {
  604. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  605. }
  606. },
  607. "Microsoft.Extensions.Hosting/8.0.0": {
  608. "type": "package",
  609. "dependencies": {
  610. "Microsoft.Extensions.Configuration": "8.0.0",
  611. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  612. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  613. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  614. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  615. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  616. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  617. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  618. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  619. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  620. "Microsoft.Extensions.Diagnostics": "8.0.0",
  621. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  622. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  623. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  624. "Microsoft.Extensions.Logging": "8.0.0",
  625. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  626. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  627. "Microsoft.Extensions.Logging.Console": "8.0.0",
  628. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  629. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  630. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  631. "Microsoft.Extensions.Options": "8.0.0"
  632. },
  633. "compile": {
  634. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  635. "related": ".xml"
  636. }
  637. },
  638. "runtime": {
  639. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "build": {
  644. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  645. }
  646. },
  647. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  648. "type": "package",
  649. "dependencies": {
  650. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  651. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  652. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  653. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  654. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  655. },
  656. "compile": {
  657. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "runtime": {
  662. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. },
  666. "build": {
  667. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  668. }
  669. },
  670. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  671. "type": "package",
  672. "dependencies": {
  673. "Microsoft.Extensions.Hosting": "8.0.0",
  674. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  675. "System.ServiceProcess.ServiceController": "8.0.0"
  676. },
  677. "compile": {
  678. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  679. "related": ".xml"
  680. }
  681. },
  682. "runtime": {
  683. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "build": {
  688. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  689. }
  690. },
  691. "Microsoft.Extensions.Logging/8.0.0": {
  692. "type": "package",
  693. "dependencies": {
  694. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  695. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  696. "Microsoft.Extensions.Options": "8.0.0",
  697. "System.Diagnostics.DiagnosticSource": "8.0.0"
  698. },
  699. "compile": {
  700. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  701. "related": ".xml"
  702. }
  703. },
  704. "runtime": {
  705. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  706. "related": ".xml"
  707. }
  708. },
  709. "build": {
  710. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  711. }
  712. },
  713. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  714. "type": "package",
  715. "dependencies": {
  716. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  717. "System.Buffers": "4.5.1",
  718. "System.Memory": "4.5.5"
  719. },
  720. "compile": {
  721. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  722. "related": ".xml"
  723. }
  724. },
  725. "runtime": {
  726. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "build": {
  731. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  732. }
  733. },
  734. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.Extensions.Configuration": "8.0.0",
  738. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  739. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  740. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  741. "Microsoft.Extensions.Logging": "8.0.0",
  742. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  743. "Microsoft.Extensions.Options": "8.0.0",
  744. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  748. "related": ".xml"
  749. }
  750. },
  751. "runtime": {
  752. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "build": {
  757. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  758. }
  759. },
  760. "Microsoft.Extensions.Logging.Console/8.0.0": {
  761. "type": "package",
  762. "dependencies": {
  763. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  764. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  765. "Microsoft.Extensions.Logging": "8.0.0",
  766. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  767. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  768. "Microsoft.Extensions.Options": "8.0.0",
  769. "System.Buffers": "4.5.1",
  770. "System.Text.Json": "8.0.0"
  771. },
  772. "compile": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  774. "related": ".xml"
  775. }
  776. },
  777. "runtime": {
  778. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  779. "related": ".xml"
  780. }
  781. },
  782. "build": {
  783. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  784. }
  785. },
  786. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  790. "Microsoft.Extensions.Logging": "8.0.0",
  791. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  792. },
  793. "compile": {
  794. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  795. "related": ".xml"
  796. }
  797. },
  798. "runtime": {
  799. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  800. "related": ".xml"
  801. }
  802. },
  803. "build": {
  804. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  805. }
  806. },
  807. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  808. "type": "package",
  809. "dependencies": {
  810. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  811. "Microsoft.Extensions.Logging": "8.0.0",
  812. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  813. "Microsoft.Extensions.Options": "8.0.0",
  814. "System.Diagnostics.EventLog": "8.0.0"
  815. },
  816. "compile": {
  817. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  818. "related": ".xml"
  819. }
  820. },
  821. "runtime": {
  822. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  823. "related": ".xml"
  824. }
  825. },
  826. "build": {
  827. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  828. }
  829. },
  830. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  831. "type": "package",
  832. "dependencies": {
  833. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  834. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  835. "Microsoft.Extensions.Logging": "8.0.0",
  836. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  837. "Microsoft.Extensions.Options": "8.0.0",
  838. "Microsoft.Extensions.Primitives": "8.0.0",
  839. "System.Memory": "4.5.5",
  840. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  841. "System.Text.Json": "8.0.0"
  842. },
  843. "compile": {
  844. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "build": {
  854. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  855. }
  856. },
  857. "Microsoft.Extensions.Options/8.0.0": {
  858. "type": "package",
  859. "dependencies": {
  860. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  861. "Microsoft.Extensions.Primitives": "8.0.0",
  862. "System.ComponentModel.Annotations": "5.0.0"
  863. },
  864. "compile": {
  865. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  866. "related": ".xml"
  867. }
  868. },
  869. "runtime": {
  870. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "build": {
  875. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  876. }
  877. },
  878. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  879. "type": "package",
  880. "dependencies": {
  881. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  882. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  883. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  884. "Microsoft.Extensions.Options": "8.0.0",
  885. "Microsoft.Extensions.Primitives": "8.0.0"
  886. },
  887. "compile": {
  888. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  889. "related": ".xml"
  890. }
  891. },
  892. "runtime": {
  893. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  894. "related": ".xml"
  895. }
  896. },
  897. "build": {
  898. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  899. }
  900. },
  901. "Microsoft.Extensions.Primitives/8.0.0": {
  902. "type": "package",
  903. "dependencies": {
  904. "System.Memory": "4.5.5",
  905. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  906. },
  907. "compile": {
  908. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  914. "related": ".xml"
  915. }
  916. },
  917. "build": {
  918. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  919. }
  920. },
  921. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  922. "type": "package",
  923. "compile": {
  924. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  925. "related": ".xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  930. "related": ".xml"
  931. }
  932. }
  933. },
  934. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  935. "type": "package",
  936. "dependencies": {
  937. "Microsoft.IdentityModel.Tokens": "7.4.1",
  938. "System.Text.Encodings.Web": "4.7.2",
  939. "System.Text.Json": "4.7.2"
  940. },
  941. "compile": {
  942. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  943. "related": ".xml"
  944. }
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  948. "related": ".xml"
  949. }
  950. }
  951. },
  952. "Microsoft.IdentityModel.Logging/7.4.1": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  956. },
  957. "compile": {
  958. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  959. "related": ".xml"
  960. }
  961. },
  962. "runtime": {
  963. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  964. "related": ".xml"
  965. }
  966. }
  967. },
  968. "Microsoft.IdentityModel.Tokens/7.4.1": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.CSharp": "4.5.0",
  972. "Microsoft.IdentityModel.Logging": "7.4.1",
  973. "System.Security.Cryptography.Cng": "4.5.0",
  974. "System.Text.Encodings.Web": "4.7.2",
  975. "System.Text.Json": "4.7.2"
  976. },
  977. "compile": {
  978. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "Microsoft.NETCore.Platforms/2.1.2": {
  989. "type": "package",
  990. "compile": {
  991. "lib/netstandard1.0/_._": {}
  992. },
  993. "runtime": {
  994. "lib/netstandard1.0/_._": {}
  995. }
  996. },
  997. "Microsoft.NETCore.Targets/3.0.0": {
  998. "type": "package",
  999. "compile": {
  1000. "lib/netstandard1.0/_._": {}
  1001. },
  1002. "runtime": {
  1003. "lib/netstandard1.0/_._": {}
  1004. }
  1005. },
  1006. "Microsoft.OpenApi/1.3.1": {
  1007. "type": "package",
  1008. "compile": {
  1009. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1010. "related": ".pdb;.xml"
  1011. }
  1012. },
  1013. "runtime": {
  1014. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1015. "related": ".pdb;.xml"
  1016. }
  1017. }
  1018. },
  1019. "Microsoft.Win32.Primitives/4.0.1": {
  1020. "type": "package",
  1021. "dependencies": {
  1022. "Microsoft.NETCore.Platforms": "1.0.1",
  1023. "Microsoft.NETCore.Targets": "1.0.1",
  1024. "System.Runtime": "4.1.0"
  1025. },
  1026. "compile": {
  1027. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1028. "related": ".xml"
  1029. }
  1030. }
  1031. },
  1032. "Microsoft.Win32.SystemEvents/6.0.0": {
  1033. "type": "package",
  1034. "compile": {
  1035. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1036. "related": ".xml"
  1037. }
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1041. "related": ".xml"
  1042. }
  1043. },
  1044. "build": {
  1045. "buildTransitive/netcoreapp3.1/_._": {}
  1046. },
  1047. "runtimeTargets": {
  1048. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1049. "assetType": "runtime",
  1050. "rid": "win"
  1051. }
  1052. }
  1053. },
  1054. "MySql.Data/8.0.22": {
  1055. "type": "package",
  1056. "dependencies": {
  1057. "BouncyCastle.NetCore": "1.8.3",
  1058. "Google.Protobuf": "3.11.4",
  1059. "K4os.Compression.LZ4": "1.1.11",
  1060. "K4os.Compression.LZ4.Streams": "1.1.11",
  1061. "K4os.Hash.xxHash": "1.0.6",
  1062. "SSH.NET": "2016.1.0",
  1063. "System.Buffers": "4.5.1",
  1064. "System.Configuration.ConfigurationManager": "4.4.1",
  1065. "System.Security.Permissions": "4.7.0",
  1066. "System.Text.Encoding.CodePages": "4.4.0"
  1067. },
  1068. "compile": {
  1069. "lib/netstandard2.1/MySql.Data.dll": {
  1070. "related": ".xml"
  1071. },
  1072. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  1073. "lib/netstandard2.1/Zstandard.Net.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netstandard2.1/MySql.Data.dll": {
  1077. "related": ".xml"
  1078. },
  1079. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  1080. "lib/netstandard2.1/Zstandard.Net.dll": {}
  1081. }
  1082. },
  1083. "MySql.Data.EntityFrameworkCore/8.0.22": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  1087. "MySql.Data": "8.0.22"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1091. "related": ".xml"
  1092. }
  1093. },
  1094. "runtime": {
  1095. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1096. "related": ".xml"
  1097. }
  1098. }
  1099. },
  1100. "NETStandard.Library/1.6.0": {
  1101. "type": "package",
  1102. "dependencies": {
  1103. "Microsoft.NETCore.Platforms": "1.0.1",
  1104. "Microsoft.Win32.Primitives": "4.0.1",
  1105. "System.AppContext": "4.1.0",
  1106. "System.Collections": "4.0.11",
  1107. "System.Collections.Concurrent": "4.0.12",
  1108. "System.Console": "4.0.0",
  1109. "System.Diagnostics.Debug": "4.0.11",
  1110. "System.Diagnostics.Tools": "4.0.1",
  1111. "System.Diagnostics.Tracing": "4.1.0",
  1112. "System.Globalization": "4.0.11",
  1113. "System.Globalization.Calendars": "4.0.1",
  1114. "System.IO": "4.1.0",
  1115. "System.IO.Compression": "4.1.0",
  1116. "System.IO.Compression.ZipFile": "4.0.1",
  1117. "System.IO.FileSystem": "4.0.1",
  1118. "System.IO.FileSystem.Primitives": "4.0.1",
  1119. "System.Linq": "4.1.0",
  1120. "System.Linq.Expressions": "4.1.0",
  1121. "System.Net.Http": "4.1.0",
  1122. "System.Net.Primitives": "4.0.11",
  1123. "System.Net.Sockets": "4.1.0",
  1124. "System.ObjectModel": "4.0.12",
  1125. "System.Reflection": "4.1.0",
  1126. "System.Reflection.Extensions": "4.0.1",
  1127. "System.Reflection.Primitives": "4.0.1",
  1128. "System.Resources.ResourceManager": "4.0.1",
  1129. "System.Runtime": "4.1.0",
  1130. "System.Runtime.Extensions": "4.1.0",
  1131. "System.Runtime.Handles": "4.0.1",
  1132. "System.Runtime.InteropServices": "4.1.0",
  1133. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1134. "System.Runtime.Numerics": "4.0.1",
  1135. "System.Security.Cryptography.Algorithms": "4.2.0",
  1136. "System.Security.Cryptography.Encoding": "4.0.0",
  1137. "System.Security.Cryptography.Primitives": "4.0.0",
  1138. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1139. "System.Text.Encoding": "4.0.11",
  1140. "System.Text.Encoding.Extensions": "4.0.11",
  1141. "System.Text.RegularExpressions": "4.1.0",
  1142. "System.Threading": "4.0.11",
  1143. "System.Threading.Tasks": "4.0.11",
  1144. "System.Threading.Timer": "4.0.1",
  1145. "System.Xml.ReaderWriter": "4.0.11",
  1146. "System.Xml.XDocument": "4.0.11"
  1147. }
  1148. },
  1149. "Newtonsoft.Json/13.0.3": {
  1150. "type": "package",
  1151. "compile": {
  1152. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1153. "related": ".xml"
  1154. }
  1155. },
  1156. "runtime": {
  1157. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1158. "related": ".xml"
  1159. }
  1160. }
  1161. },
  1162. "NLog/5.2.8": {
  1163. "type": "package",
  1164. "compile": {
  1165. "lib/netstandard2.0/NLog.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "runtime": {
  1170. "lib/netstandard2.0/NLog.dll": {
  1171. "related": ".xml"
  1172. }
  1173. }
  1174. },
  1175. "NLog.Extensions.Logging/5.3.8": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1179. "Microsoft.Extensions.Logging": "3.1.0",
  1180. "NLog": "5.2.8"
  1181. },
  1182. "compile": {
  1183. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1189. "related": ".xml"
  1190. }
  1191. }
  1192. },
  1193. "NLog.Web.AspNetCore/5.3.8": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "NLog.Extensions.Logging": "5.3.8"
  1197. },
  1198. "compile": {
  1199. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  1200. "related": ".xml"
  1201. }
  1202. },
  1203. "runtime": {
  1204. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "frameworkReferences": [
  1209. "Microsoft.AspNetCore.App"
  1210. ]
  1211. },
  1212. "Pipelines.Sockets.Unofficial/2.2.8": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "System.IO.Pipelines": "5.0.1"
  1216. },
  1217. "compile": {
  1218. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  1219. "related": ".xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  1224. "related": ".xml"
  1225. }
  1226. }
  1227. },
  1228. "Quartz/3.8.1": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1232. "System.Configuration.ConfigurationManager": "6.0.1",
  1233. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1234. },
  1235. "compile": {
  1236. "lib/netstandard2.0/Quartz.dll": {
  1237. "related": ".xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Quartz.dll": {
  1242. "related": ".xml"
  1243. }
  1244. }
  1245. },
  1246. "runtime.native.System/4.0.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "Microsoft.NETCore.Platforms": "1.0.1",
  1250. "Microsoft.NETCore.Targets": "1.0.1"
  1251. },
  1252. "compile": {
  1253. "lib/netstandard1.0/_._": {}
  1254. },
  1255. "runtime": {
  1256. "lib/netstandard1.0/_._": {}
  1257. }
  1258. },
  1259. "runtime.native.System.IO.Compression/4.1.0": {
  1260. "type": "package",
  1261. "dependencies": {
  1262. "Microsoft.NETCore.Platforms": "1.0.1",
  1263. "Microsoft.NETCore.Targets": "1.0.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard1.0/_._": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard1.0/_._": {}
  1270. }
  1271. },
  1272. "runtime.native.System.Net.Http/4.0.1": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.NETCore.Platforms": "1.0.1",
  1276. "Microsoft.NETCore.Targets": "1.0.1"
  1277. },
  1278. "compile": {
  1279. "lib/netstandard1.0/_._": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard1.0/_._": {}
  1283. }
  1284. },
  1285. "runtime.native.System.Security.Cryptography/4.0.0": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "Microsoft.NETCore.Platforms": "1.0.1",
  1289. "Microsoft.NETCore.Targets": "1.0.1"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard1.0/_._": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard1.0/_._": {}
  1296. }
  1297. },
  1298. "Scrutor/3.3.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  1302. "Microsoft.Extensions.DependencyModel": "3.1.6"
  1303. },
  1304. "compile": {
  1305. "lib/netcoreapp3.1/Scrutor.dll": {
  1306. "related": ".pdb;.xml"
  1307. }
  1308. },
  1309. "runtime": {
  1310. "lib/netcoreapp3.1/Scrutor.dll": {
  1311. "related": ".pdb;.xml"
  1312. }
  1313. }
  1314. },
  1315. "SSH.NET/2016.1.0": {
  1316. "type": "package",
  1317. "dependencies": {
  1318. "Microsoft.CSharp": "4.0.1",
  1319. "SshNet.Security.Cryptography": "[1.2.0]",
  1320. "System.Diagnostics.Debug": "4.0.11",
  1321. "System.Diagnostics.Tools": "4.0.1",
  1322. "System.Diagnostics.TraceSource": "4.0.0",
  1323. "System.Globalization": "4.0.11",
  1324. "System.IO": "4.1.0",
  1325. "System.IO.FileSystem": "4.0.1",
  1326. "System.IO.FileSystem.Primitives": "4.0.1",
  1327. "System.Linq": "4.1.0",
  1328. "System.Net.NameResolution": "4.0.0",
  1329. "System.Net.Sockets": "4.1.0",
  1330. "System.Reflection.Extensions": "4.0.1",
  1331. "System.Runtime.Extensions": "4.1.0",
  1332. "System.Security.Cryptography.Algorithms": "4.2.0",
  1333. "System.Text.RegularExpressions": "4.1.0",
  1334. "System.Threading": "4.0.11",
  1335. "System.Threading.Thread": "4.0.0",
  1336. "System.Threading.ThreadPool": "4.0.10",
  1337. "System.Threading.Timer": "4.0.1",
  1338. "System.Xml.XPath.XmlDocument": "4.0.1",
  1339. "System.Xml.XmlDocument": "4.0.1"
  1340. },
  1341. "compile": {
  1342. "lib/netstandard1.3/Renci.SshNet.dll": {
  1343. "related": ".xml"
  1344. }
  1345. },
  1346. "runtime": {
  1347. "lib/netstandard1.3/Renci.SshNet.dll": {
  1348. "related": ".xml"
  1349. }
  1350. }
  1351. },
  1352. "SshNet.Security.Cryptography/1.2.0": {
  1353. "type": "package",
  1354. "dependencies": {
  1355. "System.IO": "4.1.0",
  1356. "System.Security.Cryptography.Primitives": "4.0.0"
  1357. },
  1358. "compile": {
  1359. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1360. "related": ".xml"
  1361. }
  1362. },
  1363. "runtime": {
  1364. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1365. "related": ".xml"
  1366. }
  1367. }
  1368. },
  1369. "StackExchange.Redis/2.7.33": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1373. "Pipelines.Sockets.Unofficial": "2.2.8"
  1374. },
  1375. "compile": {
  1376. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1377. "related": ".xml"
  1378. }
  1379. },
  1380. "runtime": {
  1381. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1382. "related": ".xml"
  1383. }
  1384. }
  1385. },
  1386. "Swashbuckle.AspNetCore/6.5.0": {
  1387. "type": "package",
  1388. "dependencies": {
  1389. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1390. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  1391. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  1392. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  1393. },
  1394. "build": {
  1395. "build/Swashbuckle.AspNetCore.props": {}
  1396. }
  1397. },
  1398. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1402. "Microsoft.OpenApi": "1.3.1",
  1403. "Scrutor": "3.3.0",
  1404. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  1405. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1406. },
  1407. "compile": {
  1408. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1409. },
  1410. "runtime": {
  1411. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1412. }
  1413. },
  1414. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  1415. "type": "package",
  1416. "compile": {
  1417. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1418. },
  1419. "runtime": {
  1420. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1421. }
  1422. },
  1423. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "Microsoft.OpenApi": "1.2.3"
  1427. },
  1428. "compile": {
  1429. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1430. "related": ".pdb;.xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1435. "related": ".pdb;.xml"
  1436. }
  1437. },
  1438. "frameworkReferences": [
  1439. "Microsoft.AspNetCore.App"
  1440. ]
  1441. },
  1442. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1443. "type": "package",
  1444. "dependencies": {
  1445. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1446. },
  1447. "compile": {
  1448. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1449. "related": ".pdb;.xml"
  1450. }
  1451. },
  1452. "runtime": {
  1453. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1454. "related": ".pdb;.xml"
  1455. }
  1456. }
  1457. },
  1458. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1459. "type": "package",
  1460. "compile": {
  1461. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1462. "related": ".pdb;.xml"
  1463. }
  1464. },
  1465. "runtime": {
  1466. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1467. "related": ".pdb;.xml"
  1468. }
  1469. },
  1470. "frameworkReferences": [
  1471. "Microsoft.AspNetCore.App"
  1472. ]
  1473. },
  1474. "System.AppContext/4.1.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "System.Runtime": "4.1.0"
  1478. },
  1479. "compile": {
  1480. "ref/netstandard1.6/System.AppContext.dll": {
  1481. "related": ".xml"
  1482. }
  1483. },
  1484. "runtime": {
  1485. "lib/netstandard1.6/System.AppContext.dll": {}
  1486. }
  1487. },
  1488. "System.Buffers/4.5.1": {
  1489. "type": "package",
  1490. "compile": {
  1491. "ref/netcoreapp2.0/_._": {}
  1492. },
  1493. "runtime": {
  1494. "lib/netcoreapp2.0/_._": {}
  1495. }
  1496. },
  1497. "System.Collections/4.0.11": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "1.0.1",
  1501. "Microsoft.NETCore.Targets": "1.0.1",
  1502. "System.Runtime": "4.1.0"
  1503. },
  1504. "compile": {
  1505. "ref/netstandard1.3/System.Collections.dll": {
  1506. "related": ".xml"
  1507. }
  1508. }
  1509. },
  1510. "System.Collections.Concurrent/4.0.12": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Collections": "4.0.11",
  1514. "System.Diagnostics.Debug": "4.0.11",
  1515. "System.Diagnostics.Tracing": "4.1.0",
  1516. "System.Globalization": "4.0.11",
  1517. "System.Reflection": "4.1.0",
  1518. "System.Resources.ResourceManager": "4.0.1",
  1519. "System.Runtime": "4.1.0",
  1520. "System.Runtime.Extensions": "4.1.0",
  1521. "System.Threading": "4.0.11",
  1522. "System.Threading.Tasks": "4.0.11"
  1523. },
  1524. "compile": {
  1525. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1526. "related": ".xml"
  1527. }
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1531. }
  1532. },
  1533. "System.Collections.Immutable/1.7.0": {
  1534. "type": "package",
  1535. "compile": {
  1536. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1537. "related": ".xml"
  1538. }
  1539. },
  1540. "runtime": {
  1541. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1542. "related": ".xml"
  1543. }
  1544. }
  1545. },
  1546. "System.ComponentModel.Annotations/5.0.0": {
  1547. "type": "package",
  1548. "compile": {
  1549. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1550. "related": ".xml"
  1551. }
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1555. "related": ".xml"
  1556. }
  1557. }
  1558. },
  1559. "System.Configuration.ConfigurationManager/6.0.1": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1563. "System.Security.Permissions": "6.0.0"
  1564. },
  1565. "compile": {
  1566. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1567. "related": ".xml"
  1568. }
  1569. },
  1570. "runtime": {
  1571. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1572. "related": ".xml"
  1573. }
  1574. },
  1575. "build": {
  1576. "buildTransitive/netcoreapp3.1/_._": {}
  1577. }
  1578. },
  1579. "System.Console/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "Microsoft.NETCore.Targets": "1.0.1",
  1584. "System.IO": "4.1.0",
  1585. "System.Runtime": "4.1.0",
  1586. "System.Text.Encoding": "4.0.11"
  1587. },
  1588. "compile": {
  1589. "ref/netstandard1.3/System.Console.dll": {
  1590. "related": ".xml"
  1591. }
  1592. }
  1593. },
  1594. "System.Diagnostics.Debug/4.0.11": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "Microsoft.NETCore.Platforms": "1.0.1",
  1598. "Microsoft.NETCore.Targets": "1.0.1",
  1599. "System.Runtime": "4.1.0"
  1600. },
  1601. "compile": {
  1602. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "System.Diagnostics.DiagnosticSource/8.0.0": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "System.Memory": "4.5.5",
  1611. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1612. },
  1613. "compile": {
  1614. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1615. "related": ".xml"
  1616. }
  1617. },
  1618. "runtime": {
  1619. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "build": {
  1624. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  1625. }
  1626. },
  1627. "System.Diagnostics.EventLog/8.0.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Security.Principal.Windows": "5.0.0"
  1631. },
  1632. "compile": {
  1633. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1639. "related": ".xml"
  1640. }
  1641. },
  1642. "build": {
  1643. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  1644. }
  1645. },
  1646. "System.Diagnostics.Tools/4.0.1": {
  1647. "type": "package",
  1648. "dependencies": {
  1649. "Microsoft.NETCore.Platforms": "1.0.1",
  1650. "Microsoft.NETCore.Targets": "1.0.1",
  1651. "System.Runtime": "4.1.0"
  1652. },
  1653. "compile": {
  1654. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1655. "related": ".xml"
  1656. }
  1657. }
  1658. },
  1659. "System.Diagnostics.TraceSource/4.0.0": {
  1660. "type": "package",
  1661. "dependencies": {
  1662. "Microsoft.NETCore.Platforms": "1.0.1",
  1663. "System.Collections": "4.0.11",
  1664. "System.Diagnostics.Debug": "4.0.11",
  1665. "System.Globalization": "4.0.11",
  1666. "System.Resources.ResourceManager": "4.0.1",
  1667. "System.Runtime": "4.1.0",
  1668. "System.Runtime.Extensions": "4.1.0",
  1669. "System.Threading": "4.0.11",
  1670. "runtime.native.System": "4.0.0"
  1671. },
  1672. "compile": {
  1673. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "runtimeTargets": {
  1678. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1679. "assetType": "runtime",
  1680. "rid": "unix"
  1681. },
  1682. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1683. "assetType": "runtime",
  1684. "rid": "win"
  1685. }
  1686. }
  1687. },
  1688. "System.Diagnostics.Tracing/4.1.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.0.1",
  1692. "Microsoft.NETCore.Targets": "1.0.1",
  1693. "System.Runtime": "4.1.0"
  1694. },
  1695. "compile": {
  1696. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1697. "related": ".xml"
  1698. }
  1699. }
  1700. },
  1701. "System.Drawing.Common/6.0.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.Win32.SystemEvents": "6.0.0"
  1705. },
  1706. "compile": {
  1707. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "build": {
  1717. "buildTransitive/netcoreapp3.1/_._": {}
  1718. },
  1719. "runtimeTargets": {
  1720. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1721. "assetType": "runtime",
  1722. "rid": "unix"
  1723. },
  1724. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1725. "assetType": "runtime",
  1726. "rid": "win"
  1727. }
  1728. }
  1729. },
  1730. "System.Globalization/4.0.11": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.NETCore.Platforms": "1.0.1",
  1734. "Microsoft.NETCore.Targets": "1.0.1",
  1735. "System.Runtime": "4.1.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.Globalization.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Globalization.Calendars/4.0.1": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.0.1",
  1747. "Microsoft.NETCore.Targets": "1.0.1",
  1748. "System.Globalization": "4.0.11",
  1749. "System.Runtime": "4.1.0"
  1750. },
  1751. "compile": {
  1752. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1753. "related": ".xml"
  1754. }
  1755. }
  1756. },
  1757. "System.Globalization.Extensions/4.0.1": {
  1758. "type": "package",
  1759. "dependencies": {
  1760. "Microsoft.NETCore.Platforms": "1.0.1",
  1761. "System.Globalization": "4.0.11",
  1762. "System.Resources.ResourceManager": "4.0.1",
  1763. "System.Runtime": "4.1.0",
  1764. "System.Runtime.Extensions": "4.1.0",
  1765. "System.Runtime.InteropServices": "4.1.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard1.3/_._": {
  1769. "related": ".xml"
  1770. }
  1771. },
  1772. "runtimeTargets": {
  1773. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1774. "assetType": "runtime",
  1775. "rid": "unix"
  1776. },
  1777. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1778. "assetType": "runtime",
  1779. "rid": "win"
  1780. }
  1781. }
  1782. },
  1783. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  1787. "Microsoft.IdentityModel.Tokens": "7.4.1"
  1788. },
  1789. "compile": {
  1790. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1796. "related": ".xml"
  1797. }
  1798. }
  1799. },
  1800. "System.IO/4.3.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "Microsoft.NETCore.Platforms": "1.1.0",
  1804. "Microsoft.NETCore.Targets": "1.1.0",
  1805. "System.Runtime": "4.3.0",
  1806. "System.Text.Encoding": "4.3.0",
  1807. "System.Threading.Tasks": "4.3.0"
  1808. },
  1809. "compile": {
  1810. "ref/netstandard1.5/System.IO.dll": {
  1811. "related": ".xml"
  1812. }
  1813. }
  1814. },
  1815. "System.IO.Compression/4.1.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.0.1",
  1819. "System.Collections": "4.0.11",
  1820. "System.Diagnostics.Debug": "4.0.11",
  1821. "System.IO": "4.1.0",
  1822. "System.Resources.ResourceManager": "4.0.1",
  1823. "System.Runtime": "4.1.0",
  1824. "System.Runtime.Extensions": "4.1.0",
  1825. "System.Runtime.Handles": "4.0.1",
  1826. "System.Runtime.InteropServices": "4.1.0",
  1827. "System.Text.Encoding": "4.0.11",
  1828. "System.Threading": "4.0.11",
  1829. "System.Threading.Tasks": "4.0.11",
  1830. "runtime.native.System": "4.0.0",
  1831. "runtime.native.System.IO.Compression": "4.1.0"
  1832. },
  1833. "compile": {
  1834. "ref/netstandard1.3/System.IO.Compression.dll": {
  1835. "related": ".xml"
  1836. }
  1837. },
  1838. "runtimeTargets": {
  1839. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1840. "assetType": "runtime",
  1841. "rid": "unix"
  1842. },
  1843. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1844. "assetType": "runtime",
  1845. "rid": "win"
  1846. }
  1847. }
  1848. },
  1849. "System.IO.Compression.ZipFile/4.0.1": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Buffers": "4.0.0",
  1853. "System.IO": "4.1.0",
  1854. "System.IO.Compression": "4.1.0",
  1855. "System.IO.FileSystem": "4.0.1",
  1856. "System.IO.FileSystem.Primitives": "4.0.1",
  1857. "System.Resources.ResourceManager": "4.0.1",
  1858. "System.Runtime": "4.1.0",
  1859. "System.Runtime.Extensions": "4.1.0",
  1860. "System.Text.Encoding": "4.0.11"
  1861. },
  1862. "compile": {
  1863. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1864. "related": ".xml"
  1865. }
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1869. }
  1870. },
  1871. "System.IO.FileSystem/4.0.1": {
  1872. "type": "package",
  1873. "dependencies": {
  1874. "Microsoft.NETCore.Platforms": "1.0.1",
  1875. "Microsoft.NETCore.Targets": "1.0.1",
  1876. "System.IO": "4.1.0",
  1877. "System.IO.FileSystem.Primitives": "4.0.1",
  1878. "System.Runtime": "4.1.0",
  1879. "System.Runtime.Handles": "4.0.1",
  1880. "System.Text.Encoding": "4.0.11",
  1881. "System.Threading.Tasks": "4.0.11"
  1882. },
  1883. "compile": {
  1884. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1885. "related": ".xml"
  1886. }
  1887. }
  1888. },
  1889. "System.IO.FileSystem.Primitives/4.0.1": {
  1890. "type": "package",
  1891. "dependencies": {
  1892. "System.Runtime": "4.1.0"
  1893. },
  1894. "compile": {
  1895. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1896. "related": ".xml"
  1897. }
  1898. },
  1899. "runtime": {
  1900. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1901. }
  1902. },
  1903. "System.IO.Pipelines/5.0.1": {
  1904. "type": "package",
  1905. "compile": {
  1906. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1907. "related": ".xml"
  1908. }
  1909. },
  1910. "runtime": {
  1911. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1912. "related": ".xml"
  1913. }
  1914. }
  1915. },
  1916. "System.Linq/4.1.0": {
  1917. "type": "package",
  1918. "dependencies": {
  1919. "System.Collections": "4.0.11",
  1920. "System.Diagnostics.Debug": "4.0.11",
  1921. "System.Resources.ResourceManager": "4.0.1",
  1922. "System.Runtime": "4.1.0",
  1923. "System.Runtime.Extensions": "4.1.0"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.6/System.Linq.dll": {
  1927. "related": ".xml"
  1928. }
  1929. },
  1930. "runtime": {
  1931. "lib/netstandard1.6/System.Linq.dll": {}
  1932. }
  1933. },
  1934. "System.Linq.Expressions/4.1.0": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "System.Collections": "4.0.11",
  1938. "System.Diagnostics.Debug": "4.0.11",
  1939. "System.Globalization": "4.0.11",
  1940. "System.IO": "4.1.0",
  1941. "System.Linq": "4.1.0",
  1942. "System.ObjectModel": "4.0.12",
  1943. "System.Reflection": "4.1.0",
  1944. "System.Reflection.Emit": "4.0.1",
  1945. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1946. "System.Reflection.Emit.Lightweight": "4.0.1",
  1947. "System.Reflection.Extensions": "4.0.1",
  1948. "System.Reflection.Primitives": "4.0.1",
  1949. "System.Reflection.TypeExtensions": "4.1.0",
  1950. "System.Resources.ResourceManager": "4.0.1",
  1951. "System.Runtime": "4.1.0",
  1952. "System.Runtime.Extensions": "4.1.0",
  1953. "System.Threading": "4.0.11"
  1954. },
  1955. "compile": {
  1956. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1957. "related": ".xml"
  1958. }
  1959. },
  1960. "runtime": {
  1961. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1962. }
  1963. },
  1964. "System.Memory/4.5.5": {
  1965. "type": "package",
  1966. "compile": {
  1967. "ref/netcoreapp2.1/_._": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netcoreapp2.1/_._": {}
  1971. }
  1972. },
  1973. "System.Net.Http/4.1.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "Microsoft.NETCore.Platforms": "1.0.1",
  1977. "System.Collections": "4.0.11",
  1978. "System.Diagnostics.Debug": "4.0.11",
  1979. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1980. "System.Diagnostics.Tracing": "4.1.0",
  1981. "System.Globalization": "4.0.11",
  1982. "System.Globalization.Extensions": "4.0.1",
  1983. "System.IO": "4.1.0",
  1984. "System.IO.FileSystem": "4.0.1",
  1985. "System.Net.Primitives": "4.0.11",
  1986. "System.Resources.ResourceManager": "4.0.1",
  1987. "System.Runtime": "4.1.0",
  1988. "System.Runtime.Extensions": "4.1.0",
  1989. "System.Runtime.Handles": "4.0.1",
  1990. "System.Runtime.InteropServices": "4.1.0",
  1991. "System.Security.Cryptography.Algorithms": "4.2.0",
  1992. "System.Security.Cryptography.Encoding": "4.0.0",
  1993. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1994. "System.Security.Cryptography.Primitives": "4.0.0",
  1995. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1996. "System.Text.Encoding": "4.0.11",
  1997. "System.Threading": "4.0.11",
  1998. "System.Threading.Tasks": "4.0.11",
  1999. "runtime.native.System": "4.0.0",
  2000. "runtime.native.System.Net.Http": "4.0.1",
  2001. "runtime.native.System.Security.Cryptography": "4.0.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.3/System.Net.Http.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtimeTargets": {
  2009. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2010. "assetType": "runtime",
  2011. "rid": "unix"
  2012. },
  2013. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2014. "assetType": "runtime",
  2015. "rid": "win"
  2016. }
  2017. }
  2018. },
  2019. "System.Net.NameResolution/4.0.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.0.1",
  2023. "System.Collections": "4.0.11",
  2024. "System.Diagnostics.Tracing": "4.1.0",
  2025. "System.Globalization": "4.0.11",
  2026. "System.Net.Primitives": "4.0.11",
  2027. "System.Resources.ResourceManager": "4.0.1",
  2028. "System.Runtime": "4.1.0",
  2029. "System.Runtime.Extensions": "4.1.0",
  2030. "System.Runtime.Handles": "4.0.1",
  2031. "System.Runtime.InteropServices": "4.1.0",
  2032. "System.Security.Principal.Windows": "4.0.0",
  2033. "System.Threading": "4.0.11",
  2034. "System.Threading.Tasks": "4.0.11",
  2035. "runtime.native.System": "4.0.0"
  2036. },
  2037. "compile": {
  2038. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2039. "related": ".xml"
  2040. }
  2041. },
  2042. "runtimeTargets": {
  2043. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2044. "assetType": "runtime",
  2045. "rid": "unix"
  2046. },
  2047. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "win"
  2050. }
  2051. }
  2052. },
  2053. "System.Net.Primitives/4.0.11": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.0.1",
  2057. "Microsoft.NETCore.Targets": "1.0.1",
  2058. "System.Runtime": "4.1.0",
  2059. "System.Runtime.Handles": "4.0.1"
  2060. },
  2061. "compile": {
  2062. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2063. "related": ".xml"
  2064. }
  2065. }
  2066. },
  2067. "System.Net.Sockets/4.1.0": {
  2068. "type": "package",
  2069. "dependencies": {
  2070. "Microsoft.NETCore.Platforms": "1.0.1",
  2071. "Microsoft.NETCore.Targets": "1.0.1",
  2072. "System.IO": "4.1.0",
  2073. "System.Net.Primitives": "4.0.11",
  2074. "System.Runtime": "4.1.0",
  2075. "System.Threading.Tasks": "4.0.11"
  2076. },
  2077. "compile": {
  2078. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2079. "related": ".xml"
  2080. }
  2081. }
  2082. },
  2083. "System.ObjectModel/4.0.12": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Collections": "4.0.11",
  2087. "System.Diagnostics.Debug": "4.0.11",
  2088. "System.Resources.ResourceManager": "4.0.1",
  2089. "System.Runtime": "4.1.0",
  2090. "System.Threading": "4.0.11"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.3/System.ObjectModel.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtime": {
  2098. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2099. }
  2100. },
  2101. "System.Reflection/4.3.0": {
  2102. "type": "package",
  2103. "dependencies": {
  2104. "Microsoft.NETCore.Platforms": "1.1.0",
  2105. "Microsoft.NETCore.Targets": "1.1.0",
  2106. "System.IO": "4.3.0",
  2107. "System.Reflection.Primitives": "4.3.0",
  2108. "System.Runtime": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.5/System.Reflection.dll": {
  2112. "related": ".xml"
  2113. }
  2114. }
  2115. },
  2116. "System.Reflection.Emit/4.0.1": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "System.IO": "4.1.0",
  2120. "System.Reflection": "4.1.0",
  2121. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2122. "System.Reflection.Primitives": "4.0.1",
  2123. "System.Runtime": "4.1.0"
  2124. },
  2125. "compile": {
  2126. "ref/netstandard1.1/_._": {
  2127. "related": ".xml"
  2128. }
  2129. },
  2130. "runtime": {
  2131. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2132. }
  2133. },
  2134. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2135. "type": "package",
  2136. "dependencies": {
  2137. "System.Reflection": "4.1.0",
  2138. "System.Reflection.Primitives": "4.0.1",
  2139. "System.Runtime": "4.1.0"
  2140. },
  2141. "compile": {
  2142. "ref/netstandard1.0/_._": {
  2143. "related": ".xml"
  2144. }
  2145. },
  2146. "runtime": {
  2147. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2148. }
  2149. },
  2150. "System.Reflection.Emit.Lightweight/4.0.1": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.Reflection": "4.1.0",
  2154. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2155. "System.Reflection.Primitives": "4.0.1",
  2156. "System.Runtime": "4.1.0"
  2157. },
  2158. "compile": {
  2159. "ref/netstandard1.0/_._": {
  2160. "related": ".xml"
  2161. }
  2162. },
  2163. "runtime": {
  2164. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2165. }
  2166. },
  2167. "System.Reflection.Extensions/4.0.1": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "1.0.1",
  2171. "Microsoft.NETCore.Targets": "1.0.1",
  2172. "System.Reflection": "4.1.0",
  2173. "System.Runtime": "4.1.0"
  2174. },
  2175. "compile": {
  2176. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2177. "related": ".xml"
  2178. }
  2179. }
  2180. },
  2181. "System.Reflection.Primitives/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "Microsoft.NETCore.Platforms": "1.1.0",
  2185. "Microsoft.NETCore.Targets": "1.1.0",
  2186. "System.Runtime": "4.3.0"
  2187. },
  2188. "compile": {
  2189. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2190. "related": ".xml"
  2191. }
  2192. }
  2193. },
  2194. "System.Reflection.TypeExtensions/4.1.0": {
  2195. "type": "package",
  2196. "dependencies": {
  2197. "System.Reflection": "4.1.0",
  2198. "System.Runtime": "4.1.0"
  2199. },
  2200. "compile": {
  2201. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2202. "related": ".xml"
  2203. }
  2204. },
  2205. "runtime": {
  2206. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2207. }
  2208. },
  2209. "System.Resources.ResourceManager/4.0.1": {
  2210. "type": "package",
  2211. "dependencies": {
  2212. "Microsoft.NETCore.Platforms": "1.0.1",
  2213. "Microsoft.NETCore.Targets": "1.0.1",
  2214. "System.Globalization": "4.0.11",
  2215. "System.Reflection": "4.1.0",
  2216. "System.Runtime": "4.1.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Runtime/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.5/System.Runtime.dll": {
  2232. "related": ".xml"
  2233. }
  2234. }
  2235. },
  2236. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2237. "type": "package",
  2238. "compile": {
  2239. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "build": {
  2249. "buildTransitive/netcoreapp3.1/_._": {}
  2250. }
  2251. },
  2252. "System.Runtime.Extensions/4.1.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "Microsoft.NETCore.Platforms": "1.0.1",
  2256. "Microsoft.NETCore.Targets": "1.0.1",
  2257. "System.Runtime": "4.1.0"
  2258. },
  2259. "compile": {
  2260. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2261. "related": ".xml"
  2262. }
  2263. }
  2264. },
  2265. "System.Runtime.Handles/4.0.1": {
  2266. "type": "package",
  2267. "dependencies": {
  2268. "Microsoft.NETCore.Platforms": "1.0.1",
  2269. "Microsoft.NETCore.Targets": "1.0.1",
  2270. "System.Runtime": "4.1.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2274. "related": ".xml"
  2275. }
  2276. }
  2277. },
  2278. "System.Runtime.InteropServices/4.1.0": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "Microsoft.NETCore.Platforms": "1.0.1",
  2282. "Microsoft.NETCore.Targets": "1.0.1",
  2283. "System.Reflection": "4.1.0",
  2284. "System.Reflection.Primitives": "4.0.1",
  2285. "System.Runtime": "4.1.0",
  2286. "System.Runtime.Handles": "4.0.1"
  2287. },
  2288. "compile": {
  2289. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  2290. "related": ".xml"
  2291. }
  2292. }
  2293. },
  2294. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.0.1",
  2298. "System.Reflection": "4.1.0",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.InteropServices": "4.1.0",
  2302. "System.Threading": "4.0.11",
  2303. "runtime.native.System": "4.0.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2307. },
  2308. "runtimeTargets": {
  2309. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2310. "assetType": "runtime",
  2311. "rid": "unix"
  2312. },
  2313. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "win"
  2316. }
  2317. }
  2318. },
  2319. "System.Runtime.Numerics/4.0.1": {
  2320. "type": "package",
  2321. "dependencies": {
  2322. "System.Globalization": "4.0.11",
  2323. "System.Resources.ResourceManager": "4.0.1",
  2324. "System.Runtime": "4.1.0",
  2325. "System.Runtime.Extensions": "4.1.0"
  2326. },
  2327. "compile": {
  2328. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2334. }
  2335. },
  2336. "System.Security.AccessControl/6.0.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "System.Security.Principal.Windows": "5.0.0"
  2340. },
  2341. "compile": {
  2342. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2343. "related": ".xml"
  2344. }
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2348. "related": ".xml"
  2349. }
  2350. },
  2351. "build": {
  2352. "buildTransitive/netcoreapp3.1/_._": {}
  2353. },
  2354. "runtimeTargets": {
  2355. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2356. "assetType": "runtime",
  2357. "rid": "win"
  2358. }
  2359. }
  2360. },
  2361. "System.Security.Cryptography.Algorithms/4.2.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "Microsoft.NETCore.Platforms": "1.0.1",
  2365. "System.Collections": "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.Runtime.Handles": "4.0.1",
  2371. "System.Runtime.InteropServices": "4.1.0",
  2372. "System.Runtime.Numerics": "4.0.1",
  2373. "System.Security.Cryptography.Encoding": "4.0.0",
  2374. "System.Security.Cryptography.Primitives": "4.0.0",
  2375. "System.Text.Encoding": "4.0.11",
  2376. "runtime.native.System.Security.Cryptography": "4.0.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2380. },
  2381. "runtimeTargets": {
  2382. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2383. "assetType": "runtime",
  2384. "rid": "unix"
  2385. },
  2386. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2387. "assetType": "runtime",
  2388. "rid": "win"
  2389. }
  2390. }
  2391. },
  2392. "System.Security.Cryptography.Cng/4.5.0": {
  2393. "type": "package",
  2394. "compile": {
  2395. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2401. },
  2402. "runtimeTargets": {
  2403. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2404. "assetType": "runtime",
  2405. "rid": "win"
  2406. }
  2407. }
  2408. },
  2409. "System.Security.Cryptography.Csp/4.0.0": {
  2410. "type": "package",
  2411. "dependencies": {
  2412. "Microsoft.NETCore.Platforms": "1.0.1",
  2413. "System.IO": "4.1.0",
  2414. "System.Reflection": "4.1.0",
  2415. "System.Resources.ResourceManager": "4.0.1",
  2416. "System.Runtime": "4.1.0",
  2417. "System.Runtime.Extensions": "4.1.0",
  2418. "System.Runtime.Handles": "4.0.1",
  2419. "System.Runtime.InteropServices": "4.1.0",
  2420. "System.Security.Cryptography.Algorithms": "4.2.0",
  2421. "System.Security.Cryptography.Encoding": "4.0.0",
  2422. "System.Security.Cryptography.Primitives": "4.0.0",
  2423. "System.Text.Encoding": "4.0.11",
  2424. "System.Threading": "4.0.11"
  2425. },
  2426. "compile": {
  2427. "ref/netstandard1.3/_._": {}
  2428. },
  2429. "runtimeTargets": {
  2430. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2431. "assetType": "runtime",
  2432. "rid": "unix"
  2433. },
  2434. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "win"
  2437. }
  2438. }
  2439. },
  2440. "System.Security.Cryptography.Encoding/4.0.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "Microsoft.NETCore.Platforms": "1.0.1",
  2444. "System.Collections": "4.0.11",
  2445. "System.Collections.Concurrent": "4.0.12",
  2446. "System.Linq": "4.1.0",
  2447. "System.Resources.ResourceManager": "4.0.1",
  2448. "System.Runtime": "4.1.0",
  2449. "System.Runtime.Extensions": "4.1.0",
  2450. "System.Runtime.Handles": "4.0.1",
  2451. "System.Runtime.InteropServices": "4.1.0",
  2452. "System.Security.Cryptography.Primitives": "4.0.0",
  2453. "System.Text.Encoding": "4.0.11",
  2454. "runtime.native.System.Security.Cryptography": "4.0.0"
  2455. },
  2456. "compile": {
  2457. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2458. "related": ".xml"
  2459. }
  2460. },
  2461. "runtimeTargets": {
  2462. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2463. "assetType": "runtime",
  2464. "rid": "unix"
  2465. },
  2466. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2467. "assetType": "runtime",
  2468. "rid": "win"
  2469. }
  2470. }
  2471. },
  2472. "System.Security.Cryptography.OpenSsl/4.0.0": {
  2473. "type": "package",
  2474. "dependencies": {
  2475. "System.Collections": "4.0.11",
  2476. "System.IO": "4.1.0",
  2477. "System.Resources.ResourceManager": "4.0.1",
  2478. "System.Runtime": "4.1.0",
  2479. "System.Runtime.Extensions": "4.1.0",
  2480. "System.Runtime.Handles": "4.0.1",
  2481. "System.Runtime.InteropServices": "4.1.0",
  2482. "System.Runtime.Numerics": "4.0.1",
  2483. "System.Security.Cryptography.Algorithms": "4.2.0",
  2484. "System.Security.Cryptography.Encoding": "4.0.0",
  2485. "System.Security.Cryptography.Primitives": "4.0.0",
  2486. "System.Text.Encoding": "4.0.11",
  2487. "runtime.native.System.Security.Cryptography": "4.0.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.6/_._": {}
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2494. },
  2495. "runtimeTargets": {
  2496. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "unix"
  2499. }
  2500. }
  2501. },
  2502. "System.Security.Cryptography.Primitives/4.0.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "System.Diagnostics.Debug": "4.0.11",
  2506. "System.Globalization": "4.0.11",
  2507. "System.IO": "4.1.0",
  2508. "System.Resources.ResourceManager": "4.0.1",
  2509. "System.Runtime": "4.1.0",
  2510. "System.Threading": "4.0.11",
  2511. "System.Threading.Tasks": "4.0.11"
  2512. },
  2513. "compile": {
  2514. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2515. },
  2516. "runtime": {
  2517. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2518. }
  2519. },
  2520. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "System.Memory": "4.5.4"
  2524. },
  2525. "compile": {
  2526. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtime": {
  2531. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2532. "related": ".xml"
  2533. }
  2534. },
  2535. "build": {
  2536. "buildTransitive/netcoreapp3.1/_._": {}
  2537. },
  2538. "runtimeTargets": {
  2539. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2540. "assetType": "runtime",
  2541. "rid": "win"
  2542. }
  2543. }
  2544. },
  2545. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2546. "type": "package",
  2547. "dependencies": {
  2548. "Microsoft.NETCore.Platforms": "1.0.1",
  2549. "System.Collections": "4.0.11",
  2550. "System.Diagnostics.Debug": "4.0.11",
  2551. "System.Globalization": "4.0.11",
  2552. "System.Globalization.Calendars": "4.0.1",
  2553. "System.IO": "4.1.0",
  2554. "System.IO.FileSystem": "4.0.1",
  2555. "System.IO.FileSystem.Primitives": "4.0.1",
  2556. "System.Resources.ResourceManager": "4.0.1",
  2557. "System.Runtime": "4.1.0",
  2558. "System.Runtime.Extensions": "4.1.0",
  2559. "System.Runtime.Handles": "4.0.1",
  2560. "System.Runtime.InteropServices": "4.1.0",
  2561. "System.Runtime.Numerics": "4.0.1",
  2562. "System.Security.Cryptography.Algorithms": "4.2.0",
  2563. "System.Security.Cryptography.Cng": "4.2.0",
  2564. "System.Security.Cryptography.Csp": "4.0.0",
  2565. "System.Security.Cryptography.Encoding": "4.0.0",
  2566. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2567. "System.Security.Cryptography.Primitives": "4.0.0",
  2568. "System.Text.Encoding": "4.0.11",
  2569. "System.Threading": "4.0.11",
  2570. "runtime.native.System": "4.0.0",
  2571. "runtime.native.System.Net.Http": "4.0.1",
  2572. "runtime.native.System.Security.Cryptography": "4.0.0"
  2573. },
  2574. "compile": {
  2575. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2576. "related": ".xml"
  2577. }
  2578. },
  2579. "runtimeTargets": {
  2580. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2581. "assetType": "runtime",
  2582. "rid": "unix"
  2583. },
  2584. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2585. "assetType": "runtime",
  2586. "rid": "win"
  2587. }
  2588. }
  2589. },
  2590. "System.Security.Permissions/6.0.0": {
  2591. "type": "package",
  2592. "dependencies": {
  2593. "System.Security.AccessControl": "6.0.0",
  2594. "System.Windows.Extensions": "6.0.0"
  2595. },
  2596. "compile": {
  2597. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  2598. "related": ".xml"
  2599. }
  2600. },
  2601. "runtime": {
  2602. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  2603. "related": ".xml"
  2604. }
  2605. },
  2606. "build": {
  2607. "buildTransitive/netcoreapp3.1/_._": {}
  2608. }
  2609. },
  2610. "System.Security.Principal.Windows/5.0.0": {
  2611. "type": "package",
  2612. "compile": {
  2613. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2614. "related": ".xml"
  2615. }
  2616. },
  2617. "runtime": {
  2618. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2619. "related": ".xml"
  2620. }
  2621. },
  2622. "runtimeTargets": {
  2623. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2624. "assetType": "runtime",
  2625. "rid": "unix"
  2626. },
  2627. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2628. "assetType": "runtime",
  2629. "rid": "win"
  2630. }
  2631. }
  2632. },
  2633. "System.ServiceProcess.ServiceController/8.0.0": {
  2634. "type": "package",
  2635. "dependencies": {
  2636. "System.Diagnostics.EventLog": "8.0.0"
  2637. },
  2638. "compile": {
  2639. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2640. "related": ".xml"
  2641. }
  2642. },
  2643. "runtime": {
  2644. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2645. "related": ".xml"
  2646. }
  2647. },
  2648. "build": {
  2649. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  2650. }
  2651. },
  2652. "System.Text.Encoding/4.3.0": {
  2653. "type": "package",
  2654. "dependencies": {
  2655. "Microsoft.NETCore.Platforms": "1.1.0",
  2656. "Microsoft.NETCore.Targets": "1.1.0",
  2657. "System.Runtime": "4.3.0"
  2658. },
  2659. "compile": {
  2660. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2661. "related": ".xml"
  2662. }
  2663. }
  2664. },
  2665. "System.Text.Encoding.CodePages/4.5.1": {
  2666. "type": "package",
  2667. "dependencies": {
  2668. "Microsoft.NETCore.Platforms": "2.1.2",
  2669. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2670. },
  2671. "compile": {
  2672. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2673. },
  2674. "runtime": {
  2675. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2676. },
  2677. "runtimeTargets": {
  2678. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2679. "assetType": "runtime",
  2680. "rid": "win"
  2681. }
  2682. }
  2683. },
  2684. "System.Text.Encoding.Extensions/4.0.11": {
  2685. "type": "package",
  2686. "dependencies": {
  2687. "Microsoft.NETCore.Platforms": "1.0.1",
  2688. "Microsoft.NETCore.Targets": "1.0.1",
  2689. "System.Runtime": "4.1.0",
  2690. "System.Text.Encoding": "4.0.11"
  2691. },
  2692. "compile": {
  2693. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2694. "related": ".xml"
  2695. }
  2696. }
  2697. },
  2698. "System.Text.Encodings.Web/8.0.0": {
  2699. "type": "package",
  2700. "dependencies": {
  2701. "System.Buffers": "4.5.1",
  2702. "System.Memory": "4.5.5",
  2703. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2704. },
  2705. "compile": {
  2706. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2707. "related": ".xml"
  2708. }
  2709. },
  2710. "runtime": {
  2711. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "build": {
  2716. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  2717. }
  2718. },
  2719. "System.Text.Json/8.0.0": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  2723. "System.Buffers": "4.5.1",
  2724. "System.Memory": "4.5.5",
  2725. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2726. "System.Text.Encodings.Web": "8.0.0",
  2727. "System.Threading.Tasks.Extensions": "4.5.4"
  2728. },
  2729. "compile": {
  2730. "lib/netstandard2.0/System.Text.Json.dll": {
  2731. "related": ".xml"
  2732. }
  2733. },
  2734. "runtime": {
  2735. "lib/netstandard2.0/System.Text.Json.dll": {
  2736. "related": ".xml"
  2737. }
  2738. },
  2739. "build": {
  2740. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  2741. }
  2742. },
  2743. "System.Text.RegularExpressions/4.1.0": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "System.Collections": "4.0.11",
  2747. "System.Globalization": "4.0.11",
  2748. "System.Resources.ResourceManager": "4.0.1",
  2749. "System.Runtime": "4.1.0",
  2750. "System.Runtime.Extensions": "4.1.0",
  2751. "System.Threading": "4.0.11"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  2755. "related": ".xml"
  2756. }
  2757. },
  2758. "runtime": {
  2759. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2760. }
  2761. },
  2762. "System.Threading/4.0.11": {
  2763. "type": "package",
  2764. "dependencies": {
  2765. "System.Runtime": "4.1.0",
  2766. "System.Threading.Tasks": "4.0.11"
  2767. },
  2768. "compile": {
  2769. "ref/netstandard1.3/System.Threading.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/netstandard1.3/System.Threading.dll": {}
  2775. }
  2776. },
  2777. "System.Threading.Tasks/4.3.0": {
  2778. "type": "package",
  2779. "dependencies": {
  2780. "Microsoft.NETCore.Platforms": "1.1.0",
  2781. "Microsoft.NETCore.Targets": "1.1.0",
  2782. "System.Runtime": "4.3.0"
  2783. },
  2784. "compile": {
  2785. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2786. "related": ".xml"
  2787. }
  2788. }
  2789. },
  2790. "System.Threading.Tasks.Extensions/4.5.4": {
  2791. "type": "package",
  2792. "compile": {
  2793. "ref/netcoreapp2.1/_._": {}
  2794. },
  2795. "runtime": {
  2796. "lib/netcoreapp2.1/_._": {}
  2797. }
  2798. },
  2799. "System.Threading.Thread/4.0.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Runtime": "4.1.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2806. "related": ".xml"
  2807. }
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2811. }
  2812. },
  2813. "System.Threading.ThreadPool/4.0.10": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Runtime": "4.1.0",
  2817. "System.Runtime.Handles": "4.0.1"
  2818. },
  2819. "compile": {
  2820. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "runtime": {
  2825. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2826. }
  2827. },
  2828. "System.Threading.Timer/4.0.1": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "Microsoft.NETCore.Platforms": "1.0.1",
  2832. "Microsoft.NETCore.Targets": "1.0.1",
  2833. "System.Runtime": "4.1.0"
  2834. },
  2835. "compile": {
  2836. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2837. "related": ".xml"
  2838. }
  2839. }
  2840. },
  2841. "System.Windows.Extensions/6.0.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Drawing.Common": "6.0.0"
  2845. },
  2846. "compile": {
  2847. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2848. "related": ".xml"
  2849. }
  2850. },
  2851. "runtime": {
  2852. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2853. "related": ".xml"
  2854. }
  2855. },
  2856. "runtimeTargets": {
  2857. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2858. "assetType": "runtime",
  2859. "rid": "win"
  2860. }
  2861. }
  2862. },
  2863. "System.Xml.ReaderWriter/4.0.11": {
  2864. "type": "package",
  2865. "dependencies": {
  2866. "System.Collections": "4.0.11",
  2867. "System.Diagnostics.Debug": "4.0.11",
  2868. "System.Globalization": "4.0.11",
  2869. "System.IO": "4.1.0",
  2870. "System.IO.FileSystem": "4.0.1",
  2871. "System.IO.FileSystem.Primitives": "4.0.1",
  2872. "System.Resources.ResourceManager": "4.0.1",
  2873. "System.Runtime": "4.1.0",
  2874. "System.Runtime.Extensions": "4.1.0",
  2875. "System.Runtime.InteropServices": "4.1.0",
  2876. "System.Text.Encoding": "4.0.11",
  2877. "System.Text.Encoding.Extensions": "4.0.11",
  2878. "System.Text.RegularExpressions": "4.1.0",
  2879. "System.Threading.Tasks": "4.0.11",
  2880. "System.Threading.Tasks.Extensions": "4.0.0"
  2881. },
  2882. "compile": {
  2883. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2884. "related": ".xml"
  2885. }
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2889. }
  2890. },
  2891. "System.Xml.XDocument/4.0.11": {
  2892. "type": "package",
  2893. "dependencies": {
  2894. "System.Collections": "4.0.11",
  2895. "System.Diagnostics.Debug": "4.0.11",
  2896. "System.Diagnostics.Tools": "4.0.1",
  2897. "System.Globalization": "4.0.11",
  2898. "System.IO": "4.1.0",
  2899. "System.Reflection": "4.1.0",
  2900. "System.Resources.ResourceManager": "4.0.1",
  2901. "System.Runtime": "4.1.0",
  2902. "System.Runtime.Extensions": "4.1.0",
  2903. "System.Text.Encoding": "4.0.11",
  2904. "System.Threading": "4.0.11",
  2905. "System.Xml.ReaderWriter": "4.0.11"
  2906. },
  2907. "compile": {
  2908. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtime": {
  2913. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2914. }
  2915. },
  2916. "System.Xml.XmlDocument/4.0.1": {
  2917. "type": "package",
  2918. "dependencies": {
  2919. "System.Collections": "4.0.11",
  2920. "System.Diagnostics.Debug": "4.0.11",
  2921. "System.Globalization": "4.0.11",
  2922. "System.IO": "4.1.0",
  2923. "System.Resources.ResourceManager": "4.0.1",
  2924. "System.Runtime": "4.1.0",
  2925. "System.Runtime.Extensions": "4.1.0",
  2926. "System.Text.Encoding": "4.0.11",
  2927. "System.Threading": "4.0.11",
  2928. "System.Xml.ReaderWriter": "4.0.11"
  2929. },
  2930. "compile": {
  2931. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2932. "related": ".xml"
  2933. }
  2934. },
  2935. "runtime": {
  2936. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2937. }
  2938. },
  2939. "System.Xml.XPath/4.0.1": {
  2940. "type": "package",
  2941. "dependencies": {
  2942. "System.Collections": "4.0.11",
  2943. "System.Diagnostics.Debug": "4.0.11",
  2944. "System.Globalization": "4.0.11",
  2945. "System.IO": "4.1.0",
  2946. "System.Resources.ResourceManager": "4.0.1",
  2947. "System.Runtime": "4.1.0",
  2948. "System.Runtime.Extensions": "4.1.0",
  2949. "System.Threading": "4.0.11",
  2950. "System.Xml.ReaderWriter": "4.0.11"
  2951. },
  2952. "compile": {
  2953. "ref/netstandard1.3/System.Xml.XPath.dll": {
  2954. "related": ".xml"
  2955. }
  2956. },
  2957. "runtime": {
  2958. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2959. }
  2960. },
  2961. "System.Xml.XPath.XmlDocument/4.0.1": {
  2962. "type": "package",
  2963. "dependencies": {
  2964. "System.Collections": "4.0.11",
  2965. "System.Globalization": "4.0.11",
  2966. "System.IO": "4.1.0",
  2967. "System.Resources.ResourceManager": "4.0.1",
  2968. "System.Runtime": "4.1.0",
  2969. "System.Runtime.Extensions": "4.1.0",
  2970. "System.Threading": "4.0.11",
  2971. "System.Xml.ReaderWriter": "4.0.11",
  2972. "System.Xml.XPath": "4.0.1",
  2973. "System.Xml.XmlDocument": "4.0.1"
  2974. },
  2975. "compile": {
  2976. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2977. "related": ".xml"
  2978. }
  2979. },
  2980. "runtime": {
  2981. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2982. }
  2983. }
  2984. },
  2985. ".NETCoreApp,Version=v3.1/win-x64": {
  2986. "AutoMapper/12.0.1": {
  2987. "type": "package",
  2988. "dependencies": {
  2989. "Microsoft.CSharp": "4.7.0"
  2990. },
  2991. "compile": {
  2992. "lib/netstandard2.1/AutoMapper.dll": {
  2993. "related": ".xml"
  2994. }
  2995. },
  2996. "runtime": {
  2997. "lib/netstandard2.1/AutoMapper.dll": {
  2998. "related": ".xml"
  2999. }
  3000. }
  3001. },
  3002. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "AutoMapper": "[12.0.1]",
  3006. "Microsoft.Extensions.Options": "6.0.0"
  3007. },
  3008. "compile": {
  3009. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  3010. },
  3011. "runtime": {
  3012. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  3013. }
  3014. },
  3015. "BouncyCastle.NetCore/1.8.3": {
  3016. "type": "package",
  3017. "dependencies": {
  3018. "NETStandard.Library": "1.6.0",
  3019. "System.Reflection": "4.3.0",
  3020. "System.Reflection.TypeExtensions": "4.1.0"
  3021. },
  3022. "compile": {
  3023. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  3024. "related": ".xml"
  3025. }
  3026. },
  3027. "runtime": {
  3028. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  3029. "related": ".xml"
  3030. }
  3031. }
  3032. },
  3033. "Flurl/4.0.0": {
  3034. "type": "package",
  3035. "compile": {
  3036. "lib/netstandard2.0/Flurl.dll": {
  3037. "related": ".xml"
  3038. }
  3039. },
  3040. "runtime": {
  3041. "lib/netstandard2.0/Flurl.dll": {
  3042. "related": ".xml"
  3043. }
  3044. }
  3045. },
  3046. "Flurl.Http/4.0.2": {
  3047. "type": "package",
  3048. "dependencies": {
  3049. "Flurl": "4.0.0",
  3050. "System.Text.Encoding.CodePages": "4.5.1",
  3051. "System.Text.Json": "6.0.4"
  3052. },
  3053. "compile": {
  3054. "lib/netstandard2.0/Flurl.Http.dll": {
  3055. "related": ".xml"
  3056. }
  3057. },
  3058. "runtime": {
  3059. "lib/netstandard2.0/Flurl.Http.dll": {
  3060. "related": ".xml"
  3061. }
  3062. }
  3063. },
  3064. "Google.Protobuf/3.11.4": {
  3065. "type": "package",
  3066. "dependencies": {
  3067. "System.Memory": "4.5.2"
  3068. },
  3069. "compile": {
  3070. "lib/netstandard2.0/Google.Protobuf.dll": {
  3071. "related": ".pdb;.xml"
  3072. }
  3073. },
  3074. "runtime": {
  3075. "lib/netstandard2.0/Google.Protobuf.dll": {
  3076. "related": ".pdb;.xml"
  3077. }
  3078. }
  3079. },
  3080. "K4os.Compression.LZ4/1.1.11": {
  3081. "type": "package",
  3082. "dependencies": {
  3083. "System.Memory": "4.5.3"
  3084. },
  3085. "compile": {
  3086. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  3087. "related": ".xml"
  3088. }
  3089. },
  3090. "runtime": {
  3091. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  3092. "related": ".xml"
  3093. }
  3094. }
  3095. },
  3096. "K4os.Compression.LZ4.Streams/1.1.11": {
  3097. "type": "package",
  3098. "dependencies": {
  3099. "K4os.Compression.LZ4": "1.1.11",
  3100. "K4os.Hash.xxHash": "1.0.6"
  3101. },
  3102. "compile": {
  3103. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  3104. "related": ".xml"
  3105. }
  3106. },
  3107. "runtime": {
  3108. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  3109. "related": ".xml"
  3110. }
  3111. }
  3112. },
  3113. "K4os.Hash.xxHash/1.0.6": {
  3114. "type": "package",
  3115. "dependencies": {
  3116. "System.Memory": "4.5.3"
  3117. },
  3118. "compile": {
  3119. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  3120. "related": ".xml"
  3121. }
  3122. },
  3123. "runtime": {
  3124. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  3125. "related": ".xml"
  3126. }
  3127. }
  3128. },
  3129. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  3130. "type": "package",
  3131. "compile": {
  3132. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  3133. "related": ".xml"
  3134. }
  3135. },
  3136. "runtime": {
  3137. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  3138. "related": ".xml"
  3139. }
  3140. }
  3141. },
  3142. "Microsoft.Bcl.HashCode/1.1.0": {
  3143. "type": "package",
  3144. "compile": {
  3145. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  3146. },
  3147. "runtime": {
  3148. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
  3149. "related": ".xml"
  3150. }
  3151. }
  3152. },
  3153. "Microsoft.CSharp/4.7.0": {
  3154. "type": "package",
  3155. "compile": {
  3156. "ref/netcoreapp2.0/_._": {}
  3157. },
  3158. "runtime": {
  3159. "lib/netcoreapp2.0/_._": {}
  3160. }
  3161. },
  3162. "Microsoft.EntityFrameworkCore/3.1.1": {
  3163. "type": "package",
  3164. "dependencies": {
  3165. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  3166. "Microsoft.Bcl.HashCode": "1.1.0",
  3167. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  3168. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  3169. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  3170. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  3171. "Microsoft.Extensions.Logging": "3.1.1",
  3172. "System.Collections.Immutable": "1.7.0",
  3173. "System.ComponentModel.Annotations": "4.7.0",
  3174. "System.Diagnostics.DiagnosticSource": "4.7.0"
  3175. },
  3176. "compile": {
  3177. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  3178. "related": ".xml"
  3179. }
  3180. },
  3181. "runtime": {
  3182. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  3183. "related": ".xml"
  3184. }
  3185. }
  3186. },
  3187. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  3188. "type": "package",
  3189. "compile": {
  3190. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  3191. "related": ".xml"
  3192. }
  3193. },
  3194. "runtime": {
  3195. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  3196. "related": ".xml"
  3197. }
  3198. }
  3199. },
  3200. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  3201. "type": "package",
  3202. "compile": {
  3203. "lib/netstandard2.0/_._": {}
  3204. },
  3205. "runtime": {
  3206. "lib/netstandard2.0/_._": {}
  3207. }
  3208. },
  3209. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  3210. "type": "package",
  3211. "dependencies": {
  3212. "Microsoft.EntityFrameworkCore": "3.1.1"
  3213. },
  3214. "compile": {
  3215. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  3216. "related": ".xml"
  3217. }
  3218. },
  3219. "runtime": {
  3220. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  3221. "related": ".xml"
  3222. }
  3223. }
  3224. },
  3225. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  3226. "type": "package",
  3227. "build": {
  3228. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  3229. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  3230. },
  3231. "buildMultiTargeting": {
  3232. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  3233. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  3234. }
  3235. },
  3236. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  3237. "type": "package",
  3238. "dependencies": {
  3239. "Microsoft.Extensions.Primitives": "3.1.1"
  3240. },
  3241. "compile": {
  3242. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  3243. "related": ".xml"
  3244. }
  3245. },
  3246. "runtime": {
  3247. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  3248. "related": ".xml"
  3249. }
  3250. }
  3251. },
  3252. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  3253. "type": "package",
  3254. "dependencies": {
  3255. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  3256. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  3257. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  3258. "Microsoft.Extensions.Options": "3.1.1"
  3259. },
  3260. "compile": {
  3261. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  3262. "related": ".xml"
  3263. }
  3264. },
  3265. "runtime": {
  3266. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  3267. "related": ".xml"
  3268. }
  3269. }
  3270. },
  3271. "Microsoft.Extensions.Configuration/8.0.0": {
  3272. "type": "package",
  3273. "dependencies": {
  3274. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3275. "Microsoft.Extensions.Primitives": "8.0.0"
  3276. },
  3277. "compile": {
  3278. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3279. "related": ".xml"
  3280. }
  3281. },
  3282. "runtime": {
  3283. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3284. "related": ".xml"
  3285. }
  3286. },
  3287. "build": {
  3288. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  3289. }
  3290. },
  3291. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  3292. "type": "package",
  3293. "dependencies": {
  3294. "Microsoft.Extensions.Primitives": "8.0.0"
  3295. },
  3296. "compile": {
  3297. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3298. "related": ".xml"
  3299. }
  3300. },
  3301. "runtime": {
  3302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3303. "related": ".xml"
  3304. }
  3305. },
  3306. "build": {
  3307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  3308. }
  3309. },
  3310. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  3311. "type": "package",
  3312. "dependencies": {
  3313. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3314. },
  3315. "compile": {
  3316. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3317. "related": ".xml"
  3318. }
  3319. },
  3320. "runtime": {
  3321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3322. "related": ".xml"
  3323. }
  3324. },
  3325. "build": {
  3326. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  3327. }
  3328. },
  3329. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  3330. "type": "package",
  3331. "dependencies": {
  3332. "Microsoft.Extensions.Configuration": "8.0.0",
  3333. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3334. },
  3335. "compile": {
  3336. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3337. "related": ".xml"
  3338. }
  3339. },
  3340. "runtime": {
  3341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3342. "related": ".xml"
  3343. }
  3344. },
  3345. "build": {
  3346. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  3347. }
  3348. },
  3349. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  3350. "type": "package",
  3351. "dependencies": {
  3352. "Microsoft.Extensions.Configuration": "8.0.0",
  3353. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3354. },
  3355. "compile": {
  3356. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3357. "related": ".xml"
  3358. }
  3359. },
  3360. "runtime": {
  3361. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3362. "related": ".xml"
  3363. }
  3364. },
  3365. "build": {
  3366. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  3367. }
  3368. },
  3369. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  3370. "type": "package",
  3371. "dependencies": {
  3372. "Microsoft.Extensions.Configuration": "8.0.0",
  3373. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3374. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3375. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  3376. "Microsoft.Extensions.Primitives": "8.0.0"
  3377. },
  3378. "compile": {
  3379. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3380. "related": ".xml"
  3381. }
  3382. },
  3383. "runtime": {
  3384. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3385. "related": ".xml"
  3386. }
  3387. },
  3388. "build": {
  3389. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  3390. }
  3391. },
  3392. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  3393. "type": "package",
  3394. "dependencies": {
  3395. "Microsoft.Extensions.Configuration": "8.0.0",
  3396. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3397. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  3398. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3399. "System.Text.Json": "8.0.0"
  3400. },
  3401. "compile": {
  3402. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  3403. "related": ".xml"
  3404. }
  3405. },
  3406. "runtime": {
  3407. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  3408. "related": ".xml"
  3409. }
  3410. },
  3411. "build": {
  3412. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  3413. }
  3414. },
  3415. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  3416. "type": "package",
  3417. "dependencies": {
  3418. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3419. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  3420. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3421. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  3422. },
  3423. "compile": {
  3424. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3425. "related": ".xml"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3430. "related": ".xml"
  3431. }
  3432. },
  3433. "build": {
  3434. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  3435. }
  3436. },
  3437. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  3438. "type": "package",
  3439. "dependencies": {
  3440. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  3441. },
  3442. "compile": {
  3443. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  3444. "related": ".xml"
  3445. }
  3446. },
  3447. "runtime": {
  3448. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  3449. "related": ".xml"
  3450. }
  3451. },
  3452. "build": {
  3453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  3454. }
  3455. },
  3456. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  3457. "type": "package",
  3458. "compile": {
  3459. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3460. "related": ".xml"
  3461. }
  3462. },
  3463. "runtime": {
  3464. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3465. "related": ".xml"
  3466. }
  3467. },
  3468. "build": {
  3469. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  3470. }
  3471. },
  3472. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3473. "type": "package",
  3474. "dependencies": {
  3475. "System.Text.Json": "4.7.2"
  3476. },
  3477. "compile": {
  3478. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  3479. "related": ".xml"
  3480. }
  3481. },
  3482. "runtime": {
  3483. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  3484. "related": ".xml"
  3485. }
  3486. }
  3487. },
  3488. "Microsoft.Extensions.Diagnostics/8.0.0": {
  3489. "type": "package",
  3490. "dependencies": {
  3491. "Microsoft.Extensions.Configuration": "8.0.0",
  3492. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  3493. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  3494. },
  3495. "compile": {
  3496. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  3497. "related": ".xml"
  3498. }
  3499. },
  3500. "runtime": {
  3501. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  3502. "related": ".xml"
  3503. }
  3504. },
  3505. "build": {
  3506. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  3507. }
  3508. },
  3509. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  3510. "type": "package",
  3511. "dependencies": {
  3512. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3513. "Microsoft.Extensions.Options": "8.0.0",
  3514. "System.Buffers": "4.5.1",
  3515. "System.Diagnostics.DiagnosticSource": "8.0.0",
  3516. "System.Memory": "4.5.5"
  3517. },
  3518. "compile": {
  3519. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  3520. "related": ".xml"
  3521. }
  3522. },
  3523. "runtime": {
  3524. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  3525. "related": ".xml"
  3526. }
  3527. },
  3528. "build": {
  3529. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  3530. }
  3531. },
  3532. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  3533. "type": "package",
  3534. "dependencies": {
  3535. "Microsoft.Extensions.Primitives": "8.0.0"
  3536. },
  3537. "compile": {
  3538. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3539. "related": ".xml"
  3540. }
  3541. },
  3542. "runtime": {
  3543. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3544. "related": ".xml"
  3545. }
  3546. },
  3547. "build": {
  3548. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  3549. }
  3550. },
  3551. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  3552. "type": "package",
  3553. "dependencies": {
  3554. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3555. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  3556. "Microsoft.Extensions.Primitives": "8.0.0"
  3557. },
  3558. "compile": {
  3559. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3560. "related": ".xml"
  3561. }
  3562. },
  3563. "runtime": {
  3564. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3565. "related": ".xml"
  3566. }
  3567. },
  3568. "build": {
  3569. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  3570. }
  3571. },
  3572. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  3573. "type": "package",
  3574. "compile": {
  3575. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3576. "related": ".xml"
  3577. }
  3578. },
  3579. "runtime": {
  3580. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3581. "related": ".xml"
  3582. }
  3583. },
  3584. "build": {
  3585. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  3586. }
  3587. },
  3588. "Microsoft.Extensions.Hosting/8.0.0": {
  3589. "type": "package",
  3590. "dependencies": {
  3591. "Microsoft.Extensions.Configuration": "8.0.0",
  3592. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3593. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3594. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  3595. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  3596. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  3597. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  3598. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  3599. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  3600. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3601. "Microsoft.Extensions.Diagnostics": "8.0.0",
  3602. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3603. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  3604. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  3605. "Microsoft.Extensions.Logging": "8.0.0",
  3606. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3607. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  3608. "Microsoft.Extensions.Logging.Console": "8.0.0",
  3609. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  3610. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  3611. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  3612. "Microsoft.Extensions.Options": "8.0.0"
  3613. },
  3614. "compile": {
  3615. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  3616. "related": ".xml"
  3617. }
  3618. },
  3619. "runtime": {
  3620. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  3621. "related": ".xml"
  3622. }
  3623. },
  3624. "build": {
  3625. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  3626. }
  3627. },
  3628. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  3629. "type": "package",
  3630. "dependencies": {
  3631. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3632. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3633. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  3634. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3635. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  3636. },
  3637. "compile": {
  3638. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  3639. "related": ".xml"
  3640. }
  3641. },
  3642. "runtime": {
  3643. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  3644. "related": ".xml"
  3645. }
  3646. },
  3647. "build": {
  3648. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  3649. }
  3650. },
  3651. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  3652. "type": "package",
  3653. "dependencies": {
  3654. "Microsoft.Extensions.Hosting": "8.0.0",
  3655. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  3656. "System.ServiceProcess.ServiceController": "8.0.0"
  3657. },
  3658. "compile": {
  3659. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  3660. "related": ".xml"
  3661. }
  3662. },
  3663. "runtime": {
  3664. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  3665. "related": ".xml"
  3666. }
  3667. },
  3668. "build": {
  3669. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  3670. }
  3671. },
  3672. "Microsoft.Extensions.Logging/8.0.0": {
  3673. "type": "package",
  3674. "dependencies": {
  3675. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  3676. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3677. "Microsoft.Extensions.Options": "8.0.0",
  3678. "System.Diagnostics.DiagnosticSource": "8.0.0"
  3679. },
  3680. "compile": {
  3681. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  3682. "related": ".xml"
  3683. }
  3684. },
  3685. "runtime": {
  3686. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  3687. "related": ".xml"
  3688. }
  3689. },
  3690. "build": {
  3691. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  3692. }
  3693. },
  3694. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  3695. "type": "package",
  3696. "dependencies": {
  3697. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3698. "System.Buffers": "4.5.1",
  3699. "System.Memory": "4.5.5"
  3700. },
  3701. "compile": {
  3702. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  3703. "related": ".xml"
  3704. }
  3705. },
  3706. "runtime": {
  3707. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  3708. "related": ".xml"
  3709. }
  3710. },
  3711. "build": {
  3712. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  3713. }
  3714. },
  3715. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  3716. "type": "package",
  3717. "dependencies": {
  3718. "Microsoft.Extensions.Configuration": "8.0.0",
  3719. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3720. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3721. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3722. "Microsoft.Extensions.Logging": "8.0.0",
  3723. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3724. "Microsoft.Extensions.Options": "8.0.0",
  3725. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  3726. },
  3727. "compile": {
  3728. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  3729. "related": ".xml"
  3730. }
  3731. },
  3732. "runtime": {
  3733. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  3734. "related": ".xml"
  3735. }
  3736. },
  3737. "build": {
  3738. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  3739. }
  3740. },
  3741. "Microsoft.Extensions.Logging.Console/8.0.0": {
  3742. "type": "package",
  3743. "dependencies": {
  3744. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3745. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3746. "Microsoft.Extensions.Logging": "8.0.0",
  3747. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3748. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  3749. "Microsoft.Extensions.Options": "8.0.0",
  3750. "System.Buffers": "4.5.1",
  3751. "System.Text.Json": "8.0.0"
  3752. },
  3753. "compile": {
  3754. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  3755. "related": ".xml"
  3756. }
  3757. },
  3758. "runtime": {
  3759. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  3760. "related": ".xml"
  3761. }
  3762. },
  3763. "build": {
  3764. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  3765. }
  3766. },
  3767. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  3768. "type": "package",
  3769. "dependencies": {
  3770. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3771. "Microsoft.Extensions.Logging": "8.0.0",
  3772. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  3773. },
  3774. "compile": {
  3775. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  3776. "related": ".xml"
  3777. }
  3778. },
  3779. "runtime": {
  3780. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  3781. "related": ".xml"
  3782. }
  3783. },
  3784. "build": {
  3785. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  3786. }
  3787. },
  3788. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  3789. "type": "package",
  3790. "dependencies": {
  3791. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3792. "Microsoft.Extensions.Logging": "8.0.0",
  3793. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3794. "Microsoft.Extensions.Options": "8.0.0",
  3795. "System.Diagnostics.EventLog": "8.0.0"
  3796. },
  3797. "compile": {
  3798. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  3799. "related": ".xml"
  3800. }
  3801. },
  3802. "runtime": {
  3803. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  3804. "related": ".xml"
  3805. }
  3806. },
  3807. "build": {
  3808. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  3809. }
  3810. },
  3811. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  3812. "type": "package",
  3813. "dependencies": {
  3814. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3815. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3816. "Microsoft.Extensions.Logging": "8.0.0",
  3817. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3818. "Microsoft.Extensions.Options": "8.0.0",
  3819. "Microsoft.Extensions.Primitives": "8.0.0",
  3820. "System.Memory": "4.5.5",
  3821. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3822. "System.Text.Json": "8.0.0"
  3823. },
  3824. "compile": {
  3825. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  3826. "related": ".xml"
  3827. }
  3828. },
  3829. "runtime": {
  3830. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  3831. "related": ".xml"
  3832. }
  3833. },
  3834. "build": {
  3835. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  3836. }
  3837. },
  3838. "Microsoft.Extensions.Options/8.0.0": {
  3839. "type": "package",
  3840. "dependencies": {
  3841. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3842. "Microsoft.Extensions.Primitives": "8.0.0",
  3843. "System.ComponentModel.Annotations": "5.0.0"
  3844. },
  3845. "compile": {
  3846. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  3847. "related": ".xml"
  3848. }
  3849. },
  3850. "runtime": {
  3851. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  3852. "related": ".xml"
  3853. }
  3854. },
  3855. "build": {
  3856. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  3857. }
  3858. },
  3859. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  3860. "type": "package",
  3861. "dependencies": {
  3862. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3863. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3864. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3865. "Microsoft.Extensions.Options": "8.0.0",
  3866. "Microsoft.Extensions.Primitives": "8.0.0"
  3867. },
  3868. "compile": {
  3869. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  3870. "related": ".xml"
  3871. }
  3872. },
  3873. "runtime": {
  3874. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  3875. "related": ".xml"
  3876. }
  3877. },
  3878. "build": {
  3879. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  3880. }
  3881. },
  3882. "Microsoft.Extensions.Primitives/8.0.0": {
  3883. "type": "package",
  3884. "dependencies": {
  3885. "System.Memory": "4.5.5",
  3886. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3887. },
  3888. "compile": {
  3889. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  3890. "related": ".xml"
  3891. }
  3892. },
  3893. "runtime": {
  3894. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  3895. "related": ".xml"
  3896. }
  3897. },
  3898. "build": {
  3899. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  3900. }
  3901. },
  3902. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  3903. "type": "package",
  3904. "compile": {
  3905. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  3906. "related": ".xml"
  3907. }
  3908. },
  3909. "runtime": {
  3910. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  3911. "related": ".xml"
  3912. }
  3913. }
  3914. },
  3915. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  3916. "type": "package",
  3917. "dependencies": {
  3918. "Microsoft.IdentityModel.Tokens": "7.4.1",
  3919. "System.Text.Encodings.Web": "4.7.2",
  3920. "System.Text.Json": "4.7.2"
  3921. },
  3922. "compile": {
  3923. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  3924. "related": ".xml"
  3925. }
  3926. },
  3927. "runtime": {
  3928. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  3929. "related": ".xml"
  3930. }
  3931. }
  3932. },
  3933. "Microsoft.IdentityModel.Logging/7.4.1": {
  3934. "type": "package",
  3935. "dependencies": {
  3936. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  3937. },
  3938. "compile": {
  3939. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  3940. "related": ".xml"
  3941. }
  3942. },
  3943. "runtime": {
  3944. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  3945. "related": ".xml"
  3946. }
  3947. }
  3948. },
  3949. "Microsoft.IdentityModel.Tokens/7.4.1": {
  3950. "type": "package",
  3951. "dependencies": {
  3952. "Microsoft.CSharp": "4.5.0",
  3953. "Microsoft.IdentityModel.Logging": "7.4.1",
  3954. "System.Security.Cryptography.Cng": "4.5.0",
  3955. "System.Text.Encodings.Web": "4.7.2",
  3956. "System.Text.Json": "4.7.2"
  3957. },
  3958. "compile": {
  3959. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  3960. "related": ".xml"
  3961. }
  3962. },
  3963. "runtime": {
  3964. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  3965. "related": ".xml"
  3966. }
  3967. }
  3968. },
  3969. "Microsoft.NETCore.Platforms/2.1.2": {
  3970. "type": "package",
  3971. "compile": {
  3972. "lib/netstandard1.0/_._": {}
  3973. },
  3974. "runtime": {
  3975. "lib/netstandard1.0/_._": {}
  3976. }
  3977. },
  3978. "Microsoft.NETCore.Targets/3.0.0": {
  3979. "type": "package",
  3980. "compile": {
  3981. "lib/netstandard1.0/_._": {}
  3982. },
  3983. "runtime": {
  3984. "lib/netstandard1.0/_._": {}
  3985. }
  3986. },
  3987. "Microsoft.OpenApi/1.3.1": {
  3988. "type": "package",
  3989. "compile": {
  3990. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  3991. "related": ".pdb;.xml"
  3992. }
  3993. },
  3994. "runtime": {
  3995. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  3996. "related": ".pdb;.xml"
  3997. }
  3998. }
  3999. },
  4000. "Microsoft.Win32.Primitives/4.0.1": {
  4001. "type": "package",
  4002. "dependencies": {
  4003. "Microsoft.NETCore.Platforms": "1.0.1",
  4004. "Microsoft.NETCore.Targets": "1.0.1",
  4005. "System.Runtime": "4.1.0"
  4006. },
  4007. "compile": {
  4008. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  4009. "related": ".xml"
  4010. }
  4011. }
  4012. },
  4013. "Microsoft.Win32.SystemEvents/6.0.0": {
  4014. "type": "package",
  4015. "compile": {
  4016. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  4017. "related": ".xml"
  4018. }
  4019. },
  4020. "runtime": {
  4021. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  4022. "related": ".xml"
  4023. }
  4024. },
  4025. "build": {
  4026. "buildTransitive/netcoreapp3.1/_._": {}
  4027. }
  4028. },
  4029. "MySql.Data/8.0.22": {
  4030. "type": "package",
  4031. "dependencies": {
  4032. "BouncyCastle.NetCore": "1.8.3",
  4033. "Google.Protobuf": "3.11.4",
  4034. "K4os.Compression.LZ4": "1.1.11",
  4035. "K4os.Compression.LZ4.Streams": "1.1.11",
  4036. "K4os.Hash.xxHash": "1.0.6",
  4037. "SSH.NET": "2016.1.0",
  4038. "System.Buffers": "4.5.1",
  4039. "System.Configuration.ConfigurationManager": "4.4.1",
  4040. "System.Security.Permissions": "4.7.0",
  4041. "System.Text.Encoding.CodePages": "4.4.0"
  4042. },
  4043. "compile": {
  4044. "lib/netstandard2.1/MySql.Data.dll": {
  4045. "related": ".xml"
  4046. },
  4047. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  4048. "lib/netstandard2.1/Zstandard.Net.dll": {}
  4049. },
  4050. "runtime": {
  4051. "lib/netstandard2.1/MySql.Data.dll": {
  4052. "related": ".xml"
  4053. },
  4054. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  4055. "lib/netstandard2.1/Zstandard.Net.dll": {}
  4056. }
  4057. },
  4058. "MySql.Data.EntityFrameworkCore/8.0.22": {
  4059. "type": "package",
  4060. "dependencies": {
  4061. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  4062. "MySql.Data": "8.0.22"
  4063. },
  4064. "compile": {
  4065. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  4066. "related": ".xml"
  4067. }
  4068. },
  4069. "runtime": {
  4070. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  4071. "related": ".xml"
  4072. }
  4073. }
  4074. },
  4075. "NETStandard.Library/1.6.0": {
  4076. "type": "package",
  4077. "dependencies": {
  4078. "Microsoft.NETCore.Platforms": "1.0.1",
  4079. "Microsoft.Win32.Primitives": "4.0.1",
  4080. "System.AppContext": "4.1.0",
  4081. "System.Collections": "4.0.11",
  4082. "System.Collections.Concurrent": "4.0.12",
  4083. "System.Console": "4.0.0",
  4084. "System.Diagnostics.Debug": "4.0.11",
  4085. "System.Diagnostics.Tools": "4.0.1",
  4086. "System.Diagnostics.Tracing": "4.1.0",
  4087. "System.Globalization": "4.0.11",
  4088. "System.Globalization.Calendars": "4.0.1",
  4089. "System.IO": "4.1.0",
  4090. "System.IO.Compression": "4.1.0",
  4091. "System.IO.Compression.ZipFile": "4.0.1",
  4092. "System.IO.FileSystem": "4.0.1",
  4093. "System.IO.FileSystem.Primitives": "4.0.1",
  4094. "System.Linq": "4.1.0",
  4095. "System.Linq.Expressions": "4.1.0",
  4096. "System.Net.Http": "4.1.0",
  4097. "System.Net.Primitives": "4.0.11",
  4098. "System.Net.Sockets": "4.1.0",
  4099. "System.ObjectModel": "4.0.12",
  4100. "System.Reflection": "4.1.0",
  4101. "System.Reflection.Extensions": "4.0.1",
  4102. "System.Reflection.Primitives": "4.0.1",
  4103. "System.Resources.ResourceManager": "4.0.1",
  4104. "System.Runtime": "4.1.0",
  4105. "System.Runtime.Extensions": "4.1.0",
  4106. "System.Runtime.Handles": "4.0.1",
  4107. "System.Runtime.InteropServices": "4.1.0",
  4108. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  4109. "System.Runtime.Numerics": "4.0.1",
  4110. "System.Security.Cryptography.Algorithms": "4.2.0",
  4111. "System.Security.Cryptography.Encoding": "4.0.0",
  4112. "System.Security.Cryptography.Primitives": "4.0.0",
  4113. "System.Security.Cryptography.X509Certificates": "4.1.0",
  4114. "System.Text.Encoding": "4.0.11",
  4115. "System.Text.Encoding.Extensions": "4.0.11",
  4116. "System.Text.RegularExpressions": "4.1.0",
  4117. "System.Threading": "4.0.11",
  4118. "System.Threading.Tasks": "4.0.11",
  4119. "System.Threading.Timer": "4.0.1",
  4120. "System.Xml.ReaderWriter": "4.0.11",
  4121. "System.Xml.XDocument": "4.0.11"
  4122. }
  4123. },
  4124. "Newtonsoft.Json/13.0.3": {
  4125. "type": "package",
  4126. "compile": {
  4127. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  4128. "related": ".xml"
  4129. }
  4130. },
  4131. "runtime": {
  4132. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  4133. "related": ".xml"
  4134. }
  4135. }
  4136. },
  4137. "NLog/5.2.8": {
  4138. "type": "package",
  4139. "compile": {
  4140. "lib/netstandard2.0/NLog.dll": {
  4141. "related": ".xml"
  4142. }
  4143. },
  4144. "runtime": {
  4145. "lib/netstandard2.0/NLog.dll": {
  4146. "related": ".xml"
  4147. }
  4148. }
  4149. },
  4150. "NLog.Extensions.Logging/5.3.8": {
  4151. "type": "package",
  4152. "dependencies": {
  4153. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  4154. "Microsoft.Extensions.Logging": "3.1.0",
  4155. "NLog": "5.2.8"
  4156. },
  4157. "compile": {
  4158. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  4159. "related": ".xml"
  4160. }
  4161. },
  4162. "runtime": {
  4163. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  4164. "related": ".xml"
  4165. }
  4166. }
  4167. },
  4168. "NLog.Web.AspNetCore/5.3.8": {
  4169. "type": "package",
  4170. "dependencies": {
  4171. "NLog.Extensions.Logging": "5.3.8"
  4172. },
  4173. "compile": {
  4174. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  4175. "related": ".xml"
  4176. }
  4177. },
  4178. "runtime": {
  4179. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  4180. "related": ".xml"
  4181. }
  4182. },
  4183. "frameworkReferences": [
  4184. "Microsoft.AspNetCore.App"
  4185. ]
  4186. },
  4187. "Pipelines.Sockets.Unofficial/2.2.8": {
  4188. "type": "package",
  4189. "dependencies": {
  4190. "System.IO.Pipelines": "5.0.1"
  4191. },
  4192. "compile": {
  4193. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  4194. "related": ".xml"
  4195. }
  4196. },
  4197. "runtime": {
  4198. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  4199. "related": ".xml"
  4200. }
  4201. }
  4202. },
  4203. "Quartz/3.8.1": {
  4204. "type": "package",
  4205. "dependencies": {
  4206. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  4207. "System.Configuration.ConfigurationManager": "6.0.1",
  4208. "System.Diagnostics.DiagnosticSource": "4.7.1"
  4209. },
  4210. "compile": {
  4211. "lib/netstandard2.0/Quartz.dll": {
  4212. "related": ".xml"
  4213. }
  4214. },
  4215. "runtime": {
  4216. "lib/netstandard2.0/Quartz.dll": {
  4217. "related": ".xml"
  4218. }
  4219. }
  4220. },
  4221. "runtime.native.System/4.0.0": {
  4222. "type": "package",
  4223. "dependencies": {
  4224. "Microsoft.NETCore.Platforms": "1.0.1",
  4225. "Microsoft.NETCore.Targets": "1.0.1"
  4226. },
  4227. "compile": {
  4228. "lib/netstandard1.0/_._": {}
  4229. },
  4230. "runtime": {
  4231. "lib/netstandard1.0/_._": {}
  4232. }
  4233. },
  4234. "runtime.native.System.IO.Compression/4.1.0": {
  4235. "type": "package",
  4236. "dependencies": {
  4237. "Microsoft.NETCore.Platforms": "1.0.1",
  4238. "Microsoft.NETCore.Targets": "1.0.1"
  4239. },
  4240. "compile": {
  4241. "lib/netstandard1.0/_._": {}
  4242. },
  4243. "runtime": {
  4244. "lib/netstandard1.0/_._": {}
  4245. }
  4246. },
  4247. "runtime.native.System.Net.Http/4.0.1": {
  4248. "type": "package",
  4249. "dependencies": {
  4250. "Microsoft.NETCore.Platforms": "1.0.1",
  4251. "Microsoft.NETCore.Targets": "1.0.1"
  4252. },
  4253. "compile": {
  4254. "lib/netstandard1.0/_._": {}
  4255. },
  4256. "runtime": {
  4257. "lib/netstandard1.0/_._": {}
  4258. }
  4259. },
  4260. "runtime.native.System.Security.Cryptography/4.0.0": {
  4261. "type": "package",
  4262. "dependencies": {
  4263. "Microsoft.NETCore.Platforms": "1.0.1",
  4264. "Microsoft.NETCore.Targets": "1.0.1"
  4265. },
  4266. "compile": {
  4267. "lib/netstandard1.0/_._": {}
  4268. },
  4269. "runtime": {
  4270. "lib/netstandard1.0/_._": {}
  4271. }
  4272. },
  4273. "Scrutor/3.3.0": {
  4274. "type": "package",
  4275. "dependencies": {
  4276. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  4277. "Microsoft.Extensions.DependencyModel": "3.1.6"
  4278. },
  4279. "compile": {
  4280. "lib/netcoreapp3.1/Scrutor.dll": {
  4281. "related": ".pdb;.xml"
  4282. }
  4283. },
  4284. "runtime": {
  4285. "lib/netcoreapp3.1/Scrutor.dll": {
  4286. "related": ".pdb;.xml"
  4287. }
  4288. }
  4289. },
  4290. "SSH.NET/2016.1.0": {
  4291. "type": "package",
  4292. "dependencies": {
  4293. "Microsoft.CSharp": "4.0.1",
  4294. "SshNet.Security.Cryptography": "[1.2.0]",
  4295. "System.Diagnostics.Debug": "4.0.11",
  4296. "System.Diagnostics.Tools": "4.0.1",
  4297. "System.Diagnostics.TraceSource": "4.0.0",
  4298. "System.Globalization": "4.0.11",
  4299. "System.IO": "4.1.0",
  4300. "System.IO.FileSystem": "4.0.1",
  4301. "System.IO.FileSystem.Primitives": "4.0.1",
  4302. "System.Linq": "4.1.0",
  4303. "System.Net.NameResolution": "4.0.0",
  4304. "System.Net.Sockets": "4.1.0",
  4305. "System.Reflection.Extensions": "4.0.1",
  4306. "System.Runtime.Extensions": "4.1.0",
  4307. "System.Security.Cryptography.Algorithms": "4.2.0",
  4308. "System.Text.RegularExpressions": "4.1.0",
  4309. "System.Threading": "4.0.11",
  4310. "System.Threading.Thread": "4.0.0",
  4311. "System.Threading.ThreadPool": "4.0.10",
  4312. "System.Threading.Timer": "4.0.1",
  4313. "System.Xml.XPath.XmlDocument": "4.0.1",
  4314. "System.Xml.XmlDocument": "4.0.1"
  4315. },
  4316. "compile": {
  4317. "lib/netstandard1.3/Renci.SshNet.dll": {
  4318. "related": ".xml"
  4319. }
  4320. },
  4321. "runtime": {
  4322. "lib/netstandard1.3/Renci.SshNet.dll": {
  4323. "related": ".xml"
  4324. }
  4325. }
  4326. },
  4327. "SshNet.Security.Cryptography/1.2.0": {
  4328. "type": "package",
  4329. "dependencies": {
  4330. "System.IO": "4.1.0",
  4331. "System.Security.Cryptography.Primitives": "4.0.0"
  4332. },
  4333. "compile": {
  4334. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  4335. "related": ".xml"
  4336. }
  4337. },
  4338. "runtime": {
  4339. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  4340. "related": ".xml"
  4341. }
  4342. }
  4343. },
  4344. "StackExchange.Redis/2.7.33": {
  4345. "type": "package",
  4346. "dependencies": {
  4347. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  4348. "Pipelines.Sockets.Unofficial": "2.2.8"
  4349. },
  4350. "compile": {
  4351. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  4352. "related": ".xml"
  4353. }
  4354. },
  4355. "runtime": {
  4356. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  4357. "related": ".xml"
  4358. }
  4359. }
  4360. },
  4361. "Swashbuckle.AspNetCore/6.5.0": {
  4362. "type": "package",
  4363. "dependencies": {
  4364. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  4365. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  4366. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  4367. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  4368. },
  4369. "build": {
  4370. "build/Swashbuckle.AspNetCore.props": {}
  4371. }
  4372. },
  4373. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  4374. "type": "package",
  4375. "dependencies": {
  4376. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  4377. "Microsoft.OpenApi": "1.3.1",
  4378. "Scrutor": "3.3.0",
  4379. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  4380. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  4381. },
  4382. "compile": {
  4383. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  4384. },
  4385. "runtime": {
  4386. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  4387. }
  4388. },
  4389. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  4390. "type": "package",
  4391. "compile": {
  4392. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  4393. },
  4394. "runtime": {
  4395. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  4396. }
  4397. },
  4398. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  4399. "type": "package",
  4400. "dependencies": {
  4401. "Microsoft.OpenApi": "1.2.3"
  4402. },
  4403. "compile": {
  4404. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  4405. "related": ".pdb;.xml"
  4406. }
  4407. },
  4408. "runtime": {
  4409. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  4410. "related": ".pdb;.xml"
  4411. }
  4412. },
  4413. "frameworkReferences": [
  4414. "Microsoft.AspNetCore.App"
  4415. ]
  4416. },
  4417. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  4418. "type": "package",
  4419. "dependencies": {
  4420. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  4421. },
  4422. "compile": {
  4423. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  4424. "related": ".pdb;.xml"
  4425. }
  4426. },
  4427. "runtime": {
  4428. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  4429. "related": ".pdb;.xml"
  4430. }
  4431. }
  4432. },
  4433. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  4434. "type": "package",
  4435. "compile": {
  4436. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  4437. "related": ".pdb;.xml"
  4438. }
  4439. },
  4440. "runtime": {
  4441. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  4442. "related": ".pdb;.xml"
  4443. }
  4444. },
  4445. "frameworkReferences": [
  4446. "Microsoft.AspNetCore.App"
  4447. ]
  4448. },
  4449. "System.AppContext/4.1.0": {
  4450. "type": "package",
  4451. "dependencies": {
  4452. "System.Runtime": "4.1.0"
  4453. },
  4454. "compile": {
  4455. "ref/netstandard1.6/System.AppContext.dll": {
  4456. "related": ".xml"
  4457. }
  4458. },
  4459. "runtime": {
  4460. "lib/netstandard1.6/System.AppContext.dll": {}
  4461. }
  4462. },
  4463. "System.Buffers/4.5.1": {
  4464. "type": "package",
  4465. "compile": {
  4466. "ref/netcoreapp2.0/_._": {}
  4467. },
  4468. "runtime": {
  4469. "lib/netcoreapp2.0/_._": {}
  4470. }
  4471. },
  4472. "System.Collections/4.0.11": {
  4473. "type": "package",
  4474. "dependencies": {
  4475. "Microsoft.NETCore.Platforms": "1.0.1",
  4476. "Microsoft.NETCore.Targets": "1.0.1",
  4477. "System.Runtime": "4.1.0"
  4478. },
  4479. "compile": {
  4480. "ref/netstandard1.3/System.Collections.dll": {
  4481. "related": ".xml"
  4482. }
  4483. }
  4484. },
  4485. "System.Collections.Concurrent/4.0.12": {
  4486. "type": "package",
  4487. "dependencies": {
  4488. "System.Collections": "4.0.11",
  4489. "System.Diagnostics.Debug": "4.0.11",
  4490. "System.Diagnostics.Tracing": "4.1.0",
  4491. "System.Globalization": "4.0.11",
  4492. "System.Reflection": "4.1.0",
  4493. "System.Resources.ResourceManager": "4.0.1",
  4494. "System.Runtime": "4.1.0",
  4495. "System.Runtime.Extensions": "4.1.0",
  4496. "System.Threading": "4.0.11",
  4497. "System.Threading.Tasks": "4.0.11"
  4498. },
  4499. "compile": {
  4500. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  4501. "related": ".xml"
  4502. }
  4503. },
  4504. "runtime": {
  4505. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  4506. }
  4507. },
  4508. "System.Collections.Immutable/1.7.0": {
  4509. "type": "package",
  4510. "compile": {
  4511. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4512. "related": ".xml"
  4513. }
  4514. },
  4515. "runtime": {
  4516. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4517. "related": ".xml"
  4518. }
  4519. }
  4520. },
  4521. "System.ComponentModel.Annotations/5.0.0": {
  4522. "type": "package",
  4523. "compile": {
  4524. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  4525. "related": ".xml"
  4526. }
  4527. },
  4528. "runtime": {
  4529. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  4530. "related": ".xml"
  4531. }
  4532. }
  4533. },
  4534. "System.Configuration.ConfigurationManager/6.0.1": {
  4535. "type": "package",
  4536. "dependencies": {
  4537. "System.Security.Cryptography.ProtectedData": "6.0.0",
  4538. "System.Security.Permissions": "6.0.0"
  4539. },
  4540. "compile": {
  4541. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  4542. "related": ".xml"
  4543. }
  4544. },
  4545. "runtime": {
  4546. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  4547. "related": ".xml"
  4548. }
  4549. },
  4550. "build": {
  4551. "buildTransitive/netcoreapp3.1/_._": {}
  4552. }
  4553. },
  4554. "System.Console/4.0.0": {
  4555. "type": "package",
  4556. "dependencies": {
  4557. "Microsoft.NETCore.Platforms": "1.0.1",
  4558. "Microsoft.NETCore.Targets": "1.0.1",
  4559. "System.IO": "4.1.0",
  4560. "System.Runtime": "4.1.0",
  4561. "System.Text.Encoding": "4.0.11"
  4562. },
  4563. "compile": {
  4564. "ref/netstandard1.3/System.Console.dll": {
  4565. "related": ".xml"
  4566. }
  4567. }
  4568. },
  4569. "System.Diagnostics.Debug/4.0.11": {
  4570. "type": "package",
  4571. "dependencies": {
  4572. "Microsoft.NETCore.Platforms": "1.0.1",
  4573. "Microsoft.NETCore.Targets": "1.0.1",
  4574. "System.Runtime": "4.1.0"
  4575. },
  4576. "compile": {
  4577. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  4578. "related": ".xml"
  4579. }
  4580. }
  4581. },
  4582. "System.Diagnostics.DiagnosticSource/8.0.0": {
  4583. "type": "package",
  4584. "dependencies": {
  4585. "System.Memory": "4.5.5",
  4586. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  4587. },
  4588. "compile": {
  4589. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  4590. "related": ".xml"
  4591. }
  4592. },
  4593. "runtime": {
  4594. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  4595. "related": ".xml"
  4596. }
  4597. },
  4598. "build": {
  4599. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  4600. }
  4601. },
  4602. "System.Diagnostics.EventLog/8.0.0": {
  4603. "type": "package",
  4604. "dependencies": {
  4605. "System.Security.Principal.Windows": "5.0.0"
  4606. },
  4607. "compile": {
  4608. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  4609. "related": ".xml"
  4610. }
  4611. },
  4612. "runtime": {
  4613. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  4614. "related": ".xml"
  4615. }
  4616. },
  4617. "build": {
  4618. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  4619. }
  4620. },
  4621. "System.Diagnostics.Tools/4.0.1": {
  4622. "type": "package",
  4623. "dependencies": {
  4624. "Microsoft.NETCore.Platforms": "1.0.1",
  4625. "Microsoft.NETCore.Targets": "1.0.1",
  4626. "System.Runtime": "4.1.0"
  4627. },
  4628. "compile": {
  4629. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  4630. "related": ".xml"
  4631. }
  4632. }
  4633. },
  4634. "System.Diagnostics.TraceSource/4.0.0": {
  4635. "type": "package",
  4636. "dependencies": {
  4637. "Microsoft.NETCore.Platforms": "1.0.1",
  4638. "System.Collections": "4.0.11",
  4639. "System.Diagnostics.Debug": "4.0.11",
  4640. "System.Globalization": "4.0.11",
  4641. "System.Resources.ResourceManager": "4.0.1",
  4642. "System.Runtime": "4.1.0",
  4643. "System.Runtime.Extensions": "4.1.0",
  4644. "System.Threading": "4.0.11",
  4645. "runtime.native.System": "4.0.0"
  4646. },
  4647. "compile": {
  4648. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  4649. "related": ".xml"
  4650. }
  4651. },
  4652. "runtime": {
  4653. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  4654. }
  4655. },
  4656. "System.Diagnostics.Tracing/4.1.0": {
  4657. "type": "package",
  4658. "dependencies": {
  4659. "Microsoft.NETCore.Platforms": "1.0.1",
  4660. "Microsoft.NETCore.Targets": "1.0.1",
  4661. "System.Runtime": "4.1.0"
  4662. },
  4663. "compile": {
  4664. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  4665. "related": ".xml"
  4666. }
  4667. }
  4668. },
  4669. "System.Drawing.Common/6.0.0": {
  4670. "type": "package",
  4671. "dependencies": {
  4672. "Microsoft.Win32.SystemEvents": "6.0.0"
  4673. },
  4674. "compile": {
  4675. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  4676. "related": ".xml"
  4677. }
  4678. },
  4679. "runtime": {
  4680. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  4681. "related": ".xml"
  4682. }
  4683. },
  4684. "build": {
  4685. "buildTransitive/netcoreapp3.1/_._": {}
  4686. }
  4687. },
  4688. "System.Globalization/4.0.11": {
  4689. "type": "package",
  4690. "dependencies": {
  4691. "Microsoft.NETCore.Platforms": "1.0.1",
  4692. "Microsoft.NETCore.Targets": "1.0.1",
  4693. "System.Runtime": "4.1.0"
  4694. },
  4695. "compile": {
  4696. "ref/netstandard1.3/System.Globalization.dll": {
  4697. "related": ".xml"
  4698. }
  4699. }
  4700. },
  4701. "System.Globalization.Calendars/4.0.1": {
  4702. "type": "package",
  4703. "dependencies": {
  4704. "Microsoft.NETCore.Platforms": "1.0.1",
  4705. "Microsoft.NETCore.Targets": "1.0.1",
  4706. "System.Globalization": "4.0.11",
  4707. "System.Runtime": "4.1.0"
  4708. },
  4709. "compile": {
  4710. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  4711. "related": ".xml"
  4712. }
  4713. }
  4714. },
  4715. "System.Globalization.Extensions/4.0.1": {
  4716. "type": "package",
  4717. "dependencies": {
  4718. "Microsoft.NETCore.Platforms": "1.0.1",
  4719. "System.Globalization": "4.0.11",
  4720. "System.Resources.ResourceManager": "4.0.1",
  4721. "System.Runtime": "4.1.0",
  4722. "System.Runtime.Extensions": "4.1.0",
  4723. "System.Runtime.InteropServices": "4.1.0"
  4724. },
  4725. "compile": {
  4726. "ref/netstandard1.3/_._": {
  4727. "related": ".xml"
  4728. }
  4729. },
  4730. "runtime": {
  4731. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
  4732. }
  4733. },
  4734. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  4735. "type": "package",
  4736. "dependencies": {
  4737. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  4738. "Microsoft.IdentityModel.Tokens": "7.4.1"
  4739. },
  4740. "compile": {
  4741. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  4742. "related": ".xml"
  4743. }
  4744. },
  4745. "runtime": {
  4746. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  4747. "related": ".xml"
  4748. }
  4749. }
  4750. },
  4751. "System.IO/4.3.0": {
  4752. "type": "package",
  4753. "dependencies": {
  4754. "Microsoft.NETCore.Platforms": "1.1.0",
  4755. "Microsoft.NETCore.Targets": "1.1.0",
  4756. "System.Runtime": "4.3.0",
  4757. "System.Text.Encoding": "4.3.0",
  4758. "System.Threading.Tasks": "4.3.0"
  4759. },
  4760. "compile": {
  4761. "ref/netstandard1.5/System.IO.dll": {
  4762. "related": ".xml"
  4763. }
  4764. }
  4765. },
  4766. "System.IO.Compression/4.1.0": {
  4767. "type": "package",
  4768. "dependencies": {
  4769. "Microsoft.NETCore.Platforms": "1.0.1",
  4770. "System.Collections": "4.0.11",
  4771. "System.Diagnostics.Debug": "4.0.11",
  4772. "System.IO": "4.1.0",
  4773. "System.Resources.ResourceManager": "4.0.1",
  4774. "System.Runtime": "4.1.0",
  4775. "System.Runtime.Extensions": "4.1.0",
  4776. "System.Runtime.Handles": "4.0.1",
  4777. "System.Runtime.InteropServices": "4.1.0",
  4778. "System.Text.Encoding": "4.0.11",
  4779. "System.Threading": "4.0.11",
  4780. "System.Threading.Tasks": "4.0.11",
  4781. "runtime.native.System": "4.0.0",
  4782. "runtime.native.System.IO.Compression": "4.1.0"
  4783. },
  4784. "compile": {
  4785. "ref/netstandard1.3/System.IO.Compression.dll": {
  4786. "related": ".xml"
  4787. }
  4788. },
  4789. "runtime": {
  4790. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
  4791. }
  4792. },
  4793. "System.IO.Compression.ZipFile/4.0.1": {
  4794. "type": "package",
  4795. "dependencies": {
  4796. "System.Buffers": "4.0.0",
  4797. "System.IO": "4.1.0",
  4798. "System.IO.Compression": "4.1.0",
  4799. "System.IO.FileSystem": "4.0.1",
  4800. "System.IO.FileSystem.Primitives": "4.0.1",
  4801. "System.Resources.ResourceManager": "4.0.1",
  4802. "System.Runtime": "4.1.0",
  4803. "System.Runtime.Extensions": "4.1.0",
  4804. "System.Text.Encoding": "4.0.11"
  4805. },
  4806. "compile": {
  4807. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  4808. "related": ".xml"
  4809. }
  4810. },
  4811. "runtime": {
  4812. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  4813. }
  4814. },
  4815. "System.IO.FileSystem/4.0.1": {
  4816. "type": "package",
  4817. "dependencies": {
  4818. "Microsoft.NETCore.Platforms": "1.0.1",
  4819. "Microsoft.NETCore.Targets": "1.0.1",
  4820. "System.IO": "4.1.0",
  4821. "System.IO.FileSystem.Primitives": "4.0.1",
  4822. "System.Runtime": "4.1.0",
  4823. "System.Runtime.Handles": "4.0.1",
  4824. "System.Text.Encoding": "4.0.11",
  4825. "System.Threading.Tasks": "4.0.11"
  4826. },
  4827. "compile": {
  4828. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  4829. "related": ".xml"
  4830. }
  4831. }
  4832. },
  4833. "System.IO.FileSystem.Primitives/4.0.1": {
  4834. "type": "package",
  4835. "dependencies": {
  4836. "System.Runtime": "4.1.0"
  4837. },
  4838. "compile": {
  4839. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  4840. "related": ".xml"
  4841. }
  4842. },
  4843. "runtime": {
  4844. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  4845. }
  4846. },
  4847. "System.IO.Pipelines/5.0.1": {
  4848. "type": "package",
  4849. "compile": {
  4850. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  4851. "related": ".xml"
  4852. }
  4853. },
  4854. "runtime": {
  4855. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  4856. "related": ".xml"
  4857. }
  4858. }
  4859. },
  4860. "System.Linq/4.1.0": {
  4861. "type": "package",
  4862. "dependencies": {
  4863. "System.Collections": "4.0.11",
  4864. "System.Diagnostics.Debug": "4.0.11",
  4865. "System.Resources.ResourceManager": "4.0.1",
  4866. "System.Runtime": "4.1.0",
  4867. "System.Runtime.Extensions": "4.1.0"
  4868. },
  4869. "compile": {
  4870. "ref/netstandard1.6/System.Linq.dll": {
  4871. "related": ".xml"
  4872. }
  4873. },
  4874. "runtime": {
  4875. "lib/netstandard1.6/System.Linq.dll": {}
  4876. }
  4877. },
  4878. "System.Linq.Expressions/4.1.0": {
  4879. "type": "package",
  4880. "dependencies": {
  4881. "System.Collections": "4.0.11",
  4882. "System.Diagnostics.Debug": "4.0.11",
  4883. "System.Globalization": "4.0.11",
  4884. "System.IO": "4.1.0",
  4885. "System.Linq": "4.1.0",
  4886. "System.ObjectModel": "4.0.12",
  4887. "System.Reflection": "4.1.0",
  4888. "System.Reflection.Emit": "4.0.1",
  4889. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4890. "System.Reflection.Emit.Lightweight": "4.0.1",
  4891. "System.Reflection.Extensions": "4.0.1",
  4892. "System.Reflection.Primitives": "4.0.1",
  4893. "System.Reflection.TypeExtensions": "4.1.0",
  4894. "System.Resources.ResourceManager": "4.0.1",
  4895. "System.Runtime": "4.1.0",
  4896. "System.Runtime.Extensions": "4.1.0",
  4897. "System.Threading": "4.0.11"
  4898. },
  4899. "compile": {
  4900. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  4901. "related": ".xml"
  4902. }
  4903. },
  4904. "runtime": {
  4905. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  4906. }
  4907. },
  4908. "System.Memory/4.5.5": {
  4909. "type": "package",
  4910. "compile": {
  4911. "ref/netcoreapp2.1/_._": {}
  4912. },
  4913. "runtime": {
  4914. "lib/netcoreapp2.1/_._": {}
  4915. }
  4916. },
  4917. "System.Net.Http/4.1.0": {
  4918. "type": "package",
  4919. "dependencies": {
  4920. "Microsoft.NETCore.Platforms": "1.0.1",
  4921. "System.Collections": "4.0.11",
  4922. "System.Diagnostics.Debug": "4.0.11",
  4923. "System.Diagnostics.DiagnosticSource": "4.0.0",
  4924. "System.Diagnostics.Tracing": "4.1.0",
  4925. "System.Globalization": "4.0.11",
  4926. "System.Globalization.Extensions": "4.0.1",
  4927. "System.IO": "4.1.0",
  4928. "System.IO.FileSystem": "4.0.1",
  4929. "System.Net.Primitives": "4.0.11",
  4930. "System.Resources.ResourceManager": "4.0.1",
  4931. "System.Runtime": "4.1.0",
  4932. "System.Runtime.Extensions": "4.1.0",
  4933. "System.Runtime.Handles": "4.0.1",
  4934. "System.Runtime.InteropServices": "4.1.0",
  4935. "System.Security.Cryptography.Algorithms": "4.2.0",
  4936. "System.Security.Cryptography.Encoding": "4.0.0",
  4937. "System.Security.Cryptography.OpenSsl": "4.0.0",
  4938. "System.Security.Cryptography.Primitives": "4.0.0",
  4939. "System.Security.Cryptography.X509Certificates": "4.1.0",
  4940. "System.Text.Encoding": "4.0.11",
  4941. "System.Threading": "4.0.11",
  4942. "System.Threading.Tasks": "4.0.11",
  4943. "runtime.native.System": "4.0.0",
  4944. "runtime.native.System.Net.Http": "4.0.1",
  4945. "runtime.native.System.Security.Cryptography": "4.0.0"
  4946. },
  4947. "compile": {
  4948. "ref/netstandard1.3/System.Net.Http.dll": {
  4949. "related": ".xml"
  4950. }
  4951. },
  4952. "runtime": {
  4953. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
  4954. }
  4955. },
  4956. "System.Net.NameResolution/4.0.0": {
  4957. "type": "package",
  4958. "dependencies": {
  4959. "Microsoft.NETCore.Platforms": "1.0.1",
  4960. "System.Collections": "4.0.11",
  4961. "System.Diagnostics.Tracing": "4.1.0",
  4962. "System.Globalization": "4.0.11",
  4963. "System.Net.Primitives": "4.0.11",
  4964. "System.Resources.ResourceManager": "4.0.1",
  4965. "System.Runtime": "4.1.0",
  4966. "System.Runtime.Extensions": "4.1.0",
  4967. "System.Runtime.Handles": "4.0.1",
  4968. "System.Runtime.InteropServices": "4.1.0",
  4969. "System.Security.Principal.Windows": "4.0.0",
  4970. "System.Threading": "4.0.11",
  4971. "System.Threading.Tasks": "4.0.11",
  4972. "runtime.native.System": "4.0.0"
  4973. },
  4974. "compile": {
  4975. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  4976. "related": ".xml"
  4977. }
  4978. },
  4979. "runtime": {
  4980. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
  4981. }
  4982. },
  4983. "System.Net.Primitives/4.0.11": {
  4984. "type": "package",
  4985. "dependencies": {
  4986. "Microsoft.NETCore.Platforms": "1.0.1",
  4987. "Microsoft.NETCore.Targets": "1.0.1",
  4988. "System.Runtime": "4.1.0",
  4989. "System.Runtime.Handles": "4.0.1"
  4990. },
  4991. "compile": {
  4992. "ref/netstandard1.3/System.Net.Primitives.dll": {
  4993. "related": ".xml"
  4994. }
  4995. }
  4996. },
  4997. "System.Net.Sockets/4.1.0": {
  4998. "type": "package",
  4999. "dependencies": {
  5000. "Microsoft.NETCore.Platforms": "1.0.1",
  5001. "Microsoft.NETCore.Targets": "1.0.1",
  5002. "System.IO": "4.1.0",
  5003. "System.Net.Primitives": "4.0.11",
  5004. "System.Runtime": "4.1.0",
  5005. "System.Threading.Tasks": "4.0.11"
  5006. },
  5007. "compile": {
  5008. "ref/netstandard1.3/System.Net.Sockets.dll": {
  5009. "related": ".xml"
  5010. }
  5011. }
  5012. },
  5013. "System.ObjectModel/4.0.12": {
  5014. "type": "package",
  5015. "dependencies": {
  5016. "System.Collections": "4.0.11",
  5017. "System.Diagnostics.Debug": "4.0.11",
  5018. "System.Resources.ResourceManager": "4.0.1",
  5019. "System.Runtime": "4.1.0",
  5020. "System.Threading": "4.0.11"
  5021. },
  5022. "compile": {
  5023. "ref/netstandard1.3/System.ObjectModel.dll": {
  5024. "related": ".xml"
  5025. }
  5026. },
  5027. "runtime": {
  5028. "lib/netstandard1.3/System.ObjectModel.dll": {}
  5029. }
  5030. },
  5031. "System.Reflection/4.3.0": {
  5032. "type": "package",
  5033. "dependencies": {
  5034. "Microsoft.NETCore.Platforms": "1.1.0",
  5035. "Microsoft.NETCore.Targets": "1.1.0",
  5036. "System.IO": "4.3.0",
  5037. "System.Reflection.Primitives": "4.3.0",
  5038. "System.Runtime": "4.3.0"
  5039. },
  5040. "compile": {
  5041. "ref/netstandard1.5/System.Reflection.dll": {
  5042. "related": ".xml"
  5043. }
  5044. }
  5045. },
  5046. "System.Reflection.Emit/4.0.1": {
  5047. "type": "package",
  5048. "dependencies": {
  5049. "System.IO": "4.1.0",
  5050. "System.Reflection": "4.1.0",
  5051. "System.Reflection.Emit.ILGeneration": "4.0.1",
  5052. "System.Reflection.Primitives": "4.0.1",
  5053. "System.Runtime": "4.1.0"
  5054. },
  5055. "compile": {
  5056. "ref/netstandard1.1/_._": {
  5057. "related": ".xml"
  5058. }
  5059. },
  5060. "runtime": {
  5061. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  5062. }
  5063. },
  5064. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5065. "type": "package",
  5066. "dependencies": {
  5067. "System.Reflection": "4.1.0",
  5068. "System.Reflection.Primitives": "4.0.1",
  5069. "System.Runtime": "4.1.0"
  5070. },
  5071. "compile": {
  5072. "ref/netstandard1.0/_._": {
  5073. "related": ".xml"
  5074. }
  5075. },
  5076. "runtime": {
  5077. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  5078. }
  5079. },
  5080. "System.Reflection.Emit.Lightweight/4.0.1": {
  5081. "type": "package",
  5082. "dependencies": {
  5083. "System.Reflection": "4.1.0",
  5084. "System.Reflection.Emit.ILGeneration": "4.0.1",
  5085. "System.Reflection.Primitives": "4.0.1",
  5086. "System.Runtime": "4.1.0"
  5087. },
  5088. "compile": {
  5089. "ref/netstandard1.0/_._": {
  5090. "related": ".xml"
  5091. }
  5092. },
  5093. "runtime": {
  5094. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  5095. }
  5096. },
  5097. "System.Reflection.Extensions/4.0.1": {
  5098. "type": "package",
  5099. "dependencies": {
  5100. "Microsoft.NETCore.Platforms": "1.0.1",
  5101. "Microsoft.NETCore.Targets": "1.0.1",
  5102. "System.Reflection": "4.1.0",
  5103. "System.Runtime": "4.1.0"
  5104. },
  5105. "compile": {
  5106. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  5107. "related": ".xml"
  5108. }
  5109. }
  5110. },
  5111. "System.Reflection.Primitives/4.3.0": {
  5112. "type": "package",
  5113. "dependencies": {
  5114. "Microsoft.NETCore.Platforms": "1.1.0",
  5115. "Microsoft.NETCore.Targets": "1.1.0",
  5116. "System.Runtime": "4.3.0"
  5117. },
  5118. "compile": {
  5119. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  5120. "related": ".xml"
  5121. }
  5122. }
  5123. },
  5124. "System.Reflection.TypeExtensions/4.1.0": {
  5125. "type": "package",
  5126. "dependencies": {
  5127. "System.Reflection": "4.1.0",
  5128. "System.Runtime": "4.1.0"
  5129. },
  5130. "compile": {
  5131. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  5132. "related": ".xml"
  5133. }
  5134. },
  5135. "runtime": {
  5136. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  5137. }
  5138. },
  5139. "System.Resources.ResourceManager/4.0.1": {
  5140. "type": "package",
  5141. "dependencies": {
  5142. "Microsoft.NETCore.Platforms": "1.0.1",
  5143. "Microsoft.NETCore.Targets": "1.0.1",
  5144. "System.Globalization": "4.0.11",
  5145. "System.Reflection": "4.1.0",
  5146. "System.Runtime": "4.1.0"
  5147. },
  5148. "compile": {
  5149. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  5150. "related": ".xml"
  5151. }
  5152. }
  5153. },
  5154. "System.Runtime/4.3.0": {
  5155. "type": "package",
  5156. "dependencies": {
  5157. "Microsoft.NETCore.Platforms": "1.1.0",
  5158. "Microsoft.NETCore.Targets": "1.1.0"
  5159. },
  5160. "compile": {
  5161. "ref/netstandard1.5/System.Runtime.dll": {
  5162. "related": ".xml"
  5163. }
  5164. }
  5165. },
  5166. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5167. "type": "package",
  5168. "compile": {
  5169. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  5170. "related": ".xml"
  5171. }
  5172. },
  5173. "runtime": {
  5174. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  5175. "related": ".xml"
  5176. }
  5177. },
  5178. "build": {
  5179. "buildTransitive/netcoreapp3.1/_._": {}
  5180. }
  5181. },
  5182. "System.Runtime.Extensions/4.1.0": {
  5183. "type": "package",
  5184. "dependencies": {
  5185. "Microsoft.NETCore.Platforms": "1.0.1",
  5186. "Microsoft.NETCore.Targets": "1.0.1",
  5187. "System.Runtime": "4.1.0"
  5188. },
  5189. "compile": {
  5190. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  5191. "related": ".xml"
  5192. }
  5193. }
  5194. },
  5195. "System.Runtime.Handles/4.0.1": {
  5196. "type": "package",
  5197. "dependencies": {
  5198. "Microsoft.NETCore.Platforms": "1.0.1",
  5199. "Microsoft.NETCore.Targets": "1.0.1",
  5200. "System.Runtime": "4.1.0"
  5201. },
  5202. "compile": {
  5203. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  5204. "related": ".xml"
  5205. }
  5206. }
  5207. },
  5208. "System.Runtime.InteropServices/4.1.0": {
  5209. "type": "package",
  5210. "dependencies": {
  5211. "Microsoft.NETCore.Platforms": "1.0.1",
  5212. "Microsoft.NETCore.Targets": "1.0.1",
  5213. "System.Reflection": "4.1.0",
  5214. "System.Reflection.Primitives": "4.0.1",
  5215. "System.Runtime": "4.1.0",
  5216. "System.Runtime.Handles": "4.0.1"
  5217. },
  5218. "compile": {
  5219. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  5220. "related": ".xml"
  5221. }
  5222. }
  5223. },
  5224. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5225. "type": "package",
  5226. "dependencies": {
  5227. "Microsoft.NETCore.Platforms": "1.0.1",
  5228. "System.Reflection": "4.1.0",
  5229. "System.Resources.ResourceManager": "4.0.1",
  5230. "System.Runtime": "4.1.0",
  5231. "System.Runtime.InteropServices": "4.1.0",
  5232. "System.Threading": "4.0.11",
  5233. "runtime.native.System": "4.0.0"
  5234. },
  5235. "compile": {
  5236. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  5237. },
  5238. "runtime": {
  5239. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  5240. }
  5241. },
  5242. "System.Runtime.Numerics/4.0.1": {
  5243. "type": "package",
  5244. "dependencies": {
  5245. "System.Globalization": "4.0.11",
  5246. "System.Resources.ResourceManager": "4.0.1",
  5247. "System.Runtime": "4.1.0",
  5248. "System.Runtime.Extensions": "4.1.0"
  5249. },
  5250. "compile": {
  5251. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  5252. "related": ".xml"
  5253. }
  5254. },
  5255. "runtime": {
  5256. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  5257. }
  5258. },
  5259. "System.Security.AccessControl/6.0.0": {
  5260. "type": "package",
  5261. "dependencies": {
  5262. "System.Security.Principal.Windows": "5.0.0"
  5263. },
  5264. "compile": {
  5265. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  5266. "related": ".xml"
  5267. }
  5268. },
  5269. "runtime": {
  5270. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  5271. "related": ".xml"
  5272. }
  5273. },
  5274. "build": {
  5275. "buildTransitive/netcoreapp3.1/_._": {}
  5276. }
  5277. },
  5278. "System.Security.Cryptography.Algorithms/4.2.0": {
  5279. "type": "package",
  5280. "dependencies": {
  5281. "Microsoft.NETCore.Platforms": "1.0.1",
  5282. "System.Collections": "4.0.11",
  5283. "System.IO": "4.1.0",
  5284. "System.Resources.ResourceManager": "4.0.1",
  5285. "System.Runtime": "4.1.0",
  5286. "System.Runtime.Extensions": "4.1.0",
  5287. "System.Runtime.Handles": "4.0.1",
  5288. "System.Runtime.InteropServices": "4.1.0",
  5289. "System.Runtime.Numerics": "4.0.1",
  5290. "System.Security.Cryptography.Encoding": "4.0.0",
  5291. "System.Security.Cryptography.Primitives": "4.0.0",
  5292. "System.Text.Encoding": "4.0.11",
  5293. "runtime.native.System.Security.Cryptography": "4.0.0"
  5294. },
  5295. "compile": {
  5296. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  5297. },
  5298. "runtime": {
  5299. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  5300. }
  5301. },
  5302. "System.Security.Cryptography.Cng/4.5.0": {
  5303. "type": "package",
  5304. "compile": {
  5305. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  5306. "related": ".xml"
  5307. }
  5308. },
  5309. "runtime": {
  5310. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  5311. }
  5312. },
  5313. "System.Security.Cryptography.Csp/4.0.0": {
  5314. "type": "package",
  5315. "dependencies": {
  5316. "Microsoft.NETCore.Platforms": "1.0.1",
  5317. "System.IO": "4.1.0",
  5318. "System.Reflection": "4.1.0",
  5319. "System.Resources.ResourceManager": "4.0.1",
  5320. "System.Runtime": "4.1.0",
  5321. "System.Runtime.Extensions": "4.1.0",
  5322. "System.Runtime.Handles": "4.0.1",
  5323. "System.Runtime.InteropServices": "4.1.0",
  5324. "System.Security.Cryptography.Algorithms": "4.2.0",
  5325. "System.Security.Cryptography.Encoding": "4.0.0",
  5326. "System.Security.Cryptography.Primitives": "4.0.0",
  5327. "System.Text.Encoding": "4.0.11",
  5328. "System.Threading": "4.0.11"
  5329. },
  5330. "compile": {
  5331. "ref/netstandard1.3/_._": {}
  5332. },
  5333. "runtime": {
  5334. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
  5335. }
  5336. },
  5337. "System.Security.Cryptography.Encoding/4.0.0": {
  5338. "type": "package",
  5339. "dependencies": {
  5340. "Microsoft.NETCore.Platforms": "1.0.1",
  5341. "System.Collections": "4.0.11",
  5342. "System.Collections.Concurrent": "4.0.12",
  5343. "System.Linq": "4.1.0",
  5344. "System.Resources.ResourceManager": "4.0.1",
  5345. "System.Runtime": "4.1.0",
  5346. "System.Runtime.Extensions": "4.1.0",
  5347. "System.Runtime.Handles": "4.0.1",
  5348. "System.Runtime.InteropServices": "4.1.0",
  5349. "System.Security.Cryptography.Primitives": "4.0.0",
  5350. "System.Text.Encoding": "4.0.11",
  5351. "runtime.native.System.Security.Cryptography": "4.0.0"
  5352. },
  5353. "compile": {
  5354. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  5355. "related": ".xml"
  5356. }
  5357. },
  5358. "runtime": {
  5359. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  5360. }
  5361. },
  5362. "System.Security.Cryptography.OpenSsl/4.0.0": {
  5363. "type": "package",
  5364. "dependencies": {
  5365. "System.Collections": "4.0.11",
  5366. "System.IO": "4.1.0",
  5367. "System.Resources.ResourceManager": "4.0.1",
  5368. "System.Runtime": "4.1.0",
  5369. "System.Runtime.Extensions": "4.1.0",
  5370. "System.Runtime.Handles": "4.0.1",
  5371. "System.Runtime.InteropServices": "4.1.0",
  5372. "System.Runtime.Numerics": "4.0.1",
  5373. "System.Security.Cryptography.Algorithms": "4.2.0",
  5374. "System.Security.Cryptography.Encoding": "4.0.0",
  5375. "System.Security.Cryptography.Primitives": "4.0.0",
  5376. "System.Text.Encoding": "4.0.11",
  5377. "runtime.native.System.Security.Cryptography": "4.0.0"
  5378. },
  5379. "compile": {
  5380. "ref/netstandard1.6/_._": {}
  5381. },
  5382. "runtime": {
  5383. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  5384. }
  5385. },
  5386. "System.Security.Cryptography.Primitives/4.0.0": {
  5387. "type": "package",
  5388. "dependencies": {
  5389. "System.Diagnostics.Debug": "4.0.11",
  5390. "System.Globalization": "4.0.11",
  5391. "System.IO": "4.1.0",
  5392. "System.Resources.ResourceManager": "4.0.1",
  5393. "System.Runtime": "4.1.0",
  5394. "System.Threading": "4.0.11",
  5395. "System.Threading.Tasks": "4.0.11"
  5396. },
  5397. "compile": {
  5398. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  5399. },
  5400. "runtime": {
  5401. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  5402. }
  5403. },
  5404. "System.Security.Cryptography.ProtectedData/6.0.0": {
  5405. "type": "package",
  5406. "dependencies": {
  5407. "System.Memory": "4.5.4"
  5408. },
  5409. "compile": {
  5410. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  5411. "related": ".xml"
  5412. }
  5413. },
  5414. "runtime": {
  5415. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  5416. "related": ".xml"
  5417. }
  5418. },
  5419. "build": {
  5420. "buildTransitive/netcoreapp3.1/_._": {}
  5421. }
  5422. },
  5423. "System.Security.Cryptography.X509Certificates/4.1.0": {
  5424. "type": "package",
  5425. "dependencies": {
  5426. "Microsoft.NETCore.Platforms": "1.0.1",
  5427. "System.Collections": "4.0.11",
  5428. "System.Diagnostics.Debug": "4.0.11",
  5429. "System.Globalization": "4.0.11",
  5430. "System.Globalization.Calendars": "4.0.1",
  5431. "System.IO": "4.1.0",
  5432. "System.IO.FileSystem": "4.0.1",
  5433. "System.IO.FileSystem.Primitives": "4.0.1",
  5434. "System.Resources.ResourceManager": "4.0.1",
  5435. "System.Runtime": "4.1.0",
  5436. "System.Runtime.Extensions": "4.1.0",
  5437. "System.Runtime.Handles": "4.0.1",
  5438. "System.Runtime.InteropServices": "4.1.0",
  5439. "System.Runtime.Numerics": "4.0.1",
  5440. "System.Security.Cryptography.Algorithms": "4.2.0",
  5441. "System.Security.Cryptography.Cng": "4.2.0",
  5442. "System.Security.Cryptography.Csp": "4.0.0",
  5443. "System.Security.Cryptography.Encoding": "4.0.0",
  5444. "System.Security.Cryptography.OpenSsl": "4.0.0",
  5445. "System.Security.Cryptography.Primitives": "4.0.0",
  5446. "System.Text.Encoding": "4.0.11",
  5447. "System.Threading": "4.0.11",
  5448. "runtime.native.System": "4.0.0",
  5449. "runtime.native.System.Net.Http": "4.0.1",
  5450. "runtime.native.System.Security.Cryptography": "4.0.0"
  5451. },
  5452. "compile": {
  5453. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  5454. "related": ".xml"
  5455. }
  5456. },
  5457. "runtime": {
  5458. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
  5459. }
  5460. },
  5461. "System.Security.Permissions/6.0.0": {
  5462. "type": "package",
  5463. "dependencies": {
  5464. "System.Security.AccessControl": "6.0.0",
  5465. "System.Windows.Extensions": "6.0.0"
  5466. },
  5467. "compile": {
  5468. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  5469. "related": ".xml"
  5470. }
  5471. },
  5472. "runtime": {
  5473. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  5474. "related": ".xml"
  5475. }
  5476. },
  5477. "build": {
  5478. "buildTransitive/netcoreapp3.1/_._": {}
  5479. }
  5480. },
  5481. "System.Security.Principal.Windows/5.0.0": {
  5482. "type": "package",
  5483. "compile": {
  5484. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  5485. "related": ".xml"
  5486. }
  5487. },
  5488. "runtime": {
  5489. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  5490. "related": ".xml"
  5491. }
  5492. }
  5493. },
  5494. "System.ServiceProcess.ServiceController/8.0.0": {
  5495. "type": "package",
  5496. "dependencies": {
  5497. "System.Diagnostics.EventLog": "8.0.0"
  5498. },
  5499. "compile": {
  5500. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  5501. "related": ".xml"
  5502. }
  5503. },
  5504. "runtime": {
  5505. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  5506. "related": ".xml"
  5507. }
  5508. },
  5509. "build": {
  5510. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  5511. }
  5512. },
  5513. "System.Text.Encoding/4.3.0": {
  5514. "type": "package",
  5515. "dependencies": {
  5516. "Microsoft.NETCore.Platforms": "1.1.0",
  5517. "Microsoft.NETCore.Targets": "1.1.0",
  5518. "System.Runtime": "4.3.0"
  5519. },
  5520. "compile": {
  5521. "ref/netstandard1.3/System.Text.Encoding.dll": {
  5522. "related": ".xml"
  5523. }
  5524. }
  5525. },
  5526. "System.Text.Encoding.CodePages/4.5.1": {
  5527. "type": "package",
  5528. "dependencies": {
  5529. "Microsoft.NETCore.Platforms": "2.1.2",
  5530. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  5531. },
  5532. "compile": {
  5533. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  5534. },
  5535. "runtime": {
  5536. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {}
  5537. }
  5538. },
  5539. "System.Text.Encoding.Extensions/4.0.11": {
  5540. "type": "package",
  5541. "dependencies": {
  5542. "Microsoft.NETCore.Platforms": "1.0.1",
  5543. "Microsoft.NETCore.Targets": "1.0.1",
  5544. "System.Runtime": "4.1.0",
  5545. "System.Text.Encoding": "4.0.11"
  5546. },
  5547. "compile": {
  5548. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  5549. "related": ".xml"
  5550. }
  5551. }
  5552. },
  5553. "System.Text.Encodings.Web/8.0.0": {
  5554. "type": "package",
  5555. "dependencies": {
  5556. "System.Buffers": "4.5.1",
  5557. "System.Memory": "4.5.5",
  5558. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  5559. },
  5560. "compile": {
  5561. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  5562. "related": ".xml"
  5563. }
  5564. },
  5565. "runtime": {
  5566. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  5567. "related": ".xml"
  5568. }
  5569. },
  5570. "build": {
  5571. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  5572. }
  5573. },
  5574. "System.Text.Json/8.0.0": {
  5575. "type": "package",
  5576. "dependencies": {
  5577. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  5578. "System.Buffers": "4.5.1",
  5579. "System.Memory": "4.5.5",
  5580. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  5581. "System.Text.Encodings.Web": "8.0.0",
  5582. "System.Threading.Tasks.Extensions": "4.5.4"
  5583. },
  5584. "compile": {
  5585. "lib/netstandard2.0/System.Text.Json.dll": {
  5586. "related": ".xml"
  5587. }
  5588. },
  5589. "runtime": {
  5590. "lib/netstandard2.0/System.Text.Json.dll": {
  5591. "related": ".xml"
  5592. }
  5593. },
  5594. "build": {
  5595. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  5596. }
  5597. },
  5598. "System.Text.RegularExpressions/4.1.0": {
  5599. "type": "package",
  5600. "dependencies": {
  5601. "System.Collections": "4.0.11",
  5602. "System.Globalization": "4.0.11",
  5603. "System.Resources.ResourceManager": "4.0.1",
  5604. "System.Runtime": "4.1.0",
  5605. "System.Runtime.Extensions": "4.1.0",
  5606. "System.Threading": "4.0.11"
  5607. },
  5608. "compile": {
  5609. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  5610. "related": ".xml"
  5611. }
  5612. },
  5613. "runtime": {
  5614. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  5615. }
  5616. },
  5617. "System.Threading/4.0.11": {
  5618. "type": "package",
  5619. "dependencies": {
  5620. "System.Runtime": "4.1.0",
  5621. "System.Threading.Tasks": "4.0.11"
  5622. },
  5623. "compile": {
  5624. "ref/netstandard1.3/System.Threading.dll": {
  5625. "related": ".xml"
  5626. }
  5627. },
  5628. "runtime": {
  5629. "lib/netstandard1.3/System.Threading.dll": {}
  5630. }
  5631. },
  5632. "System.Threading.Tasks/4.3.0": {
  5633. "type": "package",
  5634. "dependencies": {
  5635. "Microsoft.NETCore.Platforms": "1.1.0",
  5636. "Microsoft.NETCore.Targets": "1.1.0",
  5637. "System.Runtime": "4.3.0"
  5638. },
  5639. "compile": {
  5640. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  5641. "related": ".xml"
  5642. }
  5643. }
  5644. },
  5645. "System.Threading.Tasks.Extensions/4.5.4": {
  5646. "type": "package",
  5647. "compile": {
  5648. "ref/netcoreapp2.1/_._": {}
  5649. },
  5650. "runtime": {
  5651. "lib/netcoreapp2.1/_._": {}
  5652. }
  5653. },
  5654. "System.Threading.Thread/4.0.0": {
  5655. "type": "package",
  5656. "dependencies": {
  5657. "System.Runtime": "4.1.0"
  5658. },
  5659. "compile": {
  5660. "ref/netstandard1.3/System.Threading.Thread.dll": {
  5661. "related": ".xml"
  5662. }
  5663. },
  5664. "runtime": {
  5665. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  5666. }
  5667. },
  5668. "System.Threading.ThreadPool/4.0.10": {
  5669. "type": "package",
  5670. "dependencies": {
  5671. "System.Runtime": "4.1.0",
  5672. "System.Runtime.Handles": "4.0.1"
  5673. },
  5674. "compile": {
  5675. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  5676. "related": ".xml"
  5677. }
  5678. },
  5679. "runtime": {
  5680. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  5681. }
  5682. },
  5683. "System.Threading.Timer/4.0.1": {
  5684. "type": "package",
  5685. "dependencies": {
  5686. "Microsoft.NETCore.Platforms": "1.0.1",
  5687. "Microsoft.NETCore.Targets": "1.0.1",
  5688. "System.Runtime": "4.1.0"
  5689. },
  5690. "compile": {
  5691. "ref/netstandard1.2/System.Threading.Timer.dll": {
  5692. "related": ".xml"
  5693. }
  5694. }
  5695. },
  5696. "System.Windows.Extensions/6.0.0": {
  5697. "type": "package",
  5698. "dependencies": {
  5699. "System.Drawing.Common": "6.0.0"
  5700. },
  5701. "compile": {
  5702. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  5703. "related": ".xml"
  5704. }
  5705. },
  5706. "runtime": {
  5707. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  5708. "related": ".xml"
  5709. }
  5710. }
  5711. },
  5712. "System.Xml.ReaderWriter/4.0.11": {
  5713. "type": "package",
  5714. "dependencies": {
  5715. "System.Collections": "4.0.11",
  5716. "System.Diagnostics.Debug": "4.0.11",
  5717. "System.Globalization": "4.0.11",
  5718. "System.IO": "4.1.0",
  5719. "System.IO.FileSystem": "4.0.1",
  5720. "System.IO.FileSystem.Primitives": "4.0.1",
  5721. "System.Resources.ResourceManager": "4.0.1",
  5722. "System.Runtime": "4.1.0",
  5723. "System.Runtime.Extensions": "4.1.0",
  5724. "System.Runtime.InteropServices": "4.1.0",
  5725. "System.Text.Encoding": "4.0.11",
  5726. "System.Text.Encoding.Extensions": "4.0.11",
  5727. "System.Text.RegularExpressions": "4.1.0",
  5728. "System.Threading.Tasks": "4.0.11",
  5729. "System.Threading.Tasks.Extensions": "4.0.0"
  5730. },
  5731. "compile": {
  5732. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  5733. "related": ".xml"
  5734. }
  5735. },
  5736. "runtime": {
  5737. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  5738. }
  5739. },
  5740. "System.Xml.XDocument/4.0.11": {
  5741. "type": "package",
  5742. "dependencies": {
  5743. "System.Collections": "4.0.11",
  5744. "System.Diagnostics.Debug": "4.0.11",
  5745. "System.Diagnostics.Tools": "4.0.1",
  5746. "System.Globalization": "4.0.11",
  5747. "System.IO": "4.1.0",
  5748. "System.Reflection": "4.1.0",
  5749. "System.Resources.ResourceManager": "4.0.1",
  5750. "System.Runtime": "4.1.0",
  5751. "System.Runtime.Extensions": "4.1.0",
  5752. "System.Text.Encoding": "4.0.11",
  5753. "System.Threading": "4.0.11",
  5754. "System.Xml.ReaderWriter": "4.0.11"
  5755. },
  5756. "compile": {
  5757. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  5758. "related": ".xml"
  5759. }
  5760. },
  5761. "runtime": {
  5762. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  5763. }
  5764. },
  5765. "System.Xml.XmlDocument/4.0.1": {
  5766. "type": "package",
  5767. "dependencies": {
  5768. "System.Collections": "4.0.11",
  5769. "System.Diagnostics.Debug": "4.0.11",
  5770. "System.Globalization": "4.0.11",
  5771. "System.IO": "4.1.0",
  5772. "System.Resources.ResourceManager": "4.0.1",
  5773. "System.Runtime": "4.1.0",
  5774. "System.Runtime.Extensions": "4.1.0",
  5775. "System.Text.Encoding": "4.0.11",
  5776. "System.Threading": "4.0.11",
  5777. "System.Xml.ReaderWriter": "4.0.11"
  5778. },
  5779. "compile": {
  5780. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  5781. "related": ".xml"
  5782. }
  5783. },
  5784. "runtime": {
  5785. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  5786. }
  5787. },
  5788. "System.Xml.XPath/4.0.1": {
  5789. "type": "package",
  5790. "dependencies": {
  5791. "System.Collections": "4.0.11",
  5792. "System.Diagnostics.Debug": "4.0.11",
  5793. "System.Globalization": "4.0.11",
  5794. "System.IO": "4.1.0",
  5795. "System.Resources.ResourceManager": "4.0.1",
  5796. "System.Runtime": "4.1.0",
  5797. "System.Runtime.Extensions": "4.1.0",
  5798. "System.Threading": "4.0.11",
  5799. "System.Xml.ReaderWriter": "4.0.11"
  5800. },
  5801. "compile": {
  5802. "ref/netstandard1.3/System.Xml.XPath.dll": {
  5803. "related": ".xml"
  5804. }
  5805. },
  5806. "runtime": {
  5807. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  5808. }
  5809. },
  5810. "System.Xml.XPath.XmlDocument/4.0.1": {
  5811. "type": "package",
  5812. "dependencies": {
  5813. "System.Collections": "4.0.11",
  5814. "System.Globalization": "4.0.11",
  5815. "System.IO": "4.1.0",
  5816. "System.Resources.ResourceManager": "4.0.1",
  5817. "System.Runtime": "4.1.0",
  5818. "System.Runtime.Extensions": "4.1.0",
  5819. "System.Threading": "4.0.11",
  5820. "System.Xml.ReaderWriter": "4.0.11",
  5821. "System.Xml.XPath": "4.0.1",
  5822. "System.Xml.XmlDocument": "4.0.1"
  5823. },
  5824. "compile": {
  5825. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  5826. "related": ".xml"
  5827. }
  5828. },
  5829. "runtime": {
  5830. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  5831. }
  5832. }
  5833. }
  5834. },
  5835. "libraries": {
  5836. "AutoMapper/12.0.1": {
  5837. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  5838. "type": "package",
  5839. "path": "automapper/12.0.1",
  5840. "files": [
  5841. ".nupkg.metadata",
  5842. ".signature.p7s",
  5843. "README.md",
  5844. "automapper.12.0.1.nupkg.sha512",
  5845. "automapper.nuspec",
  5846. "icon.png",
  5847. "lib/netstandard2.1/AutoMapper.dll",
  5848. "lib/netstandard2.1/AutoMapper.xml"
  5849. ]
  5850. },
  5851. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  5852. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  5853. "type": "package",
  5854. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "README.md",
  5859. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  5860. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  5861. "icon.png",
  5862. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  5863. ]
  5864. },
  5865. "BouncyCastle.NetCore/1.8.3": {
  5866. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  5867. "type": "package",
  5868. "path": "bouncycastle.netcore/1.8.3",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. ".signature.p7s",
  5872. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  5873. "bouncycastle.netcore.nuspec",
  5874. "lib/Mono/BouncyCastle.Crypto.dll",
  5875. "lib/Mono/BouncyCastle.Crypto.xml",
  5876. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  5877. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  5878. "lib/MonoMac/BouncyCastle.Crypto.dll",
  5879. "lib/MonoMac/BouncyCastle.Crypto.xml",
  5880. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  5881. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  5882. "lib/net20/BouncyCastle.Crypto.dll",
  5883. "lib/net20/BouncyCastle.Crypto.xml",
  5884. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  5885. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  5886. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  5887. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  5888. "lib/xamarinios/BouncyCastle.Crypto.dll",
  5889. "lib/xamarinios/BouncyCastle.Crypto.xml"
  5890. ]
  5891. },
  5892. "Flurl/4.0.0": {
  5893. "sha512": "rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==",
  5894. "type": "package",
  5895. "path": "flurl/4.0.0",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. ".signature.p7s",
  5899. "flurl.4.0.0.nupkg.sha512",
  5900. "flurl.nuspec",
  5901. "icon.png",
  5902. "lib/net461/Flurl.dll",
  5903. "lib/net461/Flurl.xml",
  5904. "lib/net472/Flurl.dll",
  5905. "lib/net472/Flurl.xml",
  5906. "lib/netstandard2.0/Flurl.dll",
  5907. "lib/netstandard2.0/Flurl.xml"
  5908. ]
  5909. },
  5910. "Flurl.Http/4.0.2": {
  5911. "sha512": "9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==",
  5912. "type": "package",
  5913. "path": "flurl.http/4.0.2",
  5914. "files": [
  5915. ".nupkg.metadata",
  5916. ".signature.p7s",
  5917. "README.md",
  5918. "flurl.http.4.0.2.nupkg.sha512",
  5919. "flurl.http.nuspec",
  5920. "icon.png",
  5921. "lib/net461/Flurl.Http.dll",
  5922. "lib/net461/Flurl.Http.xml",
  5923. "lib/net6.0/Flurl.Http.dll",
  5924. "lib/net6.0/Flurl.Http.xml",
  5925. "lib/netstandard2.0/Flurl.Http.dll",
  5926. "lib/netstandard2.0/Flurl.Http.xml"
  5927. ]
  5928. },
  5929. "Google.Protobuf/3.11.4": {
  5930. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  5931. "type": "package",
  5932. "path": "google.protobuf/3.11.4",
  5933. "files": [
  5934. ".nupkg.metadata",
  5935. ".signature.p7s",
  5936. "google.protobuf.3.11.4.nupkg.sha512",
  5937. "google.protobuf.nuspec",
  5938. "lib/net45/Google.Protobuf.dll",
  5939. "lib/net45/Google.Protobuf.pdb",
  5940. "lib/net45/Google.Protobuf.xml",
  5941. "lib/netstandard1.0/Google.Protobuf.dll",
  5942. "lib/netstandard1.0/Google.Protobuf.pdb",
  5943. "lib/netstandard1.0/Google.Protobuf.xml",
  5944. "lib/netstandard2.0/Google.Protobuf.dll",
  5945. "lib/netstandard2.0/Google.Protobuf.pdb",
  5946. "lib/netstandard2.0/Google.Protobuf.xml"
  5947. ]
  5948. },
  5949. "K4os.Compression.LZ4/1.1.11": {
  5950. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  5951. "type": "package",
  5952. "path": "k4os.compression.lz4/1.1.11",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  5957. "k4os.compression.lz4.nuspec",
  5958. "lib/net45/K4os.Compression.LZ4.dll",
  5959. "lib/net45/K4os.Compression.LZ4.xml",
  5960. "lib/net46/K4os.Compression.LZ4.dll",
  5961. "lib/net46/K4os.Compression.LZ4.xml",
  5962. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  5963. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  5964. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  5965. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  5966. ]
  5967. },
  5968. "K4os.Compression.LZ4.Streams/1.1.11": {
  5969. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  5970. "type": "package",
  5971. "path": "k4os.compression.lz4.streams/1.1.11",
  5972. "files": [
  5973. ".nupkg.metadata",
  5974. ".signature.p7s",
  5975. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  5976. "k4os.compression.lz4.streams.nuspec",
  5977. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  5978. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  5979. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  5980. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  5981. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  5982. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  5983. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  5984. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  5985. ]
  5986. },
  5987. "K4os.Hash.xxHash/1.0.6": {
  5988. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  5989. "type": "package",
  5990. "path": "k4os.hash.xxhash/1.0.6",
  5991. "files": [
  5992. ".nupkg.metadata",
  5993. ".signature.p7s",
  5994. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  5995. "k4os.hash.xxhash.nuspec",
  5996. "lib/net45/K4os.Hash.xxHash.dll",
  5997. "lib/net45/K4os.Hash.xxHash.xml",
  5998. "lib/net46/K4os.Hash.xxHash.dll",
  5999. "lib/net46/K4os.Hash.xxHash.xml",
  6000. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  6001. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  6002. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  6003. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  6004. ]
  6005. },
  6006. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  6007. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  6008. "type": "package",
  6009. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  6010. "files": [
  6011. ".nupkg.metadata",
  6012. ".signature.p7s",
  6013. "Icon.png",
  6014. "LICENSE.TXT",
  6015. "PACKAGE.md",
  6016. "THIRD-PARTY-NOTICES.TXT",
  6017. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  6018. "buildTransitive/net462/_._",
  6019. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  6020. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  6021. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  6022. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  6023. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  6024. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  6025. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  6026. "microsoft.bcl.asyncinterfaces.nuspec",
  6027. "useSharedDesignerContext.txt"
  6028. ]
  6029. },
  6030. "Microsoft.Bcl.HashCode/1.1.0": {
  6031. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  6032. "type": "package",
  6033. "path": "microsoft.bcl.hashcode/1.1.0",
  6034. "files": [
  6035. ".nupkg.metadata",
  6036. ".signature.p7s",
  6037. "LICENSE.TXT",
  6038. "THIRD-PARTY-NOTICES.TXT",
  6039. "lib/net461/Microsoft.Bcl.HashCode.dll",
  6040. "lib/net461/Microsoft.Bcl.HashCode.xml",
  6041. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  6042. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  6043. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  6044. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  6045. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  6046. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  6047. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  6048. "microsoft.bcl.hashcode.nuspec",
  6049. "ref/net461/Microsoft.Bcl.HashCode.dll",
  6050. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  6051. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  6052. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  6053. "useSharedDesignerContext.txt",
  6054. "version.txt"
  6055. ]
  6056. },
  6057. "Microsoft.CSharp/4.7.0": {
  6058. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  6059. "type": "package",
  6060. "path": "microsoft.csharp/4.7.0",
  6061. "files": [
  6062. ".nupkg.metadata",
  6063. ".signature.p7s",
  6064. "LICENSE.TXT",
  6065. "THIRD-PARTY-NOTICES.TXT",
  6066. "lib/MonoAndroid10/_._",
  6067. "lib/MonoTouch10/_._",
  6068. "lib/net45/_._",
  6069. "lib/netcore50/Microsoft.CSharp.dll",
  6070. "lib/netcoreapp2.0/_._",
  6071. "lib/netstandard1.3/Microsoft.CSharp.dll",
  6072. "lib/netstandard2.0/Microsoft.CSharp.dll",
  6073. "lib/netstandard2.0/Microsoft.CSharp.xml",
  6074. "lib/portable-net45+win8+wp8+wpa81/_._",
  6075. "lib/uap10.0.16299/_._",
  6076. "lib/win8/_._",
  6077. "lib/wp80/_._",
  6078. "lib/wpa81/_._",
  6079. "lib/xamarinios10/_._",
  6080. "lib/xamarinmac20/_._",
  6081. "lib/xamarintvos10/_._",
  6082. "lib/xamarinwatchos10/_._",
  6083. "microsoft.csharp.4.7.0.nupkg.sha512",
  6084. "microsoft.csharp.nuspec",
  6085. "ref/MonoAndroid10/_._",
  6086. "ref/MonoTouch10/_._",
  6087. "ref/net45/_._",
  6088. "ref/netcore50/Microsoft.CSharp.dll",
  6089. "ref/netcore50/Microsoft.CSharp.xml",
  6090. "ref/netcore50/de/Microsoft.CSharp.xml",
  6091. "ref/netcore50/es/Microsoft.CSharp.xml",
  6092. "ref/netcore50/fr/Microsoft.CSharp.xml",
  6093. "ref/netcore50/it/Microsoft.CSharp.xml",
  6094. "ref/netcore50/ja/Microsoft.CSharp.xml",
  6095. "ref/netcore50/ko/Microsoft.CSharp.xml",
  6096. "ref/netcore50/ru/Microsoft.CSharp.xml",
  6097. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  6098. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  6099. "ref/netcoreapp2.0/_._",
  6100. "ref/netstandard1.0/Microsoft.CSharp.dll",
  6101. "ref/netstandard1.0/Microsoft.CSharp.xml",
  6102. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  6103. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  6104. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  6105. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  6106. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  6107. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  6108. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  6109. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  6110. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  6111. "ref/netstandard2.0/Microsoft.CSharp.dll",
  6112. "ref/netstandard2.0/Microsoft.CSharp.xml",
  6113. "ref/portable-net45+win8+wp8+wpa81/_._",
  6114. "ref/uap10.0.16299/_._",
  6115. "ref/win8/_._",
  6116. "ref/wp80/_._",
  6117. "ref/wpa81/_._",
  6118. "ref/xamarinios10/_._",
  6119. "ref/xamarinmac20/_._",
  6120. "ref/xamarintvos10/_._",
  6121. "ref/xamarinwatchos10/_._",
  6122. "useSharedDesignerContext.txt",
  6123. "version.txt"
  6124. ]
  6125. },
  6126. "Microsoft.EntityFrameworkCore/3.1.1": {
  6127. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  6128. "type": "package",
  6129. "path": "microsoft.entityframeworkcore/3.1.1",
  6130. "files": [
  6131. ".nupkg.metadata",
  6132. ".signature.p7s",
  6133. "Icon.png",
  6134. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  6135. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  6136. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  6137. "microsoft.entityframeworkcore.nuspec"
  6138. ]
  6139. },
  6140. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  6141. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  6142. "type": "package",
  6143. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  6144. "files": [
  6145. ".nupkg.metadata",
  6146. ".signature.p7s",
  6147. "Icon.png",
  6148. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  6149. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  6150. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  6151. "microsoft.entityframeworkcore.abstractions.nuspec"
  6152. ]
  6153. },
  6154. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  6155. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  6156. "type": "package",
  6157. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  6158. "files": [
  6159. ".nupkg.metadata",
  6160. ".signature.p7s",
  6161. "Icon.png",
  6162. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  6163. "lib/netstandard2.0/_._",
  6164. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  6165. "microsoft.entityframeworkcore.analyzers.nuspec"
  6166. ]
  6167. },
  6168. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  6169. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  6170. "type": "package",
  6171. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  6172. "files": [
  6173. ".nupkg.metadata",
  6174. ".signature.p7s",
  6175. "Icon.png",
  6176. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  6177. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  6178. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  6179. "microsoft.entityframeworkcore.relational.nuspec"
  6180. ]
  6181. },
  6182. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  6183. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  6184. "type": "package",
  6185. "path": "microsoft.extensions.apidescription.server/6.0.5",
  6186. "hasTools": true,
  6187. "files": [
  6188. ".nupkg.metadata",
  6189. ".signature.p7s",
  6190. "Icon.png",
  6191. "build/Microsoft.Extensions.ApiDescription.Server.props",
  6192. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  6193. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  6194. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  6195. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  6196. "microsoft.extensions.apidescription.server.nuspec",
  6197. "tools/Newtonsoft.Json.dll",
  6198. "tools/dotnet-getdocument.deps.json",
  6199. "tools/dotnet-getdocument.dll",
  6200. "tools/dotnet-getdocument.runtimeconfig.json",
  6201. "tools/net461-x86/GetDocument.Insider.exe",
  6202. "tools/net461-x86/GetDocument.Insider.exe.config",
  6203. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  6204. "tools/net461-x86/System.AppContext.dll",
  6205. "tools/net461-x86/System.Buffers.dll",
  6206. "tools/net461-x86/System.Collections.Concurrent.dll",
  6207. "tools/net461-x86/System.Collections.NonGeneric.dll",
  6208. "tools/net461-x86/System.Collections.Specialized.dll",
  6209. "tools/net461-x86/System.Collections.dll",
  6210. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  6211. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  6212. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  6213. "tools/net461-x86/System.ComponentModel.dll",
  6214. "tools/net461-x86/System.Console.dll",
  6215. "tools/net461-x86/System.Data.Common.dll",
  6216. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  6217. "tools/net461-x86/System.Diagnostics.Debug.dll",
  6218. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  6219. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  6220. "tools/net461-x86/System.Diagnostics.Process.dll",
  6221. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  6222. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  6223. "tools/net461-x86/System.Diagnostics.Tools.dll",
  6224. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  6225. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  6226. "tools/net461-x86/System.Drawing.Primitives.dll",
  6227. "tools/net461-x86/System.Dynamic.Runtime.dll",
  6228. "tools/net461-x86/System.Globalization.Calendars.dll",
  6229. "tools/net461-x86/System.Globalization.Extensions.dll",
  6230. "tools/net461-x86/System.Globalization.dll",
  6231. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  6232. "tools/net461-x86/System.IO.Compression.dll",
  6233. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  6234. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  6235. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  6236. "tools/net461-x86/System.IO.FileSystem.dll",
  6237. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  6238. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  6239. "tools/net461-x86/System.IO.Pipes.dll",
  6240. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  6241. "tools/net461-x86/System.IO.dll",
  6242. "tools/net461-x86/System.Linq.Expressions.dll",
  6243. "tools/net461-x86/System.Linq.Parallel.dll",
  6244. "tools/net461-x86/System.Linq.Queryable.dll",
  6245. "tools/net461-x86/System.Linq.dll",
  6246. "tools/net461-x86/System.Memory.dll",
  6247. "tools/net461-x86/System.Net.Http.dll",
  6248. "tools/net461-x86/System.Net.NameResolution.dll",
  6249. "tools/net461-x86/System.Net.NetworkInformation.dll",
  6250. "tools/net461-x86/System.Net.Ping.dll",
  6251. "tools/net461-x86/System.Net.Primitives.dll",
  6252. "tools/net461-x86/System.Net.Requests.dll",
  6253. "tools/net461-x86/System.Net.Security.dll",
  6254. "tools/net461-x86/System.Net.Sockets.dll",
  6255. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  6256. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  6257. "tools/net461-x86/System.Net.WebSockets.dll",
  6258. "tools/net461-x86/System.Numerics.Vectors.dll",
  6259. "tools/net461-x86/System.ObjectModel.dll",
  6260. "tools/net461-x86/System.Reflection.Extensions.dll",
  6261. "tools/net461-x86/System.Reflection.Primitives.dll",
  6262. "tools/net461-x86/System.Reflection.dll",
  6263. "tools/net461-x86/System.Resources.Reader.dll",
  6264. "tools/net461-x86/System.Resources.ResourceManager.dll",
  6265. "tools/net461-x86/System.Resources.Writer.dll",
  6266. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  6267. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  6268. "tools/net461-x86/System.Runtime.Extensions.dll",
  6269. "tools/net461-x86/System.Runtime.Handles.dll",
  6270. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  6271. "tools/net461-x86/System.Runtime.InteropServices.dll",
  6272. "tools/net461-x86/System.Runtime.Numerics.dll",
  6273. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  6274. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  6275. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  6276. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  6277. "tools/net461-x86/System.Runtime.dll",
  6278. "tools/net461-x86/System.Security.Claims.dll",
  6279. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  6280. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  6281. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  6282. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  6283. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  6284. "tools/net461-x86/System.Security.Principal.dll",
  6285. "tools/net461-x86/System.Security.SecureString.dll",
  6286. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  6287. "tools/net461-x86/System.Text.Encoding.dll",
  6288. "tools/net461-x86/System.Text.RegularExpressions.dll",
  6289. "tools/net461-x86/System.Threading.Overlapped.dll",
  6290. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  6291. "tools/net461-x86/System.Threading.Tasks.dll",
  6292. "tools/net461-x86/System.Threading.Thread.dll",
  6293. "tools/net461-x86/System.Threading.ThreadPool.dll",
  6294. "tools/net461-x86/System.Threading.Timer.dll",
  6295. "tools/net461-x86/System.Threading.dll",
  6296. "tools/net461-x86/System.ValueTuple.dll",
  6297. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  6298. "tools/net461-x86/System.Xml.XDocument.dll",
  6299. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  6300. "tools/net461-x86/System.Xml.XPath.dll",
  6301. "tools/net461-x86/System.Xml.XmlDocument.dll",
  6302. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  6303. "tools/net461-x86/netstandard.dll",
  6304. "tools/net461/GetDocument.Insider.exe",
  6305. "tools/net461/GetDocument.Insider.exe.config",
  6306. "tools/net461/Microsoft.Win32.Primitives.dll",
  6307. "tools/net461/System.AppContext.dll",
  6308. "tools/net461/System.Buffers.dll",
  6309. "tools/net461/System.Collections.Concurrent.dll",
  6310. "tools/net461/System.Collections.NonGeneric.dll",
  6311. "tools/net461/System.Collections.Specialized.dll",
  6312. "tools/net461/System.Collections.dll",
  6313. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  6314. "tools/net461/System.ComponentModel.Primitives.dll",
  6315. "tools/net461/System.ComponentModel.TypeConverter.dll",
  6316. "tools/net461/System.ComponentModel.dll",
  6317. "tools/net461/System.Console.dll",
  6318. "tools/net461/System.Data.Common.dll",
  6319. "tools/net461/System.Diagnostics.Contracts.dll",
  6320. "tools/net461/System.Diagnostics.Debug.dll",
  6321. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  6322. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  6323. "tools/net461/System.Diagnostics.Process.dll",
  6324. "tools/net461/System.Diagnostics.StackTrace.dll",
  6325. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  6326. "tools/net461/System.Diagnostics.Tools.dll",
  6327. "tools/net461/System.Diagnostics.TraceSource.dll",
  6328. "tools/net461/System.Diagnostics.Tracing.dll",
  6329. "tools/net461/System.Drawing.Primitives.dll",
  6330. "tools/net461/System.Dynamic.Runtime.dll",
  6331. "tools/net461/System.Globalization.Calendars.dll",
  6332. "tools/net461/System.Globalization.Extensions.dll",
  6333. "tools/net461/System.Globalization.dll",
  6334. "tools/net461/System.IO.Compression.ZipFile.dll",
  6335. "tools/net461/System.IO.Compression.dll",
  6336. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  6337. "tools/net461/System.IO.FileSystem.Primitives.dll",
  6338. "tools/net461/System.IO.FileSystem.Watcher.dll",
  6339. "tools/net461/System.IO.FileSystem.dll",
  6340. "tools/net461/System.IO.IsolatedStorage.dll",
  6341. "tools/net461/System.IO.MemoryMappedFiles.dll",
  6342. "tools/net461/System.IO.Pipes.dll",
  6343. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  6344. "tools/net461/System.IO.dll",
  6345. "tools/net461/System.Linq.Expressions.dll",
  6346. "tools/net461/System.Linq.Parallel.dll",
  6347. "tools/net461/System.Linq.Queryable.dll",
  6348. "tools/net461/System.Linq.dll",
  6349. "tools/net461/System.Memory.dll",
  6350. "tools/net461/System.Net.Http.dll",
  6351. "tools/net461/System.Net.NameResolution.dll",
  6352. "tools/net461/System.Net.NetworkInformation.dll",
  6353. "tools/net461/System.Net.Ping.dll",
  6354. "tools/net461/System.Net.Primitives.dll",
  6355. "tools/net461/System.Net.Requests.dll",
  6356. "tools/net461/System.Net.Security.dll",
  6357. "tools/net461/System.Net.Sockets.dll",
  6358. "tools/net461/System.Net.WebHeaderCollection.dll",
  6359. "tools/net461/System.Net.WebSockets.Client.dll",
  6360. "tools/net461/System.Net.WebSockets.dll",
  6361. "tools/net461/System.Numerics.Vectors.dll",
  6362. "tools/net461/System.ObjectModel.dll",
  6363. "tools/net461/System.Reflection.Extensions.dll",
  6364. "tools/net461/System.Reflection.Primitives.dll",
  6365. "tools/net461/System.Reflection.dll",
  6366. "tools/net461/System.Resources.Reader.dll",
  6367. "tools/net461/System.Resources.ResourceManager.dll",
  6368. "tools/net461/System.Resources.Writer.dll",
  6369. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6370. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  6371. "tools/net461/System.Runtime.Extensions.dll",
  6372. "tools/net461/System.Runtime.Handles.dll",
  6373. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  6374. "tools/net461/System.Runtime.InteropServices.dll",
  6375. "tools/net461/System.Runtime.Numerics.dll",
  6376. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  6377. "tools/net461/System.Runtime.Serialization.Json.dll",
  6378. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  6379. "tools/net461/System.Runtime.Serialization.Xml.dll",
  6380. "tools/net461/System.Runtime.dll",
  6381. "tools/net461/System.Security.Claims.dll",
  6382. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  6383. "tools/net461/System.Security.Cryptography.Csp.dll",
  6384. "tools/net461/System.Security.Cryptography.Encoding.dll",
  6385. "tools/net461/System.Security.Cryptography.Primitives.dll",
  6386. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  6387. "tools/net461/System.Security.Principal.dll",
  6388. "tools/net461/System.Security.SecureString.dll",
  6389. "tools/net461/System.Text.Encoding.Extensions.dll",
  6390. "tools/net461/System.Text.Encoding.dll",
  6391. "tools/net461/System.Text.RegularExpressions.dll",
  6392. "tools/net461/System.Threading.Overlapped.dll",
  6393. "tools/net461/System.Threading.Tasks.Parallel.dll",
  6394. "tools/net461/System.Threading.Tasks.dll",
  6395. "tools/net461/System.Threading.Thread.dll",
  6396. "tools/net461/System.Threading.ThreadPool.dll",
  6397. "tools/net461/System.Threading.Timer.dll",
  6398. "tools/net461/System.Threading.dll",
  6399. "tools/net461/System.ValueTuple.dll",
  6400. "tools/net461/System.Xml.ReaderWriter.dll",
  6401. "tools/net461/System.Xml.XDocument.dll",
  6402. "tools/net461/System.Xml.XPath.XDocument.dll",
  6403. "tools/net461/System.Xml.XPath.dll",
  6404. "tools/net461/System.Xml.XmlDocument.dll",
  6405. "tools/net461/System.Xml.XmlSerializer.dll",
  6406. "tools/net461/netstandard.dll",
  6407. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  6408. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  6409. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  6410. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  6411. ]
  6412. },
  6413. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  6414. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  6415. "type": "package",
  6416. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  6417. "files": [
  6418. ".nupkg.metadata",
  6419. ".signature.p7s",
  6420. "Icon.png",
  6421. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  6422. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  6423. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  6424. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  6425. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  6426. "microsoft.extensions.caching.abstractions.nuspec"
  6427. ]
  6428. },
  6429. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  6430. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  6431. "type": "package",
  6432. "path": "microsoft.extensions.caching.memory/3.1.1",
  6433. "files": [
  6434. ".nupkg.metadata",
  6435. ".signature.p7s",
  6436. "Icon.png",
  6437. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  6438. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  6439. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  6440. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  6441. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  6442. "microsoft.extensions.caching.memory.nuspec"
  6443. ]
  6444. },
  6445. "Microsoft.Extensions.Configuration/8.0.0": {
  6446. "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
  6447. "type": "package",
  6448. "path": "microsoft.extensions.configuration/8.0.0",
  6449. "files": [
  6450. ".nupkg.metadata",
  6451. ".signature.p7s",
  6452. "Icon.png",
  6453. "LICENSE.TXT",
  6454. "PACKAGE.md",
  6455. "THIRD-PARTY-NOTICES.TXT",
  6456. "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
  6457. "buildTransitive/net462/_._",
  6458. "buildTransitive/net6.0/_._",
  6459. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
  6460. "lib/net462/Microsoft.Extensions.Configuration.dll",
  6461. "lib/net462/Microsoft.Extensions.Configuration.xml",
  6462. "lib/net6.0/Microsoft.Extensions.Configuration.dll",
  6463. "lib/net6.0/Microsoft.Extensions.Configuration.xml",
  6464. "lib/net7.0/Microsoft.Extensions.Configuration.dll",
  6465. "lib/net7.0/Microsoft.Extensions.Configuration.xml",
  6466. "lib/net8.0/Microsoft.Extensions.Configuration.dll",
  6467. "lib/net8.0/Microsoft.Extensions.Configuration.xml",
  6468. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  6469. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  6470. "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
  6471. "microsoft.extensions.configuration.nuspec",
  6472. "useSharedDesignerContext.txt"
  6473. ]
  6474. },
  6475. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  6476. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  6477. "type": "package",
  6478. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  6479. "files": [
  6480. ".nupkg.metadata",
  6481. ".signature.p7s",
  6482. "Icon.png",
  6483. "LICENSE.TXT",
  6484. "PACKAGE.md",
  6485. "THIRD-PARTY-NOTICES.TXT",
  6486. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  6487. "buildTransitive/net462/_._",
  6488. "buildTransitive/net6.0/_._",
  6489. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  6490. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  6491. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  6492. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6493. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6494. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6495. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6496. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6497. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6498. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6499. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6500. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  6501. "microsoft.extensions.configuration.abstractions.nuspec",
  6502. "useSharedDesignerContext.txt"
  6503. ]
  6504. },
  6505. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  6506. "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
  6507. "type": "package",
  6508. "path": "microsoft.extensions.configuration.binder/8.0.0",
  6509. "files": [
  6510. ".nupkg.metadata",
  6511. ".signature.p7s",
  6512. "Icon.png",
  6513. "LICENSE.TXT",
  6514. "PACKAGE.md",
  6515. "THIRD-PARTY-NOTICES.TXT",
  6516. "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
  6517. "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6518. "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6519. "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6520. "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6521. "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6522. "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6523. "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6524. "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6525. "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6526. "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6527. "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6528. "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6529. "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6530. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
  6531. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  6532. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  6533. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  6534. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  6535. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  6536. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  6537. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
  6538. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
  6539. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  6540. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  6541. "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
  6542. "microsoft.extensions.configuration.binder.nuspec",
  6543. "useSharedDesignerContext.txt"
  6544. ]
  6545. },
  6546. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  6547. "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
  6548. "type": "package",
  6549. "path": "microsoft.extensions.configuration.commandline/8.0.0",
  6550. "files": [
  6551. ".nupkg.metadata",
  6552. ".signature.p7s",
  6553. "Icon.png",
  6554. "LICENSE.TXT",
  6555. "PACKAGE.md",
  6556. "THIRD-PARTY-NOTICES.TXT",
  6557. "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
  6558. "buildTransitive/net462/_._",
  6559. "buildTransitive/net6.0/_._",
  6560. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
  6561. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
  6562. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
  6563. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6564. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6565. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6566. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6567. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6568. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6569. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6570. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6571. "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
  6572. "microsoft.extensions.configuration.commandline.nuspec",
  6573. "useSharedDesignerContext.txt"
  6574. ]
  6575. },
  6576. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  6577. "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
  6578. "type": "package",
  6579. "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
  6580. "files": [
  6581. ".nupkg.metadata",
  6582. ".signature.p7s",
  6583. "Icon.png",
  6584. "LICENSE.TXT",
  6585. "PACKAGE.md",
  6586. "THIRD-PARTY-NOTICES.TXT",
  6587. "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  6588. "buildTransitive/net462/_._",
  6589. "buildTransitive/net6.0/_._",
  6590. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  6591. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6592. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6593. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6594. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6595. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6596. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6597. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6598. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6599. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6600. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6601. "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
  6602. "microsoft.extensions.configuration.environmentvariables.nuspec",
  6603. "useSharedDesignerContext.txt"
  6604. ]
  6605. },
  6606. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  6607. "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
  6608. "type": "package",
  6609. "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "Icon.png",
  6614. "LICENSE.TXT",
  6615. "PACKAGE.md",
  6616. "THIRD-PARTY-NOTICES.TXT",
  6617. "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
  6618. "buildTransitive/net462/_._",
  6619. "buildTransitive/net6.0/_._",
  6620. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
  6621. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6622. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6623. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6624. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6625. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6626. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6627. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6628. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6629. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6630. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6631. "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
  6632. "microsoft.extensions.configuration.fileextensions.nuspec",
  6633. "useSharedDesignerContext.txt"
  6634. ]
  6635. },
  6636. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  6637. "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
  6638. "type": "package",
  6639. "path": "microsoft.extensions.configuration.json/8.0.0",
  6640. "files": [
  6641. ".nupkg.metadata",
  6642. ".signature.p7s",
  6643. "Icon.png",
  6644. "LICENSE.TXT",
  6645. "PACKAGE.md",
  6646. "THIRD-PARTY-NOTICES.TXT",
  6647. "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
  6648. "buildTransitive/net462/_._",
  6649. "buildTransitive/net6.0/_._",
  6650. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
  6651. "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
  6652. "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
  6653. "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
  6654. "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
  6655. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
  6656. "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
  6657. "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
  6658. "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
  6659. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  6660. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  6661. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  6662. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  6663. "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
  6664. "microsoft.extensions.configuration.json.nuspec",
  6665. "useSharedDesignerContext.txt"
  6666. ]
  6667. },
  6668. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  6669. "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
  6670. "type": "package",
  6671. "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
  6672. "files": [
  6673. ".nupkg.metadata",
  6674. ".signature.p7s",
  6675. "Icon.png",
  6676. "LICENSE.TXT",
  6677. "PACKAGE.md",
  6678. "THIRD-PARTY-NOTICES.TXT",
  6679. "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6680. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
  6681. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6682. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6683. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6684. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6685. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6686. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6687. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6688. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6689. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6690. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6691. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6692. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6693. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6694. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6695. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6696. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6697. "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
  6698. "microsoft.extensions.configuration.usersecrets.nuspec",
  6699. "useSharedDesignerContext.txt"
  6700. ]
  6701. },
  6702. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  6703. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  6704. "type": "package",
  6705. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  6706. "files": [
  6707. ".nupkg.metadata",
  6708. ".signature.p7s",
  6709. "Icon.png",
  6710. "LICENSE.TXT",
  6711. "PACKAGE.md",
  6712. "THIRD-PARTY-NOTICES.TXT",
  6713. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  6714. "buildTransitive/net462/_._",
  6715. "buildTransitive/net6.0/_._",
  6716. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  6717. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  6718. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  6719. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  6720. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  6721. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  6722. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  6723. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  6724. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  6725. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  6726. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  6727. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  6728. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  6729. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  6730. "microsoft.extensions.dependencyinjection.nuspec",
  6731. "useSharedDesignerContext.txt"
  6732. ]
  6733. },
  6734. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  6735. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  6736. "type": "package",
  6737. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  6738. "files": [
  6739. ".nupkg.metadata",
  6740. ".signature.p7s",
  6741. "Icon.png",
  6742. "LICENSE.TXT",
  6743. "PACKAGE.md",
  6744. "THIRD-PARTY-NOTICES.TXT",
  6745. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  6746. "buildTransitive/net462/_._",
  6747. "buildTransitive/net6.0/_._",
  6748. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  6749. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6750. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6751. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6752. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6753. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6754. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6755. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6756. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6757. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6758. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6759. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6760. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6761. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  6762. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  6763. "useSharedDesignerContext.txt"
  6764. ]
  6765. },
  6766. "Microsoft.Extensions.DependencyModel/3.1.6": {
  6767. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  6768. "type": "package",
  6769. "path": "microsoft.extensions.dependencymodel/3.1.6",
  6770. "files": [
  6771. ".nupkg.metadata",
  6772. ".signature.p7s",
  6773. "Icon.png",
  6774. "LICENSE.TXT",
  6775. "THIRD-PARTY-NOTICES.TXT",
  6776. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  6777. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  6778. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  6779. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  6780. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  6781. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  6782. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  6783. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  6784. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  6785. "microsoft.extensions.dependencymodel.nuspec"
  6786. ]
  6787. },
  6788. "Microsoft.Extensions.Diagnostics/8.0.0": {
  6789. "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
  6790. "type": "package",
  6791. "path": "microsoft.extensions.diagnostics/8.0.0",
  6792. "files": [
  6793. ".nupkg.metadata",
  6794. ".signature.p7s",
  6795. "Icon.png",
  6796. "LICENSE.TXT",
  6797. "THIRD-PARTY-NOTICES.TXT",
  6798. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
  6799. "buildTransitive/net462/_._",
  6800. "buildTransitive/net6.0/_._",
  6801. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
  6802. "lib/net462/Microsoft.Extensions.Diagnostics.dll",
  6803. "lib/net462/Microsoft.Extensions.Diagnostics.xml",
  6804. "lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
  6805. "lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
  6806. "lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
  6807. "lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
  6808. "lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
  6809. "lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
  6810. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
  6811. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
  6812. "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
  6813. "microsoft.extensions.diagnostics.nuspec",
  6814. "useSharedDesignerContext.txt"
  6815. ]
  6816. },
  6817. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  6818. "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
  6819. "type": "package",
  6820. "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
  6821. "files": [
  6822. ".nupkg.metadata",
  6823. ".signature.p7s",
  6824. "Icon.png",
  6825. "LICENSE.TXT",
  6826. "THIRD-PARTY-NOTICES.TXT",
  6827. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  6828. "buildTransitive/net462/_._",
  6829. "buildTransitive/net6.0/_._",
  6830. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  6831. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6832. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6833. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6834. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6835. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6836. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6837. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6838. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6839. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6840. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6841. "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
  6842. "microsoft.extensions.diagnostics.abstractions.nuspec",
  6843. "useSharedDesignerContext.txt"
  6844. ]
  6845. },
  6846. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  6847. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  6848. "type": "package",
  6849. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  6850. "files": [
  6851. ".nupkg.metadata",
  6852. ".signature.p7s",
  6853. "Icon.png",
  6854. "LICENSE.TXT",
  6855. "PACKAGE.md",
  6856. "THIRD-PARTY-NOTICES.TXT",
  6857. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  6858. "buildTransitive/net462/_._",
  6859. "buildTransitive/net6.0/_._",
  6860. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  6861. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6862. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6863. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6864. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6865. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6866. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6867. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6868. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6869. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  6870. "microsoft.extensions.fileproviders.abstractions.nuspec",
  6871. "useSharedDesignerContext.txt"
  6872. ]
  6873. },
  6874. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  6875. "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
  6876. "type": "package",
  6877. "path": "microsoft.extensions.fileproviders.physical/8.0.0",
  6878. "files": [
  6879. ".nupkg.metadata",
  6880. ".signature.p7s",
  6881. "Icon.png",
  6882. "LICENSE.TXT",
  6883. "PACKAGE.md",
  6884. "THIRD-PARTY-NOTICES.TXT",
  6885. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
  6886. "buildTransitive/net462/_._",
  6887. "buildTransitive/net6.0/_._",
  6888. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  6889. "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
  6890. "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
  6891. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6892. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6893. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6894. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6895. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6896. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6897. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6898. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6899. "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
  6900. "microsoft.extensions.fileproviders.physical.nuspec",
  6901. "useSharedDesignerContext.txt"
  6902. ]
  6903. },
  6904. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  6905. "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
  6906. "type": "package",
  6907. "path": "microsoft.extensions.filesystemglobbing/8.0.0",
  6908. "files": [
  6909. ".nupkg.metadata",
  6910. ".signature.p7s",
  6911. "Icon.png",
  6912. "LICENSE.TXT",
  6913. "PACKAGE.md",
  6914. "THIRD-PARTY-NOTICES.TXT",
  6915. "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
  6916. "buildTransitive/net462/_._",
  6917. "buildTransitive/net6.0/_._",
  6918. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  6919. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
  6920. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
  6921. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6922. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6923. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6924. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6925. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6926. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6927. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6928. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6929. "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
  6930. "microsoft.extensions.filesystemglobbing.nuspec",
  6931. "useSharedDesignerContext.txt"
  6932. ]
  6933. },
  6934. "Microsoft.Extensions.Hosting/8.0.0": {
  6935. "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
  6936. "type": "package",
  6937. "path": "microsoft.extensions.hosting/8.0.0",
  6938. "files": [
  6939. ".nupkg.metadata",
  6940. ".signature.p7s",
  6941. "Icon.png",
  6942. "LICENSE.TXT",
  6943. "PACKAGE.md",
  6944. "THIRD-PARTY-NOTICES.TXT",
  6945. "buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
  6946. "buildTransitive/net462/_._",
  6947. "buildTransitive/net6.0/_._",
  6948. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
  6949. "lib/net462/Microsoft.Extensions.Hosting.dll",
  6950. "lib/net462/Microsoft.Extensions.Hosting.xml",
  6951. "lib/net6.0/Microsoft.Extensions.Hosting.dll",
  6952. "lib/net6.0/Microsoft.Extensions.Hosting.xml",
  6953. "lib/net7.0/Microsoft.Extensions.Hosting.dll",
  6954. "lib/net7.0/Microsoft.Extensions.Hosting.xml",
  6955. "lib/net8.0/Microsoft.Extensions.Hosting.dll",
  6956. "lib/net8.0/Microsoft.Extensions.Hosting.xml",
  6957. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  6958. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  6959. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  6960. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  6961. "microsoft.extensions.hosting.8.0.0.nupkg.sha512",
  6962. "microsoft.extensions.hosting.nuspec",
  6963. "useSharedDesignerContext.txt"
  6964. ]
  6965. },
  6966. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  6967. "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
  6968. "type": "package",
  6969. "path": "microsoft.extensions.hosting.abstractions/8.0.0",
  6970. "files": [
  6971. ".nupkg.metadata",
  6972. ".signature.p7s",
  6973. "Icon.png",
  6974. "LICENSE.TXT",
  6975. "PACKAGE.md",
  6976. "THIRD-PARTY-NOTICES.TXT",
  6977. "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
  6978. "buildTransitive/net462/_._",
  6979. "buildTransitive/net6.0/_._",
  6980. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
  6981. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
  6982. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
  6983. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6984. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6985. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6986. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6987. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6988. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6989. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6990. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6991. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  6992. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  6993. "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
  6994. "microsoft.extensions.hosting.abstractions.nuspec",
  6995. "useSharedDesignerContext.txt"
  6996. ]
  6997. },
  6998. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  6999. "sha512": "8JIvU6R9fejZj/p6QATeDaNEPtIvLuwE5Uh7qyPx7tp+Fc9FqYaAe6ylU2dM839IUpmsU4ZVev956slZyrYEhQ==",
  7000. "type": "package",
  7001. "path": "microsoft.extensions.hosting.windowsservices/8.0.0",
  7002. "files": [
  7003. ".nupkg.metadata",
  7004. ".signature.p7s",
  7005. "Icon.png",
  7006. "LICENSE.TXT",
  7007. "PACKAGE.md",
  7008. "THIRD-PARTY-NOTICES.TXT",
  7009. "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets",
  7010. "buildTransitive/net462/_._",
  7011. "buildTransitive/net6.0/_._",
  7012. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets",
  7013. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7014. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7015. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7016. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7017. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7018. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7019. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7020. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7021. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7022. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7023. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7024. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7025. "microsoft.extensions.hosting.windowsservices.8.0.0.nupkg.sha512",
  7026. "microsoft.extensions.hosting.windowsservices.nuspec",
  7027. "useSharedDesignerContext.txt"
  7028. ]
  7029. },
  7030. "Microsoft.Extensions.Logging/8.0.0": {
  7031. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  7032. "type": "package",
  7033. "path": "microsoft.extensions.logging/8.0.0",
  7034. "files": [
  7035. ".nupkg.metadata",
  7036. ".signature.p7s",
  7037. "Icon.png",
  7038. "LICENSE.TXT",
  7039. "PACKAGE.md",
  7040. "THIRD-PARTY-NOTICES.TXT",
  7041. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  7042. "buildTransitive/net462/_._",
  7043. "buildTransitive/net6.0/_._",
  7044. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  7045. "lib/net462/Microsoft.Extensions.Logging.dll",
  7046. "lib/net462/Microsoft.Extensions.Logging.xml",
  7047. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  7048. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  7049. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  7050. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  7051. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  7052. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  7053. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  7054. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  7055. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  7056. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  7057. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  7058. "microsoft.extensions.logging.nuspec",
  7059. "useSharedDesignerContext.txt"
  7060. ]
  7061. },
  7062. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  7063. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  7064. "type": "package",
  7065. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  7066. "files": [
  7067. ".nupkg.metadata",
  7068. ".signature.p7s",
  7069. "Icon.png",
  7070. "LICENSE.TXT",
  7071. "PACKAGE.md",
  7072. "THIRD-PARTY-NOTICES.TXT",
  7073. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  7074. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7075. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7076. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7077. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7078. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7079. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7080. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7081. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7082. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7083. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7084. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7085. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7086. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7087. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  7088. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7089. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7090. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7091. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7092. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7093. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7094. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7095. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7096. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7097. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7098. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7099. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7100. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7101. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  7102. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7103. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7104. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7105. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7106. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7107. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7108. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7109. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7110. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7111. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7112. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7113. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7114. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7115. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  7116. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  7117. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7118. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7119. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7120. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  7121. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  7122. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7123. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7124. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7125. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7126. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7127. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7128. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7129. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7130. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  7131. "microsoft.extensions.logging.abstractions.nuspec",
  7132. "useSharedDesignerContext.txt"
  7133. ]
  7134. },
  7135. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  7136. "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
  7137. "type": "package",
  7138. "path": "microsoft.extensions.logging.configuration/8.0.0",
  7139. "files": [
  7140. ".nupkg.metadata",
  7141. ".signature.p7s",
  7142. "Icon.png",
  7143. "LICENSE.TXT",
  7144. "THIRD-PARTY-NOTICES.TXT",
  7145. "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
  7146. "buildTransitive/net462/_._",
  7147. "buildTransitive/net6.0/_._",
  7148. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
  7149. "lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
  7150. "lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
  7151. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
  7152. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
  7153. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
  7154. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
  7155. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
  7156. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
  7157. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  7158. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  7159. "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
  7160. "microsoft.extensions.logging.configuration.nuspec",
  7161. "useSharedDesignerContext.txt"
  7162. ]
  7163. },
  7164. "Microsoft.Extensions.Logging.Console/8.0.0": {
  7165. "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
  7166. "type": "package",
  7167. "path": "microsoft.extensions.logging.console/8.0.0",
  7168. "files": [
  7169. ".nupkg.metadata",
  7170. ".signature.p7s",
  7171. "Icon.png",
  7172. "LICENSE.TXT",
  7173. "PACKAGE.md",
  7174. "THIRD-PARTY-NOTICES.TXT",
  7175. "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
  7176. "buildTransitive/net462/_._",
  7177. "buildTransitive/net6.0/_._",
  7178. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
  7179. "lib/net462/Microsoft.Extensions.Logging.Console.dll",
  7180. "lib/net462/Microsoft.Extensions.Logging.Console.xml",
  7181. "lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
  7182. "lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
  7183. "lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
  7184. "lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
  7185. "lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
  7186. "lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
  7187. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  7188. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  7189. "microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
  7190. "microsoft.extensions.logging.console.nuspec",
  7191. "useSharedDesignerContext.txt"
  7192. ]
  7193. },
  7194. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  7195. "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
  7196. "type": "package",
  7197. "path": "microsoft.extensions.logging.debug/8.0.0",
  7198. "files": [
  7199. ".nupkg.metadata",
  7200. ".signature.p7s",
  7201. "Icon.png",
  7202. "LICENSE.TXT",
  7203. "PACKAGE.md",
  7204. "THIRD-PARTY-NOTICES.TXT",
  7205. "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
  7206. "buildTransitive/net462/_._",
  7207. "buildTransitive/net6.0/_._",
  7208. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
  7209. "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
  7210. "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
  7211. "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
  7212. "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
  7213. "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
  7214. "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
  7215. "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
  7216. "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
  7217. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  7218. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  7219. "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
  7220. "microsoft.extensions.logging.debug.nuspec",
  7221. "useSharedDesignerContext.txt"
  7222. ]
  7223. },
  7224. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  7225. "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
  7226. "type": "package",
  7227. "path": "microsoft.extensions.logging.eventlog/8.0.0",
  7228. "files": [
  7229. ".nupkg.metadata",
  7230. ".signature.p7s",
  7231. "Icon.png",
  7232. "LICENSE.TXT",
  7233. "THIRD-PARTY-NOTICES.TXT",
  7234. "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
  7235. "buildTransitive/net462/_._",
  7236. "buildTransitive/net6.0/_._",
  7237. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
  7238. "lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
  7239. "lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
  7240. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
  7241. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
  7242. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
  7243. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
  7244. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
  7245. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
  7246. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  7247. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  7248. "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
  7249. "microsoft.extensions.logging.eventlog.nuspec",
  7250. "useSharedDesignerContext.txt"
  7251. ]
  7252. },
  7253. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  7254. "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
  7255. "type": "package",
  7256. "path": "microsoft.extensions.logging.eventsource/8.0.0",
  7257. "files": [
  7258. ".nupkg.metadata",
  7259. ".signature.p7s",
  7260. "Icon.png",
  7261. "LICENSE.TXT",
  7262. "THIRD-PARTY-NOTICES.TXT",
  7263. "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
  7264. "buildTransitive/net462/_._",
  7265. "buildTransitive/net6.0/_._",
  7266. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
  7267. "lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
  7268. "lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
  7269. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
  7270. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
  7271. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
  7272. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
  7273. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
  7274. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
  7275. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  7276. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  7277. "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
  7278. "microsoft.extensions.logging.eventsource.nuspec",
  7279. "useSharedDesignerContext.txt"
  7280. ]
  7281. },
  7282. "Microsoft.Extensions.Options/8.0.0": {
  7283. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  7284. "type": "package",
  7285. "path": "microsoft.extensions.options/8.0.0",
  7286. "files": [
  7287. ".nupkg.metadata",
  7288. ".signature.p7s",
  7289. "Icon.png",
  7290. "LICENSE.TXT",
  7291. "PACKAGE.md",
  7292. "THIRD-PARTY-NOTICES.TXT",
  7293. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  7294. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7295. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7296. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7297. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7298. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7299. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7300. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7301. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7302. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7303. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7304. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7305. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7306. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7307. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  7308. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  7309. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  7310. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  7311. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  7312. "lib/net462/Microsoft.Extensions.Options.dll",
  7313. "lib/net462/Microsoft.Extensions.Options.xml",
  7314. "lib/net6.0/Microsoft.Extensions.Options.dll",
  7315. "lib/net6.0/Microsoft.Extensions.Options.xml",
  7316. "lib/net7.0/Microsoft.Extensions.Options.dll",
  7317. "lib/net7.0/Microsoft.Extensions.Options.xml",
  7318. "lib/net8.0/Microsoft.Extensions.Options.dll",
  7319. "lib/net8.0/Microsoft.Extensions.Options.xml",
  7320. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  7321. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  7322. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  7323. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  7324. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  7325. "microsoft.extensions.options.nuspec",
  7326. "useSharedDesignerContext.txt"
  7327. ]
  7328. },
  7329. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  7330. "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
  7331. "type": "package",
  7332. "path": "microsoft.extensions.options.configurationextensions/8.0.0",
  7333. "files": [
  7334. ".nupkg.metadata",
  7335. ".signature.p7s",
  7336. "Icon.png",
  7337. "LICENSE.TXT",
  7338. "PACKAGE.md",
  7339. "THIRD-PARTY-NOTICES.TXT",
  7340. "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  7341. "buildTransitive/net462/_._",
  7342. "buildTransitive/net6.0/_._",
  7343. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  7344. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7345. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7346. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7347. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7348. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7349. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7350. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7351. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7352. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7353. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7354. "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
  7355. "microsoft.extensions.options.configurationextensions.nuspec",
  7356. "useSharedDesignerContext.txt"
  7357. ]
  7358. },
  7359. "Microsoft.Extensions.Primitives/8.0.0": {
  7360. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  7361. "type": "package",
  7362. "path": "microsoft.extensions.primitives/8.0.0",
  7363. "files": [
  7364. ".nupkg.metadata",
  7365. ".signature.p7s",
  7366. "Icon.png",
  7367. "LICENSE.TXT",
  7368. "PACKAGE.md",
  7369. "THIRD-PARTY-NOTICES.TXT",
  7370. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  7371. "buildTransitive/net462/_._",
  7372. "buildTransitive/net6.0/_._",
  7373. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  7374. "lib/net462/Microsoft.Extensions.Primitives.dll",
  7375. "lib/net462/Microsoft.Extensions.Primitives.xml",
  7376. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  7377. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  7378. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  7379. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  7380. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  7381. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  7382. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  7383. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  7384. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  7385. "microsoft.extensions.primitives.nuspec",
  7386. "useSharedDesignerContext.txt"
  7387. ]
  7388. },
  7389. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  7390. "sha512": "GiQzMSzHQWPhnjpn/xy6SGcjtN8ZJbhB9ZEg3RglJ64QwH+VGp7xEpIN674UgjSDF+jJSrAY4/7/2S6F7Nh0hw==",
  7391. "type": "package",
  7392. "path": "microsoft.identitymodel.abstractions/7.4.1",
  7393. "files": [
  7394. ".nupkg.metadata",
  7395. ".signature.p7s",
  7396. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  7397. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  7398. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  7399. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  7400. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  7401. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  7402. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  7403. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  7404. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  7405. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  7406. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  7407. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  7408. "microsoft.identitymodel.abstractions.7.4.1.nupkg.sha512",
  7409. "microsoft.identitymodel.abstractions.nuspec"
  7410. ]
  7411. },
  7412. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  7413. "sha512": "RnrQO8IniImY6qrC9qYDc7UBcbPF7+Dp14ee9TqKnlB2/oyIKq8Q3tJ/65zgYvfV4p6iMYLpi+W8C/36J58cIg==",
  7414. "type": "package",
  7415. "path": "microsoft.identitymodel.jsonwebtokens/7.4.1",
  7416. "files": [
  7417. ".nupkg.metadata",
  7418. ".signature.p7s",
  7419. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  7420. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  7421. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  7422. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  7423. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  7424. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  7425. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7426. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7427. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7428. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7429. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7430. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7431. "microsoft.identitymodel.jsonwebtokens.7.4.1.nupkg.sha512",
  7432. "microsoft.identitymodel.jsonwebtokens.nuspec"
  7433. ]
  7434. },
  7435. "Microsoft.IdentityModel.Logging/7.4.1": {
  7436. "sha512": "QsNBNAdoTP+JxBqqMw3isVeV86z2b+ka94Pue3eRRz8O15mfHhcSnb10IM+aqavAaxCO+EwNu5F/yyRlQ0usWg==",
  7437. "type": "package",
  7438. "path": "microsoft.identitymodel.logging/7.4.1",
  7439. "files": [
  7440. ".nupkg.metadata",
  7441. ".signature.p7s",
  7442. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  7443. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  7444. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  7445. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  7446. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  7447. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  7448. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  7449. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  7450. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  7451. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  7452. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  7453. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  7454. "microsoft.identitymodel.logging.7.4.1.nupkg.sha512",
  7455. "microsoft.identitymodel.logging.nuspec"
  7456. ]
  7457. },
  7458. "Microsoft.IdentityModel.Tokens/7.4.1": {
  7459. "sha512": "akl3hQWdj87XkSRahwhrmx9ZfchF97RZoKr9v9fwjrpQz3t0x8lnsjcOfButSS6cvyY/EX0HJuXb5hgkqFjP/g==",
  7460. "type": "package",
  7461. "path": "microsoft.identitymodel.tokens/7.4.1",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. ".signature.p7s",
  7465. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  7466. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  7467. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  7468. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  7469. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  7470. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  7471. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  7472. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  7473. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  7474. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  7475. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  7476. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  7477. "microsoft.identitymodel.tokens.7.4.1.nupkg.sha512",
  7478. "microsoft.identitymodel.tokens.nuspec"
  7479. ]
  7480. },
  7481. "Microsoft.NETCore.Platforms/2.1.2": {
  7482. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  7483. "type": "package",
  7484. "path": "microsoft.netcore.platforms/2.1.2",
  7485. "files": [
  7486. ".nupkg.metadata",
  7487. ".signature.p7s",
  7488. "LICENSE.TXT",
  7489. "THIRD-PARTY-NOTICES.TXT",
  7490. "lib/netstandard1.0/_._",
  7491. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  7492. "microsoft.netcore.platforms.nuspec",
  7493. "runtime.json",
  7494. "useSharedDesignerContext.txt",
  7495. "version.txt"
  7496. ]
  7497. },
  7498. "Microsoft.NETCore.Targets/3.0.0": {
  7499. "sha512": "WOwoFoWQ+/njjM0pKbnkKTBo8q3NphEOtu1zMXbqRoWsI07JSXWSycgN3cdM+NlhkXxH4TNEFtI5Pjm94N6DLw==",
  7500. "type": "package",
  7501. "path": "microsoft.netcore.targets/3.0.0",
  7502. "files": [
  7503. ".nupkg.metadata",
  7504. ".signature.p7s",
  7505. "LICENSE.TXT",
  7506. "THIRD-PARTY-NOTICES.TXT",
  7507. "lib/netstandard1.0/_._",
  7508. "microsoft.netcore.targets.3.0.0.nupkg.sha512",
  7509. "microsoft.netcore.targets.nuspec",
  7510. "useSharedDesignerContext.txt",
  7511. "version.txt"
  7512. ]
  7513. },
  7514. "Microsoft.OpenApi/1.3.1": {
  7515. "sha512": "2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  7516. "type": "package",
  7517. "path": "microsoft.openapi/1.3.1",
  7518. "files": [
  7519. ".nupkg.metadata",
  7520. ".signature.p7s",
  7521. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  7522. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  7523. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  7524. "microsoft.openapi.1.3.1.nupkg.sha512",
  7525. "microsoft.openapi.nuspec"
  7526. ]
  7527. },
  7528. "Microsoft.Win32.Primitives/4.0.1": {
  7529. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  7530. "type": "package",
  7531. "path": "microsoft.win32.primitives/4.0.1",
  7532. "files": [
  7533. ".nupkg.metadata",
  7534. ".signature.p7s",
  7535. "ThirdPartyNotices.txt",
  7536. "dotnet_library_license.txt",
  7537. "lib/MonoAndroid10/_._",
  7538. "lib/MonoTouch10/_._",
  7539. "lib/net46/Microsoft.Win32.Primitives.dll",
  7540. "lib/xamarinios10/_._",
  7541. "lib/xamarinmac20/_._",
  7542. "lib/xamarintvos10/_._",
  7543. "lib/xamarinwatchos10/_._",
  7544. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  7545. "microsoft.win32.primitives.nuspec",
  7546. "ref/MonoAndroid10/_._",
  7547. "ref/MonoTouch10/_._",
  7548. "ref/net46/Microsoft.Win32.Primitives.dll",
  7549. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  7550. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  7551. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  7552. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  7553. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  7554. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  7555. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  7556. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  7557. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  7558. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  7559. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  7560. "ref/xamarinios10/_._",
  7561. "ref/xamarinmac20/_._",
  7562. "ref/xamarintvos10/_._",
  7563. "ref/xamarinwatchos10/_._"
  7564. ]
  7565. },
  7566. "Microsoft.Win32.SystemEvents/6.0.0": {
  7567. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  7568. "type": "package",
  7569. "path": "microsoft.win32.systemevents/6.0.0",
  7570. "files": [
  7571. ".nupkg.metadata",
  7572. ".signature.p7s",
  7573. "Icon.png",
  7574. "LICENSE.TXT",
  7575. "THIRD-PARTY-NOTICES.TXT",
  7576. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  7577. "buildTransitive/netcoreapp3.1/_._",
  7578. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  7579. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  7580. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  7581. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  7582. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  7583. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  7584. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  7585. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  7586. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  7587. "microsoft.win32.systemevents.nuspec",
  7588. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  7589. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  7590. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  7591. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  7592. "useSharedDesignerContext.txt"
  7593. ]
  7594. },
  7595. "MySql.Data/8.0.22": {
  7596. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  7597. "type": "package",
  7598. "path": "mysql.data/8.0.22",
  7599. "files": [
  7600. ".nupkg.metadata",
  7601. ".signature.p7s",
  7602. "lib/net452/MySql.Data.dll",
  7603. "lib/net452/MySql.Data.xml",
  7604. "lib/net452/Ubiety.Dns.Core.dll",
  7605. "lib/net452/Zstandard.Net.dll",
  7606. "lib/net48/MySql.Data.dll",
  7607. "lib/net48/MySql.Data.xml",
  7608. "lib/net48/Ubiety.Dns.Core.dll",
  7609. "lib/net48/Zstandard.Net.dll",
  7610. "lib/net5.0/MySql.Data.dll",
  7611. "lib/net5.0/MySql.Data.xml",
  7612. "lib/net5.0/Ubiety.Dns.Core.dll",
  7613. "lib/net5.0/Zstandard.Net.dll",
  7614. "lib/netstandard2.0/MySql.Data.dll",
  7615. "lib/netstandard2.0/MySql.Data.xml",
  7616. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  7617. "lib/netstandard2.0/Zstandard.Net.dll",
  7618. "lib/netstandard2.1/MySql.Data.dll",
  7619. "lib/netstandard2.1/MySql.Data.xml",
  7620. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  7621. "lib/netstandard2.1/Zstandard.Net.dll",
  7622. "mysql.data.8.0.22.nupkg.sha512",
  7623. "mysql.data.nuspec"
  7624. ]
  7625. },
  7626. "MySql.Data.EntityFrameworkCore/8.0.22": {
  7627. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  7628. "type": "package",
  7629. "path": "mysql.data.entityframeworkcore/8.0.22",
  7630. "files": [
  7631. ".nupkg.metadata",
  7632. ".signature.p7s",
  7633. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  7634. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  7635. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  7636. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  7637. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  7638. "mysql.data.entityframeworkcore.nuspec"
  7639. ]
  7640. },
  7641. "NETStandard.Library/1.6.0": {
  7642. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  7643. "type": "package",
  7644. "path": "netstandard.library/1.6.0",
  7645. "files": [
  7646. ".nupkg.metadata",
  7647. ".signature.p7s",
  7648. "ThirdPartyNotices.txt",
  7649. "dotnet_library_license.txt",
  7650. "netstandard.library.1.6.0.nupkg.sha512",
  7651. "netstandard.library.nuspec"
  7652. ]
  7653. },
  7654. "Newtonsoft.Json/13.0.3": {
  7655. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  7656. "type": "package",
  7657. "path": "newtonsoft.json/13.0.3",
  7658. "files": [
  7659. ".nupkg.metadata",
  7660. ".signature.p7s",
  7661. "LICENSE.md",
  7662. "README.md",
  7663. "lib/net20/Newtonsoft.Json.dll",
  7664. "lib/net20/Newtonsoft.Json.xml",
  7665. "lib/net35/Newtonsoft.Json.dll",
  7666. "lib/net35/Newtonsoft.Json.xml",
  7667. "lib/net40/Newtonsoft.Json.dll",
  7668. "lib/net40/Newtonsoft.Json.xml",
  7669. "lib/net45/Newtonsoft.Json.dll",
  7670. "lib/net45/Newtonsoft.Json.xml",
  7671. "lib/net6.0/Newtonsoft.Json.dll",
  7672. "lib/net6.0/Newtonsoft.Json.xml",
  7673. "lib/netstandard1.0/Newtonsoft.Json.dll",
  7674. "lib/netstandard1.0/Newtonsoft.Json.xml",
  7675. "lib/netstandard1.3/Newtonsoft.Json.dll",
  7676. "lib/netstandard1.3/Newtonsoft.Json.xml",
  7677. "lib/netstandard2.0/Newtonsoft.Json.dll",
  7678. "lib/netstandard2.0/Newtonsoft.Json.xml",
  7679. "newtonsoft.json.13.0.3.nupkg.sha512",
  7680. "newtonsoft.json.nuspec",
  7681. "packageIcon.png"
  7682. ]
  7683. },
  7684. "NLog/5.2.8": {
  7685. "sha512": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==",
  7686. "type": "package",
  7687. "path": "nlog/5.2.8",
  7688. "files": [
  7689. ".nupkg.metadata",
  7690. ".signature.p7s",
  7691. "N.png",
  7692. "lib/net35/NLog.dll",
  7693. "lib/net35/NLog.xml",
  7694. "lib/net45/NLog.dll",
  7695. "lib/net45/NLog.xml",
  7696. "lib/net46/NLog.dll",
  7697. "lib/net46/NLog.xml",
  7698. "lib/netstandard1.3/NLog.dll",
  7699. "lib/netstandard1.3/NLog.xml",
  7700. "lib/netstandard1.5/NLog.dll",
  7701. "lib/netstandard1.5/NLog.xml",
  7702. "lib/netstandard2.0/NLog.dll",
  7703. "lib/netstandard2.0/NLog.xml",
  7704. "nlog.5.2.8.nupkg.sha512",
  7705. "nlog.nuspec"
  7706. ]
  7707. },
  7708. "NLog.Extensions.Logging/5.3.8": {
  7709. "sha512": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==",
  7710. "type": "package",
  7711. "path": "nlog.extensions.logging/5.3.8",
  7712. "files": [
  7713. ".nupkg.metadata",
  7714. ".signature.p7s",
  7715. "N.png",
  7716. "README.md",
  7717. "lib/net461/NLog.Extensions.Logging.dll",
  7718. "lib/net461/NLog.Extensions.Logging.xml",
  7719. "lib/net6.0/NLog.Extensions.Logging.dll",
  7720. "lib/net6.0/NLog.Extensions.Logging.xml",
  7721. "lib/net8.0/NLog.Extensions.Logging.dll",
  7722. "lib/net8.0/NLog.Extensions.Logging.xml",
  7723. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  7724. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  7725. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  7726. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  7727. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  7728. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  7729. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  7730. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  7731. "nlog.extensions.logging.5.3.8.nupkg.sha512",
  7732. "nlog.extensions.logging.nuspec"
  7733. ]
  7734. },
  7735. "NLog.Web.AspNetCore/5.3.8": {
  7736. "sha512": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==",
  7737. "type": "package",
  7738. "path": "nlog.web.aspnetcore/5.3.8",
  7739. "files": [
  7740. ".nupkg.metadata",
  7741. ".signature.p7s",
  7742. "N.png",
  7743. "README.md",
  7744. "lib/net461/NLog.Web.AspNetCore.dll",
  7745. "lib/net461/NLog.Web.AspNetCore.xml",
  7746. "lib/net5.0/NLog.Web.AspNetCore.dll",
  7747. "lib/net5.0/NLog.Web.AspNetCore.xml",
  7748. "lib/net6.0/NLog.Web.AspNetCore.dll",
  7749. "lib/net6.0/NLog.Web.AspNetCore.xml",
  7750. "lib/net8.0/NLog.Web.AspNetCore.dll",
  7751. "lib/net8.0/NLog.Web.AspNetCore.xml",
  7752. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  7753. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  7754. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  7755. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  7756. "nlog.web.aspnetcore.5.3.8.nupkg.sha512",
  7757. "nlog.web.aspnetcore.nuspec"
  7758. ]
  7759. },
  7760. "Pipelines.Sockets.Unofficial/2.2.8": {
  7761. "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  7762. "type": "package",
  7763. "path": "pipelines.sockets.unofficial/2.2.8",
  7764. "files": [
  7765. ".nupkg.metadata",
  7766. ".signature.p7s",
  7767. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  7768. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  7769. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  7770. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  7771. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  7772. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  7773. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  7774. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  7775. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  7776. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  7777. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  7778. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  7779. "pipelines.sockets.unofficial.2.2.8.nupkg.sha512",
  7780. "pipelines.sockets.unofficial.nuspec"
  7781. ]
  7782. },
  7783. "Quartz/3.8.1": {
  7784. "sha512": "HlKm+43iG8LmXfejL1kIijO107x8ozEShLT2PFIkOWNSHUj7O7yTl6icFrn6DocPvigudQ90a6h2gdFShOwyXw==",
  7785. "type": "package",
  7786. "path": "quartz/3.8.1",
  7787. "files": [
  7788. ".nupkg.metadata",
  7789. ".signature.p7s",
  7790. "lib/net462/Quartz.dll",
  7791. "lib/net462/Quartz.xml",
  7792. "lib/net472/Quartz.dll",
  7793. "lib/net472/Quartz.xml",
  7794. "lib/net6.0/Quartz.dll",
  7795. "lib/net6.0/Quartz.xml",
  7796. "lib/netstandard2.0/Quartz.dll",
  7797. "lib/netstandard2.0/Quartz.xml",
  7798. "quartz-logo-small.png",
  7799. "quartz.3.8.1.nupkg.sha512",
  7800. "quartz.nuspec",
  7801. "quick-start.md"
  7802. ]
  7803. },
  7804. "runtime.native.System/4.0.0": {
  7805. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  7806. "type": "package",
  7807. "path": "runtime.native.system/4.0.0",
  7808. "files": [
  7809. ".nupkg.metadata",
  7810. ".signature.p7s",
  7811. "ThirdPartyNotices.txt",
  7812. "dotnet_library_license.txt",
  7813. "lib/netstandard1.0/_._",
  7814. "runtime.native.system.4.0.0.nupkg.sha512",
  7815. "runtime.native.system.nuspec"
  7816. ]
  7817. },
  7818. "runtime.native.System.IO.Compression/4.1.0": {
  7819. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  7820. "type": "package",
  7821. "path": "runtime.native.system.io.compression/4.1.0",
  7822. "files": [
  7823. ".nupkg.metadata",
  7824. ".signature.p7s",
  7825. "ThirdPartyNotices.txt",
  7826. "dotnet_library_license.txt",
  7827. "lib/netstandard1.0/_._",
  7828. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  7829. "runtime.native.system.io.compression.nuspec"
  7830. ]
  7831. },
  7832. "runtime.native.System.Net.Http/4.0.1": {
  7833. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  7834. "type": "package",
  7835. "path": "runtime.native.system.net.http/4.0.1",
  7836. "files": [
  7837. ".nupkg.metadata",
  7838. ".signature.p7s",
  7839. "ThirdPartyNotices.txt",
  7840. "dotnet_library_license.txt",
  7841. "lib/netstandard1.0/_._",
  7842. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  7843. "runtime.native.system.net.http.nuspec"
  7844. ]
  7845. },
  7846. "runtime.native.System.Security.Cryptography/4.0.0": {
  7847. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  7848. "type": "package",
  7849. "path": "runtime.native.system.security.cryptography/4.0.0",
  7850. "files": [
  7851. ".nupkg.metadata",
  7852. ".signature.p7s",
  7853. "ThirdPartyNotices.txt",
  7854. "dotnet_library_license.txt",
  7855. "lib/netstandard1.0/_._",
  7856. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  7857. "runtime.native.system.security.cryptography.nuspec"
  7858. ]
  7859. },
  7860. "Scrutor/3.3.0": {
  7861. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  7862. "type": "package",
  7863. "path": "scrutor/3.3.0",
  7864. "files": [
  7865. ".nupkg.metadata",
  7866. ".signature.p7s",
  7867. "lib/net461/Scrutor.dll",
  7868. "lib/net461/Scrutor.pdb",
  7869. "lib/net461/Scrutor.xml",
  7870. "lib/netcoreapp3.1/Scrutor.dll",
  7871. "lib/netcoreapp3.1/Scrutor.pdb",
  7872. "lib/netcoreapp3.1/Scrutor.xml",
  7873. "lib/netstandard2.0/Scrutor.dll",
  7874. "lib/netstandard2.0/Scrutor.pdb",
  7875. "lib/netstandard2.0/Scrutor.xml",
  7876. "scrutor.3.3.0.nupkg.sha512",
  7877. "scrutor.nuspec"
  7878. ]
  7879. },
  7880. "SSH.NET/2016.1.0": {
  7881. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  7882. "type": "package",
  7883. "path": "ssh.net/2016.1.0",
  7884. "files": [
  7885. ".nupkg.metadata",
  7886. ".signature.p7s",
  7887. "lib/net35/Renci.SshNet.dll",
  7888. "lib/net35/Renci.SshNet.xml",
  7889. "lib/net40/Renci.SshNet.dll",
  7890. "lib/net40/Renci.SshNet.xml",
  7891. "lib/netstandard1.3/Renci.SshNet.dll",
  7892. "lib/netstandard1.3/Renci.SshNet.xml",
  7893. "lib/sl4/Renci.SshNet.dll",
  7894. "lib/sl4/Renci.SshNet.xml",
  7895. "lib/sl5/Renci.SshNet.dll",
  7896. "lib/sl5/Renci.SshNet.xml",
  7897. "lib/uap10/Renci.SshNet.dll",
  7898. "lib/uap10/Renci.SshNet.xml",
  7899. "lib/wp71/Renci.SshNet.dll",
  7900. "lib/wp71/Renci.SshNet.xml",
  7901. "lib/wp8/Renci.SshNet.dll",
  7902. "lib/wp8/Renci.SshNet.xml",
  7903. "ssh.net.2016.1.0.nupkg.sha512",
  7904. "ssh.net.nuspec"
  7905. ]
  7906. },
  7907. "SshNet.Security.Cryptography/1.2.0": {
  7908. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  7909. "type": "package",
  7910. "path": "sshnet.security.cryptography/1.2.0",
  7911. "files": [
  7912. ".nupkg.metadata",
  7913. ".signature.p7s",
  7914. "lib/net20/SshNet.Security.Cryptography.dll",
  7915. "lib/net20/SshNet.Security.Cryptography.xml",
  7916. "lib/net40/SshNet.Security.Cryptography.dll",
  7917. "lib/net40/SshNet.Security.Cryptography.xml",
  7918. "lib/net45/SshNet.Security.Cryptography.dll",
  7919. "lib/net45/SshNet.Security.Cryptography.xml",
  7920. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  7921. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  7922. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  7923. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  7924. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  7925. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  7926. "lib/sl4/SshNet.Security.Cryptography.dll",
  7927. "lib/sl4/SshNet.Security.Cryptography.xml",
  7928. "lib/sl5/SshNet.Security.Cryptography.dll",
  7929. "lib/sl5/SshNet.Security.Cryptography.xml",
  7930. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  7931. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  7932. "lib/wp71/SshNet.Security.Cryptography.dll",
  7933. "lib/wp71/SshNet.Security.Cryptography.xml",
  7934. "lib/wp8/SshNet.Security.Cryptography.dll",
  7935. "lib/wp8/SshNet.Security.Cryptography.xml",
  7936. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  7937. "sshnet.security.cryptography.nuspec"
  7938. ]
  7939. },
  7940. "StackExchange.Redis/2.7.33": {
  7941. "sha512": "2kCX5fvhEE824a4Ab5Imyi8DRuGuTxyklXV01kegkRpsWJcPmO6+GAQ+HegKxvXAxlXZ8yaRspvWJ8t3mMClfQ==",
  7942. "type": "package",
  7943. "path": "stackexchange.redis/2.7.33",
  7944. "files": [
  7945. ".nupkg.metadata",
  7946. ".signature.p7s",
  7947. "lib/net461/StackExchange.Redis.dll",
  7948. "lib/net461/StackExchange.Redis.xml",
  7949. "lib/net472/StackExchange.Redis.dll",
  7950. "lib/net472/StackExchange.Redis.xml",
  7951. "lib/net6.0/StackExchange.Redis.dll",
  7952. "lib/net6.0/StackExchange.Redis.xml",
  7953. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  7954. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  7955. "lib/netstandard2.0/StackExchange.Redis.dll",
  7956. "lib/netstandard2.0/StackExchange.Redis.xml",
  7957. "stackexchange.redis.2.7.33.nupkg.sha512",
  7958. "stackexchange.redis.nuspec"
  7959. ]
  7960. },
  7961. "Swashbuckle.AspNetCore/6.5.0": {
  7962. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  7963. "type": "package",
  7964. "path": "swashbuckle.aspnetcore/6.5.0",
  7965. "files": [
  7966. ".nupkg.metadata",
  7967. ".signature.p7s",
  7968. "build/Swashbuckle.AspNetCore.props",
  7969. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  7970. "swashbuckle.aspnetcore.nuspec"
  7971. ]
  7972. },
  7973. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  7974. "sha512": "CQbJaQdelQGmgZR48FmITGYdfjXTG//hGpSEOwv3cLU5md8c6+YRY23KydX44IXRmHGAYwXrBlnuy98Daoa0zw==",
  7975. "type": "package",
  7976. "path": "swashbuckle.aspnetcore.filters/8.0.1",
  7977. "files": [
  7978. ".nupkg.metadata",
  7979. ".signature.p7s",
  7980. "README.md",
  7981. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  7982. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  7983. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  7984. "swashbuckle.aspnetcore.filters.8.0.1.nupkg.sha512",
  7985. "swashbuckle.aspnetcore.filters.nuspec"
  7986. ]
  7987. },
  7988. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  7989. "sha512": "HaMNzwz544xccQ0vn1jYK6UY9XZcgZRYYI4NaBAdow2oj0UycN6zdryoaaCa2S9D9Cu1qjsbdjp2FthYqM/wpQ==",
  7990. "type": "package",
  7991. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.1",
  7992. "files": [
  7993. ".nupkg.metadata",
  7994. ".signature.p7s",
  7995. "README.md",
  7996. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7997. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7998. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7999. "swashbuckle.aspnetcore.filters.abstractions.8.0.1.nupkg.sha512",
  8000. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  8001. ]
  8002. },
  8003. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  8004. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  8005. "type": "package",
  8006. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  8007. "files": [
  8008. ".nupkg.metadata",
  8009. ".signature.p7s",
  8010. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  8011. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8012. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  8013. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  8014. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8015. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  8016. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  8017. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8018. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  8019. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  8020. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8021. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  8022. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  8023. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8024. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  8025. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  8026. "swashbuckle.aspnetcore.swagger.nuspec"
  8027. ]
  8028. },
  8029. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  8030. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  8031. "type": "package",
  8032. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  8033. "files": [
  8034. ".nupkg.metadata",
  8035. ".signature.p7s",
  8036. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8037. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8038. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8039. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8040. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8041. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8042. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8043. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8044. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8045. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8046. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8047. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8048. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8049. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8050. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8051. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  8052. "swashbuckle.aspnetcore.swaggergen.nuspec"
  8053. ]
  8054. },
  8055. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  8056. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  8057. "type": "package",
  8058. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  8059. "files": [
  8060. ".nupkg.metadata",
  8061. ".signature.p7s",
  8062. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8063. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8064. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8065. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8066. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8067. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8068. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8069. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8070. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8071. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8072. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8073. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8074. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8075. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8076. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8077. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  8078. "swashbuckle.aspnetcore.swaggerui.nuspec"
  8079. ]
  8080. },
  8081. "System.AppContext/4.1.0": {
  8082. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  8083. "type": "package",
  8084. "path": "system.appcontext/4.1.0",
  8085. "files": [
  8086. ".nupkg.metadata",
  8087. ".signature.p7s",
  8088. "ThirdPartyNotices.txt",
  8089. "dotnet_library_license.txt",
  8090. "lib/MonoAndroid10/_._",
  8091. "lib/MonoTouch10/_._",
  8092. "lib/net46/System.AppContext.dll",
  8093. "lib/net463/System.AppContext.dll",
  8094. "lib/netcore50/System.AppContext.dll",
  8095. "lib/netstandard1.6/System.AppContext.dll",
  8096. "lib/xamarinios10/_._",
  8097. "lib/xamarinmac20/_._",
  8098. "lib/xamarintvos10/_._",
  8099. "lib/xamarinwatchos10/_._",
  8100. "ref/MonoAndroid10/_._",
  8101. "ref/MonoTouch10/_._",
  8102. "ref/net46/System.AppContext.dll",
  8103. "ref/net463/System.AppContext.dll",
  8104. "ref/netstandard/_._",
  8105. "ref/netstandard1.3/System.AppContext.dll",
  8106. "ref/netstandard1.3/System.AppContext.xml",
  8107. "ref/netstandard1.3/de/System.AppContext.xml",
  8108. "ref/netstandard1.3/es/System.AppContext.xml",
  8109. "ref/netstandard1.3/fr/System.AppContext.xml",
  8110. "ref/netstandard1.3/it/System.AppContext.xml",
  8111. "ref/netstandard1.3/ja/System.AppContext.xml",
  8112. "ref/netstandard1.3/ko/System.AppContext.xml",
  8113. "ref/netstandard1.3/ru/System.AppContext.xml",
  8114. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  8115. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  8116. "ref/netstandard1.6/System.AppContext.dll",
  8117. "ref/netstandard1.6/System.AppContext.xml",
  8118. "ref/netstandard1.6/de/System.AppContext.xml",
  8119. "ref/netstandard1.6/es/System.AppContext.xml",
  8120. "ref/netstandard1.6/fr/System.AppContext.xml",
  8121. "ref/netstandard1.6/it/System.AppContext.xml",
  8122. "ref/netstandard1.6/ja/System.AppContext.xml",
  8123. "ref/netstandard1.6/ko/System.AppContext.xml",
  8124. "ref/netstandard1.6/ru/System.AppContext.xml",
  8125. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  8126. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  8127. "ref/xamarinios10/_._",
  8128. "ref/xamarinmac20/_._",
  8129. "ref/xamarintvos10/_._",
  8130. "ref/xamarinwatchos10/_._",
  8131. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  8132. "system.appcontext.4.1.0.nupkg.sha512",
  8133. "system.appcontext.nuspec"
  8134. ]
  8135. },
  8136. "System.Buffers/4.5.1": {
  8137. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  8138. "type": "package",
  8139. "path": "system.buffers/4.5.1",
  8140. "files": [
  8141. ".nupkg.metadata",
  8142. ".signature.p7s",
  8143. "LICENSE.TXT",
  8144. "THIRD-PARTY-NOTICES.TXT",
  8145. "lib/net461/System.Buffers.dll",
  8146. "lib/net461/System.Buffers.xml",
  8147. "lib/netcoreapp2.0/_._",
  8148. "lib/netstandard1.1/System.Buffers.dll",
  8149. "lib/netstandard1.1/System.Buffers.xml",
  8150. "lib/netstandard2.0/System.Buffers.dll",
  8151. "lib/netstandard2.0/System.Buffers.xml",
  8152. "lib/uap10.0.16299/_._",
  8153. "ref/net45/System.Buffers.dll",
  8154. "ref/net45/System.Buffers.xml",
  8155. "ref/netcoreapp2.0/_._",
  8156. "ref/netstandard1.1/System.Buffers.dll",
  8157. "ref/netstandard1.1/System.Buffers.xml",
  8158. "ref/netstandard2.0/System.Buffers.dll",
  8159. "ref/netstandard2.0/System.Buffers.xml",
  8160. "ref/uap10.0.16299/_._",
  8161. "system.buffers.4.5.1.nupkg.sha512",
  8162. "system.buffers.nuspec",
  8163. "useSharedDesignerContext.txt",
  8164. "version.txt"
  8165. ]
  8166. },
  8167. "System.Collections/4.0.11": {
  8168. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  8169. "type": "package",
  8170. "path": "system.collections/4.0.11",
  8171. "files": [
  8172. ".nupkg.metadata",
  8173. ".signature.p7s",
  8174. "ThirdPartyNotices.txt",
  8175. "dotnet_library_license.txt",
  8176. "lib/MonoAndroid10/_._",
  8177. "lib/MonoTouch10/_._",
  8178. "lib/net45/_._",
  8179. "lib/portable-net45+win8+wp8+wpa81/_._",
  8180. "lib/win8/_._",
  8181. "lib/wp80/_._",
  8182. "lib/wpa81/_._",
  8183. "lib/xamarinios10/_._",
  8184. "lib/xamarinmac20/_._",
  8185. "lib/xamarintvos10/_._",
  8186. "lib/xamarinwatchos10/_._",
  8187. "ref/MonoAndroid10/_._",
  8188. "ref/MonoTouch10/_._",
  8189. "ref/net45/_._",
  8190. "ref/netcore50/System.Collections.dll",
  8191. "ref/netcore50/System.Collections.xml",
  8192. "ref/netcore50/de/System.Collections.xml",
  8193. "ref/netcore50/es/System.Collections.xml",
  8194. "ref/netcore50/fr/System.Collections.xml",
  8195. "ref/netcore50/it/System.Collections.xml",
  8196. "ref/netcore50/ja/System.Collections.xml",
  8197. "ref/netcore50/ko/System.Collections.xml",
  8198. "ref/netcore50/ru/System.Collections.xml",
  8199. "ref/netcore50/zh-hans/System.Collections.xml",
  8200. "ref/netcore50/zh-hant/System.Collections.xml",
  8201. "ref/netstandard1.0/System.Collections.dll",
  8202. "ref/netstandard1.0/System.Collections.xml",
  8203. "ref/netstandard1.0/de/System.Collections.xml",
  8204. "ref/netstandard1.0/es/System.Collections.xml",
  8205. "ref/netstandard1.0/fr/System.Collections.xml",
  8206. "ref/netstandard1.0/it/System.Collections.xml",
  8207. "ref/netstandard1.0/ja/System.Collections.xml",
  8208. "ref/netstandard1.0/ko/System.Collections.xml",
  8209. "ref/netstandard1.0/ru/System.Collections.xml",
  8210. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  8211. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  8212. "ref/netstandard1.3/System.Collections.dll",
  8213. "ref/netstandard1.3/System.Collections.xml",
  8214. "ref/netstandard1.3/de/System.Collections.xml",
  8215. "ref/netstandard1.3/es/System.Collections.xml",
  8216. "ref/netstandard1.3/fr/System.Collections.xml",
  8217. "ref/netstandard1.3/it/System.Collections.xml",
  8218. "ref/netstandard1.3/ja/System.Collections.xml",
  8219. "ref/netstandard1.3/ko/System.Collections.xml",
  8220. "ref/netstandard1.3/ru/System.Collections.xml",
  8221. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  8222. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  8223. "ref/portable-net45+win8+wp8+wpa81/_._",
  8224. "ref/win8/_._",
  8225. "ref/wp80/_._",
  8226. "ref/wpa81/_._",
  8227. "ref/xamarinios10/_._",
  8228. "ref/xamarinmac20/_._",
  8229. "ref/xamarintvos10/_._",
  8230. "ref/xamarinwatchos10/_._",
  8231. "system.collections.4.0.11.nupkg.sha512",
  8232. "system.collections.nuspec"
  8233. ]
  8234. },
  8235. "System.Collections.Concurrent/4.0.12": {
  8236. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  8237. "type": "package",
  8238. "path": "system.collections.concurrent/4.0.12",
  8239. "files": [
  8240. ".nupkg.metadata",
  8241. ".signature.p7s",
  8242. "ThirdPartyNotices.txt",
  8243. "dotnet_library_license.txt",
  8244. "lib/MonoAndroid10/_._",
  8245. "lib/MonoTouch10/_._",
  8246. "lib/net45/_._",
  8247. "lib/netcore50/System.Collections.Concurrent.dll",
  8248. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  8249. "lib/portable-net45+win8+wpa81/_._",
  8250. "lib/win8/_._",
  8251. "lib/wpa81/_._",
  8252. "lib/xamarinios10/_._",
  8253. "lib/xamarinmac20/_._",
  8254. "lib/xamarintvos10/_._",
  8255. "lib/xamarinwatchos10/_._",
  8256. "ref/MonoAndroid10/_._",
  8257. "ref/MonoTouch10/_._",
  8258. "ref/net45/_._",
  8259. "ref/netcore50/System.Collections.Concurrent.dll",
  8260. "ref/netcore50/System.Collections.Concurrent.xml",
  8261. "ref/netcore50/de/System.Collections.Concurrent.xml",
  8262. "ref/netcore50/es/System.Collections.Concurrent.xml",
  8263. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  8264. "ref/netcore50/it/System.Collections.Concurrent.xml",
  8265. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  8266. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  8267. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  8268. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  8269. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  8270. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  8271. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  8272. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  8273. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  8274. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  8275. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  8276. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  8277. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  8278. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  8279. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  8280. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  8281. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  8282. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  8283. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  8284. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  8285. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  8286. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  8287. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  8288. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  8289. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  8290. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  8291. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  8292. "ref/portable-net45+win8+wpa81/_._",
  8293. "ref/win8/_._",
  8294. "ref/wpa81/_._",
  8295. "ref/xamarinios10/_._",
  8296. "ref/xamarinmac20/_._",
  8297. "ref/xamarintvos10/_._",
  8298. "ref/xamarinwatchos10/_._",
  8299. "system.collections.concurrent.4.0.12.nupkg.sha512",
  8300. "system.collections.concurrent.nuspec"
  8301. ]
  8302. },
  8303. "System.Collections.Immutable/1.7.0": {
  8304. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  8305. "type": "package",
  8306. "path": "system.collections.immutable/1.7.0",
  8307. "files": [
  8308. ".nupkg.metadata",
  8309. ".signature.p7s",
  8310. "LICENSE.TXT",
  8311. "THIRD-PARTY-NOTICES.TXT",
  8312. "lib/netstandard1.0/System.Collections.Immutable.dll",
  8313. "lib/netstandard1.0/System.Collections.Immutable.xml",
  8314. "lib/netstandard1.3/System.Collections.Immutable.dll",
  8315. "lib/netstandard1.3/System.Collections.Immutable.xml",
  8316. "lib/netstandard2.0/System.Collections.Immutable.dll",
  8317. "lib/netstandard2.0/System.Collections.Immutable.xml",
  8318. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  8319. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  8320. "system.collections.immutable.1.7.0.nupkg.sha512",
  8321. "system.collections.immutable.nuspec",
  8322. "useSharedDesignerContext.txt",
  8323. "version.txt"
  8324. ]
  8325. },
  8326. "System.ComponentModel.Annotations/5.0.0": {
  8327. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  8328. "type": "package",
  8329. "path": "system.componentmodel.annotations/5.0.0",
  8330. "files": [
  8331. ".nupkg.metadata",
  8332. ".signature.p7s",
  8333. "Icon.png",
  8334. "LICENSE.TXT",
  8335. "THIRD-PARTY-NOTICES.TXT",
  8336. "lib/MonoAndroid10/_._",
  8337. "lib/MonoTouch10/_._",
  8338. "lib/net45/_._",
  8339. "lib/net461/System.ComponentModel.Annotations.dll",
  8340. "lib/netcore50/System.ComponentModel.Annotations.dll",
  8341. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  8342. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  8343. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  8344. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  8345. "lib/portable-net45+win8/_._",
  8346. "lib/win8/_._",
  8347. "lib/xamarinios10/_._",
  8348. "lib/xamarinmac20/_._",
  8349. "lib/xamarintvos10/_._",
  8350. "lib/xamarinwatchos10/_._",
  8351. "ref/MonoAndroid10/_._",
  8352. "ref/MonoTouch10/_._",
  8353. "ref/net45/_._",
  8354. "ref/net461/System.ComponentModel.Annotations.dll",
  8355. "ref/net461/System.ComponentModel.Annotations.xml",
  8356. "ref/netcore50/System.ComponentModel.Annotations.dll",
  8357. "ref/netcore50/System.ComponentModel.Annotations.xml",
  8358. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  8359. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  8360. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  8361. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  8362. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  8363. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  8364. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  8365. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  8366. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  8367. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  8368. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  8369. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  8370. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  8371. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  8372. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  8373. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  8374. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  8375. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  8376. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  8377. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  8378. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  8379. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  8380. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  8381. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  8382. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  8383. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  8384. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  8385. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  8386. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  8387. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  8388. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  8389. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  8390. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  8391. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  8392. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  8393. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  8394. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  8395. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  8396. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  8397. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  8398. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  8399. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  8400. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  8401. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  8402. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  8403. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  8404. "ref/portable-net45+win8/_._",
  8405. "ref/win8/_._",
  8406. "ref/xamarinios10/_._",
  8407. "ref/xamarinmac20/_._",
  8408. "ref/xamarintvos10/_._",
  8409. "ref/xamarinwatchos10/_._",
  8410. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  8411. "system.componentmodel.annotations.nuspec",
  8412. "useSharedDesignerContext.txt",
  8413. "version.txt"
  8414. ]
  8415. },
  8416. "System.Configuration.ConfigurationManager/6.0.1": {
  8417. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  8418. "type": "package",
  8419. "path": "system.configuration.configurationmanager/6.0.1",
  8420. "files": [
  8421. ".nupkg.metadata",
  8422. ".signature.p7s",
  8423. "Icon.png",
  8424. "LICENSE.TXT",
  8425. "THIRD-PARTY-NOTICES.TXT",
  8426. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  8427. "buildTransitive/netcoreapp3.1/_._",
  8428. "lib/net461/System.Configuration.ConfigurationManager.dll",
  8429. "lib/net461/System.Configuration.ConfigurationManager.xml",
  8430. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  8431. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  8432. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  8433. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  8434. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  8435. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  8436. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  8437. "system.configuration.configurationmanager.nuspec",
  8438. "useSharedDesignerContext.txt"
  8439. ]
  8440. },
  8441. "System.Console/4.0.0": {
  8442. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  8443. "type": "package",
  8444. "path": "system.console/4.0.0",
  8445. "files": [
  8446. ".nupkg.metadata",
  8447. ".signature.p7s",
  8448. "ThirdPartyNotices.txt",
  8449. "dotnet_library_license.txt",
  8450. "lib/MonoAndroid10/_._",
  8451. "lib/MonoTouch10/_._",
  8452. "lib/net46/System.Console.dll",
  8453. "lib/xamarinios10/_._",
  8454. "lib/xamarinmac20/_._",
  8455. "lib/xamarintvos10/_._",
  8456. "lib/xamarinwatchos10/_._",
  8457. "ref/MonoAndroid10/_._",
  8458. "ref/MonoTouch10/_._",
  8459. "ref/net46/System.Console.dll",
  8460. "ref/netstandard1.3/System.Console.dll",
  8461. "ref/netstandard1.3/System.Console.xml",
  8462. "ref/netstandard1.3/de/System.Console.xml",
  8463. "ref/netstandard1.3/es/System.Console.xml",
  8464. "ref/netstandard1.3/fr/System.Console.xml",
  8465. "ref/netstandard1.3/it/System.Console.xml",
  8466. "ref/netstandard1.3/ja/System.Console.xml",
  8467. "ref/netstandard1.3/ko/System.Console.xml",
  8468. "ref/netstandard1.3/ru/System.Console.xml",
  8469. "ref/netstandard1.3/zh-hans/System.Console.xml",
  8470. "ref/netstandard1.3/zh-hant/System.Console.xml",
  8471. "ref/xamarinios10/_._",
  8472. "ref/xamarinmac20/_._",
  8473. "ref/xamarintvos10/_._",
  8474. "ref/xamarinwatchos10/_._",
  8475. "system.console.4.0.0.nupkg.sha512",
  8476. "system.console.nuspec"
  8477. ]
  8478. },
  8479. "System.Diagnostics.Debug/4.0.11": {
  8480. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  8481. "type": "package",
  8482. "path": "system.diagnostics.debug/4.0.11",
  8483. "files": [
  8484. ".nupkg.metadata",
  8485. ".signature.p7s",
  8486. "ThirdPartyNotices.txt",
  8487. "dotnet_library_license.txt",
  8488. "lib/MonoAndroid10/_._",
  8489. "lib/MonoTouch10/_._",
  8490. "lib/net45/_._",
  8491. "lib/portable-net45+win8+wp8+wpa81/_._",
  8492. "lib/win8/_._",
  8493. "lib/wp80/_._",
  8494. "lib/wpa81/_._",
  8495. "lib/xamarinios10/_._",
  8496. "lib/xamarinmac20/_._",
  8497. "lib/xamarintvos10/_._",
  8498. "lib/xamarinwatchos10/_._",
  8499. "ref/MonoAndroid10/_._",
  8500. "ref/MonoTouch10/_._",
  8501. "ref/net45/_._",
  8502. "ref/netcore50/System.Diagnostics.Debug.dll",
  8503. "ref/netcore50/System.Diagnostics.Debug.xml",
  8504. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  8505. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  8506. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  8507. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  8508. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  8509. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  8510. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  8511. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  8512. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  8513. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  8514. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  8515. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  8516. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  8517. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  8518. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  8519. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  8520. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  8521. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  8522. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  8523. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  8524. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  8525. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  8526. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  8527. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  8528. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  8529. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  8530. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  8531. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  8532. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  8533. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  8534. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  8535. "ref/portable-net45+win8+wp8+wpa81/_._",
  8536. "ref/win8/_._",
  8537. "ref/wp80/_._",
  8538. "ref/wpa81/_._",
  8539. "ref/xamarinios10/_._",
  8540. "ref/xamarinmac20/_._",
  8541. "ref/xamarintvos10/_._",
  8542. "ref/xamarinwatchos10/_._",
  8543. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  8544. "system.diagnostics.debug.nuspec"
  8545. ]
  8546. },
  8547. "System.Diagnostics.DiagnosticSource/8.0.0": {
  8548. "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
  8549. "type": "package",
  8550. "path": "system.diagnostics.diagnosticsource/8.0.0",
  8551. "files": [
  8552. ".nupkg.metadata",
  8553. ".signature.p7s",
  8554. "Icon.png",
  8555. "LICENSE.TXT",
  8556. "THIRD-PARTY-NOTICES.TXT",
  8557. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  8558. "buildTransitive/net462/_._",
  8559. "buildTransitive/net6.0/_._",
  8560. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  8561. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  8562. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  8563. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  8564. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  8565. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  8566. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  8567. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  8568. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  8569. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  8570. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  8571. "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
  8572. "system.diagnostics.diagnosticsource.nuspec",
  8573. "useSharedDesignerContext.txt"
  8574. ]
  8575. },
  8576. "System.Diagnostics.EventLog/8.0.0": {
  8577. "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
  8578. "type": "package",
  8579. "path": "system.diagnostics.eventlog/8.0.0",
  8580. "files": [
  8581. ".nupkg.metadata",
  8582. ".signature.p7s",
  8583. "Icon.png",
  8584. "LICENSE.TXT",
  8585. "PACKAGE.md",
  8586. "THIRD-PARTY-NOTICES.TXT",
  8587. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  8588. "buildTransitive/net462/_._",
  8589. "buildTransitive/net6.0/_._",
  8590. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  8591. "lib/net462/System.Diagnostics.EventLog.dll",
  8592. "lib/net462/System.Diagnostics.EventLog.xml",
  8593. "lib/net6.0/System.Diagnostics.EventLog.dll",
  8594. "lib/net6.0/System.Diagnostics.EventLog.xml",
  8595. "lib/net7.0/System.Diagnostics.EventLog.dll",
  8596. "lib/net7.0/System.Diagnostics.EventLog.xml",
  8597. "lib/net8.0/System.Diagnostics.EventLog.dll",
  8598. "lib/net8.0/System.Diagnostics.EventLog.xml",
  8599. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  8600. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  8601. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  8602. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  8603. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  8604. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  8605. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  8606. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  8607. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
  8608. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
  8609. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
  8610. "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
  8611. "system.diagnostics.eventlog.nuspec",
  8612. "useSharedDesignerContext.txt"
  8613. ]
  8614. },
  8615. "System.Diagnostics.Tools/4.0.1": {
  8616. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  8617. "type": "package",
  8618. "path": "system.diagnostics.tools/4.0.1",
  8619. "files": [
  8620. ".nupkg.metadata",
  8621. ".signature.p7s",
  8622. "ThirdPartyNotices.txt",
  8623. "dotnet_library_license.txt",
  8624. "lib/MonoAndroid10/_._",
  8625. "lib/MonoTouch10/_._",
  8626. "lib/net45/_._",
  8627. "lib/portable-net45+win8+wp8+wpa81/_._",
  8628. "lib/win8/_._",
  8629. "lib/wp80/_._",
  8630. "lib/wpa81/_._",
  8631. "lib/xamarinios10/_._",
  8632. "lib/xamarinmac20/_._",
  8633. "lib/xamarintvos10/_._",
  8634. "lib/xamarinwatchos10/_._",
  8635. "ref/MonoAndroid10/_._",
  8636. "ref/MonoTouch10/_._",
  8637. "ref/net45/_._",
  8638. "ref/netcore50/System.Diagnostics.Tools.dll",
  8639. "ref/netcore50/System.Diagnostics.Tools.xml",
  8640. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  8641. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  8642. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  8643. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  8644. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  8645. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  8646. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  8647. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  8648. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  8649. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  8650. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  8651. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  8652. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  8653. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  8654. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  8655. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  8656. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  8657. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  8658. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  8659. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  8660. "ref/portable-net45+win8+wp8+wpa81/_._",
  8661. "ref/win8/_._",
  8662. "ref/wp80/_._",
  8663. "ref/wpa81/_._",
  8664. "ref/xamarinios10/_._",
  8665. "ref/xamarinmac20/_._",
  8666. "ref/xamarintvos10/_._",
  8667. "ref/xamarinwatchos10/_._",
  8668. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  8669. "system.diagnostics.tools.nuspec"
  8670. ]
  8671. },
  8672. "System.Diagnostics.TraceSource/4.0.0": {
  8673. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  8674. "type": "package",
  8675. "path": "system.diagnostics.tracesource/4.0.0",
  8676. "files": [
  8677. ".nupkg.metadata",
  8678. ".signature.p7s",
  8679. "ThirdPartyNotices.txt",
  8680. "dotnet_library_license.txt",
  8681. "lib/MonoAndroid10/_._",
  8682. "lib/MonoTouch10/_._",
  8683. "lib/net46/System.Diagnostics.TraceSource.dll",
  8684. "lib/xamarinios10/_._",
  8685. "lib/xamarinmac20/_._",
  8686. "lib/xamarintvos10/_._",
  8687. "lib/xamarinwatchos10/_._",
  8688. "ref/MonoAndroid10/_._",
  8689. "ref/MonoTouch10/_._",
  8690. "ref/net46/System.Diagnostics.TraceSource.dll",
  8691. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8692. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  8693. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  8694. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  8695. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  8696. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  8697. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  8698. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  8699. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  8700. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  8701. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  8702. "ref/xamarinios10/_._",
  8703. "ref/xamarinmac20/_._",
  8704. "ref/xamarintvos10/_._",
  8705. "ref/xamarinwatchos10/_._",
  8706. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8707. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  8708. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8709. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  8710. "system.diagnostics.tracesource.nuspec"
  8711. ]
  8712. },
  8713. "System.Diagnostics.Tracing/4.1.0": {
  8714. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  8715. "type": "package",
  8716. "path": "system.diagnostics.tracing/4.1.0",
  8717. "files": [
  8718. ".nupkg.metadata",
  8719. ".signature.p7s",
  8720. "ThirdPartyNotices.txt",
  8721. "dotnet_library_license.txt",
  8722. "lib/MonoAndroid10/_._",
  8723. "lib/MonoTouch10/_._",
  8724. "lib/net45/_._",
  8725. "lib/net462/System.Diagnostics.Tracing.dll",
  8726. "lib/portable-net45+win8+wpa81/_._",
  8727. "lib/win8/_._",
  8728. "lib/wpa81/_._",
  8729. "lib/xamarinios10/_._",
  8730. "lib/xamarinmac20/_._",
  8731. "lib/xamarintvos10/_._",
  8732. "lib/xamarinwatchos10/_._",
  8733. "ref/MonoAndroid10/_._",
  8734. "ref/MonoTouch10/_._",
  8735. "ref/net45/_._",
  8736. "ref/net462/System.Diagnostics.Tracing.dll",
  8737. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8738. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8739. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8740. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8741. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8742. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8743. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8744. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8745. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8746. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8747. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8748. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8749. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8750. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8751. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8752. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8753. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8754. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8755. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8756. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8757. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8758. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8759. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8760. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8761. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8762. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8763. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8764. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8765. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8766. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8767. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8768. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8769. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8770. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8771. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8772. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8773. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8774. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8775. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8776. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8777. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8778. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8779. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8780. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8781. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8782. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8783. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8784. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8785. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8786. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8787. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8788. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8789. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8790. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8791. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8792. "ref/portable-net45+win8+wpa81/_._",
  8793. "ref/win8/_._",
  8794. "ref/wpa81/_._",
  8795. "ref/xamarinios10/_._",
  8796. "ref/xamarinmac20/_._",
  8797. "ref/xamarintvos10/_._",
  8798. "ref/xamarinwatchos10/_._",
  8799. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  8800. "system.diagnostics.tracing.nuspec"
  8801. ]
  8802. },
  8803. "System.Drawing.Common/6.0.0": {
  8804. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  8805. "type": "package",
  8806. "path": "system.drawing.common/6.0.0",
  8807. "files": [
  8808. ".nupkg.metadata",
  8809. ".signature.p7s",
  8810. "Icon.png",
  8811. "LICENSE.TXT",
  8812. "THIRD-PARTY-NOTICES.TXT",
  8813. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  8814. "buildTransitive/netcoreapp3.1/_._",
  8815. "lib/MonoAndroid10/_._",
  8816. "lib/MonoTouch10/_._",
  8817. "lib/net461/System.Drawing.Common.dll",
  8818. "lib/net461/System.Drawing.Common.xml",
  8819. "lib/net6.0/System.Drawing.Common.dll",
  8820. "lib/net6.0/System.Drawing.Common.xml",
  8821. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  8822. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  8823. "lib/netstandard2.0/System.Drawing.Common.dll",
  8824. "lib/netstandard2.0/System.Drawing.Common.xml",
  8825. "lib/xamarinios10/_._",
  8826. "lib/xamarinmac20/_._",
  8827. "lib/xamarintvos10/_._",
  8828. "lib/xamarinwatchos10/_._",
  8829. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  8830. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  8831. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8832. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8833. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  8834. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  8835. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8836. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8837. "system.drawing.common.6.0.0.nupkg.sha512",
  8838. "system.drawing.common.nuspec",
  8839. "useSharedDesignerContext.txt"
  8840. ]
  8841. },
  8842. "System.Globalization/4.0.11": {
  8843. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  8844. "type": "package",
  8845. "path": "system.globalization/4.0.11",
  8846. "files": [
  8847. ".nupkg.metadata",
  8848. ".signature.p7s",
  8849. "ThirdPartyNotices.txt",
  8850. "dotnet_library_license.txt",
  8851. "lib/MonoAndroid10/_._",
  8852. "lib/MonoTouch10/_._",
  8853. "lib/net45/_._",
  8854. "lib/portable-net45+win8+wp8+wpa81/_._",
  8855. "lib/win8/_._",
  8856. "lib/wp80/_._",
  8857. "lib/wpa81/_._",
  8858. "lib/xamarinios10/_._",
  8859. "lib/xamarinmac20/_._",
  8860. "lib/xamarintvos10/_._",
  8861. "lib/xamarinwatchos10/_._",
  8862. "ref/MonoAndroid10/_._",
  8863. "ref/MonoTouch10/_._",
  8864. "ref/net45/_._",
  8865. "ref/netcore50/System.Globalization.dll",
  8866. "ref/netcore50/System.Globalization.xml",
  8867. "ref/netcore50/de/System.Globalization.xml",
  8868. "ref/netcore50/es/System.Globalization.xml",
  8869. "ref/netcore50/fr/System.Globalization.xml",
  8870. "ref/netcore50/it/System.Globalization.xml",
  8871. "ref/netcore50/ja/System.Globalization.xml",
  8872. "ref/netcore50/ko/System.Globalization.xml",
  8873. "ref/netcore50/ru/System.Globalization.xml",
  8874. "ref/netcore50/zh-hans/System.Globalization.xml",
  8875. "ref/netcore50/zh-hant/System.Globalization.xml",
  8876. "ref/netstandard1.0/System.Globalization.dll",
  8877. "ref/netstandard1.0/System.Globalization.xml",
  8878. "ref/netstandard1.0/de/System.Globalization.xml",
  8879. "ref/netstandard1.0/es/System.Globalization.xml",
  8880. "ref/netstandard1.0/fr/System.Globalization.xml",
  8881. "ref/netstandard1.0/it/System.Globalization.xml",
  8882. "ref/netstandard1.0/ja/System.Globalization.xml",
  8883. "ref/netstandard1.0/ko/System.Globalization.xml",
  8884. "ref/netstandard1.0/ru/System.Globalization.xml",
  8885. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  8886. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  8887. "ref/netstandard1.3/System.Globalization.dll",
  8888. "ref/netstandard1.3/System.Globalization.xml",
  8889. "ref/netstandard1.3/de/System.Globalization.xml",
  8890. "ref/netstandard1.3/es/System.Globalization.xml",
  8891. "ref/netstandard1.3/fr/System.Globalization.xml",
  8892. "ref/netstandard1.3/it/System.Globalization.xml",
  8893. "ref/netstandard1.3/ja/System.Globalization.xml",
  8894. "ref/netstandard1.3/ko/System.Globalization.xml",
  8895. "ref/netstandard1.3/ru/System.Globalization.xml",
  8896. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  8897. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  8898. "ref/portable-net45+win8+wp8+wpa81/_._",
  8899. "ref/win8/_._",
  8900. "ref/wp80/_._",
  8901. "ref/wpa81/_._",
  8902. "ref/xamarinios10/_._",
  8903. "ref/xamarinmac20/_._",
  8904. "ref/xamarintvos10/_._",
  8905. "ref/xamarinwatchos10/_._",
  8906. "system.globalization.4.0.11.nupkg.sha512",
  8907. "system.globalization.nuspec"
  8908. ]
  8909. },
  8910. "System.Globalization.Calendars/4.0.1": {
  8911. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  8912. "type": "package",
  8913. "path": "system.globalization.calendars/4.0.1",
  8914. "files": [
  8915. ".nupkg.metadata",
  8916. ".signature.p7s",
  8917. "ThirdPartyNotices.txt",
  8918. "dotnet_library_license.txt",
  8919. "lib/MonoAndroid10/_._",
  8920. "lib/MonoTouch10/_._",
  8921. "lib/net46/System.Globalization.Calendars.dll",
  8922. "lib/xamarinios10/_._",
  8923. "lib/xamarinmac20/_._",
  8924. "lib/xamarintvos10/_._",
  8925. "lib/xamarinwatchos10/_._",
  8926. "ref/MonoAndroid10/_._",
  8927. "ref/MonoTouch10/_._",
  8928. "ref/net46/System.Globalization.Calendars.dll",
  8929. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  8930. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  8931. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  8932. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  8933. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  8934. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  8935. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  8936. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  8937. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  8938. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  8939. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  8940. "ref/xamarinios10/_._",
  8941. "ref/xamarinmac20/_._",
  8942. "ref/xamarintvos10/_._",
  8943. "ref/xamarinwatchos10/_._",
  8944. "system.globalization.calendars.4.0.1.nupkg.sha512",
  8945. "system.globalization.calendars.nuspec"
  8946. ]
  8947. },
  8948. "System.Globalization.Extensions/4.0.1": {
  8949. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  8950. "type": "package",
  8951. "path": "system.globalization.extensions/4.0.1",
  8952. "files": [
  8953. ".nupkg.metadata",
  8954. ".signature.p7s",
  8955. "ThirdPartyNotices.txt",
  8956. "dotnet_library_license.txt",
  8957. "lib/MonoAndroid10/_._",
  8958. "lib/MonoTouch10/_._",
  8959. "lib/net46/System.Globalization.Extensions.dll",
  8960. "lib/xamarinios10/_._",
  8961. "lib/xamarinmac20/_._",
  8962. "lib/xamarintvos10/_._",
  8963. "lib/xamarinwatchos10/_._",
  8964. "ref/MonoAndroid10/_._",
  8965. "ref/MonoTouch10/_._",
  8966. "ref/net46/System.Globalization.Extensions.dll",
  8967. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  8968. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  8969. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  8970. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  8971. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  8972. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  8973. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  8974. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  8975. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  8976. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  8977. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  8978. "ref/xamarinios10/_._",
  8979. "ref/xamarinmac20/_._",
  8980. "ref/xamarintvos10/_._",
  8981. "ref/xamarinwatchos10/_._",
  8982. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8983. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  8984. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8985. "system.globalization.extensions.4.0.1.nupkg.sha512",
  8986. "system.globalization.extensions.nuspec"
  8987. ]
  8988. },
  8989. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  8990. "sha512": "V8T6qCdNI5OEUafOhyOnyuwHlTs56hPE6nQLNDXDNI7MIQO8MGRQVuWOruzEscURXpGbNuRz+m8qFrT8SDeEQA==",
  8991. "type": "package",
  8992. "path": "system.identitymodel.tokens.jwt/7.4.1",
  8993. "files": [
  8994. ".nupkg.metadata",
  8995. ".signature.p7s",
  8996. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  8997. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  8998. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  8999. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  9000. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  9001. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  9002. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  9003. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  9004. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  9005. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  9006. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  9007. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  9008. "system.identitymodel.tokens.jwt.7.4.1.nupkg.sha512",
  9009. "system.identitymodel.tokens.jwt.nuspec"
  9010. ]
  9011. },
  9012. "System.IO/4.3.0": {
  9013. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  9014. "type": "package",
  9015. "path": "system.io/4.3.0",
  9016. "files": [
  9017. ".nupkg.metadata",
  9018. ".signature.p7s",
  9019. "ThirdPartyNotices.txt",
  9020. "dotnet_library_license.txt",
  9021. "lib/MonoAndroid10/_._",
  9022. "lib/MonoTouch10/_._",
  9023. "lib/net45/_._",
  9024. "lib/net462/System.IO.dll",
  9025. "lib/portable-net45+win8+wp8+wpa81/_._",
  9026. "lib/win8/_._",
  9027. "lib/wp80/_._",
  9028. "lib/wpa81/_._",
  9029. "lib/xamarinios10/_._",
  9030. "lib/xamarinmac20/_._",
  9031. "lib/xamarintvos10/_._",
  9032. "lib/xamarinwatchos10/_._",
  9033. "ref/MonoAndroid10/_._",
  9034. "ref/MonoTouch10/_._",
  9035. "ref/net45/_._",
  9036. "ref/net462/System.IO.dll",
  9037. "ref/netcore50/System.IO.dll",
  9038. "ref/netcore50/System.IO.xml",
  9039. "ref/netcore50/de/System.IO.xml",
  9040. "ref/netcore50/es/System.IO.xml",
  9041. "ref/netcore50/fr/System.IO.xml",
  9042. "ref/netcore50/it/System.IO.xml",
  9043. "ref/netcore50/ja/System.IO.xml",
  9044. "ref/netcore50/ko/System.IO.xml",
  9045. "ref/netcore50/ru/System.IO.xml",
  9046. "ref/netcore50/zh-hans/System.IO.xml",
  9047. "ref/netcore50/zh-hant/System.IO.xml",
  9048. "ref/netstandard1.0/System.IO.dll",
  9049. "ref/netstandard1.0/System.IO.xml",
  9050. "ref/netstandard1.0/de/System.IO.xml",
  9051. "ref/netstandard1.0/es/System.IO.xml",
  9052. "ref/netstandard1.0/fr/System.IO.xml",
  9053. "ref/netstandard1.0/it/System.IO.xml",
  9054. "ref/netstandard1.0/ja/System.IO.xml",
  9055. "ref/netstandard1.0/ko/System.IO.xml",
  9056. "ref/netstandard1.0/ru/System.IO.xml",
  9057. "ref/netstandard1.0/zh-hans/System.IO.xml",
  9058. "ref/netstandard1.0/zh-hant/System.IO.xml",
  9059. "ref/netstandard1.3/System.IO.dll",
  9060. "ref/netstandard1.3/System.IO.xml",
  9061. "ref/netstandard1.3/de/System.IO.xml",
  9062. "ref/netstandard1.3/es/System.IO.xml",
  9063. "ref/netstandard1.3/fr/System.IO.xml",
  9064. "ref/netstandard1.3/it/System.IO.xml",
  9065. "ref/netstandard1.3/ja/System.IO.xml",
  9066. "ref/netstandard1.3/ko/System.IO.xml",
  9067. "ref/netstandard1.3/ru/System.IO.xml",
  9068. "ref/netstandard1.3/zh-hans/System.IO.xml",
  9069. "ref/netstandard1.3/zh-hant/System.IO.xml",
  9070. "ref/netstandard1.5/System.IO.dll",
  9071. "ref/netstandard1.5/System.IO.xml",
  9072. "ref/netstandard1.5/de/System.IO.xml",
  9073. "ref/netstandard1.5/es/System.IO.xml",
  9074. "ref/netstandard1.5/fr/System.IO.xml",
  9075. "ref/netstandard1.5/it/System.IO.xml",
  9076. "ref/netstandard1.5/ja/System.IO.xml",
  9077. "ref/netstandard1.5/ko/System.IO.xml",
  9078. "ref/netstandard1.5/ru/System.IO.xml",
  9079. "ref/netstandard1.5/zh-hans/System.IO.xml",
  9080. "ref/netstandard1.5/zh-hant/System.IO.xml",
  9081. "ref/portable-net45+win8+wp8+wpa81/_._",
  9082. "ref/win8/_._",
  9083. "ref/wp80/_._",
  9084. "ref/wpa81/_._",
  9085. "ref/xamarinios10/_._",
  9086. "ref/xamarinmac20/_._",
  9087. "ref/xamarintvos10/_._",
  9088. "ref/xamarinwatchos10/_._",
  9089. "system.io.4.3.0.nupkg.sha512",
  9090. "system.io.nuspec"
  9091. ]
  9092. },
  9093. "System.IO.Compression/4.1.0": {
  9094. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  9095. "type": "package",
  9096. "path": "system.io.compression/4.1.0",
  9097. "files": [
  9098. ".nupkg.metadata",
  9099. ".signature.p7s",
  9100. "ThirdPartyNotices.txt",
  9101. "dotnet_library_license.txt",
  9102. "lib/MonoAndroid10/_._",
  9103. "lib/MonoTouch10/_._",
  9104. "lib/net45/_._",
  9105. "lib/net46/System.IO.Compression.dll",
  9106. "lib/portable-net45+win8+wpa81/_._",
  9107. "lib/win8/_._",
  9108. "lib/wpa81/_._",
  9109. "lib/xamarinios10/_._",
  9110. "lib/xamarinmac20/_._",
  9111. "lib/xamarintvos10/_._",
  9112. "lib/xamarinwatchos10/_._",
  9113. "ref/MonoAndroid10/_._",
  9114. "ref/MonoTouch10/_._",
  9115. "ref/net45/_._",
  9116. "ref/net46/System.IO.Compression.dll",
  9117. "ref/netcore50/System.IO.Compression.dll",
  9118. "ref/netcore50/System.IO.Compression.xml",
  9119. "ref/netcore50/de/System.IO.Compression.xml",
  9120. "ref/netcore50/es/System.IO.Compression.xml",
  9121. "ref/netcore50/fr/System.IO.Compression.xml",
  9122. "ref/netcore50/it/System.IO.Compression.xml",
  9123. "ref/netcore50/ja/System.IO.Compression.xml",
  9124. "ref/netcore50/ko/System.IO.Compression.xml",
  9125. "ref/netcore50/ru/System.IO.Compression.xml",
  9126. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  9127. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  9128. "ref/netstandard1.1/System.IO.Compression.dll",
  9129. "ref/netstandard1.1/System.IO.Compression.xml",
  9130. "ref/netstandard1.1/de/System.IO.Compression.xml",
  9131. "ref/netstandard1.1/es/System.IO.Compression.xml",
  9132. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  9133. "ref/netstandard1.1/it/System.IO.Compression.xml",
  9134. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  9135. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  9136. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  9137. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  9138. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  9139. "ref/netstandard1.3/System.IO.Compression.dll",
  9140. "ref/netstandard1.3/System.IO.Compression.xml",
  9141. "ref/netstandard1.3/de/System.IO.Compression.xml",
  9142. "ref/netstandard1.3/es/System.IO.Compression.xml",
  9143. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  9144. "ref/netstandard1.3/it/System.IO.Compression.xml",
  9145. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  9146. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  9147. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  9148. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  9149. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  9150. "ref/portable-net45+win8+wpa81/_._",
  9151. "ref/win8/_._",
  9152. "ref/wpa81/_._",
  9153. "ref/xamarinios10/_._",
  9154. "ref/xamarinmac20/_._",
  9155. "ref/xamarintvos10/_._",
  9156. "ref/xamarinwatchos10/_._",
  9157. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  9158. "runtimes/win/lib/net46/System.IO.Compression.dll",
  9159. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  9160. "system.io.compression.4.1.0.nupkg.sha512",
  9161. "system.io.compression.nuspec"
  9162. ]
  9163. },
  9164. "System.IO.Compression.ZipFile/4.0.1": {
  9165. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  9166. "type": "package",
  9167. "path": "system.io.compression.zipfile/4.0.1",
  9168. "files": [
  9169. ".nupkg.metadata",
  9170. ".signature.p7s",
  9171. "ThirdPartyNotices.txt",
  9172. "dotnet_library_license.txt",
  9173. "lib/MonoAndroid10/_._",
  9174. "lib/MonoTouch10/_._",
  9175. "lib/net46/System.IO.Compression.ZipFile.dll",
  9176. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  9177. "lib/xamarinios10/_._",
  9178. "lib/xamarinmac20/_._",
  9179. "lib/xamarintvos10/_._",
  9180. "lib/xamarinwatchos10/_._",
  9181. "ref/MonoAndroid10/_._",
  9182. "ref/MonoTouch10/_._",
  9183. "ref/net46/System.IO.Compression.ZipFile.dll",
  9184. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  9185. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  9186. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  9187. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  9188. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  9189. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  9190. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  9191. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  9192. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  9193. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  9194. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  9195. "ref/xamarinios10/_._",
  9196. "ref/xamarinmac20/_._",
  9197. "ref/xamarintvos10/_._",
  9198. "ref/xamarinwatchos10/_._",
  9199. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  9200. "system.io.compression.zipfile.nuspec"
  9201. ]
  9202. },
  9203. "System.IO.FileSystem/4.0.1": {
  9204. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  9205. "type": "package",
  9206. "path": "system.io.filesystem/4.0.1",
  9207. "files": [
  9208. ".nupkg.metadata",
  9209. ".signature.p7s",
  9210. "ThirdPartyNotices.txt",
  9211. "dotnet_library_license.txt",
  9212. "lib/MonoAndroid10/_._",
  9213. "lib/MonoTouch10/_._",
  9214. "lib/net46/System.IO.FileSystem.dll",
  9215. "lib/xamarinios10/_._",
  9216. "lib/xamarinmac20/_._",
  9217. "lib/xamarintvos10/_._",
  9218. "lib/xamarinwatchos10/_._",
  9219. "ref/MonoAndroid10/_._",
  9220. "ref/MonoTouch10/_._",
  9221. "ref/net46/System.IO.FileSystem.dll",
  9222. "ref/netstandard1.3/System.IO.FileSystem.dll",
  9223. "ref/netstandard1.3/System.IO.FileSystem.xml",
  9224. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  9225. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  9226. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  9227. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  9228. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  9229. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  9230. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  9231. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  9232. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  9233. "ref/xamarinios10/_._",
  9234. "ref/xamarinmac20/_._",
  9235. "ref/xamarintvos10/_._",
  9236. "ref/xamarinwatchos10/_._",
  9237. "system.io.filesystem.4.0.1.nupkg.sha512",
  9238. "system.io.filesystem.nuspec"
  9239. ]
  9240. },
  9241. "System.IO.FileSystem.Primitives/4.0.1": {
  9242. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  9243. "type": "package",
  9244. "path": "system.io.filesystem.primitives/4.0.1",
  9245. "files": [
  9246. ".nupkg.metadata",
  9247. ".signature.p7s",
  9248. "ThirdPartyNotices.txt",
  9249. "dotnet_library_license.txt",
  9250. "lib/MonoAndroid10/_._",
  9251. "lib/MonoTouch10/_._",
  9252. "lib/net46/System.IO.FileSystem.Primitives.dll",
  9253. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  9254. "lib/xamarinios10/_._",
  9255. "lib/xamarinmac20/_._",
  9256. "lib/xamarintvos10/_._",
  9257. "lib/xamarinwatchos10/_._",
  9258. "ref/MonoAndroid10/_._",
  9259. "ref/MonoTouch10/_._",
  9260. "ref/net46/System.IO.FileSystem.Primitives.dll",
  9261. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  9262. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  9263. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  9264. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  9265. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  9266. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  9267. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  9268. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  9269. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  9270. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  9271. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  9272. "ref/xamarinios10/_._",
  9273. "ref/xamarinmac20/_._",
  9274. "ref/xamarintvos10/_._",
  9275. "ref/xamarinwatchos10/_._",
  9276. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  9277. "system.io.filesystem.primitives.nuspec"
  9278. ]
  9279. },
  9280. "System.IO.Pipelines/5.0.1": {
  9281. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  9282. "type": "package",
  9283. "path": "system.io.pipelines/5.0.1",
  9284. "files": [
  9285. ".nupkg.metadata",
  9286. ".signature.p7s",
  9287. "Icon.png",
  9288. "LICENSE.TXT",
  9289. "THIRD-PARTY-NOTICES.TXT",
  9290. "lib/net461/System.IO.Pipelines.dll",
  9291. "lib/net461/System.IO.Pipelines.xml",
  9292. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  9293. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  9294. "lib/netstandard1.3/System.IO.Pipelines.dll",
  9295. "lib/netstandard1.3/System.IO.Pipelines.xml",
  9296. "lib/netstandard2.0/System.IO.Pipelines.dll",
  9297. "lib/netstandard2.0/System.IO.Pipelines.xml",
  9298. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  9299. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  9300. "system.io.pipelines.5.0.1.nupkg.sha512",
  9301. "system.io.pipelines.nuspec",
  9302. "useSharedDesignerContext.txt",
  9303. "version.txt"
  9304. ]
  9305. },
  9306. "System.Linq/4.1.0": {
  9307. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  9308. "type": "package",
  9309. "path": "system.linq/4.1.0",
  9310. "files": [
  9311. ".nupkg.metadata",
  9312. ".signature.p7s",
  9313. "ThirdPartyNotices.txt",
  9314. "dotnet_library_license.txt",
  9315. "lib/MonoAndroid10/_._",
  9316. "lib/MonoTouch10/_._",
  9317. "lib/net45/_._",
  9318. "lib/net463/System.Linq.dll",
  9319. "lib/netcore50/System.Linq.dll",
  9320. "lib/netstandard1.6/System.Linq.dll",
  9321. "lib/portable-net45+win8+wp8+wpa81/_._",
  9322. "lib/win8/_._",
  9323. "lib/wp80/_._",
  9324. "lib/wpa81/_._",
  9325. "lib/xamarinios10/_._",
  9326. "lib/xamarinmac20/_._",
  9327. "lib/xamarintvos10/_._",
  9328. "lib/xamarinwatchos10/_._",
  9329. "ref/MonoAndroid10/_._",
  9330. "ref/MonoTouch10/_._",
  9331. "ref/net45/_._",
  9332. "ref/net463/System.Linq.dll",
  9333. "ref/netcore50/System.Linq.dll",
  9334. "ref/netcore50/System.Linq.xml",
  9335. "ref/netcore50/de/System.Linq.xml",
  9336. "ref/netcore50/es/System.Linq.xml",
  9337. "ref/netcore50/fr/System.Linq.xml",
  9338. "ref/netcore50/it/System.Linq.xml",
  9339. "ref/netcore50/ja/System.Linq.xml",
  9340. "ref/netcore50/ko/System.Linq.xml",
  9341. "ref/netcore50/ru/System.Linq.xml",
  9342. "ref/netcore50/zh-hans/System.Linq.xml",
  9343. "ref/netcore50/zh-hant/System.Linq.xml",
  9344. "ref/netstandard1.0/System.Linq.dll",
  9345. "ref/netstandard1.0/System.Linq.xml",
  9346. "ref/netstandard1.0/de/System.Linq.xml",
  9347. "ref/netstandard1.0/es/System.Linq.xml",
  9348. "ref/netstandard1.0/fr/System.Linq.xml",
  9349. "ref/netstandard1.0/it/System.Linq.xml",
  9350. "ref/netstandard1.0/ja/System.Linq.xml",
  9351. "ref/netstandard1.0/ko/System.Linq.xml",
  9352. "ref/netstandard1.0/ru/System.Linq.xml",
  9353. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  9354. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  9355. "ref/netstandard1.6/System.Linq.dll",
  9356. "ref/netstandard1.6/System.Linq.xml",
  9357. "ref/netstandard1.6/de/System.Linq.xml",
  9358. "ref/netstandard1.6/es/System.Linq.xml",
  9359. "ref/netstandard1.6/fr/System.Linq.xml",
  9360. "ref/netstandard1.6/it/System.Linq.xml",
  9361. "ref/netstandard1.6/ja/System.Linq.xml",
  9362. "ref/netstandard1.6/ko/System.Linq.xml",
  9363. "ref/netstandard1.6/ru/System.Linq.xml",
  9364. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  9365. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  9366. "ref/portable-net45+win8+wp8+wpa81/_._",
  9367. "ref/win8/_._",
  9368. "ref/wp80/_._",
  9369. "ref/wpa81/_._",
  9370. "ref/xamarinios10/_._",
  9371. "ref/xamarinmac20/_._",
  9372. "ref/xamarintvos10/_._",
  9373. "ref/xamarinwatchos10/_._",
  9374. "system.linq.4.1.0.nupkg.sha512",
  9375. "system.linq.nuspec"
  9376. ]
  9377. },
  9378. "System.Linq.Expressions/4.1.0": {
  9379. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  9380. "type": "package",
  9381. "path": "system.linq.expressions/4.1.0",
  9382. "files": [
  9383. ".nupkg.metadata",
  9384. ".signature.p7s",
  9385. "ThirdPartyNotices.txt",
  9386. "dotnet_library_license.txt",
  9387. "lib/MonoAndroid10/_._",
  9388. "lib/MonoTouch10/_._",
  9389. "lib/net45/_._",
  9390. "lib/net463/System.Linq.Expressions.dll",
  9391. "lib/netcore50/System.Linq.Expressions.dll",
  9392. "lib/netstandard1.6/System.Linq.Expressions.dll",
  9393. "lib/portable-net45+win8+wp8+wpa81/_._",
  9394. "lib/win8/_._",
  9395. "lib/wp80/_._",
  9396. "lib/wpa81/_._",
  9397. "lib/xamarinios10/_._",
  9398. "lib/xamarinmac20/_._",
  9399. "lib/xamarintvos10/_._",
  9400. "lib/xamarinwatchos10/_._",
  9401. "ref/MonoAndroid10/_._",
  9402. "ref/MonoTouch10/_._",
  9403. "ref/net45/_._",
  9404. "ref/net463/System.Linq.Expressions.dll",
  9405. "ref/netcore50/System.Linq.Expressions.dll",
  9406. "ref/netcore50/System.Linq.Expressions.xml",
  9407. "ref/netcore50/de/System.Linq.Expressions.xml",
  9408. "ref/netcore50/es/System.Linq.Expressions.xml",
  9409. "ref/netcore50/fr/System.Linq.Expressions.xml",
  9410. "ref/netcore50/it/System.Linq.Expressions.xml",
  9411. "ref/netcore50/ja/System.Linq.Expressions.xml",
  9412. "ref/netcore50/ko/System.Linq.Expressions.xml",
  9413. "ref/netcore50/ru/System.Linq.Expressions.xml",
  9414. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  9415. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  9416. "ref/netstandard1.0/System.Linq.Expressions.dll",
  9417. "ref/netstandard1.0/System.Linq.Expressions.xml",
  9418. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  9419. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  9420. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  9421. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  9422. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  9423. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  9424. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  9425. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  9426. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  9427. "ref/netstandard1.3/System.Linq.Expressions.dll",
  9428. "ref/netstandard1.3/System.Linq.Expressions.xml",
  9429. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  9430. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  9431. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  9432. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  9433. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  9434. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  9435. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  9436. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  9437. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  9438. "ref/netstandard1.6/System.Linq.Expressions.dll",
  9439. "ref/netstandard1.6/System.Linq.Expressions.xml",
  9440. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  9441. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  9442. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  9443. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  9444. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  9445. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  9446. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  9447. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  9448. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  9449. "ref/portable-net45+win8+wp8+wpa81/_._",
  9450. "ref/win8/_._",
  9451. "ref/wp80/_._",
  9452. "ref/wpa81/_._",
  9453. "ref/xamarinios10/_._",
  9454. "ref/xamarinmac20/_._",
  9455. "ref/xamarintvos10/_._",
  9456. "ref/xamarinwatchos10/_._",
  9457. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  9458. "system.linq.expressions.4.1.0.nupkg.sha512",
  9459. "system.linq.expressions.nuspec"
  9460. ]
  9461. },
  9462. "System.Memory/4.5.5": {
  9463. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  9464. "type": "package",
  9465. "path": "system.memory/4.5.5",
  9466. "files": [
  9467. ".nupkg.metadata",
  9468. ".signature.p7s",
  9469. "LICENSE.TXT",
  9470. "THIRD-PARTY-NOTICES.TXT",
  9471. "lib/net461/System.Memory.dll",
  9472. "lib/net461/System.Memory.xml",
  9473. "lib/netcoreapp2.1/_._",
  9474. "lib/netstandard1.1/System.Memory.dll",
  9475. "lib/netstandard1.1/System.Memory.xml",
  9476. "lib/netstandard2.0/System.Memory.dll",
  9477. "lib/netstandard2.0/System.Memory.xml",
  9478. "ref/netcoreapp2.1/_._",
  9479. "system.memory.4.5.5.nupkg.sha512",
  9480. "system.memory.nuspec",
  9481. "useSharedDesignerContext.txt",
  9482. "version.txt"
  9483. ]
  9484. },
  9485. "System.Net.Http/4.1.0": {
  9486. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  9487. "type": "package",
  9488. "path": "system.net.http/4.1.0",
  9489. "files": [
  9490. ".nupkg.metadata",
  9491. ".signature.p7s",
  9492. "ThirdPartyNotices.txt",
  9493. "dotnet_library_license.txt",
  9494. "lib/Xamarinmac20/_._",
  9495. "lib/monoandroid10/_._",
  9496. "lib/monotouch10/_._",
  9497. "lib/net45/_._",
  9498. "lib/net46/System.Net.Http.dll",
  9499. "lib/portable-net45+win8+wpa81/_._",
  9500. "lib/win8/_._",
  9501. "lib/wpa81/_._",
  9502. "lib/xamarinios10/_._",
  9503. "lib/xamarintvos10/_._",
  9504. "lib/xamarinwatchos10/_._",
  9505. "ref/Xamarinmac20/_._",
  9506. "ref/monoandroid10/_._",
  9507. "ref/monotouch10/_._",
  9508. "ref/net45/_._",
  9509. "ref/net46/System.Net.Http.dll",
  9510. "ref/net46/System.Net.Http.xml",
  9511. "ref/net46/de/System.Net.Http.xml",
  9512. "ref/net46/es/System.Net.Http.xml",
  9513. "ref/net46/fr/System.Net.Http.xml",
  9514. "ref/net46/it/System.Net.Http.xml",
  9515. "ref/net46/ja/System.Net.Http.xml",
  9516. "ref/net46/ko/System.Net.Http.xml",
  9517. "ref/net46/ru/System.Net.Http.xml",
  9518. "ref/net46/zh-hans/System.Net.Http.xml",
  9519. "ref/net46/zh-hant/System.Net.Http.xml",
  9520. "ref/netcore50/System.Net.Http.dll",
  9521. "ref/netcore50/System.Net.Http.xml",
  9522. "ref/netcore50/de/System.Net.Http.xml",
  9523. "ref/netcore50/es/System.Net.Http.xml",
  9524. "ref/netcore50/fr/System.Net.Http.xml",
  9525. "ref/netcore50/it/System.Net.Http.xml",
  9526. "ref/netcore50/ja/System.Net.Http.xml",
  9527. "ref/netcore50/ko/System.Net.Http.xml",
  9528. "ref/netcore50/ru/System.Net.Http.xml",
  9529. "ref/netcore50/zh-hans/System.Net.Http.xml",
  9530. "ref/netcore50/zh-hant/System.Net.Http.xml",
  9531. "ref/netstandard1.1/System.Net.Http.dll",
  9532. "ref/netstandard1.1/System.Net.Http.xml",
  9533. "ref/netstandard1.1/de/System.Net.Http.xml",
  9534. "ref/netstandard1.1/es/System.Net.Http.xml",
  9535. "ref/netstandard1.1/fr/System.Net.Http.xml",
  9536. "ref/netstandard1.1/it/System.Net.Http.xml",
  9537. "ref/netstandard1.1/ja/System.Net.Http.xml",
  9538. "ref/netstandard1.1/ko/System.Net.Http.xml",
  9539. "ref/netstandard1.1/ru/System.Net.Http.xml",
  9540. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  9541. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  9542. "ref/netstandard1.3/System.Net.Http.dll",
  9543. "ref/netstandard1.3/System.Net.Http.xml",
  9544. "ref/netstandard1.3/de/System.Net.Http.xml",
  9545. "ref/netstandard1.3/es/System.Net.Http.xml",
  9546. "ref/netstandard1.3/fr/System.Net.Http.xml",
  9547. "ref/netstandard1.3/it/System.Net.Http.xml",
  9548. "ref/netstandard1.3/ja/System.Net.Http.xml",
  9549. "ref/netstandard1.3/ko/System.Net.Http.xml",
  9550. "ref/netstandard1.3/ru/System.Net.Http.xml",
  9551. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  9552. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  9553. "ref/portable-net45+win8+wpa81/_._",
  9554. "ref/win8/_._",
  9555. "ref/wpa81/_._",
  9556. "ref/xamarinios10/_._",
  9557. "ref/xamarintvos10/_._",
  9558. "ref/xamarinwatchos10/_._",
  9559. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  9560. "runtimes/win/lib/net46/System.Net.Http.dll",
  9561. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  9562. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  9563. "system.net.http.4.1.0.nupkg.sha512",
  9564. "system.net.http.nuspec"
  9565. ]
  9566. },
  9567. "System.Net.NameResolution/4.0.0": {
  9568. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  9569. "type": "package",
  9570. "path": "system.net.nameresolution/4.0.0",
  9571. "files": [
  9572. ".nupkg.metadata",
  9573. ".signature.p7s",
  9574. "ThirdPartyNotices.txt",
  9575. "dotnet_library_license.txt",
  9576. "lib/MonoAndroid10/_._",
  9577. "lib/MonoTouch10/_._",
  9578. "lib/net46/System.Net.NameResolution.dll",
  9579. "lib/xamarinios10/_._",
  9580. "lib/xamarinmac20/_._",
  9581. "lib/xamarintvos10/_._",
  9582. "lib/xamarinwatchos10/_._",
  9583. "ref/MonoAndroid10/_._",
  9584. "ref/MonoTouch10/_._",
  9585. "ref/net46/System.Net.NameResolution.dll",
  9586. "ref/netstandard1.3/System.Net.NameResolution.dll",
  9587. "ref/netstandard1.3/System.Net.NameResolution.xml",
  9588. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  9589. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  9590. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  9591. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  9592. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  9593. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  9594. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  9595. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  9596. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  9597. "ref/xamarinios10/_._",
  9598. "ref/xamarinmac20/_._",
  9599. "ref/xamarintvos10/_._",
  9600. "ref/xamarinwatchos10/_._",
  9601. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  9602. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  9603. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  9604. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  9605. "system.net.nameresolution.4.0.0.nupkg.sha512",
  9606. "system.net.nameresolution.nuspec"
  9607. ]
  9608. },
  9609. "System.Net.Primitives/4.0.11": {
  9610. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  9611. "type": "package",
  9612. "path": "system.net.primitives/4.0.11",
  9613. "files": [
  9614. ".nupkg.metadata",
  9615. ".signature.p7s",
  9616. "ThirdPartyNotices.txt",
  9617. "dotnet_library_license.txt",
  9618. "lib/MonoAndroid10/_._",
  9619. "lib/MonoTouch10/_._",
  9620. "lib/net45/_._",
  9621. "lib/portable-net45+win8+wp8+wpa81/_._",
  9622. "lib/win8/_._",
  9623. "lib/wp80/_._",
  9624. "lib/wpa81/_._",
  9625. "lib/xamarinios10/_._",
  9626. "lib/xamarinmac20/_._",
  9627. "lib/xamarintvos10/_._",
  9628. "lib/xamarinwatchos10/_._",
  9629. "ref/MonoAndroid10/_._",
  9630. "ref/MonoTouch10/_._",
  9631. "ref/net45/_._",
  9632. "ref/netcore50/System.Net.Primitives.dll",
  9633. "ref/netcore50/System.Net.Primitives.xml",
  9634. "ref/netcore50/de/System.Net.Primitives.xml",
  9635. "ref/netcore50/es/System.Net.Primitives.xml",
  9636. "ref/netcore50/fr/System.Net.Primitives.xml",
  9637. "ref/netcore50/it/System.Net.Primitives.xml",
  9638. "ref/netcore50/ja/System.Net.Primitives.xml",
  9639. "ref/netcore50/ko/System.Net.Primitives.xml",
  9640. "ref/netcore50/ru/System.Net.Primitives.xml",
  9641. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  9642. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  9643. "ref/netstandard1.0/System.Net.Primitives.dll",
  9644. "ref/netstandard1.0/System.Net.Primitives.xml",
  9645. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  9646. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  9647. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  9648. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  9649. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  9650. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  9651. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  9652. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  9653. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  9654. "ref/netstandard1.1/System.Net.Primitives.dll",
  9655. "ref/netstandard1.1/System.Net.Primitives.xml",
  9656. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  9657. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  9658. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  9659. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  9660. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  9661. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  9662. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  9663. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  9664. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  9665. "ref/netstandard1.3/System.Net.Primitives.dll",
  9666. "ref/netstandard1.3/System.Net.Primitives.xml",
  9667. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  9668. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  9669. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  9670. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  9671. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  9672. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  9673. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  9674. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  9675. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  9676. "ref/portable-net45+win8+wp8+wpa81/_._",
  9677. "ref/win8/_._",
  9678. "ref/wp80/_._",
  9679. "ref/wpa81/_._",
  9680. "ref/xamarinios10/_._",
  9681. "ref/xamarinmac20/_._",
  9682. "ref/xamarintvos10/_._",
  9683. "ref/xamarinwatchos10/_._",
  9684. "system.net.primitives.4.0.11.nupkg.sha512",
  9685. "system.net.primitives.nuspec"
  9686. ]
  9687. },
  9688. "System.Net.Sockets/4.1.0": {
  9689. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  9690. "type": "package",
  9691. "path": "system.net.sockets/4.1.0",
  9692. "files": [
  9693. ".nupkg.metadata",
  9694. ".signature.p7s",
  9695. "ThirdPartyNotices.txt",
  9696. "dotnet_library_license.txt",
  9697. "lib/MonoAndroid10/_._",
  9698. "lib/MonoTouch10/_._",
  9699. "lib/net46/System.Net.Sockets.dll",
  9700. "lib/xamarinios10/_._",
  9701. "lib/xamarinmac20/_._",
  9702. "lib/xamarintvos10/_._",
  9703. "lib/xamarinwatchos10/_._",
  9704. "ref/MonoAndroid10/_._",
  9705. "ref/MonoTouch10/_._",
  9706. "ref/net46/System.Net.Sockets.dll",
  9707. "ref/netstandard1.3/System.Net.Sockets.dll",
  9708. "ref/netstandard1.3/System.Net.Sockets.xml",
  9709. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  9710. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  9711. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  9712. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  9713. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  9714. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  9715. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  9716. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  9717. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  9718. "ref/xamarinios10/_._",
  9719. "ref/xamarinmac20/_._",
  9720. "ref/xamarintvos10/_._",
  9721. "ref/xamarinwatchos10/_._",
  9722. "system.net.sockets.4.1.0.nupkg.sha512",
  9723. "system.net.sockets.nuspec"
  9724. ]
  9725. },
  9726. "System.ObjectModel/4.0.12": {
  9727. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  9728. "type": "package",
  9729. "path": "system.objectmodel/4.0.12",
  9730. "files": [
  9731. ".nupkg.metadata",
  9732. ".signature.p7s",
  9733. "ThirdPartyNotices.txt",
  9734. "dotnet_library_license.txt",
  9735. "lib/MonoAndroid10/_._",
  9736. "lib/MonoTouch10/_._",
  9737. "lib/net45/_._",
  9738. "lib/netcore50/System.ObjectModel.dll",
  9739. "lib/netstandard1.3/System.ObjectModel.dll",
  9740. "lib/portable-net45+win8+wp8+wpa81/_._",
  9741. "lib/win8/_._",
  9742. "lib/wp80/_._",
  9743. "lib/wpa81/_._",
  9744. "lib/xamarinios10/_._",
  9745. "lib/xamarinmac20/_._",
  9746. "lib/xamarintvos10/_._",
  9747. "lib/xamarinwatchos10/_._",
  9748. "ref/MonoAndroid10/_._",
  9749. "ref/MonoTouch10/_._",
  9750. "ref/net45/_._",
  9751. "ref/netcore50/System.ObjectModel.dll",
  9752. "ref/netcore50/System.ObjectModel.xml",
  9753. "ref/netcore50/de/System.ObjectModel.xml",
  9754. "ref/netcore50/es/System.ObjectModel.xml",
  9755. "ref/netcore50/fr/System.ObjectModel.xml",
  9756. "ref/netcore50/it/System.ObjectModel.xml",
  9757. "ref/netcore50/ja/System.ObjectModel.xml",
  9758. "ref/netcore50/ko/System.ObjectModel.xml",
  9759. "ref/netcore50/ru/System.ObjectModel.xml",
  9760. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  9761. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  9762. "ref/netstandard1.0/System.ObjectModel.dll",
  9763. "ref/netstandard1.0/System.ObjectModel.xml",
  9764. "ref/netstandard1.0/de/System.ObjectModel.xml",
  9765. "ref/netstandard1.0/es/System.ObjectModel.xml",
  9766. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  9767. "ref/netstandard1.0/it/System.ObjectModel.xml",
  9768. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  9769. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  9770. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  9771. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  9772. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  9773. "ref/netstandard1.3/System.ObjectModel.dll",
  9774. "ref/netstandard1.3/System.ObjectModel.xml",
  9775. "ref/netstandard1.3/de/System.ObjectModel.xml",
  9776. "ref/netstandard1.3/es/System.ObjectModel.xml",
  9777. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  9778. "ref/netstandard1.3/it/System.ObjectModel.xml",
  9779. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  9780. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  9781. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  9782. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  9783. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  9784. "ref/portable-net45+win8+wp8+wpa81/_._",
  9785. "ref/win8/_._",
  9786. "ref/wp80/_._",
  9787. "ref/wpa81/_._",
  9788. "ref/xamarinios10/_._",
  9789. "ref/xamarinmac20/_._",
  9790. "ref/xamarintvos10/_._",
  9791. "ref/xamarinwatchos10/_._",
  9792. "system.objectmodel.4.0.12.nupkg.sha512",
  9793. "system.objectmodel.nuspec"
  9794. ]
  9795. },
  9796. "System.Reflection/4.3.0": {
  9797. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  9798. "type": "package",
  9799. "path": "system.reflection/4.3.0",
  9800. "files": [
  9801. ".nupkg.metadata",
  9802. ".signature.p7s",
  9803. "ThirdPartyNotices.txt",
  9804. "dotnet_library_license.txt",
  9805. "lib/MonoAndroid10/_._",
  9806. "lib/MonoTouch10/_._",
  9807. "lib/net45/_._",
  9808. "lib/net462/System.Reflection.dll",
  9809. "lib/portable-net45+win8+wp8+wpa81/_._",
  9810. "lib/win8/_._",
  9811. "lib/wp80/_._",
  9812. "lib/wpa81/_._",
  9813. "lib/xamarinios10/_._",
  9814. "lib/xamarinmac20/_._",
  9815. "lib/xamarintvos10/_._",
  9816. "lib/xamarinwatchos10/_._",
  9817. "ref/MonoAndroid10/_._",
  9818. "ref/MonoTouch10/_._",
  9819. "ref/net45/_._",
  9820. "ref/net462/System.Reflection.dll",
  9821. "ref/netcore50/System.Reflection.dll",
  9822. "ref/netcore50/System.Reflection.xml",
  9823. "ref/netcore50/de/System.Reflection.xml",
  9824. "ref/netcore50/es/System.Reflection.xml",
  9825. "ref/netcore50/fr/System.Reflection.xml",
  9826. "ref/netcore50/it/System.Reflection.xml",
  9827. "ref/netcore50/ja/System.Reflection.xml",
  9828. "ref/netcore50/ko/System.Reflection.xml",
  9829. "ref/netcore50/ru/System.Reflection.xml",
  9830. "ref/netcore50/zh-hans/System.Reflection.xml",
  9831. "ref/netcore50/zh-hant/System.Reflection.xml",
  9832. "ref/netstandard1.0/System.Reflection.dll",
  9833. "ref/netstandard1.0/System.Reflection.xml",
  9834. "ref/netstandard1.0/de/System.Reflection.xml",
  9835. "ref/netstandard1.0/es/System.Reflection.xml",
  9836. "ref/netstandard1.0/fr/System.Reflection.xml",
  9837. "ref/netstandard1.0/it/System.Reflection.xml",
  9838. "ref/netstandard1.0/ja/System.Reflection.xml",
  9839. "ref/netstandard1.0/ko/System.Reflection.xml",
  9840. "ref/netstandard1.0/ru/System.Reflection.xml",
  9841. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  9842. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  9843. "ref/netstandard1.3/System.Reflection.dll",
  9844. "ref/netstandard1.3/System.Reflection.xml",
  9845. "ref/netstandard1.3/de/System.Reflection.xml",
  9846. "ref/netstandard1.3/es/System.Reflection.xml",
  9847. "ref/netstandard1.3/fr/System.Reflection.xml",
  9848. "ref/netstandard1.3/it/System.Reflection.xml",
  9849. "ref/netstandard1.3/ja/System.Reflection.xml",
  9850. "ref/netstandard1.3/ko/System.Reflection.xml",
  9851. "ref/netstandard1.3/ru/System.Reflection.xml",
  9852. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  9853. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  9854. "ref/netstandard1.5/System.Reflection.dll",
  9855. "ref/netstandard1.5/System.Reflection.xml",
  9856. "ref/netstandard1.5/de/System.Reflection.xml",
  9857. "ref/netstandard1.5/es/System.Reflection.xml",
  9858. "ref/netstandard1.5/fr/System.Reflection.xml",
  9859. "ref/netstandard1.5/it/System.Reflection.xml",
  9860. "ref/netstandard1.5/ja/System.Reflection.xml",
  9861. "ref/netstandard1.5/ko/System.Reflection.xml",
  9862. "ref/netstandard1.5/ru/System.Reflection.xml",
  9863. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  9864. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  9865. "ref/portable-net45+win8+wp8+wpa81/_._",
  9866. "ref/win8/_._",
  9867. "ref/wp80/_._",
  9868. "ref/wpa81/_._",
  9869. "ref/xamarinios10/_._",
  9870. "ref/xamarinmac20/_._",
  9871. "ref/xamarintvos10/_._",
  9872. "ref/xamarinwatchos10/_._",
  9873. "system.reflection.4.3.0.nupkg.sha512",
  9874. "system.reflection.nuspec"
  9875. ]
  9876. },
  9877. "System.Reflection.Emit/4.0.1": {
  9878. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  9879. "type": "package",
  9880. "path": "system.reflection.emit/4.0.1",
  9881. "files": [
  9882. ".nupkg.metadata",
  9883. ".signature.p7s",
  9884. "ThirdPartyNotices.txt",
  9885. "dotnet_library_license.txt",
  9886. "lib/MonoAndroid10/_._",
  9887. "lib/net45/_._",
  9888. "lib/netcore50/System.Reflection.Emit.dll",
  9889. "lib/netstandard1.3/System.Reflection.Emit.dll",
  9890. "lib/xamarinmac20/_._",
  9891. "ref/MonoAndroid10/_._",
  9892. "ref/net45/_._",
  9893. "ref/netstandard1.1/System.Reflection.Emit.dll",
  9894. "ref/netstandard1.1/System.Reflection.Emit.xml",
  9895. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  9896. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  9897. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  9898. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  9899. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  9900. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  9901. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  9902. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  9903. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  9904. "ref/xamarinmac20/_._",
  9905. "system.reflection.emit.4.0.1.nupkg.sha512",
  9906. "system.reflection.emit.nuspec"
  9907. ]
  9908. },
  9909. "System.Reflection.Emit.ILGeneration/4.0.1": {
  9910. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  9911. "type": "package",
  9912. "path": "system.reflection.emit.ilgeneration/4.0.1",
  9913. "files": [
  9914. ".nupkg.metadata",
  9915. ".signature.p7s",
  9916. "ThirdPartyNotices.txt",
  9917. "dotnet_library_license.txt",
  9918. "lib/net45/_._",
  9919. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  9920. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  9921. "lib/portable-net45+wp8/_._",
  9922. "lib/wp80/_._",
  9923. "ref/net45/_._",
  9924. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  9925. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  9926. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  9927. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  9928. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  9929. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  9930. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  9931. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  9932. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  9933. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  9934. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  9935. "ref/portable-net45+wp8/_._",
  9936. "ref/wp80/_._",
  9937. "runtimes/aot/lib/netcore50/_._",
  9938. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  9939. "system.reflection.emit.ilgeneration.nuspec"
  9940. ]
  9941. },
  9942. "System.Reflection.Emit.Lightweight/4.0.1": {
  9943. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  9944. "type": "package",
  9945. "path": "system.reflection.emit.lightweight/4.0.1",
  9946. "files": [
  9947. ".nupkg.metadata",
  9948. ".signature.p7s",
  9949. "ThirdPartyNotices.txt",
  9950. "dotnet_library_license.txt",
  9951. "lib/net45/_._",
  9952. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9953. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  9954. "lib/portable-net45+wp8/_._",
  9955. "lib/wp80/_._",
  9956. "ref/net45/_._",
  9957. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9958. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9959. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  9960. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  9961. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  9962. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  9963. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  9964. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  9965. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  9966. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  9967. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  9968. "ref/portable-net45+wp8/_._",
  9969. "ref/wp80/_._",
  9970. "runtimes/aot/lib/netcore50/_._",
  9971. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  9972. "system.reflection.emit.lightweight.nuspec"
  9973. ]
  9974. },
  9975. "System.Reflection.Extensions/4.0.1": {
  9976. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  9977. "type": "package",
  9978. "path": "system.reflection.extensions/4.0.1",
  9979. "files": [
  9980. ".nupkg.metadata",
  9981. ".signature.p7s",
  9982. "ThirdPartyNotices.txt",
  9983. "dotnet_library_license.txt",
  9984. "lib/MonoAndroid10/_._",
  9985. "lib/MonoTouch10/_._",
  9986. "lib/net45/_._",
  9987. "lib/portable-net45+win8+wp8+wpa81/_._",
  9988. "lib/win8/_._",
  9989. "lib/wp80/_._",
  9990. "lib/wpa81/_._",
  9991. "lib/xamarinios10/_._",
  9992. "lib/xamarinmac20/_._",
  9993. "lib/xamarintvos10/_._",
  9994. "lib/xamarinwatchos10/_._",
  9995. "ref/MonoAndroid10/_._",
  9996. "ref/MonoTouch10/_._",
  9997. "ref/net45/_._",
  9998. "ref/netcore50/System.Reflection.Extensions.dll",
  9999. "ref/netcore50/System.Reflection.Extensions.xml",
  10000. "ref/netcore50/de/System.Reflection.Extensions.xml",
  10001. "ref/netcore50/es/System.Reflection.Extensions.xml",
  10002. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  10003. "ref/netcore50/it/System.Reflection.Extensions.xml",
  10004. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  10005. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  10006. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  10007. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  10008. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  10009. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  10010. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  10011. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  10012. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  10013. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  10014. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  10015. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  10016. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  10017. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  10018. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  10019. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  10020. "ref/portable-net45+win8+wp8+wpa81/_._",
  10021. "ref/win8/_._",
  10022. "ref/wp80/_._",
  10023. "ref/wpa81/_._",
  10024. "ref/xamarinios10/_._",
  10025. "ref/xamarinmac20/_._",
  10026. "ref/xamarintvos10/_._",
  10027. "ref/xamarinwatchos10/_._",
  10028. "system.reflection.extensions.4.0.1.nupkg.sha512",
  10029. "system.reflection.extensions.nuspec"
  10030. ]
  10031. },
  10032. "System.Reflection.Primitives/4.3.0": {
  10033. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  10034. "type": "package",
  10035. "path": "system.reflection.primitives/4.3.0",
  10036. "files": [
  10037. ".nupkg.metadata",
  10038. ".signature.p7s",
  10039. "ThirdPartyNotices.txt",
  10040. "dotnet_library_license.txt",
  10041. "lib/MonoAndroid10/_._",
  10042. "lib/MonoTouch10/_._",
  10043. "lib/net45/_._",
  10044. "lib/portable-net45+win8+wp8+wpa81/_._",
  10045. "lib/win8/_._",
  10046. "lib/wp80/_._",
  10047. "lib/wpa81/_._",
  10048. "lib/xamarinios10/_._",
  10049. "lib/xamarinmac20/_._",
  10050. "lib/xamarintvos10/_._",
  10051. "lib/xamarinwatchos10/_._",
  10052. "ref/MonoAndroid10/_._",
  10053. "ref/MonoTouch10/_._",
  10054. "ref/net45/_._",
  10055. "ref/netcore50/System.Reflection.Primitives.dll",
  10056. "ref/netcore50/System.Reflection.Primitives.xml",
  10057. "ref/netcore50/de/System.Reflection.Primitives.xml",
  10058. "ref/netcore50/es/System.Reflection.Primitives.xml",
  10059. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  10060. "ref/netcore50/it/System.Reflection.Primitives.xml",
  10061. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  10062. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  10063. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  10064. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  10065. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  10066. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  10067. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  10068. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  10069. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  10070. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  10071. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  10072. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  10073. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  10074. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  10075. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  10076. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  10077. "ref/portable-net45+win8+wp8+wpa81/_._",
  10078. "ref/win8/_._",
  10079. "ref/wp80/_._",
  10080. "ref/wpa81/_._",
  10081. "ref/xamarinios10/_._",
  10082. "ref/xamarinmac20/_._",
  10083. "ref/xamarintvos10/_._",
  10084. "ref/xamarinwatchos10/_._",
  10085. "system.reflection.primitives.4.3.0.nupkg.sha512",
  10086. "system.reflection.primitives.nuspec"
  10087. ]
  10088. },
  10089. "System.Reflection.TypeExtensions/4.1.0": {
  10090. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  10091. "type": "package",
  10092. "path": "system.reflection.typeextensions/4.1.0",
  10093. "files": [
  10094. ".nupkg.metadata",
  10095. ".signature.p7s",
  10096. "ThirdPartyNotices.txt",
  10097. "dotnet_library_license.txt",
  10098. "lib/MonoAndroid10/_._",
  10099. "lib/MonoTouch10/_._",
  10100. "lib/net46/System.Reflection.TypeExtensions.dll",
  10101. "lib/net462/System.Reflection.TypeExtensions.dll",
  10102. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  10103. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  10104. "lib/xamarinios10/_._",
  10105. "lib/xamarinmac20/_._",
  10106. "lib/xamarintvos10/_._",
  10107. "lib/xamarinwatchos10/_._",
  10108. "ref/MonoAndroid10/_._",
  10109. "ref/MonoTouch10/_._",
  10110. "ref/net46/System.Reflection.TypeExtensions.dll",
  10111. "ref/net462/System.Reflection.TypeExtensions.dll",
  10112. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  10113. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  10114. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  10115. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  10116. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  10117. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  10118. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  10119. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  10120. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  10121. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  10122. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  10123. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  10124. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  10125. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  10126. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  10127. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  10128. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  10129. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  10130. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  10131. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  10132. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  10133. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  10134. "ref/xamarinios10/_._",
  10135. "ref/xamarinmac20/_._",
  10136. "ref/xamarintvos10/_._",
  10137. "ref/xamarinwatchos10/_._",
  10138. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  10139. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  10140. "system.reflection.typeextensions.nuspec"
  10141. ]
  10142. },
  10143. "System.Resources.ResourceManager/4.0.1": {
  10144. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  10145. "type": "package",
  10146. "path": "system.resources.resourcemanager/4.0.1",
  10147. "files": [
  10148. ".nupkg.metadata",
  10149. ".signature.p7s",
  10150. "ThirdPartyNotices.txt",
  10151. "dotnet_library_license.txt",
  10152. "lib/MonoAndroid10/_._",
  10153. "lib/MonoTouch10/_._",
  10154. "lib/net45/_._",
  10155. "lib/portable-net45+win8+wp8+wpa81/_._",
  10156. "lib/win8/_._",
  10157. "lib/wp80/_._",
  10158. "lib/wpa81/_._",
  10159. "lib/xamarinios10/_._",
  10160. "lib/xamarinmac20/_._",
  10161. "lib/xamarintvos10/_._",
  10162. "lib/xamarinwatchos10/_._",
  10163. "ref/MonoAndroid10/_._",
  10164. "ref/MonoTouch10/_._",
  10165. "ref/net45/_._",
  10166. "ref/netcore50/System.Resources.ResourceManager.dll",
  10167. "ref/netcore50/System.Resources.ResourceManager.xml",
  10168. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  10169. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  10170. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  10171. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  10172. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  10173. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  10174. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  10175. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  10176. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  10177. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  10178. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  10179. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  10180. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  10181. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  10182. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  10183. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  10184. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  10185. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  10186. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  10187. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  10188. "ref/portable-net45+win8+wp8+wpa81/_._",
  10189. "ref/win8/_._",
  10190. "ref/wp80/_._",
  10191. "ref/wpa81/_._",
  10192. "ref/xamarinios10/_._",
  10193. "ref/xamarinmac20/_._",
  10194. "ref/xamarintvos10/_._",
  10195. "ref/xamarinwatchos10/_._",
  10196. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  10197. "system.resources.resourcemanager.nuspec"
  10198. ]
  10199. },
  10200. "System.Runtime/4.3.0": {
  10201. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  10202. "type": "package",
  10203. "path": "system.runtime/4.3.0",
  10204. "files": [
  10205. ".nupkg.metadata",
  10206. ".signature.p7s",
  10207. "ThirdPartyNotices.txt",
  10208. "dotnet_library_license.txt",
  10209. "lib/MonoAndroid10/_._",
  10210. "lib/MonoTouch10/_._",
  10211. "lib/net45/_._",
  10212. "lib/net462/System.Runtime.dll",
  10213. "lib/portable-net45+win8+wp80+wpa81/_._",
  10214. "lib/win8/_._",
  10215. "lib/wp80/_._",
  10216. "lib/wpa81/_._",
  10217. "lib/xamarinios10/_._",
  10218. "lib/xamarinmac20/_._",
  10219. "lib/xamarintvos10/_._",
  10220. "lib/xamarinwatchos10/_._",
  10221. "ref/MonoAndroid10/_._",
  10222. "ref/MonoTouch10/_._",
  10223. "ref/net45/_._",
  10224. "ref/net462/System.Runtime.dll",
  10225. "ref/netcore50/System.Runtime.dll",
  10226. "ref/netcore50/System.Runtime.xml",
  10227. "ref/netcore50/de/System.Runtime.xml",
  10228. "ref/netcore50/es/System.Runtime.xml",
  10229. "ref/netcore50/fr/System.Runtime.xml",
  10230. "ref/netcore50/it/System.Runtime.xml",
  10231. "ref/netcore50/ja/System.Runtime.xml",
  10232. "ref/netcore50/ko/System.Runtime.xml",
  10233. "ref/netcore50/ru/System.Runtime.xml",
  10234. "ref/netcore50/zh-hans/System.Runtime.xml",
  10235. "ref/netcore50/zh-hant/System.Runtime.xml",
  10236. "ref/netstandard1.0/System.Runtime.dll",
  10237. "ref/netstandard1.0/System.Runtime.xml",
  10238. "ref/netstandard1.0/de/System.Runtime.xml",
  10239. "ref/netstandard1.0/es/System.Runtime.xml",
  10240. "ref/netstandard1.0/fr/System.Runtime.xml",
  10241. "ref/netstandard1.0/it/System.Runtime.xml",
  10242. "ref/netstandard1.0/ja/System.Runtime.xml",
  10243. "ref/netstandard1.0/ko/System.Runtime.xml",
  10244. "ref/netstandard1.0/ru/System.Runtime.xml",
  10245. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  10246. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  10247. "ref/netstandard1.2/System.Runtime.dll",
  10248. "ref/netstandard1.2/System.Runtime.xml",
  10249. "ref/netstandard1.2/de/System.Runtime.xml",
  10250. "ref/netstandard1.2/es/System.Runtime.xml",
  10251. "ref/netstandard1.2/fr/System.Runtime.xml",
  10252. "ref/netstandard1.2/it/System.Runtime.xml",
  10253. "ref/netstandard1.2/ja/System.Runtime.xml",
  10254. "ref/netstandard1.2/ko/System.Runtime.xml",
  10255. "ref/netstandard1.2/ru/System.Runtime.xml",
  10256. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  10257. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  10258. "ref/netstandard1.3/System.Runtime.dll",
  10259. "ref/netstandard1.3/System.Runtime.xml",
  10260. "ref/netstandard1.3/de/System.Runtime.xml",
  10261. "ref/netstandard1.3/es/System.Runtime.xml",
  10262. "ref/netstandard1.3/fr/System.Runtime.xml",
  10263. "ref/netstandard1.3/it/System.Runtime.xml",
  10264. "ref/netstandard1.3/ja/System.Runtime.xml",
  10265. "ref/netstandard1.3/ko/System.Runtime.xml",
  10266. "ref/netstandard1.3/ru/System.Runtime.xml",
  10267. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  10268. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  10269. "ref/netstandard1.5/System.Runtime.dll",
  10270. "ref/netstandard1.5/System.Runtime.xml",
  10271. "ref/netstandard1.5/de/System.Runtime.xml",
  10272. "ref/netstandard1.5/es/System.Runtime.xml",
  10273. "ref/netstandard1.5/fr/System.Runtime.xml",
  10274. "ref/netstandard1.5/it/System.Runtime.xml",
  10275. "ref/netstandard1.5/ja/System.Runtime.xml",
  10276. "ref/netstandard1.5/ko/System.Runtime.xml",
  10277. "ref/netstandard1.5/ru/System.Runtime.xml",
  10278. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  10279. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  10280. "ref/portable-net45+win8+wp80+wpa81/_._",
  10281. "ref/win8/_._",
  10282. "ref/wp80/_._",
  10283. "ref/wpa81/_._",
  10284. "ref/xamarinios10/_._",
  10285. "ref/xamarinmac20/_._",
  10286. "ref/xamarintvos10/_._",
  10287. "ref/xamarinwatchos10/_._",
  10288. "system.runtime.4.3.0.nupkg.sha512",
  10289. "system.runtime.nuspec"
  10290. ]
  10291. },
  10292. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  10293. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  10294. "type": "package",
  10295. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  10296. "files": [
  10297. ".nupkg.metadata",
  10298. ".signature.p7s",
  10299. "Icon.png",
  10300. "LICENSE.TXT",
  10301. "THIRD-PARTY-NOTICES.TXT",
  10302. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  10303. "buildTransitive/netcoreapp3.1/_._",
  10304. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  10305. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  10306. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  10307. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  10308. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  10309. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  10310. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  10311. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  10312. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  10313. "system.runtime.compilerservices.unsafe.nuspec",
  10314. "useSharedDesignerContext.txt"
  10315. ]
  10316. },
  10317. "System.Runtime.Extensions/4.1.0": {
  10318. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  10319. "type": "package",
  10320. "path": "system.runtime.extensions/4.1.0",
  10321. "files": [
  10322. ".nupkg.metadata",
  10323. ".signature.p7s",
  10324. "ThirdPartyNotices.txt",
  10325. "dotnet_library_license.txt",
  10326. "lib/MonoAndroid10/_._",
  10327. "lib/MonoTouch10/_._",
  10328. "lib/net45/_._",
  10329. "lib/net462/System.Runtime.Extensions.dll",
  10330. "lib/portable-net45+win8+wp8+wpa81/_._",
  10331. "lib/win8/_._",
  10332. "lib/wp80/_._",
  10333. "lib/wpa81/_._",
  10334. "lib/xamarinios10/_._",
  10335. "lib/xamarinmac20/_._",
  10336. "lib/xamarintvos10/_._",
  10337. "lib/xamarinwatchos10/_._",
  10338. "ref/MonoAndroid10/_._",
  10339. "ref/MonoTouch10/_._",
  10340. "ref/net45/_._",
  10341. "ref/net462/System.Runtime.Extensions.dll",
  10342. "ref/netcore50/System.Runtime.Extensions.dll",
  10343. "ref/netcore50/System.Runtime.Extensions.xml",
  10344. "ref/netcore50/de/System.Runtime.Extensions.xml",
  10345. "ref/netcore50/es/System.Runtime.Extensions.xml",
  10346. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  10347. "ref/netcore50/it/System.Runtime.Extensions.xml",
  10348. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  10349. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  10350. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  10351. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  10352. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  10353. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  10354. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  10355. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  10356. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  10357. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  10358. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  10359. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  10360. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  10361. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  10362. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  10363. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  10364. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  10365. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  10366. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  10367. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  10368. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  10369. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  10370. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  10371. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  10372. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  10373. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  10374. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  10375. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  10376. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  10377. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  10378. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  10379. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  10380. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  10381. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  10382. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  10383. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  10384. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  10385. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  10386. "ref/portable-net45+win8+wp8+wpa81/_._",
  10387. "ref/win8/_._",
  10388. "ref/wp80/_._",
  10389. "ref/wpa81/_._",
  10390. "ref/xamarinios10/_._",
  10391. "ref/xamarinmac20/_._",
  10392. "ref/xamarintvos10/_._",
  10393. "ref/xamarinwatchos10/_._",
  10394. "system.runtime.extensions.4.1.0.nupkg.sha512",
  10395. "system.runtime.extensions.nuspec"
  10396. ]
  10397. },
  10398. "System.Runtime.Handles/4.0.1": {
  10399. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  10400. "type": "package",
  10401. "path": "system.runtime.handles/4.0.1",
  10402. "files": [
  10403. ".nupkg.metadata",
  10404. ".signature.p7s",
  10405. "ThirdPartyNotices.txt",
  10406. "dotnet_library_license.txt",
  10407. "lib/MonoAndroid10/_._",
  10408. "lib/MonoTouch10/_._",
  10409. "lib/net46/_._",
  10410. "lib/xamarinios10/_._",
  10411. "lib/xamarinmac20/_._",
  10412. "lib/xamarintvos10/_._",
  10413. "lib/xamarinwatchos10/_._",
  10414. "ref/MonoAndroid10/_._",
  10415. "ref/MonoTouch10/_._",
  10416. "ref/net46/_._",
  10417. "ref/netstandard1.3/System.Runtime.Handles.dll",
  10418. "ref/netstandard1.3/System.Runtime.Handles.xml",
  10419. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  10420. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  10421. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  10422. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  10423. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  10424. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  10425. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  10426. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  10427. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  10428. "ref/xamarinios10/_._",
  10429. "ref/xamarinmac20/_._",
  10430. "ref/xamarintvos10/_._",
  10431. "ref/xamarinwatchos10/_._",
  10432. "system.runtime.handles.4.0.1.nupkg.sha512",
  10433. "system.runtime.handles.nuspec"
  10434. ]
  10435. },
  10436. "System.Runtime.InteropServices/4.1.0": {
  10437. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  10438. "type": "package",
  10439. "path": "system.runtime.interopservices/4.1.0",
  10440. "files": [
  10441. ".nupkg.metadata",
  10442. ".signature.p7s",
  10443. "ThirdPartyNotices.txt",
  10444. "dotnet_library_license.txt",
  10445. "lib/MonoAndroid10/_._",
  10446. "lib/MonoTouch10/_._",
  10447. "lib/net45/_._",
  10448. "lib/net462/System.Runtime.InteropServices.dll",
  10449. "lib/portable-net45+win8+wpa81/_._",
  10450. "lib/win8/_._",
  10451. "lib/wpa81/_._",
  10452. "lib/xamarinios10/_._",
  10453. "lib/xamarinmac20/_._",
  10454. "lib/xamarintvos10/_._",
  10455. "lib/xamarinwatchos10/_._",
  10456. "ref/MonoAndroid10/_._",
  10457. "ref/MonoTouch10/_._",
  10458. "ref/net45/_._",
  10459. "ref/net462/System.Runtime.InteropServices.dll",
  10460. "ref/netcore50/System.Runtime.InteropServices.dll",
  10461. "ref/netcore50/System.Runtime.InteropServices.xml",
  10462. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  10463. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  10464. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  10465. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  10466. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  10467. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  10468. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  10469. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  10470. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  10471. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  10472. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  10473. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  10474. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  10475. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  10476. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  10477. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  10478. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  10479. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10480. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10481. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10482. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10483. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10484. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10485. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10486. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10487. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10488. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10489. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10490. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10491. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10492. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10493. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10494. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10495. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10496. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10497. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10498. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10499. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10500. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10501. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10502. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10503. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10504. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10505. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10506. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10507. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10508. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10509. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10510. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10511. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10512. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10513. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10514. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10515. "ref/portable-net45+win8+wpa81/_._",
  10516. "ref/win8/_._",
  10517. "ref/wpa81/_._",
  10518. "ref/xamarinios10/_._",
  10519. "ref/xamarinmac20/_._",
  10520. "ref/xamarintvos10/_._",
  10521. "ref/xamarinwatchos10/_._",
  10522. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  10523. "system.runtime.interopservices.nuspec"
  10524. ]
  10525. },
  10526. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  10527. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  10528. "type": "package",
  10529. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  10530. "files": [
  10531. ".nupkg.metadata",
  10532. ".signature.p7s",
  10533. "ThirdPartyNotices.txt",
  10534. "dotnet_library_license.txt",
  10535. "lib/MonoAndroid10/_._",
  10536. "lib/MonoTouch10/_._",
  10537. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10538. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  10539. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  10540. "lib/xamarinios10/_._",
  10541. "lib/xamarinmac20/_._",
  10542. "lib/xamarintvos10/_._",
  10543. "lib/xamarinwatchos10/_._",
  10544. "ref/MonoAndroid10/_._",
  10545. "ref/MonoTouch10/_._",
  10546. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10547. "ref/xamarinios10/_._",
  10548. "ref/xamarinmac20/_._",
  10549. "ref/xamarintvos10/_._",
  10550. "ref/xamarinwatchos10/_._",
  10551. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10552. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10553. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10554. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10555. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10556. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  10557. "system.runtime.interopservices.runtimeinformation.nuspec"
  10558. ]
  10559. },
  10560. "System.Runtime.Numerics/4.0.1": {
  10561. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  10562. "type": "package",
  10563. "path": "system.runtime.numerics/4.0.1",
  10564. "files": [
  10565. ".nupkg.metadata",
  10566. ".signature.p7s",
  10567. "ThirdPartyNotices.txt",
  10568. "dotnet_library_license.txt",
  10569. "lib/MonoAndroid10/_._",
  10570. "lib/MonoTouch10/_._",
  10571. "lib/net45/_._",
  10572. "lib/netcore50/System.Runtime.Numerics.dll",
  10573. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  10574. "lib/portable-net45+win8+wpa81/_._",
  10575. "lib/win8/_._",
  10576. "lib/wpa81/_._",
  10577. "lib/xamarinios10/_._",
  10578. "lib/xamarinmac20/_._",
  10579. "lib/xamarintvos10/_._",
  10580. "lib/xamarinwatchos10/_._",
  10581. "ref/MonoAndroid10/_._",
  10582. "ref/MonoTouch10/_._",
  10583. "ref/net45/_._",
  10584. "ref/netcore50/System.Runtime.Numerics.dll",
  10585. "ref/netcore50/System.Runtime.Numerics.xml",
  10586. "ref/netcore50/de/System.Runtime.Numerics.xml",
  10587. "ref/netcore50/es/System.Runtime.Numerics.xml",
  10588. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  10589. "ref/netcore50/it/System.Runtime.Numerics.xml",
  10590. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  10591. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  10592. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  10593. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  10594. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  10595. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  10596. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  10597. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  10598. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  10599. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  10600. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  10601. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  10602. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  10603. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  10604. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  10605. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  10606. "ref/portable-net45+win8+wpa81/_._",
  10607. "ref/win8/_._",
  10608. "ref/wpa81/_._",
  10609. "ref/xamarinios10/_._",
  10610. "ref/xamarinmac20/_._",
  10611. "ref/xamarintvos10/_._",
  10612. "ref/xamarinwatchos10/_._",
  10613. "system.runtime.numerics.4.0.1.nupkg.sha512",
  10614. "system.runtime.numerics.nuspec"
  10615. ]
  10616. },
  10617. "System.Security.AccessControl/6.0.0": {
  10618. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  10619. "type": "package",
  10620. "path": "system.security.accesscontrol/6.0.0",
  10621. "files": [
  10622. ".nupkg.metadata",
  10623. ".signature.p7s",
  10624. "Icon.png",
  10625. "LICENSE.TXT",
  10626. "THIRD-PARTY-NOTICES.TXT",
  10627. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  10628. "buildTransitive/netcoreapp3.1/_._",
  10629. "lib/net461/System.Security.AccessControl.dll",
  10630. "lib/net461/System.Security.AccessControl.xml",
  10631. "lib/net6.0/System.Security.AccessControl.dll",
  10632. "lib/net6.0/System.Security.AccessControl.xml",
  10633. "lib/netstandard2.0/System.Security.AccessControl.dll",
  10634. "lib/netstandard2.0/System.Security.AccessControl.xml",
  10635. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  10636. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  10637. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  10638. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  10639. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  10640. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  10641. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  10642. "system.security.accesscontrol.nuspec",
  10643. "useSharedDesignerContext.txt"
  10644. ]
  10645. },
  10646. "System.Security.Cryptography.Algorithms/4.2.0": {
  10647. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  10648. "type": "package",
  10649. "path": "system.security.cryptography.algorithms/4.2.0",
  10650. "files": [
  10651. ".nupkg.metadata",
  10652. ".signature.p7s",
  10653. "ThirdPartyNotices.txt",
  10654. "dotnet_library_license.txt",
  10655. "lib/MonoAndroid10/_._",
  10656. "lib/MonoTouch10/_._",
  10657. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  10658. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  10659. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  10660. "lib/xamarinios10/_._",
  10661. "lib/xamarinmac20/_._",
  10662. "lib/xamarintvos10/_._",
  10663. "lib/xamarinwatchos10/_._",
  10664. "ref/MonoAndroid10/_._",
  10665. "ref/MonoTouch10/_._",
  10666. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  10667. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  10668. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  10669. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  10670. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  10671. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10672. "ref/xamarinios10/_._",
  10673. "ref/xamarinmac20/_._",
  10674. "ref/xamarintvos10/_._",
  10675. "ref/xamarinwatchos10/_._",
  10676. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10677. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  10678. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  10679. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  10680. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  10681. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10682. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  10683. "system.security.cryptography.algorithms.nuspec"
  10684. ]
  10685. },
  10686. "System.Security.Cryptography.Cng/4.5.0": {
  10687. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  10688. "type": "package",
  10689. "path": "system.security.cryptography.cng/4.5.0",
  10690. "files": [
  10691. ".nupkg.metadata",
  10692. ".signature.p7s",
  10693. "LICENSE.TXT",
  10694. "THIRD-PARTY-NOTICES.TXT",
  10695. "lib/MonoAndroid10/_._",
  10696. "lib/MonoTouch10/_._",
  10697. "lib/net46/System.Security.Cryptography.Cng.dll",
  10698. "lib/net461/System.Security.Cryptography.Cng.dll",
  10699. "lib/net462/System.Security.Cryptography.Cng.dll",
  10700. "lib/net47/System.Security.Cryptography.Cng.dll",
  10701. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10702. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10703. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10704. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10705. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10706. "lib/uap10.0.16299/_._",
  10707. "lib/xamarinios10/_._",
  10708. "lib/xamarinmac20/_._",
  10709. "lib/xamarintvos10/_._",
  10710. "lib/xamarinwatchos10/_._",
  10711. "ref/MonoAndroid10/_._",
  10712. "ref/MonoTouch10/_._",
  10713. "ref/net46/System.Security.Cryptography.Cng.dll",
  10714. "ref/net461/System.Security.Cryptography.Cng.dll",
  10715. "ref/net461/System.Security.Cryptography.Cng.xml",
  10716. "ref/net462/System.Security.Cryptography.Cng.dll",
  10717. "ref/net462/System.Security.Cryptography.Cng.xml",
  10718. "ref/net47/System.Security.Cryptography.Cng.dll",
  10719. "ref/net47/System.Security.Cryptography.Cng.xml",
  10720. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10721. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  10722. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10723. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  10724. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10725. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10726. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10727. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10728. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10729. "ref/uap10.0.16299/_._",
  10730. "ref/xamarinios10/_._",
  10731. "ref/xamarinmac20/_._",
  10732. "ref/xamarintvos10/_._",
  10733. "ref/xamarinwatchos10/_._",
  10734. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  10735. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  10736. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  10737. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  10738. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10739. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10740. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10741. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10742. "runtimes/win/lib/uap10.0.16299/_._",
  10743. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  10744. "system.security.cryptography.cng.nuspec",
  10745. "useSharedDesignerContext.txt",
  10746. "version.txt"
  10747. ]
  10748. },
  10749. "System.Security.Cryptography.Csp/4.0.0": {
  10750. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  10751. "type": "package",
  10752. "path": "system.security.cryptography.csp/4.0.0",
  10753. "files": [
  10754. ".nupkg.metadata",
  10755. ".signature.p7s",
  10756. "ThirdPartyNotices.txt",
  10757. "dotnet_library_license.txt",
  10758. "lib/MonoAndroid10/_._",
  10759. "lib/MonoTouch10/_._",
  10760. "lib/net46/System.Security.Cryptography.Csp.dll",
  10761. "lib/xamarinios10/_._",
  10762. "lib/xamarinmac20/_._",
  10763. "lib/xamarintvos10/_._",
  10764. "lib/xamarinwatchos10/_._",
  10765. "ref/MonoAndroid10/_._",
  10766. "ref/MonoTouch10/_._",
  10767. "ref/net46/System.Security.Cryptography.Csp.dll",
  10768. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10769. "ref/xamarinios10/_._",
  10770. "ref/xamarinmac20/_._",
  10771. "ref/xamarintvos10/_._",
  10772. "ref/xamarinwatchos10/_._",
  10773. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10774. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  10775. "runtimes/win/lib/netcore50/_._",
  10776. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10777. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  10778. "system.security.cryptography.csp.nuspec"
  10779. ]
  10780. },
  10781. "System.Security.Cryptography.Encoding/4.0.0": {
  10782. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  10783. "type": "package",
  10784. "path": "system.security.cryptography.encoding/4.0.0",
  10785. "files": [
  10786. ".nupkg.metadata",
  10787. ".signature.p7s",
  10788. "ThirdPartyNotices.txt",
  10789. "dotnet_library_license.txt",
  10790. "lib/MonoAndroid10/_._",
  10791. "lib/MonoTouch10/_._",
  10792. "lib/net46/System.Security.Cryptography.Encoding.dll",
  10793. "lib/xamarinios10/_._",
  10794. "lib/xamarinmac20/_._",
  10795. "lib/xamarintvos10/_._",
  10796. "lib/xamarinwatchos10/_._",
  10797. "ref/MonoAndroid10/_._",
  10798. "ref/MonoTouch10/_._",
  10799. "ref/net46/System.Security.Cryptography.Encoding.dll",
  10800. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10801. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  10802. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  10803. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  10804. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  10805. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  10806. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  10807. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  10808. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  10809. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  10810. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  10811. "ref/xamarinios10/_._",
  10812. "ref/xamarinmac20/_._",
  10813. "ref/xamarintvos10/_._",
  10814. "ref/xamarinwatchos10/_._",
  10815. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10816. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  10817. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10818. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  10819. "system.security.cryptography.encoding.nuspec"
  10820. ]
  10821. },
  10822. "System.Security.Cryptography.OpenSsl/4.0.0": {
  10823. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  10824. "type": "package",
  10825. "path": "system.security.cryptography.openssl/4.0.0",
  10826. "files": [
  10827. ".nupkg.metadata",
  10828. ".signature.p7s",
  10829. "ThirdPartyNotices.txt",
  10830. "dotnet_library_license.txt",
  10831. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10832. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10833. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10834. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  10835. "system.security.cryptography.openssl.nuspec"
  10836. ]
  10837. },
  10838. "System.Security.Cryptography.Primitives/4.0.0": {
  10839. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  10840. "type": "package",
  10841. "path": "system.security.cryptography.primitives/4.0.0",
  10842. "files": [
  10843. ".nupkg.metadata",
  10844. ".signature.p7s",
  10845. "ThirdPartyNotices.txt",
  10846. "dotnet_library_license.txt",
  10847. "lib/MonoAndroid10/_._",
  10848. "lib/MonoTouch10/_._",
  10849. "lib/net46/System.Security.Cryptography.Primitives.dll",
  10850. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10851. "lib/xamarinios10/_._",
  10852. "lib/xamarinmac20/_._",
  10853. "lib/xamarintvos10/_._",
  10854. "lib/xamarinwatchos10/_._",
  10855. "ref/MonoAndroid10/_._",
  10856. "ref/MonoTouch10/_._",
  10857. "ref/net46/System.Security.Cryptography.Primitives.dll",
  10858. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10859. "ref/xamarinios10/_._",
  10860. "ref/xamarinmac20/_._",
  10861. "ref/xamarintvos10/_._",
  10862. "ref/xamarinwatchos10/_._",
  10863. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  10864. "system.security.cryptography.primitives.nuspec"
  10865. ]
  10866. },
  10867. "System.Security.Cryptography.ProtectedData/6.0.0": {
  10868. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  10869. "type": "package",
  10870. "path": "system.security.cryptography.protecteddata/6.0.0",
  10871. "files": [
  10872. ".nupkg.metadata",
  10873. ".signature.p7s",
  10874. "Icon.png",
  10875. "LICENSE.TXT",
  10876. "THIRD-PARTY-NOTICES.TXT",
  10877. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  10878. "buildTransitive/netcoreapp3.1/_._",
  10879. "lib/MonoAndroid10/_._",
  10880. "lib/MonoTouch10/_._",
  10881. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10882. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10883. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10884. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10885. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10886. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10887. "lib/xamarinios10/_._",
  10888. "lib/xamarinmac20/_._",
  10889. "lib/xamarintvos10/_._",
  10890. "lib/xamarinwatchos10/_._",
  10891. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10892. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10893. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10894. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10895. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10896. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10897. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  10898. "system.security.cryptography.protecteddata.nuspec",
  10899. "useSharedDesignerContext.txt"
  10900. ]
  10901. },
  10902. "System.Security.Cryptography.X509Certificates/4.1.0": {
  10903. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  10904. "type": "package",
  10905. "path": "system.security.cryptography.x509certificates/4.1.0",
  10906. "files": [
  10907. ".nupkg.metadata",
  10908. ".signature.p7s",
  10909. "ThirdPartyNotices.txt",
  10910. "dotnet_library_license.txt",
  10911. "lib/MonoAndroid10/_._",
  10912. "lib/MonoTouch10/_._",
  10913. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10914. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10915. "lib/xamarinios10/_._",
  10916. "lib/xamarinmac20/_._",
  10917. "lib/xamarintvos10/_._",
  10918. "lib/xamarinwatchos10/_._",
  10919. "ref/MonoAndroid10/_._",
  10920. "ref/MonoTouch10/_._",
  10921. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  10922. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  10923. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  10924. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  10925. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  10926. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  10927. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  10928. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  10929. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  10930. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  10931. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  10932. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10933. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10934. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  10935. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  10936. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  10937. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  10938. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  10939. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  10940. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  10941. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  10942. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  10943. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10944. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10945. "ref/xamarinios10/_._",
  10946. "ref/xamarinmac20/_._",
  10947. "ref/xamarintvos10/_._",
  10948. "ref/xamarinwatchos10/_._",
  10949. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10950. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10951. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10952. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  10953. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10954. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  10955. "system.security.cryptography.x509certificates.nuspec"
  10956. ]
  10957. },
  10958. "System.Security.Permissions/6.0.0": {
  10959. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  10960. "type": "package",
  10961. "path": "system.security.permissions/6.0.0",
  10962. "files": [
  10963. ".nupkg.metadata",
  10964. ".signature.p7s",
  10965. "Icon.png",
  10966. "LICENSE.TXT",
  10967. "THIRD-PARTY-NOTICES.TXT",
  10968. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  10969. "buildTransitive/netcoreapp3.1/_._",
  10970. "lib/net461/System.Security.Permissions.dll",
  10971. "lib/net461/System.Security.Permissions.xml",
  10972. "lib/net5.0/System.Security.Permissions.dll",
  10973. "lib/net5.0/System.Security.Permissions.xml",
  10974. "lib/net6.0/System.Security.Permissions.dll",
  10975. "lib/net6.0/System.Security.Permissions.xml",
  10976. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  10977. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  10978. "lib/netstandard2.0/System.Security.Permissions.dll",
  10979. "lib/netstandard2.0/System.Security.Permissions.xml",
  10980. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  10981. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  10982. "system.security.permissions.6.0.0.nupkg.sha512",
  10983. "system.security.permissions.nuspec",
  10984. "useSharedDesignerContext.txt"
  10985. ]
  10986. },
  10987. "System.Security.Principal.Windows/5.0.0": {
  10988. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  10989. "type": "package",
  10990. "path": "system.security.principal.windows/5.0.0",
  10991. "files": [
  10992. ".nupkg.metadata",
  10993. ".signature.p7s",
  10994. "Icon.png",
  10995. "LICENSE.TXT",
  10996. "THIRD-PARTY-NOTICES.TXT",
  10997. "lib/net46/System.Security.Principal.Windows.dll",
  10998. "lib/net461/System.Security.Principal.Windows.dll",
  10999. "lib/net461/System.Security.Principal.Windows.xml",
  11000. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  11001. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  11002. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  11003. "lib/uap10.0.16299/_._",
  11004. "ref/net46/System.Security.Principal.Windows.dll",
  11005. "ref/net461/System.Security.Principal.Windows.dll",
  11006. "ref/net461/System.Security.Principal.Windows.xml",
  11007. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  11008. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  11009. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  11010. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  11011. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  11012. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  11013. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  11014. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  11015. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  11016. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  11017. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  11018. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  11019. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  11020. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  11021. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  11022. "ref/uap10.0.16299/_._",
  11023. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11024. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  11025. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  11026. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  11027. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  11028. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  11029. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  11030. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11031. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  11032. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  11033. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  11034. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  11035. "runtimes/win/lib/uap10.0.16299/_._",
  11036. "system.security.principal.windows.5.0.0.nupkg.sha512",
  11037. "system.security.principal.windows.nuspec",
  11038. "useSharedDesignerContext.txt",
  11039. "version.txt"
  11040. ]
  11041. },
  11042. "System.ServiceProcess.ServiceController/8.0.0": {
  11043. "sha512": "jtYVG3bpw2n/NvNnP2g/JLri0D4UtfusTvLeH6cZPNAEjJXJVGspS3wLgVvjNbm+wjaYkFgsXejMTocV1T5DIQ==",
  11044. "type": "package",
  11045. "path": "system.serviceprocess.servicecontroller/8.0.0",
  11046. "files": [
  11047. ".nupkg.metadata",
  11048. ".signature.p7s",
  11049. "Icon.png",
  11050. "LICENSE.TXT",
  11051. "PACKAGE.md",
  11052. "THIRD-PARTY-NOTICES.TXT",
  11053. "buildTransitive/net461/System.ServiceProcess.ServiceController.targets",
  11054. "buildTransitive/net462/_._",
  11055. "buildTransitive/net6.0/_._",
  11056. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets",
  11057. "lib/net462/System.ServiceProcess.ServiceController.dll",
  11058. "lib/net462/System.ServiceProcess.ServiceController.xml",
  11059. "lib/net6.0/System.ServiceProcess.ServiceController.dll",
  11060. "lib/net6.0/System.ServiceProcess.ServiceController.xml",
  11061. "lib/net7.0/System.ServiceProcess.ServiceController.dll",
  11062. "lib/net7.0/System.ServiceProcess.ServiceController.xml",
  11063. "lib/net8.0/System.ServiceProcess.ServiceController.dll",
  11064. "lib/net8.0/System.ServiceProcess.ServiceController.xml",
  11065. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  11066. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  11067. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll",
  11068. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml",
  11069. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.dll",
  11070. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.xml",
  11071. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll",
  11072. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml",
  11073. "system.serviceprocess.servicecontroller.8.0.0.nupkg.sha512",
  11074. "system.serviceprocess.servicecontroller.nuspec",
  11075. "useSharedDesignerContext.txt"
  11076. ]
  11077. },
  11078. "System.Text.Encoding/4.3.0": {
  11079. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  11080. "type": "package",
  11081. "path": "system.text.encoding/4.3.0",
  11082. "files": [
  11083. ".nupkg.metadata",
  11084. ".signature.p7s",
  11085. "ThirdPartyNotices.txt",
  11086. "dotnet_library_license.txt",
  11087. "lib/MonoAndroid10/_._",
  11088. "lib/MonoTouch10/_._",
  11089. "lib/net45/_._",
  11090. "lib/portable-net45+win8+wp8+wpa81/_._",
  11091. "lib/win8/_._",
  11092. "lib/wp80/_._",
  11093. "lib/wpa81/_._",
  11094. "lib/xamarinios10/_._",
  11095. "lib/xamarinmac20/_._",
  11096. "lib/xamarintvos10/_._",
  11097. "lib/xamarinwatchos10/_._",
  11098. "ref/MonoAndroid10/_._",
  11099. "ref/MonoTouch10/_._",
  11100. "ref/net45/_._",
  11101. "ref/netcore50/System.Text.Encoding.dll",
  11102. "ref/netcore50/System.Text.Encoding.xml",
  11103. "ref/netcore50/de/System.Text.Encoding.xml",
  11104. "ref/netcore50/es/System.Text.Encoding.xml",
  11105. "ref/netcore50/fr/System.Text.Encoding.xml",
  11106. "ref/netcore50/it/System.Text.Encoding.xml",
  11107. "ref/netcore50/ja/System.Text.Encoding.xml",
  11108. "ref/netcore50/ko/System.Text.Encoding.xml",
  11109. "ref/netcore50/ru/System.Text.Encoding.xml",
  11110. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  11111. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  11112. "ref/netstandard1.0/System.Text.Encoding.dll",
  11113. "ref/netstandard1.0/System.Text.Encoding.xml",
  11114. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  11115. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  11116. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  11117. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  11118. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  11119. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  11120. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  11121. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  11122. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  11123. "ref/netstandard1.3/System.Text.Encoding.dll",
  11124. "ref/netstandard1.3/System.Text.Encoding.xml",
  11125. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  11126. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  11127. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  11128. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  11129. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  11130. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  11131. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  11132. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  11133. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  11134. "ref/portable-net45+win8+wp8+wpa81/_._",
  11135. "ref/win8/_._",
  11136. "ref/wp80/_._",
  11137. "ref/wpa81/_._",
  11138. "ref/xamarinios10/_._",
  11139. "ref/xamarinmac20/_._",
  11140. "ref/xamarintvos10/_._",
  11141. "ref/xamarinwatchos10/_._",
  11142. "system.text.encoding.4.3.0.nupkg.sha512",
  11143. "system.text.encoding.nuspec"
  11144. ]
  11145. },
  11146. "System.Text.Encoding.CodePages/4.5.1": {
  11147. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  11148. "type": "package",
  11149. "path": "system.text.encoding.codepages/4.5.1",
  11150. "files": [
  11151. ".nupkg.metadata",
  11152. ".signature.p7s",
  11153. "LICENSE.TXT",
  11154. "THIRD-PARTY-NOTICES.TXT",
  11155. "lib/MonoAndroid10/_._",
  11156. "lib/MonoTouch10/_._",
  11157. "lib/net46/System.Text.Encoding.CodePages.dll",
  11158. "lib/net461/System.Text.Encoding.CodePages.dll",
  11159. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11160. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11161. "lib/xamarinios10/_._",
  11162. "lib/xamarinmac20/_._",
  11163. "lib/xamarintvos10/_._",
  11164. "lib/xamarinwatchos10/_._",
  11165. "ref/MonoAndroid10/_._",
  11166. "ref/MonoTouch10/_._",
  11167. "ref/xamarinios10/_._",
  11168. "ref/xamarinmac20/_._",
  11169. "ref/xamarintvos10/_._",
  11170. "ref/xamarinwatchos10/_._",
  11171. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  11172. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  11173. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11174. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11175. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  11176. "system.text.encoding.codepages.nuspec",
  11177. "useSharedDesignerContext.txt",
  11178. "version.txt"
  11179. ]
  11180. },
  11181. "System.Text.Encoding.Extensions/4.0.11": {
  11182. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  11183. "type": "package",
  11184. "path": "system.text.encoding.extensions/4.0.11",
  11185. "files": [
  11186. ".nupkg.metadata",
  11187. ".signature.p7s",
  11188. "ThirdPartyNotices.txt",
  11189. "dotnet_library_license.txt",
  11190. "lib/MonoAndroid10/_._",
  11191. "lib/MonoTouch10/_._",
  11192. "lib/net45/_._",
  11193. "lib/portable-net45+win8+wp8+wpa81/_._",
  11194. "lib/win8/_._",
  11195. "lib/wp80/_._",
  11196. "lib/wpa81/_._",
  11197. "lib/xamarinios10/_._",
  11198. "lib/xamarinmac20/_._",
  11199. "lib/xamarintvos10/_._",
  11200. "lib/xamarinwatchos10/_._",
  11201. "ref/MonoAndroid10/_._",
  11202. "ref/MonoTouch10/_._",
  11203. "ref/net45/_._",
  11204. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  11205. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  11206. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  11207. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  11208. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  11209. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  11210. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  11211. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  11212. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  11213. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  11214. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  11215. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  11216. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  11217. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  11218. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  11219. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  11220. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  11221. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  11222. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  11223. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  11224. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  11225. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  11226. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  11227. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  11228. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  11229. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  11230. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  11231. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  11232. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  11233. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  11234. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  11235. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  11236. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  11237. "ref/portable-net45+win8+wp8+wpa81/_._",
  11238. "ref/win8/_._",
  11239. "ref/wp80/_._",
  11240. "ref/wpa81/_._",
  11241. "ref/xamarinios10/_._",
  11242. "ref/xamarinmac20/_._",
  11243. "ref/xamarintvos10/_._",
  11244. "ref/xamarinwatchos10/_._",
  11245. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  11246. "system.text.encoding.extensions.nuspec"
  11247. ]
  11248. },
  11249. "System.Text.Encodings.Web/8.0.0": {
  11250. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  11251. "type": "package",
  11252. "path": "system.text.encodings.web/8.0.0",
  11253. "files": [
  11254. ".nupkg.metadata",
  11255. ".signature.p7s",
  11256. "Icon.png",
  11257. "LICENSE.TXT",
  11258. "THIRD-PARTY-NOTICES.TXT",
  11259. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  11260. "buildTransitive/net462/_._",
  11261. "buildTransitive/net6.0/_._",
  11262. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  11263. "lib/net462/System.Text.Encodings.Web.dll",
  11264. "lib/net462/System.Text.Encodings.Web.xml",
  11265. "lib/net6.0/System.Text.Encodings.Web.dll",
  11266. "lib/net6.0/System.Text.Encodings.Web.xml",
  11267. "lib/net7.0/System.Text.Encodings.Web.dll",
  11268. "lib/net7.0/System.Text.Encodings.Web.xml",
  11269. "lib/net8.0/System.Text.Encodings.Web.dll",
  11270. "lib/net8.0/System.Text.Encodings.Web.xml",
  11271. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  11272. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  11273. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  11274. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  11275. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  11276. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  11277. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  11278. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  11279. "system.text.encodings.web.8.0.0.nupkg.sha512",
  11280. "system.text.encodings.web.nuspec",
  11281. "useSharedDesignerContext.txt"
  11282. ]
  11283. },
  11284. "System.Text.Json/8.0.0": {
  11285. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  11286. "type": "package",
  11287. "path": "system.text.json/8.0.0",
  11288. "files": [
  11289. ".nupkg.metadata",
  11290. ".signature.p7s",
  11291. "Icon.png",
  11292. "LICENSE.TXT",
  11293. "PACKAGE.md",
  11294. "THIRD-PARTY-NOTICES.TXT",
  11295. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  11296. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11297. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11298. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11299. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11300. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11301. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11302. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11303. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11304. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11305. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11306. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11307. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11308. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11309. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  11310. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11311. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11312. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11313. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11314. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11315. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11316. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11317. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11318. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11319. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11320. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11321. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11322. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11323. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  11324. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11325. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11326. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11327. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11328. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11329. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11330. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11331. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11332. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11333. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11334. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11335. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11336. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11337. "buildTransitive/net461/System.Text.Json.targets",
  11338. "buildTransitive/net462/System.Text.Json.targets",
  11339. "buildTransitive/net6.0/System.Text.Json.targets",
  11340. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  11341. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  11342. "lib/net462/System.Text.Json.dll",
  11343. "lib/net462/System.Text.Json.xml",
  11344. "lib/net6.0/System.Text.Json.dll",
  11345. "lib/net6.0/System.Text.Json.xml",
  11346. "lib/net7.0/System.Text.Json.dll",
  11347. "lib/net7.0/System.Text.Json.xml",
  11348. "lib/net8.0/System.Text.Json.dll",
  11349. "lib/net8.0/System.Text.Json.xml",
  11350. "lib/netstandard2.0/System.Text.Json.dll",
  11351. "lib/netstandard2.0/System.Text.Json.xml",
  11352. "system.text.json.8.0.0.nupkg.sha512",
  11353. "system.text.json.nuspec",
  11354. "useSharedDesignerContext.txt"
  11355. ]
  11356. },
  11357. "System.Text.RegularExpressions/4.1.0": {
  11358. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  11359. "type": "package",
  11360. "path": "system.text.regularexpressions/4.1.0",
  11361. "files": [
  11362. ".nupkg.metadata",
  11363. ".signature.p7s",
  11364. "ThirdPartyNotices.txt",
  11365. "dotnet_library_license.txt",
  11366. "lib/MonoAndroid10/_._",
  11367. "lib/MonoTouch10/_._",
  11368. "lib/net45/_._",
  11369. "lib/net463/System.Text.RegularExpressions.dll",
  11370. "lib/netcore50/System.Text.RegularExpressions.dll",
  11371. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  11372. "lib/portable-net45+win8+wp8+wpa81/_._",
  11373. "lib/win8/_._",
  11374. "lib/wp80/_._",
  11375. "lib/wpa81/_._",
  11376. "lib/xamarinios10/_._",
  11377. "lib/xamarinmac20/_._",
  11378. "lib/xamarintvos10/_._",
  11379. "lib/xamarinwatchos10/_._",
  11380. "ref/MonoAndroid10/_._",
  11381. "ref/MonoTouch10/_._",
  11382. "ref/net45/_._",
  11383. "ref/net463/System.Text.RegularExpressions.dll",
  11384. "ref/netcore50/System.Text.RegularExpressions.dll",
  11385. "ref/netcore50/System.Text.RegularExpressions.xml",
  11386. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  11387. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  11388. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  11389. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  11390. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  11391. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  11392. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  11393. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  11394. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  11395. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  11396. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  11397. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  11398. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  11399. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  11400. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  11401. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  11402. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  11403. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  11404. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  11405. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  11406. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  11407. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  11408. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  11409. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  11410. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  11411. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  11412. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  11413. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  11414. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  11415. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  11416. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  11417. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  11418. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  11419. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  11420. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  11421. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  11422. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  11423. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  11424. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  11425. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  11426. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  11427. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  11428. "ref/portable-net45+win8+wp8+wpa81/_._",
  11429. "ref/win8/_._",
  11430. "ref/wp80/_._",
  11431. "ref/wpa81/_._",
  11432. "ref/xamarinios10/_._",
  11433. "ref/xamarinmac20/_._",
  11434. "ref/xamarintvos10/_._",
  11435. "ref/xamarinwatchos10/_._",
  11436. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  11437. "system.text.regularexpressions.nuspec"
  11438. ]
  11439. },
  11440. "System.Threading/4.0.11": {
  11441. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  11442. "type": "package",
  11443. "path": "system.threading/4.0.11",
  11444. "files": [
  11445. ".nupkg.metadata",
  11446. ".signature.p7s",
  11447. "ThirdPartyNotices.txt",
  11448. "dotnet_library_license.txt",
  11449. "lib/MonoAndroid10/_._",
  11450. "lib/MonoTouch10/_._",
  11451. "lib/net45/_._",
  11452. "lib/netcore50/System.Threading.dll",
  11453. "lib/netstandard1.3/System.Threading.dll",
  11454. "lib/portable-net45+win8+wp8+wpa81/_._",
  11455. "lib/win8/_._",
  11456. "lib/wp80/_._",
  11457. "lib/wpa81/_._",
  11458. "lib/xamarinios10/_._",
  11459. "lib/xamarinmac20/_._",
  11460. "lib/xamarintvos10/_._",
  11461. "lib/xamarinwatchos10/_._",
  11462. "ref/MonoAndroid10/_._",
  11463. "ref/MonoTouch10/_._",
  11464. "ref/net45/_._",
  11465. "ref/netcore50/System.Threading.dll",
  11466. "ref/netcore50/System.Threading.xml",
  11467. "ref/netcore50/de/System.Threading.xml",
  11468. "ref/netcore50/es/System.Threading.xml",
  11469. "ref/netcore50/fr/System.Threading.xml",
  11470. "ref/netcore50/it/System.Threading.xml",
  11471. "ref/netcore50/ja/System.Threading.xml",
  11472. "ref/netcore50/ko/System.Threading.xml",
  11473. "ref/netcore50/ru/System.Threading.xml",
  11474. "ref/netcore50/zh-hans/System.Threading.xml",
  11475. "ref/netcore50/zh-hant/System.Threading.xml",
  11476. "ref/netstandard1.0/System.Threading.dll",
  11477. "ref/netstandard1.0/System.Threading.xml",
  11478. "ref/netstandard1.0/de/System.Threading.xml",
  11479. "ref/netstandard1.0/es/System.Threading.xml",
  11480. "ref/netstandard1.0/fr/System.Threading.xml",
  11481. "ref/netstandard1.0/it/System.Threading.xml",
  11482. "ref/netstandard1.0/ja/System.Threading.xml",
  11483. "ref/netstandard1.0/ko/System.Threading.xml",
  11484. "ref/netstandard1.0/ru/System.Threading.xml",
  11485. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  11486. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  11487. "ref/netstandard1.3/System.Threading.dll",
  11488. "ref/netstandard1.3/System.Threading.xml",
  11489. "ref/netstandard1.3/de/System.Threading.xml",
  11490. "ref/netstandard1.3/es/System.Threading.xml",
  11491. "ref/netstandard1.3/fr/System.Threading.xml",
  11492. "ref/netstandard1.3/it/System.Threading.xml",
  11493. "ref/netstandard1.3/ja/System.Threading.xml",
  11494. "ref/netstandard1.3/ko/System.Threading.xml",
  11495. "ref/netstandard1.3/ru/System.Threading.xml",
  11496. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  11497. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  11498. "ref/portable-net45+win8+wp8+wpa81/_._",
  11499. "ref/win8/_._",
  11500. "ref/wp80/_._",
  11501. "ref/wpa81/_._",
  11502. "ref/xamarinios10/_._",
  11503. "ref/xamarinmac20/_._",
  11504. "ref/xamarintvos10/_._",
  11505. "ref/xamarinwatchos10/_._",
  11506. "runtimes/aot/lib/netcore50/System.Threading.dll",
  11507. "system.threading.4.0.11.nupkg.sha512",
  11508. "system.threading.nuspec"
  11509. ]
  11510. },
  11511. "System.Threading.Tasks/4.3.0": {
  11512. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  11513. "type": "package",
  11514. "path": "system.threading.tasks/4.3.0",
  11515. "files": [
  11516. ".nupkg.metadata",
  11517. ".signature.p7s",
  11518. "ThirdPartyNotices.txt",
  11519. "dotnet_library_license.txt",
  11520. "lib/MonoAndroid10/_._",
  11521. "lib/MonoTouch10/_._",
  11522. "lib/net45/_._",
  11523. "lib/portable-net45+win8+wp8+wpa81/_._",
  11524. "lib/win8/_._",
  11525. "lib/wp80/_._",
  11526. "lib/wpa81/_._",
  11527. "lib/xamarinios10/_._",
  11528. "lib/xamarinmac20/_._",
  11529. "lib/xamarintvos10/_._",
  11530. "lib/xamarinwatchos10/_._",
  11531. "ref/MonoAndroid10/_._",
  11532. "ref/MonoTouch10/_._",
  11533. "ref/net45/_._",
  11534. "ref/netcore50/System.Threading.Tasks.dll",
  11535. "ref/netcore50/System.Threading.Tasks.xml",
  11536. "ref/netcore50/de/System.Threading.Tasks.xml",
  11537. "ref/netcore50/es/System.Threading.Tasks.xml",
  11538. "ref/netcore50/fr/System.Threading.Tasks.xml",
  11539. "ref/netcore50/it/System.Threading.Tasks.xml",
  11540. "ref/netcore50/ja/System.Threading.Tasks.xml",
  11541. "ref/netcore50/ko/System.Threading.Tasks.xml",
  11542. "ref/netcore50/ru/System.Threading.Tasks.xml",
  11543. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  11544. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  11545. "ref/netstandard1.0/System.Threading.Tasks.dll",
  11546. "ref/netstandard1.0/System.Threading.Tasks.xml",
  11547. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  11548. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  11549. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  11550. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  11551. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  11552. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  11553. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  11554. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  11555. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  11556. "ref/netstandard1.3/System.Threading.Tasks.dll",
  11557. "ref/netstandard1.3/System.Threading.Tasks.xml",
  11558. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  11559. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  11560. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  11561. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  11562. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  11563. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  11564. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  11565. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  11566. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  11567. "ref/portable-net45+win8+wp8+wpa81/_._",
  11568. "ref/win8/_._",
  11569. "ref/wp80/_._",
  11570. "ref/wpa81/_._",
  11571. "ref/xamarinios10/_._",
  11572. "ref/xamarinmac20/_._",
  11573. "ref/xamarintvos10/_._",
  11574. "ref/xamarinwatchos10/_._",
  11575. "system.threading.tasks.4.3.0.nupkg.sha512",
  11576. "system.threading.tasks.nuspec"
  11577. ]
  11578. },
  11579. "System.Threading.Tasks.Extensions/4.5.4": {
  11580. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  11581. "type": "package",
  11582. "path": "system.threading.tasks.extensions/4.5.4",
  11583. "files": [
  11584. ".nupkg.metadata",
  11585. ".signature.p7s",
  11586. "LICENSE.TXT",
  11587. "THIRD-PARTY-NOTICES.TXT",
  11588. "lib/MonoAndroid10/_._",
  11589. "lib/MonoTouch10/_._",
  11590. "lib/net461/System.Threading.Tasks.Extensions.dll",
  11591. "lib/net461/System.Threading.Tasks.Extensions.xml",
  11592. "lib/netcoreapp2.1/_._",
  11593. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11594. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11595. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  11596. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  11597. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  11598. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  11599. "lib/xamarinios10/_._",
  11600. "lib/xamarinmac20/_._",
  11601. "lib/xamarintvos10/_._",
  11602. "lib/xamarinwatchos10/_._",
  11603. "ref/MonoAndroid10/_._",
  11604. "ref/MonoTouch10/_._",
  11605. "ref/netcoreapp2.1/_._",
  11606. "ref/xamarinios10/_._",
  11607. "ref/xamarinmac20/_._",
  11608. "ref/xamarintvos10/_._",
  11609. "ref/xamarinwatchos10/_._",
  11610. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  11611. "system.threading.tasks.extensions.nuspec",
  11612. "useSharedDesignerContext.txt",
  11613. "version.txt"
  11614. ]
  11615. },
  11616. "System.Threading.Thread/4.0.0": {
  11617. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  11618. "type": "package",
  11619. "path": "system.threading.thread/4.0.0",
  11620. "files": [
  11621. ".nupkg.metadata",
  11622. ".signature.p7s",
  11623. "ThirdPartyNotices.txt",
  11624. "dotnet_library_license.txt",
  11625. "lib/MonoAndroid10/_._",
  11626. "lib/MonoTouch10/_._",
  11627. "lib/net46/System.Threading.Thread.dll",
  11628. "lib/netcore50/_._",
  11629. "lib/netstandard1.3/System.Threading.Thread.dll",
  11630. "lib/xamarinios10/_._",
  11631. "lib/xamarinmac20/_._",
  11632. "lib/xamarintvos10/_._",
  11633. "lib/xamarinwatchos10/_._",
  11634. "ref/MonoAndroid10/_._",
  11635. "ref/MonoTouch10/_._",
  11636. "ref/net46/System.Threading.Thread.dll",
  11637. "ref/netstandard1.3/System.Threading.Thread.dll",
  11638. "ref/netstandard1.3/System.Threading.Thread.xml",
  11639. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  11640. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  11641. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  11642. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  11643. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  11644. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  11645. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  11646. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  11647. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  11648. "ref/xamarinios10/_._",
  11649. "ref/xamarinmac20/_._",
  11650. "ref/xamarintvos10/_._",
  11651. "ref/xamarinwatchos10/_._",
  11652. "system.threading.thread.4.0.0.nupkg.sha512",
  11653. "system.threading.thread.nuspec"
  11654. ]
  11655. },
  11656. "System.Threading.ThreadPool/4.0.10": {
  11657. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  11658. "type": "package",
  11659. "path": "system.threading.threadpool/4.0.10",
  11660. "files": [
  11661. ".nupkg.metadata",
  11662. ".signature.p7s",
  11663. "ThirdPartyNotices.txt",
  11664. "dotnet_library_license.txt",
  11665. "lib/MonoAndroid10/_._",
  11666. "lib/MonoTouch10/_._",
  11667. "lib/net46/System.Threading.ThreadPool.dll",
  11668. "lib/netcore50/_._",
  11669. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  11670. "lib/xamarinios10/_._",
  11671. "lib/xamarinmac20/_._",
  11672. "lib/xamarintvos10/_._",
  11673. "lib/xamarinwatchos10/_._",
  11674. "ref/MonoAndroid10/_._",
  11675. "ref/MonoTouch10/_._",
  11676. "ref/net46/System.Threading.ThreadPool.dll",
  11677. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  11678. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  11679. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  11680. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  11681. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  11682. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  11683. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  11684. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  11685. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  11686. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  11687. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  11688. "ref/xamarinios10/_._",
  11689. "ref/xamarinmac20/_._",
  11690. "ref/xamarintvos10/_._",
  11691. "ref/xamarinwatchos10/_._",
  11692. "system.threading.threadpool.4.0.10.nupkg.sha512",
  11693. "system.threading.threadpool.nuspec"
  11694. ]
  11695. },
  11696. "System.Threading.Timer/4.0.1": {
  11697. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  11698. "type": "package",
  11699. "path": "system.threading.timer/4.0.1",
  11700. "files": [
  11701. ".nupkg.metadata",
  11702. ".signature.p7s",
  11703. "ThirdPartyNotices.txt",
  11704. "dotnet_library_license.txt",
  11705. "lib/MonoAndroid10/_._",
  11706. "lib/MonoTouch10/_._",
  11707. "lib/net451/_._",
  11708. "lib/portable-net451+win81+wpa81/_._",
  11709. "lib/win81/_._",
  11710. "lib/wpa81/_._",
  11711. "lib/xamarinios10/_._",
  11712. "lib/xamarinmac20/_._",
  11713. "lib/xamarintvos10/_._",
  11714. "lib/xamarinwatchos10/_._",
  11715. "ref/MonoAndroid10/_._",
  11716. "ref/MonoTouch10/_._",
  11717. "ref/net451/_._",
  11718. "ref/netcore50/System.Threading.Timer.dll",
  11719. "ref/netcore50/System.Threading.Timer.xml",
  11720. "ref/netcore50/de/System.Threading.Timer.xml",
  11721. "ref/netcore50/es/System.Threading.Timer.xml",
  11722. "ref/netcore50/fr/System.Threading.Timer.xml",
  11723. "ref/netcore50/it/System.Threading.Timer.xml",
  11724. "ref/netcore50/ja/System.Threading.Timer.xml",
  11725. "ref/netcore50/ko/System.Threading.Timer.xml",
  11726. "ref/netcore50/ru/System.Threading.Timer.xml",
  11727. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  11728. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  11729. "ref/netstandard1.2/System.Threading.Timer.dll",
  11730. "ref/netstandard1.2/System.Threading.Timer.xml",
  11731. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  11732. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  11733. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  11734. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  11735. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  11736. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  11737. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  11738. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  11739. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  11740. "ref/portable-net451+win81+wpa81/_._",
  11741. "ref/win81/_._",
  11742. "ref/wpa81/_._",
  11743. "ref/xamarinios10/_._",
  11744. "ref/xamarinmac20/_._",
  11745. "ref/xamarintvos10/_._",
  11746. "ref/xamarinwatchos10/_._",
  11747. "system.threading.timer.4.0.1.nupkg.sha512",
  11748. "system.threading.timer.nuspec"
  11749. ]
  11750. },
  11751. "System.Windows.Extensions/6.0.0": {
  11752. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  11753. "type": "package",
  11754. "path": "system.windows.extensions/6.0.0",
  11755. "files": [
  11756. ".nupkg.metadata",
  11757. ".signature.p7s",
  11758. "Icon.png",
  11759. "LICENSE.TXT",
  11760. "THIRD-PARTY-NOTICES.TXT",
  11761. "lib/net6.0/System.Windows.Extensions.dll",
  11762. "lib/net6.0/System.Windows.Extensions.xml",
  11763. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11764. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11765. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  11766. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  11767. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11768. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11769. "system.windows.extensions.6.0.0.nupkg.sha512",
  11770. "system.windows.extensions.nuspec",
  11771. "useSharedDesignerContext.txt"
  11772. ]
  11773. },
  11774. "System.Xml.ReaderWriter/4.0.11": {
  11775. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  11776. "type": "package",
  11777. "path": "system.xml.readerwriter/4.0.11",
  11778. "files": [
  11779. ".nupkg.metadata",
  11780. ".signature.p7s",
  11781. "ThirdPartyNotices.txt",
  11782. "dotnet_library_license.txt",
  11783. "lib/MonoAndroid10/_._",
  11784. "lib/MonoTouch10/_._",
  11785. "lib/net45/_._",
  11786. "lib/netcore50/System.Xml.ReaderWriter.dll",
  11787. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  11788. "lib/portable-net45+win8+wp8+wpa81/_._",
  11789. "lib/win8/_._",
  11790. "lib/wp80/_._",
  11791. "lib/wpa81/_._",
  11792. "lib/xamarinios10/_._",
  11793. "lib/xamarinmac20/_._",
  11794. "lib/xamarintvos10/_._",
  11795. "lib/xamarinwatchos10/_._",
  11796. "ref/MonoAndroid10/_._",
  11797. "ref/MonoTouch10/_._",
  11798. "ref/net45/_._",
  11799. "ref/netcore50/System.Xml.ReaderWriter.dll",
  11800. "ref/netcore50/System.Xml.ReaderWriter.xml",
  11801. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  11802. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  11803. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  11804. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  11805. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  11806. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  11807. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  11808. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  11809. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  11810. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  11811. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  11812. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  11813. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  11814. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  11815. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  11816. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  11817. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  11818. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  11819. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  11820. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  11821. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  11822. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  11823. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  11824. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  11825. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  11826. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  11827. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  11828. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  11829. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  11830. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  11831. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  11832. "ref/portable-net45+win8+wp8+wpa81/_._",
  11833. "ref/win8/_._",
  11834. "ref/wp80/_._",
  11835. "ref/wpa81/_._",
  11836. "ref/xamarinios10/_._",
  11837. "ref/xamarinmac20/_._",
  11838. "ref/xamarintvos10/_._",
  11839. "ref/xamarinwatchos10/_._",
  11840. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  11841. "system.xml.readerwriter.nuspec"
  11842. ]
  11843. },
  11844. "System.Xml.XDocument/4.0.11": {
  11845. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  11846. "type": "package",
  11847. "path": "system.xml.xdocument/4.0.11",
  11848. "files": [
  11849. ".nupkg.metadata",
  11850. ".signature.p7s",
  11851. "ThirdPartyNotices.txt",
  11852. "dotnet_library_license.txt",
  11853. "lib/MonoAndroid10/_._",
  11854. "lib/MonoTouch10/_._",
  11855. "lib/net45/_._",
  11856. "lib/netcore50/System.Xml.XDocument.dll",
  11857. "lib/netstandard1.3/System.Xml.XDocument.dll",
  11858. "lib/portable-net45+win8+wp8+wpa81/_._",
  11859. "lib/win8/_._",
  11860. "lib/wp80/_._",
  11861. "lib/wpa81/_._",
  11862. "lib/xamarinios10/_._",
  11863. "lib/xamarinmac20/_._",
  11864. "lib/xamarintvos10/_._",
  11865. "lib/xamarinwatchos10/_._",
  11866. "ref/MonoAndroid10/_._",
  11867. "ref/MonoTouch10/_._",
  11868. "ref/net45/_._",
  11869. "ref/netcore50/System.Xml.XDocument.dll",
  11870. "ref/netcore50/System.Xml.XDocument.xml",
  11871. "ref/netcore50/de/System.Xml.XDocument.xml",
  11872. "ref/netcore50/es/System.Xml.XDocument.xml",
  11873. "ref/netcore50/fr/System.Xml.XDocument.xml",
  11874. "ref/netcore50/it/System.Xml.XDocument.xml",
  11875. "ref/netcore50/ja/System.Xml.XDocument.xml",
  11876. "ref/netcore50/ko/System.Xml.XDocument.xml",
  11877. "ref/netcore50/ru/System.Xml.XDocument.xml",
  11878. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  11879. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  11880. "ref/netstandard1.0/System.Xml.XDocument.dll",
  11881. "ref/netstandard1.0/System.Xml.XDocument.xml",
  11882. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  11883. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  11884. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  11885. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  11886. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  11887. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  11888. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  11889. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  11890. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  11891. "ref/netstandard1.3/System.Xml.XDocument.dll",
  11892. "ref/netstandard1.3/System.Xml.XDocument.xml",
  11893. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  11894. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  11895. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  11896. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  11897. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  11898. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  11899. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  11900. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  11901. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  11902. "ref/portable-net45+win8+wp8+wpa81/_._",
  11903. "ref/win8/_._",
  11904. "ref/wp80/_._",
  11905. "ref/wpa81/_._",
  11906. "ref/xamarinios10/_._",
  11907. "ref/xamarinmac20/_._",
  11908. "ref/xamarintvos10/_._",
  11909. "ref/xamarinwatchos10/_._",
  11910. "system.xml.xdocument.4.0.11.nupkg.sha512",
  11911. "system.xml.xdocument.nuspec"
  11912. ]
  11913. },
  11914. "System.Xml.XmlDocument/4.0.1": {
  11915. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  11916. "type": "package",
  11917. "path": "system.xml.xmldocument/4.0.1",
  11918. "files": [
  11919. ".nupkg.metadata",
  11920. ".signature.p7s",
  11921. "ThirdPartyNotices.txt",
  11922. "dotnet_library_license.txt",
  11923. "lib/MonoAndroid10/_._",
  11924. "lib/MonoTouch10/_._",
  11925. "lib/net46/System.Xml.XmlDocument.dll",
  11926. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  11927. "lib/xamarinios10/_._",
  11928. "lib/xamarinmac20/_._",
  11929. "lib/xamarintvos10/_._",
  11930. "lib/xamarinwatchos10/_._",
  11931. "ref/MonoAndroid10/_._",
  11932. "ref/MonoTouch10/_._",
  11933. "ref/net46/System.Xml.XmlDocument.dll",
  11934. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  11935. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  11936. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  11937. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  11938. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  11939. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  11940. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  11941. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  11942. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  11943. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  11944. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  11945. "ref/xamarinios10/_._",
  11946. "ref/xamarinmac20/_._",
  11947. "ref/xamarintvos10/_._",
  11948. "ref/xamarinwatchos10/_._",
  11949. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  11950. "system.xml.xmldocument.nuspec"
  11951. ]
  11952. },
  11953. "System.Xml.XPath/4.0.1": {
  11954. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  11955. "type": "package",
  11956. "path": "system.xml.xpath/4.0.1",
  11957. "files": [
  11958. ".nupkg.metadata",
  11959. ".signature.p7s",
  11960. "ThirdPartyNotices.txt",
  11961. "dotnet_library_license.txt",
  11962. "lib/MonoAndroid10/_._",
  11963. "lib/MonoTouch10/_._",
  11964. "lib/net46/System.Xml.XPath.dll",
  11965. "lib/netstandard1.3/System.Xml.XPath.dll",
  11966. "lib/xamarinios10/_._",
  11967. "lib/xamarinmac20/_._",
  11968. "lib/xamarintvos10/_._",
  11969. "lib/xamarinwatchos10/_._",
  11970. "ref/MonoAndroid10/_._",
  11971. "ref/MonoTouch10/_._",
  11972. "ref/net46/System.Xml.XPath.dll",
  11973. "ref/netstandard1.3/System.Xml.XPath.dll",
  11974. "ref/netstandard1.3/System.Xml.XPath.xml",
  11975. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  11976. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  11977. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  11978. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  11979. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  11980. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  11981. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  11982. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  11983. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  11984. "ref/xamarinios10/_._",
  11985. "ref/xamarinmac20/_._",
  11986. "ref/xamarintvos10/_._",
  11987. "ref/xamarinwatchos10/_._",
  11988. "system.xml.xpath.4.0.1.nupkg.sha512",
  11989. "system.xml.xpath.nuspec"
  11990. ]
  11991. },
  11992. "System.Xml.XPath.XmlDocument/4.0.1": {
  11993. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  11994. "type": "package",
  11995. "path": "system.xml.xpath.xmldocument/4.0.1",
  11996. "files": [
  11997. ".nupkg.metadata",
  11998. ".signature.p7s",
  11999. "ThirdPartyNotices.txt",
  12000. "dotnet_library_license.txt",
  12001. "lib/MonoAndroid10/_._",
  12002. "lib/MonoTouch10/_._",
  12003. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  12004. "lib/xamarinios10/_._",
  12005. "lib/xamarinmac20/_._",
  12006. "lib/xamarintvos10/_._",
  12007. "lib/xamarinwatchos10/_._",
  12008. "ref/MonoAndroid10/_._",
  12009. "ref/MonoTouch10/_._",
  12010. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  12011. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  12012. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  12013. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  12014. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  12015. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  12016. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  12017. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  12018. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  12019. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  12020. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  12021. "ref/xamarinios10/_._",
  12022. "ref/xamarinmac20/_._",
  12023. "ref/xamarintvos10/_._",
  12024. "ref/xamarinwatchos10/_._",
  12025. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  12026. "system.xml.xpath.xmldocument.nuspec"
  12027. ]
  12028. }
  12029. },
  12030. "projectFileDependencyGroups": {
  12031. ".NETCoreApp,Version=v3.1": [
  12032. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1",
  12033. "Flurl.Http >= 4.0.2",
  12034. "Microsoft.Extensions.Hosting.WindowsServices >= 8.0.0",
  12035. "Microsoft.NETCore.Targets >= 3.0.0",
  12036. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  12037. "NLog.Web.AspNetCore >= 5.3.8",
  12038. "Newtonsoft.Json >= 13.0.3",
  12039. "Quartz >= 3.8.1",
  12040. "StackExchange.Redis >= 2.7.33",
  12041. "Swashbuckle.AspNetCore >= 6.5.0",
  12042. "Swashbuckle.AspNetCore.Filters >= 8.0.1",
  12043. "System.IdentityModel.Tokens.Jwt >= 7.4.1"
  12044. ]
  12045. },
  12046. "packageFolders": {
  12047. "C:\\Users\\Lenovo\\.nuget\\packages\\": {}
  12048. },
  12049. "project": {
  12050. "version": "1.0.0",
  12051. "restore": {
  12052. "projectUniqueName": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\CCS.csproj",
  12053. "projectName": "IMCS_CCS",
  12054. "projectPath": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\CCS.csproj",
  12055. "packagesPath": "C:\\Users\\Lenovo\\.nuget\\packages\\",
  12056. "outputPath": "D:\\A_Install\\WorkSpace\\Vs2022\\yg_chf\\chf_ccs\\IMCS_CCS\\obj\\publish\\win-x64\\",
  12057. "projectStyle": "PackageReference",
  12058. "configFilePaths": [
  12059. "C:\\Users\\Lenovo\\AppData\\Roaming\\NuGet\\NuGet.Config",
  12060. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  12061. ],
  12062. "originalTargetFrameworks": [
  12063. "netcoreapp3.1"
  12064. ],
  12065. "sources": {
  12066. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  12067. "C:\\Program Files\\dotnet\\library-packs": {},
  12068. "https://api.nuget.org/v3/index.json": {}
  12069. },
  12070. "frameworks": {
  12071. "netcoreapp3.1": {
  12072. "targetAlias": "netcoreapp3.1",
  12073. "projectReferences": {}
  12074. }
  12075. },
  12076. "warningProperties": {
  12077. "warnAsError": [
  12078. "NU1605"
  12079. ]
  12080. },
  12081. "restoreAuditProperties": {
  12082. "enableAudit": "true",
  12083. "auditLevel": "low",
  12084. "auditMode": "direct"
  12085. }
  12086. },
  12087. "frameworks": {
  12088. "netcoreapp3.1": {
  12089. "targetAlias": "netcoreapp3.1",
  12090. "dependencies": {
  12091. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  12092. "target": "Package",
  12093. "version": "[12.0.1, )"
  12094. },
  12095. "Flurl.Http": {
  12096. "target": "Package",
  12097. "version": "[4.0.2, )"
  12098. },
  12099. "Microsoft.Extensions.Hosting.WindowsServices": {
  12100. "target": "Package",
  12101. "version": "[8.0.0, )"
  12102. },
  12103. "Microsoft.NETCore.Targets": {
  12104. "suppressParent": "All",
  12105. "target": "Package",
  12106. "version": "[3.0.0, )"
  12107. },
  12108. "MySql.Data.EntityFrameworkCore": {
  12109. "target": "Package",
  12110. "version": "[8.0.22, )"
  12111. },
  12112. "NLog.Web.AspNetCore": {
  12113. "target": "Package",
  12114. "version": "[5.3.8, )"
  12115. },
  12116. "Newtonsoft.Json": {
  12117. "target": "Package",
  12118. "version": "[13.0.3, )"
  12119. },
  12120. "Quartz": {
  12121. "target": "Package",
  12122. "version": "[3.8.1, )"
  12123. },
  12124. "StackExchange.Redis": {
  12125. "target": "Package",
  12126. "version": "[2.7.33, )"
  12127. },
  12128. "Swashbuckle.AspNetCore": {
  12129. "target": "Package",
  12130. "version": "[6.5.0, )"
  12131. },
  12132. "Swashbuckle.AspNetCore.Filters": {
  12133. "target": "Package",
  12134. "version": "[8.0.1, )"
  12135. },
  12136. "System.IdentityModel.Tokens.Jwt": {
  12137. "target": "Package",
  12138. "version": "[7.4.1, )"
  12139. }
  12140. },
  12141. "imports": [
  12142. "net461",
  12143. "net462",
  12144. "net47",
  12145. "net471",
  12146. "net472",
  12147. "net48",
  12148. "net481"
  12149. ],
  12150. "assetTargetFallback": true,
  12151. "warn": true,
  12152. "downloadDependencies": [
  12153. {
  12154. "name": "Microsoft.AspNetCore.App.Ref",
  12155. "version": "[3.1.10, 3.1.10]"
  12156. },
  12157. {
  12158. "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
  12159. "version": "[3.1.32, 3.1.32]"
  12160. },
  12161. {
  12162. "name": "Microsoft.NETCore.App.Host.win-x64",
  12163. "version": "[3.1.32, 3.1.32]"
  12164. },
  12165. {
  12166. "name": "Microsoft.NETCore.App.Ref",
  12167. "version": "[3.1.0, 3.1.0]"
  12168. },
  12169. {
  12170. "name": "Microsoft.NETCore.App.Runtime.win-x64",
  12171. "version": "[3.1.32, 3.1.32]"
  12172. },
  12173. {
  12174. "name": "Microsoft.WindowsDesktop.App.Ref",
  12175. "version": "[3.1.0, 3.1.0]"
  12176. },
  12177. {
  12178. "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
  12179. "version": "[3.1.32, 3.1.32]"
  12180. }
  12181. ],
  12182. "frameworkReferences": {
  12183. "Microsoft.AspNetCore.App": {
  12184. "privateAssets": "none"
  12185. },
  12186. "Microsoft.NETCore.App": {
  12187. "privateAssets": "all"
  12188. }
  12189. },
  12190. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.303\\RuntimeIdentifierGraph.json"
  12191. }
  12192. },
  12193. "runtimes": {
  12194. "win-x64": {
  12195. "#import": []
  12196. }
  12197. }
  12198. }
  12199. }