project.assets.json 494 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/10.1.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0",
  9. "System.Reflection.Emit": "4.7.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/AutoMapper.dll": {}
  13. },
  14. "runtime": {
  15. "lib/netstandard2.0/AutoMapper.dll": {}
  16. }
  17. },
  18. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "AutoMapper": "[10.1.1, 11.0.0)",
  22. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  23. "Microsoft.Extensions.Options": "3.0.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  30. }
  31. },
  32. "BouncyCastle.NetCore/1.8.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0",
  36. "System.Reflection": "4.3.0",
  37. "System.Reflection.TypeExtensions": "4.1.0"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  44. }
  45. },
  46. "Flurl/3.0.2": {
  47. "type": "package",
  48. "compile": {
  49. "lib/netstandard2.0/Flurl.dll": {}
  50. },
  51. "runtime": {
  52. "lib/netstandard2.0/Flurl.dll": {}
  53. }
  54. },
  55. "Flurl.Http/3.2.0": {
  56. "type": "package",
  57. "dependencies": {
  58. "Flurl": "3.0.2",
  59. "Newtonsoft.Json": "12.0.2",
  60. "System.Text.Encoding.CodePages": "4.5.1"
  61. },
  62. "compile": {
  63. "lib/netstandard2.0/Flurl.Http.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netstandard2.0/Flurl.Http.dll": {}
  67. }
  68. },
  69. "Google.Protobuf/3.11.4": {
  70. "type": "package",
  71. "dependencies": {
  72. "System.Memory": "4.5.2"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/Google.Protobuf.dll": {}
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Google.Protobuf.dll": {}
  79. }
  80. },
  81. "K4os.Compression.LZ4/1.1.11": {
  82. "type": "package",
  83. "dependencies": {
  84. "System.Memory": "4.5.3"
  85. },
  86. "compile": {
  87. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  91. }
  92. },
  93. "K4os.Compression.LZ4.Streams/1.1.11": {
  94. "type": "package",
  95. "dependencies": {
  96. "K4os.Compression.LZ4": "1.1.11",
  97. "K4os.Hash.xxHash": "1.0.6"
  98. },
  99. "compile": {
  100. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  104. }
  105. },
  106. "K4os.Hash.xxHash/1.0.6": {
  107. "type": "package",
  108. "dependencies": {
  109. "System.Memory": "4.5.3"
  110. },
  111. "compile": {
  112. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  113. },
  114. "runtime": {
  115. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  116. }
  117. },
  118. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  119. "type": "package",
  120. "compile": {
  121. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  122. },
  123. "runtime": {
  124. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  125. }
  126. },
  127. "Microsoft.Bcl.HashCode/1.1.0": {
  128. "type": "package",
  129. "compile": {
  130. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  134. }
  135. },
  136. "Microsoft.CSharp/4.7.0": {
  137. "type": "package",
  138. "compile": {
  139. "ref/netcoreapp2.0/_._": {}
  140. },
  141. "runtime": {
  142. "lib/netcoreapp2.0/_._": {}
  143. }
  144. },
  145. "Microsoft.EntityFrameworkCore/3.1.1": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  149. "Microsoft.Bcl.HashCode": "1.1.0",
  150. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  151. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  152. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  153. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  154. "Microsoft.Extensions.Logging": "3.1.1",
  155. "System.Collections.Immutable": "1.7.0",
  156. "System.ComponentModel.Annotations": "4.7.0",
  157. "System.Diagnostics.DiagnosticSource": "4.7.0"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  164. }
  165. },
  166. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  167. "type": "package",
  168. "compile": {
  169. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  170. },
  171. "runtime": {
  172. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  173. }
  174. },
  175. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  176. "type": "package",
  177. "compile": {
  178. "lib/netstandard2.0/_._": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/_._": {}
  182. }
  183. },
  184. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.EntityFrameworkCore": "3.1.1"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  191. },
  192. "runtime": {
  193. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  194. }
  195. },
  196. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  197. "type": "package",
  198. "build": {
  199. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  200. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  201. },
  202. "buildMultiTargeting": {
  203. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  204. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  205. }
  206. },
  207. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  208. "type": "package",
  209. "dependencies": {
  210. "Microsoft.Extensions.Primitives": "3.1.1"
  211. },
  212. "compile": {
  213. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  214. },
  215. "runtime": {
  216. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  217. }
  218. },
  219. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  220. "type": "package",
  221. "dependencies": {
  222. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  223. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  224. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  225. "Microsoft.Extensions.Options": "3.1.1"
  226. },
  227. "compile": {
  228. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  232. }
  233. },
  234. "Microsoft.Extensions.Configuration/5.0.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  238. "Microsoft.Extensions.Primitives": "5.0.0"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  242. },
  243. "runtime": {
  244. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  245. }
  246. },
  247. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  248. "type": "package",
  249. "dependencies": {
  250. "Microsoft.Extensions.Primitives": "5.0.0"
  251. },
  252. "compile": {
  253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  257. }
  258. },
  259. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  260. "type": "package",
  261. "dependencies": {
  262. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  263. },
  264. "compile": {
  265. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  266. },
  267. "runtime": {
  268. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  269. }
  270. },
  271. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Configuration": "5.0.0",
  275. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  276. },
  277. "compile": {
  278. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  279. },
  280. "runtime": {
  281. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  282. }
  283. },
  284. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  285. "type": "package",
  286. "dependencies": {
  287. "Microsoft.Extensions.Configuration": "5.0.0",
  288. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  289. },
  290. "compile": {
  291. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  292. },
  293. "runtime": {
  294. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  295. }
  296. },
  297. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  298. "type": "package",
  299. "dependencies": {
  300. "Microsoft.Extensions.Configuration": "5.0.0",
  301. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  302. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  303. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  304. "Microsoft.Extensions.Primitives": "5.0.0"
  305. },
  306. "compile": {
  307. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  308. },
  309. "runtime": {
  310. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  311. }
  312. },
  313. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  314. "type": "package",
  315. "dependencies": {
  316. "Microsoft.Extensions.Configuration": "5.0.0",
  317. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  318. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  319. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  320. "System.Text.Json": "5.0.0"
  321. },
  322. "compile": {
  323. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  324. },
  325. "runtime": {
  326. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  333. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  334. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  335. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  342. },
  343. "build": {
  344. "build/netstandard2.0/_._": {}
  345. }
  346. },
  347. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  348. "type": "package",
  349. "dependencies": {
  350. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  351. },
  352. "compile": {
  353. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  354. },
  355. "runtime": {
  356. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  357. }
  358. },
  359. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  360. "type": "package",
  361. "compile": {
  362. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  363. },
  364. "runtime": {
  365. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  366. }
  367. },
  368. "Microsoft.Extensions.DependencyModel/3.1.6": {
  369. "type": "package",
  370. "dependencies": {
  371. "System.Text.Json": "4.7.2"
  372. },
  373. "compile": {
  374. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  375. },
  376. "runtime": {
  377. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  378. }
  379. },
  380. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  381. "type": "package",
  382. "dependencies": {
  383. "Microsoft.Extensions.Primitives": "5.0.0"
  384. },
  385. "compile": {
  386. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  387. },
  388. "runtime": {
  389. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  390. }
  391. },
  392. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  393. "type": "package",
  394. "dependencies": {
  395. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  396. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  397. "Microsoft.Extensions.Primitives": "5.0.0"
  398. },
  399. "compile": {
  400. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  404. }
  405. },
  406. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  407. "type": "package",
  408. "compile": {
  409. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  410. },
  411. "runtime": {
  412. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  413. }
  414. },
  415. "Microsoft.Extensions.Hosting/5.0.0": {
  416. "type": "package",
  417. "dependencies": {
  418. "Microsoft.Extensions.Configuration": "5.0.0",
  419. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  420. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  421. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  422. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  423. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  424. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  425. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  426. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  427. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  428. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  429. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  430. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  431. "Microsoft.Extensions.Logging": "5.0.0",
  432. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  433. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  434. "Microsoft.Extensions.Logging.Console": "5.0.0",
  435. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  436. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  437. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  438. "Microsoft.Extensions.Options": "5.0.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  442. },
  443. "runtime": {
  444. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  445. }
  446. },
  447. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  448. "type": "package",
  449. "dependencies": {
  450. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  451. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  452. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  453. },
  454. "compile": {
  455. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  456. },
  457. "runtime": {
  458. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  459. }
  460. },
  461. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  462. "type": "package",
  463. "dependencies": {
  464. "Microsoft.Extensions.Hosting": "5.0.0",
  465. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  466. "System.ServiceProcess.ServiceController": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Logging/5.0.0": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  479. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  480. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.Options": "5.0.0",
  482. "System.Diagnostics.DiagnosticSource": "5.0.0"
  483. },
  484. "compile": {
  485. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  486. },
  487. "runtime": {
  488. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  489. }
  490. },
  491. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  492. "type": "package",
  493. "compile": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  495. },
  496. "runtime": {
  497. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  498. }
  499. },
  500. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.Extensions.Configuration": "5.0.0",
  504. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  505. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  506. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  507. "Microsoft.Extensions.Logging": "5.0.0",
  508. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  509. "Microsoft.Extensions.Options": "5.0.0",
  510. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  511. },
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  517. }
  518. },
  519. "Microsoft.Extensions.Logging.Console/5.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  523. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  524. "Microsoft.Extensions.Logging": "5.0.0",
  525. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  526. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  527. "Microsoft.Extensions.Options": "5.0.0",
  528. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
  529. "System.Text.Json": "5.0.0"
  530. },
  531. "compile": {
  532. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  533. },
  534. "runtime": {
  535. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  536. }
  537. },
  538. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  542. "Microsoft.Extensions.Logging": "5.0.0",
  543. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  544. },
  545. "compile": {
  546. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  550. }
  551. },
  552. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  556. "Microsoft.Extensions.Logging": "5.0.0",
  557. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  558. "Microsoft.Extensions.Options": "5.0.0",
  559. "System.Diagnostics.EventLog": "5.0.0"
  560. },
  561. "compile": {
  562. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  563. },
  564. "runtime": {
  565. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  566. }
  567. },
  568. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  569. "type": "package",
  570. "dependencies": {
  571. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  572. "Microsoft.Extensions.Logging": "5.0.0",
  573. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  574. "Microsoft.Extensions.Options": "5.0.0",
  575. "Microsoft.Extensions.Primitives": "5.0.0"
  576. },
  577. "compile": {
  578. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  579. },
  580. "runtime": {
  581. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  582. }
  583. },
  584. "Microsoft.Extensions.Options/5.0.0": {
  585. "type": "package",
  586. "dependencies": {
  587. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  588. "Microsoft.Extensions.Primitives": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  595. }
  596. },
  597. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  598. "type": "package",
  599. "dependencies": {
  600. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  601. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  602. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  603. "Microsoft.Extensions.Options": "5.0.0",
  604. "Microsoft.Extensions.Primitives": "5.0.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  608. },
  609. "runtime": {
  610. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  611. }
  612. },
  613. "Microsoft.Extensions.Primitives/5.0.0": {
  614. "type": "package",
  615. "compile": {
  616. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  617. },
  618. "runtime": {
  619. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  620. }
  621. },
  622. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  623. "type": "package",
  624. "dependencies": {
  625. "Microsoft.IdentityModel.Tokens": "6.11.0"
  626. },
  627. "compile": {
  628. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  629. },
  630. "runtime": {
  631. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  632. }
  633. },
  634. "Microsoft.IdentityModel.Logging/6.11.0": {
  635. "type": "package",
  636. "compile": {
  637. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  638. },
  639. "runtime": {
  640. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  641. }
  642. },
  643. "Microsoft.IdentityModel.Tokens/6.11.0": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.CSharp": "4.5.0",
  647. "Microsoft.IdentityModel.Logging": "6.11.0",
  648. "System.Security.Cryptography.Cng": "4.5.0"
  649. },
  650. "compile": {
  651. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  652. },
  653. "runtime": {
  654. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  655. }
  656. },
  657. "Microsoft.NETCore.Platforms/5.0.0": {
  658. "type": "package",
  659. "compile": {
  660. "lib/netstandard1.0/_._": {}
  661. },
  662. "runtime": {
  663. "lib/netstandard1.0/_._": {}
  664. }
  665. },
  666. "Microsoft.NETCore.Targets/1.1.0": {
  667. "type": "package",
  668. "compile": {
  669. "lib/netstandard1.0/_._": {}
  670. },
  671. "runtime": {
  672. "lib/netstandard1.0/_._": {}
  673. }
  674. },
  675. "Microsoft.OpenApi/1.2.3": {
  676. "type": "package",
  677. "compile": {
  678. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  682. }
  683. },
  684. "Microsoft.Win32.Primitives/4.0.1": {
  685. "type": "package",
  686. "dependencies": {
  687. "Microsoft.NETCore.Platforms": "1.0.1",
  688. "Microsoft.NETCore.Targets": "1.0.1",
  689. "System.Runtime": "4.1.0"
  690. },
  691. "compile": {
  692. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  693. }
  694. },
  695. "Microsoft.Win32.Registry/5.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "System.Security.AccessControl": "5.0.0",
  699. "System.Security.Principal.Windows": "5.0.0"
  700. },
  701. "compile": {
  702. "ref/netstandard2.0/_._": {}
  703. },
  704. "runtime": {
  705. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  706. },
  707. "runtimeTargets": {
  708. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  709. "assetType": "runtime",
  710. "rid": "win"
  711. }
  712. }
  713. },
  714. "Microsoft.Win32.SystemEvents/5.0.0": {
  715. "type": "package",
  716. "dependencies": {
  717. "Microsoft.NETCore.Platforms": "5.0.0"
  718. },
  719. "compile": {
  720. "ref/netstandard2.0/_._": {}
  721. },
  722. "runtime": {
  723. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  724. },
  725. "runtimeTargets": {
  726. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  727. "assetType": "runtime",
  728. "rid": "win"
  729. }
  730. }
  731. },
  732. "MySql.Data/8.0.22": {
  733. "type": "package",
  734. "dependencies": {
  735. "BouncyCastle.NetCore": "1.8.3",
  736. "Google.Protobuf": "3.11.4",
  737. "K4os.Compression.LZ4": "1.1.11",
  738. "K4os.Compression.LZ4.Streams": "1.1.11",
  739. "K4os.Hash.xxHash": "1.0.6",
  740. "SSH.NET": "2016.1.0",
  741. "System.Buffers": "4.5.1",
  742. "System.Configuration.ConfigurationManager": "4.4.1",
  743. "System.Security.Permissions": "4.7.0",
  744. "System.Text.Encoding.CodePages": "4.4.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.1/MySql.Data.dll": {},
  748. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  749. "lib/netstandard2.1/Zstandard.Net.dll": {}
  750. },
  751. "runtime": {
  752. "lib/netstandard2.1/MySql.Data.dll": {},
  753. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  754. "lib/netstandard2.1/Zstandard.Net.dll": {}
  755. }
  756. },
  757. "MySql.Data.EntityFrameworkCore/8.0.22": {
  758. "type": "package",
  759. "dependencies": {
  760. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  761. "MySql.Data": "8.0.22"
  762. },
  763. "compile": {
  764. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  765. },
  766. "runtime": {
  767. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  768. }
  769. },
  770. "NETStandard.Library/1.6.0": {
  771. "type": "package",
  772. "dependencies": {
  773. "Microsoft.NETCore.Platforms": "1.0.1",
  774. "Microsoft.Win32.Primitives": "4.0.1",
  775. "System.AppContext": "4.1.0",
  776. "System.Collections": "4.0.11",
  777. "System.Collections.Concurrent": "4.0.12",
  778. "System.Console": "4.0.0",
  779. "System.Diagnostics.Debug": "4.0.11",
  780. "System.Diagnostics.Tools": "4.0.1",
  781. "System.Diagnostics.Tracing": "4.1.0",
  782. "System.Globalization": "4.0.11",
  783. "System.Globalization.Calendars": "4.0.1",
  784. "System.IO": "4.1.0",
  785. "System.IO.Compression": "4.1.0",
  786. "System.IO.Compression.ZipFile": "4.0.1",
  787. "System.IO.FileSystem": "4.0.1",
  788. "System.IO.FileSystem.Primitives": "4.0.1",
  789. "System.Linq": "4.1.0",
  790. "System.Linq.Expressions": "4.1.0",
  791. "System.Net.Http": "4.1.0",
  792. "System.Net.Primitives": "4.0.11",
  793. "System.Net.Sockets": "4.1.0",
  794. "System.ObjectModel": "4.0.12",
  795. "System.Reflection": "4.1.0",
  796. "System.Reflection.Extensions": "4.0.1",
  797. "System.Reflection.Primitives": "4.0.1",
  798. "System.Resources.ResourceManager": "4.0.1",
  799. "System.Runtime": "4.1.0",
  800. "System.Runtime.Extensions": "4.1.0",
  801. "System.Runtime.Handles": "4.0.1",
  802. "System.Runtime.InteropServices": "4.1.0",
  803. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  804. "System.Runtime.Numerics": "4.0.1",
  805. "System.Security.Cryptography.Algorithms": "4.2.0",
  806. "System.Security.Cryptography.Encoding": "4.0.0",
  807. "System.Security.Cryptography.Primitives": "4.0.0",
  808. "System.Security.Cryptography.X509Certificates": "4.1.0",
  809. "System.Text.Encoding": "4.0.11",
  810. "System.Text.Encoding.Extensions": "4.0.11",
  811. "System.Text.RegularExpressions": "4.1.0",
  812. "System.Threading": "4.0.11",
  813. "System.Threading.Tasks": "4.0.11",
  814. "System.Threading.Timer": "4.0.1",
  815. "System.Xml.ReaderWriter": "4.0.11",
  816. "System.Xml.XDocument": "4.0.11"
  817. }
  818. },
  819. "Newtonsoft.Json/13.0.1": {
  820. "type": "package",
  821. "compile": {
  822. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  823. },
  824. "runtime": {
  825. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  826. }
  827. },
  828. "NLog/4.7.9": {
  829. "type": "package",
  830. "compile": {
  831. "lib/netstandard2.0/NLog.dll": {}
  832. },
  833. "runtime": {
  834. "lib/netstandard2.0/NLog.dll": {}
  835. }
  836. },
  837. "NLog.Extensions.Logging/1.7.2": {
  838. "type": "package",
  839. "dependencies": {
  840. "Microsoft.Extensions.Logging": "3.0.0",
  841. "NLog": "4.7.9"
  842. },
  843. "compile": {
  844. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  845. },
  846. "runtime": {
  847. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  848. }
  849. },
  850. "NLog.Web.AspNetCore/4.12.0": {
  851. "type": "package",
  852. "dependencies": {
  853. "NLog.Extensions.Logging": "1.7.2"
  854. },
  855. "compile": {
  856. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  857. },
  858. "runtime": {
  859. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  860. },
  861. "frameworkReferences": [
  862. "Microsoft.AspNetCore.App"
  863. ]
  864. },
  865. "Pipelines.Sockets.Unofficial/2.2.0": {
  866. "type": "package",
  867. "dependencies": {
  868. "System.IO.Pipelines": "5.0.0"
  869. },
  870. "compile": {
  871. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  872. },
  873. "runtime": {
  874. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  875. }
  876. },
  877. "Quartz/3.3.2": {
  878. "type": "package",
  879. "dependencies": {
  880. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  881. "System.Configuration.ConfigurationManager": "4.7.0",
  882. "System.Diagnostics.DiagnosticSource": "4.7.1"
  883. },
  884. "compile": {
  885. "lib/netstandard2.0/Quartz.dll": {}
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Quartz.dll": {}
  889. }
  890. },
  891. "runtime.native.System/4.0.0": {
  892. "type": "package",
  893. "dependencies": {
  894. "Microsoft.NETCore.Platforms": "1.0.1",
  895. "Microsoft.NETCore.Targets": "1.0.1"
  896. },
  897. "compile": {
  898. "lib/netstandard1.0/_._": {}
  899. },
  900. "runtime": {
  901. "lib/netstandard1.0/_._": {}
  902. }
  903. },
  904. "runtime.native.System.IO.Compression/4.1.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.NETCore.Platforms": "1.0.1",
  908. "Microsoft.NETCore.Targets": "1.0.1"
  909. },
  910. "compile": {
  911. "lib/netstandard1.0/_._": {}
  912. },
  913. "runtime": {
  914. "lib/netstandard1.0/_._": {}
  915. }
  916. },
  917. "runtime.native.System.Net.Http/4.0.1": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.NETCore.Platforms": "1.0.1",
  921. "Microsoft.NETCore.Targets": "1.0.1"
  922. },
  923. "compile": {
  924. "lib/netstandard1.0/_._": {}
  925. },
  926. "runtime": {
  927. "lib/netstandard1.0/_._": {}
  928. }
  929. },
  930. "runtime.native.System.Security.Cryptography/4.0.0": {
  931. "type": "package",
  932. "dependencies": {
  933. "Microsoft.NETCore.Platforms": "1.0.1",
  934. "Microsoft.NETCore.Targets": "1.0.1"
  935. },
  936. "compile": {
  937. "lib/netstandard1.0/_._": {}
  938. },
  939. "runtime": {
  940. "lib/netstandard1.0/_._": {}
  941. }
  942. },
  943. "Scrutor/3.3.0": {
  944. "type": "package",
  945. "dependencies": {
  946. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  947. "Microsoft.Extensions.DependencyModel": "3.1.6"
  948. },
  949. "compile": {
  950. "lib/netcoreapp3.1/Scrutor.dll": {}
  951. },
  952. "runtime": {
  953. "lib/netcoreapp3.1/Scrutor.dll": {}
  954. }
  955. },
  956. "SSH.NET/2016.1.0": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.CSharp": "4.0.1",
  960. "SshNet.Security.Cryptography": "[1.2.0]",
  961. "System.Diagnostics.Debug": "4.0.11",
  962. "System.Diagnostics.Tools": "4.0.1",
  963. "System.Diagnostics.TraceSource": "4.0.0",
  964. "System.Globalization": "4.0.11",
  965. "System.IO": "4.1.0",
  966. "System.IO.FileSystem": "4.0.1",
  967. "System.IO.FileSystem.Primitives": "4.0.1",
  968. "System.Linq": "4.1.0",
  969. "System.Net.NameResolution": "4.0.0",
  970. "System.Net.Sockets": "4.1.0",
  971. "System.Reflection.Extensions": "4.0.1",
  972. "System.Runtime.Extensions": "4.1.0",
  973. "System.Security.Cryptography.Algorithms": "4.2.0",
  974. "System.Text.RegularExpressions": "4.1.0",
  975. "System.Threading": "4.0.11",
  976. "System.Threading.Thread": "4.0.0",
  977. "System.Threading.ThreadPool": "4.0.10",
  978. "System.Threading.Timer": "4.0.1",
  979. "System.Xml.XPath.XmlDocument": "4.0.1",
  980. "System.Xml.XmlDocument": "4.0.1"
  981. },
  982. "compile": {
  983. "lib/netstandard1.3/Renci.SshNet.dll": {}
  984. },
  985. "runtime": {
  986. "lib/netstandard1.3/Renci.SshNet.dll": {}
  987. }
  988. },
  989. "SshNet.Security.Cryptography/1.2.0": {
  990. "type": "package",
  991. "dependencies": {
  992. "System.IO": "4.1.0",
  993. "System.Security.Cryptography.Primitives": "4.0.0"
  994. },
  995. "compile": {
  996. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  997. },
  998. "runtime": {
  999. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1000. }
  1001. },
  1002. "StackExchange.Redis/2.2.62": {
  1003. "type": "package",
  1004. "dependencies": {
  1005. "Pipelines.Sockets.Unofficial": "2.2.0",
  1006. "System.Diagnostics.PerformanceCounter": "5.0.0"
  1007. },
  1008. "compile": {
  1009. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1013. }
  1014. },
  1015. "Swashbuckle.AspNetCore/6.3.1": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1019. "Swashbuckle.AspNetCore.Swagger": "6.3.1",
  1020. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1",
  1021. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.1"
  1022. },
  1023. "build": {
  1024. "build/Swashbuckle.AspNetCore.props": {}
  1025. }
  1026. },
  1027. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1031. "Microsoft.OpenApi": "1.2.3",
  1032. "Scrutor": "3.3.0",
  1033. "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2",
  1034. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1035. },
  1036. "compile": {
  1037. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1041. }
  1042. },
  1043. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  1044. "type": "package",
  1045. "compile": {
  1046. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1047. },
  1048. "runtime": {
  1049. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1050. }
  1051. },
  1052. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.OpenApi": "1.2.3"
  1056. },
  1057. "compile": {
  1058. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1059. },
  1060. "runtime": {
  1061. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1062. },
  1063. "frameworkReferences": [
  1064. "Microsoft.AspNetCore.App"
  1065. ]
  1066. },
  1067. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  1068. "type": "package",
  1069. "dependencies": {
  1070. "Swashbuckle.AspNetCore.Swagger": "6.3.1"
  1071. },
  1072. "compile": {
  1073. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1077. }
  1078. },
  1079. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  1080. "type": "package",
  1081. "compile": {
  1082. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1083. },
  1084. "runtime": {
  1085. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1086. },
  1087. "frameworkReferences": [
  1088. "Microsoft.AspNetCore.App"
  1089. ]
  1090. },
  1091. "System.AppContext/4.1.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "System.Runtime": "4.1.0"
  1095. },
  1096. "compile": {
  1097. "ref/netstandard1.6/System.AppContext.dll": {}
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard1.6/System.AppContext.dll": {}
  1101. }
  1102. },
  1103. "System.Buffers/4.5.1": {
  1104. "type": "package",
  1105. "compile": {
  1106. "ref/netcoreapp2.0/_._": {}
  1107. },
  1108. "runtime": {
  1109. "lib/netcoreapp2.0/_._": {}
  1110. }
  1111. },
  1112. "System.Collections/4.0.11": {
  1113. "type": "package",
  1114. "dependencies": {
  1115. "Microsoft.NETCore.Platforms": "1.0.1",
  1116. "Microsoft.NETCore.Targets": "1.0.1",
  1117. "System.Runtime": "4.1.0"
  1118. },
  1119. "compile": {
  1120. "ref/netstandard1.3/System.Collections.dll": {}
  1121. }
  1122. },
  1123. "System.Collections.Concurrent/4.0.12": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "System.Collections": "4.0.11",
  1127. "System.Diagnostics.Debug": "4.0.11",
  1128. "System.Diagnostics.Tracing": "4.1.0",
  1129. "System.Globalization": "4.0.11",
  1130. "System.Reflection": "4.1.0",
  1131. "System.Resources.ResourceManager": "4.0.1",
  1132. "System.Runtime": "4.1.0",
  1133. "System.Runtime.Extensions": "4.1.0",
  1134. "System.Threading": "4.0.11",
  1135. "System.Threading.Tasks": "4.0.11"
  1136. },
  1137. "compile": {
  1138. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1139. },
  1140. "runtime": {
  1141. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1142. }
  1143. },
  1144. "System.Collections.Immutable/1.7.0": {
  1145. "type": "package",
  1146. "compile": {
  1147. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1151. }
  1152. },
  1153. "System.ComponentModel.Annotations/4.7.0": {
  1154. "type": "package",
  1155. "compile": {
  1156. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1157. },
  1158. "runtime": {
  1159. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1160. }
  1161. },
  1162. "System.Configuration.ConfigurationManager/5.0.0": {
  1163. "type": "package",
  1164. "dependencies": {
  1165. "System.Security.Cryptography.ProtectedData": "5.0.0",
  1166. "System.Security.Permissions": "5.0.0"
  1167. },
  1168. "compile": {
  1169. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1170. },
  1171. "runtime": {
  1172. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1173. }
  1174. },
  1175. "System.Console/4.0.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.NETCore.Platforms": "1.0.1",
  1179. "Microsoft.NETCore.Targets": "1.0.1",
  1180. "System.IO": "4.1.0",
  1181. "System.Runtime": "4.1.0",
  1182. "System.Text.Encoding": "4.0.11"
  1183. },
  1184. "compile": {
  1185. "ref/netstandard1.3/System.Console.dll": {}
  1186. }
  1187. },
  1188. "System.Diagnostics.Debug/4.0.11": {
  1189. "type": "package",
  1190. "dependencies": {
  1191. "Microsoft.NETCore.Platforms": "1.0.1",
  1192. "Microsoft.NETCore.Targets": "1.0.1",
  1193. "System.Runtime": "4.1.0"
  1194. },
  1195. "compile": {
  1196. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1197. }
  1198. },
  1199. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1200. "type": "package",
  1201. "compile": {
  1202. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1203. },
  1204. "runtime": {
  1205. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1206. }
  1207. },
  1208. "System.Diagnostics.EventLog/5.0.0": {
  1209. "type": "package",
  1210. "dependencies": {
  1211. "Microsoft.NETCore.Platforms": "5.0.0",
  1212. "Microsoft.Win32.Registry": "5.0.0",
  1213. "System.Security.Principal.Windows": "5.0.0"
  1214. },
  1215. "compile": {
  1216. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1217. },
  1218. "runtime": {
  1219. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1220. },
  1221. "runtimeTargets": {
  1222. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  1223. "assetType": "runtime",
  1224. "rid": "win"
  1225. }
  1226. }
  1227. },
  1228. "System.Diagnostics.PerformanceCounter/5.0.0": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.NETCore.Platforms": "5.0.0",
  1232. "Microsoft.Win32.Registry": "5.0.0",
  1233. "System.Configuration.ConfigurationManager": "5.0.0",
  1234. "System.Security.Principal.Windows": "5.0.0"
  1235. },
  1236. "compile": {
  1237. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1238. },
  1239. "runtime": {
  1240. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1241. },
  1242. "runtimeTargets": {
  1243. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1244. "assetType": "runtime",
  1245. "rid": "win"
  1246. }
  1247. }
  1248. },
  1249. "System.Diagnostics.Tools/4.0.1": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Microsoft.NETCore.Platforms": "1.0.1",
  1253. "Microsoft.NETCore.Targets": "1.0.1",
  1254. "System.Runtime": "4.1.0"
  1255. },
  1256. "compile": {
  1257. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1258. }
  1259. },
  1260. "System.Diagnostics.TraceSource/4.0.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.NETCore.Platforms": "1.0.1",
  1264. "System.Collections": "4.0.11",
  1265. "System.Diagnostics.Debug": "4.0.11",
  1266. "System.Globalization": "4.0.11",
  1267. "System.Resources.ResourceManager": "4.0.1",
  1268. "System.Runtime": "4.1.0",
  1269. "System.Runtime.Extensions": "4.1.0",
  1270. "System.Threading": "4.0.11",
  1271. "runtime.native.System": "4.0.0"
  1272. },
  1273. "compile": {
  1274. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1275. },
  1276. "runtimeTargets": {
  1277. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1278. "assetType": "runtime",
  1279. "rid": "unix"
  1280. },
  1281. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1282. "assetType": "runtime",
  1283. "rid": "win"
  1284. }
  1285. }
  1286. },
  1287. "System.Diagnostics.Tracing/4.1.0": {
  1288. "type": "package",
  1289. "dependencies": {
  1290. "Microsoft.NETCore.Platforms": "1.0.1",
  1291. "Microsoft.NETCore.Targets": "1.0.1",
  1292. "System.Runtime": "4.1.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1296. }
  1297. },
  1298. "System.Drawing.Common/5.0.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Win32.SystemEvents": "5.0.0"
  1302. },
  1303. "compile": {
  1304. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1305. },
  1306. "runtime": {
  1307. "lib/netcoreapp3.0/System.Drawing.Common.dll": {}
  1308. },
  1309. "runtimeTargets": {
  1310. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1311. "assetType": "runtime",
  1312. "rid": "unix"
  1313. },
  1314. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1315. "assetType": "runtime",
  1316. "rid": "win"
  1317. }
  1318. }
  1319. },
  1320. "System.Globalization/4.0.11": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "Microsoft.NETCore.Platforms": "1.0.1",
  1324. "Microsoft.NETCore.Targets": "1.0.1",
  1325. "System.Runtime": "4.1.0"
  1326. },
  1327. "compile": {
  1328. "ref/netstandard1.3/System.Globalization.dll": {}
  1329. }
  1330. },
  1331. "System.Globalization.Calendars/4.0.1": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "Microsoft.NETCore.Platforms": "1.0.1",
  1335. "Microsoft.NETCore.Targets": "1.0.1",
  1336. "System.Globalization": "4.0.11",
  1337. "System.Runtime": "4.1.0"
  1338. },
  1339. "compile": {
  1340. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1341. }
  1342. },
  1343. "System.Globalization.Extensions/4.0.1": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.0.1",
  1347. "System.Globalization": "4.0.11",
  1348. "System.Resources.ResourceManager": "4.0.1",
  1349. "System.Runtime": "4.1.0",
  1350. "System.Runtime.Extensions": "4.1.0",
  1351. "System.Runtime.InteropServices": "4.1.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard1.3/_._": {}
  1355. },
  1356. "runtimeTargets": {
  1357. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1358. "assetType": "runtime",
  1359. "rid": "unix"
  1360. },
  1361. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1362. "assetType": "runtime",
  1363. "rid": "win"
  1364. }
  1365. }
  1366. },
  1367. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Microsoft.IdentityModel.JsonWebTokens": "6.11.0",
  1371. "Microsoft.IdentityModel.Tokens": "6.11.0"
  1372. },
  1373. "compile": {
  1374. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1378. }
  1379. },
  1380. "System.IO/4.3.0": {
  1381. "type": "package",
  1382. "dependencies": {
  1383. "Microsoft.NETCore.Platforms": "1.1.0",
  1384. "Microsoft.NETCore.Targets": "1.1.0",
  1385. "System.Runtime": "4.3.0",
  1386. "System.Text.Encoding": "4.3.0",
  1387. "System.Threading.Tasks": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.5/System.IO.dll": {}
  1391. }
  1392. },
  1393. "System.IO.Compression/4.1.0": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Microsoft.NETCore.Platforms": "1.0.1",
  1397. "System.Collections": "4.0.11",
  1398. "System.Diagnostics.Debug": "4.0.11",
  1399. "System.IO": "4.1.0",
  1400. "System.Resources.ResourceManager": "4.0.1",
  1401. "System.Runtime": "4.1.0",
  1402. "System.Runtime.Extensions": "4.1.0",
  1403. "System.Runtime.Handles": "4.0.1",
  1404. "System.Runtime.InteropServices": "4.1.0",
  1405. "System.Text.Encoding": "4.0.11",
  1406. "System.Threading": "4.0.11",
  1407. "System.Threading.Tasks": "4.0.11",
  1408. "runtime.native.System": "4.0.0",
  1409. "runtime.native.System.IO.Compression": "4.1.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1413. },
  1414. "runtimeTargets": {
  1415. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1416. "assetType": "runtime",
  1417. "rid": "unix"
  1418. },
  1419. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1420. "assetType": "runtime",
  1421. "rid": "win"
  1422. }
  1423. }
  1424. },
  1425. "System.IO.Compression.ZipFile/4.0.1": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "System.Buffers": "4.0.0",
  1429. "System.IO": "4.1.0",
  1430. "System.IO.Compression": "4.1.0",
  1431. "System.IO.FileSystem": "4.0.1",
  1432. "System.IO.FileSystem.Primitives": "4.0.1",
  1433. "System.Resources.ResourceManager": "4.0.1",
  1434. "System.Runtime": "4.1.0",
  1435. "System.Runtime.Extensions": "4.1.0",
  1436. "System.Text.Encoding": "4.0.11"
  1437. },
  1438. "compile": {
  1439. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1440. },
  1441. "runtime": {
  1442. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1443. }
  1444. },
  1445. "System.IO.FileSystem/4.0.1": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "Microsoft.NETCore.Platforms": "1.0.1",
  1449. "Microsoft.NETCore.Targets": "1.0.1",
  1450. "System.IO": "4.1.0",
  1451. "System.IO.FileSystem.Primitives": "4.0.1",
  1452. "System.Runtime": "4.1.0",
  1453. "System.Runtime.Handles": "4.0.1",
  1454. "System.Text.Encoding": "4.0.11",
  1455. "System.Threading.Tasks": "4.0.11"
  1456. },
  1457. "compile": {
  1458. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1459. }
  1460. },
  1461. "System.IO.FileSystem.Primitives/4.0.1": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "System.Runtime": "4.1.0"
  1465. },
  1466. "compile": {
  1467. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1468. },
  1469. "runtime": {
  1470. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1471. }
  1472. },
  1473. "System.IO.Pipelines/5.0.0": {
  1474. "type": "package",
  1475. "compile": {
  1476. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  1477. },
  1478. "runtime": {
  1479. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  1480. }
  1481. },
  1482. "System.Linq/4.1.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Collections": "4.0.11",
  1486. "System.Diagnostics.Debug": "4.0.11",
  1487. "System.Resources.ResourceManager": "4.0.1",
  1488. "System.Runtime": "4.1.0",
  1489. "System.Runtime.Extensions": "4.1.0"
  1490. },
  1491. "compile": {
  1492. "ref/netstandard1.6/System.Linq.dll": {}
  1493. },
  1494. "runtime": {
  1495. "lib/netstandard1.6/System.Linq.dll": {}
  1496. }
  1497. },
  1498. "System.Linq.Expressions/4.1.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "System.Collections": "4.0.11",
  1502. "System.Diagnostics.Debug": "4.0.11",
  1503. "System.Globalization": "4.0.11",
  1504. "System.IO": "4.1.0",
  1505. "System.Linq": "4.1.0",
  1506. "System.ObjectModel": "4.0.12",
  1507. "System.Reflection": "4.1.0",
  1508. "System.Reflection.Emit": "4.0.1",
  1509. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1510. "System.Reflection.Emit.Lightweight": "4.0.1",
  1511. "System.Reflection.Extensions": "4.0.1",
  1512. "System.Reflection.Primitives": "4.0.1",
  1513. "System.Reflection.TypeExtensions": "4.1.0",
  1514. "System.Resources.ResourceManager": "4.0.1",
  1515. "System.Runtime": "4.1.0",
  1516. "System.Runtime.Extensions": "4.1.0",
  1517. "System.Threading": "4.0.11"
  1518. },
  1519. "compile": {
  1520. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1524. }
  1525. },
  1526. "System.Memory/4.5.3": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netcoreapp2.1/_._": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netcoreapp2.1/_._": {}
  1533. }
  1534. },
  1535. "System.Net.Http/4.1.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "Microsoft.NETCore.Platforms": "1.0.1",
  1539. "System.Collections": "4.0.11",
  1540. "System.Diagnostics.Debug": "4.0.11",
  1541. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1542. "System.Diagnostics.Tracing": "4.1.0",
  1543. "System.Globalization": "4.0.11",
  1544. "System.Globalization.Extensions": "4.0.1",
  1545. "System.IO": "4.1.0",
  1546. "System.IO.FileSystem": "4.0.1",
  1547. "System.Net.Primitives": "4.0.11",
  1548. "System.Resources.ResourceManager": "4.0.1",
  1549. "System.Runtime": "4.1.0",
  1550. "System.Runtime.Extensions": "4.1.0",
  1551. "System.Runtime.Handles": "4.0.1",
  1552. "System.Runtime.InteropServices": "4.1.0",
  1553. "System.Security.Cryptography.Algorithms": "4.2.0",
  1554. "System.Security.Cryptography.Encoding": "4.0.0",
  1555. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1556. "System.Security.Cryptography.Primitives": "4.0.0",
  1557. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1558. "System.Text.Encoding": "4.0.11",
  1559. "System.Threading": "4.0.11",
  1560. "System.Threading.Tasks": "4.0.11",
  1561. "runtime.native.System": "4.0.0",
  1562. "runtime.native.System.Net.Http": "4.0.1",
  1563. "runtime.native.System.Security.Cryptography": "4.0.0"
  1564. },
  1565. "compile": {
  1566. "ref/netstandard1.3/System.Net.Http.dll": {}
  1567. },
  1568. "runtimeTargets": {
  1569. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1570. "assetType": "runtime",
  1571. "rid": "unix"
  1572. },
  1573. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1574. "assetType": "runtime",
  1575. "rid": "win"
  1576. }
  1577. }
  1578. },
  1579. "System.Net.NameResolution/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "System.Collections": "4.0.11",
  1584. "System.Diagnostics.Tracing": "4.1.0",
  1585. "System.Globalization": "4.0.11",
  1586. "System.Net.Primitives": "4.0.11",
  1587. "System.Resources.ResourceManager": "4.0.1",
  1588. "System.Runtime": "4.1.0",
  1589. "System.Runtime.Extensions": "4.1.0",
  1590. "System.Runtime.Handles": "4.0.1",
  1591. "System.Runtime.InteropServices": "4.1.0",
  1592. "System.Security.Principal.Windows": "4.0.0",
  1593. "System.Threading": "4.0.11",
  1594. "System.Threading.Tasks": "4.0.11",
  1595. "runtime.native.System": "4.0.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1599. },
  1600. "runtimeTargets": {
  1601. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1602. "assetType": "runtime",
  1603. "rid": "unix"
  1604. },
  1605. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1606. "assetType": "runtime",
  1607. "rid": "win"
  1608. }
  1609. }
  1610. },
  1611. "System.Net.Primitives/4.0.11": {
  1612. "type": "package",
  1613. "dependencies": {
  1614. "Microsoft.NETCore.Platforms": "1.0.1",
  1615. "Microsoft.NETCore.Targets": "1.0.1",
  1616. "System.Runtime": "4.1.0",
  1617. "System.Runtime.Handles": "4.0.1"
  1618. },
  1619. "compile": {
  1620. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1621. }
  1622. },
  1623. "System.Net.Sockets/4.1.0": {
  1624. "type": "package",
  1625. "dependencies": {
  1626. "Microsoft.NETCore.Platforms": "1.0.1",
  1627. "Microsoft.NETCore.Targets": "1.0.1",
  1628. "System.IO": "4.1.0",
  1629. "System.Net.Primitives": "4.0.11",
  1630. "System.Runtime": "4.1.0",
  1631. "System.Threading.Tasks": "4.0.11"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1635. }
  1636. },
  1637. "System.ObjectModel/4.0.12": {
  1638. "type": "package",
  1639. "dependencies": {
  1640. "System.Collections": "4.0.11",
  1641. "System.Diagnostics.Debug": "4.0.11",
  1642. "System.Resources.ResourceManager": "4.0.1",
  1643. "System.Runtime": "4.1.0",
  1644. "System.Threading": "4.0.11"
  1645. },
  1646. "compile": {
  1647. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1648. },
  1649. "runtime": {
  1650. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1651. }
  1652. },
  1653. "System.Reflection/4.3.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Microsoft.NETCore.Platforms": "1.1.0",
  1657. "Microsoft.NETCore.Targets": "1.1.0",
  1658. "System.IO": "4.3.0",
  1659. "System.Reflection.Primitives": "4.3.0",
  1660. "System.Runtime": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.5/System.Reflection.dll": {}
  1664. }
  1665. },
  1666. "System.Reflection.Emit/4.7.0": {
  1667. "type": "package",
  1668. "compile": {
  1669. "ref/netcoreapp2.0/_._": {}
  1670. },
  1671. "runtime": {
  1672. "lib/netcoreapp2.0/_._": {}
  1673. }
  1674. },
  1675. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "System.Reflection": "4.1.0",
  1679. "System.Reflection.Primitives": "4.0.1",
  1680. "System.Runtime": "4.1.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.0/_._": {}
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1687. }
  1688. },
  1689. "System.Reflection.Emit.Lightweight/4.0.1": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "System.Reflection": "4.1.0",
  1693. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1694. "System.Reflection.Primitives": "4.0.1",
  1695. "System.Runtime": "4.1.0"
  1696. },
  1697. "compile": {
  1698. "ref/netstandard1.0/_._": {}
  1699. },
  1700. "runtime": {
  1701. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1702. }
  1703. },
  1704. "System.Reflection.Extensions/4.0.1": {
  1705. "type": "package",
  1706. "dependencies": {
  1707. "Microsoft.NETCore.Platforms": "1.0.1",
  1708. "Microsoft.NETCore.Targets": "1.0.1",
  1709. "System.Reflection": "4.1.0",
  1710. "System.Runtime": "4.1.0"
  1711. },
  1712. "compile": {
  1713. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1714. }
  1715. },
  1716. "System.Reflection.Primitives/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1725. }
  1726. },
  1727. "System.Reflection.TypeExtensions/4.1.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "System.Reflection": "4.1.0",
  1731. "System.Runtime": "4.1.0"
  1732. },
  1733. "compile": {
  1734. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1738. }
  1739. },
  1740. "System.Resources.ResourceManager/4.0.1": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.0.1",
  1744. "Microsoft.NETCore.Targets": "1.0.1",
  1745. "System.Globalization": "4.0.11",
  1746. "System.Reflection": "4.1.0",
  1747. "System.Runtime": "4.1.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1751. }
  1752. },
  1753. "System.Runtime/4.3.0": {
  1754. "type": "package",
  1755. "dependencies": {
  1756. "Microsoft.NETCore.Platforms": "1.1.0",
  1757. "Microsoft.NETCore.Targets": "1.1.0"
  1758. },
  1759. "compile": {
  1760. "ref/netstandard1.5/System.Runtime.dll": {}
  1761. }
  1762. },
  1763. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  1764. "type": "package",
  1765. "compile": {
  1766. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1767. },
  1768. "runtime": {
  1769. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1770. }
  1771. },
  1772. "System.Runtime.Extensions/4.1.0": {
  1773. "type": "package",
  1774. "dependencies": {
  1775. "Microsoft.NETCore.Platforms": "1.0.1",
  1776. "Microsoft.NETCore.Targets": "1.0.1",
  1777. "System.Runtime": "4.1.0"
  1778. },
  1779. "compile": {
  1780. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1781. }
  1782. },
  1783. "System.Runtime.Handles/4.0.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.NETCore.Platforms": "1.0.1",
  1787. "Microsoft.NETCore.Targets": "1.0.1",
  1788. "System.Runtime": "4.1.0"
  1789. },
  1790. "compile": {
  1791. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1792. }
  1793. },
  1794. "System.Runtime.InteropServices/4.1.0": {
  1795. "type": "package",
  1796. "dependencies": {
  1797. "Microsoft.NETCore.Platforms": "1.0.1",
  1798. "Microsoft.NETCore.Targets": "1.0.1",
  1799. "System.Reflection": "4.1.0",
  1800. "System.Reflection.Primitives": "4.0.1",
  1801. "System.Runtime": "4.1.0",
  1802. "System.Runtime.Handles": "4.0.1"
  1803. },
  1804. "compile": {
  1805. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1806. }
  1807. },
  1808. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "Microsoft.NETCore.Platforms": "1.0.1",
  1812. "System.Reflection": "4.1.0",
  1813. "System.Resources.ResourceManager": "4.0.1",
  1814. "System.Runtime": "4.1.0",
  1815. "System.Runtime.InteropServices": "4.1.0",
  1816. "System.Threading": "4.0.11",
  1817. "runtime.native.System": "4.0.0"
  1818. },
  1819. "compile": {
  1820. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1821. },
  1822. "runtimeTargets": {
  1823. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1824. "assetType": "runtime",
  1825. "rid": "unix"
  1826. },
  1827. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1828. "assetType": "runtime",
  1829. "rid": "win"
  1830. }
  1831. }
  1832. },
  1833. "System.Runtime.Numerics/4.0.1": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "System.Globalization": "4.0.11",
  1837. "System.Resources.ResourceManager": "4.0.1",
  1838. "System.Runtime": "4.1.0",
  1839. "System.Runtime.Extensions": "4.1.0"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1846. }
  1847. },
  1848. "System.Security.AccessControl/5.0.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "5.0.0",
  1852. "System.Security.Principal.Windows": "5.0.0"
  1853. },
  1854. "compile": {
  1855. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1856. },
  1857. "runtime": {
  1858. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1859. },
  1860. "runtimeTargets": {
  1861. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1862. "assetType": "runtime",
  1863. "rid": "win"
  1864. }
  1865. }
  1866. },
  1867. "System.Security.Cryptography.Algorithms/4.2.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "Microsoft.NETCore.Platforms": "1.0.1",
  1871. "System.Collections": "4.0.11",
  1872. "System.IO": "4.1.0",
  1873. "System.Resources.ResourceManager": "4.0.1",
  1874. "System.Runtime": "4.1.0",
  1875. "System.Runtime.Extensions": "4.1.0",
  1876. "System.Runtime.Handles": "4.0.1",
  1877. "System.Runtime.InteropServices": "4.1.0",
  1878. "System.Runtime.Numerics": "4.0.1",
  1879. "System.Security.Cryptography.Encoding": "4.0.0",
  1880. "System.Security.Cryptography.Primitives": "4.0.0",
  1881. "System.Text.Encoding": "4.0.11",
  1882. "runtime.native.System.Security.Cryptography": "4.0.0"
  1883. },
  1884. "compile": {
  1885. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1886. },
  1887. "runtimeTargets": {
  1888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "unix"
  1891. },
  1892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.Security.Cryptography.Cng/4.5.0": {
  1899. "type": "package",
  1900. "compile": {
  1901. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1902. },
  1903. "runtime": {
  1904. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1905. },
  1906. "runtimeTargets": {
  1907. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1908. "assetType": "runtime",
  1909. "rid": "win"
  1910. }
  1911. }
  1912. },
  1913. "System.Security.Cryptography.Csp/4.0.0": {
  1914. "type": "package",
  1915. "dependencies": {
  1916. "Microsoft.NETCore.Platforms": "1.0.1",
  1917. "System.IO": "4.1.0",
  1918. "System.Reflection": "4.1.0",
  1919. "System.Resources.ResourceManager": "4.0.1",
  1920. "System.Runtime": "4.1.0",
  1921. "System.Runtime.Extensions": "4.1.0",
  1922. "System.Runtime.Handles": "4.0.1",
  1923. "System.Runtime.InteropServices": "4.1.0",
  1924. "System.Security.Cryptography.Algorithms": "4.2.0",
  1925. "System.Security.Cryptography.Encoding": "4.0.0",
  1926. "System.Security.Cryptography.Primitives": "4.0.0",
  1927. "System.Text.Encoding": "4.0.11",
  1928. "System.Threading": "4.0.11"
  1929. },
  1930. "compile": {
  1931. "ref/netstandard1.3/_._": {}
  1932. },
  1933. "runtimeTargets": {
  1934. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1935. "assetType": "runtime",
  1936. "rid": "unix"
  1937. },
  1938. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1939. "assetType": "runtime",
  1940. "rid": "win"
  1941. }
  1942. }
  1943. },
  1944. "System.Security.Cryptography.Encoding/4.0.0": {
  1945. "type": "package",
  1946. "dependencies": {
  1947. "Microsoft.NETCore.Platforms": "1.0.1",
  1948. "System.Collections": "4.0.11",
  1949. "System.Collections.Concurrent": "4.0.12",
  1950. "System.Linq": "4.1.0",
  1951. "System.Resources.ResourceManager": "4.0.1",
  1952. "System.Runtime": "4.1.0",
  1953. "System.Runtime.Extensions": "4.1.0",
  1954. "System.Runtime.Handles": "4.0.1",
  1955. "System.Runtime.InteropServices": "4.1.0",
  1956. "System.Security.Cryptography.Primitives": "4.0.0",
  1957. "System.Text.Encoding": "4.0.11",
  1958. "runtime.native.System.Security.Cryptography": "4.0.0"
  1959. },
  1960. "compile": {
  1961. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1962. },
  1963. "runtimeTargets": {
  1964. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1965. "assetType": "runtime",
  1966. "rid": "unix"
  1967. },
  1968. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1969. "assetType": "runtime",
  1970. "rid": "win"
  1971. }
  1972. }
  1973. },
  1974. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.0.11",
  1978. "System.IO": "4.1.0",
  1979. "System.Resources.ResourceManager": "4.0.1",
  1980. "System.Runtime": "4.1.0",
  1981. "System.Runtime.Extensions": "4.1.0",
  1982. "System.Runtime.Handles": "4.0.1",
  1983. "System.Runtime.InteropServices": "4.1.0",
  1984. "System.Runtime.Numerics": "4.0.1",
  1985. "System.Security.Cryptography.Algorithms": "4.2.0",
  1986. "System.Security.Cryptography.Encoding": "4.0.0",
  1987. "System.Security.Cryptography.Primitives": "4.0.0",
  1988. "System.Text.Encoding": "4.0.11",
  1989. "runtime.native.System.Security.Cryptography": "4.0.0"
  1990. },
  1991. "compile": {
  1992. "ref/netstandard1.6/_._": {}
  1993. },
  1994. "runtime": {
  1995. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1996. },
  1997. "runtimeTargets": {
  1998. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1999. "assetType": "runtime",
  2000. "rid": "unix"
  2001. }
  2002. }
  2003. },
  2004. "System.Security.Cryptography.Primitives/4.0.0": {
  2005. "type": "package",
  2006. "dependencies": {
  2007. "System.Diagnostics.Debug": "4.0.11",
  2008. "System.Globalization": "4.0.11",
  2009. "System.IO": "4.1.0",
  2010. "System.Resources.ResourceManager": "4.0.1",
  2011. "System.Runtime": "4.1.0",
  2012. "System.Threading": "4.0.11",
  2013. "System.Threading.Tasks": "4.0.11"
  2014. },
  2015. "compile": {
  2016. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2017. },
  2018. "runtime": {
  2019. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2020. }
  2021. },
  2022. "System.Security.Cryptography.ProtectedData/5.0.0": {
  2023. "type": "package",
  2024. "compile": {
  2025. "ref/netstandard2.0/_._": {}
  2026. },
  2027. "runtime": {
  2028. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2029. },
  2030. "runtimeTargets": {
  2031. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2032. "assetType": "runtime",
  2033. "rid": "win"
  2034. }
  2035. }
  2036. },
  2037. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2038. "type": "package",
  2039. "dependencies": {
  2040. "Microsoft.NETCore.Platforms": "1.0.1",
  2041. "System.Collections": "4.0.11",
  2042. "System.Diagnostics.Debug": "4.0.11",
  2043. "System.Globalization": "4.0.11",
  2044. "System.Globalization.Calendars": "4.0.1",
  2045. "System.IO": "4.1.0",
  2046. "System.IO.FileSystem": "4.0.1",
  2047. "System.IO.FileSystem.Primitives": "4.0.1",
  2048. "System.Resources.ResourceManager": "4.0.1",
  2049. "System.Runtime": "4.1.0",
  2050. "System.Runtime.Extensions": "4.1.0",
  2051. "System.Runtime.Handles": "4.0.1",
  2052. "System.Runtime.InteropServices": "4.1.0",
  2053. "System.Runtime.Numerics": "4.0.1",
  2054. "System.Security.Cryptography.Algorithms": "4.2.0",
  2055. "System.Security.Cryptography.Cng": "4.2.0",
  2056. "System.Security.Cryptography.Csp": "4.0.0",
  2057. "System.Security.Cryptography.Encoding": "4.0.0",
  2058. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2059. "System.Security.Cryptography.Primitives": "4.0.0",
  2060. "System.Text.Encoding": "4.0.11",
  2061. "System.Threading": "4.0.11",
  2062. "runtime.native.System": "4.0.0",
  2063. "runtime.native.System.Net.Http": "4.0.1",
  2064. "runtime.native.System.Security.Cryptography": "4.0.0"
  2065. },
  2066. "compile": {
  2067. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2068. },
  2069. "runtimeTargets": {
  2070. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2071. "assetType": "runtime",
  2072. "rid": "unix"
  2073. },
  2074. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2075. "assetType": "runtime",
  2076. "rid": "win"
  2077. }
  2078. }
  2079. },
  2080. "System.Security.Permissions/5.0.0": {
  2081. "type": "package",
  2082. "dependencies": {
  2083. "System.Security.AccessControl": "5.0.0",
  2084. "System.Windows.Extensions": "5.0.0"
  2085. },
  2086. "compile": {
  2087. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2088. },
  2089. "runtime": {
  2090. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2091. }
  2092. },
  2093. "System.Security.Principal.Windows/5.0.0": {
  2094. "type": "package",
  2095. "compile": {
  2096. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2097. },
  2098. "runtime": {
  2099. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2100. },
  2101. "runtimeTargets": {
  2102. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2103. "assetType": "runtime",
  2104. "rid": "unix"
  2105. },
  2106. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2107. "assetType": "runtime",
  2108. "rid": "win"
  2109. }
  2110. }
  2111. },
  2112. "System.ServiceProcess.ServiceController/5.0.0": {
  2113. "type": "package",
  2114. "dependencies": {
  2115. "System.Diagnostics.EventLog": "5.0.0"
  2116. },
  2117. "compile": {
  2118. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2119. },
  2120. "runtime": {
  2121. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2122. },
  2123. "runtimeTargets": {
  2124. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2125. "assetType": "runtime",
  2126. "rid": "win"
  2127. }
  2128. }
  2129. },
  2130. "System.Text.Encoding/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "Microsoft.NETCore.Platforms": "1.1.0",
  2134. "Microsoft.NETCore.Targets": "1.1.0",
  2135. "System.Runtime": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2139. }
  2140. },
  2141. "System.Text.Encoding.CodePages/4.5.1": {
  2142. "type": "package",
  2143. "dependencies": {
  2144. "Microsoft.NETCore.Platforms": "2.1.2",
  2145. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2146. },
  2147. "compile": {
  2148. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2149. },
  2150. "runtime": {
  2151. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2152. },
  2153. "runtimeTargets": {
  2154. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2155. "assetType": "runtime",
  2156. "rid": "win"
  2157. }
  2158. }
  2159. },
  2160. "System.Text.Encoding.Extensions/4.0.11": {
  2161. "type": "package",
  2162. "dependencies": {
  2163. "Microsoft.NETCore.Platforms": "1.0.1",
  2164. "Microsoft.NETCore.Targets": "1.0.1",
  2165. "System.Runtime": "4.1.0",
  2166. "System.Text.Encoding": "4.0.11"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2170. }
  2171. },
  2172. "System.Text.Json/5.0.0": {
  2173. "type": "package",
  2174. "compile": {
  2175. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2176. },
  2177. "runtime": {
  2178. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2179. }
  2180. },
  2181. "System.Text.RegularExpressions/4.1.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "System.Collections": "4.0.11",
  2185. "System.Globalization": "4.0.11",
  2186. "System.Resources.ResourceManager": "4.0.1",
  2187. "System.Runtime": "4.1.0",
  2188. "System.Runtime.Extensions": "4.1.0",
  2189. "System.Threading": "4.0.11"
  2190. },
  2191. "compile": {
  2192. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2193. },
  2194. "runtime": {
  2195. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2196. }
  2197. },
  2198. "System.Threading/4.0.11": {
  2199. "type": "package",
  2200. "dependencies": {
  2201. "System.Runtime": "4.1.0",
  2202. "System.Threading.Tasks": "4.0.11"
  2203. },
  2204. "compile": {
  2205. "ref/netstandard1.3/System.Threading.dll": {}
  2206. },
  2207. "runtime": {
  2208. "lib/netstandard1.3/System.Threading.dll": {}
  2209. }
  2210. },
  2211. "System.Threading.Tasks/4.3.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "1.1.0",
  2215. "Microsoft.NETCore.Targets": "1.1.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2220. }
  2221. },
  2222. "System.Threading.Tasks.Extensions/4.0.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "System.Collections": "4.0.11",
  2226. "System.Runtime": "4.1.0",
  2227. "System.Threading.Tasks": "4.0.11"
  2228. },
  2229. "compile": {
  2230. "lib/netstandard1.0/_._": {}
  2231. },
  2232. "runtime": {
  2233. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2234. }
  2235. },
  2236. "System.Threading.Thread/4.0.0": {
  2237. "type": "package",
  2238. "dependencies": {
  2239. "System.Runtime": "4.1.0"
  2240. },
  2241. "compile": {
  2242. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2246. }
  2247. },
  2248. "System.Threading.ThreadPool/4.0.10": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "System.Runtime": "4.1.0",
  2252. "System.Runtime.Handles": "4.0.1"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2256. },
  2257. "runtime": {
  2258. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2259. }
  2260. },
  2261. "System.Threading.Timer/4.0.1": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "Microsoft.NETCore.Platforms": "1.0.1",
  2265. "Microsoft.NETCore.Targets": "1.0.1",
  2266. "System.Runtime": "4.1.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2270. }
  2271. },
  2272. "System.Windows.Extensions/5.0.0": {
  2273. "type": "package",
  2274. "dependencies": {
  2275. "System.Drawing.Common": "5.0.0"
  2276. },
  2277. "compile": {
  2278. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2279. },
  2280. "runtime": {
  2281. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "win"
  2287. }
  2288. }
  2289. },
  2290. "System.Xml.ReaderWriter/4.0.11": {
  2291. "type": "package",
  2292. "dependencies": {
  2293. "System.Collections": "4.0.11",
  2294. "System.Diagnostics.Debug": "4.0.11",
  2295. "System.Globalization": "4.0.11",
  2296. "System.IO": "4.1.0",
  2297. "System.IO.FileSystem": "4.0.1",
  2298. "System.IO.FileSystem.Primitives": "4.0.1",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.Extensions": "4.1.0",
  2302. "System.Runtime.InteropServices": "4.1.0",
  2303. "System.Text.Encoding": "4.0.11",
  2304. "System.Text.Encoding.Extensions": "4.0.11",
  2305. "System.Text.RegularExpressions": "4.1.0",
  2306. "System.Threading.Tasks": "4.0.11",
  2307. "System.Threading.Tasks.Extensions": "4.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2314. }
  2315. },
  2316. "System.Xml.XDocument/4.0.11": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "System.Collections": "4.0.11",
  2320. "System.Diagnostics.Debug": "4.0.11",
  2321. "System.Diagnostics.Tools": "4.0.1",
  2322. "System.Globalization": "4.0.11",
  2323. "System.IO": "4.1.0",
  2324. "System.Reflection": "4.1.0",
  2325. "System.Resources.ResourceManager": "4.0.1",
  2326. "System.Runtime": "4.1.0",
  2327. "System.Runtime.Extensions": "4.1.0",
  2328. "System.Text.Encoding": "4.0.11",
  2329. "System.Threading": "4.0.11",
  2330. "System.Xml.ReaderWriter": "4.0.11"
  2331. },
  2332. "compile": {
  2333. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2334. },
  2335. "runtime": {
  2336. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2337. }
  2338. },
  2339. "System.Xml.XmlDocument/4.0.1": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "System.Collections": "4.0.11",
  2343. "System.Diagnostics.Debug": "4.0.11",
  2344. "System.Globalization": "4.0.11",
  2345. "System.IO": "4.1.0",
  2346. "System.Resources.ResourceManager": "4.0.1",
  2347. "System.Runtime": "4.1.0",
  2348. "System.Runtime.Extensions": "4.1.0",
  2349. "System.Text.Encoding": "4.0.11",
  2350. "System.Threading": "4.0.11",
  2351. "System.Xml.ReaderWriter": "4.0.11"
  2352. },
  2353. "compile": {
  2354. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2355. },
  2356. "runtime": {
  2357. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2358. }
  2359. },
  2360. "System.Xml.XPath/4.0.1": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Collections": "4.0.11",
  2364. "System.Diagnostics.Debug": "4.0.11",
  2365. "System.Globalization": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Threading": "4.0.11",
  2371. "System.Xml.ReaderWriter": "4.0.11"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2375. },
  2376. "runtime": {
  2377. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2378. }
  2379. },
  2380. "System.Xml.XPath.XmlDocument/4.0.1": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Collections": "4.0.11",
  2384. "System.Globalization": "4.0.11",
  2385. "System.IO": "4.1.0",
  2386. "System.Resources.ResourceManager": "4.0.1",
  2387. "System.Runtime": "4.1.0",
  2388. "System.Runtime.Extensions": "4.1.0",
  2389. "System.Threading": "4.0.11",
  2390. "System.Xml.ReaderWriter": "4.0.11",
  2391. "System.Xml.XPath": "4.0.1",
  2392. "System.Xml.XmlDocument": "4.0.1"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2399. }
  2400. }
  2401. },
  2402. ".NETCoreApp,Version=v3.1/win-x64": {
  2403. "AutoMapper/10.1.1": {
  2404. "type": "package",
  2405. "dependencies": {
  2406. "Microsoft.CSharp": "4.7.0",
  2407. "System.Reflection.Emit": "4.7.0"
  2408. },
  2409. "compile": {
  2410. "lib/netstandard2.0/AutoMapper.dll": {}
  2411. },
  2412. "runtime": {
  2413. "lib/netstandard2.0/AutoMapper.dll": {}
  2414. }
  2415. },
  2416. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2417. "type": "package",
  2418. "dependencies": {
  2419. "AutoMapper": "[10.1.1, 11.0.0)",
  2420. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  2421. "Microsoft.Extensions.Options": "3.0.0"
  2422. },
  2423. "compile": {
  2424. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  2425. },
  2426. "runtime": {
  2427. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  2428. }
  2429. },
  2430. "BouncyCastle.NetCore/1.8.3": {
  2431. "type": "package",
  2432. "dependencies": {
  2433. "NETStandard.Library": "1.6.0",
  2434. "System.Reflection": "4.3.0",
  2435. "System.Reflection.TypeExtensions": "4.1.0"
  2436. },
  2437. "compile": {
  2438. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  2439. },
  2440. "runtime": {
  2441. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  2442. }
  2443. },
  2444. "Flurl/3.0.2": {
  2445. "type": "package",
  2446. "compile": {
  2447. "lib/netstandard2.0/Flurl.dll": {}
  2448. },
  2449. "runtime": {
  2450. "lib/netstandard2.0/Flurl.dll": {}
  2451. }
  2452. },
  2453. "Flurl.Http/3.2.0": {
  2454. "type": "package",
  2455. "dependencies": {
  2456. "Flurl": "3.0.2",
  2457. "Newtonsoft.Json": "12.0.2",
  2458. "System.Text.Encoding.CodePages": "4.5.1"
  2459. },
  2460. "compile": {
  2461. "lib/netstandard2.0/Flurl.Http.dll": {}
  2462. },
  2463. "runtime": {
  2464. "lib/netstandard2.0/Flurl.Http.dll": {}
  2465. }
  2466. },
  2467. "Google.Protobuf/3.11.4": {
  2468. "type": "package",
  2469. "dependencies": {
  2470. "System.Memory": "4.5.2"
  2471. },
  2472. "compile": {
  2473. "lib/netstandard2.0/Google.Protobuf.dll": {}
  2474. },
  2475. "runtime": {
  2476. "lib/netstandard2.0/Google.Protobuf.dll": {}
  2477. }
  2478. },
  2479. "K4os.Compression.LZ4/1.1.11": {
  2480. "type": "package",
  2481. "dependencies": {
  2482. "System.Memory": "4.5.3"
  2483. },
  2484. "compile": {
  2485. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  2486. },
  2487. "runtime": {
  2488. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  2489. }
  2490. },
  2491. "K4os.Compression.LZ4.Streams/1.1.11": {
  2492. "type": "package",
  2493. "dependencies": {
  2494. "K4os.Compression.LZ4": "1.1.11",
  2495. "K4os.Hash.xxHash": "1.0.6"
  2496. },
  2497. "compile": {
  2498. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  2499. },
  2500. "runtime": {
  2501. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  2502. }
  2503. },
  2504. "K4os.Hash.xxHash/1.0.6": {
  2505. "type": "package",
  2506. "dependencies": {
  2507. "System.Memory": "4.5.3"
  2508. },
  2509. "compile": {
  2510. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  2511. },
  2512. "runtime": {
  2513. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  2514. }
  2515. },
  2516. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2517. "type": "package",
  2518. "compile": {
  2519. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  2520. },
  2521. "runtime": {
  2522. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  2523. }
  2524. },
  2525. "Microsoft.Bcl.HashCode/1.1.0": {
  2526. "type": "package",
  2527. "compile": {
  2528. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  2529. },
  2530. "runtime": {
  2531. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  2532. }
  2533. },
  2534. "Microsoft.CSharp/4.7.0": {
  2535. "type": "package",
  2536. "compile": {
  2537. "ref/netcoreapp2.0/_._": {}
  2538. },
  2539. "runtime": {
  2540. "lib/netcoreapp2.0/_._": {}
  2541. }
  2542. },
  2543. "Microsoft.EntityFrameworkCore/3.1.1": {
  2544. "type": "package",
  2545. "dependencies": {
  2546. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  2547. "Microsoft.Bcl.HashCode": "1.1.0",
  2548. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  2549. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  2550. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  2551. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  2552. "Microsoft.Extensions.Logging": "3.1.1",
  2553. "System.Collections.Immutable": "1.7.0",
  2554. "System.ComponentModel.Annotations": "4.7.0",
  2555. "System.Diagnostics.DiagnosticSource": "4.7.0"
  2556. },
  2557. "compile": {
  2558. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  2559. },
  2560. "runtime": {
  2561. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  2562. }
  2563. },
  2564. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  2565. "type": "package",
  2566. "compile": {
  2567. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  2568. },
  2569. "runtime": {
  2570. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  2571. }
  2572. },
  2573. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  2574. "type": "package",
  2575. "compile": {
  2576. "lib/netstandard2.0/_._": {}
  2577. },
  2578. "runtime": {
  2579. "lib/netstandard2.0/_._": {}
  2580. }
  2581. },
  2582. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  2583. "type": "package",
  2584. "dependencies": {
  2585. "Microsoft.EntityFrameworkCore": "3.1.1"
  2586. },
  2587. "compile": {
  2588. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  2589. },
  2590. "runtime": {
  2591. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  2592. }
  2593. },
  2594. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  2595. "type": "package",
  2596. "build": {
  2597. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  2598. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  2599. },
  2600. "buildMultiTargeting": {
  2601. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  2602. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  2603. }
  2604. },
  2605. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  2606. "type": "package",
  2607. "dependencies": {
  2608. "Microsoft.Extensions.Primitives": "3.1.1"
  2609. },
  2610. "compile": {
  2611. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  2612. },
  2613. "runtime": {
  2614. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  2615. }
  2616. },
  2617. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  2618. "type": "package",
  2619. "dependencies": {
  2620. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  2621. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  2622. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  2623. "Microsoft.Extensions.Options": "3.1.1"
  2624. },
  2625. "compile": {
  2626. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  2627. },
  2628. "runtime": {
  2629. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  2630. }
  2631. },
  2632. "Microsoft.Extensions.Configuration/5.0.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2636. "Microsoft.Extensions.Primitives": "5.0.0"
  2637. },
  2638. "compile": {
  2639. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  2640. },
  2641. "runtime": {
  2642. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  2643. }
  2644. },
  2645. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  2646. "type": "package",
  2647. "dependencies": {
  2648. "Microsoft.Extensions.Primitives": "5.0.0"
  2649. },
  2650. "compile": {
  2651. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  2652. },
  2653. "runtime": {
  2654. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  2655. }
  2656. },
  2657. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  2658. "type": "package",
  2659. "dependencies": {
  2660. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  2661. },
  2662. "compile": {
  2663. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  2664. },
  2665. "runtime": {
  2666. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  2667. }
  2668. },
  2669. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "Microsoft.Extensions.Configuration": "5.0.0",
  2673. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  2674. },
  2675. "compile": {
  2676. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  2677. },
  2678. "runtime": {
  2679. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  2680. }
  2681. },
  2682. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  2683. "type": "package",
  2684. "dependencies": {
  2685. "Microsoft.Extensions.Configuration": "5.0.0",
  2686. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  2687. },
  2688. "compile": {
  2689. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  2690. },
  2691. "runtime": {
  2692. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  2693. }
  2694. },
  2695. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  2696. "type": "package",
  2697. "dependencies": {
  2698. "Microsoft.Extensions.Configuration": "5.0.0",
  2699. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2700. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  2701. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  2702. "Microsoft.Extensions.Primitives": "5.0.0"
  2703. },
  2704. "compile": {
  2705. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  2706. },
  2707. "runtime": {
  2708. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  2709. }
  2710. },
  2711. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  2712. "type": "package",
  2713. "dependencies": {
  2714. "Microsoft.Extensions.Configuration": "5.0.0",
  2715. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2716. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  2717. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  2718. "System.Text.Json": "5.0.0"
  2719. },
  2720. "compile": {
  2721. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  2722. },
  2723. "runtime": {
  2724. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  2725. }
  2726. },
  2727. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  2728. "type": "package",
  2729. "dependencies": {
  2730. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2731. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2732. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  2733. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  2734. },
  2735. "compile": {
  2736. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  2737. },
  2738. "runtime": {
  2739. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  2740. },
  2741. "build": {
  2742. "build/netstandard2.0/_._": {}
  2743. }
  2744. },
  2745. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  2746. "type": "package",
  2747. "dependencies": {
  2748. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  2749. },
  2750. "compile": {
  2751. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  2752. },
  2753. "runtime": {
  2754. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  2755. }
  2756. },
  2757. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  2758. "type": "package",
  2759. "compile": {
  2760. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  2761. },
  2762. "runtime": {
  2763. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  2764. }
  2765. },
  2766. "Microsoft.Extensions.DependencyModel/3.1.6": {
  2767. "type": "package",
  2768. "dependencies": {
  2769. "System.Text.Json": "4.7.2"
  2770. },
  2771. "compile": {
  2772. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  2773. },
  2774. "runtime": {
  2775. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  2776. }
  2777. },
  2778. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  2779. "type": "package",
  2780. "dependencies": {
  2781. "Microsoft.Extensions.Primitives": "5.0.0"
  2782. },
  2783. "compile": {
  2784. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  2785. },
  2786. "runtime": {
  2787. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  2788. }
  2789. },
  2790. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  2791. "type": "package",
  2792. "dependencies": {
  2793. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  2794. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  2795. "Microsoft.Extensions.Primitives": "5.0.0"
  2796. },
  2797. "compile": {
  2798. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  2799. },
  2800. "runtime": {
  2801. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  2802. }
  2803. },
  2804. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  2805. "type": "package",
  2806. "compile": {
  2807. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2811. }
  2812. },
  2813. "Microsoft.Extensions.Hosting/5.0.0": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "Microsoft.Extensions.Configuration": "5.0.0",
  2817. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2818. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2819. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  2820. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  2821. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  2822. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2823. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  2824. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  2825. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2826. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  2827. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  2828. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  2829. "Microsoft.Extensions.Logging": "5.0.0",
  2830. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2831. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  2832. "Microsoft.Extensions.Logging.Console": "5.0.0",
  2833. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  2834. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  2835. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  2836. "Microsoft.Extensions.Options": "5.0.0"
  2837. },
  2838. "compile": {
  2839. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  2840. },
  2841. "runtime": {
  2842. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  2843. }
  2844. },
  2845. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  2846. "type": "package",
  2847. "dependencies": {
  2848. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2849. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2850. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  2851. },
  2852. "compile": {
  2853. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2854. },
  2855. "runtime": {
  2856. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2857. }
  2858. },
  2859. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "Microsoft.Extensions.Hosting": "5.0.0",
  2863. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  2864. "System.ServiceProcess.ServiceController": "5.0.0"
  2865. },
  2866. "compile": {
  2867. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  2868. },
  2869. "runtime": {
  2870. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  2871. }
  2872. },
  2873. "Microsoft.Extensions.Logging/5.0.0": {
  2874. "type": "package",
  2875. "dependencies": {
  2876. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  2877. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2878. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2879. "Microsoft.Extensions.Options": "5.0.0",
  2880. "System.Diagnostics.DiagnosticSource": "5.0.0"
  2881. },
  2882. "compile": {
  2883. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  2884. },
  2885. "runtime": {
  2886. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  2887. }
  2888. },
  2889. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  2890. "type": "package",
  2891. "compile": {
  2892. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  2893. },
  2894. "runtime": {
  2895. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  2896. }
  2897. },
  2898. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  2899. "type": "package",
  2900. "dependencies": {
  2901. "Microsoft.Extensions.Configuration": "5.0.0",
  2902. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2903. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2904. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2905. "Microsoft.Extensions.Logging": "5.0.0",
  2906. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2907. "Microsoft.Extensions.Options": "5.0.0",
  2908. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  2909. },
  2910. "compile": {
  2911. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  2912. },
  2913. "runtime": {
  2914. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  2915. }
  2916. },
  2917. "Microsoft.Extensions.Logging.Console/5.0.0": {
  2918. "type": "package",
  2919. "dependencies": {
  2920. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2921. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2922. "Microsoft.Extensions.Logging": "5.0.0",
  2923. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2924. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  2925. "Microsoft.Extensions.Options": "5.0.0",
  2926. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
  2927. "System.Text.Json": "5.0.0"
  2928. },
  2929. "compile": {
  2930. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  2931. },
  2932. "runtime": {
  2933. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  2934. }
  2935. },
  2936. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  2937. "type": "package",
  2938. "dependencies": {
  2939. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2940. "Microsoft.Extensions.Logging": "5.0.0",
  2941. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  2942. },
  2943. "compile": {
  2944. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  2945. },
  2946. "runtime": {
  2947. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  2948. }
  2949. },
  2950. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2954. "Microsoft.Extensions.Logging": "5.0.0",
  2955. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2956. "Microsoft.Extensions.Options": "5.0.0",
  2957. "System.Diagnostics.EventLog": "5.0.0"
  2958. },
  2959. "compile": {
  2960. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  2961. },
  2962. "runtime": {
  2963. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  2964. }
  2965. },
  2966. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  2967. "type": "package",
  2968. "dependencies": {
  2969. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2970. "Microsoft.Extensions.Logging": "5.0.0",
  2971. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  2972. "Microsoft.Extensions.Options": "5.0.0",
  2973. "Microsoft.Extensions.Primitives": "5.0.0"
  2974. },
  2975. "compile": {
  2976. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  2977. },
  2978. "runtime": {
  2979. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  2980. }
  2981. },
  2982. "Microsoft.Extensions.Options/5.0.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2986. "Microsoft.Extensions.Primitives": "5.0.0"
  2987. },
  2988. "compile": {
  2989. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  2990. },
  2991. "runtime": {
  2992. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  2993. }
  2994. },
  2995. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  2996. "type": "package",
  2997. "dependencies": {
  2998. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2999. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3000. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  3001. "Microsoft.Extensions.Options": "5.0.0",
  3002. "Microsoft.Extensions.Primitives": "5.0.0"
  3003. },
  3004. "compile": {
  3005. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  3006. },
  3007. "runtime": {
  3008. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  3009. }
  3010. },
  3011. "Microsoft.Extensions.Primitives/5.0.0": {
  3012. "type": "package",
  3013. "compile": {
  3014. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  3015. },
  3016. "runtime": {
  3017. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  3018. }
  3019. },
  3020. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "Microsoft.IdentityModel.Tokens": "6.11.0"
  3024. },
  3025. "compile": {
  3026. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  3027. },
  3028. "runtime": {
  3029. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  3030. }
  3031. },
  3032. "Microsoft.IdentityModel.Logging/6.11.0": {
  3033. "type": "package",
  3034. "compile": {
  3035. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  3036. },
  3037. "runtime": {
  3038. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  3039. }
  3040. },
  3041. "Microsoft.IdentityModel.Tokens/6.11.0": {
  3042. "type": "package",
  3043. "dependencies": {
  3044. "Microsoft.CSharp": "4.5.0",
  3045. "Microsoft.IdentityModel.Logging": "6.11.0",
  3046. "System.Security.Cryptography.Cng": "4.5.0"
  3047. },
  3048. "compile": {
  3049. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  3050. },
  3051. "runtime": {
  3052. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  3053. }
  3054. },
  3055. "Microsoft.NETCore.Platforms/5.0.0": {
  3056. "type": "package",
  3057. "compile": {
  3058. "lib/netstandard1.0/_._": {}
  3059. },
  3060. "runtime": {
  3061. "lib/netstandard1.0/_._": {}
  3062. }
  3063. },
  3064. "Microsoft.NETCore.Targets/1.1.0": {
  3065. "type": "package",
  3066. "compile": {
  3067. "lib/netstandard1.0/_._": {}
  3068. },
  3069. "runtime": {
  3070. "lib/netstandard1.0/_._": {}
  3071. }
  3072. },
  3073. "Microsoft.OpenApi/1.2.3": {
  3074. "type": "package",
  3075. "compile": {
  3076. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  3077. },
  3078. "runtime": {
  3079. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  3080. }
  3081. },
  3082. "Microsoft.Win32.Primitives/4.3.0": {
  3083. "type": "package",
  3084. "dependencies": {
  3085. "Microsoft.NETCore.Platforms": "1.1.0",
  3086. "Microsoft.NETCore.Targets": "1.1.0",
  3087. "System.Runtime": "4.3.0",
  3088. "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
  3089. },
  3090. "compile": {
  3091. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  3092. }
  3093. },
  3094. "Microsoft.Win32.Registry/5.0.0": {
  3095. "type": "package",
  3096. "dependencies": {
  3097. "System.Security.AccessControl": "5.0.0",
  3098. "System.Security.Principal.Windows": "5.0.0"
  3099. },
  3100. "compile": {
  3101. "ref/netstandard2.0/_._": {}
  3102. },
  3103. "runtime": {
  3104. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  3105. }
  3106. },
  3107. "Microsoft.Win32.SystemEvents/5.0.0": {
  3108. "type": "package",
  3109. "dependencies": {
  3110. "Microsoft.NETCore.Platforms": "5.0.0"
  3111. },
  3112. "compile": {
  3113. "ref/netstandard2.0/_._": {}
  3114. },
  3115. "runtime": {
  3116. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {}
  3117. }
  3118. },
  3119. "MySql.Data/8.0.22": {
  3120. "type": "package",
  3121. "dependencies": {
  3122. "BouncyCastle.NetCore": "1.8.3",
  3123. "Google.Protobuf": "3.11.4",
  3124. "K4os.Compression.LZ4": "1.1.11",
  3125. "K4os.Compression.LZ4.Streams": "1.1.11",
  3126. "K4os.Hash.xxHash": "1.0.6",
  3127. "SSH.NET": "2016.1.0",
  3128. "System.Buffers": "4.5.1",
  3129. "System.Configuration.ConfigurationManager": "4.4.1",
  3130. "System.Security.Permissions": "4.7.0",
  3131. "System.Text.Encoding.CodePages": "4.4.0"
  3132. },
  3133. "compile": {
  3134. "lib/netstandard2.1/MySql.Data.dll": {},
  3135. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  3136. "lib/netstandard2.1/Zstandard.Net.dll": {}
  3137. },
  3138. "runtime": {
  3139. "lib/netstandard2.1/MySql.Data.dll": {},
  3140. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  3141. "lib/netstandard2.1/Zstandard.Net.dll": {}
  3142. }
  3143. },
  3144. "MySql.Data.EntityFrameworkCore/8.0.22": {
  3145. "type": "package",
  3146. "dependencies": {
  3147. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  3148. "MySql.Data": "8.0.22"
  3149. },
  3150. "compile": {
  3151. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  3152. },
  3153. "runtime": {
  3154. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  3155. }
  3156. },
  3157. "NETStandard.Library/1.6.0": {
  3158. "type": "package",
  3159. "dependencies": {
  3160. "Microsoft.NETCore.Platforms": "1.0.1",
  3161. "Microsoft.Win32.Primitives": "4.0.1",
  3162. "System.AppContext": "4.1.0",
  3163. "System.Collections": "4.0.11",
  3164. "System.Collections.Concurrent": "4.0.12",
  3165. "System.Console": "4.0.0",
  3166. "System.Diagnostics.Debug": "4.0.11",
  3167. "System.Diagnostics.Tools": "4.0.1",
  3168. "System.Diagnostics.Tracing": "4.1.0",
  3169. "System.Globalization": "4.0.11",
  3170. "System.Globalization.Calendars": "4.0.1",
  3171. "System.IO": "4.1.0",
  3172. "System.IO.Compression": "4.1.0",
  3173. "System.IO.Compression.ZipFile": "4.0.1",
  3174. "System.IO.FileSystem": "4.0.1",
  3175. "System.IO.FileSystem.Primitives": "4.0.1",
  3176. "System.Linq": "4.1.0",
  3177. "System.Linq.Expressions": "4.1.0",
  3178. "System.Net.Http": "4.1.0",
  3179. "System.Net.Primitives": "4.0.11",
  3180. "System.Net.Sockets": "4.1.0",
  3181. "System.ObjectModel": "4.0.12",
  3182. "System.Reflection": "4.1.0",
  3183. "System.Reflection.Extensions": "4.0.1",
  3184. "System.Reflection.Primitives": "4.0.1",
  3185. "System.Resources.ResourceManager": "4.0.1",
  3186. "System.Runtime": "4.1.0",
  3187. "System.Runtime.Extensions": "4.1.0",
  3188. "System.Runtime.Handles": "4.0.1",
  3189. "System.Runtime.InteropServices": "4.1.0",
  3190. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  3191. "System.Runtime.Numerics": "4.0.1",
  3192. "System.Security.Cryptography.Algorithms": "4.2.0",
  3193. "System.Security.Cryptography.Encoding": "4.0.0",
  3194. "System.Security.Cryptography.Primitives": "4.0.0",
  3195. "System.Security.Cryptography.X509Certificates": "4.1.0",
  3196. "System.Text.Encoding": "4.0.11",
  3197. "System.Text.Encoding.Extensions": "4.0.11",
  3198. "System.Text.RegularExpressions": "4.1.0",
  3199. "System.Threading": "4.0.11",
  3200. "System.Threading.Tasks": "4.0.11",
  3201. "System.Threading.Timer": "4.0.1",
  3202. "System.Xml.ReaderWriter": "4.0.11",
  3203. "System.Xml.XDocument": "4.0.11"
  3204. }
  3205. },
  3206. "Newtonsoft.Json/13.0.1": {
  3207. "type": "package",
  3208. "compile": {
  3209. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  3210. },
  3211. "runtime": {
  3212. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  3213. }
  3214. },
  3215. "NLog/4.7.9": {
  3216. "type": "package",
  3217. "compile": {
  3218. "lib/netstandard2.0/NLog.dll": {}
  3219. },
  3220. "runtime": {
  3221. "lib/netstandard2.0/NLog.dll": {}
  3222. }
  3223. },
  3224. "NLog.Extensions.Logging/1.7.2": {
  3225. "type": "package",
  3226. "dependencies": {
  3227. "Microsoft.Extensions.Logging": "3.0.0",
  3228. "NLog": "4.7.9"
  3229. },
  3230. "compile": {
  3231. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  3232. },
  3233. "runtime": {
  3234. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  3235. }
  3236. },
  3237. "NLog.Web.AspNetCore/4.12.0": {
  3238. "type": "package",
  3239. "dependencies": {
  3240. "NLog.Extensions.Logging": "1.7.2"
  3241. },
  3242. "compile": {
  3243. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  3244. },
  3245. "runtime": {
  3246. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  3247. },
  3248. "frameworkReferences": [
  3249. "Microsoft.AspNetCore.App"
  3250. ]
  3251. },
  3252. "Pipelines.Sockets.Unofficial/2.2.0": {
  3253. "type": "package",
  3254. "dependencies": {
  3255. "System.IO.Pipelines": "5.0.0"
  3256. },
  3257. "compile": {
  3258. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  3259. },
  3260. "runtime": {
  3261. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  3262. }
  3263. },
  3264. "Quartz/3.3.2": {
  3265. "type": "package",
  3266. "dependencies": {
  3267. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3268. "System.Configuration.ConfigurationManager": "4.7.0",
  3269. "System.Diagnostics.DiagnosticSource": "4.7.1"
  3270. },
  3271. "compile": {
  3272. "lib/netstandard2.0/Quartz.dll": {}
  3273. },
  3274. "runtime": {
  3275. "lib/netstandard2.0/Quartz.dll": {}
  3276. }
  3277. },
  3278. "runtime.any.System.Collections/4.3.0": {
  3279. "type": "package",
  3280. "dependencies": {
  3281. "System.Runtime": "4.3.0"
  3282. },
  3283. "compile": {
  3284. "ref/netstandard/_._": {}
  3285. },
  3286. "runtime": {
  3287. "lib/netstandard1.3/System.Collections.dll": {}
  3288. }
  3289. },
  3290. "runtime.any.System.Diagnostics.Tools/4.3.0": {
  3291. "type": "package",
  3292. "compile": {
  3293. "ref/netstandard/_._": {}
  3294. },
  3295. "runtime": {
  3296. "lib/netstandard1.3/System.Diagnostics.Tools.dll": {}
  3297. }
  3298. },
  3299. "runtime.any.System.Diagnostics.Tracing/4.3.0": {
  3300. "type": "package",
  3301. "compile": {
  3302. "ref/netstandard/_._": {}
  3303. },
  3304. "runtime": {
  3305. "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  3306. }
  3307. },
  3308. "runtime.any.System.Globalization/4.3.0": {
  3309. "type": "package",
  3310. "compile": {
  3311. "ref/netstandard/_._": {}
  3312. },
  3313. "runtime": {
  3314. "lib/netstandard1.3/System.Globalization.dll": {}
  3315. }
  3316. },
  3317. "runtime.any.System.Globalization.Calendars/4.3.0": {
  3318. "type": "package",
  3319. "compile": {
  3320. "ref/netstandard/_._": {}
  3321. },
  3322. "runtime": {
  3323. "lib/netstandard1.3/System.Globalization.Calendars.dll": {}
  3324. }
  3325. },
  3326. "runtime.any.System.IO/4.3.0": {
  3327. "type": "package",
  3328. "compile": {
  3329. "ref/netstandard/_._": {}
  3330. },
  3331. "runtime": {
  3332. "lib/netstandard1.5/System.IO.dll": {}
  3333. }
  3334. },
  3335. "runtime.any.System.Reflection/4.3.0": {
  3336. "type": "package",
  3337. "compile": {
  3338. "ref/netstandard/_._": {}
  3339. },
  3340. "runtime": {
  3341. "lib/netstandard1.5/System.Reflection.dll": {}
  3342. }
  3343. },
  3344. "runtime.any.System.Reflection.Extensions/4.3.0": {
  3345. "type": "package",
  3346. "compile": {
  3347. "ref/netstandard/_._": {}
  3348. },
  3349. "runtime": {
  3350. "lib/netstandard1.3/System.Reflection.Extensions.dll": {}
  3351. }
  3352. },
  3353. "runtime.any.System.Reflection.Primitives/4.3.0": {
  3354. "type": "package",
  3355. "compile": {
  3356. "ref/netstandard/_._": {}
  3357. },
  3358. "runtime": {
  3359. "lib/netstandard1.3/System.Reflection.Primitives.dll": {}
  3360. }
  3361. },
  3362. "runtime.any.System.Resources.ResourceManager/4.3.0": {
  3363. "type": "package",
  3364. "compile": {
  3365. "ref/netstandard/_._": {}
  3366. },
  3367. "runtime": {
  3368. "lib/netstandard1.3/System.Resources.ResourceManager.dll": {}
  3369. }
  3370. },
  3371. "runtime.any.System.Runtime/4.3.0": {
  3372. "type": "package",
  3373. "dependencies": {
  3374. "System.Private.Uri": "4.3.0"
  3375. },
  3376. "compile": {
  3377. "ref/netstandard/_._": {}
  3378. },
  3379. "runtime": {
  3380. "lib/netstandard1.5/System.Runtime.dll": {}
  3381. }
  3382. },
  3383. "runtime.any.System.Runtime.Handles/4.3.0": {
  3384. "type": "package",
  3385. "compile": {
  3386. "ref/netstandard/_._": {}
  3387. },
  3388. "runtime": {
  3389. "lib/netstandard1.3/System.Runtime.Handles.dll": {}
  3390. }
  3391. },
  3392. "runtime.any.System.Runtime.InteropServices/4.3.0": {
  3393. "type": "package",
  3394. "compile": {
  3395. "ref/netstandard/_._": {}
  3396. },
  3397. "runtime": {
  3398. "lib/netstandard1.6/System.Runtime.InteropServices.dll": {}
  3399. }
  3400. },
  3401. "runtime.any.System.Text.Encoding/4.3.0": {
  3402. "type": "package",
  3403. "compile": {
  3404. "ref/netstandard/_._": {}
  3405. },
  3406. "runtime": {
  3407. "lib/netstandard1.3/System.Text.Encoding.dll": {}
  3408. }
  3409. },
  3410. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
  3411. "type": "package",
  3412. "compile": {
  3413. "ref/netstandard/_._": {}
  3414. },
  3415. "runtime": {
  3416. "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  3417. }
  3418. },
  3419. "runtime.any.System.Threading.Tasks/4.3.0": {
  3420. "type": "package",
  3421. "compile": {
  3422. "ref/netstandard/_._": {}
  3423. },
  3424. "runtime": {
  3425. "lib/netstandard1.3/System.Threading.Tasks.dll": {}
  3426. }
  3427. },
  3428. "runtime.any.System.Threading.Timer/4.3.0": {
  3429. "type": "package",
  3430. "compile": {
  3431. "ref/netstandard/_._": {}
  3432. },
  3433. "runtime": {
  3434. "lib/netstandard1.3/System.Threading.Timer.dll": {}
  3435. }
  3436. },
  3437. "runtime.native.System/4.3.0": {
  3438. "type": "package",
  3439. "dependencies": {
  3440. "Microsoft.NETCore.Platforms": "1.1.0",
  3441. "Microsoft.NETCore.Targets": "1.1.0"
  3442. },
  3443. "compile": {
  3444. "lib/netstandard1.0/_._": {}
  3445. },
  3446. "runtime": {
  3447. "lib/netstandard1.0/_._": {}
  3448. }
  3449. },
  3450. "runtime.native.System.IO.Compression/4.1.0": {
  3451. "type": "package",
  3452. "dependencies": {
  3453. "Microsoft.NETCore.Platforms": "1.0.1",
  3454. "Microsoft.NETCore.Targets": "1.0.1"
  3455. },
  3456. "compile": {
  3457. "lib/netstandard1.0/_._": {}
  3458. },
  3459. "runtime": {
  3460. "lib/netstandard1.0/_._": {}
  3461. }
  3462. },
  3463. "runtime.native.System.Net.Http/4.0.1": {
  3464. "type": "package",
  3465. "dependencies": {
  3466. "Microsoft.NETCore.Platforms": "1.0.1",
  3467. "Microsoft.NETCore.Targets": "1.0.1"
  3468. },
  3469. "compile": {
  3470. "lib/netstandard1.0/_._": {}
  3471. },
  3472. "runtime": {
  3473. "lib/netstandard1.0/_._": {}
  3474. }
  3475. },
  3476. "runtime.native.System.Security.Cryptography/4.0.0": {
  3477. "type": "package",
  3478. "dependencies": {
  3479. "Microsoft.NETCore.Platforms": "1.0.1",
  3480. "Microsoft.NETCore.Targets": "1.0.1"
  3481. },
  3482. "compile": {
  3483. "lib/netstandard1.0/_._": {}
  3484. },
  3485. "runtime": {
  3486. "lib/netstandard1.0/_._": {}
  3487. }
  3488. },
  3489. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  3490. "type": "package",
  3491. "dependencies": {
  3492. "System.Runtime": "4.3.0",
  3493. "System.Runtime.InteropServices": "4.3.0"
  3494. },
  3495. "compile": {
  3496. "ref/netstandard/_._": {}
  3497. },
  3498. "runtime": {
  3499. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  3500. }
  3501. },
  3502. "runtime.win.System.Console/4.3.0": {
  3503. "type": "package",
  3504. "dependencies": {
  3505. "System.IO": "4.3.0",
  3506. "System.IO.FileSystem.Primitives": "4.3.0",
  3507. "System.Resources.ResourceManager": "4.3.0",
  3508. "System.Runtime": "4.3.0",
  3509. "System.Runtime.InteropServices": "4.3.0",
  3510. "System.Text.Encoding": "4.3.0",
  3511. "System.Text.Encoding.Extensions": "4.3.0",
  3512. "System.Threading": "4.3.0",
  3513. "System.Threading.Tasks": "4.3.0"
  3514. },
  3515. "compile": {
  3516. "ref/netstandard/_._": {}
  3517. },
  3518. "runtime": {
  3519. "runtimes/win/lib/netstandard1.3/System.Console.dll": {}
  3520. }
  3521. },
  3522. "runtime.win.System.Diagnostics.Debug/4.3.0": {
  3523. "type": "package",
  3524. "compile": {
  3525. "ref/netstandard/_._": {}
  3526. },
  3527. "runtime": {
  3528. "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {}
  3529. }
  3530. },
  3531. "runtime.win.System.IO.FileSystem/4.3.0": {
  3532. "type": "package",
  3533. "dependencies": {
  3534. "System.Buffers": "4.3.0",
  3535. "System.Collections": "4.3.0",
  3536. "System.Diagnostics.Debug": "4.3.0",
  3537. "System.IO": "4.3.0",
  3538. "System.IO.FileSystem.Primitives": "4.3.0",
  3539. "System.Resources.ResourceManager": "4.3.0",
  3540. "System.Runtime": "4.3.0",
  3541. "System.Runtime.Extensions": "4.3.0",
  3542. "System.Runtime.Handles": "4.3.0",
  3543. "System.Runtime.InteropServices": "4.3.0",
  3544. "System.Text.Encoding": "4.3.0",
  3545. "System.Text.Encoding.Extensions": "4.3.0",
  3546. "System.Threading": "4.3.0",
  3547. "System.Threading.Overlapped": "4.3.0",
  3548. "System.Threading.Tasks": "4.3.0"
  3549. },
  3550. "compile": {
  3551. "ref/netstandard/_._": {}
  3552. },
  3553. "runtime": {
  3554. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {}
  3555. }
  3556. },
  3557. "runtime.win.System.Net.Primitives/4.3.0": {
  3558. "type": "package",
  3559. "dependencies": {
  3560. "Microsoft.Win32.Primitives": "4.3.0",
  3561. "System.Collections": "4.3.0",
  3562. "System.Diagnostics.Tracing": "4.3.0",
  3563. "System.Globalization": "4.3.0",
  3564. "System.Resources.ResourceManager": "4.3.0",
  3565. "System.Runtime": "4.3.0",
  3566. "System.Runtime.Extensions": "4.3.0",
  3567. "System.Runtime.Handles": "4.3.0",
  3568. "System.Runtime.InteropServices": "4.3.0",
  3569. "System.Threading": "4.3.0"
  3570. },
  3571. "compile": {
  3572. "ref/netstandard/_._": {}
  3573. },
  3574. "runtime": {
  3575. "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {}
  3576. }
  3577. },
  3578. "runtime.win.System.Net.Sockets/4.3.0": {
  3579. "type": "package",
  3580. "dependencies": {
  3581. "System.Collections": "4.3.0",
  3582. "System.Diagnostics.Debug": "4.3.0",
  3583. "System.Diagnostics.Tracing": "4.3.0",
  3584. "System.Globalization": "4.3.0",
  3585. "System.IO": "4.3.0",
  3586. "System.IO.FileSystem": "4.3.0",
  3587. "System.IO.FileSystem.Primitives": "4.3.0",
  3588. "System.Net.NameResolution": "4.3.0",
  3589. "System.Net.Primitives": "4.3.0",
  3590. "System.Resources.ResourceManager": "4.3.0",
  3591. "System.Runtime": "4.3.0",
  3592. "System.Runtime.Extensions": "4.3.0",
  3593. "System.Runtime.Handles": "4.3.0",
  3594. "System.Runtime.InteropServices": "4.3.0",
  3595. "System.Security.Principal.Windows": "4.3.0",
  3596. "System.Threading": "4.3.0",
  3597. "System.Threading.Overlapped": "4.3.0",
  3598. "System.Threading.Tasks": "4.3.0"
  3599. },
  3600. "compile": {
  3601. "ref/netstandard/_._": {}
  3602. },
  3603. "runtime": {
  3604. "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {}
  3605. }
  3606. },
  3607. "runtime.win.System.Runtime.Extensions/4.3.0": {
  3608. "type": "package",
  3609. "dependencies": {
  3610. "System.Private.Uri": "4.3.0"
  3611. },
  3612. "compile": {
  3613. "ref/netstandard/_._": {}
  3614. },
  3615. "runtime": {
  3616. "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {}
  3617. }
  3618. },
  3619. "Scrutor/3.3.0": {
  3620. "type": "package",
  3621. "dependencies": {
  3622. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  3623. "Microsoft.Extensions.DependencyModel": "3.1.6"
  3624. },
  3625. "compile": {
  3626. "lib/netcoreapp3.1/Scrutor.dll": {}
  3627. },
  3628. "runtime": {
  3629. "lib/netcoreapp3.1/Scrutor.dll": {}
  3630. }
  3631. },
  3632. "SSH.NET/2016.1.0": {
  3633. "type": "package",
  3634. "dependencies": {
  3635. "Microsoft.CSharp": "4.0.1",
  3636. "SshNet.Security.Cryptography": "[1.2.0]",
  3637. "System.Diagnostics.Debug": "4.0.11",
  3638. "System.Diagnostics.Tools": "4.0.1",
  3639. "System.Diagnostics.TraceSource": "4.0.0",
  3640. "System.Globalization": "4.0.11",
  3641. "System.IO": "4.1.0",
  3642. "System.IO.FileSystem": "4.0.1",
  3643. "System.IO.FileSystem.Primitives": "4.0.1",
  3644. "System.Linq": "4.1.0",
  3645. "System.Net.NameResolution": "4.0.0",
  3646. "System.Net.Sockets": "4.1.0",
  3647. "System.Reflection.Extensions": "4.0.1",
  3648. "System.Runtime.Extensions": "4.1.0",
  3649. "System.Security.Cryptography.Algorithms": "4.2.0",
  3650. "System.Text.RegularExpressions": "4.1.0",
  3651. "System.Threading": "4.0.11",
  3652. "System.Threading.Thread": "4.0.0",
  3653. "System.Threading.ThreadPool": "4.0.10",
  3654. "System.Threading.Timer": "4.0.1",
  3655. "System.Xml.XPath.XmlDocument": "4.0.1",
  3656. "System.Xml.XmlDocument": "4.0.1"
  3657. },
  3658. "compile": {
  3659. "lib/netstandard1.3/Renci.SshNet.dll": {}
  3660. },
  3661. "runtime": {
  3662. "lib/netstandard1.3/Renci.SshNet.dll": {}
  3663. }
  3664. },
  3665. "SshNet.Security.Cryptography/1.2.0": {
  3666. "type": "package",
  3667. "dependencies": {
  3668. "System.IO": "4.1.0",
  3669. "System.Security.Cryptography.Primitives": "4.0.0"
  3670. },
  3671. "compile": {
  3672. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  3673. },
  3674. "runtime": {
  3675. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  3676. }
  3677. },
  3678. "StackExchange.Redis/2.2.62": {
  3679. "type": "package",
  3680. "dependencies": {
  3681. "Pipelines.Sockets.Unofficial": "2.2.0",
  3682. "System.Diagnostics.PerformanceCounter": "5.0.0"
  3683. },
  3684. "compile": {
  3685. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  3686. },
  3687. "runtime": {
  3688. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  3689. }
  3690. },
  3691. "Swashbuckle.AspNetCore/6.3.1": {
  3692. "type": "package",
  3693. "dependencies": {
  3694. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  3695. "Swashbuckle.AspNetCore.Swagger": "6.3.1",
  3696. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1",
  3697. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.1"
  3698. },
  3699. "build": {
  3700. "build/Swashbuckle.AspNetCore.props": {}
  3701. }
  3702. },
  3703. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  3704. "type": "package",
  3705. "dependencies": {
  3706. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  3707. "Microsoft.OpenApi": "1.2.3",
  3708. "Scrutor": "3.3.0",
  3709. "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2",
  3710. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  3711. },
  3712. "compile": {
  3713. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  3714. },
  3715. "runtime": {
  3716. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  3717. }
  3718. },
  3719. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  3720. "type": "package",
  3721. "compile": {
  3722. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  3723. },
  3724. "runtime": {
  3725. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  3726. }
  3727. },
  3728. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  3729. "type": "package",
  3730. "dependencies": {
  3731. "Microsoft.OpenApi": "1.2.3"
  3732. },
  3733. "compile": {
  3734. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  3735. },
  3736. "runtime": {
  3737. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  3738. },
  3739. "frameworkReferences": [
  3740. "Microsoft.AspNetCore.App"
  3741. ]
  3742. },
  3743. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  3744. "type": "package",
  3745. "dependencies": {
  3746. "Swashbuckle.AspNetCore.Swagger": "6.3.1"
  3747. },
  3748. "compile": {
  3749. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  3750. },
  3751. "runtime": {
  3752. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  3753. }
  3754. },
  3755. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  3756. "type": "package",
  3757. "compile": {
  3758. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  3759. },
  3760. "runtime": {
  3761. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  3762. },
  3763. "frameworkReferences": [
  3764. "Microsoft.AspNetCore.App"
  3765. ]
  3766. },
  3767. "System.AppContext/4.1.0": {
  3768. "type": "package",
  3769. "dependencies": {
  3770. "System.Runtime": "4.1.0"
  3771. },
  3772. "compile": {
  3773. "ref/netstandard1.6/System.AppContext.dll": {}
  3774. },
  3775. "runtime": {
  3776. "lib/netstandard1.6/System.AppContext.dll": {}
  3777. }
  3778. },
  3779. "System.Buffers/4.5.1": {
  3780. "type": "package",
  3781. "compile": {
  3782. "ref/netcoreapp2.0/_._": {}
  3783. },
  3784. "runtime": {
  3785. "lib/netcoreapp2.0/_._": {}
  3786. }
  3787. },
  3788. "System.Collections/4.3.0": {
  3789. "type": "package",
  3790. "dependencies": {
  3791. "Microsoft.NETCore.Platforms": "1.1.0",
  3792. "Microsoft.NETCore.Targets": "1.1.0",
  3793. "System.Runtime": "4.3.0",
  3794. "runtime.any.System.Collections": "4.3.0"
  3795. },
  3796. "compile": {
  3797. "ref/netstandard1.3/System.Collections.dll": {}
  3798. }
  3799. },
  3800. "System.Collections.Concurrent/4.0.12": {
  3801. "type": "package",
  3802. "dependencies": {
  3803. "System.Collections": "4.0.11",
  3804. "System.Diagnostics.Debug": "4.0.11",
  3805. "System.Diagnostics.Tracing": "4.1.0",
  3806. "System.Globalization": "4.0.11",
  3807. "System.Reflection": "4.1.0",
  3808. "System.Resources.ResourceManager": "4.0.1",
  3809. "System.Runtime": "4.1.0",
  3810. "System.Runtime.Extensions": "4.1.0",
  3811. "System.Threading": "4.0.11",
  3812. "System.Threading.Tasks": "4.0.11"
  3813. },
  3814. "compile": {
  3815. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  3816. },
  3817. "runtime": {
  3818. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  3819. }
  3820. },
  3821. "System.Collections.Immutable/1.7.0": {
  3822. "type": "package",
  3823. "compile": {
  3824. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  3825. },
  3826. "runtime": {
  3827. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  3828. }
  3829. },
  3830. "System.ComponentModel.Annotations/4.7.0": {
  3831. "type": "package",
  3832. "compile": {
  3833. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  3834. },
  3835. "runtime": {
  3836. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  3837. }
  3838. },
  3839. "System.Configuration.ConfigurationManager/5.0.0": {
  3840. "type": "package",
  3841. "dependencies": {
  3842. "System.Security.Cryptography.ProtectedData": "5.0.0",
  3843. "System.Security.Permissions": "5.0.0"
  3844. },
  3845. "compile": {
  3846. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  3847. },
  3848. "runtime": {
  3849. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  3850. }
  3851. },
  3852. "System.Console/4.0.0": {
  3853. "type": "package",
  3854. "dependencies": {
  3855. "Microsoft.NETCore.Platforms": "1.0.1",
  3856. "Microsoft.NETCore.Targets": "1.0.1",
  3857. "System.IO": "4.1.0",
  3858. "System.Runtime": "4.1.0",
  3859. "System.Text.Encoding": "4.0.11",
  3860. "runtime.win.System.Console": "4.3.0"
  3861. },
  3862. "compile": {
  3863. "ref/netstandard1.3/System.Console.dll": {}
  3864. }
  3865. },
  3866. "System.Diagnostics.Debug/4.0.11": {
  3867. "type": "package",
  3868. "dependencies": {
  3869. "Microsoft.NETCore.Platforms": "1.0.1",
  3870. "Microsoft.NETCore.Targets": "1.0.1",
  3871. "System.Runtime": "4.1.0",
  3872. "runtime.win.System.Diagnostics.Debug": "4.3.0"
  3873. },
  3874. "compile": {
  3875. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  3876. }
  3877. },
  3878. "System.Diagnostics.DiagnosticSource/5.0.0": {
  3879. "type": "package",
  3880. "compile": {
  3881. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  3882. },
  3883. "runtime": {
  3884. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  3885. }
  3886. },
  3887. "System.Diagnostics.EventLog/5.0.0": {
  3888. "type": "package",
  3889. "dependencies": {
  3890. "Microsoft.NETCore.Platforms": "5.0.0",
  3891. "Microsoft.Win32.Registry": "5.0.0",
  3892. "System.Security.Principal.Windows": "5.0.0"
  3893. },
  3894. "compile": {
  3895. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  3896. },
  3897. "runtime": {
  3898. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {}
  3899. }
  3900. },
  3901. "System.Diagnostics.PerformanceCounter/5.0.0": {
  3902. "type": "package",
  3903. "dependencies": {
  3904. "Microsoft.NETCore.Platforms": "5.0.0",
  3905. "Microsoft.Win32.Registry": "5.0.0",
  3906. "System.Configuration.ConfigurationManager": "5.0.0",
  3907. "System.Security.Principal.Windows": "5.0.0"
  3908. },
  3909. "compile": {
  3910. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  3911. },
  3912. "runtime": {
  3913. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {}
  3914. }
  3915. },
  3916. "System.Diagnostics.Tools/4.0.1": {
  3917. "type": "package",
  3918. "dependencies": {
  3919. "Microsoft.NETCore.Platforms": "1.0.1",
  3920. "Microsoft.NETCore.Targets": "1.0.1",
  3921. "System.Runtime": "4.1.0",
  3922. "runtime.any.System.Diagnostics.Tools": "4.3.0"
  3923. },
  3924. "compile": {
  3925. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  3926. }
  3927. },
  3928. "System.Diagnostics.TraceSource/4.0.0": {
  3929. "type": "package",
  3930. "dependencies": {
  3931. "Microsoft.NETCore.Platforms": "1.0.1",
  3932. "System.Collections": "4.0.11",
  3933. "System.Diagnostics.Debug": "4.0.11",
  3934. "System.Globalization": "4.0.11",
  3935. "System.Resources.ResourceManager": "4.0.1",
  3936. "System.Runtime": "4.1.0",
  3937. "System.Runtime.Extensions": "4.1.0",
  3938. "System.Threading": "4.0.11",
  3939. "runtime.native.System": "4.0.0"
  3940. },
  3941. "compile": {
  3942. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  3943. },
  3944. "runtime": {
  3945. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  3946. }
  3947. },
  3948. "System.Diagnostics.Tracing/4.3.0": {
  3949. "type": "package",
  3950. "dependencies": {
  3951. "Microsoft.NETCore.Platforms": "1.1.0",
  3952. "Microsoft.NETCore.Targets": "1.1.0",
  3953. "System.Runtime": "4.3.0",
  3954. "runtime.any.System.Diagnostics.Tracing": "4.3.0"
  3955. },
  3956. "compile": {
  3957. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  3958. }
  3959. },
  3960. "System.Drawing.Common/5.0.0": {
  3961. "type": "package",
  3962. "dependencies": {
  3963. "Microsoft.Win32.SystemEvents": "5.0.0"
  3964. },
  3965. "compile": {
  3966. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  3967. },
  3968. "runtime": {
  3969. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {}
  3970. }
  3971. },
  3972. "System.Globalization/4.0.11": {
  3973. "type": "package",
  3974. "dependencies": {
  3975. "Microsoft.NETCore.Platforms": "1.0.1",
  3976. "Microsoft.NETCore.Targets": "1.0.1",
  3977. "System.Runtime": "4.1.0",
  3978. "runtime.any.System.Globalization": "4.3.0"
  3979. },
  3980. "compile": {
  3981. "ref/netstandard1.3/System.Globalization.dll": {}
  3982. }
  3983. },
  3984. "System.Globalization.Calendars/4.0.1": {
  3985. "type": "package",
  3986. "dependencies": {
  3987. "Microsoft.NETCore.Platforms": "1.0.1",
  3988. "Microsoft.NETCore.Targets": "1.0.1",
  3989. "System.Globalization": "4.0.11",
  3990. "System.Runtime": "4.1.0",
  3991. "runtime.any.System.Globalization.Calendars": "4.3.0"
  3992. },
  3993. "compile": {
  3994. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  3995. }
  3996. },
  3997. "System.Globalization.Extensions/4.0.1": {
  3998. "type": "package",
  3999. "dependencies": {
  4000. "Microsoft.NETCore.Platforms": "1.0.1",
  4001. "System.Globalization": "4.0.11",
  4002. "System.Resources.ResourceManager": "4.0.1",
  4003. "System.Runtime": "4.1.0",
  4004. "System.Runtime.Extensions": "4.1.0",
  4005. "System.Runtime.InteropServices": "4.1.0"
  4006. },
  4007. "compile": {
  4008. "ref/netstandard1.3/_._": {}
  4009. },
  4010. "runtime": {
  4011. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
  4012. }
  4013. },
  4014. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  4015. "type": "package",
  4016. "dependencies": {
  4017. "Microsoft.IdentityModel.JsonWebTokens": "6.11.0",
  4018. "Microsoft.IdentityModel.Tokens": "6.11.0"
  4019. },
  4020. "compile": {
  4021. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  4022. },
  4023. "runtime": {
  4024. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  4025. }
  4026. },
  4027. "System.IO/4.3.0": {
  4028. "type": "package",
  4029. "dependencies": {
  4030. "Microsoft.NETCore.Platforms": "1.1.0",
  4031. "Microsoft.NETCore.Targets": "1.1.0",
  4032. "System.Runtime": "4.3.0",
  4033. "System.Text.Encoding": "4.3.0",
  4034. "System.Threading.Tasks": "4.3.0",
  4035. "runtime.any.System.IO": "4.3.0"
  4036. },
  4037. "compile": {
  4038. "ref/netstandard1.5/System.IO.dll": {}
  4039. }
  4040. },
  4041. "System.IO.Compression/4.1.0": {
  4042. "type": "package",
  4043. "dependencies": {
  4044. "Microsoft.NETCore.Platforms": "1.0.1",
  4045. "System.Collections": "4.0.11",
  4046. "System.Diagnostics.Debug": "4.0.11",
  4047. "System.IO": "4.1.0",
  4048. "System.Resources.ResourceManager": "4.0.1",
  4049. "System.Runtime": "4.1.0",
  4050. "System.Runtime.Extensions": "4.1.0",
  4051. "System.Runtime.Handles": "4.0.1",
  4052. "System.Runtime.InteropServices": "4.1.0",
  4053. "System.Text.Encoding": "4.0.11",
  4054. "System.Threading": "4.0.11",
  4055. "System.Threading.Tasks": "4.0.11",
  4056. "runtime.native.System": "4.0.0",
  4057. "runtime.native.System.IO.Compression": "4.1.0"
  4058. },
  4059. "compile": {
  4060. "ref/netstandard1.3/System.IO.Compression.dll": {}
  4061. },
  4062. "runtime": {
  4063. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
  4064. }
  4065. },
  4066. "System.IO.Compression.ZipFile/4.0.1": {
  4067. "type": "package",
  4068. "dependencies": {
  4069. "System.Buffers": "4.0.0",
  4070. "System.IO": "4.1.0",
  4071. "System.IO.Compression": "4.1.0",
  4072. "System.IO.FileSystem": "4.0.1",
  4073. "System.IO.FileSystem.Primitives": "4.0.1",
  4074. "System.Resources.ResourceManager": "4.0.1",
  4075. "System.Runtime": "4.1.0",
  4076. "System.Runtime.Extensions": "4.1.0",
  4077. "System.Text.Encoding": "4.0.11"
  4078. },
  4079. "compile": {
  4080. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  4081. },
  4082. "runtime": {
  4083. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  4084. }
  4085. },
  4086. "System.IO.FileSystem/4.0.1": {
  4087. "type": "package",
  4088. "dependencies": {
  4089. "Microsoft.NETCore.Platforms": "1.0.1",
  4090. "Microsoft.NETCore.Targets": "1.0.1",
  4091. "System.IO": "4.1.0",
  4092. "System.IO.FileSystem.Primitives": "4.0.1",
  4093. "System.Runtime": "4.1.0",
  4094. "System.Runtime.Handles": "4.0.1",
  4095. "System.Text.Encoding": "4.0.11",
  4096. "System.Threading.Tasks": "4.0.11",
  4097. "runtime.win.System.IO.FileSystem": "4.3.0"
  4098. },
  4099. "compile": {
  4100. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  4101. }
  4102. },
  4103. "System.IO.FileSystem.Primitives/4.0.1": {
  4104. "type": "package",
  4105. "dependencies": {
  4106. "System.Runtime": "4.1.0"
  4107. },
  4108. "compile": {
  4109. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  4110. },
  4111. "runtime": {
  4112. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  4113. }
  4114. },
  4115. "System.IO.Pipelines/5.0.0": {
  4116. "type": "package",
  4117. "compile": {
  4118. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  4119. },
  4120. "runtime": {
  4121. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  4122. }
  4123. },
  4124. "System.Linq/4.1.0": {
  4125. "type": "package",
  4126. "dependencies": {
  4127. "System.Collections": "4.0.11",
  4128. "System.Diagnostics.Debug": "4.0.11",
  4129. "System.Resources.ResourceManager": "4.0.1",
  4130. "System.Runtime": "4.1.0",
  4131. "System.Runtime.Extensions": "4.1.0"
  4132. },
  4133. "compile": {
  4134. "ref/netstandard1.6/System.Linq.dll": {}
  4135. },
  4136. "runtime": {
  4137. "lib/netstandard1.6/System.Linq.dll": {}
  4138. }
  4139. },
  4140. "System.Linq.Expressions/4.1.0": {
  4141. "type": "package",
  4142. "dependencies": {
  4143. "System.Collections": "4.0.11",
  4144. "System.Diagnostics.Debug": "4.0.11",
  4145. "System.Globalization": "4.0.11",
  4146. "System.IO": "4.1.0",
  4147. "System.Linq": "4.1.0",
  4148. "System.ObjectModel": "4.0.12",
  4149. "System.Reflection": "4.1.0",
  4150. "System.Reflection.Emit": "4.0.1",
  4151. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4152. "System.Reflection.Emit.Lightweight": "4.0.1",
  4153. "System.Reflection.Extensions": "4.0.1",
  4154. "System.Reflection.Primitives": "4.0.1",
  4155. "System.Reflection.TypeExtensions": "4.1.0",
  4156. "System.Resources.ResourceManager": "4.0.1",
  4157. "System.Runtime": "4.1.0",
  4158. "System.Runtime.Extensions": "4.1.0",
  4159. "System.Threading": "4.0.11"
  4160. },
  4161. "compile": {
  4162. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  4163. },
  4164. "runtime": {
  4165. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  4166. }
  4167. },
  4168. "System.Memory/4.5.3": {
  4169. "type": "package",
  4170. "compile": {
  4171. "ref/netcoreapp2.1/_._": {}
  4172. },
  4173. "runtime": {
  4174. "lib/netcoreapp2.1/_._": {}
  4175. }
  4176. },
  4177. "System.Net.Http/4.1.0": {
  4178. "type": "package",
  4179. "dependencies": {
  4180. "Microsoft.NETCore.Platforms": "1.0.1",
  4181. "System.Collections": "4.0.11",
  4182. "System.Diagnostics.Debug": "4.0.11",
  4183. "System.Diagnostics.DiagnosticSource": "4.0.0",
  4184. "System.Diagnostics.Tracing": "4.1.0",
  4185. "System.Globalization": "4.0.11",
  4186. "System.Globalization.Extensions": "4.0.1",
  4187. "System.IO": "4.1.0",
  4188. "System.IO.FileSystem": "4.0.1",
  4189. "System.Net.Primitives": "4.0.11",
  4190. "System.Resources.ResourceManager": "4.0.1",
  4191. "System.Runtime": "4.1.0",
  4192. "System.Runtime.Extensions": "4.1.0",
  4193. "System.Runtime.Handles": "4.0.1",
  4194. "System.Runtime.InteropServices": "4.1.0",
  4195. "System.Security.Cryptography.Algorithms": "4.2.0",
  4196. "System.Security.Cryptography.Encoding": "4.0.0",
  4197. "System.Security.Cryptography.OpenSsl": "4.0.0",
  4198. "System.Security.Cryptography.Primitives": "4.0.0",
  4199. "System.Security.Cryptography.X509Certificates": "4.1.0",
  4200. "System.Text.Encoding": "4.0.11",
  4201. "System.Threading": "4.0.11",
  4202. "System.Threading.Tasks": "4.0.11",
  4203. "runtime.native.System": "4.0.0",
  4204. "runtime.native.System.Net.Http": "4.0.1",
  4205. "runtime.native.System.Security.Cryptography": "4.0.0"
  4206. },
  4207. "compile": {
  4208. "ref/netstandard1.3/System.Net.Http.dll": {}
  4209. },
  4210. "runtime": {
  4211. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
  4212. }
  4213. },
  4214. "System.Net.NameResolution/4.3.0": {
  4215. "type": "package",
  4216. "dependencies": {
  4217. "Microsoft.NETCore.Platforms": "1.1.0",
  4218. "System.Collections": "4.3.0",
  4219. "System.Diagnostics.Tracing": "4.3.0",
  4220. "System.Globalization": "4.3.0",
  4221. "System.Net.Primitives": "4.3.0",
  4222. "System.Resources.ResourceManager": "4.3.0",
  4223. "System.Runtime": "4.3.0",
  4224. "System.Runtime.Extensions": "4.3.0",
  4225. "System.Runtime.Handles": "4.3.0",
  4226. "System.Runtime.InteropServices": "4.3.0",
  4227. "System.Security.Principal.Windows": "4.3.0",
  4228. "System.Threading": "4.3.0",
  4229. "System.Threading.Tasks": "4.3.0",
  4230. "runtime.native.System": "4.3.0"
  4231. },
  4232. "compile": {
  4233. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  4234. },
  4235. "runtime": {
  4236. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
  4237. }
  4238. },
  4239. "System.Net.Primitives/4.0.11": {
  4240. "type": "package",
  4241. "dependencies": {
  4242. "Microsoft.NETCore.Platforms": "1.0.1",
  4243. "Microsoft.NETCore.Targets": "1.0.1",
  4244. "System.Runtime": "4.1.0",
  4245. "System.Runtime.Handles": "4.0.1",
  4246. "runtime.win.System.Net.Primitives": "4.3.0"
  4247. },
  4248. "compile": {
  4249. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  4250. }
  4251. },
  4252. "System.Net.Sockets/4.1.0": {
  4253. "type": "package",
  4254. "dependencies": {
  4255. "Microsoft.NETCore.Platforms": "1.0.1",
  4256. "Microsoft.NETCore.Targets": "1.0.1",
  4257. "System.IO": "4.1.0",
  4258. "System.Net.Primitives": "4.0.11",
  4259. "System.Runtime": "4.1.0",
  4260. "System.Threading.Tasks": "4.0.11",
  4261. "runtime.win.System.Net.Sockets": "4.3.0"
  4262. },
  4263. "compile": {
  4264. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  4265. }
  4266. },
  4267. "System.ObjectModel/4.0.12": {
  4268. "type": "package",
  4269. "dependencies": {
  4270. "System.Collections": "4.0.11",
  4271. "System.Diagnostics.Debug": "4.0.11",
  4272. "System.Resources.ResourceManager": "4.0.1",
  4273. "System.Runtime": "4.1.0",
  4274. "System.Threading": "4.0.11"
  4275. },
  4276. "compile": {
  4277. "ref/netstandard1.3/System.ObjectModel.dll": {}
  4278. },
  4279. "runtime": {
  4280. "lib/netstandard1.3/System.ObjectModel.dll": {}
  4281. }
  4282. },
  4283. "System.Private.Uri/4.3.0": {
  4284. "type": "package",
  4285. "dependencies": {
  4286. "Microsoft.NETCore.Platforms": "1.1.0",
  4287. "Microsoft.NETCore.Targets": "1.1.0"
  4288. },
  4289. "compile": {
  4290. "ref/netstandard/_._": {}
  4291. }
  4292. },
  4293. "System.Reflection/4.3.0": {
  4294. "type": "package",
  4295. "dependencies": {
  4296. "Microsoft.NETCore.Platforms": "1.1.0",
  4297. "Microsoft.NETCore.Targets": "1.1.0",
  4298. "System.IO": "4.3.0",
  4299. "System.Reflection.Primitives": "4.3.0",
  4300. "System.Runtime": "4.3.0",
  4301. "runtime.any.System.Reflection": "4.3.0"
  4302. },
  4303. "compile": {
  4304. "ref/netstandard1.5/System.Reflection.dll": {}
  4305. }
  4306. },
  4307. "System.Reflection.Emit/4.7.0": {
  4308. "type": "package",
  4309. "compile": {
  4310. "ref/netcoreapp2.0/_._": {}
  4311. },
  4312. "runtime": {
  4313. "lib/netcoreapp2.0/_._": {}
  4314. }
  4315. },
  4316. "System.Reflection.Emit.ILGeneration/4.0.1": {
  4317. "type": "package",
  4318. "dependencies": {
  4319. "System.Reflection": "4.1.0",
  4320. "System.Reflection.Primitives": "4.0.1",
  4321. "System.Runtime": "4.1.0"
  4322. },
  4323. "compile": {
  4324. "ref/netstandard1.0/_._": {}
  4325. },
  4326. "runtime": {
  4327. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  4328. }
  4329. },
  4330. "System.Reflection.Emit.Lightweight/4.0.1": {
  4331. "type": "package",
  4332. "dependencies": {
  4333. "System.Reflection": "4.1.0",
  4334. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4335. "System.Reflection.Primitives": "4.0.1",
  4336. "System.Runtime": "4.1.0"
  4337. },
  4338. "compile": {
  4339. "ref/netstandard1.0/_._": {}
  4340. },
  4341. "runtime": {
  4342. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  4343. }
  4344. },
  4345. "System.Reflection.Extensions/4.0.1": {
  4346. "type": "package",
  4347. "dependencies": {
  4348. "Microsoft.NETCore.Platforms": "1.0.1",
  4349. "Microsoft.NETCore.Targets": "1.0.1",
  4350. "System.Reflection": "4.1.0",
  4351. "System.Runtime": "4.1.0",
  4352. "runtime.any.System.Reflection.Extensions": "4.3.0"
  4353. },
  4354. "compile": {
  4355. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  4356. }
  4357. },
  4358. "System.Reflection.Primitives/4.3.0": {
  4359. "type": "package",
  4360. "dependencies": {
  4361. "Microsoft.NETCore.Platforms": "1.1.0",
  4362. "Microsoft.NETCore.Targets": "1.1.0",
  4363. "System.Runtime": "4.3.0",
  4364. "runtime.any.System.Reflection.Primitives": "4.3.0"
  4365. },
  4366. "compile": {
  4367. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  4368. }
  4369. },
  4370. "System.Reflection.TypeExtensions/4.1.0": {
  4371. "type": "package",
  4372. "dependencies": {
  4373. "System.Reflection": "4.1.0",
  4374. "System.Runtime": "4.1.0"
  4375. },
  4376. "compile": {
  4377. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  4378. },
  4379. "runtime": {
  4380. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  4381. }
  4382. },
  4383. "System.Resources.ResourceManager/4.3.0": {
  4384. "type": "package",
  4385. "dependencies": {
  4386. "Microsoft.NETCore.Platforms": "1.1.0",
  4387. "Microsoft.NETCore.Targets": "1.1.0",
  4388. "System.Globalization": "4.3.0",
  4389. "System.Reflection": "4.3.0",
  4390. "System.Runtime": "4.3.0",
  4391. "runtime.any.System.Resources.ResourceManager": "4.3.0"
  4392. },
  4393. "compile": {
  4394. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  4395. }
  4396. },
  4397. "System.Runtime/4.3.0": {
  4398. "type": "package",
  4399. "dependencies": {
  4400. "Microsoft.NETCore.Platforms": "1.1.0",
  4401. "Microsoft.NETCore.Targets": "1.1.0",
  4402. "runtime.any.System.Runtime": "4.3.0"
  4403. },
  4404. "compile": {
  4405. "ref/netstandard1.5/System.Runtime.dll": {}
  4406. }
  4407. },
  4408. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  4409. "type": "package",
  4410. "compile": {
  4411. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  4412. },
  4413. "runtime": {
  4414. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  4415. }
  4416. },
  4417. "System.Runtime.Extensions/4.1.0": {
  4418. "type": "package",
  4419. "dependencies": {
  4420. "Microsoft.NETCore.Platforms": "1.0.1",
  4421. "Microsoft.NETCore.Targets": "1.0.1",
  4422. "System.Runtime": "4.1.0",
  4423. "runtime.win.System.Runtime.Extensions": "4.3.0"
  4424. },
  4425. "compile": {
  4426. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  4427. }
  4428. },
  4429. "System.Runtime.Handles/4.3.0": {
  4430. "type": "package",
  4431. "dependencies": {
  4432. "Microsoft.NETCore.Platforms": "1.1.0",
  4433. "Microsoft.NETCore.Targets": "1.1.0",
  4434. "System.Runtime": "4.3.0",
  4435. "runtime.any.System.Runtime.Handles": "4.3.0"
  4436. },
  4437. "compile": {
  4438. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  4439. }
  4440. },
  4441. "System.Runtime.InteropServices/4.3.0": {
  4442. "type": "package",
  4443. "dependencies": {
  4444. "Microsoft.NETCore.Platforms": "1.1.0",
  4445. "Microsoft.NETCore.Targets": "1.1.0",
  4446. "System.Reflection": "4.3.0",
  4447. "System.Reflection.Primitives": "4.3.0",
  4448. "System.Runtime": "4.3.0",
  4449. "System.Runtime.Handles": "4.3.0",
  4450. "runtime.any.System.Runtime.InteropServices": "4.3.0"
  4451. },
  4452. "compile": {
  4453. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  4454. }
  4455. },
  4456. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  4457. "type": "package",
  4458. "dependencies": {
  4459. "Microsoft.NETCore.Platforms": "1.0.1",
  4460. "System.Reflection": "4.1.0",
  4461. "System.Resources.ResourceManager": "4.0.1",
  4462. "System.Runtime": "4.1.0",
  4463. "System.Runtime.InteropServices": "4.1.0",
  4464. "System.Threading": "4.0.11",
  4465. "runtime.native.System": "4.0.0"
  4466. },
  4467. "compile": {
  4468. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  4469. },
  4470. "runtime": {
  4471. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  4472. }
  4473. },
  4474. "System.Runtime.Numerics/4.0.1": {
  4475. "type": "package",
  4476. "dependencies": {
  4477. "System.Globalization": "4.0.11",
  4478. "System.Resources.ResourceManager": "4.0.1",
  4479. "System.Runtime": "4.1.0",
  4480. "System.Runtime.Extensions": "4.1.0"
  4481. },
  4482. "compile": {
  4483. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  4484. },
  4485. "runtime": {
  4486. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  4487. }
  4488. },
  4489. "System.Security.AccessControl/5.0.0": {
  4490. "type": "package",
  4491. "dependencies": {
  4492. "Microsoft.NETCore.Platforms": "5.0.0",
  4493. "System.Security.Principal.Windows": "5.0.0"
  4494. },
  4495. "compile": {
  4496. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  4497. },
  4498. "runtime": {
  4499. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {}
  4500. }
  4501. },
  4502. "System.Security.Cryptography.Algorithms/4.2.0": {
  4503. "type": "package",
  4504. "dependencies": {
  4505. "Microsoft.NETCore.Platforms": "1.0.1",
  4506. "System.Collections": "4.0.11",
  4507. "System.IO": "4.1.0",
  4508. "System.Resources.ResourceManager": "4.0.1",
  4509. "System.Runtime": "4.1.0",
  4510. "System.Runtime.Extensions": "4.1.0",
  4511. "System.Runtime.Handles": "4.0.1",
  4512. "System.Runtime.InteropServices": "4.1.0",
  4513. "System.Runtime.Numerics": "4.0.1",
  4514. "System.Security.Cryptography.Encoding": "4.0.0",
  4515. "System.Security.Cryptography.Primitives": "4.0.0",
  4516. "System.Text.Encoding": "4.0.11",
  4517. "runtime.native.System.Security.Cryptography": "4.0.0"
  4518. },
  4519. "compile": {
  4520. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  4521. },
  4522. "runtime": {
  4523. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  4524. }
  4525. },
  4526. "System.Security.Cryptography.Cng/4.5.0": {
  4527. "type": "package",
  4528. "compile": {
  4529. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  4530. },
  4531. "runtime": {
  4532. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  4533. }
  4534. },
  4535. "System.Security.Cryptography.Csp/4.0.0": {
  4536. "type": "package",
  4537. "dependencies": {
  4538. "Microsoft.NETCore.Platforms": "1.0.1",
  4539. "System.IO": "4.1.0",
  4540. "System.Reflection": "4.1.0",
  4541. "System.Resources.ResourceManager": "4.0.1",
  4542. "System.Runtime": "4.1.0",
  4543. "System.Runtime.Extensions": "4.1.0",
  4544. "System.Runtime.Handles": "4.0.1",
  4545. "System.Runtime.InteropServices": "4.1.0",
  4546. "System.Security.Cryptography.Algorithms": "4.2.0",
  4547. "System.Security.Cryptography.Encoding": "4.0.0",
  4548. "System.Security.Cryptography.Primitives": "4.0.0",
  4549. "System.Text.Encoding": "4.0.11",
  4550. "System.Threading": "4.0.11"
  4551. },
  4552. "compile": {
  4553. "ref/netstandard1.3/_._": {}
  4554. },
  4555. "runtime": {
  4556. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
  4557. }
  4558. },
  4559. "System.Security.Cryptography.Encoding/4.0.0": {
  4560. "type": "package",
  4561. "dependencies": {
  4562. "Microsoft.NETCore.Platforms": "1.0.1",
  4563. "System.Collections": "4.0.11",
  4564. "System.Collections.Concurrent": "4.0.12",
  4565. "System.Linq": "4.1.0",
  4566. "System.Resources.ResourceManager": "4.0.1",
  4567. "System.Runtime": "4.1.0",
  4568. "System.Runtime.Extensions": "4.1.0",
  4569. "System.Runtime.Handles": "4.0.1",
  4570. "System.Runtime.InteropServices": "4.1.0",
  4571. "System.Security.Cryptography.Primitives": "4.0.0",
  4572. "System.Text.Encoding": "4.0.11",
  4573. "runtime.native.System.Security.Cryptography": "4.0.0"
  4574. },
  4575. "compile": {
  4576. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  4577. },
  4578. "runtime": {
  4579. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  4580. }
  4581. },
  4582. "System.Security.Cryptography.OpenSsl/4.0.0": {
  4583. "type": "package",
  4584. "dependencies": {
  4585. "System.Collections": "4.0.11",
  4586. "System.IO": "4.1.0",
  4587. "System.Resources.ResourceManager": "4.0.1",
  4588. "System.Runtime": "4.1.0",
  4589. "System.Runtime.Extensions": "4.1.0",
  4590. "System.Runtime.Handles": "4.0.1",
  4591. "System.Runtime.InteropServices": "4.1.0",
  4592. "System.Runtime.Numerics": "4.0.1",
  4593. "System.Security.Cryptography.Algorithms": "4.2.0",
  4594. "System.Security.Cryptography.Encoding": "4.0.0",
  4595. "System.Security.Cryptography.Primitives": "4.0.0",
  4596. "System.Text.Encoding": "4.0.11",
  4597. "runtime.native.System.Security.Cryptography": "4.0.0"
  4598. },
  4599. "compile": {
  4600. "ref/netstandard1.6/_._": {}
  4601. },
  4602. "runtime": {
  4603. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  4604. }
  4605. },
  4606. "System.Security.Cryptography.Primitives/4.0.0": {
  4607. "type": "package",
  4608. "dependencies": {
  4609. "System.Diagnostics.Debug": "4.0.11",
  4610. "System.Globalization": "4.0.11",
  4611. "System.IO": "4.1.0",
  4612. "System.Resources.ResourceManager": "4.0.1",
  4613. "System.Runtime": "4.1.0",
  4614. "System.Threading": "4.0.11",
  4615. "System.Threading.Tasks": "4.0.11"
  4616. },
  4617. "compile": {
  4618. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  4619. },
  4620. "runtime": {
  4621. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  4622. }
  4623. },
  4624. "System.Security.Cryptography.ProtectedData/5.0.0": {
  4625. "type": "package",
  4626. "compile": {
  4627. "ref/netstandard2.0/_._": {}
  4628. },
  4629. "runtime": {
  4630. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  4631. }
  4632. },
  4633. "System.Security.Cryptography.X509Certificates/4.1.0": {
  4634. "type": "package",
  4635. "dependencies": {
  4636. "Microsoft.NETCore.Platforms": "1.0.1",
  4637. "System.Collections": "4.0.11",
  4638. "System.Diagnostics.Debug": "4.0.11",
  4639. "System.Globalization": "4.0.11",
  4640. "System.Globalization.Calendars": "4.0.1",
  4641. "System.IO": "4.1.0",
  4642. "System.IO.FileSystem": "4.0.1",
  4643. "System.IO.FileSystem.Primitives": "4.0.1",
  4644. "System.Resources.ResourceManager": "4.0.1",
  4645. "System.Runtime": "4.1.0",
  4646. "System.Runtime.Extensions": "4.1.0",
  4647. "System.Runtime.Handles": "4.0.1",
  4648. "System.Runtime.InteropServices": "4.1.0",
  4649. "System.Runtime.Numerics": "4.0.1",
  4650. "System.Security.Cryptography.Algorithms": "4.2.0",
  4651. "System.Security.Cryptography.Cng": "4.2.0",
  4652. "System.Security.Cryptography.Csp": "4.0.0",
  4653. "System.Security.Cryptography.Encoding": "4.0.0",
  4654. "System.Security.Cryptography.OpenSsl": "4.0.0",
  4655. "System.Security.Cryptography.Primitives": "4.0.0",
  4656. "System.Text.Encoding": "4.0.11",
  4657. "System.Threading": "4.0.11",
  4658. "runtime.native.System": "4.0.0",
  4659. "runtime.native.System.Net.Http": "4.0.1",
  4660. "runtime.native.System.Security.Cryptography": "4.0.0"
  4661. },
  4662. "compile": {
  4663. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  4664. },
  4665. "runtime": {
  4666. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
  4667. }
  4668. },
  4669. "System.Security.Permissions/5.0.0": {
  4670. "type": "package",
  4671. "dependencies": {
  4672. "System.Security.AccessControl": "5.0.0",
  4673. "System.Windows.Extensions": "5.0.0"
  4674. },
  4675. "compile": {
  4676. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  4677. },
  4678. "runtime": {
  4679. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  4680. }
  4681. },
  4682. "System.Security.Principal.Windows/5.0.0": {
  4683. "type": "package",
  4684. "compile": {
  4685. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  4686. },
  4687. "runtime": {
  4688. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {}
  4689. }
  4690. },
  4691. "System.ServiceProcess.ServiceController/5.0.0": {
  4692. "type": "package",
  4693. "dependencies": {
  4694. "System.Diagnostics.EventLog": "5.0.0"
  4695. },
  4696. "compile": {
  4697. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  4698. },
  4699. "runtime": {
  4700. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  4701. }
  4702. },
  4703. "System.Text.Encoding/4.3.0": {
  4704. "type": "package",
  4705. "dependencies": {
  4706. "Microsoft.NETCore.Platforms": "1.1.0",
  4707. "Microsoft.NETCore.Targets": "1.1.0",
  4708. "System.Runtime": "4.3.0",
  4709. "runtime.any.System.Text.Encoding": "4.3.0"
  4710. },
  4711. "compile": {
  4712. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  4713. }
  4714. },
  4715. "System.Text.Encoding.CodePages/4.5.1": {
  4716. "type": "package",
  4717. "dependencies": {
  4718. "Microsoft.NETCore.Platforms": "2.1.2",
  4719. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  4720. },
  4721. "compile": {
  4722. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  4723. },
  4724. "runtime": {
  4725. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {}
  4726. }
  4727. },
  4728. "System.Text.Encoding.Extensions/4.3.0": {
  4729. "type": "package",
  4730. "dependencies": {
  4731. "Microsoft.NETCore.Platforms": "1.1.0",
  4732. "Microsoft.NETCore.Targets": "1.1.0",
  4733. "System.Runtime": "4.3.0",
  4734. "System.Text.Encoding": "4.3.0",
  4735. "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
  4736. },
  4737. "compile": {
  4738. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  4739. }
  4740. },
  4741. "System.Text.Json/5.0.0": {
  4742. "type": "package",
  4743. "compile": {
  4744. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  4745. },
  4746. "runtime": {
  4747. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  4748. }
  4749. },
  4750. "System.Text.RegularExpressions/4.1.0": {
  4751. "type": "package",
  4752. "dependencies": {
  4753. "System.Collections": "4.0.11",
  4754. "System.Globalization": "4.0.11",
  4755. "System.Resources.ResourceManager": "4.0.1",
  4756. "System.Runtime": "4.1.0",
  4757. "System.Runtime.Extensions": "4.1.0",
  4758. "System.Threading": "4.0.11"
  4759. },
  4760. "compile": {
  4761. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  4762. },
  4763. "runtime": {
  4764. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  4765. }
  4766. },
  4767. "System.Threading/4.0.11": {
  4768. "type": "package",
  4769. "dependencies": {
  4770. "System.Runtime": "4.1.0",
  4771. "System.Threading.Tasks": "4.0.11"
  4772. },
  4773. "compile": {
  4774. "ref/netstandard1.3/System.Threading.dll": {}
  4775. },
  4776. "runtime": {
  4777. "lib/netstandard1.3/System.Threading.dll": {}
  4778. }
  4779. },
  4780. "System.Threading.Overlapped/4.3.0": {
  4781. "type": "package",
  4782. "dependencies": {
  4783. "Microsoft.NETCore.Platforms": "1.1.0",
  4784. "System.Resources.ResourceManager": "4.3.0",
  4785. "System.Runtime": "4.3.0",
  4786. "System.Runtime.Handles": "4.3.0"
  4787. },
  4788. "compile": {
  4789. "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
  4790. },
  4791. "runtime": {
  4792. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {}
  4793. }
  4794. },
  4795. "System.Threading.Tasks/4.3.0": {
  4796. "type": "package",
  4797. "dependencies": {
  4798. "Microsoft.NETCore.Platforms": "1.1.0",
  4799. "Microsoft.NETCore.Targets": "1.1.0",
  4800. "System.Runtime": "4.3.0",
  4801. "runtime.any.System.Threading.Tasks": "4.3.0"
  4802. },
  4803. "compile": {
  4804. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  4805. }
  4806. },
  4807. "System.Threading.Tasks.Extensions/4.0.0": {
  4808. "type": "package",
  4809. "dependencies": {
  4810. "System.Collections": "4.0.11",
  4811. "System.Runtime": "4.1.0",
  4812. "System.Threading.Tasks": "4.0.11"
  4813. },
  4814. "compile": {
  4815. "lib/netstandard1.0/_._": {}
  4816. },
  4817. "runtime": {
  4818. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  4819. }
  4820. },
  4821. "System.Threading.Thread/4.0.0": {
  4822. "type": "package",
  4823. "dependencies": {
  4824. "System.Runtime": "4.1.0"
  4825. },
  4826. "compile": {
  4827. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  4828. },
  4829. "runtime": {
  4830. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  4831. }
  4832. },
  4833. "System.Threading.ThreadPool/4.0.10": {
  4834. "type": "package",
  4835. "dependencies": {
  4836. "System.Runtime": "4.1.0",
  4837. "System.Runtime.Handles": "4.0.1"
  4838. },
  4839. "compile": {
  4840. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  4841. },
  4842. "runtime": {
  4843. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  4844. }
  4845. },
  4846. "System.Threading.Timer/4.0.1": {
  4847. "type": "package",
  4848. "dependencies": {
  4849. "Microsoft.NETCore.Platforms": "1.0.1",
  4850. "Microsoft.NETCore.Targets": "1.0.1",
  4851. "System.Runtime": "4.1.0",
  4852. "runtime.any.System.Threading.Timer": "4.3.0"
  4853. },
  4854. "compile": {
  4855. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  4856. }
  4857. },
  4858. "System.Windows.Extensions/5.0.0": {
  4859. "type": "package",
  4860. "dependencies": {
  4861. "System.Drawing.Common": "5.0.0"
  4862. },
  4863. "compile": {
  4864. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  4865. },
  4866. "runtime": {
  4867. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  4868. }
  4869. },
  4870. "System.Xml.ReaderWriter/4.0.11": {
  4871. "type": "package",
  4872. "dependencies": {
  4873. "System.Collections": "4.0.11",
  4874. "System.Diagnostics.Debug": "4.0.11",
  4875. "System.Globalization": "4.0.11",
  4876. "System.IO": "4.1.0",
  4877. "System.IO.FileSystem": "4.0.1",
  4878. "System.IO.FileSystem.Primitives": "4.0.1",
  4879. "System.Resources.ResourceManager": "4.0.1",
  4880. "System.Runtime": "4.1.0",
  4881. "System.Runtime.Extensions": "4.1.0",
  4882. "System.Runtime.InteropServices": "4.1.0",
  4883. "System.Text.Encoding": "4.0.11",
  4884. "System.Text.Encoding.Extensions": "4.0.11",
  4885. "System.Text.RegularExpressions": "4.1.0",
  4886. "System.Threading.Tasks": "4.0.11",
  4887. "System.Threading.Tasks.Extensions": "4.0.0"
  4888. },
  4889. "compile": {
  4890. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  4891. },
  4892. "runtime": {
  4893. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  4894. }
  4895. },
  4896. "System.Xml.XDocument/4.0.11": {
  4897. "type": "package",
  4898. "dependencies": {
  4899. "System.Collections": "4.0.11",
  4900. "System.Diagnostics.Debug": "4.0.11",
  4901. "System.Diagnostics.Tools": "4.0.1",
  4902. "System.Globalization": "4.0.11",
  4903. "System.IO": "4.1.0",
  4904. "System.Reflection": "4.1.0",
  4905. "System.Resources.ResourceManager": "4.0.1",
  4906. "System.Runtime": "4.1.0",
  4907. "System.Runtime.Extensions": "4.1.0",
  4908. "System.Text.Encoding": "4.0.11",
  4909. "System.Threading": "4.0.11",
  4910. "System.Xml.ReaderWriter": "4.0.11"
  4911. },
  4912. "compile": {
  4913. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  4914. },
  4915. "runtime": {
  4916. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  4917. }
  4918. },
  4919. "System.Xml.XmlDocument/4.0.1": {
  4920. "type": "package",
  4921. "dependencies": {
  4922. "System.Collections": "4.0.11",
  4923. "System.Diagnostics.Debug": "4.0.11",
  4924. "System.Globalization": "4.0.11",
  4925. "System.IO": "4.1.0",
  4926. "System.Resources.ResourceManager": "4.0.1",
  4927. "System.Runtime": "4.1.0",
  4928. "System.Runtime.Extensions": "4.1.0",
  4929. "System.Text.Encoding": "4.0.11",
  4930. "System.Threading": "4.0.11",
  4931. "System.Xml.ReaderWriter": "4.0.11"
  4932. },
  4933. "compile": {
  4934. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  4935. },
  4936. "runtime": {
  4937. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  4938. }
  4939. },
  4940. "System.Xml.XPath/4.0.1": {
  4941. "type": "package",
  4942. "dependencies": {
  4943. "System.Collections": "4.0.11",
  4944. "System.Diagnostics.Debug": "4.0.11",
  4945. "System.Globalization": "4.0.11",
  4946. "System.IO": "4.1.0",
  4947. "System.Resources.ResourceManager": "4.0.1",
  4948. "System.Runtime": "4.1.0",
  4949. "System.Runtime.Extensions": "4.1.0",
  4950. "System.Threading": "4.0.11",
  4951. "System.Xml.ReaderWriter": "4.0.11"
  4952. },
  4953. "compile": {
  4954. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  4955. },
  4956. "runtime": {
  4957. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  4958. }
  4959. },
  4960. "System.Xml.XPath.XmlDocument/4.0.1": {
  4961. "type": "package",
  4962. "dependencies": {
  4963. "System.Collections": "4.0.11",
  4964. "System.Globalization": "4.0.11",
  4965. "System.IO": "4.1.0",
  4966. "System.Resources.ResourceManager": "4.0.1",
  4967. "System.Runtime": "4.1.0",
  4968. "System.Runtime.Extensions": "4.1.0",
  4969. "System.Threading": "4.0.11",
  4970. "System.Xml.ReaderWriter": "4.0.11",
  4971. "System.Xml.XPath": "4.0.1",
  4972. "System.Xml.XmlDocument": "4.0.1"
  4973. },
  4974. "compile": {
  4975. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  4976. },
  4977. "runtime": {
  4978. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  4979. }
  4980. }
  4981. }
  4982. },
  4983. "libraries": {
  4984. "AutoMapper/10.1.1": {
  4985. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  4986. "type": "package",
  4987. "path": "automapper/10.1.1",
  4988. "files": [
  4989. ".nupkg.metadata",
  4990. ".signature.p7s",
  4991. "automapper.10.1.1.nupkg.sha512",
  4992. "automapper.nuspec",
  4993. "icon.png",
  4994. "lib/net461/AutoMapper.dll",
  4995. "lib/net461/AutoMapper.xml",
  4996. "lib/netstandard2.0/AutoMapper.dll",
  4997. "lib/netstandard2.0/AutoMapper.xml"
  4998. ]
  4999. },
  5000. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  5001. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  5002. "type": "package",
  5003. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  5008. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  5009. "icon.png",
  5010. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  5011. ]
  5012. },
  5013. "BouncyCastle.NetCore/1.8.3": {
  5014. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  5015. "type": "package",
  5016. "path": "bouncycastle.netcore/1.8.3",
  5017. "files": [
  5018. ".nupkg.metadata",
  5019. ".signature.p7s",
  5020. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  5021. "bouncycastle.netcore.nuspec",
  5022. "lib/Mono/BouncyCastle.Crypto.dll",
  5023. "lib/Mono/BouncyCastle.Crypto.xml",
  5024. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  5025. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  5026. "lib/MonoMac/BouncyCastle.Crypto.dll",
  5027. "lib/MonoMac/BouncyCastle.Crypto.xml",
  5028. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  5029. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  5030. "lib/net20/BouncyCastle.Crypto.dll",
  5031. "lib/net20/BouncyCastle.Crypto.xml",
  5032. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  5033. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  5034. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  5035. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  5036. "lib/xamarinios/BouncyCastle.Crypto.dll",
  5037. "lib/xamarinios/BouncyCastle.Crypto.xml"
  5038. ]
  5039. },
  5040. "Flurl/3.0.2": {
  5041. "sha512": "1/6mqdzGCTdAekbWkVZBTylCV+8g3JUSTXRBngRVR274S+RsAYNRF79GbDoDsPfMKu8VPc9HkQWdBEAncK1PQQ==",
  5042. "type": "package",
  5043. "path": "flurl/3.0.2",
  5044. "files": [
  5045. ".nupkg.metadata",
  5046. ".signature.p7s",
  5047. "flurl.3.0.2.nupkg.sha512",
  5048. "flurl.nuspec",
  5049. "icon.png",
  5050. "lib/net461/Flurl.dll",
  5051. "lib/net461/Flurl.pdb",
  5052. "lib/net461/Flurl.xml",
  5053. "lib/net472/Flurl.dll",
  5054. "lib/net472/Flurl.pdb",
  5055. "lib/net472/Flurl.xml",
  5056. "lib/netstandard2.0/Flurl.dll",
  5057. "lib/netstandard2.0/Flurl.pdb",
  5058. "lib/netstandard2.0/Flurl.xml"
  5059. ]
  5060. },
  5061. "Flurl.Http/3.2.0": {
  5062. "sha512": "5S8YiJm5CyRFO418GG9PDrsgmGEaZJtZLUqk3xqBKrfx7W9eKtOSpeji/GwAL+tSgNTALKBPvBKTaT4S83Oo+w==",
  5063. "type": "package",
  5064. "path": "flurl.http/3.2.0",
  5065. "files": [
  5066. ".nupkg.metadata",
  5067. ".signature.p7s",
  5068. "flurl.http.3.2.0.nupkg.sha512",
  5069. "flurl.http.nuspec",
  5070. "icon.png",
  5071. "lib/net461/Flurl.Http.dll",
  5072. "lib/net461/Flurl.Http.pdb",
  5073. "lib/net461/Flurl.xml",
  5074. "lib/net472/Flurl.Http.dll",
  5075. "lib/net472/Flurl.Http.pdb",
  5076. "lib/net472/Flurl.xml",
  5077. "lib/netstandard2.0/Flurl.Http.dll",
  5078. "lib/netstandard2.0/Flurl.Http.pdb",
  5079. "lib/netstandard2.0/Flurl.xml"
  5080. ]
  5081. },
  5082. "Google.Protobuf/3.11.4": {
  5083. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  5084. "type": "package",
  5085. "path": "google.protobuf/3.11.4",
  5086. "files": [
  5087. ".nupkg.metadata",
  5088. ".signature.p7s",
  5089. "google.protobuf.3.11.4.nupkg.sha512",
  5090. "google.protobuf.nuspec",
  5091. "lib/net45/Google.Protobuf.dll",
  5092. "lib/net45/Google.Protobuf.pdb",
  5093. "lib/net45/Google.Protobuf.xml",
  5094. "lib/netstandard1.0/Google.Protobuf.dll",
  5095. "lib/netstandard1.0/Google.Protobuf.pdb",
  5096. "lib/netstandard1.0/Google.Protobuf.xml",
  5097. "lib/netstandard2.0/Google.Protobuf.dll",
  5098. "lib/netstandard2.0/Google.Protobuf.pdb",
  5099. "lib/netstandard2.0/Google.Protobuf.xml"
  5100. ]
  5101. },
  5102. "K4os.Compression.LZ4/1.1.11": {
  5103. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  5104. "type": "package",
  5105. "path": "k4os.compression.lz4/1.1.11",
  5106. "files": [
  5107. ".nupkg.metadata",
  5108. ".signature.p7s",
  5109. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  5110. "k4os.compression.lz4.nuspec",
  5111. "lib/net45/K4os.Compression.LZ4.dll",
  5112. "lib/net45/K4os.Compression.LZ4.xml",
  5113. "lib/net46/K4os.Compression.LZ4.dll",
  5114. "lib/net46/K4os.Compression.LZ4.xml",
  5115. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  5116. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  5117. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  5118. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  5119. ]
  5120. },
  5121. "K4os.Compression.LZ4.Streams/1.1.11": {
  5122. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  5123. "type": "package",
  5124. "path": "k4os.compression.lz4.streams/1.1.11",
  5125. "files": [
  5126. ".nupkg.metadata",
  5127. ".signature.p7s",
  5128. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  5129. "k4os.compression.lz4.streams.nuspec",
  5130. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  5131. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  5132. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  5133. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  5134. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  5135. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  5136. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  5137. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  5138. ]
  5139. },
  5140. "K4os.Hash.xxHash/1.0.6": {
  5141. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  5142. "type": "package",
  5143. "path": "k4os.hash.xxhash/1.0.6",
  5144. "files": [
  5145. ".nupkg.metadata",
  5146. ".signature.p7s",
  5147. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  5148. "k4os.hash.xxhash.nuspec",
  5149. "lib/net45/K4os.Hash.xxHash.dll",
  5150. "lib/net45/K4os.Hash.xxHash.xml",
  5151. "lib/net46/K4os.Hash.xxHash.dll",
  5152. "lib/net46/K4os.Hash.xxHash.xml",
  5153. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  5154. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  5155. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  5156. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  5157. ]
  5158. },
  5159. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  5160. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  5161. "type": "package",
  5162. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "LICENSE.TXT",
  5167. "THIRD-PARTY-NOTICES.TXT",
  5168. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  5169. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  5170. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  5171. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  5172. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  5173. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  5174. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  5175. "microsoft.bcl.asyncinterfaces.nuspec",
  5176. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  5177. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  5178. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  5179. "useSharedDesignerContext.txt",
  5180. "version.txt"
  5181. ]
  5182. },
  5183. "Microsoft.Bcl.HashCode/1.1.0": {
  5184. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  5185. "type": "package",
  5186. "path": "microsoft.bcl.hashcode/1.1.0",
  5187. "files": [
  5188. ".nupkg.metadata",
  5189. ".signature.p7s",
  5190. "LICENSE.TXT",
  5191. "THIRD-PARTY-NOTICES.TXT",
  5192. "lib/net461/Microsoft.Bcl.HashCode.dll",
  5193. "lib/net461/Microsoft.Bcl.HashCode.xml",
  5194. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  5195. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  5196. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  5197. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  5198. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  5199. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  5200. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  5201. "microsoft.bcl.hashcode.nuspec",
  5202. "ref/net461/Microsoft.Bcl.HashCode.dll",
  5203. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  5204. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  5205. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  5206. "useSharedDesignerContext.txt",
  5207. "version.txt"
  5208. ]
  5209. },
  5210. "Microsoft.CSharp/4.7.0": {
  5211. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  5212. "type": "package",
  5213. "path": "microsoft.csharp/4.7.0",
  5214. "files": [
  5215. ".nupkg.metadata",
  5216. ".signature.p7s",
  5217. "LICENSE.TXT",
  5218. "THIRD-PARTY-NOTICES.TXT",
  5219. "lib/MonoAndroid10/_._",
  5220. "lib/MonoTouch10/_._",
  5221. "lib/net45/_._",
  5222. "lib/netcore50/Microsoft.CSharp.dll",
  5223. "lib/netcoreapp2.0/_._",
  5224. "lib/netstandard1.3/Microsoft.CSharp.dll",
  5225. "lib/netstandard2.0/Microsoft.CSharp.dll",
  5226. "lib/netstandard2.0/Microsoft.CSharp.xml",
  5227. "lib/portable-net45+win8+wp8+wpa81/_._",
  5228. "lib/uap10.0.16299/_._",
  5229. "lib/win8/_._",
  5230. "lib/wp80/_._",
  5231. "lib/wpa81/_._",
  5232. "lib/xamarinios10/_._",
  5233. "lib/xamarinmac20/_._",
  5234. "lib/xamarintvos10/_._",
  5235. "lib/xamarinwatchos10/_._",
  5236. "microsoft.csharp.4.7.0.nupkg.sha512",
  5237. "microsoft.csharp.nuspec",
  5238. "ref/MonoAndroid10/_._",
  5239. "ref/MonoTouch10/_._",
  5240. "ref/net45/_._",
  5241. "ref/netcore50/Microsoft.CSharp.dll",
  5242. "ref/netcore50/Microsoft.CSharp.xml",
  5243. "ref/netcore50/de/Microsoft.CSharp.xml",
  5244. "ref/netcore50/es/Microsoft.CSharp.xml",
  5245. "ref/netcore50/fr/Microsoft.CSharp.xml",
  5246. "ref/netcore50/it/Microsoft.CSharp.xml",
  5247. "ref/netcore50/ja/Microsoft.CSharp.xml",
  5248. "ref/netcore50/ko/Microsoft.CSharp.xml",
  5249. "ref/netcore50/ru/Microsoft.CSharp.xml",
  5250. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  5251. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  5252. "ref/netcoreapp2.0/_._",
  5253. "ref/netstandard1.0/Microsoft.CSharp.dll",
  5254. "ref/netstandard1.0/Microsoft.CSharp.xml",
  5255. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  5256. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  5257. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  5258. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  5259. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  5260. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  5261. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  5262. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  5263. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  5264. "ref/netstandard2.0/Microsoft.CSharp.dll",
  5265. "ref/netstandard2.0/Microsoft.CSharp.xml",
  5266. "ref/portable-net45+win8+wp8+wpa81/_._",
  5267. "ref/uap10.0.16299/_._",
  5268. "ref/win8/_._",
  5269. "ref/wp80/_._",
  5270. "ref/wpa81/_._",
  5271. "ref/xamarinios10/_._",
  5272. "ref/xamarinmac20/_._",
  5273. "ref/xamarintvos10/_._",
  5274. "ref/xamarinwatchos10/_._",
  5275. "useSharedDesignerContext.txt",
  5276. "version.txt"
  5277. ]
  5278. },
  5279. "Microsoft.EntityFrameworkCore/3.1.1": {
  5280. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  5281. "type": "package",
  5282. "path": "microsoft.entityframeworkcore/3.1.1",
  5283. "files": [
  5284. ".nupkg.metadata",
  5285. ".signature.p7s",
  5286. "Icon.png",
  5287. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  5288. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  5289. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  5290. "microsoft.entityframeworkcore.nuspec"
  5291. ]
  5292. },
  5293. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  5294. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  5295. "type": "package",
  5296. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "Icon.png",
  5301. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5302. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5303. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  5304. "microsoft.entityframeworkcore.abstractions.nuspec"
  5305. ]
  5306. },
  5307. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  5308. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  5309. "type": "package",
  5310. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "Icon.png",
  5315. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5316. "lib/netstandard2.0/_._",
  5317. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  5318. "microsoft.entityframeworkcore.analyzers.nuspec"
  5319. ]
  5320. },
  5321. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  5322. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  5323. "type": "package",
  5324. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  5325. "files": [
  5326. ".nupkg.metadata",
  5327. ".signature.p7s",
  5328. "Icon.png",
  5329. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5330. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5331. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  5332. "microsoft.entityframeworkcore.relational.nuspec"
  5333. ]
  5334. },
  5335. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  5336. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  5337. "type": "package",
  5338. "path": "microsoft.extensions.apidescription.server/3.0.0",
  5339. "hasTools": true,
  5340. "files": [
  5341. ".nupkg.metadata",
  5342. ".signature.p7s",
  5343. "build/Microsoft.Extensions.ApiDescription.Server.props",
  5344. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  5345. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  5346. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  5347. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  5348. "microsoft.extensions.apidescription.server.nuspec",
  5349. "tools/Newtonsoft.Json.dll",
  5350. "tools/dotnet-getdocument.deps.json",
  5351. "tools/dotnet-getdocument.dll",
  5352. "tools/dotnet-getdocument.runtimeconfig.json",
  5353. "tools/net461-x86/GetDocument.Insider.exe",
  5354. "tools/net461-x86/GetDocument.Insider.exe.config",
  5355. "tools/net461/GetDocument.Insider.exe",
  5356. "tools/net461/GetDocument.Insider.exe.config",
  5357. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  5358. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  5359. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  5360. ]
  5361. },
  5362. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  5363. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  5364. "type": "package",
  5365. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  5366. "files": [
  5367. ".nupkg.metadata",
  5368. ".signature.p7s",
  5369. "Icon.png",
  5370. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  5371. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  5372. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5373. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5374. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  5375. "microsoft.extensions.caching.abstractions.nuspec"
  5376. ]
  5377. },
  5378. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  5379. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  5380. "type": "package",
  5381. "path": "microsoft.extensions.caching.memory/3.1.1",
  5382. "files": [
  5383. ".nupkg.metadata",
  5384. ".signature.p7s",
  5385. "Icon.png",
  5386. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  5387. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  5388. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5389. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5390. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  5391. "microsoft.extensions.caching.memory.nuspec"
  5392. ]
  5393. },
  5394. "Microsoft.Extensions.Configuration/5.0.0": {
  5395. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  5396. "type": "package",
  5397. "path": "microsoft.extensions.configuration/5.0.0",
  5398. "files": [
  5399. ".nupkg.metadata",
  5400. ".signature.p7s",
  5401. "Icon.png",
  5402. "LICENSE.TXT",
  5403. "THIRD-PARTY-NOTICES.TXT",
  5404. "lib/net461/Microsoft.Extensions.Configuration.dll",
  5405. "lib/net461/Microsoft.Extensions.Configuration.xml",
  5406. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  5407. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  5408. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  5409. "microsoft.extensions.configuration.nuspec",
  5410. "useSharedDesignerContext.txt",
  5411. "version.txt"
  5412. ]
  5413. },
  5414. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  5415. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  5416. "type": "package",
  5417. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  5418. "files": [
  5419. ".nupkg.metadata",
  5420. ".signature.p7s",
  5421. "Icon.png",
  5422. "LICENSE.TXT",
  5423. "THIRD-PARTY-NOTICES.TXT",
  5424. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  5425. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  5426. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5427. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5428. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  5429. "microsoft.extensions.configuration.abstractions.nuspec",
  5430. "useSharedDesignerContext.txt",
  5431. "version.txt"
  5432. ]
  5433. },
  5434. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  5435. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  5436. "type": "package",
  5437. "path": "microsoft.extensions.configuration.binder/5.0.0",
  5438. "files": [
  5439. ".nupkg.metadata",
  5440. ".signature.p7s",
  5441. "Icon.png",
  5442. "LICENSE.TXT",
  5443. "THIRD-PARTY-NOTICES.TXT",
  5444. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  5445. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  5446. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  5447. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  5448. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  5449. "microsoft.extensions.configuration.binder.nuspec",
  5450. "useSharedDesignerContext.txt",
  5451. "version.txt"
  5452. ]
  5453. },
  5454. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  5455. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  5456. "type": "package",
  5457. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  5458. "files": [
  5459. ".nupkg.metadata",
  5460. ".signature.p7s",
  5461. "Icon.png",
  5462. "LICENSE.TXT",
  5463. "THIRD-PARTY-NOTICES.TXT",
  5464. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  5465. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  5466. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  5467. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  5468. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  5469. "microsoft.extensions.configuration.commandline.nuspec",
  5470. "useSharedDesignerContext.txt",
  5471. "version.txt"
  5472. ]
  5473. },
  5474. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  5475. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  5476. "type": "package",
  5477. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "Icon.png",
  5482. "LICENSE.TXT",
  5483. "THIRD-PARTY-NOTICES.TXT",
  5484. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5485. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5486. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5487. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5488. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  5489. "microsoft.extensions.configuration.environmentvariables.nuspec",
  5490. "useSharedDesignerContext.txt",
  5491. "version.txt"
  5492. ]
  5493. },
  5494. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  5495. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  5496. "type": "package",
  5497. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  5498. "files": [
  5499. ".nupkg.metadata",
  5500. ".signature.p7s",
  5501. "Icon.png",
  5502. "LICENSE.TXT",
  5503. "THIRD-PARTY-NOTICES.TXT",
  5504. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5505. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5506. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5507. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5508. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  5509. "microsoft.extensions.configuration.fileextensions.nuspec",
  5510. "useSharedDesignerContext.txt",
  5511. "version.txt"
  5512. ]
  5513. },
  5514. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  5515. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  5516. "type": "package",
  5517. "path": "microsoft.extensions.configuration.json/5.0.0",
  5518. "files": [
  5519. ".nupkg.metadata",
  5520. ".signature.p7s",
  5521. "Icon.png",
  5522. "LICENSE.TXT",
  5523. "THIRD-PARTY-NOTICES.TXT",
  5524. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  5525. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  5526. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  5527. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  5528. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  5529. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  5530. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  5531. "microsoft.extensions.configuration.json.nuspec",
  5532. "useSharedDesignerContext.txt",
  5533. "version.txt"
  5534. ]
  5535. },
  5536. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  5537. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  5538. "type": "package",
  5539. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  5540. "files": [
  5541. ".nupkg.metadata",
  5542. ".signature.p7s",
  5543. "Icon.png",
  5544. "LICENSE.TXT",
  5545. "THIRD-PARTY-NOTICES.TXT",
  5546. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  5547. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  5548. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5549. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5550. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5551. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5552. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  5553. "microsoft.extensions.configuration.usersecrets.nuspec",
  5554. "useSharedDesignerContext.txt",
  5555. "version.txt"
  5556. ]
  5557. },
  5558. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  5559. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  5560. "type": "package",
  5561. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  5562. "files": [
  5563. ".nupkg.metadata",
  5564. ".signature.p7s",
  5565. "Icon.png",
  5566. "LICENSE.TXT",
  5567. "THIRD-PARTY-NOTICES.TXT",
  5568. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  5569. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  5570. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  5571. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  5572. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5573. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5574. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5575. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5576. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  5577. "microsoft.extensions.dependencyinjection.nuspec",
  5578. "useSharedDesignerContext.txt",
  5579. "version.txt"
  5580. ]
  5581. },
  5582. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  5583. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  5584. "type": "package",
  5585. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  5586. "files": [
  5587. ".nupkg.metadata",
  5588. ".signature.p7s",
  5589. "Icon.png",
  5590. "LICENSE.TXT",
  5591. "THIRD-PARTY-NOTICES.TXT",
  5592. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5593. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5594. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5595. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5596. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  5597. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5598. "useSharedDesignerContext.txt",
  5599. "version.txt"
  5600. ]
  5601. },
  5602. "Microsoft.Extensions.DependencyModel/3.1.6": {
  5603. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  5604. "type": "package",
  5605. "path": "microsoft.extensions.dependencymodel/3.1.6",
  5606. "files": [
  5607. ".nupkg.metadata",
  5608. ".signature.p7s",
  5609. "Icon.png",
  5610. "LICENSE.TXT",
  5611. "THIRD-PARTY-NOTICES.TXT",
  5612. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  5613. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  5614. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  5615. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  5616. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  5617. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  5618. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5619. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5620. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  5621. "microsoft.extensions.dependencymodel.nuspec"
  5622. ]
  5623. },
  5624. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  5625. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  5626. "type": "package",
  5627. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "Icon.png",
  5632. "LICENSE.TXT",
  5633. "THIRD-PARTY-NOTICES.TXT",
  5634. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5635. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5636. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5637. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5638. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  5639. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5640. "useSharedDesignerContext.txt",
  5641. "version.txt"
  5642. ]
  5643. },
  5644. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  5645. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  5646. "type": "package",
  5647. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  5648. "files": [
  5649. ".nupkg.metadata",
  5650. ".signature.p7s",
  5651. "Icon.png",
  5652. "LICENSE.TXT",
  5653. "THIRD-PARTY-NOTICES.TXT",
  5654. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5655. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5656. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5657. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5658. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  5659. "microsoft.extensions.fileproviders.physical.nuspec",
  5660. "useSharedDesignerContext.txt",
  5661. "version.txt"
  5662. ]
  5663. },
  5664. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  5665. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  5666. "type": "package",
  5667. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  5668. "files": [
  5669. ".nupkg.metadata",
  5670. ".signature.p7s",
  5671. "Icon.png",
  5672. "LICENSE.TXT",
  5673. "THIRD-PARTY-NOTICES.TXT",
  5674. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5675. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5676. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5677. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5678. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  5679. "microsoft.extensions.filesystemglobbing.nuspec",
  5680. "useSharedDesignerContext.txt",
  5681. "version.txt"
  5682. ]
  5683. },
  5684. "Microsoft.Extensions.Hosting/5.0.0": {
  5685. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  5686. "type": "package",
  5687. "path": "microsoft.extensions.hosting/5.0.0",
  5688. "files": [
  5689. ".nupkg.metadata",
  5690. ".signature.p7s",
  5691. "Icon.png",
  5692. "LICENSE.TXT",
  5693. "THIRD-PARTY-NOTICES.TXT",
  5694. "lib/net461/Microsoft.Extensions.Hosting.dll",
  5695. "lib/net461/Microsoft.Extensions.Hosting.xml",
  5696. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  5697. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  5698. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  5699. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  5700. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  5701. "microsoft.extensions.hosting.nuspec",
  5702. "useSharedDesignerContext.txt",
  5703. "version.txt"
  5704. ]
  5705. },
  5706. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  5707. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  5708. "type": "package",
  5709. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  5710. "files": [
  5711. ".nupkg.metadata",
  5712. ".signature.p7s",
  5713. "Icon.png",
  5714. "LICENSE.TXT",
  5715. "THIRD-PARTY-NOTICES.TXT",
  5716. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  5717. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  5718. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5719. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5720. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5721. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5722. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  5723. "microsoft.extensions.hosting.abstractions.nuspec",
  5724. "useSharedDesignerContext.txt",
  5725. "version.txt"
  5726. ]
  5727. },
  5728. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  5729. "sha512": "xtIf7KkcLMvYoxoW8pokCgIMXeYYGBbrJmuABgQaOc0sylYmSicfdq1Ua/9cRhcTRzWKLWXJRVADDR00ID+GYw==",
  5730. "type": "package",
  5731. "path": "microsoft.extensions.hosting.windowsservices/5.0.1",
  5732. "files": [
  5733. ".nupkg.metadata",
  5734. ".signature.p7s",
  5735. "Icon.png",
  5736. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  5737. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  5738. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  5739. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  5740. "microsoft.extensions.hosting.windowsservices.5.0.1.nupkg.sha512",
  5741. "microsoft.extensions.hosting.windowsservices.nuspec"
  5742. ]
  5743. },
  5744. "Microsoft.Extensions.Logging/5.0.0": {
  5745. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  5746. "type": "package",
  5747. "path": "microsoft.extensions.logging/5.0.0",
  5748. "files": [
  5749. ".nupkg.metadata",
  5750. ".signature.p7s",
  5751. "Icon.png",
  5752. "LICENSE.TXT",
  5753. "THIRD-PARTY-NOTICES.TXT",
  5754. "lib/net461/Microsoft.Extensions.Logging.dll",
  5755. "lib/net461/Microsoft.Extensions.Logging.xml",
  5756. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5757. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5758. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5759. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5760. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  5761. "microsoft.extensions.logging.nuspec",
  5762. "useSharedDesignerContext.txt",
  5763. "version.txt"
  5764. ]
  5765. },
  5766. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  5767. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  5768. "type": "package",
  5769. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  5770. "files": [
  5771. ".nupkg.metadata",
  5772. ".signature.p7s",
  5773. "Icon.png",
  5774. "LICENSE.TXT",
  5775. "THIRD-PARTY-NOTICES.TXT",
  5776. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5777. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5778. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5779. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5780. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  5781. "microsoft.extensions.logging.abstractions.nuspec",
  5782. "useSharedDesignerContext.txt",
  5783. "version.txt"
  5784. ]
  5785. },
  5786. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  5787. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  5788. "type": "package",
  5789. "path": "microsoft.extensions.logging.configuration/5.0.0",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "Icon.png",
  5794. "LICENSE.TXT",
  5795. "THIRD-PARTY-NOTICES.TXT",
  5796. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  5797. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  5798. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  5799. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  5800. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  5801. "microsoft.extensions.logging.configuration.nuspec",
  5802. "useSharedDesignerContext.txt",
  5803. "version.txt"
  5804. ]
  5805. },
  5806. "Microsoft.Extensions.Logging.Console/5.0.0": {
  5807. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  5808. "type": "package",
  5809. "path": "microsoft.extensions.logging.console/5.0.0",
  5810. "files": [
  5811. ".nupkg.metadata",
  5812. ".signature.p7s",
  5813. "Icon.png",
  5814. "LICENSE.TXT",
  5815. "THIRD-PARTY-NOTICES.TXT",
  5816. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  5817. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  5818. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  5819. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  5820. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  5821. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  5822. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  5823. "microsoft.extensions.logging.console.nuspec",
  5824. "useSharedDesignerContext.txt",
  5825. "version.txt"
  5826. ]
  5827. },
  5828. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  5829. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  5830. "type": "package",
  5831. "path": "microsoft.extensions.logging.debug/5.0.0",
  5832. "files": [
  5833. ".nupkg.metadata",
  5834. ".signature.p7s",
  5835. "Icon.png",
  5836. "LICENSE.TXT",
  5837. "THIRD-PARTY-NOTICES.TXT",
  5838. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  5839. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  5840. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  5841. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  5842. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  5843. "microsoft.extensions.logging.debug.nuspec",
  5844. "useSharedDesignerContext.txt",
  5845. "version.txt"
  5846. ]
  5847. },
  5848. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  5849. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  5850. "type": "package",
  5851. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  5852. "files": [
  5853. ".nupkg.metadata",
  5854. ".signature.p7s",
  5855. "Icon.png",
  5856. "LICENSE.TXT",
  5857. "THIRD-PARTY-NOTICES.TXT",
  5858. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  5859. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  5860. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  5861. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  5862. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  5863. "microsoft.extensions.logging.eventlog.nuspec",
  5864. "useSharedDesignerContext.txt",
  5865. "version.txt"
  5866. ]
  5867. },
  5868. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  5869. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  5870. "type": "package",
  5871. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  5872. "files": [
  5873. ".nupkg.metadata",
  5874. ".signature.p7s",
  5875. "Icon.png",
  5876. "LICENSE.TXT",
  5877. "THIRD-PARTY-NOTICES.TXT",
  5878. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  5879. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  5880. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  5881. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  5882. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  5883. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  5884. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  5885. "microsoft.extensions.logging.eventsource.nuspec",
  5886. "useSharedDesignerContext.txt",
  5887. "version.txt"
  5888. ]
  5889. },
  5890. "Microsoft.Extensions.Options/5.0.0": {
  5891. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  5892. "type": "package",
  5893. "path": "microsoft.extensions.options/5.0.0",
  5894. "files": [
  5895. ".nupkg.metadata",
  5896. ".signature.p7s",
  5897. "Icon.png",
  5898. "LICENSE.TXT",
  5899. "THIRD-PARTY-NOTICES.TXT",
  5900. "lib/net461/Microsoft.Extensions.Options.dll",
  5901. "lib/net461/Microsoft.Extensions.Options.xml",
  5902. "lib/net5.0/Microsoft.Extensions.Options.dll",
  5903. "lib/net5.0/Microsoft.Extensions.Options.xml",
  5904. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5905. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5906. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  5907. "microsoft.extensions.options.nuspec",
  5908. "useSharedDesignerContext.txt",
  5909. "version.txt"
  5910. ]
  5911. },
  5912. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  5913. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  5914. "type": "package",
  5915. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  5916. "files": [
  5917. ".nupkg.metadata",
  5918. ".signature.p7s",
  5919. "Icon.png",
  5920. "LICENSE.TXT",
  5921. "THIRD-PARTY-NOTICES.TXT",
  5922. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5923. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5924. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5925. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5926. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  5927. "microsoft.extensions.options.configurationextensions.nuspec",
  5928. "useSharedDesignerContext.txt",
  5929. "version.txt"
  5930. ]
  5931. },
  5932. "Microsoft.Extensions.Primitives/5.0.0": {
  5933. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  5934. "type": "package",
  5935. "path": "microsoft.extensions.primitives/5.0.0",
  5936. "files": [
  5937. ".nupkg.metadata",
  5938. ".signature.p7s",
  5939. "Icon.png",
  5940. "LICENSE.TXT",
  5941. "THIRD-PARTY-NOTICES.TXT",
  5942. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5943. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5944. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5945. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5946. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5947. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5948. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  5949. "microsoft.extensions.primitives.nuspec",
  5950. "useSharedDesignerContext.txt",
  5951. "version.txt"
  5952. ]
  5953. },
  5954. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  5955. "sha512": "qSLfRLk19E1+Gt2gdPzp5Y4YAlXi1KueXpMJpt0qug6h4PtxbnGnxFBM6bdCIJqoN75LTPztqKdpjla2NIltmA==",
  5956. "type": "package",
  5957. "path": "microsoft.identitymodel.jsonwebtokens/6.11.0",
  5958. "files": [
  5959. ".nupkg.metadata",
  5960. ".signature.p7s",
  5961. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5962. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5963. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5964. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5965. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  5966. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  5967. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5968. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5969. "microsoft.identitymodel.jsonwebtokens.6.11.0.nupkg.sha512",
  5970. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5971. ]
  5972. },
  5973. "Microsoft.IdentityModel.Logging/6.11.0": {
  5974. "sha512": "81votFg2SzidAB8frGlDV+jCCzfBWWtnKASZTddAziHuB8fT/82s1x7Kty+u01XKtKcrPdfpvbWrIUHdc/C9pw==",
  5975. "type": "package",
  5976. "path": "microsoft.identitymodel.logging/6.11.0",
  5977. "files": [
  5978. ".nupkg.metadata",
  5979. ".signature.p7s",
  5980. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5981. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5982. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5983. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5984. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  5985. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  5986. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5987. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5988. "microsoft.identitymodel.logging.6.11.0.nupkg.sha512",
  5989. "microsoft.identitymodel.logging.nuspec"
  5990. ]
  5991. },
  5992. "Microsoft.IdentityModel.Tokens/6.11.0": {
  5993. "sha512": "zm0aBLKCDybRQwOinG0cDXobjfcJgXIcJfB5n7gA8KHjswELcET8BiNx54j6n4VF8w6+UxUIdEtO3RMIXQZkfg==",
  5994. "type": "package",
  5995. "path": "microsoft.identitymodel.tokens/6.11.0",
  5996. "files": [
  5997. ".nupkg.metadata",
  5998. ".signature.p7s",
  5999. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  6000. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  6001. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  6002. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  6003. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  6004. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  6005. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  6006. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  6007. "microsoft.identitymodel.tokens.6.11.0.nupkg.sha512",
  6008. "microsoft.identitymodel.tokens.nuspec"
  6009. ]
  6010. },
  6011. "Microsoft.NETCore.Platforms/5.0.0": {
  6012. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  6013. "type": "package",
  6014. "path": "microsoft.netcore.platforms/5.0.0",
  6015. "files": [
  6016. ".nupkg.metadata",
  6017. ".signature.p7s",
  6018. "Icon.png",
  6019. "LICENSE.TXT",
  6020. "THIRD-PARTY-NOTICES.TXT",
  6021. "lib/netstandard1.0/_._",
  6022. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  6023. "microsoft.netcore.platforms.nuspec",
  6024. "runtime.json",
  6025. "useSharedDesignerContext.txt",
  6026. "version.txt"
  6027. ]
  6028. },
  6029. "Microsoft.NETCore.Targets/1.1.0": {
  6030. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  6031. "type": "package",
  6032. "path": "microsoft.netcore.targets/1.1.0",
  6033. "files": [
  6034. ".nupkg.metadata",
  6035. ".signature.p7s",
  6036. "ThirdPartyNotices.txt",
  6037. "dotnet_library_license.txt",
  6038. "lib/netstandard1.0/_._",
  6039. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  6040. "microsoft.netcore.targets.nuspec",
  6041. "runtime.json"
  6042. ]
  6043. },
  6044. "Microsoft.OpenApi/1.2.3": {
  6045. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  6046. "type": "package",
  6047. "path": "microsoft.openapi/1.2.3",
  6048. "files": [
  6049. ".nupkg.metadata",
  6050. ".signature.p7s",
  6051. "lib/net46/Microsoft.OpenApi.dll",
  6052. "lib/net46/Microsoft.OpenApi.pdb",
  6053. "lib/net46/Microsoft.OpenApi.xml",
  6054. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  6055. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  6056. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  6057. "microsoft.openapi.1.2.3.nupkg.sha512",
  6058. "microsoft.openapi.nuspec"
  6059. ]
  6060. },
  6061. "Microsoft.Win32.Primitives/4.0.1": {
  6062. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  6063. "type": "package",
  6064. "path": "microsoft.win32.primitives/4.0.1",
  6065. "files": [
  6066. ".nupkg.metadata",
  6067. ".signature.p7s",
  6068. "ThirdPartyNotices.txt",
  6069. "dotnet_library_license.txt",
  6070. "lib/MonoAndroid10/_._",
  6071. "lib/MonoTouch10/_._",
  6072. "lib/net46/Microsoft.Win32.Primitives.dll",
  6073. "lib/xamarinios10/_._",
  6074. "lib/xamarinmac20/_._",
  6075. "lib/xamarintvos10/_._",
  6076. "lib/xamarinwatchos10/_._",
  6077. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  6078. "microsoft.win32.primitives.nuspec",
  6079. "ref/MonoAndroid10/_._",
  6080. "ref/MonoTouch10/_._",
  6081. "ref/net46/Microsoft.Win32.Primitives.dll",
  6082. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  6083. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  6084. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  6085. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  6086. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  6087. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  6088. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  6089. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  6090. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  6091. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  6092. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  6093. "ref/xamarinios10/_._",
  6094. "ref/xamarinmac20/_._",
  6095. "ref/xamarintvos10/_._",
  6096. "ref/xamarinwatchos10/_._"
  6097. ]
  6098. },
  6099. "Microsoft.Win32.Primitives/4.3.0": {
  6100. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  6101. "type": "package",
  6102. "path": "microsoft.win32.primitives/4.3.0",
  6103. "files": [
  6104. ".nupkg.metadata",
  6105. ".signature.p7s",
  6106. "ThirdPartyNotices.txt",
  6107. "dotnet_library_license.txt",
  6108. "lib/MonoAndroid10/_._",
  6109. "lib/MonoTouch10/_._",
  6110. "lib/net46/Microsoft.Win32.Primitives.dll",
  6111. "lib/xamarinios10/_._",
  6112. "lib/xamarinmac20/_._",
  6113. "lib/xamarintvos10/_._",
  6114. "lib/xamarinwatchos10/_._",
  6115. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  6116. "microsoft.win32.primitives.nuspec",
  6117. "ref/MonoAndroid10/_._",
  6118. "ref/MonoTouch10/_._",
  6119. "ref/net46/Microsoft.Win32.Primitives.dll",
  6120. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  6121. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  6122. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  6123. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  6124. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  6125. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  6126. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  6127. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  6128. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  6129. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  6130. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  6131. "ref/xamarinios10/_._",
  6132. "ref/xamarinmac20/_._",
  6133. "ref/xamarintvos10/_._",
  6134. "ref/xamarinwatchos10/_._"
  6135. ]
  6136. },
  6137. "Microsoft.Win32.Registry/5.0.0": {
  6138. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  6139. "type": "package",
  6140. "path": "microsoft.win32.registry/5.0.0",
  6141. "files": [
  6142. ".nupkg.metadata",
  6143. ".signature.p7s",
  6144. "Icon.png",
  6145. "LICENSE.TXT",
  6146. "THIRD-PARTY-NOTICES.TXT",
  6147. "lib/net46/Microsoft.Win32.Registry.dll",
  6148. "lib/net461/Microsoft.Win32.Registry.dll",
  6149. "lib/net461/Microsoft.Win32.Registry.xml",
  6150. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6151. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6152. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6153. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  6154. "microsoft.win32.registry.nuspec",
  6155. "ref/net46/Microsoft.Win32.Registry.dll",
  6156. "ref/net461/Microsoft.Win32.Registry.dll",
  6157. "ref/net461/Microsoft.Win32.Registry.xml",
  6158. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  6159. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  6160. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  6161. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  6162. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  6163. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  6164. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  6165. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  6166. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  6167. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  6168. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  6169. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  6170. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  6171. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  6172. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  6173. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  6174. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6175. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6176. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6177. "useSharedDesignerContext.txt",
  6178. "version.txt"
  6179. ]
  6180. },
  6181. "Microsoft.Win32.SystemEvents/5.0.0": {
  6182. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  6183. "type": "package",
  6184. "path": "microsoft.win32.systemevents/5.0.0",
  6185. "files": [
  6186. ".nupkg.metadata",
  6187. ".signature.p7s",
  6188. "Icon.png",
  6189. "LICENSE.TXT",
  6190. "THIRD-PARTY-NOTICES.TXT",
  6191. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  6192. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  6193. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6194. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6195. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  6196. "microsoft.win32.systemevents.nuspec",
  6197. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  6198. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  6199. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6200. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6201. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  6202. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  6203. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  6204. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  6205. "useSharedDesignerContext.txt",
  6206. "version.txt"
  6207. ]
  6208. },
  6209. "MySql.Data/8.0.22": {
  6210. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  6211. "type": "package",
  6212. "path": "mysql.data/8.0.22",
  6213. "files": [
  6214. ".nupkg.metadata",
  6215. ".signature.p7s",
  6216. "lib/net452/MySql.Data.dll",
  6217. "lib/net452/MySql.Data.xml",
  6218. "lib/net452/Ubiety.Dns.Core.dll",
  6219. "lib/net452/Zstandard.Net.dll",
  6220. "lib/net48/MySql.Data.dll",
  6221. "lib/net48/MySql.Data.xml",
  6222. "lib/net48/Ubiety.Dns.Core.dll",
  6223. "lib/net48/Zstandard.Net.dll",
  6224. "lib/net5.0/MySql.Data.dll",
  6225. "lib/net5.0/MySql.Data.xml",
  6226. "lib/net5.0/Ubiety.Dns.Core.dll",
  6227. "lib/net5.0/Zstandard.Net.dll",
  6228. "lib/netstandard2.0/MySql.Data.dll",
  6229. "lib/netstandard2.0/MySql.Data.xml",
  6230. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  6231. "lib/netstandard2.0/Zstandard.Net.dll",
  6232. "lib/netstandard2.1/MySql.Data.dll",
  6233. "lib/netstandard2.1/MySql.Data.xml",
  6234. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  6235. "lib/netstandard2.1/Zstandard.Net.dll",
  6236. "mysql.data.8.0.22.nupkg.sha512",
  6237. "mysql.data.nuspec"
  6238. ]
  6239. },
  6240. "MySql.Data.EntityFrameworkCore/8.0.22": {
  6241. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  6242. "type": "package",
  6243. "path": "mysql.data.entityframeworkcore/8.0.22",
  6244. "files": [
  6245. ".nupkg.metadata",
  6246. ".signature.p7s",
  6247. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  6248. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  6249. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  6250. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  6251. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  6252. "mysql.data.entityframeworkcore.nuspec"
  6253. ]
  6254. },
  6255. "NETStandard.Library/1.6.0": {
  6256. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  6257. "type": "package",
  6258. "path": "netstandard.library/1.6.0",
  6259. "files": [
  6260. ".nupkg.metadata",
  6261. "ThirdPartyNotices.txt",
  6262. "dotnet_library_license.txt",
  6263. "netstandard.library.1.6.0.nupkg.sha512",
  6264. "netstandard.library.nuspec"
  6265. ]
  6266. },
  6267. "Newtonsoft.Json/13.0.1": {
  6268. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  6269. "type": "package",
  6270. "path": "newtonsoft.json/13.0.1",
  6271. "files": [
  6272. ".nupkg.metadata",
  6273. ".signature.p7s",
  6274. "LICENSE.md",
  6275. "lib/net20/Newtonsoft.Json.dll",
  6276. "lib/net20/Newtonsoft.Json.xml",
  6277. "lib/net35/Newtonsoft.Json.dll",
  6278. "lib/net35/Newtonsoft.Json.xml",
  6279. "lib/net40/Newtonsoft.Json.dll",
  6280. "lib/net40/Newtonsoft.Json.xml",
  6281. "lib/net45/Newtonsoft.Json.dll",
  6282. "lib/net45/Newtonsoft.Json.xml",
  6283. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6284. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6285. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6286. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6287. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6288. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6289. "newtonsoft.json.13.0.1.nupkg.sha512",
  6290. "newtonsoft.json.nuspec",
  6291. "packageIcon.png"
  6292. ]
  6293. },
  6294. "NLog/4.7.9": {
  6295. "sha512": "Y0dKY5d506ZVcb8dTMp3BSb+jUGaFu/ArvRkgn4daDWKf7qqFXjEFYjqoyTrWkcNguqS6avkwICS0hsFsr4BzA==",
  6296. "type": "package",
  6297. "path": "nlog/4.7.9",
  6298. "files": [
  6299. ".nupkg.metadata",
  6300. ".signature.p7s",
  6301. "lib/monoandroid44/NLog.dll",
  6302. "lib/monoandroid44/NLog.xml",
  6303. "lib/net35/NLog.dll",
  6304. "lib/net35/NLog.xml",
  6305. "lib/net40-client/NLog.dll",
  6306. "lib/net40-client/NLog.xml",
  6307. "lib/net45/NLog.dll",
  6308. "lib/net45/NLog.xml",
  6309. "lib/netstandard1.3/NLog.dll",
  6310. "lib/netstandard1.3/NLog.xml",
  6311. "lib/netstandard1.5/NLog.dll",
  6312. "lib/netstandard1.5/NLog.xml",
  6313. "lib/netstandard2.0/NLog.dll",
  6314. "lib/netstandard2.0/NLog.xml",
  6315. "lib/sl4/NLog.dll",
  6316. "lib/sl4/NLog.xml",
  6317. "lib/sl5/NLog.dll",
  6318. "lib/sl5/NLog.xml",
  6319. "lib/wp8/NLog.dll",
  6320. "lib/wp8/NLog.xml",
  6321. "lib/xamarinios10/NLog.dll",
  6322. "lib/xamarinios10/NLog.xml",
  6323. "nlog.4.7.9.nupkg.sha512",
  6324. "nlog.nuspec"
  6325. ]
  6326. },
  6327. "NLog.Extensions.Logging/1.7.2": {
  6328. "sha512": "0y1QziAUCdePQc4itPOQF3xDcs0iE9NHlIK0hE0eA0+Ef6E9dnJDPveNu7w2ckYaDfJIFHpOoLK8sZmNEyiBCw==",
  6329. "type": "package",
  6330. "path": "nlog.extensions.logging/1.7.2",
  6331. "files": [
  6332. ".nupkg.metadata",
  6333. ".signature.p7s",
  6334. "N.png",
  6335. "lib/net451/NLog.Extensions.Logging.dll",
  6336. "lib/net451/NLog.Extensions.Logging.xml",
  6337. "lib/net461/NLog.Extensions.Logging.dll",
  6338. "lib/net461/NLog.Extensions.Logging.xml",
  6339. "lib/net5.0/NLog.Extensions.Logging.dll",
  6340. "lib/net5.0/NLog.Extensions.Logging.xml",
  6341. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  6342. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  6343. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  6344. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  6345. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  6346. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  6347. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  6348. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  6349. "nlog.extensions.logging.1.7.2.nupkg.sha512",
  6350. "nlog.extensions.logging.nuspec"
  6351. ]
  6352. },
  6353. "NLog.Web.AspNetCore/4.12.0": {
  6354. "sha512": "imBvT0hmVd1bhDpd4cNwurcPDZ9jdHwxH5C3+dzcLQ8stq/wpP/1wbpd3hTzpfrwFkVp06rMXrbdXWcmnw4/Cw==",
  6355. "type": "package",
  6356. "path": "nlog.web.aspnetcore/4.12.0",
  6357. "files": [
  6358. ".nupkg.metadata",
  6359. ".signature.p7s",
  6360. "N.png",
  6361. "lib/net451/NLog.Web.AspNetCore.dll",
  6362. "lib/net451/NLog.Web.AspNetCore.xml",
  6363. "lib/net461/NLog.Web.AspNetCore.dll",
  6364. "lib/net461/NLog.Web.AspNetCore.xml",
  6365. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  6366. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  6367. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  6368. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  6369. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  6370. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  6371. "nlog.web.aspnetcore.4.12.0.nupkg.sha512",
  6372. "nlog.web.aspnetcore.nuspec",
  6373. "readme.txt"
  6374. ]
  6375. },
  6376. "Pipelines.Sockets.Unofficial/2.2.0": {
  6377. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  6378. "type": "package",
  6379. "path": "pipelines.sockets.unofficial/2.2.0",
  6380. "files": [
  6381. ".nupkg.metadata",
  6382. ".signature.p7s",
  6383. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  6384. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  6385. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  6386. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  6387. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  6388. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  6389. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  6390. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  6391. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  6392. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  6393. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  6394. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  6395. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  6396. "pipelines.sockets.unofficial.nuspec"
  6397. ]
  6398. },
  6399. "Quartz/3.3.2": {
  6400. "sha512": "zsLt0LLHfIO+hlLBrBB2f7Qolf2C3SeCWXawgnWXSuvsAWsvWBLSax9Tpu5X/KzoF4Y4UHX7tdxvQjxILEsRWA==",
  6401. "type": "package",
  6402. "path": "quartz/3.3.2",
  6403. "files": [
  6404. ".nupkg.metadata",
  6405. ".signature.p7s",
  6406. "lib/net461/Quartz.dll",
  6407. "lib/net461/Quartz.xml",
  6408. "lib/net472/Quartz.dll",
  6409. "lib/net472/Quartz.xml",
  6410. "lib/netstandard2.0/Quartz.dll",
  6411. "lib/netstandard2.0/Quartz.xml",
  6412. "quartz-logo-small.png",
  6413. "quartz.3.3.2.nupkg.sha512",
  6414. "quartz.nuspec"
  6415. ]
  6416. },
  6417. "runtime.any.System.Collections/4.3.0": {
  6418. "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
  6419. "type": "package",
  6420. "path": "runtime.any.system.collections/4.3.0",
  6421. "files": [
  6422. ".nupkg.metadata",
  6423. ".signature.p7s",
  6424. "ThirdPartyNotices.txt",
  6425. "dotnet_library_license.txt",
  6426. "lib/MonoAndroid10/_._",
  6427. "lib/MonoTouch10/_._",
  6428. "lib/net45/_._",
  6429. "lib/netcore50/System.Collections.dll",
  6430. "lib/netstandard1.3/System.Collections.dll",
  6431. "lib/win8/_._",
  6432. "lib/wp80/_._",
  6433. "lib/wpa81/_._",
  6434. "lib/xamarinios10/_._",
  6435. "lib/xamarinmac20/_._",
  6436. "lib/xamarintvos10/_._",
  6437. "lib/xamarinwatchos10/_._",
  6438. "ref/netstandard/_._",
  6439. "runtime.any.system.collections.4.3.0.nupkg.sha512",
  6440. "runtime.any.system.collections.nuspec",
  6441. "runtimes/aot/lib/netcore50/_._"
  6442. ]
  6443. },
  6444. "runtime.any.System.Diagnostics.Tools/4.3.0": {
  6445. "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
  6446. "type": "package",
  6447. "path": "runtime.any.system.diagnostics.tools/4.3.0",
  6448. "files": [
  6449. ".nupkg.metadata",
  6450. ".signature.p7s",
  6451. "ThirdPartyNotices.txt",
  6452. "dotnet_library_license.txt",
  6453. "lib/MonoAndroid10/_._",
  6454. "lib/MonoTouch10/_._",
  6455. "lib/net45/_._",
  6456. "lib/netcore50/System.Diagnostics.Tools.dll",
  6457. "lib/netstandard1.3/System.Diagnostics.Tools.dll",
  6458. "lib/win8/_._",
  6459. "lib/wp80/_._",
  6460. "lib/wpa81/_._",
  6461. "lib/xamarinios10/_._",
  6462. "lib/xamarinmac20/_._",
  6463. "lib/xamarintvos10/_._",
  6464. "lib/xamarinwatchos10/_._",
  6465. "ref/netstandard/_._",
  6466. "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
  6467. "runtime.any.system.diagnostics.tools.nuspec",
  6468. "runtimes/aot/lib/netcore50/_._"
  6469. ]
  6470. },
  6471. "runtime.any.System.Diagnostics.Tracing/4.3.0": {
  6472. "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
  6473. "type": "package",
  6474. "path": "runtime.any.system.diagnostics.tracing/4.3.0",
  6475. "files": [
  6476. ".nupkg.metadata",
  6477. ".signature.p7s",
  6478. "ThirdPartyNotices.txt",
  6479. "dotnet_library_license.txt",
  6480. "lib/MonoAndroid10/_._",
  6481. "lib/MonoTouch10/_._",
  6482. "lib/net45/_._",
  6483. "lib/netcore50/System.Diagnostics.Tracing.dll",
  6484. "lib/netstandard1.5/System.Diagnostics.Tracing.dll",
  6485. "lib/win8/_._",
  6486. "lib/wp80/_._",
  6487. "lib/wpa81/_._",
  6488. "lib/xamarinios10/_._",
  6489. "lib/xamarinmac20/_._",
  6490. "lib/xamarintvos10/_._",
  6491. "lib/xamarinwatchos10/_._",
  6492. "ref/netstandard/_._",
  6493. "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6494. "runtime.any.system.diagnostics.tracing.nuspec",
  6495. "runtimes/aot/lib/netcore50/_._"
  6496. ]
  6497. },
  6498. "runtime.any.System.Globalization/4.3.0": {
  6499. "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
  6500. "type": "package",
  6501. "path": "runtime.any.system.globalization/4.3.0",
  6502. "files": [
  6503. ".nupkg.metadata",
  6504. ".signature.p7s",
  6505. "ThirdPartyNotices.txt",
  6506. "dotnet_library_license.txt",
  6507. "lib/MonoAndroid10/_._",
  6508. "lib/MonoTouch10/_._",
  6509. "lib/net45/_._",
  6510. "lib/netcore50/System.Globalization.dll",
  6511. "lib/netstandard1.3/System.Globalization.dll",
  6512. "lib/win8/_._",
  6513. "lib/wp80/_._",
  6514. "lib/wpa81/_._",
  6515. "lib/xamarinios10/_._",
  6516. "lib/xamarinmac20/_._",
  6517. "lib/xamarintvos10/_._",
  6518. "lib/xamarinwatchos10/_._",
  6519. "ref/netstandard/_._",
  6520. "runtime.any.system.globalization.4.3.0.nupkg.sha512",
  6521. "runtime.any.system.globalization.nuspec",
  6522. "runtimes/aot/lib/netcore50/_._"
  6523. ]
  6524. },
  6525. "runtime.any.System.Globalization.Calendars/4.3.0": {
  6526. "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
  6527. "type": "package",
  6528. "path": "runtime.any.system.globalization.calendars/4.3.0",
  6529. "files": [
  6530. ".nupkg.metadata",
  6531. ".signature.p7s",
  6532. "ThirdPartyNotices.txt",
  6533. "dotnet_library_license.txt",
  6534. "lib/MonoAndroid10/_._",
  6535. "lib/MonoTouch10/_._",
  6536. "lib/net/_._",
  6537. "lib/netcore50/System.Globalization.Calendars.dll",
  6538. "lib/netstandard1.3/System.Globalization.Calendars.dll",
  6539. "lib/xamarinios10/_._",
  6540. "lib/xamarinmac20/_._",
  6541. "lib/xamarintvos10/_._",
  6542. "lib/xamarinwatchos10/_._",
  6543. "ref/netstandard/_._",
  6544. "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512",
  6545. "runtime.any.system.globalization.calendars.nuspec",
  6546. "runtimes/aot/lib/netcore50/_._"
  6547. ]
  6548. },
  6549. "runtime.any.System.IO/4.3.0": {
  6550. "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
  6551. "type": "package",
  6552. "path": "runtime.any.system.io/4.3.0",
  6553. "files": [
  6554. ".nupkg.metadata",
  6555. ".signature.p7s",
  6556. "ThirdPartyNotices.txt",
  6557. "dotnet_library_license.txt",
  6558. "lib/MonoAndroid10/_._",
  6559. "lib/MonoTouch10/_._",
  6560. "lib/net45/_._",
  6561. "lib/netcore50/System.IO.dll",
  6562. "lib/netstandard1.5/System.IO.dll",
  6563. "lib/win8/_._",
  6564. "lib/wp80/_._",
  6565. "lib/wpa81/_._",
  6566. "lib/xamarinios10/_._",
  6567. "lib/xamarinmac20/_._",
  6568. "lib/xamarintvos10/_._",
  6569. "lib/xamarinwatchos10/_._",
  6570. "ref/netstandard/_._",
  6571. "runtime.any.system.io.4.3.0.nupkg.sha512",
  6572. "runtime.any.system.io.nuspec",
  6573. "runtimes/aot/lib/netcore50/_._"
  6574. ]
  6575. },
  6576. "runtime.any.System.Reflection/4.3.0": {
  6577. "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
  6578. "type": "package",
  6579. "path": "runtime.any.system.reflection/4.3.0",
  6580. "files": [
  6581. ".nupkg.metadata",
  6582. ".signature.p7s",
  6583. "ThirdPartyNotices.txt",
  6584. "dotnet_library_license.txt",
  6585. "lib/MonoAndroid10/_._",
  6586. "lib/MonoTouch10/_._",
  6587. "lib/net45/_._",
  6588. "lib/netcore50/System.Reflection.dll",
  6589. "lib/netstandard1.5/System.Reflection.dll",
  6590. "lib/win8/_._",
  6591. "lib/wp80/_._",
  6592. "lib/wpa81/_._",
  6593. "lib/xamarinios10/_._",
  6594. "lib/xamarinmac20/_._",
  6595. "lib/xamarintvos10/_._",
  6596. "lib/xamarinwatchos10/_._",
  6597. "ref/netstandard/_._",
  6598. "runtime.any.system.reflection.4.3.0.nupkg.sha512",
  6599. "runtime.any.system.reflection.nuspec",
  6600. "runtimes/aot/lib/netcore50/_._"
  6601. ]
  6602. },
  6603. "runtime.any.System.Reflection.Extensions/4.3.0": {
  6604. "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
  6605. "type": "package",
  6606. "path": "runtime.any.system.reflection.extensions/4.3.0",
  6607. "files": [
  6608. ".nupkg.metadata",
  6609. ".signature.p7s",
  6610. "ThirdPartyNotices.txt",
  6611. "dotnet_library_license.txt",
  6612. "lib/MonoAndroid10/_._",
  6613. "lib/MonoTouch10/_._",
  6614. "lib/net45/_._",
  6615. "lib/netcore50/System.Reflection.Extensions.dll",
  6616. "lib/netstandard1.3/System.Reflection.Extensions.dll",
  6617. "lib/win8/_._",
  6618. "lib/wp80/_._",
  6619. "lib/wpa81/_._",
  6620. "lib/xamarinios10/_._",
  6621. "lib/xamarinmac20/_._",
  6622. "lib/xamarintvos10/_._",
  6623. "lib/xamarinwatchos10/_._",
  6624. "ref/netstandard/_._",
  6625. "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
  6626. "runtime.any.system.reflection.extensions.nuspec",
  6627. "runtimes/aot/lib/netcore50/_._"
  6628. ]
  6629. },
  6630. "runtime.any.System.Reflection.Primitives/4.3.0": {
  6631. "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
  6632. "type": "package",
  6633. "path": "runtime.any.system.reflection.primitives/4.3.0",
  6634. "files": [
  6635. ".nupkg.metadata",
  6636. ".signature.p7s",
  6637. "ThirdPartyNotices.txt",
  6638. "dotnet_library_license.txt",
  6639. "lib/MonoAndroid10/_._",
  6640. "lib/MonoTouch10/_._",
  6641. "lib/net45/_._",
  6642. "lib/netcore50/System.Reflection.Primitives.dll",
  6643. "lib/netstandard1.3/System.Reflection.Primitives.dll",
  6644. "lib/win8/_._",
  6645. "lib/wp80/_._",
  6646. "lib/wpa81/_._",
  6647. "lib/xamarinios10/_._",
  6648. "lib/xamarinmac20/_._",
  6649. "lib/xamarintvos10/_._",
  6650. "lib/xamarinwatchos10/_._",
  6651. "ref/netstandard/_._",
  6652. "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
  6653. "runtime.any.system.reflection.primitives.nuspec",
  6654. "runtimes/aot/lib/netcore50/_._"
  6655. ]
  6656. },
  6657. "runtime.any.System.Resources.ResourceManager/4.3.0": {
  6658. "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
  6659. "type": "package",
  6660. "path": "runtime.any.system.resources.resourcemanager/4.3.0",
  6661. "files": [
  6662. ".nupkg.metadata",
  6663. ".signature.p7s",
  6664. "ThirdPartyNotices.txt",
  6665. "dotnet_library_license.txt",
  6666. "lib/MonoAndroid10/_._",
  6667. "lib/MonoTouch10/_._",
  6668. "lib/net45/_._",
  6669. "lib/netcore50/System.Resources.ResourceManager.dll",
  6670. "lib/netstandard1.3/System.Resources.ResourceManager.dll",
  6671. "lib/win8/_._",
  6672. "lib/wp80/_._",
  6673. "lib/wpa81/_._",
  6674. "lib/xamarinios10/_._",
  6675. "lib/xamarinmac20/_._",
  6676. "lib/xamarintvos10/_._",
  6677. "lib/xamarinwatchos10/_._",
  6678. "ref/netstandard/_._",
  6679. "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6680. "runtime.any.system.resources.resourcemanager.nuspec",
  6681. "runtimes/aot/lib/netcore50/_._"
  6682. ]
  6683. },
  6684. "runtime.any.System.Runtime/4.3.0": {
  6685. "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
  6686. "type": "package",
  6687. "path": "runtime.any.system.runtime/4.3.0",
  6688. "files": [
  6689. ".nupkg.metadata",
  6690. ".signature.p7s",
  6691. "ThirdPartyNotices.txt",
  6692. "dotnet_library_license.txt",
  6693. "lib/MonoAndroid10/_._",
  6694. "lib/MonoTouch10/_._",
  6695. "lib/net45/_._",
  6696. "lib/netcore50/System.Runtime.dll",
  6697. "lib/netstandard1.5/System.Runtime.dll",
  6698. "lib/win8/_._",
  6699. "lib/wp80/_._",
  6700. "lib/wpa81/_._",
  6701. "lib/xamarinios10/_._",
  6702. "lib/xamarinmac20/_._",
  6703. "lib/xamarintvos10/_._",
  6704. "lib/xamarinwatchos10/_._",
  6705. "ref/netstandard/_._",
  6706. "runtime.any.system.runtime.4.3.0.nupkg.sha512",
  6707. "runtime.any.system.runtime.nuspec",
  6708. "runtimes/aot/lib/netcore50/_._"
  6709. ]
  6710. },
  6711. "runtime.any.System.Runtime.Handles/4.3.0": {
  6712. "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
  6713. "type": "package",
  6714. "path": "runtime.any.system.runtime.handles/4.3.0",
  6715. "files": [
  6716. ".nupkg.metadata",
  6717. ".signature.p7s",
  6718. "ThirdPartyNotices.txt",
  6719. "dotnet_library_license.txt",
  6720. "lib/MonoAndroid10/_._",
  6721. "lib/MonoTouch10/_._",
  6722. "lib/net46/_._",
  6723. "lib/netstandard1.3/System.Runtime.Handles.dll",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/netstandard/_._",
  6729. "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
  6730. "runtime.any.system.runtime.handles.nuspec",
  6731. "runtimes/aot/lib/netcore50/_._"
  6732. ]
  6733. },
  6734. "runtime.any.System.Runtime.InteropServices/4.3.0": {
  6735. "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
  6736. "type": "package",
  6737. "path": "runtime.any.system.runtime.interopservices/4.3.0",
  6738. "files": [
  6739. ".nupkg.metadata",
  6740. ".signature.p7s",
  6741. "ThirdPartyNotices.txt",
  6742. "dotnet_library_license.txt",
  6743. "lib/MonoAndroid10/_._",
  6744. "lib/MonoTouch10/_._",
  6745. "lib/net45/_._",
  6746. "lib/netcore50/System.Runtime.InteropServices.dll",
  6747. "lib/netstandard1.5/System.Runtime.InteropServices.dll",
  6748. "lib/netstandard1.6/System.Runtime.InteropServices.dll",
  6749. "lib/win8/_._",
  6750. "lib/wpa81/_._",
  6751. "lib/xamarinios10/_._",
  6752. "lib/xamarinmac20/_._",
  6753. "lib/xamarintvos10/_._",
  6754. "lib/xamarinwatchos10/_._",
  6755. "ref/netstandard/_._",
  6756. "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
  6757. "runtime.any.system.runtime.interopservices.nuspec",
  6758. "runtimes/aot/lib/netcore50/_._"
  6759. ]
  6760. },
  6761. "runtime.any.System.Text.Encoding/4.3.0": {
  6762. "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
  6763. "type": "package",
  6764. "path": "runtime.any.system.text.encoding/4.3.0",
  6765. "files": [
  6766. ".nupkg.metadata",
  6767. ".signature.p7s",
  6768. "ThirdPartyNotices.txt",
  6769. "dotnet_library_license.txt",
  6770. "lib/MonoAndroid10/_._",
  6771. "lib/MonoTouch10/_._",
  6772. "lib/net45/_._",
  6773. "lib/netcore50/System.Text.Encoding.dll",
  6774. "lib/netstandard1.3/System.Text.Encoding.dll",
  6775. "lib/win8/_._",
  6776. "lib/wpa81/_._",
  6777. "lib/xamarinios10/_._",
  6778. "lib/xamarinmac20/_._",
  6779. "lib/xamarintvos10/_._",
  6780. "lib/xamarinwatchos10/_._",
  6781. "ref/netstandard/_._",
  6782. "runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
  6783. "runtime.any.system.text.encoding.nuspec",
  6784. "runtimes/aot/lib/netcore50/_._"
  6785. ]
  6786. },
  6787. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
  6788. "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
  6789. "type": "package",
  6790. "path": "runtime.any.system.text.encoding.extensions/4.3.0",
  6791. "files": [
  6792. ".nupkg.metadata",
  6793. ".signature.p7s",
  6794. "ThirdPartyNotices.txt",
  6795. "dotnet_library_license.txt",
  6796. "lib/MonoAndroid10/_._",
  6797. "lib/MonoTouch10/_._",
  6798. "lib/net45/_._",
  6799. "lib/netcore50/System.Text.Encoding.Extensions.dll",
  6800. "lib/netstandard1.3/System.Text.Encoding.Extensions.dll",
  6801. "lib/win8/_._",
  6802. "lib/wpa81/_._",
  6803. "lib/xamarinios10/_._",
  6804. "lib/xamarinmac20/_._",
  6805. "lib/xamarintvos10/_._",
  6806. "lib/xamarinwatchos10/_._",
  6807. "ref/netstandard/_._",
  6808. "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
  6809. "runtime.any.system.text.encoding.extensions.nuspec",
  6810. "runtimes/aot/lib/netcore50/_._"
  6811. ]
  6812. },
  6813. "runtime.any.System.Threading.Tasks/4.3.0": {
  6814. "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
  6815. "type": "package",
  6816. "path": "runtime.any.system.threading.tasks/4.3.0",
  6817. "files": [
  6818. ".nupkg.metadata",
  6819. ".signature.p7s",
  6820. "ThirdPartyNotices.txt",
  6821. "dotnet_library_license.txt",
  6822. "lib/MonoAndroid10/_._",
  6823. "lib/MonoTouch10/_._",
  6824. "lib/net45/_._",
  6825. "lib/netcore50/System.Threading.Tasks.dll",
  6826. "lib/netstandard1.3/System.Threading.Tasks.dll",
  6827. "lib/win8/_._",
  6828. "lib/wp80/_._",
  6829. "lib/wpa81/_._",
  6830. "lib/xamarinios10/_._",
  6831. "lib/xamarinmac20/_._",
  6832. "lib/xamarintvos10/_._",
  6833. "lib/xamarinwatchos10/_._",
  6834. "ref/netstandard/_._",
  6835. "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
  6836. "runtime.any.system.threading.tasks.nuspec",
  6837. "runtimes/aot/lib/netcore50/_._"
  6838. ]
  6839. },
  6840. "runtime.any.System.Threading.Timer/4.3.0": {
  6841. "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
  6842. "type": "package",
  6843. "path": "runtime.any.system.threading.timer/4.3.0",
  6844. "files": [
  6845. ".nupkg.metadata",
  6846. ".signature.p7s",
  6847. "ThirdPartyNotices.txt",
  6848. "dotnet_library_license.txt",
  6849. "lib/MonoAndroid10/_._",
  6850. "lib/MonoTouch10/_._",
  6851. "lib/net45/_._",
  6852. "lib/netcore50/System.Threading.Timer.dll",
  6853. "lib/netstandard1.3/System.Threading.Timer.dll",
  6854. "lib/win8/_._",
  6855. "lib/wpa81/_._",
  6856. "lib/xamarinios10/_._",
  6857. "lib/xamarinmac20/_._",
  6858. "lib/xamarintvos10/_._",
  6859. "lib/xamarinwatchos10/_._",
  6860. "ref/netstandard/_._",
  6861. "runtime.any.system.threading.timer.4.3.0.nupkg.sha512",
  6862. "runtime.any.system.threading.timer.nuspec",
  6863. "runtimes/aot/lib/netcore50/_._"
  6864. ]
  6865. },
  6866. "runtime.native.System/4.0.0": {
  6867. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  6868. "type": "package",
  6869. "path": "runtime.native.system/4.0.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. "ThirdPartyNotices.txt",
  6873. "dotnet_library_license.txt",
  6874. "lib/netstandard1.0/_._",
  6875. "runtime.native.system.4.0.0.nupkg.sha512",
  6876. "runtime.native.system.nuspec"
  6877. ]
  6878. },
  6879. "runtime.native.System/4.3.0": {
  6880. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  6881. "type": "package",
  6882. "path": "runtime.native.system/4.3.0",
  6883. "files": [
  6884. ".nupkg.metadata",
  6885. ".signature.p7s",
  6886. "ThirdPartyNotices.txt",
  6887. "dotnet_library_license.txt",
  6888. "lib/netstandard1.0/_._",
  6889. "runtime.native.system.4.3.0.nupkg.sha512",
  6890. "runtime.native.system.nuspec"
  6891. ]
  6892. },
  6893. "runtime.native.System.IO.Compression/4.1.0": {
  6894. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  6895. "type": "package",
  6896. "path": "runtime.native.system.io.compression/4.1.0",
  6897. "files": [
  6898. ".nupkg.metadata",
  6899. ".signature.p7s",
  6900. "ThirdPartyNotices.txt",
  6901. "dotnet_library_license.txt",
  6902. "lib/netstandard1.0/_._",
  6903. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  6904. "runtime.native.system.io.compression.nuspec"
  6905. ]
  6906. },
  6907. "runtime.native.System.Net.Http/4.0.1": {
  6908. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  6909. "type": "package",
  6910. "path": "runtime.native.system.net.http/4.0.1",
  6911. "files": [
  6912. ".nupkg.metadata",
  6913. "ThirdPartyNotices.txt",
  6914. "dotnet_library_license.txt",
  6915. "lib/netstandard1.0/_._",
  6916. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  6917. "runtime.native.system.net.http.nuspec"
  6918. ]
  6919. },
  6920. "runtime.native.System.Security.Cryptography/4.0.0": {
  6921. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  6922. "type": "package",
  6923. "path": "runtime.native.system.security.cryptography/4.0.0",
  6924. "files": [
  6925. ".nupkg.metadata",
  6926. ".signature.p7s",
  6927. "ThirdPartyNotices.txt",
  6928. "dotnet_library_license.txt",
  6929. "lib/netstandard1.0/_._",
  6930. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  6931. "runtime.native.system.security.cryptography.nuspec"
  6932. ]
  6933. },
  6934. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  6935. "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
  6936. "type": "package",
  6937. "path": "runtime.win.microsoft.win32.primitives/4.3.0",
  6938. "files": [
  6939. ".nupkg.metadata",
  6940. ".signature.p7s",
  6941. "ThirdPartyNotices.txt",
  6942. "dotnet_library_license.txt",
  6943. "ref/netstandard/_._",
  6944. "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512",
  6945. "runtime.win.microsoft.win32.primitives.nuspec",
  6946. "runtimes/win/lib/net/_._",
  6947. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll"
  6948. ]
  6949. },
  6950. "runtime.win.System.Console/4.3.0": {
  6951. "sha512": "RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==",
  6952. "type": "package",
  6953. "path": "runtime.win.system.console/4.3.0",
  6954. "files": [
  6955. ".nupkg.metadata",
  6956. ".signature.p7s",
  6957. "ThirdPartyNotices.txt",
  6958. "dotnet_library_license.txt",
  6959. "ref/netstandard/_._",
  6960. "runtime.win.system.console.4.3.0.nupkg.sha512",
  6961. "runtime.win.system.console.nuspec",
  6962. "runtimes/win/lib/net/_._",
  6963. "runtimes/win/lib/netcore50/System.Console.dll",
  6964. "runtimes/win/lib/netstandard1.3/System.Console.dll"
  6965. ]
  6966. },
  6967. "runtime.win.System.Diagnostics.Debug/4.3.0": {
  6968. "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
  6969. "type": "package",
  6970. "path": "runtime.win.system.diagnostics.debug/4.3.0",
  6971. "files": [
  6972. ".nupkg.metadata",
  6973. ".signature.p7s",
  6974. "ThirdPartyNotices.txt",
  6975. "dotnet_library_license.txt",
  6976. "ref/netstandard/_._",
  6977. "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512",
  6978. "runtime.win.system.diagnostics.debug.nuspec",
  6979. "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll",
  6980. "runtimes/win/lib/net45/_._",
  6981. "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll",
  6982. "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll",
  6983. "runtimes/win/lib/win8/_._",
  6984. "runtimes/win/lib/wp80/_._",
  6985. "runtimes/win/lib/wpa81/_._"
  6986. ]
  6987. },
  6988. "runtime.win.System.IO.FileSystem/4.3.0": {
  6989. "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
  6990. "type": "package",
  6991. "path": "runtime.win.system.io.filesystem/4.3.0",
  6992. "files": [
  6993. ".nupkg.metadata",
  6994. ".signature.p7s",
  6995. "ThirdPartyNotices.txt",
  6996. "dotnet_library_license.txt",
  6997. "ref/netstandard/_._",
  6998. "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512",
  6999. "runtime.win.system.io.filesystem.nuspec",
  7000. "runtimes/win/lib/net/_._",
  7001. "runtimes/win/lib/netcore50/System.IO.FileSystem.dll",
  7002. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll",
  7003. "runtimes/win/lib/win8/_._",
  7004. "runtimes/win/lib/wp8/_._",
  7005. "runtimes/win/lib/wpa81/_._"
  7006. ]
  7007. },
  7008. "runtime.win.System.Net.Primitives/4.3.0": {
  7009. "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
  7010. "type": "package",
  7011. "path": "runtime.win.system.net.primitives/4.3.0",
  7012. "files": [
  7013. ".nupkg.metadata",
  7014. ".signature.p7s",
  7015. "ThirdPartyNotices.txt",
  7016. "dotnet_library_license.txt",
  7017. "ref/netstandard/_._",
  7018. "runtime.win.system.net.primitives.4.3.0.nupkg.sha512",
  7019. "runtime.win.system.net.primitives.nuspec",
  7020. "runtimes/win/lib/net/_._",
  7021. "runtimes/win/lib/netcore50/System.Net.Primitives.dll",
  7022. "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll"
  7023. ]
  7024. },
  7025. "runtime.win.System.Net.Sockets/4.3.0": {
  7026. "sha512": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
  7027. "type": "package",
  7028. "path": "runtime.win.system.net.sockets/4.3.0",
  7029. "files": [
  7030. ".nupkg.metadata",
  7031. ".signature.p7s",
  7032. "ThirdPartyNotices.txt",
  7033. "dotnet_library_license.txt",
  7034. "ref/netstandard/_._",
  7035. "runtime.win.system.net.sockets.4.3.0.nupkg.sha512",
  7036. "runtime.win.system.net.sockets.nuspec",
  7037. "runtimes/win/lib/net/_._",
  7038. "runtimes/win/lib/netcore50/System.Net.Sockets.dll",
  7039. "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll"
  7040. ]
  7041. },
  7042. "runtime.win.System.Runtime.Extensions/4.3.0": {
  7043. "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
  7044. "type": "package",
  7045. "path": "runtime.win.system.runtime.extensions/4.3.0",
  7046. "files": [
  7047. ".nupkg.metadata",
  7048. ".signature.p7s",
  7049. "ThirdPartyNotices.txt",
  7050. "dotnet_library_license.txt",
  7051. "ref/netstandard/_._",
  7052. "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512",
  7053. "runtime.win.system.runtime.extensions.nuspec",
  7054. "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll",
  7055. "runtimes/win/lib/net/_._",
  7056. "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll",
  7057. "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll"
  7058. ]
  7059. },
  7060. "Scrutor/3.3.0": {
  7061. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  7062. "type": "package",
  7063. "path": "scrutor/3.3.0",
  7064. "files": [
  7065. ".nupkg.metadata",
  7066. ".signature.p7s",
  7067. "lib/net461/Scrutor.dll",
  7068. "lib/net461/Scrutor.pdb",
  7069. "lib/net461/Scrutor.xml",
  7070. "lib/netcoreapp3.1/Scrutor.dll",
  7071. "lib/netcoreapp3.1/Scrutor.pdb",
  7072. "lib/netcoreapp3.1/Scrutor.xml",
  7073. "lib/netstandard2.0/Scrutor.dll",
  7074. "lib/netstandard2.0/Scrutor.pdb",
  7075. "lib/netstandard2.0/Scrutor.xml",
  7076. "scrutor.3.3.0.nupkg.sha512",
  7077. "scrutor.nuspec"
  7078. ]
  7079. },
  7080. "SSH.NET/2016.1.0": {
  7081. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  7082. "type": "package",
  7083. "path": "ssh.net/2016.1.0",
  7084. "files": [
  7085. ".nupkg.metadata",
  7086. ".signature.p7s",
  7087. "lib/net35/Renci.SshNet.dll",
  7088. "lib/net35/Renci.SshNet.xml",
  7089. "lib/net40/Renci.SshNet.dll",
  7090. "lib/net40/Renci.SshNet.xml",
  7091. "lib/netstandard1.3/Renci.SshNet.dll",
  7092. "lib/netstandard1.3/Renci.SshNet.xml",
  7093. "lib/sl4/Renci.SshNet.dll",
  7094. "lib/sl4/Renci.SshNet.xml",
  7095. "lib/sl5/Renci.SshNet.dll",
  7096. "lib/sl5/Renci.SshNet.xml",
  7097. "lib/uap10/Renci.SshNet.dll",
  7098. "lib/uap10/Renci.SshNet.xml",
  7099. "lib/wp71/Renci.SshNet.dll",
  7100. "lib/wp71/Renci.SshNet.xml",
  7101. "lib/wp8/Renci.SshNet.dll",
  7102. "lib/wp8/Renci.SshNet.xml",
  7103. "ssh.net.2016.1.0.nupkg.sha512",
  7104. "ssh.net.nuspec"
  7105. ]
  7106. },
  7107. "SshNet.Security.Cryptography/1.2.0": {
  7108. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  7109. "type": "package",
  7110. "path": "sshnet.security.cryptography/1.2.0",
  7111. "files": [
  7112. ".nupkg.metadata",
  7113. ".signature.p7s",
  7114. "lib/net20/SshNet.Security.Cryptography.dll",
  7115. "lib/net20/SshNet.Security.Cryptography.xml",
  7116. "lib/net40/SshNet.Security.Cryptography.dll",
  7117. "lib/net40/SshNet.Security.Cryptography.xml",
  7118. "lib/net45/SshNet.Security.Cryptography.dll",
  7119. "lib/net45/SshNet.Security.Cryptography.xml",
  7120. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  7121. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  7122. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  7123. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  7124. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  7125. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  7126. "lib/sl4/SshNet.Security.Cryptography.dll",
  7127. "lib/sl4/SshNet.Security.Cryptography.xml",
  7128. "lib/sl5/SshNet.Security.Cryptography.dll",
  7129. "lib/sl5/SshNet.Security.Cryptography.xml",
  7130. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  7131. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  7132. "lib/wp71/SshNet.Security.Cryptography.dll",
  7133. "lib/wp71/SshNet.Security.Cryptography.xml",
  7134. "lib/wp8/SshNet.Security.Cryptography.dll",
  7135. "lib/wp8/SshNet.Security.Cryptography.xml",
  7136. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  7137. "sshnet.security.cryptography.nuspec"
  7138. ]
  7139. },
  7140. "StackExchange.Redis/2.2.62": {
  7141. "sha512": "rcIFo/dK67An3mO1Heov0GZj9TYLMd+YB4drA09vOQz9ZpdjMhxSVtlDATcGpC++EH0aUGGnRnzhq0R0oXBOXg==",
  7142. "type": "package",
  7143. "path": "stackexchange.redis/2.2.62",
  7144. "files": [
  7145. ".nupkg.metadata",
  7146. ".signature.p7s",
  7147. "lib/net461/StackExchange.Redis.dll",
  7148. "lib/net461/StackExchange.Redis.xml",
  7149. "lib/net472/StackExchange.Redis.dll",
  7150. "lib/net472/StackExchange.Redis.xml",
  7151. "lib/net5.0/StackExchange.Redis.dll",
  7152. "lib/net5.0/StackExchange.Redis.xml",
  7153. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  7154. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  7155. "lib/netstandard2.0/StackExchange.Redis.dll",
  7156. "lib/netstandard2.0/StackExchange.Redis.xml",
  7157. "stackexchange.redis.2.2.62.nupkg.sha512",
  7158. "stackexchange.redis.nuspec"
  7159. ]
  7160. },
  7161. "Swashbuckle.AspNetCore/6.3.1": {
  7162. "sha512": "JFk0+HHUPdjYuPhkpGBMLi2JtnEuWkE2pp0yXQp64DmeMe+Fb0hZyVNq/ENJ2vQNso7Zg+C758WmR/xyAl36bA==",
  7163. "type": "package",
  7164. "path": "swashbuckle.aspnetcore/6.3.1",
  7165. "files": [
  7166. ".nupkg.metadata",
  7167. ".signature.p7s",
  7168. "build/Swashbuckle.AspNetCore.props",
  7169. "swashbuckle.aspnetcore.6.3.1.nupkg.sha512",
  7170. "swashbuckle.aspnetcore.nuspec"
  7171. ]
  7172. },
  7173. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  7174. "sha512": "pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==",
  7175. "type": "package",
  7176. "path": "swashbuckle.aspnetcore.filters/7.0.2",
  7177. "files": [
  7178. ".nupkg.metadata",
  7179. ".signature.p7s",
  7180. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  7181. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  7182. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  7183. "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512",
  7184. "swashbuckle.aspnetcore.filters.nuspec"
  7185. ]
  7186. },
  7187. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  7188. "sha512": "RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==",
  7189. "type": "package",
  7190. "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2",
  7191. "files": [
  7192. ".nupkg.metadata",
  7193. ".signature.p7s",
  7194. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7195. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7196. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7197. "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512",
  7198. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  7199. ]
  7200. },
  7201. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  7202. "sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==",
  7203. "type": "package",
  7204. "path": "swashbuckle.aspnetcore.swagger/6.3.1",
  7205. "files": [
  7206. ".nupkg.metadata",
  7207. ".signature.p7s",
  7208. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  7209. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  7210. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  7211. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  7212. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  7213. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  7214. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  7215. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  7216. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  7217. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  7218. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  7219. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  7220. "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512",
  7221. "swashbuckle.aspnetcore.swagger.nuspec"
  7222. ]
  7223. },
  7224. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  7225. "sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==",
  7226. "type": "package",
  7227. "path": "swashbuckle.aspnetcore.swaggergen/6.3.1",
  7228. "files": [
  7229. ".nupkg.metadata",
  7230. ".signature.p7s",
  7231. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  7232. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  7233. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  7234. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  7235. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  7236. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  7237. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  7238. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  7239. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  7240. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  7241. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  7242. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  7243. "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512",
  7244. "swashbuckle.aspnetcore.swaggergen.nuspec"
  7245. ]
  7246. },
  7247. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  7248. "sha512": "JLm9hN67jh7RHsX3H30+tb432Li8xm/qV5lRyMMkyHYMfWitIuKAAdrpo2ILcHOIeH7CLMuOO2hp/iLBmE+Bkw==",
  7249. "type": "package",
  7250. "path": "swashbuckle.aspnetcore.swaggerui/6.3.1",
  7251. "files": [
  7252. ".nupkg.metadata",
  7253. ".signature.p7s",
  7254. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  7255. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  7256. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  7257. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  7258. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  7259. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  7260. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  7261. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  7262. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  7263. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  7264. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  7265. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  7266. "swashbuckle.aspnetcore.swaggerui.6.3.1.nupkg.sha512",
  7267. "swashbuckle.aspnetcore.swaggerui.nuspec"
  7268. ]
  7269. },
  7270. "System.AppContext/4.1.0": {
  7271. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  7272. "type": "package",
  7273. "path": "system.appcontext/4.1.0",
  7274. "files": [
  7275. ".nupkg.metadata",
  7276. ".signature.p7s",
  7277. "ThirdPartyNotices.txt",
  7278. "dotnet_library_license.txt",
  7279. "lib/MonoAndroid10/_._",
  7280. "lib/MonoTouch10/_._",
  7281. "lib/net46/System.AppContext.dll",
  7282. "lib/net463/System.AppContext.dll",
  7283. "lib/netcore50/System.AppContext.dll",
  7284. "lib/netstandard1.6/System.AppContext.dll",
  7285. "lib/xamarinios10/_._",
  7286. "lib/xamarinmac20/_._",
  7287. "lib/xamarintvos10/_._",
  7288. "lib/xamarinwatchos10/_._",
  7289. "ref/MonoAndroid10/_._",
  7290. "ref/MonoTouch10/_._",
  7291. "ref/net46/System.AppContext.dll",
  7292. "ref/net463/System.AppContext.dll",
  7293. "ref/netstandard/_._",
  7294. "ref/netstandard1.3/System.AppContext.dll",
  7295. "ref/netstandard1.3/System.AppContext.xml",
  7296. "ref/netstandard1.3/de/System.AppContext.xml",
  7297. "ref/netstandard1.3/es/System.AppContext.xml",
  7298. "ref/netstandard1.3/fr/System.AppContext.xml",
  7299. "ref/netstandard1.3/it/System.AppContext.xml",
  7300. "ref/netstandard1.3/ja/System.AppContext.xml",
  7301. "ref/netstandard1.3/ko/System.AppContext.xml",
  7302. "ref/netstandard1.3/ru/System.AppContext.xml",
  7303. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  7304. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  7305. "ref/netstandard1.6/System.AppContext.dll",
  7306. "ref/netstandard1.6/System.AppContext.xml",
  7307. "ref/netstandard1.6/de/System.AppContext.xml",
  7308. "ref/netstandard1.6/es/System.AppContext.xml",
  7309. "ref/netstandard1.6/fr/System.AppContext.xml",
  7310. "ref/netstandard1.6/it/System.AppContext.xml",
  7311. "ref/netstandard1.6/ja/System.AppContext.xml",
  7312. "ref/netstandard1.6/ko/System.AppContext.xml",
  7313. "ref/netstandard1.6/ru/System.AppContext.xml",
  7314. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  7315. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  7316. "ref/xamarinios10/_._",
  7317. "ref/xamarinmac20/_._",
  7318. "ref/xamarintvos10/_._",
  7319. "ref/xamarinwatchos10/_._",
  7320. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  7321. "system.appcontext.4.1.0.nupkg.sha512",
  7322. "system.appcontext.nuspec"
  7323. ]
  7324. },
  7325. "System.Buffers/4.5.1": {
  7326. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  7327. "type": "package",
  7328. "path": "system.buffers/4.5.1",
  7329. "files": [
  7330. ".nupkg.metadata",
  7331. ".signature.p7s",
  7332. "LICENSE.TXT",
  7333. "THIRD-PARTY-NOTICES.TXT",
  7334. "lib/net461/System.Buffers.dll",
  7335. "lib/net461/System.Buffers.xml",
  7336. "lib/netcoreapp2.0/_._",
  7337. "lib/netstandard1.1/System.Buffers.dll",
  7338. "lib/netstandard1.1/System.Buffers.xml",
  7339. "lib/netstandard2.0/System.Buffers.dll",
  7340. "lib/netstandard2.0/System.Buffers.xml",
  7341. "lib/uap10.0.16299/_._",
  7342. "ref/net45/System.Buffers.dll",
  7343. "ref/net45/System.Buffers.xml",
  7344. "ref/netcoreapp2.0/_._",
  7345. "ref/netstandard1.1/System.Buffers.dll",
  7346. "ref/netstandard1.1/System.Buffers.xml",
  7347. "ref/netstandard2.0/System.Buffers.dll",
  7348. "ref/netstandard2.0/System.Buffers.xml",
  7349. "ref/uap10.0.16299/_._",
  7350. "system.buffers.4.5.1.nupkg.sha512",
  7351. "system.buffers.nuspec",
  7352. "useSharedDesignerContext.txt",
  7353. "version.txt"
  7354. ]
  7355. },
  7356. "System.Collections/4.0.11": {
  7357. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  7358. "type": "package",
  7359. "path": "system.collections/4.0.11",
  7360. "files": [
  7361. ".nupkg.metadata",
  7362. ".signature.p7s",
  7363. "ThirdPartyNotices.txt",
  7364. "dotnet_library_license.txt",
  7365. "lib/MonoAndroid10/_._",
  7366. "lib/MonoTouch10/_._",
  7367. "lib/net45/_._",
  7368. "lib/portable-net45+win8+wp8+wpa81/_._",
  7369. "lib/win8/_._",
  7370. "lib/wp80/_._",
  7371. "lib/wpa81/_._",
  7372. "lib/xamarinios10/_._",
  7373. "lib/xamarinmac20/_._",
  7374. "lib/xamarintvos10/_._",
  7375. "lib/xamarinwatchos10/_._",
  7376. "ref/MonoAndroid10/_._",
  7377. "ref/MonoTouch10/_._",
  7378. "ref/net45/_._",
  7379. "ref/netcore50/System.Collections.dll",
  7380. "ref/netcore50/System.Collections.xml",
  7381. "ref/netcore50/de/System.Collections.xml",
  7382. "ref/netcore50/es/System.Collections.xml",
  7383. "ref/netcore50/fr/System.Collections.xml",
  7384. "ref/netcore50/it/System.Collections.xml",
  7385. "ref/netcore50/ja/System.Collections.xml",
  7386. "ref/netcore50/ko/System.Collections.xml",
  7387. "ref/netcore50/ru/System.Collections.xml",
  7388. "ref/netcore50/zh-hans/System.Collections.xml",
  7389. "ref/netcore50/zh-hant/System.Collections.xml",
  7390. "ref/netstandard1.0/System.Collections.dll",
  7391. "ref/netstandard1.0/System.Collections.xml",
  7392. "ref/netstandard1.0/de/System.Collections.xml",
  7393. "ref/netstandard1.0/es/System.Collections.xml",
  7394. "ref/netstandard1.0/fr/System.Collections.xml",
  7395. "ref/netstandard1.0/it/System.Collections.xml",
  7396. "ref/netstandard1.0/ja/System.Collections.xml",
  7397. "ref/netstandard1.0/ko/System.Collections.xml",
  7398. "ref/netstandard1.0/ru/System.Collections.xml",
  7399. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  7400. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  7401. "ref/netstandard1.3/System.Collections.dll",
  7402. "ref/netstandard1.3/System.Collections.xml",
  7403. "ref/netstandard1.3/de/System.Collections.xml",
  7404. "ref/netstandard1.3/es/System.Collections.xml",
  7405. "ref/netstandard1.3/fr/System.Collections.xml",
  7406. "ref/netstandard1.3/it/System.Collections.xml",
  7407. "ref/netstandard1.3/ja/System.Collections.xml",
  7408. "ref/netstandard1.3/ko/System.Collections.xml",
  7409. "ref/netstandard1.3/ru/System.Collections.xml",
  7410. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  7411. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  7412. "ref/portable-net45+win8+wp8+wpa81/_._",
  7413. "ref/win8/_._",
  7414. "ref/wp80/_._",
  7415. "ref/wpa81/_._",
  7416. "ref/xamarinios10/_._",
  7417. "ref/xamarinmac20/_._",
  7418. "ref/xamarintvos10/_._",
  7419. "ref/xamarinwatchos10/_._",
  7420. "system.collections.4.0.11.nupkg.sha512",
  7421. "system.collections.nuspec"
  7422. ]
  7423. },
  7424. "System.Collections/4.3.0": {
  7425. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  7426. "type": "package",
  7427. "path": "system.collections/4.3.0",
  7428. "files": [
  7429. ".nupkg.metadata",
  7430. ".signature.p7s",
  7431. "ThirdPartyNotices.txt",
  7432. "dotnet_library_license.txt",
  7433. "lib/MonoAndroid10/_._",
  7434. "lib/MonoTouch10/_._",
  7435. "lib/net45/_._",
  7436. "lib/portable-net45+win8+wp8+wpa81/_._",
  7437. "lib/win8/_._",
  7438. "lib/wp80/_._",
  7439. "lib/wpa81/_._",
  7440. "lib/xamarinios10/_._",
  7441. "lib/xamarinmac20/_._",
  7442. "lib/xamarintvos10/_._",
  7443. "lib/xamarinwatchos10/_._",
  7444. "ref/MonoAndroid10/_._",
  7445. "ref/MonoTouch10/_._",
  7446. "ref/net45/_._",
  7447. "ref/netcore50/System.Collections.dll",
  7448. "ref/netcore50/System.Collections.xml",
  7449. "ref/netcore50/de/System.Collections.xml",
  7450. "ref/netcore50/es/System.Collections.xml",
  7451. "ref/netcore50/fr/System.Collections.xml",
  7452. "ref/netcore50/it/System.Collections.xml",
  7453. "ref/netcore50/ja/System.Collections.xml",
  7454. "ref/netcore50/ko/System.Collections.xml",
  7455. "ref/netcore50/ru/System.Collections.xml",
  7456. "ref/netcore50/zh-hans/System.Collections.xml",
  7457. "ref/netcore50/zh-hant/System.Collections.xml",
  7458. "ref/netstandard1.0/System.Collections.dll",
  7459. "ref/netstandard1.0/System.Collections.xml",
  7460. "ref/netstandard1.0/de/System.Collections.xml",
  7461. "ref/netstandard1.0/es/System.Collections.xml",
  7462. "ref/netstandard1.0/fr/System.Collections.xml",
  7463. "ref/netstandard1.0/it/System.Collections.xml",
  7464. "ref/netstandard1.0/ja/System.Collections.xml",
  7465. "ref/netstandard1.0/ko/System.Collections.xml",
  7466. "ref/netstandard1.0/ru/System.Collections.xml",
  7467. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  7468. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  7469. "ref/netstandard1.3/System.Collections.dll",
  7470. "ref/netstandard1.3/System.Collections.xml",
  7471. "ref/netstandard1.3/de/System.Collections.xml",
  7472. "ref/netstandard1.3/es/System.Collections.xml",
  7473. "ref/netstandard1.3/fr/System.Collections.xml",
  7474. "ref/netstandard1.3/it/System.Collections.xml",
  7475. "ref/netstandard1.3/ja/System.Collections.xml",
  7476. "ref/netstandard1.3/ko/System.Collections.xml",
  7477. "ref/netstandard1.3/ru/System.Collections.xml",
  7478. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  7479. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  7480. "ref/portable-net45+win8+wp8+wpa81/_._",
  7481. "ref/win8/_._",
  7482. "ref/wp80/_._",
  7483. "ref/wpa81/_._",
  7484. "ref/xamarinios10/_._",
  7485. "ref/xamarinmac20/_._",
  7486. "ref/xamarintvos10/_._",
  7487. "ref/xamarinwatchos10/_._",
  7488. "system.collections.4.3.0.nupkg.sha512",
  7489. "system.collections.nuspec"
  7490. ]
  7491. },
  7492. "System.Collections.Concurrent/4.0.12": {
  7493. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  7494. "type": "package",
  7495. "path": "system.collections.concurrent/4.0.12",
  7496. "files": [
  7497. ".nupkg.metadata",
  7498. ".signature.p7s",
  7499. "ThirdPartyNotices.txt",
  7500. "dotnet_library_license.txt",
  7501. "lib/MonoAndroid10/_._",
  7502. "lib/MonoTouch10/_._",
  7503. "lib/net45/_._",
  7504. "lib/netcore50/System.Collections.Concurrent.dll",
  7505. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  7506. "lib/portable-net45+win8+wpa81/_._",
  7507. "lib/win8/_._",
  7508. "lib/wpa81/_._",
  7509. "lib/xamarinios10/_._",
  7510. "lib/xamarinmac20/_._",
  7511. "lib/xamarintvos10/_._",
  7512. "lib/xamarinwatchos10/_._",
  7513. "ref/MonoAndroid10/_._",
  7514. "ref/MonoTouch10/_._",
  7515. "ref/net45/_._",
  7516. "ref/netcore50/System.Collections.Concurrent.dll",
  7517. "ref/netcore50/System.Collections.Concurrent.xml",
  7518. "ref/netcore50/de/System.Collections.Concurrent.xml",
  7519. "ref/netcore50/es/System.Collections.Concurrent.xml",
  7520. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  7521. "ref/netcore50/it/System.Collections.Concurrent.xml",
  7522. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  7523. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  7524. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  7525. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  7526. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  7527. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  7528. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  7529. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  7530. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  7531. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  7532. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  7533. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  7534. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  7535. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  7536. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  7537. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  7538. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  7539. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  7540. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  7541. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  7542. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  7543. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  7544. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  7545. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  7546. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  7547. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  7548. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  7549. "ref/portable-net45+win8+wpa81/_._",
  7550. "ref/win8/_._",
  7551. "ref/wpa81/_._",
  7552. "ref/xamarinios10/_._",
  7553. "ref/xamarinmac20/_._",
  7554. "ref/xamarintvos10/_._",
  7555. "ref/xamarinwatchos10/_._",
  7556. "system.collections.concurrent.4.0.12.nupkg.sha512",
  7557. "system.collections.concurrent.nuspec"
  7558. ]
  7559. },
  7560. "System.Collections.Immutable/1.7.0": {
  7561. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  7562. "type": "package",
  7563. "path": "system.collections.immutable/1.7.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "LICENSE.TXT",
  7568. "THIRD-PARTY-NOTICES.TXT",
  7569. "lib/netstandard1.0/System.Collections.Immutable.dll",
  7570. "lib/netstandard1.0/System.Collections.Immutable.xml",
  7571. "lib/netstandard1.3/System.Collections.Immutable.dll",
  7572. "lib/netstandard1.3/System.Collections.Immutable.xml",
  7573. "lib/netstandard2.0/System.Collections.Immutable.dll",
  7574. "lib/netstandard2.0/System.Collections.Immutable.xml",
  7575. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  7576. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  7577. "system.collections.immutable.1.7.0.nupkg.sha512",
  7578. "system.collections.immutable.nuspec",
  7579. "useSharedDesignerContext.txt",
  7580. "version.txt"
  7581. ]
  7582. },
  7583. "System.ComponentModel.Annotations/4.7.0": {
  7584. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  7585. "type": "package",
  7586. "path": "system.componentmodel.annotations/4.7.0",
  7587. "files": [
  7588. ".nupkg.metadata",
  7589. ".signature.p7s",
  7590. "LICENSE.TXT",
  7591. "THIRD-PARTY-NOTICES.TXT",
  7592. "lib/MonoAndroid10/_._",
  7593. "lib/MonoTouch10/_._",
  7594. "lib/net45/_._",
  7595. "lib/net461/System.ComponentModel.Annotations.dll",
  7596. "lib/netcore50/System.ComponentModel.Annotations.dll",
  7597. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  7598. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  7599. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  7600. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  7601. "lib/portable-net45+win8/_._",
  7602. "lib/win8/_._",
  7603. "lib/xamarinios10/_._",
  7604. "lib/xamarinmac20/_._",
  7605. "lib/xamarintvos10/_._",
  7606. "lib/xamarinwatchos10/_._",
  7607. "ref/MonoAndroid10/_._",
  7608. "ref/MonoTouch10/_._",
  7609. "ref/net45/_._",
  7610. "ref/net461/System.ComponentModel.Annotations.dll",
  7611. "ref/net461/System.ComponentModel.Annotations.xml",
  7612. "ref/netcore50/System.ComponentModel.Annotations.dll",
  7613. "ref/netcore50/System.ComponentModel.Annotations.xml",
  7614. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  7615. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  7616. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  7617. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  7618. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  7619. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  7620. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  7621. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  7622. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  7623. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  7624. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  7625. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  7626. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  7627. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  7628. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  7629. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  7630. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  7631. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  7632. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  7633. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  7634. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  7635. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  7636. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  7637. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  7638. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  7639. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  7640. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  7641. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  7642. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  7643. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  7644. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  7645. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  7646. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  7647. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  7648. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  7649. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  7650. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  7651. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  7652. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  7653. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  7654. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  7655. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  7656. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  7657. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  7658. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  7659. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  7660. "ref/portable-net45+win8/_._",
  7661. "ref/win8/_._",
  7662. "ref/xamarinios10/_._",
  7663. "ref/xamarinmac20/_._",
  7664. "ref/xamarintvos10/_._",
  7665. "ref/xamarinwatchos10/_._",
  7666. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  7667. "system.componentmodel.annotations.nuspec",
  7668. "useSharedDesignerContext.txt",
  7669. "version.txt"
  7670. ]
  7671. },
  7672. "System.Configuration.ConfigurationManager/5.0.0": {
  7673. "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
  7674. "type": "package",
  7675. "path": "system.configuration.configurationmanager/5.0.0",
  7676. "files": [
  7677. ".nupkg.metadata",
  7678. ".signature.p7s",
  7679. "Icon.png",
  7680. "LICENSE.TXT",
  7681. "THIRD-PARTY-NOTICES.TXT",
  7682. "lib/net461/System.Configuration.ConfigurationManager.dll",
  7683. "lib/net461/System.Configuration.ConfigurationManager.xml",
  7684. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7685. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7686. "ref/net461/System.Configuration.ConfigurationManager.dll",
  7687. "ref/net461/System.Configuration.ConfigurationManager.xml",
  7688. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7689. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7690. "system.configuration.configurationmanager.5.0.0.nupkg.sha512",
  7691. "system.configuration.configurationmanager.nuspec",
  7692. "useSharedDesignerContext.txt",
  7693. "version.txt"
  7694. ]
  7695. },
  7696. "System.Console/4.0.0": {
  7697. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  7698. "type": "package",
  7699. "path": "system.console/4.0.0",
  7700. "files": [
  7701. ".nupkg.metadata",
  7702. "ThirdPartyNotices.txt",
  7703. "dotnet_library_license.txt",
  7704. "lib/MonoAndroid10/_._",
  7705. "lib/MonoTouch10/_._",
  7706. "lib/net46/System.Console.dll",
  7707. "lib/xamarinios10/_._",
  7708. "lib/xamarinmac20/_._",
  7709. "lib/xamarintvos10/_._",
  7710. "lib/xamarinwatchos10/_._",
  7711. "ref/MonoAndroid10/_._",
  7712. "ref/MonoTouch10/_._",
  7713. "ref/net46/System.Console.dll",
  7714. "ref/netstandard1.3/System.Console.dll",
  7715. "ref/netstandard1.3/System.Console.xml",
  7716. "ref/netstandard1.3/de/System.Console.xml",
  7717. "ref/netstandard1.3/es/System.Console.xml",
  7718. "ref/netstandard1.3/fr/System.Console.xml",
  7719. "ref/netstandard1.3/it/System.Console.xml",
  7720. "ref/netstandard1.3/ja/System.Console.xml",
  7721. "ref/netstandard1.3/ko/System.Console.xml",
  7722. "ref/netstandard1.3/ru/System.Console.xml",
  7723. "ref/netstandard1.3/zh-hans/System.Console.xml",
  7724. "ref/netstandard1.3/zh-hant/System.Console.xml",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "system.console.4.0.0.nupkg.sha512",
  7730. "system.console.nuspec"
  7731. ]
  7732. },
  7733. "System.Diagnostics.Debug/4.0.11": {
  7734. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  7735. "type": "package",
  7736. "path": "system.diagnostics.debug/4.0.11",
  7737. "files": [
  7738. ".nupkg.metadata",
  7739. ".signature.p7s",
  7740. "ThirdPartyNotices.txt",
  7741. "dotnet_library_license.txt",
  7742. "lib/MonoAndroid10/_._",
  7743. "lib/MonoTouch10/_._",
  7744. "lib/net45/_._",
  7745. "lib/portable-net45+win8+wp8+wpa81/_._",
  7746. "lib/win8/_._",
  7747. "lib/wp80/_._",
  7748. "lib/wpa81/_._",
  7749. "lib/xamarinios10/_._",
  7750. "lib/xamarinmac20/_._",
  7751. "lib/xamarintvos10/_._",
  7752. "lib/xamarinwatchos10/_._",
  7753. "ref/MonoAndroid10/_._",
  7754. "ref/MonoTouch10/_._",
  7755. "ref/net45/_._",
  7756. "ref/netcore50/System.Diagnostics.Debug.dll",
  7757. "ref/netcore50/System.Diagnostics.Debug.xml",
  7758. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  7759. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  7760. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  7761. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  7762. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  7763. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  7764. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  7765. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  7766. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  7767. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  7768. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  7769. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  7770. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  7771. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  7772. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  7773. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  7774. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  7775. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  7776. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  7777. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  7778. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  7779. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  7780. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  7781. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  7782. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  7783. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  7784. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  7785. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  7786. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  7787. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  7788. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  7789. "ref/portable-net45+win8+wp8+wpa81/_._",
  7790. "ref/win8/_._",
  7791. "ref/wp80/_._",
  7792. "ref/wpa81/_._",
  7793. "ref/xamarinios10/_._",
  7794. "ref/xamarinmac20/_._",
  7795. "ref/xamarintvos10/_._",
  7796. "ref/xamarinwatchos10/_._",
  7797. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  7798. "system.diagnostics.debug.nuspec"
  7799. ]
  7800. },
  7801. "System.Diagnostics.DiagnosticSource/5.0.0": {
  7802. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  7803. "type": "package",
  7804. "path": "system.diagnostics.diagnosticsource/5.0.0",
  7805. "files": [
  7806. ".nupkg.metadata",
  7807. ".signature.p7s",
  7808. "Icon.png",
  7809. "LICENSE.TXT",
  7810. "THIRD-PARTY-NOTICES.TXT",
  7811. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  7812. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  7813. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  7814. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  7815. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  7816. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  7817. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  7818. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  7819. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  7820. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  7821. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  7822. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  7823. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  7824. "system.diagnostics.diagnosticsource.nuspec",
  7825. "useSharedDesignerContext.txt",
  7826. "version.txt"
  7827. ]
  7828. },
  7829. "System.Diagnostics.EventLog/5.0.0": {
  7830. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  7831. "type": "package",
  7832. "path": "system.diagnostics.eventlog/5.0.0",
  7833. "files": [
  7834. ".nupkg.metadata",
  7835. ".signature.p7s",
  7836. "Icon.png",
  7837. "LICENSE.TXT",
  7838. "THIRD-PARTY-NOTICES.TXT",
  7839. "lib/net461/System.Diagnostics.EventLog.dll",
  7840. "lib/net461/System.Diagnostics.EventLog.xml",
  7841. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  7842. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  7843. "ref/net461/System.Diagnostics.EventLog.dll",
  7844. "ref/net461/System.Diagnostics.EventLog.xml",
  7845. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  7846. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  7847. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  7848. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  7849. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  7850. "system.diagnostics.eventlog.nuspec",
  7851. "useSharedDesignerContext.txt",
  7852. "version.txt"
  7853. ]
  7854. },
  7855. "System.Diagnostics.PerformanceCounter/5.0.0": {
  7856. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  7857. "type": "package",
  7858. "path": "system.diagnostics.performancecounter/5.0.0",
  7859. "files": [
  7860. ".nupkg.metadata",
  7861. ".signature.p7s",
  7862. "Icon.png",
  7863. "LICENSE.TXT",
  7864. "THIRD-PARTY-NOTICES.TXT",
  7865. "lib/MonoAndroid10/_._",
  7866. "lib/MonoTouch10/_._",
  7867. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  7868. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  7869. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  7870. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  7871. "lib/xamarinios10/_._",
  7872. "lib/xamarinmac20/_._",
  7873. "lib/xamarintvos10/_._",
  7874. "lib/xamarinwatchos10/_._",
  7875. "ref/MonoAndroid10/_._",
  7876. "ref/MonoTouch10/_._",
  7877. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  7878. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  7879. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  7880. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  7881. "ref/xamarinios10/_._",
  7882. "ref/xamarinmac20/_._",
  7883. "ref/xamarintvos10/_._",
  7884. "ref/xamarinwatchos10/_._",
  7885. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  7886. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  7887. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  7888. "system.diagnostics.performancecounter.nuspec",
  7889. "useSharedDesignerContext.txt",
  7890. "version.txt"
  7891. ]
  7892. },
  7893. "System.Diagnostics.Tools/4.0.1": {
  7894. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  7895. "type": "package",
  7896. "path": "system.diagnostics.tools/4.0.1",
  7897. "files": [
  7898. ".nupkg.metadata",
  7899. ".signature.p7s",
  7900. "ThirdPartyNotices.txt",
  7901. "dotnet_library_license.txt",
  7902. "lib/MonoAndroid10/_._",
  7903. "lib/MonoTouch10/_._",
  7904. "lib/net45/_._",
  7905. "lib/portable-net45+win8+wp8+wpa81/_._",
  7906. "lib/win8/_._",
  7907. "lib/wp80/_._",
  7908. "lib/wpa81/_._",
  7909. "lib/xamarinios10/_._",
  7910. "lib/xamarinmac20/_._",
  7911. "lib/xamarintvos10/_._",
  7912. "lib/xamarinwatchos10/_._",
  7913. "ref/MonoAndroid10/_._",
  7914. "ref/MonoTouch10/_._",
  7915. "ref/net45/_._",
  7916. "ref/netcore50/System.Diagnostics.Tools.dll",
  7917. "ref/netcore50/System.Diagnostics.Tools.xml",
  7918. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  7919. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  7920. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  7921. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  7922. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  7923. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  7924. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  7925. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  7926. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  7927. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  7928. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  7929. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  7930. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  7931. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  7932. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  7933. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  7934. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  7935. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  7936. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  7937. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  7938. "ref/portable-net45+win8+wp8+wpa81/_._",
  7939. "ref/win8/_._",
  7940. "ref/wp80/_._",
  7941. "ref/wpa81/_._",
  7942. "ref/xamarinios10/_._",
  7943. "ref/xamarinmac20/_._",
  7944. "ref/xamarintvos10/_._",
  7945. "ref/xamarinwatchos10/_._",
  7946. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  7947. "system.diagnostics.tools.nuspec"
  7948. ]
  7949. },
  7950. "System.Diagnostics.TraceSource/4.0.0": {
  7951. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  7952. "type": "package",
  7953. "path": "system.diagnostics.tracesource/4.0.0",
  7954. "files": [
  7955. ".nupkg.metadata",
  7956. ".signature.p7s",
  7957. "ThirdPartyNotices.txt",
  7958. "dotnet_library_license.txt",
  7959. "lib/MonoAndroid10/_._",
  7960. "lib/MonoTouch10/_._",
  7961. "lib/net46/System.Diagnostics.TraceSource.dll",
  7962. "lib/xamarinios10/_._",
  7963. "lib/xamarinmac20/_._",
  7964. "lib/xamarintvos10/_._",
  7965. "lib/xamarinwatchos10/_._",
  7966. "ref/MonoAndroid10/_._",
  7967. "ref/MonoTouch10/_._",
  7968. "ref/net46/System.Diagnostics.TraceSource.dll",
  7969. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7970. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  7971. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  7972. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  7973. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  7974. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  7975. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  7976. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  7977. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  7978. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  7979. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  7980. "ref/xamarinios10/_._",
  7981. "ref/xamarinmac20/_._",
  7982. "ref/xamarintvos10/_._",
  7983. "ref/xamarinwatchos10/_._",
  7984. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7985. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  7986. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  7987. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  7988. "system.diagnostics.tracesource.nuspec"
  7989. ]
  7990. },
  7991. "System.Diagnostics.Tracing/4.1.0": {
  7992. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  7993. "type": "package",
  7994. "path": "system.diagnostics.tracing/4.1.0",
  7995. "files": [
  7996. ".nupkg.metadata",
  7997. ".signature.p7s",
  7998. "ThirdPartyNotices.txt",
  7999. "dotnet_library_license.txt",
  8000. "lib/MonoAndroid10/_._",
  8001. "lib/MonoTouch10/_._",
  8002. "lib/net45/_._",
  8003. "lib/net462/System.Diagnostics.Tracing.dll",
  8004. "lib/portable-net45+win8+wpa81/_._",
  8005. "lib/win8/_._",
  8006. "lib/wpa81/_._",
  8007. "lib/xamarinios10/_._",
  8008. "lib/xamarinmac20/_._",
  8009. "lib/xamarintvos10/_._",
  8010. "lib/xamarinwatchos10/_._",
  8011. "ref/MonoAndroid10/_._",
  8012. "ref/MonoTouch10/_._",
  8013. "ref/net45/_._",
  8014. "ref/net462/System.Diagnostics.Tracing.dll",
  8015. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8016. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8017. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8018. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8019. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8020. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8021. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8022. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8023. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8024. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8025. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8026. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8027. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8028. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8029. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8030. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8031. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8032. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8033. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8034. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8035. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8036. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8037. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8038. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8039. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8040. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8041. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8042. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8043. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8044. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8045. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8046. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8047. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8048. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8049. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8050. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8051. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8052. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8053. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8054. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8055. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8056. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8057. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8058. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8059. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8060. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8061. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8062. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8063. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8064. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8065. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8066. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8067. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8068. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8069. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8070. "ref/portable-net45+win8+wpa81/_._",
  8071. "ref/win8/_._",
  8072. "ref/wpa81/_._",
  8073. "ref/xamarinios10/_._",
  8074. "ref/xamarinmac20/_._",
  8075. "ref/xamarintvos10/_._",
  8076. "ref/xamarinwatchos10/_._",
  8077. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  8078. "system.diagnostics.tracing.nuspec"
  8079. ]
  8080. },
  8081. "System.Diagnostics.Tracing/4.3.0": {
  8082. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  8083. "type": "package",
  8084. "path": "system.diagnostics.tracing/4.3.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/net45/_._",
  8093. "lib/net462/System.Diagnostics.Tracing.dll",
  8094. "lib/portable-net45+win8+wpa81/_._",
  8095. "lib/win8/_._",
  8096. "lib/wpa81/_._",
  8097. "lib/xamarinios10/_._",
  8098. "lib/xamarinmac20/_._",
  8099. "lib/xamarintvos10/_._",
  8100. "lib/xamarinwatchos10/_._",
  8101. "ref/MonoAndroid10/_._",
  8102. "ref/MonoTouch10/_._",
  8103. "ref/net45/_._",
  8104. "ref/net462/System.Diagnostics.Tracing.dll",
  8105. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8106. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8107. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8108. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8109. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8110. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8111. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8112. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8113. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8114. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8115. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8116. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8117. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8118. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8119. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8120. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8121. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8122. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8123. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8124. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8125. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8126. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8127. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8128. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8129. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8130. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8131. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8132. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8133. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8134. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8135. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8136. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8137. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8138. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8139. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8140. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8141. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8142. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8143. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8144. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8145. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8146. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8147. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8148. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8149. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8150. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8151. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8152. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8153. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8154. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8155. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8156. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8157. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8158. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8159. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8160. "ref/portable-net45+win8+wpa81/_._",
  8161. "ref/win8/_._",
  8162. "ref/wpa81/_._",
  8163. "ref/xamarinios10/_._",
  8164. "ref/xamarinmac20/_._",
  8165. "ref/xamarintvos10/_._",
  8166. "ref/xamarinwatchos10/_._",
  8167. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  8168. "system.diagnostics.tracing.nuspec"
  8169. ]
  8170. },
  8171. "System.Drawing.Common/5.0.0": {
  8172. "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
  8173. "type": "package",
  8174. "path": "system.drawing.common/5.0.0",
  8175. "files": [
  8176. ".nupkg.metadata",
  8177. ".signature.p7s",
  8178. "Icon.png",
  8179. "LICENSE.TXT",
  8180. "THIRD-PARTY-NOTICES.TXT",
  8181. "lib/MonoAndroid10/_._",
  8182. "lib/MonoTouch10/_._",
  8183. "lib/net461/System.Drawing.Common.dll",
  8184. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  8185. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  8186. "lib/netstandard2.0/System.Drawing.Common.dll",
  8187. "lib/xamarinios10/_._",
  8188. "lib/xamarinmac20/_._",
  8189. "lib/xamarintvos10/_._",
  8190. "lib/xamarinwatchos10/_._",
  8191. "ref/MonoAndroid10/_._",
  8192. "ref/MonoTouch10/_._",
  8193. "ref/net461/System.Drawing.Common.dll",
  8194. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  8195. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  8196. "ref/netstandard2.0/System.Drawing.Common.dll",
  8197. "ref/xamarinios10/_._",
  8198. "ref/xamarinmac20/_._",
  8199. "ref/xamarintvos10/_._",
  8200. "ref/xamarinwatchos10/_._",
  8201. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  8202. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  8203. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  8204. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  8205. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  8206. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  8207. "system.drawing.common.5.0.0.nupkg.sha512",
  8208. "system.drawing.common.nuspec",
  8209. "useSharedDesignerContext.txt",
  8210. "version.txt"
  8211. ]
  8212. },
  8213. "System.Globalization/4.0.11": {
  8214. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  8215. "type": "package",
  8216. "path": "system.globalization/4.0.11",
  8217. "files": [
  8218. ".nupkg.metadata",
  8219. ".signature.p7s",
  8220. "ThirdPartyNotices.txt",
  8221. "dotnet_library_license.txt",
  8222. "lib/MonoAndroid10/_._",
  8223. "lib/MonoTouch10/_._",
  8224. "lib/net45/_._",
  8225. "lib/portable-net45+win8+wp8+wpa81/_._",
  8226. "lib/win8/_._",
  8227. "lib/wp80/_._",
  8228. "lib/wpa81/_._",
  8229. "lib/xamarinios10/_._",
  8230. "lib/xamarinmac20/_._",
  8231. "lib/xamarintvos10/_._",
  8232. "lib/xamarinwatchos10/_._",
  8233. "ref/MonoAndroid10/_._",
  8234. "ref/MonoTouch10/_._",
  8235. "ref/net45/_._",
  8236. "ref/netcore50/System.Globalization.dll",
  8237. "ref/netcore50/System.Globalization.xml",
  8238. "ref/netcore50/de/System.Globalization.xml",
  8239. "ref/netcore50/es/System.Globalization.xml",
  8240. "ref/netcore50/fr/System.Globalization.xml",
  8241. "ref/netcore50/it/System.Globalization.xml",
  8242. "ref/netcore50/ja/System.Globalization.xml",
  8243. "ref/netcore50/ko/System.Globalization.xml",
  8244. "ref/netcore50/ru/System.Globalization.xml",
  8245. "ref/netcore50/zh-hans/System.Globalization.xml",
  8246. "ref/netcore50/zh-hant/System.Globalization.xml",
  8247. "ref/netstandard1.0/System.Globalization.dll",
  8248. "ref/netstandard1.0/System.Globalization.xml",
  8249. "ref/netstandard1.0/de/System.Globalization.xml",
  8250. "ref/netstandard1.0/es/System.Globalization.xml",
  8251. "ref/netstandard1.0/fr/System.Globalization.xml",
  8252. "ref/netstandard1.0/it/System.Globalization.xml",
  8253. "ref/netstandard1.0/ja/System.Globalization.xml",
  8254. "ref/netstandard1.0/ko/System.Globalization.xml",
  8255. "ref/netstandard1.0/ru/System.Globalization.xml",
  8256. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  8257. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  8258. "ref/netstandard1.3/System.Globalization.dll",
  8259. "ref/netstandard1.3/System.Globalization.xml",
  8260. "ref/netstandard1.3/de/System.Globalization.xml",
  8261. "ref/netstandard1.3/es/System.Globalization.xml",
  8262. "ref/netstandard1.3/fr/System.Globalization.xml",
  8263. "ref/netstandard1.3/it/System.Globalization.xml",
  8264. "ref/netstandard1.3/ja/System.Globalization.xml",
  8265. "ref/netstandard1.3/ko/System.Globalization.xml",
  8266. "ref/netstandard1.3/ru/System.Globalization.xml",
  8267. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  8268. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  8269. "ref/portable-net45+win8+wp8+wpa81/_._",
  8270. "ref/win8/_._",
  8271. "ref/wp80/_._",
  8272. "ref/wpa81/_._",
  8273. "ref/xamarinios10/_._",
  8274. "ref/xamarinmac20/_._",
  8275. "ref/xamarintvos10/_._",
  8276. "ref/xamarinwatchos10/_._",
  8277. "system.globalization.4.0.11.nupkg.sha512",
  8278. "system.globalization.nuspec"
  8279. ]
  8280. },
  8281. "System.Globalization.Calendars/4.0.1": {
  8282. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  8283. "type": "package",
  8284. "path": "system.globalization.calendars/4.0.1",
  8285. "files": [
  8286. ".nupkg.metadata",
  8287. ".signature.p7s",
  8288. "ThirdPartyNotices.txt",
  8289. "dotnet_library_license.txt",
  8290. "lib/MonoAndroid10/_._",
  8291. "lib/MonoTouch10/_._",
  8292. "lib/net46/System.Globalization.Calendars.dll",
  8293. "lib/xamarinios10/_._",
  8294. "lib/xamarinmac20/_._",
  8295. "lib/xamarintvos10/_._",
  8296. "lib/xamarinwatchos10/_._",
  8297. "ref/MonoAndroid10/_._",
  8298. "ref/MonoTouch10/_._",
  8299. "ref/net46/System.Globalization.Calendars.dll",
  8300. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  8301. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  8302. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  8303. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  8304. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  8305. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  8306. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  8307. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  8308. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  8309. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  8310. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  8311. "ref/xamarinios10/_._",
  8312. "ref/xamarinmac20/_._",
  8313. "ref/xamarintvos10/_._",
  8314. "ref/xamarinwatchos10/_._",
  8315. "system.globalization.calendars.4.0.1.nupkg.sha512",
  8316. "system.globalization.calendars.nuspec"
  8317. ]
  8318. },
  8319. "System.Globalization.Extensions/4.0.1": {
  8320. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  8321. "type": "package",
  8322. "path": "system.globalization.extensions/4.0.1",
  8323. "files": [
  8324. ".nupkg.metadata",
  8325. ".signature.p7s",
  8326. "ThirdPartyNotices.txt",
  8327. "dotnet_library_license.txt",
  8328. "lib/MonoAndroid10/_._",
  8329. "lib/MonoTouch10/_._",
  8330. "lib/net46/System.Globalization.Extensions.dll",
  8331. "lib/xamarinios10/_._",
  8332. "lib/xamarinmac20/_._",
  8333. "lib/xamarintvos10/_._",
  8334. "lib/xamarinwatchos10/_._",
  8335. "ref/MonoAndroid10/_._",
  8336. "ref/MonoTouch10/_._",
  8337. "ref/net46/System.Globalization.Extensions.dll",
  8338. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  8339. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  8340. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  8341. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  8342. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  8343. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  8344. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  8345. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  8346. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  8347. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  8348. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  8349. "ref/xamarinios10/_._",
  8350. "ref/xamarinmac20/_._",
  8351. "ref/xamarintvos10/_._",
  8352. "ref/xamarinwatchos10/_._",
  8353. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8354. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  8355. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8356. "system.globalization.extensions.4.0.1.nupkg.sha512",
  8357. "system.globalization.extensions.nuspec"
  8358. ]
  8359. },
  8360. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  8361. "sha512": "j57TBY3Xf989vFUt2C25DpDqM8P4Re1bi4GL3U6L6VVgJr+AZIWmA1SMEOKyaIwSP0rHWimQh4jGxzycidGflQ==",
  8362. "type": "package",
  8363. "path": "system.identitymodel.tokens.jwt/6.11.0",
  8364. "files": [
  8365. ".nupkg.metadata",
  8366. ".signature.p7s",
  8367. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  8368. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  8369. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  8370. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  8371. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  8372. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  8373. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  8374. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  8375. "system.identitymodel.tokens.jwt.6.11.0.nupkg.sha512",
  8376. "system.identitymodel.tokens.jwt.nuspec"
  8377. ]
  8378. },
  8379. "System.IO/4.3.0": {
  8380. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  8381. "type": "package",
  8382. "path": "system.io/4.3.0",
  8383. "files": [
  8384. ".nupkg.metadata",
  8385. ".signature.p7s",
  8386. "ThirdPartyNotices.txt",
  8387. "dotnet_library_license.txt",
  8388. "lib/MonoAndroid10/_._",
  8389. "lib/MonoTouch10/_._",
  8390. "lib/net45/_._",
  8391. "lib/net462/System.IO.dll",
  8392. "lib/portable-net45+win8+wp8+wpa81/_._",
  8393. "lib/win8/_._",
  8394. "lib/wp80/_._",
  8395. "lib/wpa81/_._",
  8396. "lib/xamarinios10/_._",
  8397. "lib/xamarinmac20/_._",
  8398. "lib/xamarintvos10/_._",
  8399. "lib/xamarinwatchos10/_._",
  8400. "ref/MonoAndroid10/_._",
  8401. "ref/MonoTouch10/_._",
  8402. "ref/net45/_._",
  8403. "ref/net462/System.IO.dll",
  8404. "ref/netcore50/System.IO.dll",
  8405. "ref/netcore50/System.IO.xml",
  8406. "ref/netcore50/de/System.IO.xml",
  8407. "ref/netcore50/es/System.IO.xml",
  8408. "ref/netcore50/fr/System.IO.xml",
  8409. "ref/netcore50/it/System.IO.xml",
  8410. "ref/netcore50/ja/System.IO.xml",
  8411. "ref/netcore50/ko/System.IO.xml",
  8412. "ref/netcore50/ru/System.IO.xml",
  8413. "ref/netcore50/zh-hans/System.IO.xml",
  8414. "ref/netcore50/zh-hant/System.IO.xml",
  8415. "ref/netstandard1.0/System.IO.dll",
  8416. "ref/netstandard1.0/System.IO.xml",
  8417. "ref/netstandard1.0/de/System.IO.xml",
  8418. "ref/netstandard1.0/es/System.IO.xml",
  8419. "ref/netstandard1.0/fr/System.IO.xml",
  8420. "ref/netstandard1.0/it/System.IO.xml",
  8421. "ref/netstandard1.0/ja/System.IO.xml",
  8422. "ref/netstandard1.0/ko/System.IO.xml",
  8423. "ref/netstandard1.0/ru/System.IO.xml",
  8424. "ref/netstandard1.0/zh-hans/System.IO.xml",
  8425. "ref/netstandard1.0/zh-hant/System.IO.xml",
  8426. "ref/netstandard1.3/System.IO.dll",
  8427. "ref/netstandard1.3/System.IO.xml",
  8428. "ref/netstandard1.3/de/System.IO.xml",
  8429. "ref/netstandard1.3/es/System.IO.xml",
  8430. "ref/netstandard1.3/fr/System.IO.xml",
  8431. "ref/netstandard1.3/it/System.IO.xml",
  8432. "ref/netstandard1.3/ja/System.IO.xml",
  8433. "ref/netstandard1.3/ko/System.IO.xml",
  8434. "ref/netstandard1.3/ru/System.IO.xml",
  8435. "ref/netstandard1.3/zh-hans/System.IO.xml",
  8436. "ref/netstandard1.3/zh-hant/System.IO.xml",
  8437. "ref/netstandard1.5/System.IO.dll",
  8438. "ref/netstandard1.5/System.IO.xml",
  8439. "ref/netstandard1.5/de/System.IO.xml",
  8440. "ref/netstandard1.5/es/System.IO.xml",
  8441. "ref/netstandard1.5/fr/System.IO.xml",
  8442. "ref/netstandard1.5/it/System.IO.xml",
  8443. "ref/netstandard1.5/ja/System.IO.xml",
  8444. "ref/netstandard1.5/ko/System.IO.xml",
  8445. "ref/netstandard1.5/ru/System.IO.xml",
  8446. "ref/netstandard1.5/zh-hans/System.IO.xml",
  8447. "ref/netstandard1.5/zh-hant/System.IO.xml",
  8448. "ref/portable-net45+win8+wp8+wpa81/_._",
  8449. "ref/win8/_._",
  8450. "ref/wp80/_._",
  8451. "ref/wpa81/_._",
  8452. "ref/xamarinios10/_._",
  8453. "ref/xamarinmac20/_._",
  8454. "ref/xamarintvos10/_._",
  8455. "ref/xamarinwatchos10/_._",
  8456. "system.io.4.3.0.nupkg.sha512",
  8457. "system.io.nuspec"
  8458. ]
  8459. },
  8460. "System.IO.Compression/4.1.0": {
  8461. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  8462. "type": "package",
  8463. "path": "system.io.compression/4.1.0",
  8464. "files": [
  8465. ".nupkg.metadata",
  8466. ".signature.p7s",
  8467. "ThirdPartyNotices.txt",
  8468. "dotnet_library_license.txt",
  8469. "lib/MonoAndroid10/_._",
  8470. "lib/MonoTouch10/_._",
  8471. "lib/net45/_._",
  8472. "lib/net46/System.IO.Compression.dll",
  8473. "lib/portable-net45+win8+wpa81/_._",
  8474. "lib/win8/_._",
  8475. "lib/wpa81/_._",
  8476. "lib/xamarinios10/_._",
  8477. "lib/xamarinmac20/_._",
  8478. "lib/xamarintvos10/_._",
  8479. "lib/xamarinwatchos10/_._",
  8480. "ref/MonoAndroid10/_._",
  8481. "ref/MonoTouch10/_._",
  8482. "ref/net45/_._",
  8483. "ref/net46/System.IO.Compression.dll",
  8484. "ref/netcore50/System.IO.Compression.dll",
  8485. "ref/netcore50/System.IO.Compression.xml",
  8486. "ref/netcore50/de/System.IO.Compression.xml",
  8487. "ref/netcore50/es/System.IO.Compression.xml",
  8488. "ref/netcore50/fr/System.IO.Compression.xml",
  8489. "ref/netcore50/it/System.IO.Compression.xml",
  8490. "ref/netcore50/ja/System.IO.Compression.xml",
  8491. "ref/netcore50/ko/System.IO.Compression.xml",
  8492. "ref/netcore50/ru/System.IO.Compression.xml",
  8493. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  8494. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  8495. "ref/netstandard1.1/System.IO.Compression.dll",
  8496. "ref/netstandard1.1/System.IO.Compression.xml",
  8497. "ref/netstandard1.1/de/System.IO.Compression.xml",
  8498. "ref/netstandard1.1/es/System.IO.Compression.xml",
  8499. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  8500. "ref/netstandard1.1/it/System.IO.Compression.xml",
  8501. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  8502. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  8503. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  8504. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  8505. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  8506. "ref/netstandard1.3/System.IO.Compression.dll",
  8507. "ref/netstandard1.3/System.IO.Compression.xml",
  8508. "ref/netstandard1.3/de/System.IO.Compression.xml",
  8509. "ref/netstandard1.3/es/System.IO.Compression.xml",
  8510. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  8511. "ref/netstandard1.3/it/System.IO.Compression.xml",
  8512. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  8513. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  8514. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  8515. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  8516. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  8517. "ref/portable-net45+win8+wpa81/_._",
  8518. "ref/win8/_._",
  8519. "ref/wpa81/_._",
  8520. "ref/xamarinios10/_._",
  8521. "ref/xamarinmac20/_._",
  8522. "ref/xamarintvos10/_._",
  8523. "ref/xamarinwatchos10/_._",
  8524. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  8525. "runtimes/win/lib/net46/System.IO.Compression.dll",
  8526. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  8527. "system.io.compression.4.1.0.nupkg.sha512",
  8528. "system.io.compression.nuspec"
  8529. ]
  8530. },
  8531. "System.IO.Compression.ZipFile/4.0.1": {
  8532. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  8533. "type": "package",
  8534. "path": "system.io.compression.zipfile/4.0.1",
  8535. "files": [
  8536. ".nupkg.metadata",
  8537. ".signature.p7s",
  8538. "ThirdPartyNotices.txt",
  8539. "dotnet_library_license.txt",
  8540. "lib/MonoAndroid10/_._",
  8541. "lib/MonoTouch10/_._",
  8542. "lib/net46/System.IO.Compression.ZipFile.dll",
  8543. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  8544. "lib/xamarinios10/_._",
  8545. "lib/xamarinmac20/_._",
  8546. "lib/xamarintvos10/_._",
  8547. "lib/xamarinwatchos10/_._",
  8548. "ref/MonoAndroid10/_._",
  8549. "ref/MonoTouch10/_._",
  8550. "ref/net46/System.IO.Compression.ZipFile.dll",
  8551. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  8552. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  8553. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  8554. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  8555. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  8556. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  8557. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  8558. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  8559. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  8560. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  8561. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  8562. "ref/xamarinios10/_._",
  8563. "ref/xamarinmac20/_._",
  8564. "ref/xamarintvos10/_._",
  8565. "ref/xamarinwatchos10/_._",
  8566. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  8567. "system.io.compression.zipfile.nuspec"
  8568. ]
  8569. },
  8570. "System.IO.FileSystem/4.0.1": {
  8571. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  8572. "type": "package",
  8573. "path": "system.io.filesystem/4.0.1",
  8574. "files": [
  8575. ".nupkg.metadata",
  8576. ".signature.p7s",
  8577. "ThirdPartyNotices.txt",
  8578. "dotnet_library_license.txt",
  8579. "lib/MonoAndroid10/_._",
  8580. "lib/MonoTouch10/_._",
  8581. "lib/net46/System.IO.FileSystem.dll",
  8582. "lib/xamarinios10/_._",
  8583. "lib/xamarinmac20/_._",
  8584. "lib/xamarintvos10/_._",
  8585. "lib/xamarinwatchos10/_._",
  8586. "ref/MonoAndroid10/_._",
  8587. "ref/MonoTouch10/_._",
  8588. "ref/net46/System.IO.FileSystem.dll",
  8589. "ref/netstandard1.3/System.IO.FileSystem.dll",
  8590. "ref/netstandard1.3/System.IO.FileSystem.xml",
  8591. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  8592. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  8593. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  8594. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  8595. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  8596. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  8597. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  8598. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  8599. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  8600. "ref/xamarinios10/_._",
  8601. "ref/xamarinmac20/_._",
  8602. "ref/xamarintvos10/_._",
  8603. "ref/xamarinwatchos10/_._",
  8604. "system.io.filesystem.4.0.1.nupkg.sha512",
  8605. "system.io.filesystem.nuspec"
  8606. ]
  8607. },
  8608. "System.IO.FileSystem.Primitives/4.0.1": {
  8609. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  8610. "type": "package",
  8611. "path": "system.io.filesystem.primitives/4.0.1",
  8612. "files": [
  8613. ".nupkg.metadata",
  8614. ".signature.p7s",
  8615. "ThirdPartyNotices.txt",
  8616. "dotnet_library_license.txt",
  8617. "lib/MonoAndroid10/_._",
  8618. "lib/MonoTouch10/_._",
  8619. "lib/net46/System.IO.FileSystem.Primitives.dll",
  8620. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8621. "lib/xamarinios10/_._",
  8622. "lib/xamarinmac20/_._",
  8623. "lib/xamarintvos10/_._",
  8624. "lib/xamarinwatchos10/_._",
  8625. "ref/MonoAndroid10/_._",
  8626. "ref/MonoTouch10/_._",
  8627. "ref/net46/System.IO.FileSystem.Primitives.dll",
  8628. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8629. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  8630. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  8631. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  8632. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  8633. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  8634. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  8635. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  8636. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  8637. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  8638. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  8639. "ref/xamarinios10/_._",
  8640. "ref/xamarinmac20/_._",
  8641. "ref/xamarintvos10/_._",
  8642. "ref/xamarinwatchos10/_._",
  8643. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  8644. "system.io.filesystem.primitives.nuspec"
  8645. ]
  8646. },
  8647. "System.IO.Pipelines/5.0.0": {
  8648. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  8649. "type": "package",
  8650. "path": "system.io.pipelines/5.0.0",
  8651. "files": [
  8652. ".nupkg.metadata",
  8653. ".signature.p7s",
  8654. "Icon.png",
  8655. "LICENSE.TXT",
  8656. "THIRD-PARTY-NOTICES.TXT",
  8657. "lib/net461/System.IO.Pipelines.dll",
  8658. "lib/net461/System.IO.Pipelines.xml",
  8659. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  8660. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  8661. "lib/netstandard1.3/System.IO.Pipelines.dll",
  8662. "lib/netstandard1.3/System.IO.Pipelines.xml",
  8663. "lib/netstandard2.0/System.IO.Pipelines.dll",
  8664. "lib/netstandard2.0/System.IO.Pipelines.xml",
  8665. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  8666. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  8667. "system.io.pipelines.5.0.0.nupkg.sha512",
  8668. "system.io.pipelines.nuspec",
  8669. "useSharedDesignerContext.txt",
  8670. "version.txt"
  8671. ]
  8672. },
  8673. "System.Linq/4.1.0": {
  8674. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  8675. "type": "package",
  8676. "path": "system.linq/4.1.0",
  8677. "files": [
  8678. ".nupkg.metadata",
  8679. ".signature.p7s",
  8680. "ThirdPartyNotices.txt",
  8681. "dotnet_library_license.txt",
  8682. "lib/MonoAndroid10/_._",
  8683. "lib/MonoTouch10/_._",
  8684. "lib/net45/_._",
  8685. "lib/net463/System.Linq.dll",
  8686. "lib/netcore50/System.Linq.dll",
  8687. "lib/netstandard1.6/System.Linq.dll",
  8688. "lib/portable-net45+win8+wp8+wpa81/_._",
  8689. "lib/win8/_._",
  8690. "lib/wp80/_._",
  8691. "lib/wpa81/_._",
  8692. "lib/xamarinios10/_._",
  8693. "lib/xamarinmac20/_._",
  8694. "lib/xamarintvos10/_._",
  8695. "lib/xamarinwatchos10/_._",
  8696. "ref/MonoAndroid10/_._",
  8697. "ref/MonoTouch10/_._",
  8698. "ref/net45/_._",
  8699. "ref/net463/System.Linq.dll",
  8700. "ref/netcore50/System.Linq.dll",
  8701. "ref/netcore50/System.Linq.xml",
  8702. "ref/netcore50/de/System.Linq.xml",
  8703. "ref/netcore50/es/System.Linq.xml",
  8704. "ref/netcore50/fr/System.Linq.xml",
  8705. "ref/netcore50/it/System.Linq.xml",
  8706. "ref/netcore50/ja/System.Linq.xml",
  8707. "ref/netcore50/ko/System.Linq.xml",
  8708. "ref/netcore50/ru/System.Linq.xml",
  8709. "ref/netcore50/zh-hans/System.Linq.xml",
  8710. "ref/netcore50/zh-hant/System.Linq.xml",
  8711. "ref/netstandard1.0/System.Linq.dll",
  8712. "ref/netstandard1.0/System.Linq.xml",
  8713. "ref/netstandard1.0/de/System.Linq.xml",
  8714. "ref/netstandard1.0/es/System.Linq.xml",
  8715. "ref/netstandard1.0/fr/System.Linq.xml",
  8716. "ref/netstandard1.0/it/System.Linq.xml",
  8717. "ref/netstandard1.0/ja/System.Linq.xml",
  8718. "ref/netstandard1.0/ko/System.Linq.xml",
  8719. "ref/netstandard1.0/ru/System.Linq.xml",
  8720. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  8721. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  8722. "ref/netstandard1.6/System.Linq.dll",
  8723. "ref/netstandard1.6/System.Linq.xml",
  8724. "ref/netstandard1.6/de/System.Linq.xml",
  8725. "ref/netstandard1.6/es/System.Linq.xml",
  8726. "ref/netstandard1.6/fr/System.Linq.xml",
  8727. "ref/netstandard1.6/it/System.Linq.xml",
  8728. "ref/netstandard1.6/ja/System.Linq.xml",
  8729. "ref/netstandard1.6/ko/System.Linq.xml",
  8730. "ref/netstandard1.6/ru/System.Linq.xml",
  8731. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  8732. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  8733. "ref/portable-net45+win8+wp8+wpa81/_._",
  8734. "ref/win8/_._",
  8735. "ref/wp80/_._",
  8736. "ref/wpa81/_._",
  8737. "ref/xamarinios10/_._",
  8738. "ref/xamarinmac20/_._",
  8739. "ref/xamarintvos10/_._",
  8740. "ref/xamarinwatchos10/_._",
  8741. "system.linq.4.1.0.nupkg.sha512",
  8742. "system.linq.nuspec"
  8743. ]
  8744. },
  8745. "System.Linq.Expressions/4.1.0": {
  8746. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  8747. "type": "package",
  8748. "path": "system.linq.expressions/4.1.0",
  8749. "files": [
  8750. ".nupkg.metadata",
  8751. ".signature.p7s",
  8752. "ThirdPartyNotices.txt",
  8753. "dotnet_library_license.txt",
  8754. "lib/MonoAndroid10/_._",
  8755. "lib/MonoTouch10/_._",
  8756. "lib/net45/_._",
  8757. "lib/net463/System.Linq.Expressions.dll",
  8758. "lib/netcore50/System.Linq.Expressions.dll",
  8759. "lib/netstandard1.6/System.Linq.Expressions.dll",
  8760. "lib/portable-net45+win8+wp8+wpa81/_._",
  8761. "lib/win8/_._",
  8762. "lib/wp80/_._",
  8763. "lib/wpa81/_._",
  8764. "lib/xamarinios10/_._",
  8765. "lib/xamarinmac20/_._",
  8766. "lib/xamarintvos10/_._",
  8767. "lib/xamarinwatchos10/_._",
  8768. "ref/MonoAndroid10/_._",
  8769. "ref/MonoTouch10/_._",
  8770. "ref/net45/_._",
  8771. "ref/net463/System.Linq.Expressions.dll",
  8772. "ref/netcore50/System.Linq.Expressions.dll",
  8773. "ref/netcore50/System.Linq.Expressions.xml",
  8774. "ref/netcore50/de/System.Linq.Expressions.xml",
  8775. "ref/netcore50/es/System.Linq.Expressions.xml",
  8776. "ref/netcore50/fr/System.Linq.Expressions.xml",
  8777. "ref/netcore50/it/System.Linq.Expressions.xml",
  8778. "ref/netcore50/ja/System.Linq.Expressions.xml",
  8779. "ref/netcore50/ko/System.Linq.Expressions.xml",
  8780. "ref/netcore50/ru/System.Linq.Expressions.xml",
  8781. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  8782. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  8783. "ref/netstandard1.0/System.Linq.Expressions.dll",
  8784. "ref/netstandard1.0/System.Linq.Expressions.xml",
  8785. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  8786. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  8787. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  8788. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  8789. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  8790. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  8791. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  8792. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  8793. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  8794. "ref/netstandard1.3/System.Linq.Expressions.dll",
  8795. "ref/netstandard1.3/System.Linq.Expressions.xml",
  8796. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  8797. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  8798. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  8799. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  8800. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  8801. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  8802. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  8803. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  8804. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  8805. "ref/netstandard1.6/System.Linq.Expressions.dll",
  8806. "ref/netstandard1.6/System.Linq.Expressions.xml",
  8807. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  8808. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  8809. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  8810. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  8811. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  8812. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  8813. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  8814. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  8815. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  8816. "ref/portable-net45+win8+wp8+wpa81/_._",
  8817. "ref/win8/_._",
  8818. "ref/wp80/_._",
  8819. "ref/wpa81/_._",
  8820. "ref/xamarinios10/_._",
  8821. "ref/xamarinmac20/_._",
  8822. "ref/xamarintvos10/_._",
  8823. "ref/xamarinwatchos10/_._",
  8824. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  8825. "system.linq.expressions.4.1.0.nupkg.sha512",
  8826. "system.linq.expressions.nuspec"
  8827. ]
  8828. },
  8829. "System.Memory/4.5.3": {
  8830. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  8831. "type": "package",
  8832. "path": "system.memory/4.5.3",
  8833. "files": [
  8834. ".nupkg.metadata",
  8835. ".signature.p7s",
  8836. "LICENSE.TXT",
  8837. "THIRD-PARTY-NOTICES.TXT",
  8838. "lib/netcoreapp2.1/_._",
  8839. "lib/netstandard1.1/System.Memory.dll",
  8840. "lib/netstandard1.1/System.Memory.xml",
  8841. "lib/netstandard2.0/System.Memory.dll",
  8842. "lib/netstandard2.0/System.Memory.xml",
  8843. "ref/netcoreapp2.1/_._",
  8844. "system.memory.4.5.3.nupkg.sha512",
  8845. "system.memory.nuspec",
  8846. "useSharedDesignerContext.txt",
  8847. "version.txt"
  8848. ]
  8849. },
  8850. "System.Net.Http/4.1.0": {
  8851. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  8852. "type": "package",
  8853. "path": "system.net.http/4.1.0",
  8854. "files": [
  8855. ".nupkg.metadata",
  8856. ".signature.p7s",
  8857. "ThirdPartyNotices.txt",
  8858. "dotnet_library_license.txt",
  8859. "lib/Xamarinmac20/_._",
  8860. "lib/monoandroid10/_._",
  8861. "lib/monotouch10/_._",
  8862. "lib/net45/_._",
  8863. "lib/net46/System.Net.Http.dll",
  8864. "lib/portable-net45+win8+wpa81/_._",
  8865. "lib/win8/_._",
  8866. "lib/wpa81/_._",
  8867. "lib/xamarinios10/_._",
  8868. "lib/xamarintvos10/_._",
  8869. "lib/xamarinwatchos10/_._",
  8870. "ref/Xamarinmac20/_._",
  8871. "ref/monoandroid10/_._",
  8872. "ref/monotouch10/_._",
  8873. "ref/net45/_._",
  8874. "ref/net46/System.Net.Http.dll",
  8875. "ref/net46/System.Net.Http.xml",
  8876. "ref/net46/de/System.Net.Http.xml",
  8877. "ref/net46/es/System.Net.Http.xml",
  8878. "ref/net46/fr/System.Net.Http.xml",
  8879. "ref/net46/it/System.Net.Http.xml",
  8880. "ref/net46/ja/System.Net.Http.xml",
  8881. "ref/net46/ko/System.Net.Http.xml",
  8882. "ref/net46/ru/System.Net.Http.xml",
  8883. "ref/net46/zh-hans/System.Net.Http.xml",
  8884. "ref/net46/zh-hant/System.Net.Http.xml",
  8885. "ref/netcore50/System.Net.Http.dll",
  8886. "ref/netcore50/System.Net.Http.xml",
  8887. "ref/netcore50/de/System.Net.Http.xml",
  8888. "ref/netcore50/es/System.Net.Http.xml",
  8889. "ref/netcore50/fr/System.Net.Http.xml",
  8890. "ref/netcore50/it/System.Net.Http.xml",
  8891. "ref/netcore50/ja/System.Net.Http.xml",
  8892. "ref/netcore50/ko/System.Net.Http.xml",
  8893. "ref/netcore50/ru/System.Net.Http.xml",
  8894. "ref/netcore50/zh-hans/System.Net.Http.xml",
  8895. "ref/netcore50/zh-hant/System.Net.Http.xml",
  8896. "ref/netstandard1.1/System.Net.Http.dll",
  8897. "ref/netstandard1.1/System.Net.Http.xml",
  8898. "ref/netstandard1.1/de/System.Net.Http.xml",
  8899. "ref/netstandard1.1/es/System.Net.Http.xml",
  8900. "ref/netstandard1.1/fr/System.Net.Http.xml",
  8901. "ref/netstandard1.1/it/System.Net.Http.xml",
  8902. "ref/netstandard1.1/ja/System.Net.Http.xml",
  8903. "ref/netstandard1.1/ko/System.Net.Http.xml",
  8904. "ref/netstandard1.1/ru/System.Net.Http.xml",
  8905. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  8906. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  8907. "ref/netstandard1.3/System.Net.Http.dll",
  8908. "ref/netstandard1.3/System.Net.Http.xml",
  8909. "ref/netstandard1.3/de/System.Net.Http.xml",
  8910. "ref/netstandard1.3/es/System.Net.Http.xml",
  8911. "ref/netstandard1.3/fr/System.Net.Http.xml",
  8912. "ref/netstandard1.3/it/System.Net.Http.xml",
  8913. "ref/netstandard1.3/ja/System.Net.Http.xml",
  8914. "ref/netstandard1.3/ko/System.Net.Http.xml",
  8915. "ref/netstandard1.3/ru/System.Net.Http.xml",
  8916. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  8917. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  8918. "ref/portable-net45+win8+wpa81/_._",
  8919. "ref/win8/_._",
  8920. "ref/wpa81/_._",
  8921. "ref/xamarinios10/_._",
  8922. "ref/xamarintvos10/_._",
  8923. "ref/xamarinwatchos10/_._",
  8924. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  8925. "runtimes/win/lib/net46/System.Net.Http.dll",
  8926. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  8927. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  8928. "system.net.http.4.1.0.nupkg.sha512",
  8929. "system.net.http.nuspec"
  8930. ]
  8931. },
  8932. "System.Net.NameResolution/4.0.0": {
  8933. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  8934. "type": "package",
  8935. "path": "system.net.nameresolution/4.0.0",
  8936. "files": [
  8937. ".nupkg.metadata",
  8938. ".signature.p7s",
  8939. "ThirdPartyNotices.txt",
  8940. "dotnet_library_license.txt",
  8941. "lib/MonoAndroid10/_._",
  8942. "lib/MonoTouch10/_._",
  8943. "lib/net46/System.Net.NameResolution.dll",
  8944. "lib/xamarinios10/_._",
  8945. "lib/xamarinmac20/_._",
  8946. "lib/xamarintvos10/_._",
  8947. "lib/xamarinwatchos10/_._",
  8948. "ref/MonoAndroid10/_._",
  8949. "ref/MonoTouch10/_._",
  8950. "ref/net46/System.Net.NameResolution.dll",
  8951. "ref/netstandard1.3/System.Net.NameResolution.dll",
  8952. "ref/netstandard1.3/System.Net.NameResolution.xml",
  8953. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  8954. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  8955. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  8956. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  8957. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  8958. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  8959. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  8960. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  8961. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  8962. "ref/xamarinios10/_._",
  8963. "ref/xamarinmac20/_._",
  8964. "ref/xamarintvos10/_._",
  8965. "ref/xamarinwatchos10/_._",
  8966. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  8967. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  8968. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  8969. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  8970. "system.net.nameresolution.4.0.0.nupkg.sha512",
  8971. "system.net.nameresolution.nuspec"
  8972. ]
  8973. },
  8974. "System.Net.NameResolution/4.3.0": {
  8975. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  8976. "type": "package",
  8977. "path": "system.net.nameresolution/4.3.0",
  8978. "files": [
  8979. ".nupkg.metadata",
  8980. ".signature.p7s",
  8981. "ThirdPartyNotices.txt",
  8982. "dotnet_library_license.txt",
  8983. "lib/MonoAndroid10/_._",
  8984. "lib/MonoTouch10/_._",
  8985. "lib/net46/System.Net.NameResolution.dll",
  8986. "lib/xamarinios10/_._",
  8987. "lib/xamarinmac20/_._",
  8988. "lib/xamarintvos10/_._",
  8989. "lib/xamarinwatchos10/_._",
  8990. "ref/MonoAndroid10/_._",
  8991. "ref/MonoTouch10/_._",
  8992. "ref/net46/System.Net.NameResolution.dll",
  8993. "ref/netstandard1.3/System.Net.NameResolution.dll",
  8994. "ref/netstandard1.3/System.Net.NameResolution.xml",
  8995. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  8996. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  8997. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  8998. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  8999. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  9000. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  9001. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  9002. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  9003. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  9004. "ref/xamarinios10/_._",
  9005. "ref/xamarinmac20/_._",
  9006. "ref/xamarintvos10/_._",
  9007. "ref/xamarinwatchos10/_._",
  9008. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  9009. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  9010. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  9011. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  9012. "system.net.nameresolution.4.3.0.nupkg.sha512",
  9013. "system.net.nameresolution.nuspec"
  9014. ]
  9015. },
  9016. "System.Net.Primitives/4.0.11": {
  9017. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  9018. "type": "package",
  9019. "path": "system.net.primitives/4.0.11",
  9020. "files": [
  9021. ".nupkg.metadata",
  9022. ".signature.p7s",
  9023. "ThirdPartyNotices.txt",
  9024. "dotnet_library_license.txt",
  9025. "lib/MonoAndroid10/_._",
  9026. "lib/MonoTouch10/_._",
  9027. "lib/net45/_._",
  9028. "lib/portable-net45+win8+wp8+wpa81/_._",
  9029. "lib/win8/_._",
  9030. "lib/wp80/_._",
  9031. "lib/wpa81/_._",
  9032. "lib/xamarinios10/_._",
  9033. "lib/xamarinmac20/_._",
  9034. "lib/xamarintvos10/_._",
  9035. "lib/xamarinwatchos10/_._",
  9036. "ref/MonoAndroid10/_._",
  9037. "ref/MonoTouch10/_._",
  9038. "ref/net45/_._",
  9039. "ref/netcore50/System.Net.Primitives.dll",
  9040. "ref/netcore50/System.Net.Primitives.xml",
  9041. "ref/netcore50/de/System.Net.Primitives.xml",
  9042. "ref/netcore50/es/System.Net.Primitives.xml",
  9043. "ref/netcore50/fr/System.Net.Primitives.xml",
  9044. "ref/netcore50/it/System.Net.Primitives.xml",
  9045. "ref/netcore50/ja/System.Net.Primitives.xml",
  9046. "ref/netcore50/ko/System.Net.Primitives.xml",
  9047. "ref/netcore50/ru/System.Net.Primitives.xml",
  9048. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  9049. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  9050. "ref/netstandard1.0/System.Net.Primitives.dll",
  9051. "ref/netstandard1.0/System.Net.Primitives.xml",
  9052. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  9053. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  9054. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  9055. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  9056. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  9057. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  9058. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  9059. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  9060. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  9061. "ref/netstandard1.1/System.Net.Primitives.dll",
  9062. "ref/netstandard1.1/System.Net.Primitives.xml",
  9063. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  9064. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  9065. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  9066. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  9067. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  9068. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  9069. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  9070. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  9071. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  9072. "ref/netstandard1.3/System.Net.Primitives.dll",
  9073. "ref/netstandard1.3/System.Net.Primitives.xml",
  9074. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  9075. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  9076. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  9077. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  9078. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  9079. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  9080. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  9081. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  9082. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  9083. "ref/portable-net45+win8+wp8+wpa81/_._",
  9084. "ref/win8/_._",
  9085. "ref/wp80/_._",
  9086. "ref/wpa81/_._",
  9087. "ref/xamarinios10/_._",
  9088. "ref/xamarinmac20/_._",
  9089. "ref/xamarintvos10/_._",
  9090. "ref/xamarinwatchos10/_._",
  9091. "system.net.primitives.4.0.11.nupkg.sha512",
  9092. "system.net.primitives.nuspec"
  9093. ]
  9094. },
  9095. "System.Net.Sockets/4.1.0": {
  9096. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  9097. "type": "package",
  9098. "path": "system.net.sockets/4.1.0",
  9099. "files": [
  9100. ".nupkg.metadata",
  9101. ".signature.p7s",
  9102. "ThirdPartyNotices.txt",
  9103. "dotnet_library_license.txt",
  9104. "lib/MonoAndroid10/_._",
  9105. "lib/MonoTouch10/_._",
  9106. "lib/net46/System.Net.Sockets.dll",
  9107. "lib/xamarinios10/_._",
  9108. "lib/xamarinmac20/_._",
  9109. "lib/xamarintvos10/_._",
  9110. "lib/xamarinwatchos10/_._",
  9111. "ref/MonoAndroid10/_._",
  9112. "ref/MonoTouch10/_._",
  9113. "ref/net46/System.Net.Sockets.dll",
  9114. "ref/netstandard1.3/System.Net.Sockets.dll",
  9115. "ref/netstandard1.3/System.Net.Sockets.xml",
  9116. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  9117. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  9118. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  9119. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  9120. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  9121. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  9122. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  9123. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  9124. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  9125. "ref/xamarinios10/_._",
  9126. "ref/xamarinmac20/_._",
  9127. "ref/xamarintvos10/_._",
  9128. "ref/xamarinwatchos10/_._",
  9129. "system.net.sockets.4.1.0.nupkg.sha512",
  9130. "system.net.sockets.nuspec"
  9131. ]
  9132. },
  9133. "System.ObjectModel/4.0.12": {
  9134. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  9135. "type": "package",
  9136. "path": "system.objectmodel/4.0.12",
  9137. "files": [
  9138. ".nupkg.metadata",
  9139. ".signature.p7s",
  9140. "ThirdPartyNotices.txt",
  9141. "dotnet_library_license.txt",
  9142. "lib/MonoAndroid10/_._",
  9143. "lib/MonoTouch10/_._",
  9144. "lib/net45/_._",
  9145. "lib/netcore50/System.ObjectModel.dll",
  9146. "lib/netstandard1.3/System.ObjectModel.dll",
  9147. "lib/portable-net45+win8+wp8+wpa81/_._",
  9148. "lib/win8/_._",
  9149. "lib/wp80/_._",
  9150. "lib/wpa81/_._",
  9151. "lib/xamarinios10/_._",
  9152. "lib/xamarinmac20/_._",
  9153. "lib/xamarintvos10/_._",
  9154. "lib/xamarinwatchos10/_._",
  9155. "ref/MonoAndroid10/_._",
  9156. "ref/MonoTouch10/_._",
  9157. "ref/net45/_._",
  9158. "ref/netcore50/System.ObjectModel.dll",
  9159. "ref/netcore50/System.ObjectModel.xml",
  9160. "ref/netcore50/de/System.ObjectModel.xml",
  9161. "ref/netcore50/es/System.ObjectModel.xml",
  9162. "ref/netcore50/fr/System.ObjectModel.xml",
  9163. "ref/netcore50/it/System.ObjectModel.xml",
  9164. "ref/netcore50/ja/System.ObjectModel.xml",
  9165. "ref/netcore50/ko/System.ObjectModel.xml",
  9166. "ref/netcore50/ru/System.ObjectModel.xml",
  9167. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  9168. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  9169. "ref/netstandard1.0/System.ObjectModel.dll",
  9170. "ref/netstandard1.0/System.ObjectModel.xml",
  9171. "ref/netstandard1.0/de/System.ObjectModel.xml",
  9172. "ref/netstandard1.0/es/System.ObjectModel.xml",
  9173. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  9174. "ref/netstandard1.0/it/System.ObjectModel.xml",
  9175. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  9176. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  9177. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  9178. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  9179. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  9180. "ref/netstandard1.3/System.ObjectModel.dll",
  9181. "ref/netstandard1.3/System.ObjectModel.xml",
  9182. "ref/netstandard1.3/de/System.ObjectModel.xml",
  9183. "ref/netstandard1.3/es/System.ObjectModel.xml",
  9184. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  9185. "ref/netstandard1.3/it/System.ObjectModel.xml",
  9186. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  9187. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  9188. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  9189. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  9190. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  9191. "ref/portable-net45+win8+wp8+wpa81/_._",
  9192. "ref/win8/_._",
  9193. "ref/wp80/_._",
  9194. "ref/wpa81/_._",
  9195. "ref/xamarinios10/_._",
  9196. "ref/xamarinmac20/_._",
  9197. "ref/xamarintvos10/_._",
  9198. "ref/xamarinwatchos10/_._",
  9199. "system.objectmodel.4.0.12.nupkg.sha512",
  9200. "system.objectmodel.nuspec"
  9201. ]
  9202. },
  9203. "System.Private.Uri/4.3.0": {
  9204. "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
  9205. "type": "package",
  9206. "path": "system.private.uri/4.3.0",
  9207. "files": [
  9208. ".nupkg.metadata",
  9209. ".signature.p7s",
  9210. "ThirdPartyNotices.txt",
  9211. "dotnet_library_license.txt",
  9212. "ref/netstandard/_._",
  9213. "system.private.uri.4.3.0.nupkg.sha512",
  9214. "system.private.uri.nuspec"
  9215. ]
  9216. },
  9217. "System.Reflection/4.3.0": {
  9218. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  9219. "type": "package",
  9220. "path": "system.reflection/4.3.0",
  9221. "files": [
  9222. ".nupkg.metadata",
  9223. ".signature.p7s",
  9224. "ThirdPartyNotices.txt",
  9225. "dotnet_library_license.txt",
  9226. "lib/MonoAndroid10/_._",
  9227. "lib/MonoTouch10/_._",
  9228. "lib/net45/_._",
  9229. "lib/net462/System.Reflection.dll",
  9230. "lib/portable-net45+win8+wp8+wpa81/_._",
  9231. "lib/win8/_._",
  9232. "lib/wp80/_._",
  9233. "lib/wpa81/_._",
  9234. "lib/xamarinios10/_._",
  9235. "lib/xamarinmac20/_._",
  9236. "lib/xamarintvos10/_._",
  9237. "lib/xamarinwatchos10/_._",
  9238. "ref/MonoAndroid10/_._",
  9239. "ref/MonoTouch10/_._",
  9240. "ref/net45/_._",
  9241. "ref/net462/System.Reflection.dll",
  9242. "ref/netcore50/System.Reflection.dll",
  9243. "ref/netcore50/System.Reflection.xml",
  9244. "ref/netcore50/de/System.Reflection.xml",
  9245. "ref/netcore50/es/System.Reflection.xml",
  9246. "ref/netcore50/fr/System.Reflection.xml",
  9247. "ref/netcore50/it/System.Reflection.xml",
  9248. "ref/netcore50/ja/System.Reflection.xml",
  9249. "ref/netcore50/ko/System.Reflection.xml",
  9250. "ref/netcore50/ru/System.Reflection.xml",
  9251. "ref/netcore50/zh-hans/System.Reflection.xml",
  9252. "ref/netcore50/zh-hant/System.Reflection.xml",
  9253. "ref/netstandard1.0/System.Reflection.dll",
  9254. "ref/netstandard1.0/System.Reflection.xml",
  9255. "ref/netstandard1.0/de/System.Reflection.xml",
  9256. "ref/netstandard1.0/es/System.Reflection.xml",
  9257. "ref/netstandard1.0/fr/System.Reflection.xml",
  9258. "ref/netstandard1.0/it/System.Reflection.xml",
  9259. "ref/netstandard1.0/ja/System.Reflection.xml",
  9260. "ref/netstandard1.0/ko/System.Reflection.xml",
  9261. "ref/netstandard1.0/ru/System.Reflection.xml",
  9262. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  9263. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  9264. "ref/netstandard1.3/System.Reflection.dll",
  9265. "ref/netstandard1.3/System.Reflection.xml",
  9266. "ref/netstandard1.3/de/System.Reflection.xml",
  9267. "ref/netstandard1.3/es/System.Reflection.xml",
  9268. "ref/netstandard1.3/fr/System.Reflection.xml",
  9269. "ref/netstandard1.3/it/System.Reflection.xml",
  9270. "ref/netstandard1.3/ja/System.Reflection.xml",
  9271. "ref/netstandard1.3/ko/System.Reflection.xml",
  9272. "ref/netstandard1.3/ru/System.Reflection.xml",
  9273. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  9274. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  9275. "ref/netstandard1.5/System.Reflection.dll",
  9276. "ref/netstandard1.5/System.Reflection.xml",
  9277. "ref/netstandard1.5/de/System.Reflection.xml",
  9278. "ref/netstandard1.5/es/System.Reflection.xml",
  9279. "ref/netstandard1.5/fr/System.Reflection.xml",
  9280. "ref/netstandard1.5/it/System.Reflection.xml",
  9281. "ref/netstandard1.5/ja/System.Reflection.xml",
  9282. "ref/netstandard1.5/ko/System.Reflection.xml",
  9283. "ref/netstandard1.5/ru/System.Reflection.xml",
  9284. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  9285. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  9286. "ref/portable-net45+win8+wp8+wpa81/_._",
  9287. "ref/win8/_._",
  9288. "ref/wp80/_._",
  9289. "ref/wpa81/_._",
  9290. "ref/xamarinios10/_._",
  9291. "ref/xamarinmac20/_._",
  9292. "ref/xamarintvos10/_._",
  9293. "ref/xamarinwatchos10/_._",
  9294. "system.reflection.4.3.0.nupkg.sha512",
  9295. "system.reflection.nuspec"
  9296. ]
  9297. },
  9298. "System.Reflection.Emit/4.7.0": {
  9299. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  9300. "type": "package",
  9301. "path": "system.reflection.emit/4.7.0",
  9302. "files": [
  9303. ".nupkg.metadata",
  9304. ".signature.p7s",
  9305. "LICENSE.TXT",
  9306. "THIRD-PARTY-NOTICES.TXT",
  9307. "lib/MonoAndroid10/_._",
  9308. "lib/MonoTouch10/_._",
  9309. "lib/net45/_._",
  9310. "lib/netcore50/System.Reflection.Emit.dll",
  9311. "lib/netcoreapp2.0/_._",
  9312. "lib/netstandard1.1/System.Reflection.Emit.dll",
  9313. "lib/netstandard1.1/System.Reflection.Emit.xml",
  9314. "lib/netstandard1.3/System.Reflection.Emit.dll",
  9315. "lib/netstandard2.0/System.Reflection.Emit.dll",
  9316. "lib/netstandard2.0/System.Reflection.Emit.xml",
  9317. "lib/netstandard2.1/_._",
  9318. "lib/xamarinios10/_._",
  9319. "lib/xamarinmac20/_._",
  9320. "lib/xamarintvos10/_._",
  9321. "lib/xamarinwatchos10/_._",
  9322. "ref/MonoAndroid10/_._",
  9323. "ref/MonoTouch10/_._",
  9324. "ref/net45/_._",
  9325. "ref/netcoreapp2.0/_._",
  9326. "ref/netstandard1.1/System.Reflection.Emit.dll",
  9327. "ref/netstandard1.1/System.Reflection.Emit.xml",
  9328. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  9329. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  9330. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  9331. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  9332. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  9333. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  9334. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  9335. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  9336. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  9337. "ref/netstandard2.0/System.Reflection.Emit.dll",
  9338. "ref/netstandard2.0/System.Reflection.Emit.xml",
  9339. "ref/netstandard2.1/_._",
  9340. "ref/xamarinios10/_._",
  9341. "ref/xamarinmac20/_._",
  9342. "ref/xamarintvos10/_._",
  9343. "ref/xamarinwatchos10/_._",
  9344. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  9345. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  9346. "system.reflection.emit.4.7.0.nupkg.sha512",
  9347. "system.reflection.emit.nuspec",
  9348. "useSharedDesignerContext.txt",
  9349. "version.txt"
  9350. ]
  9351. },
  9352. "System.Reflection.Emit.ILGeneration/4.0.1": {
  9353. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  9354. "type": "package",
  9355. "path": "system.reflection.emit.ilgeneration/4.0.1",
  9356. "files": [
  9357. ".nupkg.metadata",
  9358. ".signature.p7s",
  9359. "ThirdPartyNotices.txt",
  9360. "dotnet_library_license.txt",
  9361. "lib/net45/_._",
  9362. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  9363. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  9364. "lib/portable-net45+wp8/_._",
  9365. "lib/wp80/_._",
  9366. "ref/net45/_._",
  9367. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  9368. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  9369. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  9370. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  9371. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  9372. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  9373. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  9374. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  9375. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  9376. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  9377. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  9378. "ref/portable-net45+wp8/_._",
  9379. "ref/wp80/_._",
  9380. "runtimes/aot/lib/netcore50/_._",
  9381. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  9382. "system.reflection.emit.ilgeneration.nuspec"
  9383. ]
  9384. },
  9385. "System.Reflection.Emit.Lightweight/4.0.1": {
  9386. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  9387. "type": "package",
  9388. "path": "system.reflection.emit.lightweight/4.0.1",
  9389. "files": [
  9390. ".nupkg.metadata",
  9391. ".signature.p7s",
  9392. "ThirdPartyNotices.txt",
  9393. "dotnet_library_license.txt",
  9394. "lib/net45/_._",
  9395. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9396. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  9397. "lib/portable-net45+wp8/_._",
  9398. "lib/wp80/_._",
  9399. "ref/net45/_._",
  9400. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9401. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9402. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  9403. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  9404. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  9405. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  9406. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  9407. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  9408. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  9409. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  9410. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  9411. "ref/portable-net45+wp8/_._",
  9412. "ref/wp80/_._",
  9413. "runtimes/aot/lib/netcore50/_._",
  9414. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  9415. "system.reflection.emit.lightweight.nuspec"
  9416. ]
  9417. },
  9418. "System.Reflection.Extensions/4.0.1": {
  9419. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  9420. "type": "package",
  9421. "path": "system.reflection.extensions/4.0.1",
  9422. "files": [
  9423. ".nupkg.metadata",
  9424. ".signature.p7s",
  9425. "ThirdPartyNotices.txt",
  9426. "dotnet_library_license.txt",
  9427. "lib/MonoAndroid10/_._",
  9428. "lib/MonoTouch10/_._",
  9429. "lib/net45/_._",
  9430. "lib/portable-net45+win8+wp8+wpa81/_._",
  9431. "lib/win8/_._",
  9432. "lib/wp80/_._",
  9433. "lib/wpa81/_._",
  9434. "lib/xamarinios10/_._",
  9435. "lib/xamarinmac20/_._",
  9436. "lib/xamarintvos10/_._",
  9437. "lib/xamarinwatchos10/_._",
  9438. "ref/MonoAndroid10/_._",
  9439. "ref/MonoTouch10/_._",
  9440. "ref/net45/_._",
  9441. "ref/netcore50/System.Reflection.Extensions.dll",
  9442. "ref/netcore50/System.Reflection.Extensions.xml",
  9443. "ref/netcore50/de/System.Reflection.Extensions.xml",
  9444. "ref/netcore50/es/System.Reflection.Extensions.xml",
  9445. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  9446. "ref/netcore50/it/System.Reflection.Extensions.xml",
  9447. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  9448. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  9449. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  9450. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  9451. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  9452. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  9453. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  9454. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  9455. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  9456. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  9457. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  9458. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  9459. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  9460. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  9461. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  9462. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  9463. "ref/portable-net45+win8+wp8+wpa81/_._",
  9464. "ref/win8/_._",
  9465. "ref/wp80/_._",
  9466. "ref/wpa81/_._",
  9467. "ref/xamarinios10/_._",
  9468. "ref/xamarinmac20/_._",
  9469. "ref/xamarintvos10/_._",
  9470. "ref/xamarinwatchos10/_._",
  9471. "system.reflection.extensions.4.0.1.nupkg.sha512",
  9472. "system.reflection.extensions.nuspec"
  9473. ]
  9474. },
  9475. "System.Reflection.Primitives/4.3.0": {
  9476. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  9477. "type": "package",
  9478. "path": "system.reflection.primitives/4.3.0",
  9479. "files": [
  9480. ".nupkg.metadata",
  9481. ".signature.p7s",
  9482. "ThirdPartyNotices.txt",
  9483. "dotnet_library_license.txt",
  9484. "lib/MonoAndroid10/_._",
  9485. "lib/MonoTouch10/_._",
  9486. "lib/net45/_._",
  9487. "lib/portable-net45+win8+wp8+wpa81/_._",
  9488. "lib/win8/_._",
  9489. "lib/wp80/_._",
  9490. "lib/wpa81/_._",
  9491. "lib/xamarinios10/_._",
  9492. "lib/xamarinmac20/_._",
  9493. "lib/xamarintvos10/_._",
  9494. "lib/xamarinwatchos10/_._",
  9495. "ref/MonoAndroid10/_._",
  9496. "ref/MonoTouch10/_._",
  9497. "ref/net45/_._",
  9498. "ref/netcore50/System.Reflection.Primitives.dll",
  9499. "ref/netcore50/System.Reflection.Primitives.xml",
  9500. "ref/netcore50/de/System.Reflection.Primitives.xml",
  9501. "ref/netcore50/es/System.Reflection.Primitives.xml",
  9502. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  9503. "ref/netcore50/it/System.Reflection.Primitives.xml",
  9504. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  9505. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  9506. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  9507. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  9508. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  9509. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  9510. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  9511. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  9512. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  9513. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  9514. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  9515. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  9516. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  9517. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  9518. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  9519. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  9520. "ref/portable-net45+win8+wp8+wpa81/_._",
  9521. "ref/win8/_._",
  9522. "ref/wp80/_._",
  9523. "ref/wpa81/_._",
  9524. "ref/xamarinios10/_._",
  9525. "ref/xamarinmac20/_._",
  9526. "ref/xamarintvos10/_._",
  9527. "ref/xamarinwatchos10/_._",
  9528. "system.reflection.primitives.4.3.0.nupkg.sha512",
  9529. "system.reflection.primitives.nuspec"
  9530. ]
  9531. },
  9532. "System.Reflection.TypeExtensions/4.1.0": {
  9533. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  9534. "type": "package",
  9535. "path": "system.reflection.typeextensions/4.1.0",
  9536. "files": [
  9537. ".nupkg.metadata",
  9538. ".signature.p7s",
  9539. "ThirdPartyNotices.txt",
  9540. "dotnet_library_license.txt",
  9541. "lib/MonoAndroid10/_._",
  9542. "lib/MonoTouch10/_._",
  9543. "lib/net46/System.Reflection.TypeExtensions.dll",
  9544. "lib/net462/System.Reflection.TypeExtensions.dll",
  9545. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  9546. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9547. "lib/xamarinios10/_._",
  9548. "lib/xamarinmac20/_._",
  9549. "lib/xamarintvos10/_._",
  9550. "lib/xamarinwatchos10/_._",
  9551. "ref/MonoAndroid10/_._",
  9552. "ref/MonoTouch10/_._",
  9553. "ref/net46/System.Reflection.TypeExtensions.dll",
  9554. "ref/net462/System.Reflection.TypeExtensions.dll",
  9555. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  9556. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  9557. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  9558. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  9559. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  9560. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  9561. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  9562. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  9563. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  9564. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  9565. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  9566. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9567. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  9568. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  9569. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  9570. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  9571. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  9572. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  9573. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  9574. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  9575. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  9576. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  9577. "ref/xamarinios10/_._",
  9578. "ref/xamarinmac20/_._",
  9579. "ref/xamarintvos10/_._",
  9580. "ref/xamarinwatchos10/_._",
  9581. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  9582. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  9583. "system.reflection.typeextensions.nuspec"
  9584. ]
  9585. },
  9586. "System.Resources.ResourceManager/4.0.1": {
  9587. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  9588. "type": "package",
  9589. "path": "system.resources.resourcemanager/4.0.1",
  9590. "files": [
  9591. ".nupkg.metadata",
  9592. ".signature.p7s",
  9593. "ThirdPartyNotices.txt",
  9594. "dotnet_library_license.txt",
  9595. "lib/MonoAndroid10/_._",
  9596. "lib/MonoTouch10/_._",
  9597. "lib/net45/_._",
  9598. "lib/portable-net45+win8+wp8+wpa81/_._",
  9599. "lib/win8/_._",
  9600. "lib/wp80/_._",
  9601. "lib/wpa81/_._",
  9602. "lib/xamarinios10/_._",
  9603. "lib/xamarinmac20/_._",
  9604. "lib/xamarintvos10/_._",
  9605. "lib/xamarinwatchos10/_._",
  9606. "ref/MonoAndroid10/_._",
  9607. "ref/MonoTouch10/_._",
  9608. "ref/net45/_._",
  9609. "ref/netcore50/System.Resources.ResourceManager.dll",
  9610. "ref/netcore50/System.Resources.ResourceManager.xml",
  9611. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  9612. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  9613. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  9614. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  9615. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  9616. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  9617. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  9618. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  9619. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  9620. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  9621. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  9622. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  9623. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  9624. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  9625. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  9626. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  9627. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  9628. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  9629. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  9630. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  9631. "ref/portable-net45+win8+wp8+wpa81/_._",
  9632. "ref/win8/_._",
  9633. "ref/wp80/_._",
  9634. "ref/wpa81/_._",
  9635. "ref/xamarinios10/_._",
  9636. "ref/xamarinmac20/_._",
  9637. "ref/xamarintvos10/_._",
  9638. "ref/xamarinwatchos10/_._",
  9639. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  9640. "system.resources.resourcemanager.nuspec"
  9641. ]
  9642. },
  9643. "System.Resources.ResourceManager/4.3.0": {
  9644. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  9645. "type": "package",
  9646. "path": "system.resources.resourcemanager/4.3.0",
  9647. "files": [
  9648. ".nupkg.metadata",
  9649. ".signature.p7s",
  9650. "ThirdPartyNotices.txt",
  9651. "dotnet_library_license.txt",
  9652. "lib/MonoAndroid10/_._",
  9653. "lib/MonoTouch10/_._",
  9654. "lib/net45/_._",
  9655. "lib/portable-net45+win8+wp8+wpa81/_._",
  9656. "lib/win8/_._",
  9657. "lib/wp80/_._",
  9658. "lib/wpa81/_._",
  9659. "lib/xamarinios10/_._",
  9660. "lib/xamarinmac20/_._",
  9661. "lib/xamarintvos10/_._",
  9662. "lib/xamarinwatchos10/_._",
  9663. "ref/MonoAndroid10/_._",
  9664. "ref/MonoTouch10/_._",
  9665. "ref/net45/_._",
  9666. "ref/netcore50/System.Resources.ResourceManager.dll",
  9667. "ref/netcore50/System.Resources.ResourceManager.xml",
  9668. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  9669. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  9670. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  9671. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  9672. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  9673. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  9674. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  9675. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  9676. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  9677. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  9678. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  9679. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  9680. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  9681. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  9682. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  9683. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  9684. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  9685. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  9686. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  9687. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  9688. "ref/portable-net45+win8+wp8+wpa81/_._",
  9689. "ref/win8/_._",
  9690. "ref/wp80/_._",
  9691. "ref/wpa81/_._",
  9692. "ref/xamarinios10/_._",
  9693. "ref/xamarinmac20/_._",
  9694. "ref/xamarintvos10/_._",
  9695. "ref/xamarinwatchos10/_._",
  9696. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  9697. "system.resources.resourcemanager.nuspec"
  9698. ]
  9699. },
  9700. "System.Runtime/4.3.0": {
  9701. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  9702. "type": "package",
  9703. "path": "system.runtime/4.3.0",
  9704. "files": [
  9705. ".nupkg.metadata",
  9706. ".signature.p7s",
  9707. "ThirdPartyNotices.txt",
  9708. "dotnet_library_license.txt",
  9709. "lib/MonoAndroid10/_._",
  9710. "lib/MonoTouch10/_._",
  9711. "lib/net45/_._",
  9712. "lib/net462/System.Runtime.dll",
  9713. "lib/portable-net45+win8+wp80+wpa81/_._",
  9714. "lib/win8/_._",
  9715. "lib/wp80/_._",
  9716. "lib/wpa81/_._",
  9717. "lib/xamarinios10/_._",
  9718. "lib/xamarinmac20/_._",
  9719. "lib/xamarintvos10/_._",
  9720. "lib/xamarinwatchos10/_._",
  9721. "ref/MonoAndroid10/_._",
  9722. "ref/MonoTouch10/_._",
  9723. "ref/net45/_._",
  9724. "ref/net462/System.Runtime.dll",
  9725. "ref/netcore50/System.Runtime.dll",
  9726. "ref/netcore50/System.Runtime.xml",
  9727. "ref/netcore50/de/System.Runtime.xml",
  9728. "ref/netcore50/es/System.Runtime.xml",
  9729. "ref/netcore50/fr/System.Runtime.xml",
  9730. "ref/netcore50/it/System.Runtime.xml",
  9731. "ref/netcore50/ja/System.Runtime.xml",
  9732. "ref/netcore50/ko/System.Runtime.xml",
  9733. "ref/netcore50/ru/System.Runtime.xml",
  9734. "ref/netcore50/zh-hans/System.Runtime.xml",
  9735. "ref/netcore50/zh-hant/System.Runtime.xml",
  9736. "ref/netstandard1.0/System.Runtime.dll",
  9737. "ref/netstandard1.0/System.Runtime.xml",
  9738. "ref/netstandard1.0/de/System.Runtime.xml",
  9739. "ref/netstandard1.0/es/System.Runtime.xml",
  9740. "ref/netstandard1.0/fr/System.Runtime.xml",
  9741. "ref/netstandard1.0/it/System.Runtime.xml",
  9742. "ref/netstandard1.0/ja/System.Runtime.xml",
  9743. "ref/netstandard1.0/ko/System.Runtime.xml",
  9744. "ref/netstandard1.0/ru/System.Runtime.xml",
  9745. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  9746. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  9747. "ref/netstandard1.2/System.Runtime.dll",
  9748. "ref/netstandard1.2/System.Runtime.xml",
  9749. "ref/netstandard1.2/de/System.Runtime.xml",
  9750. "ref/netstandard1.2/es/System.Runtime.xml",
  9751. "ref/netstandard1.2/fr/System.Runtime.xml",
  9752. "ref/netstandard1.2/it/System.Runtime.xml",
  9753. "ref/netstandard1.2/ja/System.Runtime.xml",
  9754. "ref/netstandard1.2/ko/System.Runtime.xml",
  9755. "ref/netstandard1.2/ru/System.Runtime.xml",
  9756. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  9757. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  9758. "ref/netstandard1.3/System.Runtime.dll",
  9759. "ref/netstandard1.3/System.Runtime.xml",
  9760. "ref/netstandard1.3/de/System.Runtime.xml",
  9761. "ref/netstandard1.3/es/System.Runtime.xml",
  9762. "ref/netstandard1.3/fr/System.Runtime.xml",
  9763. "ref/netstandard1.3/it/System.Runtime.xml",
  9764. "ref/netstandard1.3/ja/System.Runtime.xml",
  9765. "ref/netstandard1.3/ko/System.Runtime.xml",
  9766. "ref/netstandard1.3/ru/System.Runtime.xml",
  9767. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  9768. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  9769. "ref/netstandard1.5/System.Runtime.dll",
  9770. "ref/netstandard1.5/System.Runtime.xml",
  9771. "ref/netstandard1.5/de/System.Runtime.xml",
  9772. "ref/netstandard1.5/es/System.Runtime.xml",
  9773. "ref/netstandard1.5/fr/System.Runtime.xml",
  9774. "ref/netstandard1.5/it/System.Runtime.xml",
  9775. "ref/netstandard1.5/ja/System.Runtime.xml",
  9776. "ref/netstandard1.5/ko/System.Runtime.xml",
  9777. "ref/netstandard1.5/ru/System.Runtime.xml",
  9778. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  9779. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  9780. "ref/portable-net45+win8+wp80+wpa81/_._",
  9781. "ref/win8/_._",
  9782. "ref/wp80/_._",
  9783. "ref/wpa81/_._",
  9784. "ref/xamarinios10/_._",
  9785. "ref/xamarinmac20/_._",
  9786. "ref/xamarintvos10/_._",
  9787. "ref/xamarinwatchos10/_._",
  9788. "system.runtime.4.3.0.nupkg.sha512",
  9789. "system.runtime.nuspec"
  9790. ]
  9791. },
  9792. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  9793. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  9794. "type": "package",
  9795. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  9796. "files": [
  9797. ".nupkg.metadata",
  9798. ".signature.p7s",
  9799. "LICENSE.TXT",
  9800. "THIRD-PARTY-NOTICES.TXT",
  9801. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  9802. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  9803. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  9804. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  9805. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  9806. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  9807. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  9808. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  9809. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  9810. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  9811. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  9812. "system.runtime.compilerservices.unsafe.nuspec",
  9813. "useSharedDesignerContext.txt",
  9814. "version.txt"
  9815. ]
  9816. },
  9817. "System.Runtime.Extensions/4.1.0": {
  9818. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  9819. "type": "package",
  9820. "path": "system.runtime.extensions/4.1.0",
  9821. "files": [
  9822. ".nupkg.metadata",
  9823. ".signature.p7s",
  9824. "ThirdPartyNotices.txt",
  9825. "dotnet_library_license.txt",
  9826. "lib/MonoAndroid10/_._",
  9827. "lib/MonoTouch10/_._",
  9828. "lib/net45/_._",
  9829. "lib/net462/System.Runtime.Extensions.dll",
  9830. "lib/portable-net45+win8+wp8+wpa81/_._",
  9831. "lib/win8/_._",
  9832. "lib/wp80/_._",
  9833. "lib/wpa81/_._",
  9834. "lib/xamarinios10/_._",
  9835. "lib/xamarinmac20/_._",
  9836. "lib/xamarintvos10/_._",
  9837. "lib/xamarinwatchos10/_._",
  9838. "ref/MonoAndroid10/_._",
  9839. "ref/MonoTouch10/_._",
  9840. "ref/net45/_._",
  9841. "ref/net462/System.Runtime.Extensions.dll",
  9842. "ref/netcore50/System.Runtime.Extensions.dll",
  9843. "ref/netcore50/System.Runtime.Extensions.xml",
  9844. "ref/netcore50/de/System.Runtime.Extensions.xml",
  9845. "ref/netcore50/es/System.Runtime.Extensions.xml",
  9846. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  9847. "ref/netcore50/it/System.Runtime.Extensions.xml",
  9848. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  9849. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  9850. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  9851. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  9852. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  9853. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  9854. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  9855. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  9856. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  9857. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  9858. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  9859. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  9860. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  9861. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  9862. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  9863. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  9864. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  9865. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  9866. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  9867. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  9868. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  9869. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  9870. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  9871. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  9872. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  9873. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  9874. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  9875. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  9876. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  9877. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  9878. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  9879. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  9880. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  9881. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  9882. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  9883. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  9884. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  9885. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  9886. "ref/portable-net45+win8+wp8+wpa81/_._",
  9887. "ref/win8/_._",
  9888. "ref/wp80/_._",
  9889. "ref/wpa81/_._",
  9890. "ref/xamarinios10/_._",
  9891. "ref/xamarinmac20/_._",
  9892. "ref/xamarintvos10/_._",
  9893. "ref/xamarinwatchos10/_._",
  9894. "system.runtime.extensions.4.1.0.nupkg.sha512",
  9895. "system.runtime.extensions.nuspec"
  9896. ]
  9897. },
  9898. "System.Runtime.Handles/4.0.1": {
  9899. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  9900. "type": "package",
  9901. "path": "system.runtime.handles/4.0.1",
  9902. "files": [
  9903. ".nupkg.metadata",
  9904. ".signature.p7s",
  9905. "ThirdPartyNotices.txt",
  9906. "dotnet_library_license.txt",
  9907. "lib/MonoAndroid10/_._",
  9908. "lib/MonoTouch10/_._",
  9909. "lib/net46/_._",
  9910. "lib/xamarinios10/_._",
  9911. "lib/xamarinmac20/_._",
  9912. "lib/xamarintvos10/_._",
  9913. "lib/xamarinwatchos10/_._",
  9914. "ref/MonoAndroid10/_._",
  9915. "ref/MonoTouch10/_._",
  9916. "ref/net46/_._",
  9917. "ref/netstandard1.3/System.Runtime.Handles.dll",
  9918. "ref/netstandard1.3/System.Runtime.Handles.xml",
  9919. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  9920. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  9921. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  9922. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  9923. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  9924. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  9925. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  9926. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  9927. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  9928. "ref/xamarinios10/_._",
  9929. "ref/xamarinmac20/_._",
  9930. "ref/xamarintvos10/_._",
  9931. "ref/xamarinwatchos10/_._",
  9932. "system.runtime.handles.4.0.1.nupkg.sha512",
  9933. "system.runtime.handles.nuspec"
  9934. ]
  9935. },
  9936. "System.Runtime.Handles/4.3.0": {
  9937. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  9938. "type": "package",
  9939. "path": "system.runtime.handles/4.3.0",
  9940. "files": [
  9941. ".nupkg.metadata",
  9942. ".signature.p7s",
  9943. "ThirdPartyNotices.txt",
  9944. "dotnet_library_license.txt",
  9945. "lib/MonoAndroid10/_._",
  9946. "lib/MonoTouch10/_._",
  9947. "lib/net46/_._",
  9948. "lib/xamarinios10/_._",
  9949. "lib/xamarinmac20/_._",
  9950. "lib/xamarintvos10/_._",
  9951. "lib/xamarinwatchos10/_._",
  9952. "ref/MonoAndroid10/_._",
  9953. "ref/MonoTouch10/_._",
  9954. "ref/net46/_._",
  9955. "ref/netstandard1.3/System.Runtime.Handles.dll",
  9956. "ref/netstandard1.3/System.Runtime.Handles.xml",
  9957. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  9958. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  9959. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  9960. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  9961. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  9962. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  9963. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  9964. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  9965. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  9966. "ref/xamarinios10/_._",
  9967. "ref/xamarinmac20/_._",
  9968. "ref/xamarintvos10/_._",
  9969. "ref/xamarinwatchos10/_._",
  9970. "system.runtime.handles.4.3.0.nupkg.sha512",
  9971. "system.runtime.handles.nuspec"
  9972. ]
  9973. },
  9974. "System.Runtime.InteropServices/4.1.0": {
  9975. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  9976. "type": "package",
  9977. "path": "system.runtime.interopservices/4.1.0",
  9978. "files": [
  9979. ".nupkg.metadata",
  9980. ".signature.p7s",
  9981. "ThirdPartyNotices.txt",
  9982. "dotnet_library_license.txt",
  9983. "lib/MonoAndroid10/_._",
  9984. "lib/MonoTouch10/_._",
  9985. "lib/net45/_._",
  9986. "lib/net462/System.Runtime.InteropServices.dll",
  9987. "lib/portable-net45+win8+wpa81/_._",
  9988. "lib/win8/_._",
  9989. "lib/wpa81/_._",
  9990. "lib/xamarinios10/_._",
  9991. "lib/xamarinmac20/_._",
  9992. "lib/xamarintvos10/_._",
  9993. "lib/xamarinwatchos10/_._",
  9994. "ref/MonoAndroid10/_._",
  9995. "ref/MonoTouch10/_._",
  9996. "ref/net45/_._",
  9997. "ref/net462/System.Runtime.InteropServices.dll",
  9998. "ref/netcore50/System.Runtime.InteropServices.dll",
  9999. "ref/netcore50/System.Runtime.InteropServices.xml",
  10000. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  10001. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  10002. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  10003. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  10004. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  10005. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  10006. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  10007. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  10008. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  10009. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  10010. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  10011. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  10012. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  10013. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  10014. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  10015. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  10016. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  10017. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10018. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10019. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10020. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10021. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10022. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10023. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10024. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10025. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10026. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10027. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10028. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10029. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10030. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10031. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10032. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10033. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10034. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10035. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10036. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10037. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10038. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10039. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10040. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10041. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10042. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10043. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10044. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10045. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10046. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10047. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10048. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10049. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10050. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10051. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10052. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10053. "ref/portable-net45+win8+wpa81/_._",
  10054. "ref/win8/_._",
  10055. "ref/wpa81/_._",
  10056. "ref/xamarinios10/_._",
  10057. "ref/xamarinmac20/_._",
  10058. "ref/xamarintvos10/_._",
  10059. "ref/xamarinwatchos10/_._",
  10060. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  10061. "system.runtime.interopservices.nuspec"
  10062. ]
  10063. },
  10064. "System.Runtime.InteropServices/4.3.0": {
  10065. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  10066. "type": "package",
  10067. "path": "system.runtime.interopservices/4.3.0",
  10068. "files": [
  10069. ".nupkg.metadata",
  10070. ".signature.p7s",
  10071. "ThirdPartyNotices.txt",
  10072. "dotnet_library_license.txt",
  10073. "lib/MonoAndroid10/_._",
  10074. "lib/MonoTouch10/_._",
  10075. "lib/net45/_._",
  10076. "lib/net462/System.Runtime.InteropServices.dll",
  10077. "lib/net463/System.Runtime.InteropServices.dll",
  10078. "lib/portable-net45+win8+wpa81/_._",
  10079. "lib/win8/_._",
  10080. "lib/wpa81/_._",
  10081. "lib/xamarinios10/_._",
  10082. "lib/xamarinmac20/_._",
  10083. "lib/xamarintvos10/_._",
  10084. "lib/xamarinwatchos10/_._",
  10085. "ref/MonoAndroid10/_._",
  10086. "ref/MonoTouch10/_._",
  10087. "ref/net45/_._",
  10088. "ref/net462/System.Runtime.InteropServices.dll",
  10089. "ref/net463/System.Runtime.InteropServices.dll",
  10090. "ref/netcore50/System.Runtime.InteropServices.dll",
  10091. "ref/netcore50/System.Runtime.InteropServices.xml",
  10092. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  10093. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  10094. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  10095. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  10096. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  10097. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  10098. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  10099. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  10100. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  10101. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  10102. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  10103. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  10104. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  10105. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  10106. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  10107. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  10108. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  10109. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  10110. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10111. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10112. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10113. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10114. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10115. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10116. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10117. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10118. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10119. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10120. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10121. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10122. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10123. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10124. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10125. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10126. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10127. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10128. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10129. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10130. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10131. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10132. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10133. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10134. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10135. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10136. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10137. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10138. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10139. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10140. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10141. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10142. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10143. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10144. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10145. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10146. "ref/portable-net45+win8+wpa81/_._",
  10147. "ref/win8/_._",
  10148. "ref/wpa81/_._",
  10149. "ref/xamarinios10/_._",
  10150. "ref/xamarinmac20/_._",
  10151. "ref/xamarintvos10/_._",
  10152. "ref/xamarinwatchos10/_._",
  10153. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  10154. "system.runtime.interopservices.nuspec"
  10155. ]
  10156. },
  10157. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  10158. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  10159. "type": "package",
  10160. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  10161. "files": [
  10162. ".nupkg.metadata",
  10163. "ThirdPartyNotices.txt",
  10164. "dotnet_library_license.txt",
  10165. "lib/MonoAndroid10/_._",
  10166. "lib/MonoTouch10/_._",
  10167. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10168. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  10169. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  10170. "lib/xamarinios10/_._",
  10171. "lib/xamarinmac20/_._",
  10172. "lib/xamarintvos10/_._",
  10173. "lib/xamarinwatchos10/_._",
  10174. "ref/MonoAndroid10/_._",
  10175. "ref/MonoTouch10/_._",
  10176. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10177. "ref/xamarinios10/_._",
  10178. "ref/xamarinmac20/_._",
  10179. "ref/xamarintvos10/_._",
  10180. "ref/xamarinwatchos10/_._",
  10181. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10182. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10183. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10184. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10185. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10186. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  10187. "system.runtime.interopservices.runtimeinformation.nuspec"
  10188. ]
  10189. },
  10190. "System.Runtime.Numerics/4.0.1": {
  10191. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  10192. "type": "package",
  10193. "path": "system.runtime.numerics/4.0.1",
  10194. "files": [
  10195. ".nupkg.metadata",
  10196. ".signature.p7s",
  10197. "ThirdPartyNotices.txt",
  10198. "dotnet_library_license.txt",
  10199. "lib/MonoAndroid10/_._",
  10200. "lib/MonoTouch10/_._",
  10201. "lib/net45/_._",
  10202. "lib/netcore50/System.Runtime.Numerics.dll",
  10203. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  10204. "lib/portable-net45+win8+wpa81/_._",
  10205. "lib/win8/_._",
  10206. "lib/wpa81/_._",
  10207. "lib/xamarinios10/_._",
  10208. "lib/xamarinmac20/_._",
  10209. "lib/xamarintvos10/_._",
  10210. "lib/xamarinwatchos10/_._",
  10211. "ref/MonoAndroid10/_._",
  10212. "ref/MonoTouch10/_._",
  10213. "ref/net45/_._",
  10214. "ref/netcore50/System.Runtime.Numerics.dll",
  10215. "ref/netcore50/System.Runtime.Numerics.xml",
  10216. "ref/netcore50/de/System.Runtime.Numerics.xml",
  10217. "ref/netcore50/es/System.Runtime.Numerics.xml",
  10218. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  10219. "ref/netcore50/it/System.Runtime.Numerics.xml",
  10220. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  10221. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  10222. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  10223. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  10224. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  10225. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  10226. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  10227. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  10228. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  10229. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  10230. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  10231. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  10232. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  10233. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  10234. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  10235. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  10236. "ref/portable-net45+win8+wpa81/_._",
  10237. "ref/win8/_._",
  10238. "ref/wpa81/_._",
  10239. "ref/xamarinios10/_._",
  10240. "ref/xamarinmac20/_._",
  10241. "ref/xamarintvos10/_._",
  10242. "ref/xamarinwatchos10/_._",
  10243. "system.runtime.numerics.4.0.1.nupkg.sha512",
  10244. "system.runtime.numerics.nuspec"
  10245. ]
  10246. },
  10247. "System.Security.AccessControl/5.0.0": {
  10248. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  10249. "type": "package",
  10250. "path": "system.security.accesscontrol/5.0.0",
  10251. "files": [
  10252. ".nupkg.metadata",
  10253. ".signature.p7s",
  10254. "Icon.png",
  10255. "LICENSE.TXT",
  10256. "THIRD-PARTY-NOTICES.TXT",
  10257. "lib/net46/System.Security.AccessControl.dll",
  10258. "lib/net461/System.Security.AccessControl.dll",
  10259. "lib/net461/System.Security.AccessControl.xml",
  10260. "lib/netstandard1.3/System.Security.AccessControl.dll",
  10261. "lib/netstandard2.0/System.Security.AccessControl.dll",
  10262. "lib/netstandard2.0/System.Security.AccessControl.xml",
  10263. "lib/uap10.0.16299/_._",
  10264. "ref/net46/System.Security.AccessControl.dll",
  10265. "ref/net461/System.Security.AccessControl.dll",
  10266. "ref/net461/System.Security.AccessControl.xml",
  10267. "ref/netstandard1.3/System.Security.AccessControl.dll",
  10268. "ref/netstandard1.3/System.Security.AccessControl.xml",
  10269. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  10270. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  10271. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  10272. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  10273. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  10274. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  10275. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  10276. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  10277. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  10278. "ref/netstandard2.0/System.Security.AccessControl.dll",
  10279. "ref/netstandard2.0/System.Security.AccessControl.xml",
  10280. "ref/uap10.0.16299/_._",
  10281. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  10282. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  10283. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  10284. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  10285. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  10286. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  10287. "runtimes/win/lib/uap10.0.16299/_._",
  10288. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  10289. "system.security.accesscontrol.nuspec",
  10290. "useSharedDesignerContext.txt",
  10291. "version.txt"
  10292. ]
  10293. },
  10294. "System.Security.Cryptography.Algorithms/4.2.0": {
  10295. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  10296. "type": "package",
  10297. "path": "system.security.cryptography.algorithms/4.2.0",
  10298. "files": [
  10299. ".nupkg.metadata",
  10300. ".signature.p7s",
  10301. "ThirdPartyNotices.txt",
  10302. "dotnet_library_license.txt",
  10303. "lib/MonoAndroid10/_._",
  10304. "lib/MonoTouch10/_._",
  10305. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  10306. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  10307. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  10308. "lib/xamarinios10/_._",
  10309. "lib/xamarinmac20/_._",
  10310. "lib/xamarintvos10/_._",
  10311. "lib/xamarinwatchos10/_._",
  10312. "ref/MonoAndroid10/_._",
  10313. "ref/MonoTouch10/_._",
  10314. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  10315. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  10316. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  10317. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  10318. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  10319. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10320. "ref/xamarinios10/_._",
  10321. "ref/xamarinmac20/_._",
  10322. "ref/xamarintvos10/_._",
  10323. "ref/xamarinwatchos10/_._",
  10324. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10325. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  10326. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  10327. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  10328. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  10329. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10330. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  10331. "system.security.cryptography.algorithms.nuspec"
  10332. ]
  10333. },
  10334. "System.Security.Cryptography.Cng/4.5.0": {
  10335. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  10336. "type": "package",
  10337. "path": "system.security.cryptography.cng/4.5.0",
  10338. "files": [
  10339. ".nupkg.metadata",
  10340. ".signature.p7s",
  10341. "LICENSE.TXT",
  10342. "THIRD-PARTY-NOTICES.TXT",
  10343. "lib/MonoAndroid10/_._",
  10344. "lib/MonoTouch10/_._",
  10345. "lib/net46/System.Security.Cryptography.Cng.dll",
  10346. "lib/net461/System.Security.Cryptography.Cng.dll",
  10347. "lib/net462/System.Security.Cryptography.Cng.dll",
  10348. "lib/net47/System.Security.Cryptography.Cng.dll",
  10349. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10350. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10351. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10352. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10353. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10354. "lib/uap10.0.16299/_._",
  10355. "lib/xamarinios10/_._",
  10356. "lib/xamarinmac20/_._",
  10357. "lib/xamarintvos10/_._",
  10358. "lib/xamarinwatchos10/_._",
  10359. "ref/MonoAndroid10/_._",
  10360. "ref/MonoTouch10/_._",
  10361. "ref/net46/System.Security.Cryptography.Cng.dll",
  10362. "ref/net461/System.Security.Cryptography.Cng.dll",
  10363. "ref/net461/System.Security.Cryptography.Cng.xml",
  10364. "ref/net462/System.Security.Cryptography.Cng.dll",
  10365. "ref/net462/System.Security.Cryptography.Cng.xml",
  10366. "ref/net47/System.Security.Cryptography.Cng.dll",
  10367. "ref/net47/System.Security.Cryptography.Cng.xml",
  10368. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10369. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  10370. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10371. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  10372. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10373. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10374. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10375. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10376. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10377. "ref/uap10.0.16299/_._",
  10378. "ref/xamarinios10/_._",
  10379. "ref/xamarinmac20/_._",
  10380. "ref/xamarintvos10/_._",
  10381. "ref/xamarinwatchos10/_._",
  10382. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  10383. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  10384. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  10385. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  10386. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10387. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10388. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10389. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10390. "runtimes/win/lib/uap10.0.16299/_._",
  10391. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  10392. "system.security.cryptography.cng.nuspec",
  10393. "useSharedDesignerContext.txt",
  10394. "version.txt"
  10395. ]
  10396. },
  10397. "System.Security.Cryptography.Csp/4.0.0": {
  10398. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  10399. "type": "package",
  10400. "path": "system.security.cryptography.csp/4.0.0",
  10401. "files": [
  10402. ".nupkg.metadata",
  10403. "ThirdPartyNotices.txt",
  10404. "dotnet_library_license.txt",
  10405. "lib/MonoAndroid10/_._",
  10406. "lib/MonoTouch10/_._",
  10407. "lib/net46/System.Security.Cryptography.Csp.dll",
  10408. "lib/xamarinios10/_._",
  10409. "lib/xamarinmac20/_._",
  10410. "lib/xamarintvos10/_._",
  10411. "lib/xamarinwatchos10/_._",
  10412. "ref/MonoAndroid10/_._",
  10413. "ref/MonoTouch10/_._",
  10414. "ref/net46/System.Security.Cryptography.Csp.dll",
  10415. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10416. "ref/xamarinios10/_._",
  10417. "ref/xamarinmac20/_._",
  10418. "ref/xamarintvos10/_._",
  10419. "ref/xamarinwatchos10/_._",
  10420. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10421. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  10422. "runtimes/win/lib/netcore50/_._",
  10423. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10424. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  10425. "system.security.cryptography.csp.nuspec"
  10426. ]
  10427. },
  10428. "System.Security.Cryptography.Encoding/4.0.0": {
  10429. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  10430. "type": "package",
  10431. "path": "system.security.cryptography.encoding/4.0.0",
  10432. "files": [
  10433. ".nupkg.metadata",
  10434. ".signature.p7s",
  10435. "ThirdPartyNotices.txt",
  10436. "dotnet_library_license.txt",
  10437. "lib/MonoAndroid10/_._",
  10438. "lib/MonoTouch10/_._",
  10439. "lib/net46/System.Security.Cryptography.Encoding.dll",
  10440. "lib/xamarinios10/_._",
  10441. "lib/xamarinmac20/_._",
  10442. "lib/xamarintvos10/_._",
  10443. "lib/xamarinwatchos10/_._",
  10444. "ref/MonoAndroid10/_._",
  10445. "ref/MonoTouch10/_._",
  10446. "ref/net46/System.Security.Cryptography.Encoding.dll",
  10447. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10448. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  10449. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  10450. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  10451. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  10452. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  10453. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  10454. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  10455. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  10456. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  10457. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  10458. "ref/xamarinios10/_._",
  10459. "ref/xamarinmac20/_._",
  10460. "ref/xamarintvos10/_._",
  10461. "ref/xamarinwatchos10/_._",
  10462. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10463. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  10464. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10465. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  10466. "system.security.cryptography.encoding.nuspec"
  10467. ]
  10468. },
  10469. "System.Security.Cryptography.OpenSsl/4.0.0": {
  10470. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  10471. "type": "package",
  10472. "path": "system.security.cryptography.openssl/4.0.0",
  10473. "files": [
  10474. ".nupkg.metadata",
  10475. "ThirdPartyNotices.txt",
  10476. "dotnet_library_license.txt",
  10477. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10478. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10479. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10480. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  10481. "system.security.cryptography.openssl.nuspec"
  10482. ]
  10483. },
  10484. "System.Security.Cryptography.Primitives/4.0.0": {
  10485. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  10486. "type": "package",
  10487. "path": "system.security.cryptography.primitives/4.0.0",
  10488. "files": [
  10489. ".nupkg.metadata",
  10490. ".signature.p7s",
  10491. "ThirdPartyNotices.txt",
  10492. "dotnet_library_license.txt",
  10493. "lib/MonoAndroid10/_._",
  10494. "lib/MonoTouch10/_._",
  10495. "lib/net46/System.Security.Cryptography.Primitives.dll",
  10496. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10497. "lib/xamarinios10/_._",
  10498. "lib/xamarinmac20/_._",
  10499. "lib/xamarintvos10/_._",
  10500. "lib/xamarinwatchos10/_._",
  10501. "ref/MonoAndroid10/_._",
  10502. "ref/MonoTouch10/_._",
  10503. "ref/net46/System.Security.Cryptography.Primitives.dll",
  10504. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10505. "ref/xamarinios10/_._",
  10506. "ref/xamarinmac20/_._",
  10507. "ref/xamarintvos10/_._",
  10508. "ref/xamarinwatchos10/_._",
  10509. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  10510. "system.security.cryptography.primitives.nuspec"
  10511. ]
  10512. },
  10513. "System.Security.Cryptography.ProtectedData/5.0.0": {
  10514. "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
  10515. "type": "package",
  10516. "path": "system.security.cryptography.protecteddata/5.0.0",
  10517. "files": [
  10518. ".nupkg.metadata",
  10519. ".signature.p7s",
  10520. "Icon.png",
  10521. "LICENSE.TXT",
  10522. "THIRD-PARTY-NOTICES.TXT",
  10523. "lib/MonoAndroid10/_._",
  10524. "lib/MonoTouch10/_._",
  10525. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  10526. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10527. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10528. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10529. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10530. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10531. "lib/xamarinios10/_._",
  10532. "lib/xamarinmac20/_._",
  10533. "lib/xamarintvos10/_._",
  10534. "lib/xamarinwatchos10/_._",
  10535. "ref/MonoAndroid10/_._",
  10536. "ref/MonoTouch10/_._",
  10537. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  10538. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  10539. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  10540. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10541. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10542. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10543. "ref/xamarinios10/_._",
  10544. "ref/xamarinmac20/_._",
  10545. "ref/xamarintvos10/_._",
  10546. "ref/xamarinwatchos10/_._",
  10547. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  10548. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10549. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10550. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10551. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10552. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10553. "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
  10554. "system.security.cryptography.protecteddata.nuspec",
  10555. "useSharedDesignerContext.txt",
  10556. "version.txt"
  10557. ]
  10558. },
  10559. "System.Security.Cryptography.X509Certificates/4.1.0": {
  10560. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  10561. "type": "package",
  10562. "path": "system.security.cryptography.x509certificates/4.1.0",
  10563. "files": [
  10564. ".nupkg.metadata",
  10565. ".signature.p7s",
  10566. "ThirdPartyNotices.txt",
  10567. "dotnet_library_license.txt",
  10568. "lib/MonoAndroid10/_._",
  10569. "lib/MonoTouch10/_._",
  10570. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10571. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10572. "lib/xamarinios10/_._",
  10573. "lib/xamarinmac20/_._",
  10574. "lib/xamarintvos10/_._",
  10575. "lib/xamarinwatchos10/_._",
  10576. "ref/MonoAndroid10/_._",
  10577. "ref/MonoTouch10/_._",
  10578. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  10579. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  10580. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  10581. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  10582. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  10583. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  10584. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  10585. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  10586. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  10587. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  10588. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  10589. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10590. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10591. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  10592. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  10593. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  10594. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  10595. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  10596. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  10597. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  10598. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  10599. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  10600. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10601. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10602. "ref/xamarinios10/_._",
  10603. "ref/xamarinmac20/_._",
  10604. "ref/xamarintvos10/_._",
  10605. "ref/xamarinwatchos10/_._",
  10606. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10607. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10608. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10609. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  10610. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10611. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  10612. "system.security.cryptography.x509certificates.nuspec"
  10613. ]
  10614. },
  10615. "System.Security.Permissions/5.0.0": {
  10616. "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
  10617. "type": "package",
  10618. "path": "system.security.permissions/5.0.0",
  10619. "files": [
  10620. ".nupkg.metadata",
  10621. ".signature.p7s",
  10622. "Icon.png",
  10623. "LICENSE.TXT",
  10624. "THIRD-PARTY-NOTICES.TXT",
  10625. "lib/net461/System.Security.Permissions.dll",
  10626. "lib/net461/System.Security.Permissions.xml",
  10627. "lib/net5.0/System.Security.Permissions.dll",
  10628. "lib/net5.0/System.Security.Permissions.xml",
  10629. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  10630. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  10631. "lib/netstandard2.0/System.Security.Permissions.dll",
  10632. "lib/netstandard2.0/System.Security.Permissions.xml",
  10633. "ref/net461/System.Security.Permissions.dll",
  10634. "ref/net461/System.Security.Permissions.xml",
  10635. "ref/net5.0/System.Security.Permissions.dll",
  10636. "ref/net5.0/System.Security.Permissions.xml",
  10637. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  10638. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  10639. "ref/netstandard2.0/System.Security.Permissions.dll",
  10640. "ref/netstandard2.0/System.Security.Permissions.xml",
  10641. "system.security.permissions.5.0.0.nupkg.sha512",
  10642. "system.security.permissions.nuspec",
  10643. "useSharedDesignerContext.txt",
  10644. "version.txt"
  10645. ]
  10646. },
  10647. "System.Security.Principal.Windows/5.0.0": {
  10648. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  10649. "type": "package",
  10650. "path": "system.security.principal.windows/5.0.0",
  10651. "files": [
  10652. ".nupkg.metadata",
  10653. ".signature.p7s",
  10654. "Icon.png",
  10655. "LICENSE.TXT",
  10656. "THIRD-PARTY-NOTICES.TXT",
  10657. "lib/net46/System.Security.Principal.Windows.dll",
  10658. "lib/net461/System.Security.Principal.Windows.dll",
  10659. "lib/net461/System.Security.Principal.Windows.xml",
  10660. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  10661. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  10662. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  10663. "lib/uap10.0.16299/_._",
  10664. "ref/net46/System.Security.Principal.Windows.dll",
  10665. "ref/net461/System.Security.Principal.Windows.dll",
  10666. "ref/net461/System.Security.Principal.Windows.xml",
  10667. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  10668. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  10669. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  10670. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  10671. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  10672. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  10673. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  10674. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  10675. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  10676. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  10677. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  10678. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  10679. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  10680. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  10681. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  10682. "ref/uap10.0.16299/_._",
  10683. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  10684. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  10685. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  10686. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  10687. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  10688. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  10689. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  10690. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  10691. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  10692. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  10693. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  10694. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  10695. "runtimes/win/lib/uap10.0.16299/_._",
  10696. "system.security.principal.windows.5.0.0.nupkg.sha512",
  10697. "system.security.principal.windows.nuspec",
  10698. "useSharedDesignerContext.txt",
  10699. "version.txt"
  10700. ]
  10701. },
  10702. "System.ServiceProcess.ServiceController/5.0.0": {
  10703. "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==",
  10704. "type": "package",
  10705. "path": "system.serviceprocess.servicecontroller/5.0.0",
  10706. "files": [
  10707. ".nupkg.metadata",
  10708. ".signature.p7s",
  10709. "Icon.png",
  10710. "LICENSE.TXT",
  10711. "THIRD-PARTY-NOTICES.TXT",
  10712. "lib/net461/System.ServiceProcess.ServiceController.dll",
  10713. "lib/net461/System.ServiceProcess.ServiceController.xml",
  10714. "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  10715. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  10716. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  10717. "ref/net461/System.ServiceProcess.ServiceController.dll",
  10718. "ref/net461/System.ServiceProcess.ServiceController.xml",
  10719. "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  10720. "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml",
  10721. "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml",
  10722. "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml",
  10723. "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml",
  10724. "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml",
  10725. "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml",
  10726. "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml",
  10727. "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml",
  10728. "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml",
  10729. "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml",
  10730. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  10731. "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  10732. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll",
  10733. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml",
  10734. "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll",
  10735. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  10736. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  10737. "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512",
  10738. "system.serviceprocess.servicecontroller.nuspec",
  10739. "useSharedDesignerContext.txt",
  10740. "version.txt"
  10741. ]
  10742. },
  10743. "System.Text.Encoding/4.3.0": {
  10744. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  10745. "type": "package",
  10746. "path": "system.text.encoding/4.3.0",
  10747. "files": [
  10748. ".nupkg.metadata",
  10749. ".signature.p7s",
  10750. "ThirdPartyNotices.txt",
  10751. "dotnet_library_license.txt",
  10752. "lib/MonoAndroid10/_._",
  10753. "lib/MonoTouch10/_._",
  10754. "lib/net45/_._",
  10755. "lib/portable-net45+win8+wp8+wpa81/_._",
  10756. "lib/win8/_._",
  10757. "lib/wp80/_._",
  10758. "lib/wpa81/_._",
  10759. "lib/xamarinios10/_._",
  10760. "lib/xamarinmac20/_._",
  10761. "lib/xamarintvos10/_._",
  10762. "lib/xamarinwatchos10/_._",
  10763. "ref/MonoAndroid10/_._",
  10764. "ref/MonoTouch10/_._",
  10765. "ref/net45/_._",
  10766. "ref/netcore50/System.Text.Encoding.dll",
  10767. "ref/netcore50/System.Text.Encoding.xml",
  10768. "ref/netcore50/de/System.Text.Encoding.xml",
  10769. "ref/netcore50/es/System.Text.Encoding.xml",
  10770. "ref/netcore50/fr/System.Text.Encoding.xml",
  10771. "ref/netcore50/it/System.Text.Encoding.xml",
  10772. "ref/netcore50/ja/System.Text.Encoding.xml",
  10773. "ref/netcore50/ko/System.Text.Encoding.xml",
  10774. "ref/netcore50/ru/System.Text.Encoding.xml",
  10775. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  10776. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  10777. "ref/netstandard1.0/System.Text.Encoding.dll",
  10778. "ref/netstandard1.0/System.Text.Encoding.xml",
  10779. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  10780. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  10781. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  10782. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  10783. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  10784. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  10785. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  10786. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  10787. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  10788. "ref/netstandard1.3/System.Text.Encoding.dll",
  10789. "ref/netstandard1.3/System.Text.Encoding.xml",
  10790. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  10791. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  10792. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  10793. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  10794. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  10795. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  10796. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  10797. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  10798. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  10799. "ref/portable-net45+win8+wp8+wpa81/_._",
  10800. "ref/win8/_._",
  10801. "ref/wp80/_._",
  10802. "ref/wpa81/_._",
  10803. "ref/xamarinios10/_._",
  10804. "ref/xamarinmac20/_._",
  10805. "ref/xamarintvos10/_._",
  10806. "ref/xamarinwatchos10/_._",
  10807. "system.text.encoding.4.3.0.nupkg.sha512",
  10808. "system.text.encoding.nuspec"
  10809. ]
  10810. },
  10811. "System.Text.Encoding.CodePages/4.5.1": {
  10812. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  10813. "type": "package",
  10814. "path": "system.text.encoding.codepages/4.5.1",
  10815. "files": [
  10816. ".nupkg.metadata",
  10817. ".signature.p7s",
  10818. "LICENSE.TXT",
  10819. "THIRD-PARTY-NOTICES.TXT",
  10820. "lib/MonoAndroid10/_._",
  10821. "lib/MonoTouch10/_._",
  10822. "lib/net46/System.Text.Encoding.CodePages.dll",
  10823. "lib/net461/System.Text.Encoding.CodePages.dll",
  10824. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  10825. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  10826. "lib/xamarinios10/_._",
  10827. "lib/xamarinmac20/_._",
  10828. "lib/xamarintvos10/_._",
  10829. "lib/xamarinwatchos10/_._",
  10830. "ref/MonoAndroid10/_._",
  10831. "ref/MonoTouch10/_._",
  10832. "ref/xamarinios10/_._",
  10833. "ref/xamarinmac20/_._",
  10834. "ref/xamarintvos10/_._",
  10835. "ref/xamarinwatchos10/_._",
  10836. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  10837. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  10838. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  10839. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  10840. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  10841. "system.text.encoding.codepages.nuspec",
  10842. "useSharedDesignerContext.txt",
  10843. "version.txt"
  10844. ]
  10845. },
  10846. "System.Text.Encoding.Extensions/4.0.11": {
  10847. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  10848. "type": "package",
  10849. "path": "system.text.encoding.extensions/4.0.11",
  10850. "files": [
  10851. ".nupkg.metadata",
  10852. ".signature.p7s",
  10853. "ThirdPartyNotices.txt",
  10854. "dotnet_library_license.txt",
  10855. "lib/MonoAndroid10/_._",
  10856. "lib/MonoTouch10/_._",
  10857. "lib/net45/_._",
  10858. "lib/portable-net45+win8+wp8+wpa81/_._",
  10859. "lib/win8/_._",
  10860. "lib/wp80/_._",
  10861. "lib/wpa81/_._",
  10862. "lib/xamarinios10/_._",
  10863. "lib/xamarinmac20/_._",
  10864. "lib/xamarintvos10/_._",
  10865. "lib/xamarinwatchos10/_._",
  10866. "ref/MonoAndroid10/_._",
  10867. "ref/MonoTouch10/_._",
  10868. "ref/net45/_._",
  10869. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  10870. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  10871. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  10872. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  10873. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  10874. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  10875. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  10876. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  10877. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  10878. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  10879. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  10880. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  10881. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  10882. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  10883. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  10884. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  10885. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  10886. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  10887. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  10888. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  10889. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  10890. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  10891. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  10892. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  10893. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  10894. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  10895. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  10896. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  10897. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  10898. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  10899. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  10900. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  10901. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  10902. "ref/portable-net45+win8+wp8+wpa81/_._",
  10903. "ref/win8/_._",
  10904. "ref/wp80/_._",
  10905. "ref/wpa81/_._",
  10906. "ref/xamarinios10/_._",
  10907. "ref/xamarinmac20/_._",
  10908. "ref/xamarintvos10/_._",
  10909. "ref/xamarinwatchos10/_._",
  10910. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  10911. "system.text.encoding.extensions.nuspec"
  10912. ]
  10913. },
  10914. "System.Text.Encoding.Extensions/4.3.0": {
  10915. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  10916. "type": "package",
  10917. "path": "system.text.encoding.extensions/4.3.0",
  10918. "files": [
  10919. ".nupkg.metadata",
  10920. ".signature.p7s",
  10921. "ThirdPartyNotices.txt",
  10922. "dotnet_library_license.txt",
  10923. "lib/MonoAndroid10/_._",
  10924. "lib/MonoTouch10/_._",
  10925. "lib/net45/_._",
  10926. "lib/portable-net45+win8+wp8+wpa81/_._",
  10927. "lib/win8/_._",
  10928. "lib/wp80/_._",
  10929. "lib/wpa81/_._",
  10930. "lib/xamarinios10/_._",
  10931. "lib/xamarinmac20/_._",
  10932. "lib/xamarintvos10/_._",
  10933. "lib/xamarinwatchos10/_._",
  10934. "ref/MonoAndroid10/_._",
  10935. "ref/MonoTouch10/_._",
  10936. "ref/net45/_._",
  10937. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  10938. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  10939. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  10940. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  10941. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  10942. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  10943. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  10944. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  10945. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  10946. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  10947. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  10948. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  10949. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  10950. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  10951. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  10952. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  10953. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  10954. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  10955. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  10956. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  10957. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  10958. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  10959. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  10960. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  10961. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  10962. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  10963. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  10964. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  10965. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  10966. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  10967. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  10968. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  10969. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  10970. "ref/portable-net45+win8+wp8+wpa81/_._",
  10971. "ref/win8/_._",
  10972. "ref/wp80/_._",
  10973. "ref/wpa81/_._",
  10974. "ref/xamarinios10/_._",
  10975. "ref/xamarinmac20/_._",
  10976. "ref/xamarintvos10/_._",
  10977. "ref/xamarinwatchos10/_._",
  10978. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  10979. "system.text.encoding.extensions.nuspec"
  10980. ]
  10981. },
  10982. "System.Text.Json/5.0.0": {
  10983. "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
  10984. "type": "package",
  10985. "path": "system.text.json/5.0.0",
  10986. "files": [
  10987. ".nupkg.metadata",
  10988. ".signature.p7s",
  10989. "Icon.png",
  10990. "LICENSE.TXT",
  10991. "THIRD-PARTY-NOTICES.TXT",
  10992. "lib/net461/System.Text.Json.dll",
  10993. "lib/net461/System.Text.Json.xml",
  10994. "lib/netcoreapp3.0/System.Text.Json.dll",
  10995. "lib/netcoreapp3.0/System.Text.Json.xml",
  10996. "lib/netstandard2.0/System.Text.Json.dll",
  10997. "lib/netstandard2.0/System.Text.Json.xml",
  10998. "system.text.json.5.0.0.nupkg.sha512",
  10999. "system.text.json.nuspec",
  11000. "useSharedDesignerContext.txt",
  11001. "version.txt"
  11002. ]
  11003. },
  11004. "System.Text.RegularExpressions/4.1.0": {
  11005. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  11006. "type": "package",
  11007. "path": "system.text.regularexpressions/4.1.0",
  11008. "files": [
  11009. ".nupkg.metadata",
  11010. ".signature.p7s",
  11011. "ThirdPartyNotices.txt",
  11012. "dotnet_library_license.txt",
  11013. "lib/MonoAndroid10/_._",
  11014. "lib/MonoTouch10/_._",
  11015. "lib/net45/_._",
  11016. "lib/net463/System.Text.RegularExpressions.dll",
  11017. "lib/netcore50/System.Text.RegularExpressions.dll",
  11018. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  11019. "lib/portable-net45+win8+wp8+wpa81/_._",
  11020. "lib/win8/_._",
  11021. "lib/wp80/_._",
  11022. "lib/wpa81/_._",
  11023. "lib/xamarinios10/_._",
  11024. "lib/xamarinmac20/_._",
  11025. "lib/xamarintvos10/_._",
  11026. "lib/xamarinwatchos10/_._",
  11027. "ref/MonoAndroid10/_._",
  11028. "ref/MonoTouch10/_._",
  11029. "ref/net45/_._",
  11030. "ref/net463/System.Text.RegularExpressions.dll",
  11031. "ref/netcore50/System.Text.RegularExpressions.dll",
  11032. "ref/netcore50/System.Text.RegularExpressions.xml",
  11033. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  11034. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  11035. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  11036. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  11037. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  11038. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  11039. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  11040. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  11041. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  11042. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  11043. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  11044. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  11045. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  11046. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  11047. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  11048. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  11049. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  11050. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  11051. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  11052. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  11053. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  11054. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  11055. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  11056. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  11057. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  11058. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  11059. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  11060. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  11061. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  11062. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  11063. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  11064. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  11065. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  11066. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  11067. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  11068. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  11069. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  11070. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  11071. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  11072. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  11073. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  11074. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  11075. "ref/portable-net45+win8+wp8+wpa81/_._",
  11076. "ref/win8/_._",
  11077. "ref/wp80/_._",
  11078. "ref/wpa81/_._",
  11079. "ref/xamarinios10/_._",
  11080. "ref/xamarinmac20/_._",
  11081. "ref/xamarintvos10/_._",
  11082. "ref/xamarinwatchos10/_._",
  11083. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  11084. "system.text.regularexpressions.nuspec"
  11085. ]
  11086. },
  11087. "System.Threading/4.0.11": {
  11088. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  11089. "type": "package",
  11090. "path": "system.threading/4.0.11",
  11091. "files": [
  11092. ".nupkg.metadata",
  11093. ".signature.p7s",
  11094. "ThirdPartyNotices.txt",
  11095. "dotnet_library_license.txt",
  11096. "lib/MonoAndroid10/_._",
  11097. "lib/MonoTouch10/_._",
  11098. "lib/net45/_._",
  11099. "lib/netcore50/System.Threading.dll",
  11100. "lib/netstandard1.3/System.Threading.dll",
  11101. "lib/portable-net45+win8+wp8+wpa81/_._",
  11102. "lib/win8/_._",
  11103. "lib/wp80/_._",
  11104. "lib/wpa81/_._",
  11105. "lib/xamarinios10/_._",
  11106. "lib/xamarinmac20/_._",
  11107. "lib/xamarintvos10/_._",
  11108. "lib/xamarinwatchos10/_._",
  11109. "ref/MonoAndroid10/_._",
  11110. "ref/MonoTouch10/_._",
  11111. "ref/net45/_._",
  11112. "ref/netcore50/System.Threading.dll",
  11113. "ref/netcore50/System.Threading.xml",
  11114. "ref/netcore50/de/System.Threading.xml",
  11115. "ref/netcore50/es/System.Threading.xml",
  11116. "ref/netcore50/fr/System.Threading.xml",
  11117. "ref/netcore50/it/System.Threading.xml",
  11118. "ref/netcore50/ja/System.Threading.xml",
  11119. "ref/netcore50/ko/System.Threading.xml",
  11120. "ref/netcore50/ru/System.Threading.xml",
  11121. "ref/netcore50/zh-hans/System.Threading.xml",
  11122. "ref/netcore50/zh-hant/System.Threading.xml",
  11123. "ref/netstandard1.0/System.Threading.dll",
  11124. "ref/netstandard1.0/System.Threading.xml",
  11125. "ref/netstandard1.0/de/System.Threading.xml",
  11126. "ref/netstandard1.0/es/System.Threading.xml",
  11127. "ref/netstandard1.0/fr/System.Threading.xml",
  11128. "ref/netstandard1.0/it/System.Threading.xml",
  11129. "ref/netstandard1.0/ja/System.Threading.xml",
  11130. "ref/netstandard1.0/ko/System.Threading.xml",
  11131. "ref/netstandard1.0/ru/System.Threading.xml",
  11132. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  11133. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  11134. "ref/netstandard1.3/System.Threading.dll",
  11135. "ref/netstandard1.3/System.Threading.xml",
  11136. "ref/netstandard1.3/de/System.Threading.xml",
  11137. "ref/netstandard1.3/es/System.Threading.xml",
  11138. "ref/netstandard1.3/fr/System.Threading.xml",
  11139. "ref/netstandard1.3/it/System.Threading.xml",
  11140. "ref/netstandard1.3/ja/System.Threading.xml",
  11141. "ref/netstandard1.3/ko/System.Threading.xml",
  11142. "ref/netstandard1.3/ru/System.Threading.xml",
  11143. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  11144. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  11145. "ref/portable-net45+win8+wp8+wpa81/_._",
  11146. "ref/win8/_._",
  11147. "ref/wp80/_._",
  11148. "ref/wpa81/_._",
  11149. "ref/xamarinios10/_._",
  11150. "ref/xamarinmac20/_._",
  11151. "ref/xamarintvos10/_._",
  11152. "ref/xamarinwatchos10/_._",
  11153. "runtimes/aot/lib/netcore50/System.Threading.dll",
  11154. "system.threading.4.0.11.nupkg.sha512",
  11155. "system.threading.nuspec"
  11156. ]
  11157. },
  11158. "System.Threading.Overlapped/4.3.0": {
  11159. "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
  11160. "type": "package",
  11161. "path": "system.threading.overlapped/4.3.0",
  11162. "files": [
  11163. ".nupkg.metadata",
  11164. ".signature.p7s",
  11165. "ThirdPartyNotices.txt",
  11166. "dotnet_library_license.txt",
  11167. "lib/net46/System.Threading.Overlapped.dll",
  11168. "ref/net46/System.Threading.Overlapped.dll",
  11169. "ref/netstandard1.3/System.Threading.Overlapped.dll",
  11170. "ref/netstandard1.3/System.Threading.Overlapped.xml",
  11171. "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
  11172. "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
  11173. "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
  11174. "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
  11175. "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
  11176. "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
  11177. "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
  11178. "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
  11179. "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
  11180. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
  11181. "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
  11182. "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
  11183. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll",
  11184. "system.threading.overlapped.4.3.0.nupkg.sha512",
  11185. "system.threading.overlapped.nuspec"
  11186. ]
  11187. },
  11188. "System.Threading.Tasks/4.3.0": {
  11189. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  11190. "type": "package",
  11191. "path": "system.threading.tasks/4.3.0",
  11192. "files": [
  11193. ".nupkg.metadata",
  11194. ".signature.p7s",
  11195. "ThirdPartyNotices.txt",
  11196. "dotnet_library_license.txt",
  11197. "lib/MonoAndroid10/_._",
  11198. "lib/MonoTouch10/_._",
  11199. "lib/net45/_._",
  11200. "lib/portable-net45+win8+wp8+wpa81/_._",
  11201. "lib/win8/_._",
  11202. "lib/wp80/_._",
  11203. "lib/wpa81/_._",
  11204. "lib/xamarinios10/_._",
  11205. "lib/xamarinmac20/_._",
  11206. "lib/xamarintvos10/_._",
  11207. "lib/xamarinwatchos10/_._",
  11208. "ref/MonoAndroid10/_._",
  11209. "ref/MonoTouch10/_._",
  11210. "ref/net45/_._",
  11211. "ref/netcore50/System.Threading.Tasks.dll",
  11212. "ref/netcore50/System.Threading.Tasks.xml",
  11213. "ref/netcore50/de/System.Threading.Tasks.xml",
  11214. "ref/netcore50/es/System.Threading.Tasks.xml",
  11215. "ref/netcore50/fr/System.Threading.Tasks.xml",
  11216. "ref/netcore50/it/System.Threading.Tasks.xml",
  11217. "ref/netcore50/ja/System.Threading.Tasks.xml",
  11218. "ref/netcore50/ko/System.Threading.Tasks.xml",
  11219. "ref/netcore50/ru/System.Threading.Tasks.xml",
  11220. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  11221. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  11222. "ref/netstandard1.0/System.Threading.Tasks.dll",
  11223. "ref/netstandard1.0/System.Threading.Tasks.xml",
  11224. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  11225. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  11226. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  11227. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  11228. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  11229. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  11230. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  11231. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  11232. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  11233. "ref/netstandard1.3/System.Threading.Tasks.dll",
  11234. "ref/netstandard1.3/System.Threading.Tasks.xml",
  11235. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  11236. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  11237. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  11238. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  11239. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  11240. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  11241. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  11242. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  11243. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  11244. "ref/portable-net45+win8+wp8+wpa81/_._",
  11245. "ref/win8/_._",
  11246. "ref/wp80/_._",
  11247. "ref/wpa81/_._",
  11248. "ref/xamarinios10/_._",
  11249. "ref/xamarinmac20/_._",
  11250. "ref/xamarintvos10/_._",
  11251. "ref/xamarinwatchos10/_._",
  11252. "system.threading.tasks.4.3.0.nupkg.sha512",
  11253. "system.threading.tasks.nuspec"
  11254. ]
  11255. },
  11256. "System.Threading.Tasks.Extensions/4.0.0": {
  11257. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  11258. "type": "package",
  11259. "path": "system.threading.tasks.extensions/4.0.0",
  11260. "files": [
  11261. ".nupkg.metadata",
  11262. ".signature.p7s",
  11263. "ThirdPartyNotices.txt",
  11264. "dotnet_library_license.txt",
  11265. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11266. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11267. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  11268. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  11269. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  11270. "system.threading.tasks.extensions.nuspec"
  11271. ]
  11272. },
  11273. "System.Threading.Thread/4.0.0": {
  11274. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  11275. "type": "package",
  11276. "path": "system.threading.thread/4.0.0",
  11277. "files": [
  11278. ".nupkg.metadata",
  11279. ".signature.p7s",
  11280. "ThirdPartyNotices.txt",
  11281. "dotnet_library_license.txt",
  11282. "lib/MonoAndroid10/_._",
  11283. "lib/MonoTouch10/_._",
  11284. "lib/net46/System.Threading.Thread.dll",
  11285. "lib/netcore50/_._",
  11286. "lib/netstandard1.3/System.Threading.Thread.dll",
  11287. "lib/xamarinios10/_._",
  11288. "lib/xamarinmac20/_._",
  11289. "lib/xamarintvos10/_._",
  11290. "lib/xamarinwatchos10/_._",
  11291. "ref/MonoAndroid10/_._",
  11292. "ref/MonoTouch10/_._",
  11293. "ref/net46/System.Threading.Thread.dll",
  11294. "ref/netstandard1.3/System.Threading.Thread.dll",
  11295. "ref/netstandard1.3/System.Threading.Thread.xml",
  11296. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  11297. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  11298. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  11299. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  11300. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  11301. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  11302. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  11303. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  11304. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  11305. "ref/xamarinios10/_._",
  11306. "ref/xamarinmac20/_._",
  11307. "ref/xamarintvos10/_._",
  11308. "ref/xamarinwatchos10/_._",
  11309. "system.threading.thread.4.0.0.nupkg.sha512",
  11310. "system.threading.thread.nuspec"
  11311. ]
  11312. },
  11313. "System.Threading.ThreadPool/4.0.10": {
  11314. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  11315. "type": "package",
  11316. "path": "system.threading.threadpool/4.0.10",
  11317. "files": [
  11318. ".nupkg.metadata",
  11319. ".signature.p7s",
  11320. "ThirdPartyNotices.txt",
  11321. "dotnet_library_license.txt",
  11322. "lib/MonoAndroid10/_._",
  11323. "lib/MonoTouch10/_._",
  11324. "lib/net46/System.Threading.ThreadPool.dll",
  11325. "lib/netcore50/_._",
  11326. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  11327. "lib/xamarinios10/_._",
  11328. "lib/xamarinmac20/_._",
  11329. "lib/xamarintvos10/_._",
  11330. "lib/xamarinwatchos10/_._",
  11331. "ref/MonoAndroid10/_._",
  11332. "ref/MonoTouch10/_._",
  11333. "ref/net46/System.Threading.ThreadPool.dll",
  11334. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  11335. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  11336. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  11337. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  11338. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  11339. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  11340. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  11341. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  11342. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  11343. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  11344. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  11345. "ref/xamarinios10/_._",
  11346. "ref/xamarinmac20/_._",
  11347. "ref/xamarintvos10/_._",
  11348. "ref/xamarinwatchos10/_._",
  11349. "system.threading.threadpool.4.0.10.nupkg.sha512",
  11350. "system.threading.threadpool.nuspec"
  11351. ]
  11352. },
  11353. "System.Threading.Timer/4.0.1": {
  11354. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  11355. "type": "package",
  11356. "path": "system.threading.timer/4.0.1",
  11357. "files": [
  11358. ".nupkg.metadata",
  11359. ".signature.p7s",
  11360. "ThirdPartyNotices.txt",
  11361. "dotnet_library_license.txt",
  11362. "lib/MonoAndroid10/_._",
  11363. "lib/MonoTouch10/_._",
  11364. "lib/net451/_._",
  11365. "lib/portable-net451+win81+wpa81/_._",
  11366. "lib/win81/_._",
  11367. "lib/wpa81/_._",
  11368. "lib/xamarinios10/_._",
  11369. "lib/xamarinmac20/_._",
  11370. "lib/xamarintvos10/_._",
  11371. "lib/xamarinwatchos10/_._",
  11372. "ref/MonoAndroid10/_._",
  11373. "ref/MonoTouch10/_._",
  11374. "ref/net451/_._",
  11375. "ref/netcore50/System.Threading.Timer.dll",
  11376. "ref/netcore50/System.Threading.Timer.xml",
  11377. "ref/netcore50/de/System.Threading.Timer.xml",
  11378. "ref/netcore50/es/System.Threading.Timer.xml",
  11379. "ref/netcore50/fr/System.Threading.Timer.xml",
  11380. "ref/netcore50/it/System.Threading.Timer.xml",
  11381. "ref/netcore50/ja/System.Threading.Timer.xml",
  11382. "ref/netcore50/ko/System.Threading.Timer.xml",
  11383. "ref/netcore50/ru/System.Threading.Timer.xml",
  11384. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  11385. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  11386. "ref/netstandard1.2/System.Threading.Timer.dll",
  11387. "ref/netstandard1.2/System.Threading.Timer.xml",
  11388. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  11389. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  11390. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  11391. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  11392. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  11393. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  11394. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  11395. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  11396. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  11397. "ref/portable-net451+win81+wpa81/_._",
  11398. "ref/win81/_._",
  11399. "ref/wpa81/_._",
  11400. "ref/xamarinios10/_._",
  11401. "ref/xamarinmac20/_._",
  11402. "ref/xamarintvos10/_._",
  11403. "ref/xamarinwatchos10/_._",
  11404. "system.threading.timer.4.0.1.nupkg.sha512",
  11405. "system.threading.timer.nuspec"
  11406. ]
  11407. },
  11408. "System.Windows.Extensions/5.0.0": {
  11409. "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
  11410. "type": "package",
  11411. "path": "system.windows.extensions/5.0.0",
  11412. "files": [
  11413. ".nupkg.metadata",
  11414. ".signature.p7s",
  11415. "Icon.png",
  11416. "LICENSE.TXT",
  11417. "THIRD-PARTY-NOTICES.TXT",
  11418. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  11419. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  11420. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  11421. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  11422. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  11423. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  11424. "system.windows.extensions.5.0.0.nupkg.sha512",
  11425. "system.windows.extensions.nuspec",
  11426. "useSharedDesignerContext.txt",
  11427. "version.txt"
  11428. ]
  11429. },
  11430. "System.Xml.ReaderWriter/4.0.11": {
  11431. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  11432. "type": "package",
  11433. "path": "system.xml.readerwriter/4.0.11",
  11434. "files": [
  11435. ".nupkg.metadata",
  11436. ".signature.p7s",
  11437. "ThirdPartyNotices.txt",
  11438. "dotnet_library_license.txt",
  11439. "lib/MonoAndroid10/_._",
  11440. "lib/MonoTouch10/_._",
  11441. "lib/net45/_._",
  11442. "lib/netcore50/System.Xml.ReaderWriter.dll",
  11443. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  11444. "lib/portable-net45+win8+wp8+wpa81/_._",
  11445. "lib/win8/_._",
  11446. "lib/wp80/_._",
  11447. "lib/wpa81/_._",
  11448. "lib/xamarinios10/_._",
  11449. "lib/xamarinmac20/_._",
  11450. "lib/xamarintvos10/_._",
  11451. "lib/xamarinwatchos10/_._",
  11452. "ref/MonoAndroid10/_._",
  11453. "ref/MonoTouch10/_._",
  11454. "ref/net45/_._",
  11455. "ref/netcore50/System.Xml.ReaderWriter.dll",
  11456. "ref/netcore50/System.Xml.ReaderWriter.xml",
  11457. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  11458. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  11459. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  11460. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  11461. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  11462. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  11463. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  11464. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  11465. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  11466. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  11467. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  11468. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  11469. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  11470. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  11471. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  11472. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  11473. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  11474. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  11475. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  11476. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  11477. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  11478. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  11479. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  11480. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  11481. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  11482. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  11483. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  11484. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  11485. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  11486. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  11487. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  11488. "ref/portable-net45+win8+wp8+wpa81/_._",
  11489. "ref/win8/_._",
  11490. "ref/wp80/_._",
  11491. "ref/wpa81/_._",
  11492. "ref/xamarinios10/_._",
  11493. "ref/xamarinmac20/_._",
  11494. "ref/xamarintvos10/_._",
  11495. "ref/xamarinwatchos10/_._",
  11496. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  11497. "system.xml.readerwriter.nuspec"
  11498. ]
  11499. },
  11500. "System.Xml.XDocument/4.0.11": {
  11501. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  11502. "type": "package",
  11503. "path": "system.xml.xdocument/4.0.11",
  11504. "files": [
  11505. ".nupkg.metadata",
  11506. ".signature.p7s",
  11507. "ThirdPartyNotices.txt",
  11508. "dotnet_library_license.txt",
  11509. "lib/MonoAndroid10/_._",
  11510. "lib/MonoTouch10/_._",
  11511. "lib/net45/_._",
  11512. "lib/netcore50/System.Xml.XDocument.dll",
  11513. "lib/netstandard1.3/System.Xml.XDocument.dll",
  11514. "lib/portable-net45+win8+wp8+wpa81/_._",
  11515. "lib/win8/_._",
  11516. "lib/wp80/_._",
  11517. "lib/wpa81/_._",
  11518. "lib/xamarinios10/_._",
  11519. "lib/xamarinmac20/_._",
  11520. "lib/xamarintvos10/_._",
  11521. "lib/xamarinwatchos10/_._",
  11522. "ref/MonoAndroid10/_._",
  11523. "ref/MonoTouch10/_._",
  11524. "ref/net45/_._",
  11525. "ref/netcore50/System.Xml.XDocument.dll",
  11526. "ref/netcore50/System.Xml.XDocument.xml",
  11527. "ref/netcore50/de/System.Xml.XDocument.xml",
  11528. "ref/netcore50/es/System.Xml.XDocument.xml",
  11529. "ref/netcore50/fr/System.Xml.XDocument.xml",
  11530. "ref/netcore50/it/System.Xml.XDocument.xml",
  11531. "ref/netcore50/ja/System.Xml.XDocument.xml",
  11532. "ref/netcore50/ko/System.Xml.XDocument.xml",
  11533. "ref/netcore50/ru/System.Xml.XDocument.xml",
  11534. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  11535. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  11536. "ref/netstandard1.0/System.Xml.XDocument.dll",
  11537. "ref/netstandard1.0/System.Xml.XDocument.xml",
  11538. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  11539. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  11540. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  11541. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  11542. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  11543. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  11544. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  11545. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  11546. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  11547. "ref/netstandard1.3/System.Xml.XDocument.dll",
  11548. "ref/netstandard1.3/System.Xml.XDocument.xml",
  11549. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  11550. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  11551. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  11552. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  11553. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  11554. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  11555. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  11556. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  11557. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  11558. "ref/portable-net45+win8+wp8+wpa81/_._",
  11559. "ref/win8/_._",
  11560. "ref/wp80/_._",
  11561. "ref/wpa81/_._",
  11562. "ref/xamarinios10/_._",
  11563. "ref/xamarinmac20/_._",
  11564. "ref/xamarintvos10/_._",
  11565. "ref/xamarinwatchos10/_._",
  11566. "system.xml.xdocument.4.0.11.nupkg.sha512",
  11567. "system.xml.xdocument.nuspec"
  11568. ]
  11569. },
  11570. "System.Xml.XmlDocument/4.0.1": {
  11571. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  11572. "type": "package",
  11573. "path": "system.xml.xmldocument/4.0.1",
  11574. "files": [
  11575. ".nupkg.metadata",
  11576. ".signature.p7s",
  11577. "ThirdPartyNotices.txt",
  11578. "dotnet_library_license.txt",
  11579. "lib/MonoAndroid10/_._",
  11580. "lib/MonoTouch10/_._",
  11581. "lib/net46/System.Xml.XmlDocument.dll",
  11582. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  11583. "lib/xamarinios10/_._",
  11584. "lib/xamarinmac20/_._",
  11585. "lib/xamarintvos10/_._",
  11586. "lib/xamarinwatchos10/_._",
  11587. "ref/MonoAndroid10/_._",
  11588. "ref/MonoTouch10/_._",
  11589. "ref/net46/System.Xml.XmlDocument.dll",
  11590. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  11591. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  11592. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  11593. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  11594. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  11595. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  11596. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  11597. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  11598. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  11599. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  11600. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  11601. "ref/xamarinios10/_._",
  11602. "ref/xamarinmac20/_._",
  11603. "ref/xamarintvos10/_._",
  11604. "ref/xamarinwatchos10/_._",
  11605. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  11606. "system.xml.xmldocument.nuspec"
  11607. ]
  11608. },
  11609. "System.Xml.XPath/4.0.1": {
  11610. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  11611. "type": "package",
  11612. "path": "system.xml.xpath/4.0.1",
  11613. "files": [
  11614. ".nupkg.metadata",
  11615. ".signature.p7s",
  11616. "ThirdPartyNotices.txt",
  11617. "dotnet_library_license.txt",
  11618. "lib/MonoAndroid10/_._",
  11619. "lib/MonoTouch10/_._",
  11620. "lib/net46/System.Xml.XPath.dll",
  11621. "lib/netstandard1.3/System.Xml.XPath.dll",
  11622. "lib/xamarinios10/_._",
  11623. "lib/xamarinmac20/_._",
  11624. "lib/xamarintvos10/_._",
  11625. "lib/xamarinwatchos10/_._",
  11626. "ref/MonoAndroid10/_._",
  11627. "ref/MonoTouch10/_._",
  11628. "ref/net46/System.Xml.XPath.dll",
  11629. "ref/netstandard1.3/System.Xml.XPath.dll",
  11630. "ref/netstandard1.3/System.Xml.XPath.xml",
  11631. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  11632. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  11633. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  11634. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  11635. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  11636. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  11637. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  11638. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  11639. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  11640. "ref/xamarinios10/_._",
  11641. "ref/xamarinmac20/_._",
  11642. "ref/xamarintvos10/_._",
  11643. "ref/xamarinwatchos10/_._",
  11644. "system.xml.xpath.4.0.1.nupkg.sha512",
  11645. "system.xml.xpath.nuspec"
  11646. ]
  11647. },
  11648. "System.Xml.XPath.XmlDocument/4.0.1": {
  11649. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  11650. "type": "package",
  11651. "path": "system.xml.xpath.xmldocument/4.0.1",
  11652. "files": [
  11653. ".nupkg.metadata",
  11654. ".signature.p7s",
  11655. "ThirdPartyNotices.txt",
  11656. "dotnet_library_license.txt",
  11657. "lib/MonoAndroid10/_._",
  11658. "lib/MonoTouch10/_._",
  11659. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  11660. "lib/xamarinios10/_._",
  11661. "lib/xamarinmac20/_._",
  11662. "lib/xamarintvos10/_._",
  11663. "lib/xamarinwatchos10/_._",
  11664. "ref/MonoAndroid10/_._",
  11665. "ref/MonoTouch10/_._",
  11666. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  11667. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  11668. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  11669. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  11670. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  11671. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  11672. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  11673. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  11674. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  11675. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  11676. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  11677. "ref/xamarinios10/_._",
  11678. "ref/xamarinmac20/_._",
  11679. "ref/xamarintvos10/_._",
  11680. "ref/xamarinwatchos10/_._",
  11681. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  11682. "system.xml.xpath.xmldocument.nuspec"
  11683. ]
  11684. }
  11685. },
  11686. "projectFileDependencyGroups": {
  11687. ".NETCoreApp,Version=v3.1": [
  11688. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  11689. "Flurl.Http >= 3.2.0",
  11690. "Microsoft.Extensions.Hosting.WindowsServices >= 5.0.1",
  11691. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  11692. "NLog.Web.AspNetCore >= 4.12.0",
  11693. "Newtonsoft.Json >= 13.0.1",
  11694. "Quartz >= 3.3.2",
  11695. "StackExchange.Redis >= 2.2.62",
  11696. "Swashbuckle.AspNetCore >= 6.3.1",
  11697. "Swashbuckle.AspNetCore.Filters >= 7.0.2",
  11698. "System.IdentityModel.Tokens.Jwt >= 6.11.0"
  11699. ]
  11700. },
  11701. "packageFolders": {
  11702. "C:\\Users\\Xulei\\.nuget\\packages\\": {},
  11703. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  11704. },
  11705. "project": {
  11706. "version": "1.0.0",
  11707. "restore": {
  11708. "projectUniqueName": "D:\\git\\imcs_ccs_new\\ccs\\IMCS_CCS\\CCS.csproj",
  11709. "projectName": "IMCS_CCS",
  11710. "projectPath": "D:\\git\\imcs_ccs_new\\ccs\\IMCS_CCS\\CCS.csproj",
  11711. "packagesPath": "C:\\Users\\Xulei\\.nuget\\packages\\",
  11712. "outputPath": "D:\\git\\imcs_ccs_new\\ccs\\IMCS_CCS\\obj\\publish\\win-x64\\",
  11713. "projectStyle": "PackageReference",
  11714. "fallbackFolders": [
  11715. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  11716. ],
  11717. "configFilePaths": [
  11718. "C:\\Users\\Xulei\\AppData\\Roaming\\NuGet\\NuGet.Config",
  11719. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  11720. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  11721. ],
  11722. "originalTargetFrameworks": [
  11723. "netcoreapp3.1"
  11724. ],
  11725. "sources": {
  11726. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  11727. "https://api.nuget.org/v3/index.json": {}
  11728. },
  11729. "frameworks": {
  11730. "netcoreapp3.1": {
  11731. "targetAlias": "netcoreapp3.1",
  11732. "projectReferences": {}
  11733. }
  11734. },
  11735. "warningProperties": {
  11736. "warnAsError": [
  11737. "NU1605"
  11738. ]
  11739. }
  11740. },
  11741. "frameworks": {
  11742. "netcoreapp3.1": {
  11743. "targetAlias": "netcoreapp3.1",
  11744. "dependencies": {
  11745. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  11746. "target": "Package",
  11747. "version": "[8.1.1, )"
  11748. },
  11749. "Flurl.Http": {
  11750. "target": "Package",
  11751. "version": "[3.2.0, )"
  11752. },
  11753. "Microsoft.Extensions.Hosting.WindowsServices": {
  11754. "target": "Package",
  11755. "version": "[5.0.1, )"
  11756. },
  11757. "MySql.Data.EntityFrameworkCore": {
  11758. "target": "Package",
  11759. "version": "[8.0.22, )"
  11760. },
  11761. "NLog.Web.AspNetCore": {
  11762. "target": "Package",
  11763. "version": "[4.12.0, )"
  11764. },
  11765. "Newtonsoft.Json": {
  11766. "target": "Package",
  11767. "version": "[13.0.1, )"
  11768. },
  11769. "Quartz": {
  11770. "target": "Package",
  11771. "version": "[3.3.2, )"
  11772. },
  11773. "StackExchange.Redis": {
  11774. "target": "Package",
  11775. "version": "[2.2.62, )"
  11776. },
  11777. "Swashbuckle.AspNetCore": {
  11778. "target": "Package",
  11779. "version": "[6.3.1, )"
  11780. },
  11781. "Swashbuckle.AspNetCore.Filters": {
  11782. "target": "Package",
  11783. "version": "[7.0.2, )"
  11784. },
  11785. "System.IdentityModel.Tokens.Jwt": {
  11786. "target": "Package",
  11787. "version": "[6.11.0, )"
  11788. }
  11789. },
  11790. "imports": [
  11791. "net461",
  11792. "net462",
  11793. "net47",
  11794. "net471",
  11795. "net472",
  11796. "net48"
  11797. ],
  11798. "assetTargetFallback": true,
  11799. "warn": true,
  11800. "downloadDependencies": [
  11801. {
  11802. "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
  11803. "version": "[3.1.28, 3.1.28]"
  11804. },
  11805. {
  11806. "name": "Microsoft.NETCore.App.Runtime.win-x64",
  11807. "version": "[3.1.28, 3.1.28]"
  11808. },
  11809. {
  11810. "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
  11811. "version": "[3.1.28, 3.1.28]"
  11812. }
  11813. ],
  11814. "frameworkReferences": {
  11815. "Microsoft.AspNetCore.App": {
  11816. "privateAssets": "none"
  11817. },
  11818. "Microsoft.NETCore.App": {
  11819. "privateAssets": "all"
  11820. }
  11821. },
  11822. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.411\\RuntimeIdentifierGraph.json"
  11823. }
  11824. },
  11825. "runtimes": {
  11826. "win-x64": {
  11827. "#import": []
  11828. }
  11829. }
  11830. },
  11831. "logs": [
  11832. {
  11833. "code": "NU1605",
  11834. "level": "Error",
  11835. "message": "检测到包降级: System.Diagnostics.Debug 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Diagnostics.Debug (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Diagnostics.Debug (>= 4.0.11)",
  11836. "libraryId": "System.Diagnostics.Debug",
  11837. "targetGraphs": [
  11838. ".NETCoreApp,Version=v3.1/win-x64"
  11839. ]
  11840. },
  11841. {
  11842. "code": "NU1605",
  11843. "level": "Error",
  11844. "message": "检测到包降级: System.IO.FileSystem.Primitives 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.IO.FileSystem.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem.Primitives (>= 4.0.1)",
  11845. "libraryId": "System.IO.FileSystem.Primitives",
  11846. "targetGraphs": [
  11847. ".NETCoreApp,Version=v3.1/win-x64"
  11848. ]
  11849. },
  11850. {
  11851. "code": "NU1605",
  11852. "level": "Error",
  11853. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Runtime.Extensions (>= 4.1.0)",
  11854. "libraryId": "System.Runtime.Extensions",
  11855. "targetGraphs": [
  11856. ".NETCoreApp,Version=v3.1/win-x64"
  11857. ]
  11858. },
  11859. {
  11860. "code": "NU1605",
  11861. "level": "Error",
  11862. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Threading (>= 4.0.11)",
  11863. "libraryId": "System.Threading",
  11864. "targetGraphs": [
  11865. ".NETCoreApp,Version=v3.1/win-x64"
  11866. ]
  11867. },
  11868. {
  11869. "code": "NU1605",
  11870. "level": "Error",
  11871. "message": "检测到包降级: System.Diagnostics.Debug 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Diagnostics.Debug (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Diagnostics.Debug (>= 4.0.11)",
  11872. "libraryId": "System.Diagnostics.Debug",
  11873. "targetGraphs": [
  11874. ".NETCoreApp,Version=v3.1/win-x64"
  11875. ]
  11876. },
  11877. {
  11878. "code": "NU1605",
  11879. "level": "Error",
  11880. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Globalization (>= 4.0.11)",
  11881. "libraryId": "System.Globalization",
  11882. "targetGraphs": [
  11883. ".NETCoreApp,Version=v3.1/win-x64"
  11884. ]
  11885. },
  11886. {
  11887. "code": "NU1605",
  11888. "level": "Error",
  11889. "message": "检测到包降级: System.IO.FileSystem 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.IO.FileSystem (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem (>= 4.0.1)",
  11890. "libraryId": "System.IO.FileSystem",
  11891. "targetGraphs": [
  11892. ".NETCoreApp,Version=v3.1/win-x64"
  11893. ]
  11894. },
  11895. {
  11896. "code": "NU1605",
  11897. "level": "Error",
  11898. "message": "检测到包降级: System.IO.FileSystem.Primitives 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.IO.FileSystem.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem.Primitives (>= 4.0.1)",
  11899. "libraryId": "System.IO.FileSystem.Primitives",
  11900. "targetGraphs": [
  11901. ".NETCoreApp,Version=v3.1/win-x64"
  11902. ]
  11903. },
  11904. {
  11905. "code": "NU1605",
  11906. "level": "Error",
  11907. "message": "检测到包降级: System.Net.Primitives 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Net.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> System.Net.Primitives (>= 4.0.11)",
  11908. "libraryId": "System.Net.Primitives",
  11909. "targetGraphs": [
  11910. ".NETCoreApp,Version=v3.1/win-x64"
  11911. ]
  11912. },
  11913. {
  11914. "code": "NU1605",
  11915. "level": "Error",
  11916. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Runtime.Extensions (>= 4.1.0)",
  11917. "libraryId": "System.Runtime.Extensions",
  11918. "targetGraphs": [
  11919. ".NETCoreApp,Version=v3.1/win-x64"
  11920. ]
  11921. },
  11922. {
  11923. "code": "NU1605",
  11924. "level": "Error",
  11925. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Threading (>= 4.0.11)",
  11926. "libraryId": "System.Threading",
  11927. "targetGraphs": [
  11928. ".NETCoreApp,Version=v3.1/win-x64"
  11929. ]
  11930. },
  11931. {
  11932. "code": "NU1605",
  11933. "level": "Error",
  11934. "message": "检测到包降级: System.IO.FileSystem.Primitives 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Console 4.0.0 -> runtime.win.System.Console 4.3.0 -> System.IO.FileSystem.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem.Primitives (>= 4.0.1)",
  11935. "libraryId": "System.IO.FileSystem.Primitives",
  11936. "targetGraphs": [
  11937. ".NETCoreApp,Version=v3.1/win-x64"
  11938. ]
  11939. },
  11940. {
  11941. "code": "NU1605",
  11942. "level": "Error",
  11943. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Console 4.0.0 -> runtime.win.System.Console 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Threading (>= 4.0.11)",
  11944. "libraryId": "System.Threading",
  11945. "targetGraphs": [
  11946. ".NETCoreApp,Version=v3.1/win-x64"
  11947. ]
  11948. },
  11949. {
  11950. "code": "NU1605",
  11951. "level": "Error",
  11952. "message": "检测到包降级: System.Diagnostics.Debug 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Diagnostics.Debug (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Diagnostics.Debug (>= 4.0.11)",
  11953. "libraryId": "System.Diagnostics.Debug",
  11954. "targetGraphs": [
  11955. ".NETCoreApp,Version=v3.1/win-x64"
  11956. ]
  11957. },
  11958. {
  11959. "code": "NU1605",
  11960. "level": "Error",
  11961. "message": "检测到包降级: System.IO.FileSystem.Primitives 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.IO.FileSystem.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem.Primitives (>= 4.0.1)",
  11962. "libraryId": "System.IO.FileSystem.Primitives",
  11963. "targetGraphs": [
  11964. ".NETCoreApp,Version=v3.1/win-x64"
  11965. ]
  11966. },
  11967. {
  11968. "code": "NU1605",
  11969. "level": "Error",
  11970. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Runtime.Extensions (>= 4.1.0)",
  11971. "libraryId": "System.Runtime.Extensions",
  11972. "targetGraphs": [
  11973. ".NETCoreApp,Version=v3.1/win-x64"
  11974. ]
  11975. },
  11976. {
  11977. "code": "NU1605",
  11978. "level": "Error",
  11979. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Threading (>= 4.0.11)",
  11980. "libraryId": "System.Threading",
  11981. "targetGraphs": [
  11982. ".NETCoreApp,Version=v3.1/win-x64"
  11983. ]
  11984. },
  11985. {
  11986. "code": "NU1605",
  11987. "level": "Error",
  11988. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Globalization (>= 4.0.11)",
  11989. "libraryId": "System.Globalization",
  11990. "targetGraphs": [
  11991. ".NETCoreApp,Version=v3.1/win-x64"
  11992. ]
  11993. },
  11994. {
  11995. "code": "NU1605",
  11996. "level": "Error",
  11997. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Runtime.Extensions (>= 4.1.0)",
  11998. "libraryId": "System.Runtime.Extensions",
  11999. "targetGraphs": [
  12000. ".NETCoreApp,Version=v3.1/win-x64"
  12001. ]
  12002. },
  12003. {
  12004. "code": "NU1605",
  12005. "level": "Error",
  12006. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Threading (>= 4.0.11)",
  12007. "libraryId": "System.Threading",
  12008. "targetGraphs": [
  12009. ".NETCoreApp,Version=v3.1/win-x64"
  12010. ]
  12011. },
  12012. {
  12013. "code": "NU1605",
  12014. "level": "Error",
  12015. "message": "检测到包降级: System.Diagnostics.Debug 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Diagnostics.Debug (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Diagnostics.Debug (>= 4.0.11)",
  12016. "libraryId": "System.Diagnostics.Debug",
  12017. "targetGraphs": [
  12018. ".NETCoreApp,Version=v3.1/win-x64"
  12019. ]
  12020. },
  12021. {
  12022. "code": "NU1605",
  12023. "level": "Error",
  12024. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Globalization (>= 4.0.11)",
  12025. "libraryId": "System.Globalization",
  12026. "targetGraphs": [
  12027. ".NETCoreApp,Version=v3.1/win-x64"
  12028. ]
  12029. },
  12030. {
  12031. "code": "NU1605",
  12032. "level": "Error",
  12033. "message": "检测到包降级: System.IO.FileSystem 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.IO.FileSystem (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem (>= 4.0.1)",
  12034. "libraryId": "System.IO.FileSystem",
  12035. "targetGraphs": [
  12036. ".NETCoreApp,Version=v3.1/win-x64"
  12037. ]
  12038. },
  12039. {
  12040. "code": "NU1605",
  12041. "level": "Error",
  12042. "message": "检测到包降级: System.IO.FileSystem.Primitives 从 4.3.0 降级到 4.0.1。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.IO.FileSystem.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.IO.FileSystem.Primitives (>= 4.0.1)",
  12043. "libraryId": "System.IO.FileSystem.Primitives",
  12044. "targetGraphs": [
  12045. ".NETCoreApp,Version=v3.1/win-x64"
  12046. ]
  12047. },
  12048. {
  12049. "code": "NU1605",
  12050. "level": "Error",
  12051. "message": "检测到包降级: System.Net.Primitives 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Net.Primitives (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Primitives (>= 4.0.11)",
  12052. "libraryId": "System.Net.Primitives",
  12053. "targetGraphs": [
  12054. ".NETCoreApp,Version=v3.1/win-x64"
  12055. ]
  12056. },
  12057. {
  12058. "code": "NU1605",
  12059. "level": "Error",
  12060. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Runtime.Extensions (>= 4.1.0)",
  12061. "libraryId": "System.Runtime.Extensions",
  12062. "targetGraphs": [
  12063. ".NETCoreApp,Version=v3.1/win-x64"
  12064. ]
  12065. },
  12066. {
  12067. "code": "NU1605",
  12068. "level": "Error",
  12069. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Net.Sockets 4.1.0 -> runtime.win.System.Net.Sockets 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> BouncyCastle.NetCore 1.8.3 -> NETStandard.Library 1.6.0 -> System.Threading (>= 4.0.11)",
  12070. "libraryId": "System.Threading",
  12071. "targetGraphs": [
  12072. ".NETCoreApp,Version=v3.1/win-x64"
  12073. ]
  12074. },
  12075. {
  12076. "code": "NU1605",
  12077. "level": "Error",
  12078. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.IO.FileSystem 4.0.1 -> runtime.win.System.IO.FileSystem 4.3.0 -> System.Resources.ResourceManager 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Globalization (>= 4.0.11)",
  12079. "libraryId": "System.Globalization",
  12080. "targetGraphs": [
  12081. ".NETCoreApp,Version=v3.1/win-x64"
  12082. ]
  12083. },
  12084. {
  12085. "code": "NU1605",
  12086. "level": "Error",
  12087. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.NameResolution 4.0.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Globalization (>= 4.0.11)",
  12088. "libraryId": "System.Globalization",
  12089. "targetGraphs": [
  12090. ".NETCoreApp,Version=v3.1/win-x64"
  12091. ]
  12092. },
  12093. {
  12094. "code": "NU1605",
  12095. "level": "Error",
  12096. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.NameResolution 4.0.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Runtime.Extensions (>= 4.1.0)",
  12097. "libraryId": "System.Runtime.Extensions",
  12098. "targetGraphs": [
  12099. ".NETCoreApp,Version=v3.1/win-x64"
  12100. ]
  12101. },
  12102. {
  12103. "code": "NU1605",
  12104. "level": "Error",
  12105. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.NameResolution 4.0.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Threading (>= 4.0.11)",
  12106. "libraryId": "System.Threading",
  12107. "targetGraphs": [
  12108. ".NETCoreApp,Version=v3.1/win-x64"
  12109. ]
  12110. },
  12111. {
  12112. "code": "NU1605",
  12113. "level": "Error",
  12114. "message": "检测到包降级: System.Globalization 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Globalization (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Globalization (>= 4.0.11)",
  12115. "libraryId": "System.Globalization",
  12116. "targetGraphs": [
  12117. ".NETCoreApp,Version=v3.1/win-x64"
  12118. ]
  12119. },
  12120. {
  12121. "code": "NU1605",
  12122. "level": "Error",
  12123. "message": "检测到包降级: System.Runtime.Extensions 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Runtime.Extensions (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Runtime.Extensions (>= 4.1.0)",
  12124. "libraryId": "System.Runtime.Extensions",
  12125. "targetGraphs": [
  12126. ".NETCoreApp,Version=v3.1/win-x64"
  12127. ]
  12128. },
  12129. {
  12130. "code": "NU1605",
  12131. "level": "Error",
  12132. "message": "检测到包降级: System.Threading 从 4.3.0 降级到 4.0.11。直接从项目引用包以选择不同版本。 \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Net.Sockets 4.1.0 -> System.Net.Primitives 4.0.11 -> runtime.win.System.Net.Primitives 4.3.0 -> System.Threading (>= 4.3.0) \r\n IMCS_CCS -> MySql.Data.EntityFrameworkCore 8.0.22 -> MySql.Data 8.0.22 -> SSH.NET 2016.1.0 -> System.Threading (>= 4.0.11)",
  12133. "libraryId": "System.Threading",
  12134. "targetGraphs": [
  12135. ".NETCoreApp,Version=v3.1/win-x64"
  12136. ]
  12137. }
  12138. ]
  12139. }