project.assets.json 347 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Autofac/6.4.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Diagnostics.DiagnosticSource": "4.7.1"
  9. },
  10. "compile": {
  11. "lib/net6.0/Autofac.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/net6.0/Autofac.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Autofac.Extensions.DependencyInjection/8.0.0": {
  22. "type": "package",
  23. "dependencies": {
  24. "Autofac": "6.4.0",
  25. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  29. "related": ".xml"
  30. }
  31. },
  32. "runtime": {
  33. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  34. "related": ".xml"
  35. }
  36. }
  37. },
  38. "AutoMapper/12.0.0": {
  39. "type": "package",
  40. "dependencies": {
  41. "Microsoft.CSharp": "4.7.0"
  42. },
  43. "compile": {
  44. "lib/netstandard2.1/AutoMapper.dll": {
  45. "related": ".xml"
  46. }
  47. },
  48. "runtime": {
  49. "lib/netstandard2.1/AutoMapper.dll": {
  50. "related": ".xml"
  51. }
  52. }
  53. },
  54. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  55. "type": "package",
  56. "dependencies": {
  57. "AutoMapper": "12.0.0",
  58. "Microsoft.Extensions.Options": "6.0.0"
  59. },
  60. "compile": {
  61. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  62. },
  63. "runtime": {
  64. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  65. }
  66. },
  67. "Betalgo.OpenAI.GPT3/6.6.7": {
  68. "type": "package",
  69. "dependencies": {
  70. "Microsoft.AspNet.WebApi.Client": "5.2.9",
  71. "Microsoft.Extensions.Http": "6.0.0",
  72. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0"
  73. },
  74. "compile": {
  75. "lib/net6.0/OpenAI.GPT3.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/net6.0/OpenAI.GPT3.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "BouncyCastle.NetCore/1.8.8": {
  86. "type": "package",
  87. "compile": {
  88. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  89. "related": ".xml"
  90. }
  91. },
  92. "runtime": {
  93. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  94. "related": ".xml"
  95. }
  96. }
  97. },
  98. "Flurl/3.0.6": {
  99. "type": "package",
  100. "compile": {
  101. "lib/netstandard2.0/Flurl.dll": {
  102. "related": ".xml"
  103. }
  104. },
  105. "runtime": {
  106. "lib/netstandard2.0/Flurl.dll": {
  107. "related": ".xml"
  108. }
  109. }
  110. },
  111. "Flurl.Http/3.2.4": {
  112. "type": "package",
  113. "dependencies": {
  114. "Flurl": "3.0.6",
  115. "Newtonsoft.Json": "12.0.2",
  116. "System.Text.Encoding.CodePages": "4.5.1"
  117. },
  118. "compile": {
  119. "lib/netstandard2.0/Flurl.Http.dll": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/Flurl.Http.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "Google.Protobuf/3.19.4": {
  130. "type": "package",
  131. "compile": {
  132. "lib/net5.0/Google.Protobuf.dll": {
  133. "related": ".pdb;.xml"
  134. }
  135. },
  136. "runtime": {
  137. "lib/net5.0/Google.Protobuf.dll": {
  138. "related": ".pdb;.xml"
  139. }
  140. }
  141. },
  142. "K4os.Compression.LZ4/1.2.6": {
  143. "type": "package",
  144. "dependencies": {
  145. "System.Memory": "4.5.4"
  146. },
  147. "compile": {
  148. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  149. "related": ".xml"
  150. }
  151. },
  152. "runtime": {
  153. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  154. "related": ".xml"
  155. }
  156. }
  157. },
  158. "K4os.Compression.LZ4.Streams/1.2.6": {
  159. "type": "package",
  160. "dependencies": {
  161. "K4os.Compression.LZ4": "1.2.6",
  162. "K4os.Hash.xxHash": "1.0.6"
  163. },
  164. "compile": {
  165. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  166. "related": ".xml"
  167. }
  168. },
  169. "runtime": {
  170. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  171. "related": ".xml"
  172. }
  173. }
  174. },
  175. "K4os.Hash.xxHash/1.0.6": {
  176. "type": "package",
  177. "dependencies": {
  178. "System.Memory": "4.5.3"
  179. },
  180. "compile": {
  181. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  182. "related": ".xml"
  183. }
  184. },
  185. "runtime": {
  186. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  187. "related": ".xml"
  188. }
  189. }
  190. },
  191. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  192. "type": "package",
  193. "dependencies": {
  194. "Newtonsoft.Json": "10.0.1",
  195. "Newtonsoft.Json.Bson": "1.0.1"
  196. },
  197. "compile": {
  198. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  199. "related": ".xml"
  200. }
  201. },
  202. "runtime": {
  203. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  204. "related": ".xml"
  205. }
  206. }
  207. },
  208. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.11": {
  209. "type": "package",
  210. "dependencies": {
  211. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
  212. },
  213. "compile": {
  214. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  215. "related": ".xml"
  216. }
  217. },
  218. "runtime": {
  219. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  220. "related": ".xml"
  221. }
  222. },
  223. "frameworkReferences": [
  224. "Microsoft.AspNetCore.App"
  225. ]
  226. },
  227. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  228. "type": "package",
  229. "dependencies": {
  230. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  231. "System.Text.Encodings.Web": "4.5.0"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  245. "type": "package",
  246. "dependencies": {
  247. "Microsoft.Extensions.Primitives": "2.2.0"
  248. },
  249. "compile": {
  250. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  251. "related": ".xml"
  252. }
  253. },
  254. "runtime": {
  255. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  256. "related": ".xml"
  257. }
  258. }
  259. },
  260. "Microsoft.CSharp/4.7.0": {
  261. "type": "package",
  262. "compile": {
  263. "ref/netcoreapp2.0/_._": {}
  264. },
  265. "runtime": {
  266. "lib/netcoreapp2.0/_._": {}
  267. }
  268. },
  269. "Microsoft.Data.SqlClient/2.1.1": {
  270. "type": "package",
  271. "dependencies": {
  272. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  273. "Microsoft.Identity.Client": "4.21.1",
  274. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  275. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  276. "Microsoft.Win32.Registry": "4.7.0",
  277. "System.Configuration.ConfigurationManager": "4.7.0",
  278. "System.Diagnostics.DiagnosticSource": "4.7.0",
  279. "System.Runtime.Caching": "4.7.0",
  280. "System.Security.Principal.Windows": "4.7.0",
  281. "System.Text.Encoding.CodePages": "4.7.0"
  282. },
  283. "compile": {
  284. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  285. "related": ".pdb;.xml"
  286. }
  287. },
  288. "runtime": {
  289. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  290. "related": ".pdb;.xml"
  291. }
  292. },
  293. "runtimeTargets": {
  294. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  295. "assetType": "runtime",
  296. "rid": "unix"
  297. },
  298. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  299. "assetType": "runtime",
  300. "rid": "win"
  301. }
  302. }
  303. },
  304. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  305. "type": "package",
  306. "runtimeTargets": {
  307. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  308. "assetType": "native",
  309. "rid": "win-arm"
  310. },
  311. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  312. "assetType": "native",
  313. "rid": "win-arm64"
  314. },
  315. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  316. "assetType": "native",
  317. "rid": "win-x64"
  318. },
  319. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  320. "assetType": "native",
  321. "rid": "win-x86"
  322. }
  323. }
  324. },
  325. "Microsoft.Data.Sqlite/5.0.5": {
  326. "type": "package",
  327. "dependencies": {
  328. "Microsoft.Data.Sqlite.Core": "5.0.5",
  329. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  330. },
  331. "compile": {
  332. "lib/netstandard2.0/_._": {}
  333. },
  334. "runtime": {
  335. "lib/netstandard2.0/_._": {}
  336. }
  337. },
  338. "Microsoft.Data.Sqlite.Core/5.0.5": {
  339. "type": "package",
  340. "dependencies": {
  341. "SQLitePCLRaw.core": "2.0.4"
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  350. "related": ".xml"
  351. }
  352. }
  353. },
  354. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  355. "type": "package",
  356. "build": {
  357. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  358. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  359. },
  360. "buildMultiTargeting": {
  361. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  362. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  363. }
  364. },
  365. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  366. "type": "package",
  367. "dependencies": {
  368. "Microsoft.Extensions.Primitives": "7.0.0"
  369. },
  370. "compile": {
  371. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "build": {
  381. "buildTransitive/net6.0/_._": {}
  382. }
  383. },
  384. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  385. "type": "package",
  386. "dependencies": {
  387. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  388. },
  389. "compile": {
  390. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  391. "related": ".xml"
  392. }
  393. },
  394. "runtime": {
  395. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  396. "related": ".xml"
  397. }
  398. },
  399. "build": {
  400. "buildTransitive/net6.0/_._": {}
  401. }
  402. },
  403. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  404. "type": "package",
  405. "dependencies": {
  406. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  407. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  408. },
  409. "compile": {
  410. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  411. "related": ".xml"
  412. }
  413. },
  414. "runtime": {
  415. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  416. "related": ".xml"
  417. }
  418. },
  419. "build": {
  420. "buildTransitive/netcoreapp3.1/_._": {}
  421. }
  422. },
  423. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  424. "type": "package",
  425. "compile": {
  426. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "runtime": {
  431. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  432. "related": ".xml"
  433. }
  434. },
  435. "build": {
  436. "buildTransitive/netcoreapp3.1/_._": {}
  437. }
  438. },
  439. "Microsoft.Extensions.Http/6.0.0": {
  440. "type": "package",
  441. "dependencies": {
  442. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  443. "Microsoft.Extensions.Logging": "6.0.0",
  444. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  445. "Microsoft.Extensions.Options": "6.0.0"
  446. },
  447. "compile": {
  448. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  454. "related": ".xml"
  455. }
  456. }
  457. },
  458. "Microsoft.Extensions.Logging/6.0.0": {
  459. "type": "package",
  460. "dependencies": {
  461. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  462. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  463. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  464. "Microsoft.Extensions.Options": "6.0.0",
  465. "System.Diagnostics.DiagnosticSource": "6.0.0"
  466. },
  467. "compile": {
  468. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  469. "related": ".xml"
  470. }
  471. },
  472. "runtime": {
  473. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  474. "related": ".xml"
  475. }
  476. }
  477. },
  478. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  479. "type": "package",
  480. "compile": {
  481. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "runtime": {
  486. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  487. "related": ".xml"
  488. }
  489. },
  490. "build": {
  491. "buildTransitive/netcoreapp3.1/_._": {}
  492. }
  493. },
  494. "Microsoft.Extensions.Options/6.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  498. "Microsoft.Extensions.Primitives": "6.0.0"
  499. },
  500. "compile": {
  501. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  502. "related": ".xml"
  503. }
  504. },
  505. "runtime": {
  506. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  507. "related": ".xml"
  508. }
  509. }
  510. },
  511. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  515. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  516. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  517. "Microsoft.Extensions.Options": "6.0.0",
  518. "Microsoft.Extensions.Primitives": "6.0.0"
  519. },
  520. "compile": {
  521. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  522. "related": ".xml"
  523. }
  524. },
  525. "runtime": {
  526. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  527. "related": ".xml"
  528. }
  529. }
  530. },
  531. "Microsoft.Extensions.Primitives/7.0.0": {
  532. "type": "package",
  533. "dependencies": {
  534. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  535. },
  536. "compile": {
  537. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  538. "related": ".xml"
  539. }
  540. },
  541. "runtime": {
  542. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "build": {
  547. "buildTransitive/net6.0/_._": {}
  548. }
  549. },
  550. "Microsoft.Identity.Client/4.21.1": {
  551. "type": "package",
  552. "compile": {
  553. "ref/netcoreapp2.1/_._": {
  554. "related": ".xml"
  555. }
  556. },
  557. "runtime": {
  558. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  559. "related": ".xml"
  560. }
  561. }
  562. },
  563. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  564. "type": "package",
  565. "dependencies": {
  566. "Microsoft.IdentityModel.Tokens": "6.10.0"
  567. },
  568. "compile": {
  569. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  570. "related": ".xml"
  571. }
  572. },
  573. "runtime": {
  574. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  575. "related": ".xml"
  576. }
  577. }
  578. },
  579. "Microsoft.IdentityModel.Logging/6.10.0": {
  580. "type": "package",
  581. "compile": {
  582. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  583. "related": ".xml"
  584. }
  585. },
  586. "runtime": {
  587. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  588. "related": ".xml"
  589. }
  590. }
  591. },
  592. "Microsoft.IdentityModel.Protocols/6.10.0": {
  593. "type": "package",
  594. "dependencies": {
  595. "Microsoft.IdentityModel.Logging": "6.10.0",
  596. "Microsoft.IdentityModel.Tokens": "6.10.0"
  597. },
  598. "compile": {
  599. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "runtime": {
  604. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  605. "related": ".xml"
  606. }
  607. }
  608. },
  609. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  610. "type": "package",
  611. "dependencies": {
  612. "Microsoft.IdentityModel.Protocols": "6.10.0",
  613. "System.IdentityModel.Tokens.Jwt": "6.10.0"
  614. },
  615. "compile": {
  616. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  617. "related": ".xml"
  618. }
  619. },
  620. "runtime": {
  621. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  622. "related": ".xml"
  623. }
  624. }
  625. },
  626. "Microsoft.IdentityModel.Tokens/6.10.0": {
  627. "type": "package",
  628. "dependencies": {
  629. "Microsoft.CSharp": "4.5.0",
  630. "Microsoft.IdentityModel.Logging": "6.10.0",
  631. "System.Security.Cryptography.Cng": "4.5.0"
  632. },
  633. "compile": {
  634. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  635. "related": ".xml"
  636. }
  637. },
  638. "runtime": {
  639. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  640. "related": ".xml"
  641. }
  642. }
  643. },
  644. "Microsoft.NETCore.Platforms/3.1.0": {
  645. "type": "package",
  646. "compile": {
  647. "lib/netstandard1.0/_._": {}
  648. },
  649. "runtime": {
  650. "lib/netstandard1.0/_._": {}
  651. }
  652. },
  653. "Microsoft.NETCore.Targets/1.1.0": {
  654. "type": "package",
  655. "compile": {
  656. "lib/netstandard1.0/_._": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.0/_._": {}
  660. }
  661. },
  662. "Microsoft.OpenApi/1.2.3": {
  663. "type": "package",
  664. "compile": {
  665. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  666. "related": ".pdb;.xml"
  667. }
  668. },
  669. "runtime": {
  670. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  671. "related": ".pdb;.xml"
  672. }
  673. }
  674. },
  675. "Microsoft.Win32.Primitives/4.3.0": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.NETCore.Platforms": "1.1.0",
  679. "Microsoft.NETCore.Targets": "1.1.0",
  680. "System.Runtime": "4.3.0"
  681. },
  682. "compile": {
  683. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  684. "related": ".xml"
  685. }
  686. }
  687. },
  688. "Microsoft.Win32.Registry/4.7.0": {
  689. "type": "package",
  690. "dependencies": {
  691. "System.Security.AccessControl": "4.7.0",
  692. "System.Security.Principal.Windows": "4.7.0"
  693. },
  694. "compile": {
  695. "ref/netstandard2.0/_._": {
  696. "related": ".xml"
  697. }
  698. },
  699. "runtime": {
  700. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  701. "related": ".xml"
  702. }
  703. },
  704. "runtimeTargets": {
  705. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  706. "assetType": "runtime",
  707. "rid": "unix"
  708. },
  709. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  710. "assetType": "runtime",
  711. "rid": "win"
  712. }
  713. }
  714. },
  715. "Microsoft.Win32.SystemEvents/4.7.0": {
  716. "type": "package",
  717. "dependencies": {
  718. "Microsoft.NETCore.Platforms": "3.1.0"
  719. },
  720. "compile": {
  721. "ref/netstandard2.0/_._": {
  722. "related": ".xml"
  723. }
  724. },
  725. "runtime": {
  726. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "runtimeTargets": {
  731. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  732. "assetType": "runtime",
  733. "rid": "win"
  734. }
  735. }
  736. },
  737. "MySql.Data/8.0.29": {
  738. "type": "package",
  739. "dependencies": {
  740. "BouncyCastle.NetCore": "1.8.5",
  741. "Google.Protobuf": "3.19.4",
  742. "K4os.Compression.LZ4.Streams": "1.2.6",
  743. "System.Buffers": "4.5.1",
  744. "System.Configuration.ConfigurationManager": "4.4.1",
  745. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  746. "System.Security.Permissions": "4.7.0",
  747. "System.Text.Encoding.CodePages": "4.4.0"
  748. },
  749. "compile": {
  750. "lib/net6.0/MySql.Data.dll": {
  751. "related": ".xml"
  752. },
  753. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  754. "lib/net6.0/ZstdNet.dll": {}
  755. },
  756. "runtime": {
  757. "lib/net6.0/MySql.Data.dll": {
  758. "related": ".xml"
  759. },
  760. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  761. "lib/net6.0/ZstdNet.dll": {}
  762. }
  763. },
  764. "NETStandard.Library/1.6.1": {
  765. "type": "package",
  766. "dependencies": {
  767. "Microsoft.NETCore.Platforms": "1.1.0",
  768. "Microsoft.Win32.Primitives": "4.3.0",
  769. "System.AppContext": "4.3.0",
  770. "System.Collections": "4.3.0",
  771. "System.Collections.Concurrent": "4.3.0",
  772. "System.Console": "4.3.0",
  773. "System.Diagnostics.Debug": "4.3.0",
  774. "System.Diagnostics.Tools": "4.3.0",
  775. "System.Diagnostics.Tracing": "4.3.0",
  776. "System.Globalization": "4.3.0",
  777. "System.Globalization.Calendars": "4.3.0",
  778. "System.IO": "4.3.0",
  779. "System.IO.Compression": "4.3.0",
  780. "System.IO.Compression.ZipFile": "4.3.0",
  781. "System.IO.FileSystem": "4.3.0",
  782. "System.IO.FileSystem.Primitives": "4.3.0",
  783. "System.Linq": "4.3.0",
  784. "System.Linq.Expressions": "4.3.0",
  785. "System.Net.Http": "4.3.0",
  786. "System.Net.Primitives": "4.3.0",
  787. "System.Net.Sockets": "4.3.0",
  788. "System.ObjectModel": "4.3.0",
  789. "System.Reflection": "4.3.0",
  790. "System.Reflection.Extensions": "4.3.0",
  791. "System.Reflection.Primitives": "4.3.0",
  792. "System.Resources.ResourceManager": "4.3.0",
  793. "System.Runtime": "4.3.0",
  794. "System.Runtime.Extensions": "4.3.0",
  795. "System.Runtime.Handles": "4.3.0",
  796. "System.Runtime.InteropServices": "4.3.0",
  797. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  798. "System.Runtime.Numerics": "4.3.0",
  799. "System.Security.Cryptography.Algorithms": "4.3.0",
  800. "System.Security.Cryptography.Encoding": "4.3.0",
  801. "System.Security.Cryptography.Primitives": "4.3.0",
  802. "System.Security.Cryptography.X509Certificates": "4.3.0",
  803. "System.Text.Encoding": "4.3.0",
  804. "System.Text.Encoding.Extensions": "4.3.0",
  805. "System.Text.RegularExpressions": "4.3.0",
  806. "System.Threading": "4.3.0",
  807. "System.Threading.Tasks": "4.3.0",
  808. "System.Threading.Timer": "4.3.0",
  809. "System.Xml.ReaderWriter": "4.3.0",
  810. "System.Xml.XDocument": "4.3.0"
  811. }
  812. },
  813. "Newtonsoft.Json/12.0.2": {
  814. "type": "package",
  815. "compile": {
  816. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  817. "related": ".xml"
  818. }
  819. },
  820. "runtime": {
  821. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  822. "related": ".xml"
  823. }
  824. }
  825. },
  826. "Newtonsoft.Json.Bson/1.0.1": {
  827. "type": "package",
  828. "dependencies": {
  829. "NETStandard.Library": "1.6.1",
  830. "Newtonsoft.Json": "10.0.1"
  831. },
  832. "compile": {
  833. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  834. "related": ".xml"
  835. }
  836. },
  837. "runtime": {
  838. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  839. "related": ".xml"
  840. }
  841. }
  842. },
  843. "Npgsql/5.0.7": {
  844. "type": "package",
  845. "dependencies": {
  846. "System.Runtime.CompilerServices.Unsafe": "4.6.0"
  847. },
  848. "compile": {
  849. "lib/net5.0/Npgsql.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "runtime": {
  854. "lib/net5.0/Npgsql.dll": {
  855. "related": ".xml"
  856. }
  857. }
  858. },
  859. "Oracle.ManagedDataAccess.Core/3.21.1": {
  860. "type": "package",
  861. "dependencies": {
  862. "System.Diagnostics.PerformanceCounter": "4.7.0",
  863. "System.DirectoryServices": "4.7.0",
  864. "System.DirectoryServices.Protocols": "4.7.0",
  865. "System.Text.Json": "4.7.1"
  866. },
  867. "compile": {
  868. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  869. },
  870. "runtime": {
  871. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  872. }
  873. },
  874. "Pipelines.Sockets.Unofficial/2.2.2": {
  875. "type": "package",
  876. "dependencies": {
  877. "System.IO.Pipelines": "5.0.1"
  878. },
  879. "compile": {
  880. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "QRCoder/1.4.1": {
  891. "type": "package",
  892. "dependencies": {
  893. "System.Drawing.Common": "4.7.0"
  894. },
  895. "compile": {
  896. "lib/netstandard2.0/QRCoder.dll": {}
  897. },
  898. "runtime": {
  899. "lib/netstandard2.0/QRCoder.dll": {}
  900. }
  901. },
  902. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  903. "type": "package",
  904. "runtimeTargets": {
  905. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  906. "assetType": "native",
  907. "rid": "debian.8-x64"
  908. }
  909. }
  910. },
  911. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  912. "type": "package",
  913. "runtimeTargets": {
  914. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  915. "assetType": "native",
  916. "rid": "fedora.23-x64"
  917. }
  918. }
  919. },
  920. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  921. "type": "package",
  922. "runtimeTargets": {
  923. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  924. "assetType": "native",
  925. "rid": "fedora.24-x64"
  926. }
  927. }
  928. },
  929. "runtime.native.System/4.3.0": {
  930. "type": "package",
  931. "dependencies": {
  932. "Microsoft.NETCore.Platforms": "1.1.0",
  933. "Microsoft.NETCore.Targets": "1.1.0"
  934. },
  935. "compile": {
  936. "lib/netstandard1.0/_._": {}
  937. },
  938. "runtime": {
  939. "lib/netstandard1.0/_._": {}
  940. }
  941. },
  942. "runtime.native.System.IO.Compression/4.3.0": {
  943. "type": "package",
  944. "dependencies": {
  945. "Microsoft.NETCore.Platforms": "1.1.0",
  946. "Microsoft.NETCore.Targets": "1.1.0"
  947. },
  948. "compile": {
  949. "lib/netstandard1.0/_._": {}
  950. },
  951. "runtime": {
  952. "lib/netstandard1.0/_._": {}
  953. }
  954. },
  955. "runtime.native.System.Net.Http/4.3.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.NETCore.Platforms": "1.1.0",
  959. "Microsoft.NETCore.Targets": "1.1.0"
  960. },
  961. "compile": {
  962. "lib/netstandard1.0/_._": {}
  963. },
  964. "runtime": {
  965. "lib/netstandard1.0/_._": {}
  966. }
  967. },
  968. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  969. "type": "package",
  970. "dependencies": {
  971. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  972. },
  973. "compile": {
  974. "lib/netstandard1.0/_._": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard1.0/_._": {}
  978. }
  979. },
  980. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  981. "type": "package",
  982. "dependencies": {
  983. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  984. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  985. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  986. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  987. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  988. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  989. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  990. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  991. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  992. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  993. },
  994. "compile": {
  995. "lib/netstandard1.0/_._": {}
  996. },
  997. "runtime": {
  998. "lib/netstandard1.0/_._": {}
  999. }
  1000. },
  1001. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1002. "type": "package",
  1003. "runtimeTargets": {
  1004. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1005. "assetType": "native",
  1006. "rid": "opensuse.13.2-x64"
  1007. }
  1008. }
  1009. },
  1010. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1011. "type": "package",
  1012. "runtimeTargets": {
  1013. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1014. "assetType": "native",
  1015. "rid": "opensuse.42.1-x64"
  1016. }
  1017. }
  1018. },
  1019. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1020. "type": "package",
  1021. "runtimeTargets": {
  1022. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1023. "assetType": "native",
  1024. "rid": "osx.10.10-x64"
  1025. }
  1026. }
  1027. },
  1028. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1029. "type": "package",
  1030. "runtimeTargets": {
  1031. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1032. "assetType": "native",
  1033. "rid": "osx.10.10-x64"
  1034. }
  1035. }
  1036. },
  1037. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1038. "type": "package",
  1039. "runtimeTargets": {
  1040. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1041. "assetType": "native",
  1042. "rid": "rhel.7-x64"
  1043. }
  1044. }
  1045. },
  1046. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1047. "type": "package",
  1048. "runtimeTargets": {
  1049. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1050. "assetType": "native",
  1051. "rid": "ubuntu.14.04-x64"
  1052. }
  1053. }
  1054. },
  1055. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1056. "type": "package",
  1057. "runtimeTargets": {
  1058. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1059. "assetType": "native",
  1060. "rid": "ubuntu.16.04-x64"
  1061. }
  1062. }
  1063. },
  1064. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1065. "type": "package",
  1066. "runtimeTargets": {
  1067. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1068. "assetType": "native",
  1069. "rid": "ubuntu.16.10-x64"
  1070. }
  1071. }
  1072. },
  1073. "Serilog/2.10.0": {
  1074. "type": "package",
  1075. "compile": {
  1076. "lib/netstandard2.1/Serilog.dll": {
  1077. "related": ".xml"
  1078. }
  1079. },
  1080. "runtime": {
  1081. "lib/netstandard2.1/Serilog.dll": {
  1082. "related": ".xml"
  1083. }
  1084. }
  1085. },
  1086. "Serilog.Sinks.File/5.0.0": {
  1087. "type": "package",
  1088. "dependencies": {
  1089. "Serilog": "2.10.0"
  1090. },
  1091. "compile": {
  1092. "lib/net5.0/Serilog.Sinks.File.dll": {
  1093. "related": ".pdb;.xml"
  1094. }
  1095. },
  1096. "runtime": {
  1097. "lib/net5.0/Serilog.Sinks.File.dll": {
  1098. "related": ".pdb;.xml"
  1099. }
  1100. }
  1101. },
  1102. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  1103. "type": "package",
  1104. "dependencies": {
  1105. "SQLitePCLRaw.core": "2.0.4",
  1106. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  1107. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  1108. },
  1109. "compile": {
  1110. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  1111. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  1115. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  1116. }
  1117. },
  1118. "SQLitePCLRaw.core/2.0.4": {
  1119. "type": "package",
  1120. "dependencies": {
  1121. "System.Memory": "4.5.3"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1125. },
  1126. "runtime": {
  1127. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1128. }
  1129. },
  1130. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  1131. "type": "package",
  1132. "compile": {
  1133. "lib/netstandard2.0/_._": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netstandard2.0/_._": {}
  1137. },
  1138. "runtimeTargets": {
  1139. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1140. "assetType": "native",
  1141. "rid": "alpine-x64"
  1142. },
  1143. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1144. "assetType": "native",
  1145. "rid": "linux-arm"
  1146. },
  1147. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1148. "assetType": "native",
  1149. "rid": "linux-arm64"
  1150. },
  1151. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1152. "assetType": "native",
  1153. "rid": "linux-armel"
  1154. },
  1155. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  1156. "assetType": "native",
  1157. "rid": "linux-mips64"
  1158. },
  1159. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1160. "assetType": "native",
  1161. "rid": "linux-musl-x64"
  1162. },
  1163. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1164. "assetType": "native",
  1165. "rid": "linux-x64"
  1166. },
  1167. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1168. "assetType": "native",
  1169. "rid": "linux-x86"
  1170. },
  1171. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1172. "assetType": "native",
  1173. "rid": "osx-x64"
  1174. },
  1175. "runtimes/win-arm/native/e_sqlite3.dll": {
  1176. "assetType": "native",
  1177. "rid": "win-arm"
  1178. },
  1179. "runtimes/win-arm64/native/e_sqlite3.dll": {
  1180. "assetType": "native",
  1181. "rid": "win-arm64"
  1182. },
  1183. "runtimes/win-x64/native/e_sqlite3.dll": {
  1184. "assetType": "native",
  1185. "rid": "win-x64"
  1186. },
  1187. "runtimes/win-x86/native/e_sqlite3.dll": {
  1188. "assetType": "native",
  1189. "rid": "win-x86"
  1190. }
  1191. }
  1192. },
  1193. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "SQLitePCLRaw.core": "2.0.4"
  1197. },
  1198. "compile": {
  1199. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  1200. },
  1201. "runtime": {
  1202. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  1203. }
  1204. },
  1205. "SqlSugarCore/5.1.3.32": {
  1206. "type": "package",
  1207. "dependencies": {
  1208. "Microsoft.Data.SqlClient": "2.1.1",
  1209. "Microsoft.Data.Sqlite": "5.0.5",
  1210. "MySql.Data": "8.0.29",
  1211. "Newtonsoft.Json": "10.0.3",
  1212. "Npgsql": "5.0.7",
  1213. "Oracle.ManagedDataAccess.Core": "3.21.1",
  1214. "SqlSugarCore.Dm": "1.0.0",
  1215. "SqlSugarCore.Kdbndp": "1.0.0",
  1216. "System.Data.Common": "4.3.0",
  1217. "System.Reflection.Emit.Lightweight": "4.3.0"
  1218. },
  1219. "compile": {
  1220. "lib/netstandard2.1/SqlSugar.dll": {}
  1221. },
  1222. "runtime": {
  1223. "lib/netstandard2.1/SqlSugar.dll": {}
  1224. }
  1225. },
  1226. "SqlSugarCore.Dm/1.0.0": {
  1227. "type": "package",
  1228. "compile": {
  1229. "lib/netstandard2.0/DmProvider.dll": {}
  1230. },
  1231. "runtime": {
  1232. "lib/netstandard2.0/DmProvider.dll": {}
  1233. }
  1234. },
  1235. "SqlSugarCore.Kdbndp/1.0.0": {
  1236. "type": "package",
  1237. "compile": {
  1238. "lib/netstandard2.0/Kdbndp.dll": {}
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Kdbndp.dll": {}
  1242. }
  1243. },
  1244. "StackExchange.Redis/2.6.96": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Pipelines.Sockets.Unofficial": "2.2.2"
  1248. },
  1249. "compile": {
  1250. "lib/net5.0/StackExchange.Redis.dll": {
  1251. "related": ".xml"
  1252. }
  1253. },
  1254. "runtime": {
  1255. "lib/net5.0/StackExchange.Redis.dll": {
  1256. "related": ".xml"
  1257. }
  1258. }
  1259. },
  1260. "Swashbuckle.AspNetCore/6.4.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1264. "Swashbuckle.AspNetCore.Swagger": "6.4.0",
  1265. "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
  1266. "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
  1267. },
  1268. "build": {
  1269. "build/Swashbuckle.AspNetCore.props": {}
  1270. }
  1271. },
  1272. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.OpenApi": "1.2.3"
  1276. },
  1277. "compile": {
  1278. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1279. "related": ".pdb;.xml"
  1280. }
  1281. },
  1282. "runtime": {
  1283. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1284. "related": ".pdb;.xml"
  1285. }
  1286. },
  1287. "frameworkReferences": [
  1288. "Microsoft.AspNetCore.App"
  1289. ]
  1290. },
  1291. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  1292. "type": "package",
  1293. "dependencies": {
  1294. "Swashbuckle.AspNetCore.Swagger": "6.4.0"
  1295. },
  1296. "compile": {
  1297. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1298. "related": ".pdb;.xml"
  1299. }
  1300. },
  1301. "runtime": {
  1302. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1303. "related": ".pdb;.xml"
  1304. }
  1305. }
  1306. },
  1307. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  1308. "type": "package",
  1309. "compile": {
  1310. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1311. "related": ".pdb;.xml"
  1312. }
  1313. },
  1314. "runtime": {
  1315. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1316. "related": ".pdb;.xml"
  1317. }
  1318. },
  1319. "frameworkReferences": [
  1320. "Microsoft.AspNetCore.App"
  1321. ]
  1322. },
  1323. "System.AppContext/4.3.0": {
  1324. "type": "package",
  1325. "dependencies": {
  1326. "System.Runtime": "4.3.0"
  1327. },
  1328. "compile": {
  1329. "ref/netstandard1.6/System.AppContext.dll": {
  1330. "related": ".xml"
  1331. }
  1332. },
  1333. "runtime": {
  1334. "lib/netstandard1.6/System.AppContext.dll": {}
  1335. }
  1336. },
  1337. "System.Buffers/4.5.1": {
  1338. "type": "package",
  1339. "compile": {
  1340. "ref/netcoreapp2.0/_._": {}
  1341. },
  1342. "runtime": {
  1343. "lib/netcoreapp2.0/_._": {}
  1344. }
  1345. },
  1346. "System.Collections/4.3.0": {
  1347. "type": "package",
  1348. "dependencies": {
  1349. "Microsoft.NETCore.Platforms": "1.1.0",
  1350. "Microsoft.NETCore.Targets": "1.1.0",
  1351. "System.Runtime": "4.3.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard1.3/System.Collections.dll": {
  1355. "related": ".xml"
  1356. }
  1357. }
  1358. },
  1359. "System.Collections.Concurrent/4.3.0": {
  1360. "type": "package",
  1361. "dependencies": {
  1362. "System.Collections": "4.3.0",
  1363. "System.Diagnostics.Debug": "4.3.0",
  1364. "System.Diagnostics.Tracing": "4.3.0",
  1365. "System.Globalization": "4.3.0",
  1366. "System.Reflection": "4.3.0",
  1367. "System.Resources.ResourceManager": "4.3.0",
  1368. "System.Runtime": "4.3.0",
  1369. "System.Runtime.Extensions": "4.3.0",
  1370. "System.Threading": "4.3.0",
  1371. "System.Threading.Tasks": "4.3.0"
  1372. },
  1373. "compile": {
  1374. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1375. "related": ".xml"
  1376. }
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1380. }
  1381. },
  1382. "System.Configuration.ConfigurationManager/4.7.0": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1386. "System.Security.Permissions": "4.7.0"
  1387. },
  1388. "compile": {
  1389. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1390. "related": ".xml"
  1391. }
  1392. },
  1393. "runtime": {
  1394. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1395. "related": ".xml"
  1396. }
  1397. }
  1398. },
  1399. "System.Console/4.3.0": {
  1400. "type": "package",
  1401. "dependencies": {
  1402. "Microsoft.NETCore.Platforms": "1.1.0",
  1403. "Microsoft.NETCore.Targets": "1.1.0",
  1404. "System.IO": "4.3.0",
  1405. "System.Runtime": "4.3.0",
  1406. "System.Text.Encoding": "4.3.0"
  1407. },
  1408. "compile": {
  1409. "ref/netstandard1.3/System.Console.dll": {
  1410. "related": ".xml"
  1411. }
  1412. }
  1413. },
  1414. "System.Data.Common/4.3.0": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "System.Collections": "4.3.0",
  1418. "System.Globalization": "4.3.0",
  1419. "System.IO": "4.3.0",
  1420. "System.Resources.ResourceManager": "4.3.0",
  1421. "System.Runtime": "4.3.0",
  1422. "System.Runtime.Extensions": "4.3.0",
  1423. "System.Text.RegularExpressions": "4.3.0",
  1424. "System.Threading.Tasks": "4.3.0"
  1425. },
  1426. "compile": {
  1427. "ref/netstandard1.2/System.Data.Common.dll": {
  1428. "related": ".xml"
  1429. }
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard1.2/System.Data.Common.dll": {}
  1433. }
  1434. },
  1435. "System.Diagnostics.Debug/4.3.0": {
  1436. "type": "package",
  1437. "dependencies": {
  1438. "Microsoft.NETCore.Platforms": "1.1.0",
  1439. "Microsoft.NETCore.Targets": "1.1.0",
  1440. "System.Runtime": "4.3.0"
  1441. },
  1442. "compile": {
  1443. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1444. "related": ".xml"
  1445. }
  1446. }
  1447. },
  1448. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1449. "type": "package",
  1450. "dependencies": {
  1451. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1452. },
  1453. "compile": {
  1454. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "runtime": {
  1459. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "build": {
  1464. "buildTransitive/netcoreapp3.1/_._": {}
  1465. }
  1466. },
  1467. "System.Diagnostics.PerformanceCounter/4.7.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "Microsoft.NETCore.Platforms": "3.1.0",
  1471. "Microsoft.Win32.Registry": "4.7.0",
  1472. "System.Configuration.ConfigurationManager": "4.7.0",
  1473. "System.Security.Principal.Windows": "4.7.0"
  1474. },
  1475. "compile": {
  1476. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1477. "related": ".xml"
  1478. }
  1479. },
  1480. "runtime": {
  1481. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1482. "related": ".xml"
  1483. }
  1484. },
  1485. "runtimeTargets": {
  1486. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1487. "assetType": "runtime",
  1488. "rid": "win"
  1489. }
  1490. }
  1491. },
  1492. "System.Diagnostics.Tools/4.3.0": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "Microsoft.NETCore.Platforms": "1.1.0",
  1496. "Microsoft.NETCore.Targets": "1.1.0",
  1497. "System.Runtime": "4.3.0"
  1498. },
  1499. "compile": {
  1500. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1501. "related": ".xml"
  1502. }
  1503. }
  1504. },
  1505. "System.Diagnostics.Tracing/4.3.0": {
  1506. "type": "package",
  1507. "dependencies": {
  1508. "Microsoft.NETCore.Platforms": "1.1.0",
  1509. "Microsoft.NETCore.Targets": "1.1.0",
  1510. "System.Runtime": "4.3.0"
  1511. },
  1512. "compile": {
  1513. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1514. "related": ".xml"
  1515. }
  1516. }
  1517. },
  1518. "System.DirectoryServices/4.7.0": {
  1519. "type": "package",
  1520. "dependencies": {
  1521. "Microsoft.NETCore.Platforms": "3.1.0",
  1522. "System.IO.FileSystem.AccessControl": "4.7.0",
  1523. "System.Security.AccessControl": "4.7.0",
  1524. "System.Security.Permissions": "4.7.0",
  1525. "System.Security.Principal.Windows": "4.7.0"
  1526. },
  1527. "compile": {
  1528. "ref/netstandard2.0/System.DirectoryServices.dll": {
  1529. "related": ".xml"
  1530. }
  1531. },
  1532. "runtime": {
  1533. "lib/netstandard2.0/System.DirectoryServices.dll": {
  1534. "related": ".xml"
  1535. }
  1536. },
  1537. "runtimeTargets": {
  1538. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  1539. "assetType": "runtime",
  1540. "rid": "win"
  1541. }
  1542. }
  1543. },
  1544. "System.DirectoryServices.Protocols/4.7.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Microsoft.NETCore.Platforms": "3.1.0",
  1548. "System.Security.Principal.Windows": "4.7.0"
  1549. },
  1550. "compile": {
  1551. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1552. "related": ".xml"
  1553. }
  1554. },
  1555. "runtime": {
  1556. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1557. "related": ".xml"
  1558. }
  1559. },
  1560. "runtimeTargets": {
  1561. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  1562. "assetType": "runtime",
  1563. "rid": "win"
  1564. }
  1565. }
  1566. },
  1567. "System.Drawing.Common/4.7.0": {
  1568. "type": "package",
  1569. "dependencies": {
  1570. "Microsoft.NETCore.Platforms": "3.1.0",
  1571. "Microsoft.Win32.SystemEvents": "4.7.0"
  1572. },
  1573. "compile": {
  1574. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1575. "related": ".xml"
  1576. }
  1577. },
  1578. "runtime": {
  1579. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1580. },
  1581. "runtimeTargets": {
  1582. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1583. "assetType": "runtime",
  1584. "rid": "unix"
  1585. },
  1586. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1587. "assetType": "runtime",
  1588. "rid": "win"
  1589. }
  1590. }
  1591. },
  1592. "System.Globalization/4.3.0": {
  1593. "type": "package",
  1594. "dependencies": {
  1595. "Microsoft.NETCore.Platforms": "1.1.0",
  1596. "Microsoft.NETCore.Targets": "1.1.0",
  1597. "System.Runtime": "4.3.0"
  1598. },
  1599. "compile": {
  1600. "ref/netstandard1.3/System.Globalization.dll": {
  1601. "related": ".xml"
  1602. }
  1603. }
  1604. },
  1605. "System.Globalization.Calendars/4.3.0": {
  1606. "type": "package",
  1607. "dependencies": {
  1608. "Microsoft.NETCore.Platforms": "1.1.0",
  1609. "Microsoft.NETCore.Targets": "1.1.0",
  1610. "System.Globalization": "4.3.0",
  1611. "System.Runtime": "4.3.0"
  1612. },
  1613. "compile": {
  1614. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1615. "related": ".xml"
  1616. }
  1617. }
  1618. },
  1619. "System.Globalization.Extensions/4.3.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "Microsoft.NETCore.Platforms": "1.1.0",
  1623. "System.Globalization": "4.3.0",
  1624. "System.Resources.ResourceManager": "4.3.0",
  1625. "System.Runtime": "4.3.0",
  1626. "System.Runtime.Extensions": "4.3.0",
  1627. "System.Runtime.InteropServices": "4.3.0"
  1628. },
  1629. "compile": {
  1630. "ref/netstandard1.3/_._": {
  1631. "related": ".xml"
  1632. }
  1633. },
  1634. "runtimeTargets": {
  1635. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "unix"
  1638. },
  1639. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1640. "assetType": "runtime",
  1641. "rid": "win"
  1642. }
  1643. }
  1644. },
  1645. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  1649. "Microsoft.IdentityModel.Tokens": "6.10.0"
  1650. },
  1651. "compile": {
  1652. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1653. "related": ".xml"
  1654. }
  1655. },
  1656. "runtime": {
  1657. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "System.IO/4.3.0": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "Microsoft.NETCore.Platforms": "1.1.0",
  1666. "Microsoft.NETCore.Targets": "1.1.0",
  1667. "System.Runtime": "4.3.0",
  1668. "System.Text.Encoding": "4.3.0",
  1669. "System.Threading.Tasks": "4.3.0"
  1670. },
  1671. "compile": {
  1672. "ref/netstandard1.5/System.IO.dll": {
  1673. "related": ".xml"
  1674. }
  1675. }
  1676. },
  1677. "System.IO.Compression/4.3.0": {
  1678. "type": "package",
  1679. "dependencies": {
  1680. "Microsoft.NETCore.Platforms": "1.1.0",
  1681. "System.Buffers": "4.3.0",
  1682. "System.Collections": "4.3.0",
  1683. "System.Diagnostics.Debug": "4.3.0",
  1684. "System.IO": "4.3.0",
  1685. "System.Resources.ResourceManager": "4.3.0",
  1686. "System.Runtime": "4.3.0",
  1687. "System.Runtime.Extensions": "4.3.0",
  1688. "System.Runtime.Handles": "4.3.0",
  1689. "System.Runtime.InteropServices": "4.3.0",
  1690. "System.Text.Encoding": "4.3.0",
  1691. "System.Threading": "4.3.0",
  1692. "System.Threading.Tasks": "4.3.0",
  1693. "runtime.native.System": "4.3.0",
  1694. "runtime.native.System.IO.Compression": "4.3.0"
  1695. },
  1696. "compile": {
  1697. "ref/netstandard1.3/System.IO.Compression.dll": {
  1698. "related": ".xml"
  1699. }
  1700. },
  1701. "runtimeTargets": {
  1702. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1703. "assetType": "runtime",
  1704. "rid": "unix"
  1705. },
  1706. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1707. "assetType": "runtime",
  1708. "rid": "win"
  1709. }
  1710. }
  1711. },
  1712. "System.IO.Compression.ZipFile/4.3.0": {
  1713. "type": "package",
  1714. "dependencies": {
  1715. "System.Buffers": "4.3.0",
  1716. "System.IO": "4.3.0",
  1717. "System.IO.Compression": "4.3.0",
  1718. "System.IO.FileSystem": "4.3.0",
  1719. "System.IO.FileSystem.Primitives": "4.3.0",
  1720. "System.Resources.ResourceManager": "4.3.0",
  1721. "System.Runtime": "4.3.0",
  1722. "System.Runtime.Extensions": "4.3.0",
  1723. "System.Text.Encoding": "4.3.0"
  1724. },
  1725. "compile": {
  1726. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1727. "related": ".xml"
  1728. }
  1729. },
  1730. "runtime": {
  1731. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1732. }
  1733. },
  1734. "System.IO.FileSystem/4.3.0": {
  1735. "type": "package",
  1736. "dependencies": {
  1737. "Microsoft.NETCore.Platforms": "1.1.0",
  1738. "Microsoft.NETCore.Targets": "1.1.0",
  1739. "System.IO": "4.3.0",
  1740. "System.IO.FileSystem.Primitives": "4.3.0",
  1741. "System.Runtime": "4.3.0",
  1742. "System.Runtime.Handles": "4.3.0",
  1743. "System.Text.Encoding": "4.3.0",
  1744. "System.Threading.Tasks": "4.3.0"
  1745. },
  1746. "compile": {
  1747. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1748. "related": ".xml"
  1749. }
  1750. }
  1751. },
  1752. "System.IO.FileSystem.AccessControl/4.7.0": {
  1753. "type": "package",
  1754. "dependencies": {
  1755. "System.Security.AccessControl": "4.7.0",
  1756. "System.Security.Principal.Windows": "4.7.0"
  1757. },
  1758. "compile": {
  1759. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1760. "related": ".xml"
  1761. }
  1762. },
  1763. "runtime": {
  1764. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1765. "related": ".xml"
  1766. }
  1767. },
  1768. "runtimeTargets": {
  1769. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1770. "assetType": "runtime",
  1771. "rid": "win"
  1772. }
  1773. }
  1774. },
  1775. "System.IO.FileSystem.Primitives/4.3.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "System.Runtime": "4.3.0"
  1779. },
  1780. "compile": {
  1781. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1787. }
  1788. },
  1789. "System.IO.Pipelines/5.0.1": {
  1790. "type": "package",
  1791. "compile": {
  1792. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1793. "related": ".xml"
  1794. }
  1795. },
  1796. "runtime": {
  1797. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1798. "related": ".xml"
  1799. }
  1800. }
  1801. },
  1802. "System.Linq/4.3.0": {
  1803. "type": "package",
  1804. "dependencies": {
  1805. "System.Collections": "4.3.0",
  1806. "System.Diagnostics.Debug": "4.3.0",
  1807. "System.Resources.ResourceManager": "4.3.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Extensions": "4.3.0"
  1810. },
  1811. "compile": {
  1812. "ref/netstandard1.6/System.Linq.dll": {
  1813. "related": ".xml"
  1814. }
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.6/System.Linq.dll": {}
  1818. }
  1819. },
  1820. "System.Linq.Expressions/4.3.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "System.Collections": "4.3.0",
  1824. "System.Diagnostics.Debug": "4.3.0",
  1825. "System.Globalization": "4.3.0",
  1826. "System.IO": "4.3.0",
  1827. "System.Linq": "4.3.0",
  1828. "System.ObjectModel": "4.3.0",
  1829. "System.Reflection": "4.3.0",
  1830. "System.Reflection.Emit": "4.3.0",
  1831. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1832. "System.Reflection.Emit.Lightweight": "4.3.0",
  1833. "System.Reflection.Extensions": "4.3.0",
  1834. "System.Reflection.Primitives": "4.3.0",
  1835. "System.Reflection.TypeExtensions": "4.3.0",
  1836. "System.Resources.ResourceManager": "4.3.0",
  1837. "System.Runtime": "4.3.0",
  1838. "System.Runtime.Extensions": "4.3.0",
  1839. "System.Threading": "4.3.0"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1843. "related": ".xml"
  1844. }
  1845. },
  1846. "runtime": {
  1847. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1848. }
  1849. },
  1850. "System.Memory/4.5.4": {
  1851. "type": "package",
  1852. "compile": {
  1853. "ref/netcoreapp2.1/_._": {}
  1854. },
  1855. "runtime": {
  1856. "lib/netcoreapp2.1/_._": {}
  1857. }
  1858. },
  1859. "System.Net.Http/4.3.0": {
  1860. "type": "package",
  1861. "dependencies": {
  1862. "Microsoft.NETCore.Platforms": "1.1.0",
  1863. "System.Collections": "4.3.0",
  1864. "System.Diagnostics.Debug": "4.3.0",
  1865. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1866. "System.Diagnostics.Tracing": "4.3.0",
  1867. "System.Globalization": "4.3.0",
  1868. "System.Globalization.Extensions": "4.3.0",
  1869. "System.IO": "4.3.0",
  1870. "System.IO.FileSystem": "4.3.0",
  1871. "System.Net.Primitives": "4.3.0",
  1872. "System.Resources.ResourceManager": "4.3.0",
  1873. "System.Runtime": "4.3.0",
  1874. "System.Runtime.Extensions": "4.3.0",
  1875. "System.Runtime.Handles": "4.3.0",
  1876. "System.Runtime.InteropServices": "4.3.0",
  1877. "System.Security.Cryptography.Algorithms": "4.3.0",
  1878. "System.Security.Cryptography.Encoding": "4.3.0",
  1879. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1880. "System.Security.Cryptography.Primitives": "4.3.0",
  1881. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1882. "System.Text.Encoding": "4.3.0",
  1883. "System.Threading": "4.3.0",
  1884. "System.Threading.Tasks": "4.3.0",
  1885. "runtime.native.System": "4.3.0",
  1886. "runtime.native.System.Net.Http": "4.3.0",
  1887. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1888. },
  1889. "compile": {
  1890. "ref/netstandard1.3/System.Net.Http.dll": {
  1891. "related": ".xml"
  1892. }
  1893. },
  1894. "runtimeTargets": {
  1895. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1896. "assetType": "runtime",
  1897. "rid": "unix"
  1898. },
  1899. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1900. "assetType": "runtime",
  1901. "rid": "win"
  1902. }
  1903. }
  1904. },
  1905. "System.Net.Primitives/4.3.0": {
  1906. "type": "package",
  1907. "dependencies": {
  1908. "Microsoft.NETCore.Platforms": "1.1.0",
  1909. "Microsoft.NETCore.Targets": "1.1.0",
  1910. "System.Runtime": "4.3.0",
  1911. "System.Runtime.Handles": "4.3.0"
  1912. },
  1913. "compile": {
  1914. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1915. "related": ".xml"
  1916. }
  1917. }
  1918. },
  1919. "System.Net.Sockets/4.3.0": {
  1920. "type": "package",
  1921. "dependencies": {
  1922. "Microsoft.NETCore.Platforms": "1.1.0",
  1923. "Microsoft.NETCore.Targets": "1.1.0",
  1924. "System.IO": "4.3.0",
  1925. "System.Net.Primitives": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Threading.Tasks": "4.3.0"
  1928. },
  1929. "compile": {
  1930. "ref/netstandard1.3/System.Net.Sockets.dll": {
  1931. "related": ".xml"
  1932. }
  1933. }
  1934. },
  1935. "System.ObjectModel/4.3.0": {
  1936. "type": "package",
  1937. "dependencies": {
  1938. "System.Collections": "4.3.0",
  1939. "System.Diagnostics.Debug": "4.3.0",
  1940. "System.Resources.ResourceManager": "4.3.0",
  1941. "System.Runtime": "4.3.0",
  1942. "System.Threading": "4.3.0"
  1943. },
  1944. "compile": {
  1945. "ref/netstandard1.3/System.ObjectModel.dll": {
  1946. "related": ".xml"
  1947. }
  1948. },
  1949. "runtime": {
  1950. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1951. }
  1952. },
  1953. "System.Reflection/4.3.0": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "Microsoft.NETCore.Platforms": "1.1.0",
  1957. "Microsoft.NETCore.Targets": "1.1.0",
  1958. "System.IO": "4.3.0",
  1959. "System.Reflection.Primitives": "4.3.0",
  1960. "System.Runtime": "4.3.0"
  1961. },
  1962. "compile": {
  1963. "ref/netstandard1.5/System.Reflection.dll": {
  1964. "related": ".xml"
  1965. }
  1966. }
  1967. },
  1968. "System.Reflection.Emit/4.3.0": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "System.IO": "4.3.0",
  1972. "System.Reflection": "4.3.0",
  1973. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1974. "System.Reflection.Primitives": "4.3.0",
  1975. "System.Runtime": "4.3.0"
  1976. },
  1977. "compile": {
  1978. "ref/netstandard1.1/_._": {
  1979. "related": ".xml"
  1980. }
  1981. },
  1982. "runtime": {
  1983. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1984. }
  1985. },
  1986. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1987. "type": "package",
  1988. "dependencies": {
  1989. "System.Reflection": "4.3.0",
  1990. "System.Reflection.Primitives": "4.3.0",
  1991. "System.Runtime": "4.3.0"
  1992. },
  1993. "compile": {
  1994. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1995. "related": ".xml"
  1996. }
  1997. },
  1998. "runtime": {
  1999. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2000. }
  2001. },
  2002. "System.Reflection.Emit.Lightweight/4.3.0": {
  2003. "type": "package",
  2004. "dependencies": {
  2005. "System.Reflection": "4.3.0",
  2006. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2007. "System.Reflection.Primitives": "4.3.0",
  2008. "System.Runtime": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2012. "related": ".xml"
  2013. }
  2014. },
  2015. "runtime": {
  2016. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2017. }
  2018. },
  2019. "System.Reflection.Extensions/4.3.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.1.0",
  2023. "Microsoft.NETCore.Targets": "1.1.0",
  2024. "System.Reflection": "4.3.0",
  2025. "System.Runtime": "4.3.0"
  2026. },
  2027. "compile": {
  2028. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2029. "related": ".xml"
  2030. }
  2031. }
  2032. },
  2033. "System.Reflection.Primitives/4.3.0": {
  2034. "type": "package",
  2035. "dependencies": {
  2036. "Microsoft.NETCore.Platforms": "1.1.0",
  2037. "Microsoft.NETCore.Targets": "1.1.0",
  2038. "System.Runtime": "4.3.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Reflection.TypeExtensions/4.3.0": {
  2047. "type": "package",
  2048. "dependencies": {
  2049. "System.Reflection": "4.3.0",
  2050. "System.Runtime": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.5/_._": {
  2054. "related": ".xml"
  2055. }
  2056. },
  2057. "runtime": {
  2058. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2059. }
  2060. },
  2061. "System.Resources.ResourceManager/4.3.0": {
  2062. "type": "package",
  2063. "dependencies": {
  2064. "Microsoft.NETCore.Platforms": "1.1.0",
  2065. "Microsoft.NETCore.Targets": "1.1.0",
  2066. "System.Globalization": "4.3.0",
  2067. "System.Reflection": "4.3.0",
  2068. "System.Runtime": "4.3.0"
  2069. },
  2070. "compile": {
  2071. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2072. "related": ".xml"
  2073. }
  2074. }
  2075. },
  2076. "System.Runtime/4.3.0": {
  2077. "type": "package",
  2078. "dependencies": {
  2079. "Microsoft.NETCore.Platforms": "1.1.0",
  2080. "Microsoft.NETCore.Targets": "1.1.0"
  2081. },
  2082. "compile": {
  2083. "ref/netstandard1.5/System.Runtime.dll": {
  2084. "related": ".xml"
  2085. }
  2086. }
  2087. },
  2088. "System.Runtime.Caching/4.7.0": {
  2089. "type": "package",
  2090. "dependencies": {
  2091. "System.Configuration.ConfigurationManager": "4.7.0"
  2092. },
  2093. "compile": {
  2094. "ref/netstandard2.0/_._": {
  2095. "related": ".xml"
  2096. }
  2097. },
  2098. "runtime": {
  2099. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  2100. "related": ".xml"
  2101. }
  2102. },
  2103. "runtimeTargets": {
  2104. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  2105. "assetType": "runtime",
  2106. "rid": "win"
  2107. }
  2108. }
  2109. },
  2110. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2111. "type": "package",
  2112. "compile": {
  2113. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2114. "related": ".xml"
  2115. }
  2116. },
  2117. "runtime": {
  2118. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2119. "related": ".xml"
  2120. }
  2121. },
  2122. "build": {
  2123. "buildTransitive/netcoreapp3.1/_._": {}
  2124. }
  2125. },
  2126. "System.Runtime.Extensions/4.3.0": {
  2127. "type": "package",
  2128. "dependencies": {
  2129. "Microsoft.NETCore.Platforms": "1.1.0",
  2130. "Microsoft.NETCore.Targets": "1.1.0",
  2131. "System.Runtime": "4.3.0"
  2132. },
  2133. "compile": {
  2134. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2135. "related": ".xml"
  2136. }
  2137. }
  2138. },
  2139. "System.Runtime.Handles/4.3.0": {
  2140. "type": "package",
  2141. "dependencies": {
  2142. "Microsoft.NETCore.Platforms": "1.1.0",
  2143. "Microsoft.NETCore.Targets": "1.1.0",
  2144. "System.Runtime": "4.3.0"
  2145. },
  2146. "compile": {
  2147. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2148. "related": ".xml"
  2149. }
  2150. }
  2151. },
  2152. "System.Runtime.InteropServices/4.3.0": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "Microsoft.NETCore.Platforms": "1.1.0",
  2156. "Microsoft.NETCore.Targets": "1.1.0",
  2157. "System.Reflection": "4.3.0",
  2158. "System.Reflection.Primitives": "4.3.0",
  2159. "System.Runtime": "4.3.0",
  2160. "System.Runtime.Handles": "4.3.0"
  2161. },
  2162. "compile": {
  2163. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2164. }
  2165. },
  2166. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2167. "type": "package",
  2168. "dependencies": {
  2169. "System.Reflection": "4.3.0",
  2170. "System.Reflection.Extensions": "4.3.0",
  2171. "System.Resources.ResourceManager": "4.3.0",
  2172. "System.Runtime": "4.3.0",
  2173. "System.Runtime.InteropServices": "4.3.0",
  2174. "System.Threading": "4.3.0",
  2175. "runtime.native.System": "4.3.0"
  2176. },
  2177. "compile": {
  2178. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2179. },
  2180. "runtime": {
  2181. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2182. },
  2183. "runtimeTargets": {
  2184. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2185. "assetType": "runtime",
  2186. "rid": "unix"
  2187. },
  2188. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2189. "assetType": "runtime",
  2190. "rid": "win"
  2191. }
  2192. }
  2193. },
  2194. "System.Runtime.Numerics/4.3.0": {
  2195. "type": "package",
  2196. "dependencies": {
  2197. "System.Globalization": "4.3.0",
  2198. "System.Resources.ResourceManager": "4.3.0",
  2199. "System.Runtime": "4.3.0",
  2200. "System.Runtime.Extensions": "4.3.0"
  2201. },
  2202. "compile": {
  2203. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2204. "related": ".xml"
  2205. }
  2206. },
  2207. "runtime": {
  2208. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2209. }
  2210. },
  2211. "System.Security.AccessControl/4.7.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "3.1.0",
  2215. "System.Security.Principal.Windows": "4.7.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2219. "related": ".xml"
  2220. }
  2221. },
  2222. "runtime": {
  2223. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2224. "related": ".xml"
  2225. }
  2226. },
  2227. "runtimeTargets": {
  2228. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2229. "assetType": "runtime",
  2230. "rid": "win"
  2231. }
  2232. }
  2233. },
  2234. "System.Security.Cryptography.Algorithms/4.3.0": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Microsoft.NETCore.Platforms": "1.1.0",
  2238. "System.Collections": "4.3.0",
  2239. "System.IO": "4.3.0",
  2240. "System.Resources.ResourceManager": "4.3.0",
  2241. "System.Runtime": "4.3.0",
  2242. "System.Runtime.Extensions": "4.3.0",
  2243. "System.Runtime.Handles": "4.3.0",
  2244. "System.Runtime.InteropServices": "4.3.0",
  2245. "System.Runtime.Numerics": "4.3.0",
  2246. "System.Security.Cryptography.Encoding": "4.3.0",
  2247. "System.Security.Cryptography.Primitives": "4.3.0",
  2248. "System.Text.Encoding": "4.3.0",
  2249. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2250. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2251. },
  2252. "compile": {
  2253. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2254. },
  2255. "runtimeTargets": {
  2256. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2257. "assetType": "runtime",
  2258. "rid": "osx"
  2259. },
  2260. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2261. "assetType": "runtime",
  2262. "rid": "unix"
  2263. },
  2264. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2265. "assetType": "runtime",
  2266. "rid": "win"
  2267. }
  2268. }
  2269. },
  2270. "System.Security.Cryptography.Cng/4.5.0": {
  2271. "type": "package",
  2272. "compile": {
  2273. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2274. "related": ".xml"
  2275. }
  2276. },
  2277. "runtime": {
  2278. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2279. },
  2280. "runtimeTargets": {
  2281. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2282. "assetType": "runtime",
  2283. "rid": "win"
  2284. }
  2285. }
  2286. },
  2287. "System.Security.Cryptography.Csp/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "System.IO": "4.3.0",
  2292. "System.Reflection": "4.3.0",
  2293. "System.Resources.ResourceManager": "4.3.0",
  2294. "System.Runtime": "4.3.0",
  2295. "System.Runtime.Extensions": "4.3.0",
  2296. "System.Runtime.Handles": "4.3.0",
  2297. "System.Runtime.InteropServices": "4.3.0",
  2298. "System.Security.Cryptography.Algorithms": "4.3.0",
  2299. "System.Security.Cryptography.Encoding": "4.3.0",
  2300. "System.Security.Cryptography.Primitives": "4.3.0",
  2301. "System.Text.Encoding": "4.3.0",
  2302. "System.Threading": "4.3.0"
  2303. },
  2304. "compile": {
  2305. "ref/netstandard1.3/_._": {}
  2306. },
  2307. "runtimeTargets": {
  2308. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "unix"
  2311. },
  2312. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2313. "assetType": "runtime",
  2314. "rid": "win"
  2315. }
  2316. }
  2317. },
  2318. "System.Security.Cryptography.Encoding/4.3.0": {
  2319. "type": "package",
  2320. "dependencies": {
  2321. "Microsoft.NETCore.Platforms": "1.1.0",
  2322. "System.Collections": "4.3.0",
  2323. "System.Collections.Concurrent": "4.3.0",
  2324. "System.Linq": "4.3.0",
  2325. "System.Resources.ResourceManager": "4.3.0",
  2326. "System.Runtime": "4.3.0",
  2327. "System.Runtime.Extensions": "4.3.0",
  2328. "System.Runtime.Handles": "4.3.0",
  2329. "System.Runtime.InteropServices": "4.3.0",
  2330. "System.Security.Cryptography.Primitives": "4.3.0",
  2331. "System.Text.Encoding": "4.3.0",
  2332. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2333. },
  2334. "compile": {
  2335. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2336. "related": ".xml"
  2337. }
  2338. },
  2339. "runtimeTargets": {
  2340. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2341. "assetType": "runtime",
  2342. "rid": "unix"
  2343. },
  2344. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2345. "assetType": "runtime",
  2346. "rid": "win"
  2347. }
  2348. }
  2349. },
  2350. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2351. "type": "package",
  2352. "dependencies": {
  2353. "System.Collections": "4.3.0",
  2354. "System.IO": "4.3.0",
  2355. "System.Resources.ResourceManager": "4.3.0",
  2356. "System.Runtime": "4.3.0",
  2357. "System.Runtime.Extensions": "4.3.0",
  2358. "System.Runtime.Handles": "4.3.0",
  2359. "System.Runtime.InteropServices": "4.3.0",
  2360. "System.Runtime.Numerics": "4.3.0",
  2361. "System.Security.Cryptography.Algorithms": "4.3.0",
  2362. "System.Security.Cryptography.Encoding": "4.3.0",
  2363. "System.Security.Cryptography.Primitives": "4.3.0",
  2364. "System.Text.Encoding": "4.3.0",
  2365. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.6/_._": {}
  2369. },
  2370. "runtime": {
  2371. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2372. },
  2373. "runtimeTargets": {
  2374. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2375. "assetType": "runtime",
  2376. "rid": "unix"
  2377. }
  2378. }
  2379. },
  2380. "System.Security.Cryptography.Primitives/4.3.0": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Diagnostics.Debug": "4.3.0",
  2384. "System.Globalization": "4.3.0",
  2385. "System.IO": "4.3.0",
  2386. "System.Resources.ResourceManager": "4.3.0",
  2387. "System.Runtime": "4.3.0",
  2388. "System.Threading": "4.3.0",
  2389. "System.Threading.Tasks": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2393. },
  2394. "runtime": {
  2395. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2396. }
  2397. },
  2398. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2399. "type": "package",
  2400. "compile": {
  2401. "ref/netstandard2.0/_._": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2407. "related": ".xml"
  2408. }
  2409. },
  2410. "runtimeTargets": {
  2411. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2412. "assetType": "runtime",
  2413. "rid": "win"
  2414. }
  2415. }
  2416. },
  2417. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2418. "type": "package",
  2419. "dependencies": {
  2420. "Microsoft.NETCore.Platforms": "1.1.0",
  2421. "System.Collections": "4.3.0",
  2422. "System.Diagnostics.Debug": "4.3.0",
  2423. "System.Globalization": "4.3.0",
  2424. "System.Globalization.Calendars": "4.3.0",
  2425. "System.IO": "4.3.0",
  2426. "System.IO.FileSystem": "4.3.0",
  2427. "System.IO.FileSystem.Primitives": "4.3.0",
  2428. "System.Resources.ResourceManager": "4.3.0",
  2429. "System.Runtime": "4.3.0",
  2430. "System.Runtime.Extensions": "4.3.0",
  2431. "System.Runtime.Handles": "4.3.0",
  2432. "System.Runtime.InteropServices": "4.3.0",
  2433. "System.Runtime.Numerics": "4.3.0",
  2434. "System.Security.Cryptography.Algorithms": "4.3.0",
  2435. "System.Security.Cryptography.Cng": "4.3.0",
  2436. "System.Security.Cryptography.Csp": "4.3.0",
  2437. "System.Security.Cryptography.Encoding": "4.3.0",
  2438. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2439. "System.Security.Cryptography.Primitives": "4.3.0",
  2440. "System.Text.Encoding": "4.3.0",
  2441. "System.Threading": "4.3.0",
  2442. "runtime.native.System": "4.3.0",
  2443. "runtime.native.System.Net.Http": "4.3.0",
  2444. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2448. "related": ".xml"
  2449. }
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "unix"
  2455. },
  2456. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "win"
  2459. }
  2460. }
  2461. },
  2462. "System.Security.Permissions/4.7.0": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "System.Security.AccessControl": "4.7.0",
  2466. "System.Windows.Extensions": "4.7.0"
  2467. },
  2468. "compile": {
  2469. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2470. "related": ".xml"
  2471. }
  2472. },
  2473. "runtime": {
  2474. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2475. "related": ".xml"
  2476. }
  2477. }
  2478. },
  2479. "System.Security.Principal.Windows/4.7.0": {
  2480. "type": "package",
  2481. "compile": {
  2482. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2483. "related": ".xml"
  2484. }
  2485. },
  2486. "runtime": {
  2487. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtimeTargets": {
  2492. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2493. "assetType": "runtime",
  2494. "rid": "unix"
  2495. },
  2496. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "win"
  2499. }
  2500. }
  2501. },
  2502. "System.Text.Encoding/4.3.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "Microsoft.NETCore.Platforms": "1.1.0",
  2506. "Microsoft.NETCore.Targets": "1.1.0",
  2507. "System.Runtime": "4.3.0"
  2508. },
  2509. "compile": {
  2510. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2511. "related": ".xml"
  2512. }
  2513. }
  2514. },
  2515. "System.Text.Encoding.CodePages/4.7.0": {
  2516. "type": "package",
  2517. "dependencies": {
  2518. "Microsoft.NETCore.Platforms": "3.1.0"
  2519. },
  2520. "compile": {
  2521. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2522. "related": ".xml"
  2523. }
  2524. },
  2525. "runtime": {
  2526. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtimeTargets": {
  2531. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2532. "assetType": "runtime",
  2533. "rid": "win"
  2534. }
  2535. }
  2536. },
  2537. "System.Text.Encoding.Extensions/4.3.0": {
  2538. "type": "package",
  2539. "dependencies": {
  2540. "Microsoft.NETCore.Platforms": "1.1.0",
  2541. "Microsoft.NETCore.Targets": "1.1.0",
  2542. "System.Runtime": "4.3.0",
  2543. "System.Text.Encoding": "4.3.0"
  2544. },
  2545. "compile": {
  2546. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2547. "related": ".xml"
  2548. }
  2549. }
  2550. },
  2551. "System.Text.Encodings.Web/4.5.0": {
  2552. "type": "package",
  2553. "compile": {
  2554. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2555. "related": ".xml"
  2556. }
  2557. },
  2558. "runtime": {
  2559. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2560. "related": ".xml"
  2561. }
  2562. }
  2563. },
  2564. "System.Text.Json/4.7.1": {
  2565. "type": "package",
  2566. "compile": {
  2567. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2568. "related": ".xml"
  2569. }
  2570. },
  2571. "runtime": {
  2572. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2573. "related": ".xml"
  2574. }
  2575. }
  2576. },
  2577. "System.Text.RegularExpressions/4.3.0": {
  2578. "type": "package",
  2579. "dependencies": {
  2580. "System.Runtime": "4.3.0"
  2581. },
  2582. "compile": {
  2583. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2584. },
  2585. "runtime": {
  2586. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2587. }
  2588. },
  2589. "System.Threading/4.3.0": {
  2590. "type": "package",
  2591. "dependencies": {
  2592. "System.Runtime": "4.3.0",
  2593. "System.Threading.Tasks": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.3/System.Threading.dll": {
  2597. "related": ".xml"
  2598. }
  2599. },
  2600. "runtime": {
  2601. "lib/netstandard1.3/System.Threading.dll": {}
  2602. }
  2603. },
  2604. "System.Threading.Tasks/4.3.0": {
  2605. "type": "package",
  2606. "dependencies": {
  2607. "Microsoft.NETCore.Platforms": "1.1.0",
  2608. "Microsoft.NETCore.Targets": "1.1.0",
  2609. "System.Runtime": "4.3.0"
  2610. },
  2611. "compile": {
  2612. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2613. "related": ".xml"
  2614. }
  2615. }
  2616. },
  2617. "System.Threading.Tasks.Extensions/4.3.0": {
  2618. "type": "package",
  2619. "dependencies": {
  2620. "System.Collections": "4.3.0",
  2621. "System.Runtime": "4.3.0",
  2622. "System.Threading.Tasks": "4.3.0"
  2623. },
  2624. "compile": {
  2625. "lib/netstandard1.0/_._": {
  2626. "related": ".xml"
  2627. }
  2628. },
  2629. "runtime": {
  2630. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2631. "related": ".xml"
  2632. }
  2633. }
  2634. },
  2635. "System.Threading.Timer/4.3.0": {
  2636. "type": "package",
  2637. "dependencies": {
  2638. "Microsoft.NETCore.Platforms": "1.1.0",
  2639. "Microsoft.NETCore.Targets": "1.1.0",
  2640. "System.Runtime": "4.3.0"
  2641. },
  2642. "compile": {
  2643. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2644. "related": ".xml"
  2645. }
  2646. }
  2647. },
  2648. "System.Windows.Extensions/4.7.0": {
  2649. "type": "package",
  2650. "dependencies": {
  2651. "System.Drawing.Common": "4.7.0"
  2652. },
  2653. "compile": {
  2654. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2655. "related": ".xml"
  2656. }
  2657. },
  2658. "runtime": {
  2659. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2660. "related": ".xml"
  2661. }
  2662. },
  2663. "runtimeTargets": {
  2664. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2665. "assetType": "runtime",
  2666. "rid": "win"
  2667. }
  2668. }
  2669. },
  2670. "System.Xml.ReaderWriter/4.3.0": {
  2671. "type": "package",
  2672. "dependencies": {
  2673. "System.Collections": "4.3.0",
  2674. "System.Diagnostics.Debug": "4.3.0",
  2675. "System.Globalization": "4.3.0",
  2676. "System.IO": "4.3.0",
  2677. "System.IO.FileSystem": "4.3.0",
  2678. "System.IO.FileSystem.Primitives": "4.3.0",
  2679. "System.Resources.ResourceManager": "4.3.0",
  2680. "System.Runtime": "4.3.0",
  2681. "System.Runtime.Extensions": "4.3.0",
  2682. "System.Runtime.InteropServices": "4.3.0",
  2683. "System.Text.Encoding": "4.3.0",
  2684. "System.Text.Encoding.Extensions": "4.3.0",
  2685. "System.Text.RegularExpressions": "4.3.0",
  2686. "System.Threading.Tasks": "4.3.0",
  2687. "System.Threading.Tasks.Extensions": "4.3.0"
  2688. },
  2689. "compile": {
  2690. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2691. "related": ".xml"
  2692. }
  2693. },
  2694. "runtime": {
  2695. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2696. }
  2697. },
  2698. "System.Xml.XDocument/4.3.0": {
  2699. "type": "package",
  2700. "dependencies": {
  2701. "System.Collections": "4.3.0",
  2702. "System.Diagnostics.Debug": "4.3.0",
  2703. "System.Diagnostics.Tools": "4.3.0",
  2704. "System.Globalization": "4.3.0",
  2705. "System.IO": "4.3.0",
  2706. "System.Reflection": "4.3.0",
  2707. "System.Resources.ResourceManager": "4.3.0",
  2708. "System.Runtime": "4.3.0",
  2709. "System.Runtime.Extensions": "4.3.0",
  2710. "System.Text.Encoding": "4.3.0",
  2711. "System.Threading": "4.3.0",
  2712. "System.Xml.ReaderWriter": "4.3.0"
  2713. },
  2714. "compile": {
  2715. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2716. "related": ".xml"
  2717. }
  2718. },
  2719. "runtime": {
  2720. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2721. }
  2722. },
  2723. "OASystem.Domain/1.0.0": {
  2724. "type": "project",
  2725. "framework": ".NETCoreApp,Version=v6.0",
  2726. "dependencies": {
  2727. "AutoMapper": "12.0.0",
  2728. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2729. "Autofac": "6.4.0",
  2730. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2731. "Serilog.Sinks.File": "5.0.0",
  2732. "SqlSugarCore": "5.1.3.32"
  2733. },
  2734. "compile": {
  2735. "bin/placeholder/OASystem.Domain.dll": {}
  2736. },
  2737. "runtime": {
  2738. "bin/placeholder/OASystem.Domain.dll": {}
  2739. }
  2740. },
  2741. "OASystem.Infrastructure/1.0.0": {
  2742. "type": "project",
  2743. "framework": ".NETCoreApp,Version=v6.0",
  2744. "dependencies": {
  2745. "AutoMapper": "12.0.0",
  2746. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2747. "Autofac": "6.4.0",
  2748. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2749. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2750. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  2751. "Microsoft.Extensions.Configuration.Binder": "7.0.0",
  2752. "OASystem.Domain": "1.0.0",
  2753. "Serilog.Sinks.File": "5.0.0",
  2754. "SqlSugarCore": "5.1.3.32",
  2755. "StackExchange.Redis": "2.6.96"
  2756. },
  2757. "compile": {
  2758. "bin/placeholder/OASystem.Infrastructure.dll": {}
  2759. },
  2760. "runtime": {
  2761. "bin/placeholder/OASystem.Infrastructure.dll": {}
  2762. }
  2763. }
  2764. }
  2765. },
  2766. "libraries": {
  2767. "Autofac/6.4.0": {
  2768. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  2769. "type": "package",
  2770. "path": "autofac/6.4.0",
  2771. "files": [
  2772. ".nupkg.metadata",
  2773. ".signature.p7s",
  2774. "README.md",
  2775. "autofac.6.4.0.nupkg.sha512",
  2776. "autofac.nuspec",
  2777. "icon.png",
  2778. "lib/net5.0/Autofac.dll",
  2779. "lib/net5.0/Autofac.xml",
  2780. "lib/net6.0/Autofac.dll",
  2781. "lib/net6.0/Autofac.xml",
  2782. "lib/netstandard2.0/Autofac.dll",
  2783. "lib/netstandard2.0/Autofac.xml",
  2784. "lib/netstandard2.1/Autofac.dll",
  2785. "lib/netstandard2.1/Autofac.xml"
  2786. ]
  2787. },
  2788. "Autofac.Extensions.DependencyInjection/8.0.0": {
  2789. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  2790. "type": "package",
  2791. "path": "autofac.extensions.dependencyinjection/8.0.0",
  2792. "files": [
  2793. ".nupkg.metadata",
  2794. ".signature.p7s",
  2795. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2796. "autofac.extensions.dependencyinjection.nuspec",
  2797. "icon.png",
  2798. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  2799. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  2800. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  2801. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  2802. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2803. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2804. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2805. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2806. ]
  2807. },
  2808. "AutoMapper/12.0.0": {
  2809. "sha512": "0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  2810. "type": "package",
  2811. "path": "automapper/12.0.0",
  2812. "files": [
  2813. ".nupkg.metadata",
  2814. ".signature.p7s",
  2815. "README.md",
  2816. "automapper.12.0.0.nupkg.sha512",
  2817. "automapper.nuspec",
  2818. "icon.png",
  2819. "lib/netstandard2.1/AutoMapper.dll",
  2820. "lib/netstandard2.1/AutoMapper.xml"
  2821. ]
  2822. },
  2823. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  2824. "sha512": "XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  2825. "type": "package",
  2826. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  2827. "files": [
  2828. ".nupkg.metadata",
  2829. ".signature.p7s",
  2830. "README.md",
  2831. "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512",
  2832. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2833. "icon.png",
  2834. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2835. ]
  2836. },
  2837. "Betalgo.OpenAI.GPT3/6.6.7": {
  2838. "sha512": "BThAQX/JnWb6TwdQwz3UFGz888qSnfNxTzjuZH2MiQVQ2qhzGbxzMODNjosKSH778xMUJMUr4+F0s6M23BrRnA==",
  2839. "type": "package",
  2840. "path": "betalgo.openai.gpt3/6.6.7",
  2841. "files": [
  2842. ".nupkg.metadata",
  2843. ".signature.p7s",
  2844. "OpenAI-Betalgo.png",
  2845. "Readme.md",
  2846. "betalgo.openai.gpt3.6.6.7.nupkg.sha512",
  2847. "betalgo.openai.gpt3.nuspec",
  2848. "lib/net6.0/OpenAI.GPT3.dll",
  2849. "lib/net6.0/OpenAI.GPT3.xml"
  2850. ]
  2851. },
  2852. "BouncyCastle.NetCore/1.8.8": {
  2853. "sha512": "Jx3dQd4SQOHZmxcImYSp0YT2WpYxosQXoZutbHORhFK/zHGH8aykfIyM6S4DVGyu4g9+KHGJUQEh2RH4qXj/Jg==",
  2854. "type": "package",
  2855. "path": "bouncycastle.netcore/1.8.8",
  2856. "files": [
  2857. ".nupkg.metadata",
  2858. ".signature.p7s",
  2859. "bouncycastle.netcore.1.8.8.nupkg.sha512",
  2860. "bouncycastle.netcore.nuspec",
  2861. "lib/Mono/BouncyCastle.Crypto.dll",
  2862. "lib/Mono/BouncyCastle.Crypto.xml",
  2863. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2864. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2865. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2866. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2867. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2868. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2869. "lib/net20/BouncyCastle.Crypto.dll",
  2870. "lib/net20/BouncyCastle.Crypto.xml",
  2871. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2872. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2873. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2874. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2875. ]
  2876. },
  2877. "Flurl/3.0.6": {
  2878. "sha512": "XMIlB/tJ4nTYF2+79xDsnnlgbXHpKyizKX2fffrECekI6pEsa9MSLzf5tPVMdLy4k4AcJPLs356Sa2Le5VRDCw==",
  2879. "type": "package",
  2880. "path": "flurl/3.0.6",
  2881. "files": [
  2882. ".nupkg.metadata",
  2883. ".signature.p7s",
  2884. "flurl.3.0.6.nupkg.sha512",
  2885. "flurl.nuspec",
  2886. "icon.png",
  2887. "lib/net461/Flurl.dll",
  2888. "lib/net461/Flurl.xml",
  2889. "lib/net472/Flurl.dll",
  2890. "lib/net472/Flurl.xml",
  2891. "lib/netstandard2.0/Flurl.dll",
  2892. "lib/netstandard2.0/Flurl.xml"
  2893. ]
  2894. },
  2895. "Flurl.Http/3.2.4": {
  2896. "sha512": "Me9Vm4Lm21vt/pbR0G2Dww/ZOjJgh6mB2FiH28aiUYStJD10ZecDp8jxg2zKxcy6lnkvLm99pjG4yC/k7a/d8w==",
  2897. "type": "package",
  2898. "path": "flurl.http/3.2.4",
  2899. "files": [
  2900. ".nupkg.metadata",
  2901. ".signature.p7s",
  2902. "flurl.http.3.2.4.nupkg.sha512",
  2903. "flurl.http.nuspec",
  2904. "icon.png",
  2905. "lib/net461/Flurl.Http.dll",
  2906. "lib/net461/Flurl.Http.xml",
  2907. "lib/net472/Flurl.Http.dll",
  2908. "lib/net472/Flurl.Http.xml",
  2909. "lib/netstandard2.0/Flurl.Http.dll",
  2910. "lib/netstandard2.0/Flurl.Http.xml"
  2911. ]
  2912. },
  2913. "Google.Protobuf/3.19.4": {
  2914. "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  2915. "type": "package",
  2916. "path": "google.protobuf/3.19.4",
  2917. "files": [
  2918. ".nupkg.metadata",
  2919. ".signature.p7s",
  2920. "google.protobuf.3.19.4.nupkg.sha512",
  2921. "google.protobuf.nuspec",
  2922. "lib/net45/Google.Protobuf.dll",
  2923. "lib/net45/Google.Protobuf.pdb",
  2924. "lib/net45/Google.Protobuf.xml",
  2925. "lib/net5.0/Google.Protobuf.dll",
  2926. "lib/net5.0/Google.Protobuf.pdb",
  2927. "lib/net5.0/Google.Protobuf.xml",
  2928. "lib/netstandard1.1/Google.Protobuf.dll",
  2929. "lib/netstandard1.1/Google.Protobuf.pdb",
  2930. "lib/netstandard1.1/Google.Protobuf.xml",
  2931. "lib/netstandard2.0/Google.Protobuf.dll",
  2932. "lib/netstandard2.0/Google.Protobuf.pdb",
  2933. "lib/netstandard2.0/Google.Protobuf.xml"
  2934. ]
  2935. },
  2936. "K4os.Compression.LZ4/1.2.6": {
  2937. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2938. "type": "package",
  2939. "path": "k4os.compression.lz4/1.2.6",
  2940. "files": [
  2941. ".nupkg.metadata",
  2942. ".signature.p7s",
  2943. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2944. "k4os.compression.lz4.nuspec",
  2945. "lib/net45/K4os.Compression.LZ4.dll",
  2946. "lib/net45/K4os.Compression.LZ4.xml",
  2947. "lib/net46/K4os.Compression.LZ4.dll",
  2948. "lib/net46/K4os.Compression.LZ4.xml",
  2949. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2950. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2951. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2952. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2953. ]
  2954. },
  2955. "K4os.Compression.LZ4.Streams/1.2.6": {
  2956. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2957. "type": "package",
  2958. "path": "k4os.compression.lz4.streams/1.2.6",
  2959. "files": [
  2960. ".nupkg.metadata",
  2961. ".signature.p7s",
  2962. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2963. "k4os.compression.lz4.streams.nuspec",
  2964. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2965. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2966. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2967. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2968. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2969. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2970. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2971. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2972. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2973. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2974. ]
  2975. },
  2976. "K4os.Hash.xxHash/1.0.6": {
  2977. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2978. "type": "package",
  2979. "path": "k4os.hash.xxhash/1.0.6",
  2980. "files": [
  2981. ".nupkg.metadata",
  2982. ".signature.p7s",
  2983. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2984. "k4os.hash.xxhash.nuspec",
  2985. "lib/net45/K4os.Hash.xxHash.dll",
  2986. "lib/net45/K4os.Hash.xxHash.xml",
  2987. "lib/net46/K4os.Hash.xxHash.dll",
  2988. "lib/net46/K4os.Hash.xxHash.xml",
  2989. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2990. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2991. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2992. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2993. ]
  2994. },
  2995. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  2996. "sha512": "cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
  2997. "type": "package",
  2998. "path": "microsoft.aspnet.webapi.client/5.2.9",
  2999. "files": [
  3000. ".nupkg.metadata",
  3001. ".signature.p7s",
  3002. "NET.icon.png",
  3003. "NET_Library_EULA_ENU.txt",
  3004. "lib/net45/System.Net.Http.Formatting.dll",
  3005. "lib/net45/System.Net.Http.Formatting.xml",
  3006. "lib/netstandard2.0/System.Net.Http.Formatting.dll",
  3007. "lib/netstandard2.0/System.Net.Http.Formatting.xml",
  3008. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
  3009. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml",
  3010. "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512",
  3011. "microsoft.aspnet.webapi.client.nuspec"
  3012. ]
  3013. },
  3014. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.11": {
  3015. "sha512": "ivpWC8L84Y+l9VZOa0uJXPoUE+n3TiSRZpfKxMElRtLMYCeXmz5x3O7CuCJkZ65z1520RWuEZDmHefxiz5TqPg==",
  3016. "type": "package",
  3017. "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.11",
  3018. "files": [
  3019. ".nupkg.metadata",
  3020. ".signature.p7s",
  3021. "Icon.png",
  3022. "THIRD-PARTY-NOTICES.TXT",
  3023. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  3024. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  3025. "microsoft.aspnetcore.authentication.jwtbearer.6.0.11.nupkg.sha512",
  3026. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  3027. ]
  3028. },
  3029. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3030. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3031. "type": "package",
  3032. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3033. "files": [
  3034. ".nupkg.metadata",
  3035. ".signature.p7s",
  3036. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3037. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3038. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3039. "microsoft.aspnetcore.http.abstractions.nuspec"
  3040. ]
  3041. },
  3042. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3043. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3044. "type": "package",
  3045. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3046. "files": [
  3047. ".nupkg.metadata",
  3048. ".signature.p7s",
  3049. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3050. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3051. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3052. "microsoft.aspnetcore.http.features.nuspec"
  3053. ]
  3054. },
  3055. "Microsoft.CSharp/4.7.0": {
  3056. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3057. "type": "package",
  3058. "path": "microsoft.csharp/4.7.0",
  3059. "files": [
  3060. ".nupkg.metadata",
  3061. ".signature.p7s",
  3062. "LICENSE.TXT",
  3063. "THIRD-PARTY-NOTICES.TXT",
  3064. "lib/MonoAndroid10/_._",
  3065. "lib/MonoTouch10/_._",
  3066. "lib/net45/_._",
  3067. "lib/netcore50/Microsoft.CSharp.dll",
  3068. "lib/netcoreapp2.0/_._",
  3069. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3070. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3071. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3072. "lib/portable-net45+win8+wp8+wpa81/_._",
  3073. "lib/uap10.0.16299/_._",
  3074. "lib/win8/_._",
  3075. "lib/wp80/_._",
  3076. "lib/wpa81/_._",
  3077. "lib/xamarinios10/_._",
  3078. "lib/xamarinmac20/_._",
  3079. "lib/xamarintvos10/_._",
  3080. "lib/xamarinwatchos10/_._",
  3081. "microsoft.csharp.4.7.0.nupkg.sha512",
  3082. "microsoft.csharp.nuspec",
  3083. "ref/MonoAndroid10/_._",
  3084. "ref/MonoTouch10/_._",
  3085. "ref/net45/_._",
  3086. "ref/netcore50/Microsoft.CSharp.dll",
  3087. "ref/netcore50/Microsoft.CSharp.xml",
  3088. "ref/netcore50/de/Microsoft.CSharp.xml",
  3089. "ref/netcore50/es/Microsoft.CSharp.xml",
  3090. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3091. "ref/netcore50/it/Microsoft.CSharp.xml",
  3092. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3093. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3094. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3095. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3096. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3097. "ref/netcoreapp2.0/_._",
  3098. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3099. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3100. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3101. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3102. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3103. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3104. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3105. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3106. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3107. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3108. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3109. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3110. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3111. "ref/portable-net45+win8+wp8+wpa81/_._",
  3112. "ref/uap10.0.16299/_._",
  3113. "ref/win8/_._",
  3114. "ref/wp80/_._",
  3115. "ref/wpa81/_._",
  3116. "ref/xamarinios10/_._",
  3117. "ref/xamarinmac20/_._",
  3118. "ref/xamarintvos10/_._",
  3119. "ref/xamarinwatchos10/_._",
  3120. "useSharedDesignerContext.txt",
  3121. "version.txt"
  3122. ]
  3123. },
  3124. "Microsoft.Data.SqlClient/2.1.1": {
  3125. "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  3126. "type": "package",
  3127. "path": "microsoft.data.sqlclient/2.1.1",
  3128. "files": [
  3129. ".nupkg.metadata",
  3130. ".signature.p7s",
  3131. "dotnet.png",
  3132. "lib/net46/Microsoft.Data.SqlClient.dll",
  3133. "lib/net46/Microsoft.Data.SqlClient.pdb",
  3134. "lib/net46/Microsoft.Data.SqlClient.xml",
  3135. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  3136. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  3137. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  3138. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  3139. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  3140. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  3141. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  3142. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  3143. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  3144. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  3145. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3146. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3147. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3148. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3149. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3150. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  3151. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3152. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3153. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3154. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3155. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3156. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  3157. "microsoft.data.sqlclient.2.1.1.nupkg.sha512",
  3158. "microsoft.data.sqlclient.nuspec",
  3159. "ref/net46/Microsoft.Data.SqlClient.dll",
  3160. "ref/net46/Microsoft.Data.SqlClient.pdb",
  3161. "ref/net46/Microsoft.Data.SqlClient.xml",
  3162. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3163. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3164. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3165. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3166. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3167. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  3168. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3169. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3170. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3171. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3172. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3173. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  3174. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3175. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3176. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3177. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3178. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3179. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3180. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3181. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3182. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  3183. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  3184. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3185. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3186. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3187. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3188. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3189. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3190. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3191. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  3192. ]
  3193. },
  3194. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  3195. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  3196. "type": "package",
  3197. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  3198. "files": [
  3199. ".nupkg.metadata",
  3200. ".signature.p7s",
  3201. "LICENSE.txt",
  3202. "dotnet.png",
  3203. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  3204. "microsoft.data.sqlclient.sni.runtime.nuspec",
  3205. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  3206. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  3207. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  3208. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  3209. ]
  3210. },
  3211. "Microsoft.Data.Sqlite/5.0.5": {
  3212. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  3213. "type": "package",
  3214. "path": "microsoft.data.sqlite/5.0.5",
  3215. "files": [
  3216. ".nupkg.metadata",
  3217. ".signature.p7s",
  3218. "Icon.png",
  3219. "lib/netstandard2.0/_._",
  3220. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  3221. "microsoft.data.sqlite.nuspec"
  3222. ]
  3223. },
  3224. "Microsoft.Data.Sqlite.Core/5.0.5": {
  3225. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  3226. "type": "package",
  3227. "path": "microsoft.data.sqlite.core/5.0.5",
  3228. "files": [
  3229. ".nupkg.metadata",
  3230. ".signature.p7s",
  3231. "Icon.png",
  3232. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3233. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3234. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  3235. "microsoft.data.sqlite.core.nuspec"
  3236. ]
  3237. },
  3238. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  3239. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  3240. "type": "package",
  3241. "path": "microsoft.extensions.apidescription.server/6.0.5",
  3242. "hasTools": true,
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "Icon.png",
  3247. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3248. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3249. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3250. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3251. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  3252. "microsoft.extensions.apidescription.server.nuspec",
  3253. "tools/Newtonsoft.Json.dll",
  3254. "tools/dotnet-getdocument.deps.json",
  3255. "tools/dotnet-getdocument.dll",
  3256. "tools/dotnet-getdocument.runtimeconfig.json",
  3257. "tools/net461-x86/GetDocument.Insider.exe",
  3258. "tools/net461-x86/GetDocument.Insider.exe.config",
  3259. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  3260. "tools/net461-x86/System.AppContext.dll",
  3261. "tools/net461-x86/System.Buffers.dll",
  3262. "tools/net461-x86/System.Collections.Concurrent.dll",
  3263. "tools/net461-x86/System.Collections.NonGeneric.dll",
  3264. "tools/net461-x86/System.Collections.Specialized.dll",
  3265. "tools/net461-x86/System.Collections.dll",
  3266. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  3267. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  3268. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  3269. "tools/net461-x86/System.ComponentModel.dll",
  3270. "tools/net461-x86/System.Console.dll",
  3271. "tools/net461-x86/System.Data.Common.dll",
  3272. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  3273. "tools/net461-x86/System.Diagnostics.Debug.dll",
  3274. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  3275. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  3276. "tools/net461-x86/System.Diagnostics.Process.dll",
  3277. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  3278. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  3279. "tools/net461-x86/System.Diagnostics.Tools.dll",
  3280. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  3281. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  3282. "tools/net461-x86/System.Drawing.Primitives.dll",
  3283. "tools/net461-x86/System.Dynamic.Runtime.dll",
  3284. "tools/net461-x86/System.Globalization.Calendars.dll",
  3285. "tools/net461-x86/System.Globalization.Extensions.dll",
  3286. "tools/net461-x86/System.Globalization.dll",
  3287. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  3288. "tools/net461-x86/System.IO.Compression.dll",
  3289. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  3290. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  3291. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  3292. "tools/net461-x86/System.IO.FileSystem.dll",
  3293. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  3294. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  3295. "tools/net461-x86/System.IO.Pipes.dll",
  3296. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  3297. "tools/net461-x86/System.IO.dll",
  3298. "tools/net461-x86/System.Linq.Expressions.dll",
  3299. "tools/net461-x86/System.Linq.Parallel.dll",
  3300. "tools/net461-x86/System.Linq.Queryable.dll",
  3301. "tools/net461-x86/System.Linq.dll",
  3302. "tools/net461-x86/System.Memory.dll",
  3303. "tools/net461-x86/System.Net.Http.dll",
  3304. "tools/net461-x86/System.Net.NameResolution.dll",
  3305. "tools/net461-x86/System.Net.NetworkInformation.dll",
  3306. "tools/net461-x86/System.Net.Ping.dll",
  3307. "tools/net461-x86/System.Net.Primitives.dll",
  3308. "tools/net461-x86/System.Net.Requests.dll",
  3309. "tools/net461-x86/System.Net.Security.dll",
  3310. "tools/net461-x86/System.Net.Sockets.dll",
  3311. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  3312. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  3313. "tools/net461-x86/System.Net.WebSockets.dll",
  3314. "tools/net461-x86/System.Numerics.Vectors.dll",
  3315. "tools/net461-x86/System.ObjectModel.dll",
  3316. "tools/net461-x86/System.Reflection.Extensions.dll",
  3317. "tools/net461-x86/System.Reflection.Primitives.dll",
  3318. "tools/net461-x86/System.Reflection.dll",
  3319. "tools/net461-x86/System.Resources.Reader.dll",
  3320. "tools/net461-x86/System.Resources.ResourceManager.dll",
  3321. "tools/net461-x86/System.Resources.Writer.dll",
  3322. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  3323. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  3324. "tools/net461-x86/System.Runtime.Extensions.dll",
  3325. "tools/net461-x86/System.Runtime.Handles.dll",
  3326. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  3327. "tools/net461-x86/System.Runtime.InteropServices.dll",
  3328. "tools/net461-x86/System.Runtime.Numerics.dll",
  3329. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  3330. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  3331. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  3332. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  3333. "tools/net461-x86/System.Runtime.dll",
  3334. "tools/net461-x86/System.Security.Claims.dll",
  3335. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  3336. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  3337. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  3338. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  3339. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  3340. "tools/net461-x86/System.Security.Principal.dll",
  3341. "tools/net461-x86/System.Security.SecureString.dll",
  3342. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  3343. "tools/net461-x86/System.Text.Encoding.dll",
  3344. "tools/net461-x86/System.Text.RegularExpressions.dll",
  3345. "tools/net461-x86/System.Threading.Overlapped.dll",
  3346. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  3347. "tools/net461-x86/System.Threading.Tasks.dll",
  3348. "tools/net461-x86/System.Threading.Thread.dll",
  3349. "tools/net461-x86/System.Threading.ThreadPool.dll",
  3350. "tools/net461-x86/System.Threading.Timer.dll",
  3351. "tools/net461-x86/System.Threading.dll",
  3352. "tools/net461-x86/System.ValueTuple.dll",
  3353. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  3354. "tools/net461-x86/System.Xml.XDocument.dll",
  3355. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  3356. "tools/net461-x86/System.Xml.XPath.dll",
  3357. "tools/net461-x86/System.Xml.XmlDocument.dll",
  3358. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  3359. "tools/net461-x86/netstandard.dll",
  3360. "tools/net461/GetDocument.Insider.exe",
  3361. "tools/net461/GetDocument.Insider.exe.config",
  3362. "tools/net461/Microsoft.Win32.Primitives.dll",
  3363. "tools/net461/System.AppContext.dll",
  3364. "tools/net461/System.Buffers.dll",
  3365. "tools/net461/System.Collections.Concurrent.dll",
  3366. "tools/net461/System.Collections.NonGeneric.dll",
  3367. "tools/net461/System.Collections.Specialized.dll",
  3368. "tools/net461/System.Collections.dll",
  3369. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  3370. "tools/net461/System.ComponentModel.Primitives.dll",
  3371. "tools/net461/System.ComponentModel.TypeConverter.dll",
  3372. "tools/net461/System.ComponentModel.dll",
  3373. "tools/net461/System.Console.dll",
  3374. "tools/net461/System.Data.Common.dll",
  3375. "tools/net461/System.Diagnostics.Contracts.dll",
  3376. "tools/net461/System.Diagnostics.Debug.dll",
  3377. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  3378. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  3379. "tools/net461/System.Diagnostics.Process.dll",
  3380. "tools/net461/System.Diagnostics.StackTrace.dll",
  3381. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  3382. "tools/net461/System.Diagnostics.Tools.dll",
  3383. "tools/net461/System.Diagnostics.TraceSource.dll",
  3384. "tools/net461/System.Diagnostics.Tracing.dll",
  3385. "tools/net461/System.Drawing.Primitives.dll",
  3386. "tools/net461/System.Dynamic.Runtime.dll",
  3387. "tools/net461/System.Globalization.Calendars.dll",
  3388. "tools/net461/System.Globalization.Extensions.dll",
  3389. "tools/net461/System.Globalization.dll",
  3390. "tools/net461/System.IO.Compression.ZipFile.dll",
  3391. "tools/net461/System.IO.Compression.dll",
  3392. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  3393. "tools/net461/System.IO.FileSystem.Primitives.dll",
  3394. "tools/net461/System.IO.FileSystem.Watcher.dll",
  3395. "tools/net461/System.IO.FileSystem.dll",
  3396. "tools/net461/System.IO.IsolatedStorage.dll",
  3397. "tools/net461/System.IO.MemoryMappedFiles.dll",
  3398. "tools/net461/System.IO.Pipes.dll",
  3399. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  3400. "tools/net461/System.IO.dll",
  3401. "tools/net461/System.Linq.Expressions.dll",
  3402. "tools/net461/System.Linq.Parallel.dll",
  3403. "tools/net461/System.Linq.Queryable.dll",
  3404. "tools/net461/System.Linq.dll",
  3405. "tools/net461/System.Memory.dll",
  3406. "tools/net461/System.Net.Http.dll",
  3407. "tools/net461/System.Net.NameResolution.dll",
  3408. "tools/net461/System.Net.NetworkInformation.dll",
  3409. "tools/net461/System.Net.Ping.dll",
  3410. "tools/net461/System.Net.Primitives.dll",
  3411. "tools/net461/System.Net.Requests.dll",
  3412. "tools/net461/System.Net.Security.dll",
  3413. "tools/net461/System.Net.Sockets.dll",
  3414. "tools/net461/System.Net.WebHeaderCollection.dll",
  3415. "tools/net461/System.Net.WebSockets.Client.dll",
  3416. "tools/net461/System.Net.WebSockets.dll",
  3417. "tools/net461/System.Numerics.Vectors.dll",
  3418. "tools/net461/System.ObjectModel.dll",
  3419. "tools/net461/System.Reflection.Extensions.dll",
  3420. "tools/net461/System.Reflection.Primitives.dll",
  3421. "tools/net461/System.Reflection.dll",
  3422. "tools/net461/System.Resources.Reader.dll",
  3423. "tools/net461/System.Resources.ResourceManager.dll",
  3424. "tools/net461/System.Resources.Writer.dll",
  3425. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3426. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  3427. "tools/net461/System.Runtime.Extensions.dll",
  3428. "tools/net461/System.Runtime.Handles.dll",
  3429. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  3430. "tools/net461/System.Runtime.InteropServices.dll",
  3431. "tools/net461/System.Runtime.Numerics.dll",
  3432. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  3433. "tools/net461/System.Runtime.Serialization.Json.dll",
  3434. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  3435. "tools/net461/System.Runtime.Serialization.Xml.dll",
  3436. "tools/net461/System.Runtime.dll",
  3437. "tools/net461/System.Security.Claims.dll",
  3438. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  3439. "tools/net461/System.Security.Cryptography.Csp.dll",
  3440. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3441. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3442. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3443. "tools/net461/System.Security.Principal.dll",
  3444. "tools/net461/System.Security.SecureString.dll",
  3445. "tools/net461/System.Text.Encoding.Extensions.dll",
  3446. "tools/net461/System.Text.Encoding.dll",
  3447. "tools/net461/System.Text.RegularExpressions.dll",
  3448. "tools/net461/System.Threading.Overlapped.dll",
  3449. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3450. "tools/net461/System.Threading.Tasks.dll",
  3451. "tools/net461/System.Threading.Thread.dll",
  3452. "tools/net461/System.Threading.ThreadPool.dll",
  3453. "tools/net461/System.Threading.Timer.dll",
  3454. "tools/net461/System.Threading.dll",
  3455. "tools/net461/System.ValueTuple.dll",
  3456. "tools/net461/System.Xml.ReaderWriter.dll",
  3457. "tools/net461/System.Xml.XDocument.dll",
  3458. "tools/net461/System.Xml.XPath.XDocument.dll",
  3459. "tools/net461/System.Xml.XPath.dll",
  3460. "tools/net461/System.Xml.XmlDocument.dll",
  3461. "tools/net461/System.Xml.XmlSerializer.dll",
  3462. "tools/net461/netstandard.dll",
  3463. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3464. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3465. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3466. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3467. ]
  3468. },
  3469. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  3470. "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  3471. "type": "package",
  3472. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  3473. "files": [
  3474. ".nupkg.metadata",
  3475. ".signature.p7s",
  3476. "Icon.png",
  3477. "LICENSE.TXT",
  3478. "THIRD-PARTY-NOTICES.TXT",
  3479. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  3480. "buildTransitive/net462/_._",
  3481. "buildTransitive/net6.0/_._",
  3482. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3483. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3484. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3485. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3486. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3487. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3488. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3490. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3491. "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
  3492. "microsoft.extensions.configuration.abstractions.nuspec",
  3493. "useSharedDesignerContext.txt"
  3494. ]
  3495. },
  3496. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  3497. "sha512": "tgU4u7bZsoS9MKVRiotVMAwHtbREHr5/5zSEV+JPhg46+ox47Au84E3D2IacAaB0bk5ePNaNieTlPrfjbbRJkg==",
  3498. "type": "package",
  3499. "path": "microsoft.extensions.configuration.binder/7.0.0",
  3500. "files": [
  3501. ".nupkg.metadata",
  3502. ".signature.p7s",
  3503. "Icon.png",
  3504. "LICENSE.TXT",
  3505. "THIRD-PARTY-NOTICES.TXT",
  3506. "buildTransitive/net461/Microsoft.Extensions.Configuration.Binder.targets",
  3507. "buildTransitive/net462/_._",
  3508. "buildTransitive/net6.0/_._",
  3509. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Binder.targets",
  3510. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  3511. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  3512. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  3513. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  3514. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  3515. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  3516. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3517. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3518. "microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512",
  3519. "microsoft.extensions.configuration.binder.nuspec",
  3520. "useSharedDesignerContext.txt"
  3521. ]
  3522. },
  3523. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  3524. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  3525. "type": "package",
  3526. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  3527. "files": [
  3528. ".nupkg.metadata",
  3529. ".signature.p7s",
  3530. "Icon.png",
  3531. "LICENSE.TXT",
  3532. "THIRD-PARTY-NOTICES.TXT",
  3533. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3534. "buildTransitive/netcoreapp3.1/_._",
  3535. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3536. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3537. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3538. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3539. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3540. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3541. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3542. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3543. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  3544. "microsoft.extensions.dependencyinjection.nuspec",
  3545. "useSharedDesignerContext.txt"
  3546. ]
  3547. },
  3548. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  3549. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  3550. "type": "package",
  3551. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  3552. "files": [
  3553. ".nupkg.metadata",
  3554. ".signature.p7s",
  3555. "Icon.png",
  3556. "LICENSE.TXT",
  3557. "THIRD-PARTY-NOTICES.TXT",
  3558. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3559. "buildTransitive/netcoreapp3.1/_._",
  3560. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3561. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3562. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3563. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3564. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3565. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3566. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3567. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3568. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  3569. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3570. "useSharedDesignerContext.txt"
  3571. ]
  3572. },
  3573. "Microsoft.Extensions.Http/6.0.0": {
  3574. "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==",
  3575. "type": "package",
  3576. "path": "microsoft.extensions.http/6.0.0",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "Icon.png",
  3581. "LICENSE.TXT",
  3582. "THIRD-PARTY-NOTICES.TXT",
  3583. "lib/net461/Microsoft.Extensions.Http.dll",
  3584. "lib/net461/Microsoft.Extensions.Http.xml",
  3585. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3586. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3587. "microsoft.extensions.http.6.0.0.nupkg.sha512",
  3588. "microsoft.extensions.http.nuspec",
  3589. "useSharedDesignerContext.txt"
  3590. ]
  3591. },
  3592. "Microsoft.Extensions.Logging/6.0.0": {
  3593. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  3594. "type": "package",
  3595. "path": "microsoft.extensions.logging/6.0.0",
  3596. "files": [
  3597. ".nupkg.metadata",
  3598. ".signature.p7s",
  3599. "Icon.png",
  3600. "LICENSE.TXT",
  3601. "THIRD-PARTY-NOTICES.TXT",
  3602. "lib/net461/Microsoft.Extensions.Logging.dll",
  3603. "lib/net461/Microsoft.Extensions.Logging.xml",
  3604. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3606. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3607. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3608. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  3609. "microsoft.extensions.logging.nuspec",
  3610. "useSharedDesignerContext.txt"
  3611. ]
  3612. },
  3613. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  3614. "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  3615. "type": "package",
  3616. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "Icon.png",
  3621. "LICENSE.TXT",
  3622. "THIRD-PARTY-NOTICES.TXT",
  3623. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3624. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3625. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3626. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3627. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3628. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3629. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3630. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3631. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3632. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3633. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3634. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3635. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3636. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3637. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3638. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3639. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3640. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3641. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3642. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3643. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3644. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3645. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3646. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3647. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3648. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3649. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3650. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3651. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  3652. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3653. "buildTransitive/netcoreapp3.1/_._",
  3654. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3655. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3656. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3657. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3658. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3659. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3660. "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
  3661. "microsoft.extensions.logging.abstractions.nuspec",
  3662. "useSharedDesignerContext.txt"
  3663. ]
  3664. },
  3665. "Microsoft.Extensions.Options/6.0.0": {
  3666. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  3667. "type": "package",
  3668. "path": "microsoft.extensions.options/6.0.0",
  3669. "files": [
  3670. ".nupkg.metadata",
  3671. ".signature.p7s",
  3672. "Icon.png",
  3673. "LICENSE.TXT",
  3674. "THIRD-PARTY-NOTICES.TXT",
  3675. "lib/net461/Microsoft.Extensions.Options.dll",
  3676. "lib/net461/Microsoft.Extensions.Options.xml",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3678. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3679. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3680. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3681. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  3682. "microsoft.extensions.options.nuspec",
  3683. "useSharedDesignerContext.txt"
  3684. ]
  3685. },
  3686. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  3687. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  3688. "type": "package",
  3689. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  3690. "files": [
  3691. ".nupkg.metadata",
  3692. ".signature.p7s",
  3693. "Icon.png",
  3694. "LICENSE.TXT",
  3695. "THIRD-PARTY-NOTICES.TXT",
  3696. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3697. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3698. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3699. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3700. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  3701. "microsoft.extensions.options.configurationextensions.nuspec",
  3702. "useSharedDesignerContext.txt"
  3703. ]
  3704. },
  3705. "Microsoft.Extensions.Primitives/7.0.0": {
  3706. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3707. "type": "package",
  3708. "path": "microsoft.extensions.primitives/7.0.0",
  3709. "files": [
  3710. ".nupkg.metadata",
  3711. ".signature.p7s",
  3712. "Icon.png",
  3713. "LICENSE.TXT",
  3714. "THIRD-PARTY-NOTICES.TXT",
  3715. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3716. "buildTransitive/net462/_._",
  3717. "buildTransitive/net6.0/_._",
  3718. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3719. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3720. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3721. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3722. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3723. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3724. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3725. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3726. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3727. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3728. "microsoft.extensions.primitives.nuspec",
  3729. "useSharedDesignerContext.txt"
  3730. ]
  3731. },
  3732. "Microsoft.Identity.Client/4.21.1": {
  3733. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3734. "type": "package",
  3735. "path": "microsoft.identity.client/4.21.1",
  3736. "files": [
  3737. ".nupkg.metadata",
  3738. ".signature.p7s",
  3739. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3740. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3741. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3742. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3743. "lib/net45/Microsoft.Identity.Client.dll",
  3744. "lib/net45/Microsoft.Identity.Client.xml",
  3745. "lib/net461/Microsoft.Identity.Client.dll",
  3746. "lib/net461/Microsoft.Identity.Client.xml",
  3747. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3748. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3749. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3750. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3751. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3752. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3753. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3754. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3755. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3756. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3757. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3758. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3759. "microsoft.identity.client.nuspec",
  3760. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3761. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3762. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3763. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3764. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3765. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3766. "ref/net45/Microsoft.Identity.Client.dll",
  3767. "ref/net45/Microsoft.Identity.Client.xml",
  3768. "ref/net461/Microsoft.Identity.Client.dll",
  3769. "ref/net461/Microsoft.Identity.Client.xml",
  3770. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3771. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3772. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3773. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3774. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3775. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3776. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3777. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3778. ]
  3779. },
  3780. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  3781. "sha512": "0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
  3782. "type": "package",
  3783. "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
  3784. "files": [
  3785. ".nupkg.metadata",
  3786. ".signature.p7s",
  3787. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3788. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3789. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3790. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3791. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3792. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3793. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3794. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3795. "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
  3796. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3797. ]
  3798. },
  3799. "Microsoft.IdentityModel.Logging/6.10.0": {
  3800. "sha512": "zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
  3801. "type": "package",
  3802. "path": "microsoft.identitymodel.logging/6.10.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3807. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3808. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3809. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3810. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3811. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3812. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3813. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3814. "microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
  3815. "microsoft.identitymodel.logging.nuspec"
  3816. ]
  3817. },
  3818. "Microsoft.IdentityModel.Protocols/6.10.0": {
  3819. "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
  3820. "type": "package",
  3821. "path": "microsoft.identitymodel.protocols/6.10.0",
  3822. "files": [
  3823. ".nupkg.metadata",
  3824. ".signature.p7s",
  3825. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3826. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3827. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3828. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3829. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3830. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3831. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3832. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3833. "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
  3834. "microsoft.identitymodel.protocols.nuspec"
  3835. ]
  3836. },
  3837. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  3838. "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
  3839. "type": "package",
  3840. "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3845. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3846. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3847. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3848. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3849. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3850. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3851. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3852. "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
  3853. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3854. ]
  3855. },
  3856. "Microsoft.IdentityModel.Tokens/6.10.0": {
  3857. "sha512": "qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
  3858. "type": "package",
  3859. "path": "microsoft.identitymodel.tokens/6.10.0",
  3860. "files": [
  3861. ".nupkg.metadata",
  3862. ".signature.p7s",
  3863. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3864. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3865. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3866. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3867. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3868. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3869. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3870. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3871. "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512",
  3872. "microsoft.identitymodel.tokens.nuspec"
  3873. ]
  3874. },
  3875. "Microsoft.NETCore.Platforms/3.1.0": {
  3876. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3877. "type": "package",
  3878. "path": "microsoft.netcore.platforms/3.1.0",
  3879. "files": [
  3880. ".nupkg.metadata",
  3881. ".signature.p7s",
  3882. "LICENSE.TXT",
  3883. "THIRD-PARTY-NOTICES.TXT",
  3884. "lib/netstandard1.0/_._",
  3885. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3886. "microsoft.netcore.platforms.nuspec",
  3887. "runtime.json",
  3888. "useSharedDesignerContext.txt",
  3889. "version.txt"
  3890. ]
  3891. },
  3892. "Microsoft.NETCore.Targets/1.1.0": {
  3893. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3894. "type": "package",
  3895. "path": "microsoft.netcore.targets/1.1.0",
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "ThirdPartyNotices.txt",
  3900. "dotnet_library_license.txt",
  3901. "lib/netstandard1.0/_._",
  3902. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3903. "microsoft.netcore.targets.nuspec",
  3904. "runtime.json"
  3905. ]
  3906. },
  3907. "Microsoft.OpenApi/1.2.3": {
  3908. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3909. "type": "package",
  3910. "path": "microsoft.openapi/1.2.3",
  3911. "files": [
  3912. ".nupkg.metadata",
  3913. ".signature.p7s",
  3914. "lib/net46/Microsoft.OpenApi.dll",
  3915. "lib/net46/Microsoft.OpenApi.pdb",
  3916. "lib/net46/Microsoft.OpenApi.xml",
  3917. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3918. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3919. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3920. "microsoft.openapi.1.2.3.nupkg.sha512",
  3921. "microsoft.openapi.nuspec"
  3922. ]
  3923. },
  3924. "Microsoft.Win32.Primitives/4.3.0": {
  3925. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3926. "type": "package",
  3927. "path": "microsoft.win32.primitives/4.3.0",
  3928. "files": [
  3929. ".nupkg.metadata",
  3930. ".signature.p7s",
  3931. "ThirdPartyNotices.txt",
  3932. "dotnet_library_license.txt",
  3933. "lib/MonoAndroid10/_._",
  3934. "lib/MonoTouch10/_._",
  3935. "lib/net46/Microsoft.Win32.Primitives.dll",
  3936. "lib/xamarinios10/_._",
  3937. "lib/xamarinmac20/_._",
  3938. "lib/xamarintvos10/_._",
  3939. "lib/xamarinwatchos10/_._",
  3940. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3941. "microsoft.win32.primitives.nuspec",
  3942. "ref/MonoAndroid10/_._",
  3943. "ref/MonoTouch10/_._",
  3944. "ref/net46/Microsoft.Win32.Primitives.dll",
  3945. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3946. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3947. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3948. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3949. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3950. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3951. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3952. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3953. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3954. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3955. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3956. "ref/xamarinios10/_._",
  3957. "ref/xamarinmac20/_._",
  3958. "ref/xamarintvos10/_._",
  3959. "ref/xamarinwatchos10/_._"
  3960. ]
  3961. },
  3962. "Microsoft.Win32.Registry/4.7.0": {
  3963. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3964. "type": "package",
  3965. "path": "microsoft.win32.registry/4.7.0",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "LICENSE.TXT",
  3970. "THIRD-PARTY-NOTICES.TXT",
  3971. "lib/net46/Microsoft.Win32.Registry.dll",
  3972. "lib/net461/Microsoft.Win32.Registry.dll",
  3973. "lib/net461/Microsoft.Win32.Registry.xml",
  3974. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3975. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3976. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3977. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3978. "microsoft.win32.registry.nuspec",
  3979. "ref/net46/Microsoft.Win32.Registry.dll",
  3980. "ref/net461/Microsoft.Win32.Registry.dll",
  3981. "ref/net461/Microsoft.Win32.Registry.xml",
  3982. "ref/net472/Microsoft.Win32.Registry.dll",
  3983. "ref/net472/Microsoft.Win32.Registry.xml",
  3984. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3985. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3986. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3987. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3988. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3989. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3990. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3991. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3992. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3993. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3994. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3995. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3996. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3997. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3998. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3999. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4000. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4001. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4002. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4003. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4004. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4005. "useSharedDesignerContext.txt",
  4006. "version.txt"
  4007. ]
  4008. },
  4009. "Microsoft.Win32.SystemEvents/4.7.0": {
  4010. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4011. "type": "package",
  4012. "path": "microsoft.win32.systemevents/4.7.0",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "LICENSE.TXT",
  4017. "THIRD-PARTY-NOTICES.TXT",
  4018. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4019. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4020. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4021. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4022. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4023. "microsoft.win32.systemevents.nuspec",
  4024. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4025. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4026. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4027. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4028. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4029. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4030. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4031. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4032. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4033. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4034. "useSharedDesignerContext.txt",
  4035. "version.txt"
  4036. ]
  4037. },
  4038. "MySql.Data/8.0.29": {
  4039. "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  4040. "type": "package",
  4041. "path": "mysql.data/8.0.29",
  4042. "files": [
  4043. ".nupkg.metadata",
  4044. ".signature.p7s",
  4045. "lib/net452/MySql.Data.dll",
  4046. "lib/net452/MySql.Data.xml",
  4047. "lib/net452/Ubiety.Dns.Core.dll",
  4048. "lib/net452/ZstdNet.dll",
  4049. "lib/net48/MySql.Data.dll",
  4050. "lib/net48/MySql.Data.xml",
  4051. "lib/net48/Ubiety.Dns.Core.dll",
  4052. "lib/net48/ZstdNet.dll",
  4053. "lib/net5.0/MySql.Data.dll",
  4054. "lib/net5.0/MySql.Data.xml",
  4055. "lib/net5.0/Ubiety.Dns.Core.dll",
  4056. "lib/net5.0/ZstdNet.dll",
  4057. "lib/net6.0/MySql.Data.dll",
  4058. "lib/net6.0/MySql.Data.xml",
  4059. "lib/net6.0/Ubiety.Dns.Core.dll",
  4060. "lib/net6.0/ZstdNet.dll",
  4061. "lib/netstandard2.0/MySql.Data.dll",
  4062. "lib/netstandard2.0/MySql.Data.xml",
  4063. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4064. "lib/netstandard2.0/ZstdNet.dll",
  4065. "lib/netstandard2.1/MySql.Data.dll",
  4066. "lib/netstandard2.1/MySql.Data.xml",
  4067. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4068. "lib/netstandard2.1/ZstdNet.dll",
  4069. "mysql.data.8.0.29.nupkg.sha512",
  4070. "mysql.data.nuspec"
  4071. ]
  4072. },
  4073. "NETStandard.Library/1.6.1": {
  4074. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4075. "type": "package",
  4076. "path": "netstandard.library/1.6.1",
  4077. "files": [
  4078. ".nupkg.metadata",
  4079. ".signature.p7s",
  4080. "ThirdPartyNotices.txt",
  4081. "dotnet_library_license.txt",
  4082. "netstandard.library.1.6.1.nupkg.sha512",
  4083. "netstandard.library.nuspec"
  4084. ]
  4085. },
  4086. "Newtonsoft.Json/12.0.2": {
  4087. "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
  4088. "type": "package",
  4089. "path": "newtonsoft.json/12.0.2",
  4090. "files": [
  4091. ".nupkg.metadata",
  4092. ".signature.p7s",
  4093. "LICENSE.md",
  4094. "lib/net20/Newtonsoft.Json.dll",
  4095. "lib/net20/Newtonsoft.Json.xml",
  4096. "lib/net35/Newtonsoft.Json.dll",
  4097. "lib/net35/Newtonsoft.Json.xml",
  4098. "lib/net40/Newtonsoft.Json.dll",
  4099. "lib/net40/Newtonsoft.Json.xml",
  4100. "lib/net45/Newtonsoft.Json.dll",
  4101. "lib/net45/Newtonsoft.Json.xml",
  4102. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4103. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4104. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4105. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4106. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4107. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4108. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4109. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4110. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4111. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4112. "newtonsoft.json.12.0.2.nupkg.sha512",
  4113. "newtonsoft.json.nuspec"
  4114. ]
  4115. },
  4116. "Newtonsoft.Json.Bson/1.0.1": {
  4117. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  4118. "type": "package",
  4119. "path": "newtonsoft.json.bson/1.0.1",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "lib/net45/Newtonsoft.Json.Bson.dll",
  4124. "lib/net45/Newtonsoft.Json.Bson.xml",
  4125. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  4126. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  4127. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  4128. "newtonsoft.json.bson.nuspec"
  4129. ]
  4130. },
  4131. "Npgsql/5.0.7": {
  4132. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  4133. "type": "package",
  4134. "path": "npgsql/5.0.7",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "lib/net5.0/Npgsql.dll",
  4139. "lib/net5.0/Npgsql.xml",
  4140. "lib/netcoreapp3.1/Npgsql.dll",
  4141. "lib/netcoreapp3.1/Npgsql.xml",
  4142. "lib/netstandard2.0/Npgsql.dll",
  4143. "lib/netstandard2.0/Npgsql.xml",
  4144. "lib/netstandard2.1/Npgsql.dll",
  4145. "lib/netstandard2.1/Npgsql.xml",
  4146. "npgsql.5.0.7.nupkg.sha512",
  4147. "npgsql.nuspec",
  4148. "postgresql.png"
  4149. ]
  4150. },
  4151. "Oracle.ManagedDataAccess.Core/3.21.1": {
  4152. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  4153. "type": "package",
  4154. "path": "oracle.manageddataaccess.core/3.21.1",
  4155. "files": [
  4156. ".nupkg.metadata",
  4157. ".signature.p7s",
  4158. "PerfCounters/register_odpc_perfmon_counters.ps1",
  4159. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  4160. "info.txt",
  4161. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  4162. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  4163. "oracle.manageddataaccess.core.nuspec",
  4164. "readme.txt"
  4165. ]
  4166. },
  4167. "Pipelines.Sockets.Unofficial/2.2.2": {
  4168. "sha512": "Bhk0FWxH1paI+18zr1g5cTL+ebeuDcBCR+rRFO+fKEhretgjs7MF2Mc1P64FGLecWp4zKCUOPzngBNrqVyY7Zg==",
  4169. "type": "package",
  4170. "path": "pipelines.sockets.unofficial/2.2.2",
  4171. "files": [
  4172. ".nupkg.metadata",
  4173. ".signature.p7s",
  4174. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  4175. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  4176. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  4177. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  4178. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  4179. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  4180. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  4181. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  4182. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  4183. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  4184. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  4185. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  4186. "pipelines.sockets.unofficial.2.2.2.nupkg.sha512",
  4187. "pipelines.sockets.unofficial.nuspec"
  4188. ]
  4189. },
  4190. "QRCoder/1.4.1": {
  4191. "sha512": "W8KwCwsOJe9SI7Cm7XeIMawd08F/US6xNw34lg2Qnx6m7GYYakxbyBQaNoW1Q75oJOmX/32sJUZr6Cix2B6GUQ==",
  4192. "type": "package",
  4193. "path": "qrcoder/1.4.1",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "lib/net35/QRCoder.dll",
  4198. "lib/net40/QRCoder.dll",
  4199. "lib/netstandard1.1/QRCoder.dll",
  4200. "lib/netstandard2.0/QRCoder.dll",
  4201. "qrcoder.1.4.1.nupkg.sha512",
  4202. "qrcoder.nuspec"
  4203. ]
  4204. },
  4205. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4206. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4207. "type": "package",
  4208. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4209. "files": [
  4210. ".nupkg.metadata",
  4211. ".signature.p7s",
  4212. "ThirdPartyNotices.txt",
  4213. "dotnet_library_license.txt",
  4214. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4215. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4216. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4217. ]
  4218. },
  4219. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4220. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4221. "type": "package",
  4222. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4223. "files": [
  4224. ".nupkg.metadata",
  4225. ".signature.p7s",
  4226. "ThirdPartyNotices.txt",
  4227. "dotnet_library_license.txt",
  4228. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4229. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4230. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4231. ]
  4232. },
  4233. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4234. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4235. "type": "package",
  4236. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "ThirdPartyNotices.txt",
  4241. "dotnet_library_license.txt",
  4242. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4243. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4244. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4245. ]
  4246. },
  4247. "runtime.native.System/4.3.0": {
  4248. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4249. "type": "package",
  4250. "path": "runtime.native.system/4.3.0",
  4251. "files": [
  4252. ".nupkg.metadata",
  4253. ".signature.p7s",
  4254. "ThirdPartyNotices.txt",
  4255. "dotnet_library_license.txt",
  4256. "lib/netstandard1.0/_._",
  4257. "runtime.native.system.4.3.0.nupkg.sha512",
  4258. "runtime.native.system.nuspec"
  4259. ]
  4260. },
  4261. "runtime.native.System.IO.Compression/4.3.0": {
  4262. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4263. "type": "package",
  4264. "path": "runtime.native.system.io.compression/4.3.0",
  4265. "files": [
  4266. ".nupkg.metadata",
  4267. ".signature.p7s",
  4268. "ThirdPartyNotices.txt",
  4269. "dotnet_library_license.txt",
  4270. "lib/netstandard1.0/_._",
  4271. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4272. "runtime.native.system.io.compression.nuspec"
  4273. ]
  4274. },
  4275. "runtime.native.System.Net.Http/4.3.0": {
  4276. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4277. "type": "package",
  4278. "path": "runtime.native.system.net.http/4.3.0",
  4279. "files": [
  4280. ".nupkg.metadata",
  4281. ".signature.p7s",
  4282. "ThirdPartyNotices.txt",
  4283. "dotnet_library_license.txt",
  4284. "lib/netstandard1.0/_._",
  4285. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4286. "runtime.native.system.net.http.nuspec"
  4287. ]
  4288. },
  4289. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4290. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4291. "type": "package",
  4292. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4293. "files": [
  4294. ".nupkg.metadata",
  4295. ".signature.p7s",
  4296. "ThirdPartyNotices.txt",
  4297. "dotnet_library_license.txt",
  4298. "lib/netstandard1.0/_._",
  4299. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4300. "runtime.native.system.security.cryptography.apple.nuspec"
  4301. ]
  4302. },
  4303. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4304. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4305. "type": "package",
  4306. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4307. "files": [
  4308. ".nupkg.metadata",
  4309. ".signature.p7s",
  4310. "ThirdPartyNotices.txt",
  4311. "dotnet_library_license.txt",
  4312. "lib/netstandard1.0/_._",
  4313. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4314. "runtime.native.system.security.cryptography.openssl.nuspec"
  4315. ]
  4316. },
  4317. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4318. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4319. "type": "package",
  4320. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "ThirdPartyNotices.txt",
  4325. "dotnet_library_license.txt",
  4326. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4327. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4328. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4329. ]
  4330. },
  4331. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4332. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4333. "type": "package",
  4334. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4335. "files": [
  4336. ".nupkg.metadata",
  4337. ".signature.p7s",
  4338. "ThirdPartyNotices.txt",
  4339. "dotnet_library_license.txt",
  4340. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4341. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4342. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4343. ]
  4344. },
  4345. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4346. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4347. "type": "package",
  4348. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4349. "files": [
  4350. ".nupkg.metadata",
  4351. ".signature.p7s",
  4352. "ThirdPartyNotices.txt",
  4353. "dotnet_library_license.txt",
  4354. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4355. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4356. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4357. ]
  4358. },
  4359. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4360. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4361. "type": "package",
  4362. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4363. "files": [
  4364. ".nupkg.metadata",
  4365. ".signature.p7s",
  4366. "ThirdPartyNotices.txt",
  4367. "dotnet_library_license.txt",
  4368. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4369. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4370. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4371. ]
  4372. },
  4373. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4374. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4375. "type": "package",
  4376. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4377. "files": [
  4378. ".nupkg.metadata",
  4379. ".signature.p7s",
  4380. "ThirdPartyNotices.txt",
  4381. "dotnet_library_license.txt",
  4382. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4383. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4384. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4385. ]
  4386. },
  4387. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4388. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4389. "type": "package",
  4390. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4391. "files": [
  4392. ".nupkg.metadata",
  4393. ".signature.p7s",
  4394. "ThirdPartyNotices.txt",
  4395. "dotnet_library_license.txt",
  4396. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4397. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4398. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4399. ]
  4400. },
  4401. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4402. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4403. "type": "package",
  4404. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4405. "files": [
  4406. ".nupkg.metadata",
  4407. ".signature.p7s",
  4408. "ThirdPartyNotices.txt",
  4409. "dotnet_library_license.txt",
  4410. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4411. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4412. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4413. ]
  4414. },
  4415. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4416. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4417. "type": "package",
  4418. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4419. "files": [
  4420. ".nupkg.metadata",
  4421. ".signature.p7s",
  4422. "ThirdPartyNotices.txt",
  4423. "dotnet_library_license.txt",
  4424. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4425. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4426. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4427. ]
  4428. },
  4429. "Serilog/2.10.0": {
  4430. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  4431. "type": "package",
  4432. "path": "serilog/2.10.0",
  4433. "files": [
  4434. ".nupkg.metadata",
  4435. ".signature.p7s",
  4436. "icon.png",
  4437. "lib/net45/Serilog.dll",
  4438. "lib/net45/Serilog.xml",
  4439. "lib/net46/Serilog.dll",
  4440. "lib/net46/Serilog.xml",
  4441. "lib/netstandard1.0/Serilog.dll",
  4442. "lib/netstandard1.0/Serilog.xml",
  4443. "lib/netstandard1.3/Serilog.dll",
  4444. "lib/netstandard1.3/Serilog.xml",
  4445. "lib/netstandard2.0/Serilog.dll",
  4446. "lib/netstandard2.0/Serilog.xml",
  4447. "lib/netstandard2.1/Serilog.dll",
  4448. "lib/netstandard2.1/Serilog.xml",
  4449. "serilog.2.10.0.nupkg.sha512",
  4450. "serilog.nuspec"
  4451. ]
  4452. },
  4453. "Serilog.Sinks.File/5.0.0": {
  4454. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  4455. "type": "package",
  4456. "path": "serilog.sinks.file/5.0.0",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "images/icon.png",
  4461. "lib/net45/Serilog.Sinks.File.dll",
  4462. "lib/net45/Serilog.Sinks.File.pdb",
  4463. "lib/net45/Serilog.Sinks.File.xml",
  4464. "lib/net5.0/Serilog.Sinks.File.dll",
  4465. "lib/net5.0/Serilog.Sinks.File.pdb",
  4466. "lib/net5.0/Serilog.Sinks.File.xml",
  4467. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  4468. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  4469. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  4470. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  4471. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  4472. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  4473. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  4474. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  4475. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  4476. "serilog.sinks.file.5.0.0.nupkg.sha512",
  4477. "serilog.sinks.file.nuspec"
  4478. ]
  4479. },
  4480. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  4481. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  4482. "type": "package",
  4483. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  4484. "files": [
  4485. ".nupkg.metadata",
  4486. ".signature.p7s",
  4487. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4488. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  4489. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  4490. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  4491. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  4492. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  4493. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  4494. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  4495. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  4496. ]
  4497. },
  4498. "SQLitePCLRaw.core/2.0.4": {
  4499. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  4500. "type": "package",
  4501. "path": "sqlitepclraw.core/2.0.4",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  4506. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  4507. "sqlitepclraw.core.nuspec"
  4508. ]
  4509. },
  4510. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  4511. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  4512. "type": "package",
  4513. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  4518. "lib/net461/_._",
  4519. "lib/netstandard2.0/_._",
  4520. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4521. "runtimes/linux-arm/native/libe_sqlite3.so",
  4522. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4523. "runtimes/linux-armel/native/libe_sqlite3.so",
  4524. "runtimes/linux-mips64/native/libe_sqlite3.so",
  4525. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4526. "runtimes/linux-x64/native/libe_sqlite3.so",
  4527. "runtimes/linux-x86/native/libe_sqlite3.so",
  4528. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4529. "runtimes/win-arm/native/e_sqlite3.dll",
  4530. "runtimes/win-arm64/native/e_sqlite3.dll",
  4531. "runtimes/win-x64/native/e_sqlite3.dll",
  4532. "runtimes/win-x86/native/e_sqlite3.dll",
  4533. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  4534. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  4535. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  4536. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  4537. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  4538. "sqlitepclraw.lib.e_sqlite3.nuspec"
  4539. ]
  4540. },
  4541. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  4542. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  4543. "type": "package",
  4544. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  4545. "files": [
  4546. ".nupkg.metadata",
  4547. ".signature.p7s",
  4548. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  4549. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  4550. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  4551. ]
  4552. },
  4553. "SqlSugarCore/5.1.3.32": {
  4554. "sha512": "Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  4555. "type": "package",
  4556. "path": "sqlsugarcore/5.1.3.32",
  4557. "files": [
  4558. ".nupkg.metadata",
  4559. ".signature.p7s",
  4560. "lib/netstandard2.1/SqlSugar.dll",
  4561. "sqlsugarcore.5.1.3.32.nupkg.sha512",
  4562. "sqlsugarcore.nuspec"
  4563. ]
  4564. },
  4565. "SqlSugarCore.Dm/1.0.0": {
  4566. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  4567. "type": "package",
  4568. "path": "sqlsugarcore.dm/1.0.0",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "lib/netstandard2.0/DmProvider.dll",
  4573. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  4574. "sqlsugarcore.dm.nuspec"
  4575. ]
  4576. },
  4577. "SqlSugarCore.Kdbndp/1.0.0": {
  4578. "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  4579. "type": "package",
  4580. "path": "sqlsugarcore.kdbndp/1.0.0",
  4581. "files": [
  4582. ".nupkg.metadata",
  4583. ".signature.p7s",
  4584. "lib/netstandard2.0/Kdbndp.dll",
  4585. "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
  4586. "sqlsugarcore.kdbndp.nuspec"
  4587. ]
  4588. },
  4589. "StackExchange.Redis/2.6.96": {
  4590. "sha512": "JDj94bTwBZ6zA1vknEYJppRXRejTnl5u2z6cRBQ0DJ+Uy94qvn0XsQZ2M+1/VkqtxQ+LUU1h4JZWwcvVojGiQg==",
  4591. "type": "package",
  4592. "path": "stackexchange.redis/2.6.96",
  4593. "files": [
  4594. ".nupkg.metadata",
  4595. ".signature.p7s",
  4596. "lib/net461/StackExchange.Redis.dll",
  4597. "lib/net461/StackExchange.Redis.xml",
  4598. "lib/net472/StackExchange.Redis.dll",
  4599. "lib/net472/StackExchange.Redis.xml",
  4600. "lib/net5.0/StackExchange.Redis.dll",
  4601. "lib/net5.0/StackExchange.Redis.xml",
  4602. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  4603. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  4604. "lib/netstandard2.0/StackExchange.Redis.dll",
  4605. "lib/netstandard2.0/StackExchange.Redis.xml",
  4606. "stackexchange.redis.2.6.96.nupkg.sha512",
  4607. "stackexchange.redis.nuspec"
  4608. ]
  4609. },
  4610. "Swashbuckle.AspNetCore/6.4.0": {
  4611. "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
  4612. "type": "package",
  4613. "path": "swashbuckle.aspnetcore/6.4.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "build/Swashbuckle.AspNetCore.props",
  4618. "swashbuckle.aspnetcore.6.4.0.nupkg.sha512",
  4619. "swashbuckle.aspnetcore.nuspec"
  4620. ]
  4621. },
  4622. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  4623. "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
  4624. "type": "package",
  4625. "path": "swashbuckle.aspnetcore.swagger/6.4.0",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  4630. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4631. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4632. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4633. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4634. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4635. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4636. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4637. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4638. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4639. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4640. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4641. "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512",
  4642. "swashbuckle.aspnetcore.swagger.nuspec"
  4643. ]
  4644. },
  4645. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  4646. "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
  4647. "type": "package",
  4648. "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
  4649. "files": [
  4650. ".nupkg.metadata",
  4651. ".signature.p7s",
  4652. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4653. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4654. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4655. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4656. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4657. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4658. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4659. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4660. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4661. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4662. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4663. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4664. "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512",
  4665. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4666. ]
  4667. },
  4668. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  4669. "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
  4670. "type": "package",
  4671. "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4676. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4677. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4678. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4679. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4680. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4681. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4682. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4683. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4684. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4685. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4686. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4687. "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512",
  4688. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4689. ]
  4690. },
  4691. "System.AppContext/4.3.0": {
  4692. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4693. "type": "package",
  4694. "path": "system.appcontext/4.3.0",
  4695. "files": [
  4696. ".nupkg.metadata",
  4697. ".signature.p7s",
  4698. "ThirdPartyNotices.txt",
  4699. "dotnet_library_license.txt",
  4700. "lib/MonoAndroid10/_._",
  4701. "lib/MonoTouch10/_._",
  4702. "lib/net46/System.AppContext.dll",
  4703. "lib/net463/System.AppContext.dll",
  4704. "lib/netcore50/System.AppContext.dll",
  4705. "lib/netstandard1.6/System.AppContext.dll",
  4706. "lib/xamarinios10/_._",
  4707. "lib/xamarinmac20/_._",
  4708. "lib/xamarintvos10/_._",
  4709. "lib/xamarinwatchos10/_._",
  4710. "ref/MonoAndroid10/_._",
  4711. "ref/MonoTouch10/_._",
  4712. "ref/net46/System.AppContext.dll",
  4713. "ref/net463/System.AppContext.dll",
  4714. "ref/netstandard/_._",
  4715. "ref/netstandard1.3/System.AppContext.dll",
  4716. "ref/netstandard1.3/System.AppContext.xml",
  4717. "ref/netstandard1.3/de/System.AppContext.xml",
  4718. "ref/netstandard1.3/es/System.AppContext.xml",
  4719. "ref/netstandard1.3/fr/System.AppContext.xml",
  4720. "ref/netstandard1.3/it/System.AppContext.xml",
  4721. "ref/netstandard1.3/ja/System.AppContext.xml",
  4722. "ref/netstandard1.3/ko/System.AppContext.xml",
  4723. "ref/netstandard1.3/ru/System.AppContext.xml",
  4724. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4725. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4726. "ref/netstandard1.6/System.AppContext.dll",
  4727. "ref/netstandard1.6/System.AppContext.xml",
  4728. "ref/netstandard1.6/de/System.AppContext.xml",
  4729. "ref/netstandard1.6/es/System.AppContext.xml",
  4730. "ref/netstandard1.6/fr/System.AppContext.xml",
  4731. "ref/netstandard1.6/it/System.AppContext.xml",
  4732. "ref/netstandard1.6/ja/System.AppContext.xml",
  4733. "ref/netstandard1.6/ko/System.AppContext.xml",
  4734. "ref/netstandard1.6/ru/System.AppContext.xml",
  4735. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4736. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4737. "ref/xamarinios10/_._",
  4738. "ref/xamarinmac20/_._",
  4739. "ref/xamarintvos10/_._",
  4740. "ref/xamarinwatchos10/_._",
  4741. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4742. "system.appcontext.4.3.0.nupkg.sha512",
  4743. "system.appcontext.nuspec"
  4744. ]
  4745. },
  4746. "System.Buffers/4.5.1": {
  4747. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4748. "type": "package",
  4749. "path": "system.buffers/4.5.1",
  4750. "files": [
  4751. ".nupkg.metadata",
  4752. ".signature.p7s",
  4753. "LICENSE.TXT",
  4754. "THIRD-PARTY-NOTICES.TXT",
  4755. "lib/net461/System.Buffers.dll",
  4756. "lib/net461/System.Buffers.xml",
  4757. "lib/netcoreapp2.0/_._",
  4758. "lib/netstandard1.1/System.Buffers.dll",
  4759. "lib/netstandard1.1/System.Buffers.xml",
  4760. "lib/netstandard2.0/System.Buffers.dll",
  4761. "lib/netstandard2.0/System.Buffers.xml",
  4762. "lib/uap10.0.16299/_._",
  4763. "ref/net45/System.Buffers.dll",
  4764. "ref/net45/System.Buffers.xml",
  4765. "ref/netcoreapp2.0/_._",
  4766. "ref/netstandard1.1/System.Buffers.dll",
  4767. "ref/netstandard1.1/System.Buffers.xml",
  4768. "ref/netstandard2.0/System.Buffers.dll",
  4769. "ref/netstandard2.0/System.Buffers.xml",
  4770. "ref/uap10.0.16299/_._",
  4771. "system.buffers.4.5.1.nupkg.sha512",
  4772. "system.buffers.nuspec",
  4773. "useSharedDesignerContext.txt",
  4774. "version.txt"
  4775. ]
  4776. },
  4777. "System.Collections/4.3.0": {
  4778. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4779. "type": "package",
  4780. "path": "system.collections/4.3.0",
  4781. "files": [
  4782. ".nupkg.metadata",
  4783. ".signature.p7s",
  4784. "ThirdPartyNotices.txt",
  4785. "dotnet_library_license.txt",
  4786. "lib/MonoAndroid10/_._",
  4787. "lib/MonoTouch10/_._",
  4788. "lib/net45/_._",
  4789. "lib/portable-net45+win8+wp8+wpa81/_._",
  4790. "lib/win8/_._",
  4791. "lib/wp80/_._",
  4792. "lib/wpa81/_._",
  4793. "lib/xamarinios10/_._",
  4794. "lib/xamarinmac20/_._",
  4795. "lib/xamarintvos10/_._",
  4796. "lib/xamarinwatchos10/_._",
  4797. "ref/MonoAndroid10/_._",
  4798. "ref/MonoTouch10/_._",
  4799. "ref/net45/_._",
  4800. "ref/netcore50/System.Collections.dll",
  4801. "ref/netcore50/System.Collections.xml",
  4802. "ref/netcore50/de/System.Collections.xml",
  4803. "ref/netcore50/es/System.Collections.xml",
  4804. "ref/netcore50/fr/System.Collections.xml",
  4805. "ref/netcore50/it/System.Collections.xml",
  4806. "ref/netcore50/ja/System.Collections.xml",
  4807. "ref/netcore50/ko/System.Collections.xml",
  4808. "ref/netcore50/ru/System.Collections.xml",
  4809. "ref/netcore50/zh-hans/System.Collections.xml",
  4810. "ref/netcore50/zh-hant/System.Collections.xml",
  4811. "ref/netstandard1.0/System.Collections.dll",
  4812. "ref/netstandard1.0/System.Collections.xml",
  4813. "ref/netstandard1.0/de/System.Collections.xml",
  4814. "ref/netstandard1.0/es/System.Collections.xml",
  4815. "ref/netstandard1.0/fr/System.Collections.xml",
  4816. "ref/netstandard1.0/it/System.Collections.xml",
  4817. "ref/netstandard1.0/ja/System.Collections.xml",
  4818. "ref/netstandard1.0/ko/System.Collections.xml",
  4819. "ref/netstandard1.0/ru/System.Collections.xml",
  4820. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4821. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4822. "ref/netstandard1.3/System.Collections.dll",
  4823. "ref/netstandard1.3/System.Collections.xml",
  4824. "ref/netstandard1.3/de/System.Collections.xml",
  4825. "ref/netstandard1.3/es/System.Collections.xml",
  4826. "ref/netstandard1.3/fr/System.Collections.xml",
  4827. "ref/netstandard1.3/it/System.Collections.xml",
  4828. "ref/netstandard1.3/ja/System.Collections.xml",
  4829. "ref/netstandard1.3/ko/System.Collections.xml",
  4830. "ref/netstandard1.3/ru/System.Collections.xml",
  4831. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4832. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4833. "ref/portable-net45+win8+wp8+wpa81/_._",
  4834. "ref/win8/_._",
  4835. "ref/wp80/_._",
  4836. "ref/wpa81/_._",
  4837. "ref/xamarinios10/_._",
  4838. "ref/xamarinmac20/_._",
  4839. "ref/xamarintvos10/_._",
  4840. "ref/xamarinwatchos10/_._",
  4841. "system.collections.4.3.0.nupkg.sha512",
  4842. "system.collections.nuspec"
  4843. ]
  4844. },
  4845. "System.Collections.Concurrent/4.3.0": {
  4846. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4847. "type": "package",
  4848. "path": "system.collections.concurrent/4.3.0",
  4849. "files": [
  4850. ".nupkg.metadata",
  4851. ".signature.p7s",
  4852. "ThirdPartyNotices.txt",
  4853. "dotnet_library_license.txt",
  4854. "lib/MonoAndroid10/_._",
  4855. "lib/MonoTouch10/_._",
  4856. "lib/net45/_._",
  4857. "lib/netcore50/System.Collections.Concurrent.dll",
  4858. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4859. "lib/portable-net45+win8+wpa81/_._",
  4860. "lib/win8/_._",
  4861. "lib/wpa81/_._",
  4862. "lib/xamarinios10/_._",
  4863. "lib/xamarinmac20/_._",
  4864. "lib/xamarintvos10/_._",
  4865. "lib/xamarinwatchos10/_._",
  4866. "ref/MonoAndroid10/_._",
  4867. "ref/MonoTouch10/_._",
  4868. "ref/net45/_._",
  4869. "ref/netcore50/System.Collections.Concurrent.dll",
  4870. "ref/netcore50/System.Collections.Concurrent.xml",
  4871. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4872. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4873. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4874. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4875. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4876. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4877. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4878. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4879. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4880. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4881. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4882. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4883. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4884. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4885. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4886. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4887. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4888. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4889. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4890. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4891. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4892. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4893. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4894. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4895. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4896. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4897. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4898. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4899. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4900. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4901. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4902. "ref/portable-net45+win8+wpa81/_._",
  4903. "ref/win8/_._",
  4904. "ref/wpa81/_._",
  4905. "ref/xamarinios10/_._",
  4906. "ref/xamarinmac20/_._",
  4907. "ref/xamarintvos10/_._",
  4908. "ref/xamarinwatchos10/_._",
  4909. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4910. "system.collections.concurrent.nuspec"
  4911. ]
  4912. },
  4913. "System.Configuration.ConfigurationManager/4.7.0": {
  4914. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4915. "type": "package",
  4916. "path": "system.configuration.configurationmanager/4.7.0",
  4917. "files": [
  4918. ".nupkg.metadata",
  4919. ".signature.p7s",
  4920. "LICENSE.TXT",
  4921. "THIRD-PARTY-NOTICES.TXT",
  4922. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4923. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4924. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4925. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4926. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4927. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4928. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4929. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4930. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4931. "system.configuration.configurationmanager.nuspec",
  4932. "useSharedDesignerContext.txt",
  4933. "version.txt"
  4934. ]
  4935. },
  4936. "System.Console/4.3.0": {
  4937. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4938. "type": "package",
  4939. "path": "system.console/4.3.0",
  4940. "files": [
  4941. ".nupkg.metadata",
  4942. ".signature.p7s",
  4943. "ThirdPartyNotices.txt",
  4944. "dotnet_library_license.txt",
  4945. "lib/MonoAndroid10/_._",
  4946. "lib/MonoTouch10/_._",
  4947. "lib/net46/System.Console.dll",
  4948. "lib/xamarinios10/_._",
  4949. "lib/xamarinmac20/_._",
  4950. "lib/xamarintvos10/_._",
  4951. "lib/xamarinwatchos10/_._",
  4952. "ref/MonoAndroid10/_._",
  4953. "ref/MonoTouch10/_._",
  4954. "ref/net46/System.Console.dll",
  4955. "ref/netstandard1.3/System.Console.dll",
  4956. "ref/netstandard1.3/System.Console.xml",
  4957. "ref/netstandard1.3/de/System.Console.xml",
  4958. "ref/netstandard1.3/es/System.Console.xml",
  4959. "ref/netstandard1.3/fr/System.Console.xml",
  4960. "ref/netstandard1.3/it/System.Console.xml",
  4961. "ref/netstandard1.3/ja/System.Console.xml",
  4962. "ref/netstandard1.3/ko/System.Console.xml",
  4963. "ref/netstandard1.3/ru/System.Console.xml",
  4964. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4965. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4966. "ref/xamarinios10/_._",
  4967. "ref/xamarinmac20/_._",
  4968. "ref/xamarintvos10/_._",
  4969. "ref/xamarinwatchos10/_._",
  4970. "system.console.4.3.0.nupkg.sha512",
  4971. "system.console.nuspec"
  4972. ]
  4973. },
  4974. "System.Data.Common/4.3.0": {
  4975. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4976. "type": "package",
  4977. "path": "system.data.common/4.3.0",
  4978. "files": [
  4979. ".nupkg.metadata",
  4980. ".signature.p7s",
  4981. "ThirdPartyNotices.txt",
  4982. "dotnet_library_license.txt",
  4983. "lib/MonoAndroid10/_._",
  4984. "lib/MonoTouch10/_._",
  4985. "lib/net451/System.Data.Common.dll",
  4986. "lib/netstandard1.2/System.Data.Common.dll",
  4987. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4988. "lib/xamarinios10/_._",
  4989. "lib/xamarinmac20/_._",
  4990. "lib/xamarintvos10/_._",
  4991. "lib/xamarinwatchos10/_._",
  4992. "ref/MonoAndroid10/_._",
  4993. "ref/MonoTouch10/_._",
  4994. "ref/net451/System.Data.Common.dll",
  4995. "ref/netstandard1.2/System.Data.Common.dll",
  4996. "ref/netstandard1.2/System.Data.Common.xml",
  4997. "ref/netstandard1.2/de/System.Data.Common.xml",
  4998. "ref/netstandard1.2/es/System.Data.Common.xml",
  4999. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5000. "ref/netstandard1.2/it/System.Data.Common.xml",
  5001. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5002. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5003. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5004. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5005. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5006. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5007. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5008. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5009. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5010. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5011. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5012. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5013. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5014. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5015. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5016. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5017. "ref/xamarinios10/_._",
  5018. "ref/xamarinmac20/_._",
  5019. "ref/xamarintvos10/_._",
  5020. "ref/xamarinwatchos10/_._",
  5021. "system.data.common.4.3.0.nupkg.sha512",
  5022. "system.data.common.nuspec"
  5023. ]
  5024. },
  5025. "System.Diagnostics.Debug/4.3.0": {
  5026. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5027. "type": "package",
  5028. "path": "system.diagnostics.debug/4.3.0",
  5029. "files": [
  5030. ".nupkg.metadata",
  5031. ".signature.p7s",
  5032. "ThirdPartyNotices.txt",
  5033. "dotnet_library_license.txt",
  5034. "lib/MonoAndroid10/_._",
  5035. "lib/MonoTouch10/_._",
  5036. "lib/net45/_._",
  5037. "lib/portable-net45+win8+wp8+wpa81/_._",
  5038. "lib/win8/_._",
  5039. "lib/wp80/_._",
  5040. "lib/wpa81/_._",
  5041. "lib/xamarinios10/_._",
  5042. "lib/xamarinmac20/_._",
  5043. "lib/xamarintvos10/_._",
  5044. "lib/xamarinwatchos10/_._",
  5045. "ref/MonoAndroid10/_._",
  5046. "ref/MonoTouch10/_._",
  5047. "ref/net45/_._",
  5048. "ref/netcore50/System.Diagnostics.Debug.dll",
  5049. "ref/netcore50/System.Diagnostics.Debug.xml",
  5050. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5051. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5052. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5053. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5054. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5055. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5056. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5057. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5058. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5059. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5060. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5061. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5062. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5063. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5064. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5065. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5066. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5067. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5068. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5069. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5070. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5071. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5072. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5073. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5074. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5075. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5076. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5077. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5078. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5079. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5080. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5081. "ref/portable-net45+win8+wp8+wpa81/_._",
  5082. "ref/win8/_._",
  5083. "ref/wp80/_._",
  5084. "ref/wpa81/_._",
  5085. "ref/xamarinios10/_._",
  5086. "ref/xamarinmac20/_._",
  5087. "ref/xamarintvos10/_._",
  5088. "ref/xamarinwatchos10/_._",
  5089. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5090. "system.diagnostics.debug.nuspec"
  5091. ]
  5092. },
  5093. "System.Diagnostics.DiagnosticSource/6.0.0": {
  5094. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  5095. "type": "package",
  5096. "path": "system.diagnostics.diagnosticsource/6.0.0",
  5097. "files": [
  5098. ".nupkg.metadata",
  5099. ".signature.p7s",
  5100. "Icon.png",
  5101. "LICENSE.TXT",
  5102. "THIRD-PARTY-NOTICES.TXT",
  5103. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5104. "buildTransitive/netcoreapp3.1/_._",
  5105. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  5106. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  5107. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5108. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5109. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5110. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5111. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5112. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5113. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  5114. "system.diagnostics.diagnosticsource.nuspec",
  5115. "useSharedDesignerContext.txt"
  5116. ]
  5117. },
  5118. "System.Diagnostics.PerformanceCounter/4.7.0": {
  5119. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  5120. "type": "package",
  5121. "path": "system.diagnostics.performancecounter/4.7.0",
  5122. "files": [
  5123. ".nupkg.metadata",
  5124. ".signature.p7s",
  5125. "LICENSE.TXT",
  5126. "THIRD-PARTY-NOTICES.TXT",
  5127. "lib/MonoAndroid10/_._",
  5128. "lib/MonoTouch10/_._",
  5129. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  5130. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  5131. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  5132. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  5133. "lib/xamarinios10/_._",
  5134. "lib/xamarinmac20/_._",
  5135. "lib/xamarintvos10/_._",
  5136. "lib/xamarinwatchos10/_._",
  5137. "ref/MonoAndroid10/_._",
  5138. "ref/MonoTouch10/_._",
  5139. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  5140. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  5141. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  5142. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  5143. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  5144. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  5145. "ref/xamarinios10/_._",
  5146. "ref/xamarinmac20/_._",
  5147. "ref/xamarintvos10/_._",
  5148. "ref/xamarinwatchos10/_._",
  5149. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  5150. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  5151. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  5152. "system.diagnostics.performancecounter.nuspec",
  5153. "useSharedDesignerContext.txt",
  5154. "version.txt"
  5155. ]
  5156. },
  5157. "System.Diagnostics.Tools/4.3.0": {
  5158. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5159. "type": "package",
  5160. "path": "system.diagnostics.tools/4.3.0",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "ThirdPartyNotices.txt",
  5165. "dotnet_library_license.txt",
  5166. "lib/MonoAndroid10/_._",
  5167. "lib/MonoTouch10/_._",
  5168. "lib/net45/_._",
  5169. "lib/portable-net45+win8+wp8+wpa81/_._",
  5170. "lib/win8/_._",
  5171. "lib/wp80/_._",
  5172. "lib/wpa81/_._",
  5173. "lib/xamarinios10/_._",
  5174. "lib/xamarinmac20/_._",
  5175. "lib/xamarintvos10/_._",
  5176. "lib/xamarinwatchos10/_._",
  5177. "ref/MonoAndroid10/_._",
  5178. "ref/MonoTouch10/_._",
  5179. "ref/net45/_._",
  5180. "ref/netcore50/System.Diagnostics.Tools.dll",
  5181. "ref/netcore50/System.Diagnostics.Tools.xml",
  5182. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5183. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5184. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5185. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5186. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5187. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5188. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5189. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5190. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5191. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5192. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5193. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5194. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5195. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5196. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5197. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5198. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5199. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5200. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5201. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5202. "ref/portable-net45+win8+wp8+wpa81/_._",
  5203. "ref/win8/_._",
  5204. "ref/wp80/_._",
  5205. "ref/wpa81/_._",
  5206. "ref/xamarinios10/_._",
  5207. "ref/xamarinmac20/_._",
  5208. "ref/xamarintvos10/_._",
  5209. "ref/xamarinwatchos10/_._",
  5210. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5211. "system.diagnostics.tools.nuspec"
  5212. ]
  5213. },
  5214. "System.Diagnostics.Tracing/4.3.0": {
  5215. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5216. "type": "package",
  5217. "path": "system.diagnostics.tracing/4.3.0",
  5218. "files": [
  5219. ".nupkg.metadata",
  5220. ".signature.p7s",
  5221. "ThirdPartyNotices.txt",
  5222. "dotnet_library_license.txt",
  5223. "lib/MonoAndroid10/_._",
  5224. "lib/MonoTouch10/_._",
  5225. "lib/net45/_._",
  5226. "lib/net462/System.Diagnostics.Tracing.dll",
  5227. "lib/portable-net45+win8+wpa81/_._",
  5228. "lib/win8/_._",
  5229. "lib/wpa81/_._",
  5230. "lib/xamarinios10/_._",
  5231. "lib/xamarinmac20/_._",
  5232. "lib/xamarintvos10/_._",
  5233. "lib/xamarinwatchos10/_._",
  5234. "ref/MonoAndroid10/_._",
  5235. "ref/MonoTouch10/_._",
  5236. "ref/net45/_._",
  5237. "ref/net462/System.Diagnostics.Tracing.dll",
  5238. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5239. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5240. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5241. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5242. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5243. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5244. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5245. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5246. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5247. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5248. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5249. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5250. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5251. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5252. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5253. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5254. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5255. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5256. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5257. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5258. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5259. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5260. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5261. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5262. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5263. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5264. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5265. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5266. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5267. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5268. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5269. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5270. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5271. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5272. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5273. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5274. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5275. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5276. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5277. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5278. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5279. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5280. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5281. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5282. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5283. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5284. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5285. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5286. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5287. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5288. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5289. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5290. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5291. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5292. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5293. "ref/portable-net45+win8+wpa81/_._",
  5294. "ref/win8/_._",
  5295. "ref/wpa81/_._",
  5296. "ref/xamarinios10/_._",
  5297. "ref/xamarinmac20/_._",
  5298. "ref/xamarintvos10/_._",
  5299. "ref/xamarinwatchos10/_._",
  5300. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5301. "system.diagnostics.tracing.nuspec"
  5302. ]
  5303. },
  5304. "System.DirectoryServices/4.7.0": {
  5305. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  5306. "type": "package",
  5307. "path": "system.directoryservices/4.7.0",
  5308. "files": [
  5309. ".nupkg.metadata",
  5310. ".signature.p7s",
  5311. "LICENSE.TXT",
  5312. "THIRD-PARTY-NOTICES.TXT",
  5313. "lib/net45/_._",
  5314. "lib/netstandard2.0/System.DirectoryServices.dll",
  5315. "lib/netstandard2.0/System.DirectoryServices.xml",
  5316. "ref/net45/_._",
  5317. "ref/netstandard2.0/System.DirectoryServices.dll",
  5318. "ref/netstandard2.0/System.DirectoryServices.xml",
  5319. "runtimes/win/lib/net45/_._",
  5320. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  5321. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  5322. "system.directoryservices.4.7.0.nupkg.sha512",
  5323. "system.directoryservices.nuspec",
  5324. "useSharedDesignerContext.txt",
  5325. "version.txt"
  5326. ]
  5327. },
  5328. "System.DirectoryServices.Protocols/4.7.0": {
  5329. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  5330. "type": "package",
  5331. "path": "system.directoryservices.protocols/4.7.0",
  5332. "files": [
  5333. ".nupkg.metadata",
  5334. ".signature.p7s",
  5335. "LICENSE.TXT",
  5336. "THIRD-PARTY-NOTICES.TXT",
  5337. "lib/net45/_._",
  5338. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  5339. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  5340. "ref/net45/_._",
  5341. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  5342. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  5343. "runtimes/win/lib/net45/_._",
  5344. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  5345. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  5346. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  5347. "system.directoryservices.protocols.nuspec",
  5348. "useSharedDesignerContext.txt",
  5349. "version.txt"
  5350. ]
  5351. },
  5352. "System.Drawing.Common/4.7.0": {
  5353. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  5354. "type": "package",
  5355. "path": "system.drawing.common/4.7.0",
  5356. "files": [
  5357. ".nupkg.metadata",
  5358. ".signature.p7s",
  5359. "LICENSE.TXT",
  5360. "THIRD-PARTY-NOTICES.TXT",
  5361. "lib/MonoAndroid10/_._",
  5362. "lib/MonoTouch10/_._",
  5363. "lib/net461/System.Drawing.Common.dll",
  5364. "lib/netstandard2.0/System.Drawing.Common.dll",
  5365. "lib/xamarinios10/_._",
  5366. "lib/xamarinmac20/_._",
  5367. "lib/xamarintvos10/_._",
  5368. "lib/xamarinwatchos10/_._",
  5369. "ref/MonoAndroid10/_._",
  5370. "ref/MonoTouch10/_._",
  5371. "ref/net461/System.Drawing.Common.dll",
  5372. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5373. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5374. "ref/netstandard2.0/System.Drawing.Common.dll",
  5375. "ref/xamarinios10/_._",
  5376. "ref/xamarinmac20/_._",
  5377. "ref/xamarintvos10/_._",
  5378. "ref/xamarinwatchos10/_._",
  5379. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5380. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5381. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5382. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5383. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5384. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5385. "system.drawing.common.4.7.0.nupkg.sha512",
  5386. "system.drawing.common.nuspec",
  5387. "useSharedDesignerContext.txt",
  5388. "version.txt"
  5389. ]
  5390. },
  5391. "System.Globalization/4.3.0": {
  5392. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5393. "type": "package",
  5394. "path": "system.globalization/4.3.0",
  5395. "files": [
  5396. ".nupkg.metadata",
  5397. ".signature.p7s",
  5398. "ThirdPartyNotices.txt",
  5399. "dotnet_library_license.txt",
  5400. "lib/MonoAndroid10/_._",
  5401. "lib/MonoTouch10/_._",
  5402. "lib/net45/_._",
  5403. "lib/portable-net45+win8+wp8+wpa81/_._",
  5404. "lib/win8/_._",
  5405. "lib/wp80/_._",
  5406. "lib/wpa81/_._",
  5407. "lib/xamarinios10/_._",
  5408. "lib/xamarinmac20/_._",
  5409. "lib/xamarintvos10/_._",
  5410. "lib/xamarinwatchos10/_._",
  5411. "ref/MonoAndroid10/_._",
  5412. "ref/MonoTouch10/_._",
  5413. "ref/net45/_._",
  5414. "ref/netcore50/System.Globalization.dll",
  5415. "ref/netcore50/System.Globalization.xml",
  5416. "ref/netcore50/de/System.Globalization.xml",
  5417. "ref/netcore50/es/System.Globalization.xml",
  5418. "ref/netcore50/fr/System.Globalization.xml",
  5419. "ref/netcore50/it/System.Globalization.xml",
  5420. "ref/netcore50/ja/System.Globalization.xml",
  5421. "ref/netcore50/ko/System.Globalization.xml",
  5422. "ref/netcore50/ru/System.Globalization.xml",
  5423. "ref/netcore50/zh-hans/System.Globalization.xml",
  5424. "ref/netcore50/zh-hant/System.Globalization.xml",
  5425. "ref/netstandard1.0/System.Globalization.dll",
  5426. "ref/netstandard1.0/System.Globalization.xml",
  5427. "ref/netstandard1.0/de/System.Globalization.xml",
  5428. "ref/netstandard1.0/es/System.Globalization.xml",
  5429. "ref/netstandard1.0/fr/System.Globalization.xml",
  5430. "ref/netstandard1.0/it/System.Globalization.xml",
  5431. "ref/netstandard1.0/ja/System.Globalization.xml",
  5432. "ref/netstandard1.0/ko/System.Globalization.xml",
  5433. "ref/netstandard1.0/ru/System.Globalization.xml",
  5434. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5435. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5436. "ref/netstandard1.3/System.Globalization.dll",
  5437. "ref/netstandard1.3/System.Globalization.xml",
  5438. "ref/netstandard1.3/de/System.Globalization.xml",
  5439. "ref/netstandard1.3/es/System.Globalization.xml",
  5440. "ref/netstandard1.3/fr/System.Globalization.xml",
  5441. "ref/netstandard1.3/it/System.Globalization.xml",
  5442. "ref/netstandard1.3/ja/System.Globalization.xml",
  5443. "ref/netstandard1.3/ko/System.Globalization.xml",
  5444. "ref/netstandard1.3/ru/System.Globalization.xml",
  5445. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5446. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5447. "ref/portable-net45+win8+wp8+wpa81/_._",
  5448. "ref/win8/_._",
  5449. "ref/wp80/_._",
  5450. "ref/wpa81/_._",
  5451. "ref/xamarinios10/_._",
  5452. "ref/xamarinmac20/_._",
  5453. "ref/xamarintvos10/_._",
  5454. "ref/xamarinwatchos10/_._",
  5455. "system.globalization.4.3.0.nupkg.sha512",
  5456. "system.globalization.nuspec"
  5457. ]
  5458. },
  5459. "System.Globalization.Calendars/4.3.0": {
  5460. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5461. "type": "package",
  5462. "path": "system.globalization.calendars/4.3.0",
  5463. "files": [
  5464. ".nupkg.metadata",
  5465. ".signature.p7s",
  5466. "ThirdPartyNotices.txt",
  5467. "dotnet_library_license.txt",
  5468. "lib/MonoAndroid10/_._",
  5469. "lib/MonoTouch10/_._",
  5470. "lib/net46/System.Globalization.Calendars.dll",
  5471. "lib/xamarinios10/_._",
  5472. "lib/xamarinmac20/_._",
  5473. "lib/xamarintvos10/_._",
  5474. "lib/xamarinwatchos10/_._",
  5475. "ref/MonoAndroid10/_._",
  5476. "ref/MonoTouch10/_._",
  5477. "ref/net46/System.Globalization.Calendars.dll",
  5478. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5479. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5480. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5481. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5482. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5483. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5484. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5485. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5486. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5487. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5488. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5489. "ref/xamarinios10/_._",
  5490. "ref/xamarinmac20/_._",
  5491. "ref/xamarintvos10/_._",
  5492. "ref/xamarinwatchos10/_._",
  5493. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5494. "system.globalization.calendars.nuspec"
  5495. ]
  5496. },
  5497. "System.Globalization.Extensions/4.3.0": {
  5498. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5499. "type": "package",
  5500. "path": "system.globalization.extensions/4.3.0",
  5501. "files": [
  5502. ".nupkg.metadata",
  5503. ".signature.p7s",
  5504. "ThirdPartyNotices.txt",
  5505. "dotnet_library_license.txt",
  5506. "lib/MonoAndroid10/_._",
  5507. "lib/MonoTouch10/_._",
  5508. "lib/net46/System.Globalization.Extensions.dll",
  5509. "lib/xamarinios10/_._",
  5510. "lib/xamarinmac20/_._",
  5511. "lib/xamarintvos10/_._",
  5512. "lib/xamarinwatchos10/_._",
  5513. "ref/MonoAndroid10/_._",
  5514. "ref/MonoTouch10/_._",
  5515. "ref/net46/System.Globalization.Extensions.dll",
  5516. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5517. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5518. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5519. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5520. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5521. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5522. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5523. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5524. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5525. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5526. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5527. "ref/xamarinios10/_._",
  5528. "ref/xamarinmac20/_._",
  5529. "ref/xamarintvos10/_._",
  5530. "ref/xamarinwatchos10/_._",
  5531. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5532. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5533. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5534. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5535. "system.globalization.extensions.nuspec"
  5536. ]
  5537. },
  5538. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  5539. "sha512": "C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
  5540. "type": "package",
  5541. "path": "system.identitymodel.tokens.jwt/6.10.0",
  5542. "files": [
  5543. ".nupkg.metadata",
  5544. ".signature.p7s",
  5545. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5546. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5547. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5548. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5549. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  5550. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  5551. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5552. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5553. "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
  5554. "system.identitymodel.tokens.jwt.nuspec"
  5555. ]
  5556. },
  5557. "System.IO/4.3.0": {
  5558. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5559. "type": "package",
  5560. "path": "system.io/4.3.0",
  5561. "files": [
  5562. ".nupkg.metadata",
  5563. ".signature.p7s",
  5564. "ThirdPartyNotices.txt",
  5565. "dotnet_library_license.txt",
  5566. "lib/MonoAndroid10/_._",
  5567. "lib/MonoTouch10/_._",
  5568. "lib/net45/_._",
  5569. "lib/net462/System.IO.dll",
  5570. "lib/portable-net45+win8+wp8+wpa81/_._",
  5571. "lib/win8/_._",
  5572. "lib/wp80/_._",
  5573. "lib/wpa81/_._",
  5574. "lib/xamarinios10/_._",
  5575. "lib/xamarinmac20/_._",
  5576. "lib/xamarintvos10/_._",
  5577. "lib/xamarinwatchos10/_._",
  5578. "ref/MonoAndroid10/_._",
  5579. "ref/MonoTouch10/_._",
  5580. "ref/net45/_._",
  5581. "ref/net462/System.IO.dll",
  5582. "ref/netcore50/System.IO.dll",
  5583. "ref/netcore50/System.IO.xml",
  5584. "ref/netcore50/de/System.IO.xml",
  5585. "ref/netcore50/es/System.IO.xml",
  5586. "ref/netcore50/fr/System.IO.xml",
  5587. "ref/netcore50/it/System.IO.xml",
  5588. "ref/netcore50/ja/System.IO.xml",
  5589. "ref/netcore50/ko/System.IO.xml",
  5590. "ref/netcore50/ru/System.IO.xml",
  5591. "ref/netcore50/zh-hans/System.IO.xml",
  5592. "ref/netcore50/zh-hant/System.IO.xml",
  5593. "ref/netstandard1.0/System.IO.dll",
  5594. "ref/netstandard1.0/System.IO.xml",
  5595. "ref/netstandard1.0/de/System.IO.xml",
  5596. "ref/netstandard1.0/es/System.IO.xml",
  5597. "ref/netstandard1.0/fr/System.IO.xml",
  5598. "ref/netstandard1.0/it/System.IO.xml",
  5599. "ref/netstandard1.0/ja/System.IO.xml",
  5600. "ref/netstandard1.0/ko/System.IO.xml",
  5601. "ref/netstandard1.0/ru/System.IO.xml",
  5602. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5603. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5604. "ref/netstandard1.3/System.IO.dll",
  5605. "ref/netstandard1.3/System.IO.xml",
  5606. "ref/netstandard1.3/de/System.IO.xml",
  5607. "ref/netstandard1.3/es/System.IO.xml",
  5608. "ref/netstandard1.3/fr/System.IO.xml",
  5609. "ref/netstandard1.3/it/System.IO.xml",
  5610. "ref/netstandard1.3/ja/System.IO.xml",
  5611. "ref/netstandard1.3/ko/System.IO.xml",
  5612. "ref/netstandard1.3/ru/System.IO.xml",
  5613. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5614. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5615. "ref/netstandard1.5/System.IO.dll",
  5616. "ref/netstandard1.5/System.IO.xml",
  5617. "ref/netstandard1.5/de/System.IO.xml",
  5618. "ref/netstandard1.5/es/System.IO.xml",
  5619. "ref/netstandard1.5/fr/System.IO.xml",
  5620. "ref/netstandard1.5/it/System.IO.xml",
  5621. "ref/netstandard1.5/ja/System.IO.xml",
  5622. "ref/netstandard1.5/ko/System.IO.xml",
  5623. "ref/netstandard1.5/ru/System.IO.xml",
  5624. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5625. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5626. "ref/portable-net45+win8+wp8+wpa81/_._",
  5627. "ref/win8/_._",
  5628. "ref/wp80/_._",
  5629. "ref/wpa81/_._",
  5630. "ref/xamarinios10/_._",
  5631. "ref/xamarinmac20/_._",
  5632. "ref/xamarintvos10/_._",
  5633. "ref/xamarinwatchos10/_._",
  5634. "system.io.4.3.0.nupkg.sha512",
  5635. "system.io.nuspec"
  5636. ]
  5637. },
  5638. "System.IO.Compression/4.3.0": {
  5639. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5640. "type": "package",
  5641. "path": "system.io.compression/4.3.0",
  5642. "files": [
  5643. ".nupkg.metadata",
  5644. ".signature.p7s",
  5645. "ThirdPartyNotices.txt",
  5646. "dotnet_library_license.txt",
  5647. "lib/MonoAndroid10/_._",
  5648. "lib/MonoTouch10/_._",
  5649. "lib/net45/_._",
  5650. "lib/net46/System.IO.Compression.dll",
  5651. "lib/portable-net45+win8+wpa81/_._",
  5652. "lib/win8/_._",
  5653. "lib/wpa81/_._",
  5654. "lib/xamarinios10/_._",
  5655. "lib/xamarinmac20/_._",
  5656. "lib/xamarintvos10/_._",
  5657. "lib/xamarinwatchos10/_._",
  5658. "ref/MonoAndroid10/_._",
  5659. "ref/MonoTouch10/_._",
  5660. "ref/net45/_._",
  5661. "ref/net46/System.IO.Compression.dll",
  5662. "ref/netcore50/System.IO.Compression.dll",
  5663. "ref/netcore50/System.IO.Compression.xml",
  5664. "ref/netcore50/de/System.IO.Compression.xml",
  5665. "ref/netcore50/es/System.IO.Compression.xml",
  5666. "ref/netcore50/fr/System.IO.Compression.xml",
  5667. "ref/netcore50/it/System.IO.Compression.xml",
  5668. "ref/netcore50/ja/System.IO.Compression.xml",
  5669. "ref/netcore50/ko/System.IO.Compression.xml",
  5670. "ref/netcore50/ru/System.IO.Compression.xml",
  5671. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5672. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5673. "ref/netstandard1.1/System.IO.Compression.dll",
  5674. "ref/netstandard1.1/System.IO.Compression.xml",
  5675. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5676. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5677. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5678. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5679. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5680. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5681. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5682. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5683. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5684. "ref/netstandard1.3/System.IO.Compression.dll",
  5685. "ref/netstandard1.3/System.IO.Compression.xml",
  5686. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5687. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5688. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5689. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5690. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5691. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5692. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5693. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5694. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5695. "ref/portable-net45+win8+wpa81/_._",
  5696. "ref/win8/_._",
  5697. "ref/wpa81/_._",
  5698. "ref/xamarinios10/_._",
  5699. "ref/xamarinmac20/_._",
  5700. "ref/xamarintvos10/_._",
  5701. "ref/xamarinwatchos10/_._",
  5702. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5703. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5704. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5705. "system.io.compression.4.3.0.nupkg.sha512",
  5706. "system.io.compression.nuspec"
  5707. ]
  5708. },
  5709. "System.IO.Compression.ZipFile/4.3.0": {
  5710. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5711. "type": "package",
  5712. "path": "system.io.compression.zipfile/4.3.0",
  5713. "files": [
  5714. ".nupkg.metadata",
  5715. ".signature.p7s",
  5716. "ThirdPartyNotices.txt",
  5717. "dotnet_library_license.txt",
  5718. "lib/MonoAndroid10/_._",
  5719. "lib/MonoTouch10/_._",
  5720. "lib/net46/System.IO.Compression.ZipFile.dll",
  5721. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5722. "lib/xamarinios10/_._",
  5723. "lib/xamarinmac20/_._",
  5724. "lib/xamarintvos10/_._",
  5725. "lib/xamarinwatchos10/_._",
  5726. "ref/MonoAndroid10/_._",
  5727. "ref/MonoTouch10/_._",
  5728. "ref/net46/System.IO.Compression.ZipFile.dll",
  5729. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5730. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5731. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5732. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5733. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5734. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5735. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5736. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5737. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5738. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5739. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5740. "ref/xamarinios10/_._",
  5741. "ref/xamarinmac20/_._",
  5742. "ref/xamarintvos10/_._",
  5743. "ref/xamarinwatchos10/_._",
  5744. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5745. "system.io.compression.zipfile.nuspec"
  5746. ]
  5747. },
  5748. "System.IO.FileSystem/4.3.0": {
  5749. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5750. "type": "package",
  5751. "path": "system.io.filesystem/4.3.0",
  5752. "files": [
  5753. ".nupkg.metadata",
  5754. ".signature.p7s",
  5755. "ThirdPartyNotices.txt",
  5756. "dotnet_library_license.txt",
  5757. "lib/MonoAndroid10/_._",
  5758. "lib/MonoTouch10/_._",
  5759. "lib/net46/System.IO.FileSystem.dll",
  5760. "lib/xamarinios10/_._",
  5761. "lib/xamarinmac20/_._",
  5762. "lib/xamarintvos10/_._",
  5763. "lib/xamarinwatchos10/_._",
  5764. "ref/MonoAndroid10/_._",
  5765. "ref/MonoTouch10/_._",
  5766. "ref/net46/System.IO.FileSystem.dll",
  5767. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5768. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5769. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5770. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5771. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5772. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5773. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5774. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5775. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5776. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5777. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5778. "ref/xamarinios10/_._",
  5779. "ref/xamarinmac20/_._",
  5780. "ref/xamarintvos10/_._",
  5781. "ref/xamarinwatchos10/_._",
  5782. "system.io.filesystem.4.3.0.nupkg.sha512",
  5783. "system.io.filesystem.nuspec"
  5784. ]
  5785. },
  5786. "System.IO.FileSystem.AccessControl/4.7.0": {
  5787. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  5788. "type": "package",
  5789. "path": "system.io.filesystem.accesscontrol/4.7.0",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "LICENSE.TXT",
  5794. "THIRD-PARTY-NOTICES.TXT",
  5795. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  5796. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  5797. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  5798. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5799. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5800. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5801. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  5802. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  5803. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  5804. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5805. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  5806. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  5807. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  5808. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  5809. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  5810. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  5811. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  5812. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  5813. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  5814. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  5815. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5816. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5817. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  5818. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  5819. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  5820. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5821. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5822. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5823. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  5824. "system.io.filesystem.accesscontrol.nuspec",
  5825. "useSharedDesignerContext.txt",
  5826. "version.txt"
  5827. ]
  5828. },
  5829. "System.IO.FileSystem.Primitives/4.3.0": {
  5830. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5831. "type": "package",
  5832. "path": "system.io.filesystem.primitives/4.3.0",
  5833. "files": [
  5834. ".nupkg.metadata",
  5835. ".signature.p7s",
  5836. "ThirdPartyNotices.txt",
  5837. "dotnet_library_license.txt",
  5838. "lib/MonoAndroid10/_._",
  5839. "lib/MonoTouch10/_._",
  5840. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5841. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5842. "lib/xamarinios10/_._",
  5843. "lib/xamarinmac20/_._",
  5844. "lib/xamarintvos10/_._",
  5845. "lib/xamarinwatchos10/_._",
  5846. "ref/MonoAndroid10/_._",
  5847. "ref/MonoTouch10/_._",
  5848. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5849. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5850. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5851. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5852. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5853. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5854. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5855. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5856. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5857. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5858. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5859. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5860. "ref/xamarinios10/_._",
  5861. "ref/xamarinmac20/_._",
  5862. "ref/xamarintvos10/_._",
  5863. "ref/xamarinwatchos10/_._",
  5864. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5865. "system.io.filesystem.primitives.nuspec"
  5866. ]
  5867. },
  5868. "System.IO.Pipelines/5.0.1": {
  5869. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  5870. "type": "package",
  5871. "path": "system.io.pipelines/5.0.1",
  5872. "files": [
  5873. ".nupkg.metadata",
  5874. ".signature.p7s",
  5875. "Icon.png",
  5876. "LICENSE.TXT",
  5877. "THIRD-PARTY-NOTICES.TXT",
  5878. "lib/net461/System.IO.Pipelines.dll",
  5879. "lib/net461/System.IO.Pipelines.xml",
  5880. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5881. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5882. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5883. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5884. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5885. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5886. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5887. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5888. "system.io.pipelines.5.0.1.nupkg.sha512",
  5889. "system.io.pipelines.nuspec",
  5890. "useSharedDesignerContext.txt",
  5891. "version.txt"
  5892. ]
  5893. },
  5894. "System.Linq/4.3.0": {
  5895. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5896. "type": "package",
  5897. "path": "system.linq/4.3.0",
  5898. "files": [
  5899. ".nupkg.metadata",
  5900. ".signature.p7s",
  5901. "ThirdPartyNotices.txt",
  5902. "dotnet_library_license.txt",
  5903. "lib/MonoAndroid10/_._",
  5904. "lib/MonoTouch10/_._",
  5905. "lib/net45/_._",
  5906. "lib/net463/System.Linq.dll",
  5907. "lib/netcore50/System.Linq.dll",
  5908. "lib/netstandard1.6/System.Linq.dll",
  5909. "lib/portable-net45+win8+wp8+wpa81/_._",
  5910. "lib/win8/_._",
  5911. "lib/wp80/_._",
  5912. "lib/wpa81/_._",
  5913. "lib/xamarinios10/_._",
  5914. "lib/xamarinmac20/_._",
  5915. "lib/xamarintvos10/_._",
  5916. "lib/xamarinwatchos10/_._",
  5917. "ref/MonoAndroid10/_._",
  5918. "ref/MonoTouch10/_._",
  5919. "ref/net45/_._",
  5920. "ref/net463/System.Linq.dll",
  5921. "ref/netcore50/System.Linq.dll",
  5922. "ref/netcore50/System.Linq.xml",
  5923. "ref/netcore50/de/System.Linq.xml",
  5924. "ref/netcore50/es/System.Linq.xml",
  5925. "ref/netcore50/fr/System.Linq.xml",
  5926. "ref/netcore50/it/System.Linq.xml",
  5927. "ref/netcore50/ja/System.Linq.xml",
  5928. "ref/netcore50/ko/System.Linq.xml",
  5929. "ref/netcore50/ru/System.Linq.xml",
  5930. "ref/netcore50/zh-hans/System.Linq.xml",
  5931. "ref/netcore50/zh-hant/System.Linq.xml",
  5932. "ref/netstandard1.0/System.Linq.dll",
  5933. "ref/netstandard1.0/System.Linq.xml",
  5934. "ref/netstandard1.0/de/System.Linq.xml",
  5935. "ref/netstandard1.0/es/System.Linq.xml",
  5936. "ref/netstandard1.0/fr/System.Linq.xml",
  5937. "ref/netstandard1.0/it/System.Linq.xml",
  5938. "ref/netstandard1.0/ja/System.Linq.xml",
  5939. "ref/netstandard1.0/ko/System.Linq.xml",
  5940. "ref/netstandard1.0/ru/System.Linq.xml",
  5941. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5942. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5943. "ref/netstandard1.6/System.Linq.dll",
  5944. "ref/netstandard1.6/System.Linq.xml",
  5945. "ref/netstandard1.6/de/System.Linq.xml",
  5946. "ref/netstandard1.6/es/System.Linq.xml",
  5947. "ref/netstandard1.6/fr/System.Linq.xml",
  5948. "ref/netstandard1.6/it/System.Linq.xml",
  5949. "ref/netstandard1.6/ja/System.Linq.xml",
  5950. "ref/netstandard1.6/ko/System.Linq.xml",
  5951. "ref/netstandard1.6/ru/System.Linq.xml",
  5952. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5953. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5954. "ref/portable-net45+win8+wp8+wpa81/_._",
  5955. "ref/win8/_._",
  5956. "ref/wp80/_._",
  5957. "ref/wpa81/_._",
  5958. "ref/xamarinios10/_._",
  5959. "ref/xamarinmac20/_._",
  5960. "ref/xamarintvos10/_._",
  5961. "ref/xamarinwatchos10/_._",
  5962. "system.linq.4.3.0.nupkg.sha512",
  5963. "system.linq.nuspec"
  5964. ]
  5965. },
  5966. "System.Linq.Expressions/4.3.0": {
  5967. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5968. "type": "package",
  5969. "path": "system.linq.expressions/4.3.0",
  5970. "files": [
  5971. ".nupkg.metadata",
  5972. ".signature.p7s",
  5973. "ThirdPartyNotices.txt",
  5974. "dotnet_library_license.txt",
  5975. "lib/MonoAndroid10/_._",
  5976. "lib/MonoTouch10/_._",
  5977. "lib/net45/_._",
  5978. "lib/net463/System.Linq.Expressions.dll",
  5979. "lib/netcore50/System.Linq.Expressions.dll",
  5980. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5981. "lib/portable-net45+win8+wp8+wpa81/_._",
  5982. "lib/win8/_._",
  5983. "lib/wp80/_._",
  5984. "lib/wpa81/_._",
  5985. "lib/xamarinios10/_._",
  5986. "lib/xamarinmac20/_._",
  5987. "lib/xamarintvos10/_._",
  5988. "lib/xamarinwatchos10/_._",
  5989. "ref/MonoAndroid10/_._",
  5990. "ref/MonoTouch10/_._",
  5991. "ref/net45/_._",
  5992. "ref/net463/System.Linq.Expressions.dll",
  5993. "ref/netcore50/System.Linq.Expressions.dll",
  5994. "ref/netcore50/System.Linq.Expressions.xml",
  5995. "ref/netcore50/de/System.Linq.Expressions.xml",
  5996. "ref/netcore50/es/System.Linq.Expressions.xml",
  5997. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5998. "ref/netcore50/it/System.Linq.Expressions.xml",
  5999. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6000. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6001. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6002. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6003. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6004. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6005. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6006. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6007. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6008. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6009. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6010. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6011. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6012. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6013. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6014. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6015. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6016. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6017. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6018. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6019. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6020. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6021. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6022. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6023. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6024. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6025. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6026. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6027. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6028. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6029. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6030. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6031. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6032. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6033. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6034. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6035. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6036. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6037. "ref/portable-net45+win8+wp8+wpa81/_._",
  6038. "ref/win8/_._",
  6039. "ref/wp80/_._",
  6040. "ref/wpa81/_._",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6046. "system.linq.expressions.4.3.0.nupkg.sha512",
  6047. "system.linq.expressions.nuspec"
  6048. ]
  6049. },
  6050. "System.Memory/4.5.4": {
  6051. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  6052. "type": "package",
  6053. "path": "system.memory/4.5.4",
  6054. "files": [
  6055. ".nupkg.metadata",
  6056. ".signature.p7s",
  6057. "LICENSE.TXT",
  6058. "THIRD-PARTY-NOTICES.TXT",
  6059. "lib/net461/System.Memory.dll",
  6060. "lib/net461/System.Memory.xml",
  6061. "lib/netcoreapp2.1/_._",
  6062. "lib/netstandard1.1/System.Memory.dll",
  6063. "lib/netstandard1.1/System.Memory.xml",
  6064. "lib/netstandard2.0/System.Memory.dll",
  6065. "lib/netstandard2.0/System.Memory.xml",
  6066. "ref/netcoreapp2.1/_._",
  6067. "system.memory.4.5.4.nupkg.sha512",
  6068. "system.memory.nuspec",
  6069. "useSharedDesignerContext.txt",
  6070. "version.txt"
  6071. ]
  6072. },
  6073. "System.Net.Http/4.3.0": {
  6074. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6075. "type": "package",
  6076. "path": "system.net.http/4.3.0",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/Xamarinmac20/_._",
  6083. "lib/monoandroid10/_._",
  6084. "lib/monotouch10/_._",
  6085. "lib/net45/_._",
  6086. "lib/net46/System.Net.Http.dll",
  6087. "lib/portable-net45+win8+wpa81/_._",
  6088. "lib/win8/_._",
  6089. "lib/wpa81/_._",
  6090. "lib/xamarinios10/_._",
  6091. "lib/xamarintvos10/_._",
  6092. "lib/xamarinwatchos10/_._",
  6093. "ref/Xamarinmac20/_._",
  6094. "ref/monoandroid10/_._",
  6095. "ref/monotouch10/_._",
  6096. "ref/net45/_._",
  6097. "ref/net46/System.Net.Http.dll",
  6098. "ref/net46/System.Net.Http.xml",
  6099. "ref/net46/de/System.Net.Http.xml",
  6100. "ref/net46/es/System.Net.Http.xml",
  6101. "ref/net46/fr/System.Net.Http.xml",
  6102. "ref/net46/it/System.Net.Http.xml",
  6103. "ref/net46/ja/System.Net.Http.xml",
  6104. "ref/net46/ko/System.Net.Http.xml",
  6105. "ref/net46/ru/System.Net.Http.xml",
  6106. "ref/net46/zh-hans/System.Net.Http.xml",
  6107. "ref/net46/zh-hant/System.Net.Http.xml",
  6108. "ref/netcore50/System.Net.Http.dll",
  6109. "ref/netcore50/System.Net.Http.xml",
  6110. "ref/netcore50/de/System.Net.Http.xml",
  6111. "ref/netcore50/es/System.Net.Http.xml",
  6112. "ref/netcore50/fr/System.Net.Http.xml",
  6113. "ref/netcore50/it/System.Net.Http.xml",
  6114. "ref/netcore50/ja/System.Net.Http.xml",
  6115. "ref/netcore50/ko/System.Net.Http.xml",
  6116. "ref/netcore50/ru/System.Net.Http.xml",
  6117. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6118. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6119. "ref/netstandard1.1/System.Net.Http.dll",
  6120. "ref/netstandard1.1/System.Net.Http.xml",
  6121. "ref/netstandard1.1/de/System.Net.Http.xml",
  6122. "ref/netstandard1.1/es/System.Net.Http.xml",
  6123. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6124. "ref/netstandard1.1/it/System.Net.Http.xml",
  6125. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6126. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6127. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6128. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6129. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6130. "ref/netstandard1.3/System.Net.Http.dll",
  6131. "ref/netstandard1.3/System.Net.Http.xml",
  6132. "ref/netstandard1.3/de/System.Net.Http.xml",
  6133. "ref/netstandard1.3/es/System.Net.Http.xml",
  6134. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6135. "ref/netstandard1.3/it/System.Net.Http.xml",
  6136. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6137. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6138. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6139. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6140. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6141. "ref/portable-net45+win8+wpa81/_._",
  6142. "ref/win8/_._",
  6143. "ref/wpa81/_._",
  6144. "ref/xamarinios10/_._",
  6145. "ref/xamarintvos10/_._",
  6146. "ref/xamarinwatchos10/_._",
  6147. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6148. "runtimes/win/lib/net46/System.Net.Http.dll",
  6149. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6150. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6151. "system.net.http.4.3.0.nupkg.sha512",
  6152. "system.net.http.nuspec"
  6153. ]
  6154. },
  6155. "System.Net.Primitives/4.3.0": {
  6156. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6157. "type": "package",
  6158. "path": "system.net.primitives/4.3.0",
  6159. "files": [
  6160. ".nupkg.metadata",
  6161. ".signature.p7s",
  6162. "ThirdPartyNotices.txt",
  6163. "dotnet_library_license.txt",
  6164. "lib/MonoAndroid10/_._",
  6165. "lib/MonoTouch10/_._",
  6166. "lib/net45/_._",
  6167. "lib/portable-net45+win8+wp8+wpa81/_._",
  6168. "lib/win8/_._",
  6169. "lib/wp80/_._",
  6170. "lib/wpa81/_._",
  6171. "lib/xamarinios10/_._",
  6172. "lib/xamarinmac20/_._",
  6173. "lib/xamarintvos10/_._",
  6174. "lib/xamarinwatchos10/_._",
  6175. "ref/MonoAndroid10/_._",
  6176. "ref/MonoTouch10/_._",
  6177. "ref/net45/_._",
  6178. "ref/netcore50/System.Net.Primitives.dll",
  6179. "ref/netcore50/System.Net.Primitives.xml",
  6180. "ref/netcore50/de/System.Net.Primitives.xml",
  6181. "ref/netcore50/es/System.Net.Primitives.xml",
  6182. "ref/netcore50/fr/System.Net.Primitives.xml",
  6183. "ref/netcore50/it/System.Net.Primitives.xml",
  6184. "ref/netcore50/ja/System.Net.Primitives.xml",
  6185. "ref/netcore50/ko/System.Net.Primitives.xml",
  6186. "ref/netcore50/ru/System.Net.Primitives.xml",
  6187. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6188. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6189. "ref/netstandard1.0/System.Net.Primitives.dll",
  6190. "ref/netstandard1.0/System.Net.Primitives.xml",
  6191. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6192. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6193. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6194. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6195. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6196. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6197. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6198. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6199. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6200. "ref/netstandard1.1/System.Net.Primitives.dll",
  6201. "ref/netstandard1.1/System.Net.Primitives.xml",
  6202. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6203. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6204. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6205. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6206. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6207. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6208. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6209. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6210. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6211. "ref/netstandard1.3/System.Net.Primitives.dll",
  6212. "ref/netstandard1.3/System.Net.Primitives.xml",
  6213. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6214. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6215. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6216. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6217. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6218. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6219. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6220. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6221. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6222. "ref/portable-net45+win8+wp8+wpa81/_._",
  6223. "ref/win8/_._",
  6224. "ref/wp80/_._",
  6225. "ref/wpa81/_._",
  6226. "ref/xamarinios10/_._",
  6227. "ref/xamarinmac20/_._",
  6228. "ref/xamarintvos10/_._",
  6229. "ref/xamarinwatchos10/_._",
  6230. "system.net.primitives.4.3.0.nupkg.sha512",
  6231. "system.net.primitives.nuspec"
  6232. ]
  6233. },
  6234. "System.Net.Sockets/4.3.0": {
  6235. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6236. "type": "package",
  6237. "path": "system.net.sockets/4.3.0",
  6238. "files": [
  6239. ".nupkg.metadata",
  6240. ".signature.p7s",
  6241. "ThirdPartyNotices.txt",
  6242. "dotnet_library_license.txt",
  6243. "lib/MonoAndroid10/_._",
  6244. "lib/MonoTouch10/_._",
  6245. "lib/net46/System.Net.Sockets.dll",
  6246. "lib/xamarinios10/_._",
  6247. "lib/xamarinmac20/_._",
  6248. "lib/xamarintvos10/_._",
  6249. "lib/xamarinwatchos10/_._",
  6250. "ref/MonoAndroid10/_._",
  6251. "ref/MonoTouch10/_._",
  6252. "ref/net46/System.Net.Sockets.dll",
  6253. "ref/netstandard1.3/System.Net.Sockets.dll",
  6254. "ref/netstandard1.3/System.Net.Sockets.xml",
  6255. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6256. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6257. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6258. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6259. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6260. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6261. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6262. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6263. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6264. "ref/xamarinios10/_._",
  6265. "ref/xamarinmac20/_._",
  6266. "ref/xamarintvos10/_._",
  6267. "ref/xamarinwatchos10/_._",
  6268. "system.net.sockets.4.3.0.nupkg.sha512",
  6269. "system.net.sockets.nuspec"
  6270. ]
  6271. },
  6272. "System.ObjectModel/4.3.0": {
  6273. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6274. "type": "package",
  6275. "path": "system.objectmodel/4.3.0",
  6276. "files": [
  6277. ".nupkg.metadata",
  6278. ".signature.p7s",
  6279. "ThirdPartyNotices.txt",
  6280. "dotnet_library_license.txt",
  6281. "lib/MonoAndroid10/_._",
  6282. "lib/MonoTouch10/_._",
  6283. "lib/net45/_._",
  6284. "lib/netcore50/System.ObjectModel.dll",
  6285. "lib/netstandard1.3/System.ObjectModel.dll",
  6286. "lib/portable-net45+win8+wp8+wpa81/_._",
  6287. "lib/win8/_._",
  6288. "lib/wp80/_._",
  6289. "lib/wpa81/_._",
  6290. "lib/xamarinios10/_._",
  6291. "lib/xamarinmac20/_._",
  6292. "lib/xamarintvos10/_._",
  6293. "lib/xamarinwatchos10/_._",
  6294. "ref/MonoAndroid10/_._",
  6295. "ref/MonoTouch10/_._",
  6296. "ref/net45/_._",
  6297. "ref/netcore50/System.ObjectModel.dll",
  6298. "ref/netcore50/System.ObjectModel.xml",
  6299. "ref/netcore50/de/System.ObjectModel.xml",
  6300. "ref/netcore50/es/System.ObjectModel.xml",
  6301. "ref/netcore50/fr/System.ObjectModel.xml",
  6302. "ref/netcore50/it/System.ObjectModel.xml",
  6303. "ref/netcore50/ja/System.ObjectModel.xml",
  6304. "ref/netcore50/ko/System.ObjectModel.xml",
  6305. "ref/netcore50/ru/System.ObjectModel.xml",
  6306. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6307. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6308. "ref/netstandard1.0/System.ObjectModel.dll",
  6309. "ref/netstandard1.0/System.ObjectModel.xml",
  6310. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6311. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6312. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6313. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6314. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6315. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6316. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6317. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6318. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6319. "ref/netstandard1.3/System.ObjectModel.dll",
  6320. "ref/netstandard1.3/System.ObjectModel.xml",
  6321. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6322. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6323. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6324. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6325. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6326. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6327. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6328. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6329. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6330. "ref/portable-net45+win8+wp8+wpa81/_._",
  6331. "ref/win8/_._",
  6332. "ref/wp80/_._",
  6333. "ref/wpa81/_._",
  6334. "ref/xamarinios10/_._",
  6335. "ref/xamarinmac20/_._",
  6336. "ref/xamarintvos10/_._",
  6337. "ref/xamarinwatchos10/_._",
  6338. "system.objectmodel.4.3.0.nupkg.sha512",
  6339. "system.objectmodel.nuspec"
  6340. ]
  6341. },
  6342. "System.Reflection/4.3.0": {
  6343. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6344. "type": "package",
  6345. "path": "system.reflection/4.3.0",
  6346. "files": [
  6347. ".nupkg.metadata",
  6348. ".signature.p7s",
  6349. "ThirdPartyNotices.txt",
  6350. "dotnet_library_license.txt",
  6351. "lib/MonoAndroid10/_._",
  6352. "lib/MonoTouch10/_._",
  6353. "lib/net45/_._",
  6354. "lib/net462/System.Reflection.dll",
  6355. "lib/portable-net45+win8+wp8+wpa81/_._",
  6356. "lib/win8/_._",
  6357. "lib/wp80/_._",
  6358. "lib/wpa81/_._",
  6359. "lib/xamarinios10/_._",
  6360. "lib/xamarinmac20/_._",
  6361. "lib/xamarintvos10/_._",
  6362. "lib/xamarinwatchos10/_._",
  6363. "ref/MonoAndroid10/_._",
  6364. "ref/MonoTouch10/_._",
  6365. "ref/net45/_._",
  6366. "ref/net462/System.Reflection.dll",
  6367. "ref/netcore50/System.Reflection.dll",
  6368. "ref/netcore50/System.Reflection.xml",
  6369. "ref/netcore50/de/System.Reflection.xml",
  6370. "ref/netcore50/es/System.Reflection.xml",
  6371. "ref/netcore50/fr/System.Reflection.xml",
  6372. "ref/netcore50/it/System.Reflection.xml",
  6373. "ref/netcore50/ja/System.Reflection.xml",
  6374. "ref/netcore50/ko/System.Reflection.xml",
  6375. "ref/netcore50/ru/System.Reflection.xml",
  6376. "ref/netcore50/zh-hans/System.Reflection.xml",
  6377. "ref/netcore50/zh-hant/System.Reflection.xml",
  6378. "ref/netstandard1.0/System.Reflection.dll",
  6379. "ref/netstandard1.0/System.Reflection.xml",
  6380. "ref/netstandard1.0/de/System.Reflection.xml",
  6381. "ref/netstandard1.0/es/System.Reflection.xml",
  6382. "ref/netstandard1.0/fr/System.Reflection.xml",
  6383. "ref/netstandard1.0/it/System.Reflection.xml",
  6384. "ref/netstandard1.0/ja/System.Reflection.xml",
  6385. "ref/netstandard1.0/ko/System.Reflection.xml",
  6386. "ref/netstandard1.0/ru/System.Reflection.xml",
  6387. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6388. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6389. "ref/netstandard1.3/System.Reflection.dll",
  6390. "ref/netstandard1.3/System.Reflection.xml",
  6391. "ref/netstandard1.3/de/System.Reflection.xml",
  6392. "ref/netstandard1.3/es/System.Reflection.xml",
  6393. "ref/netstandard1.3/fr/System.Reflection.xml",
  6394. "ref/netstandard1.3/it/System.Reflection.xml",
  6395. "ref/netstandard1.3/ja/System.Reflection.xml",
  6396. "ref/netstandard1.3/ko/System.Reflection.xml",
  6397. "ref/netstandard1.3/ru/System.Reflection.xml",
  6398. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6399. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6400. "ref/netstandard1.5/System.Reflection.dll",
  6401. "ref/netstandard1.5/System.Reflection.xml",
  6402. "ref/netstandard1.5/de/System.Reflection.xml",
  6403. "ref/netstandard1.5/es/System.Reflection.xml",
  6404. "ref/netstandard1.5/fr/System.Reflection.xml",
  6405. "ref/netstandard1.5/it/System.Reflection.xml",
  6406. "ref/netstandard1.5/ja/System.Reflection.xml",
  6407. "ref/netstandard1.5/ko/System.Reflection.xml",
  6408. "ref/netstandard1.5/ru/System.Reflection.xml",
  6409. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6410. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6411. "ref/portable-net45+win8+wp8+wpa81/_._",
  6412. "ref/win8/_._",
  6413. "ref/wp80/_._",
  6414. "ref/wpa81/_._",
  6415. "ref/xamarinios10/_._",
  6416. "ref/xamarinmac20/_._",
  6417. "ref/xamarintvos10/_._",
  6418. "ref/xamarinwatchos10/_._",
  6419. "system.reflection.4.3.0.nupkg.sha512",
  6420. "system.reflection.nuspec"
  6421. ]
  6422. },
  6423. "System.Reflection.Emit/4.3.0": {
  6424. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6425. "type": "package",
  6426. "path": "system.reflection.emit/4.3.0",
  6427. "files": [
  6428. ".nupkg.metadata",
  6429. ".signature.p7s",
  6430. "ThirdPartyNotices.txt",
  6431. "dotnet_library_license.txt",
  6432. "lib/MonoAndroid10/_._",
  6433. "lib/monotouch10/_._",
  6434. "lib/net45/_._",
  6435. "lib/netcore50/System.Reflection.Emit.dll",
  6436. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6437. "lib/xamarinios10/_._",
  6438. "lib/xamarinmac20/_._",
  6439. "lib/xamarintvos10/_._",
  6440. "lib/xamarinwatchos10/_._",
  6441. "ref/MonoAndroid10/_._",
  6442. "ref/net45/_._",
  6443. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6444. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6445. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6446. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6447. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6448. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6449. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6450. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6451. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6452. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6453. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6454. "ref/xamarinmac20/_._",
  6455. "system.reflection.emit.4.3.0.nupkg.sha512",
  6456. "system.reflection.emit.nuspec"
  6457. ]
  6458. },
  6459. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6460. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6461. "type": "package",
  6462. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6463. "files": [
  6464. ".nupkg.metadata",
  6465. ".signature.p7s",
  6466. "ThirdPartyNotices.txt",
  6467. "dotnet_library_license.txt",
  6468. "lib/MonoAndroid10/_._",
  6469. "lib/MonoTouch10/_._",
  6470. "lib/net45/_._",
  6471. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6472. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6473. "lib/portable-net45+wp8/_._",
  6474. "lib/wp80/_._",
  6475. "lib/xamarinios10/_._",
  6476. "lib/xamarinmac20/_._",
  6477. "lib/xamarintvos10/_._",
  6478. "lib/xamarinwatchos10/_._",
  6479. "ref/MonoAndroid10/_._",
  6480. "ref/MonoTouch10/_._",
  6481. "ref/net45/_._",
  6482. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6483. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6484. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6485. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6486. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6487. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6488. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6489. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6490. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6491. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6492. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6493. "ref/portable-net45+wp8/_._",
  6494. "ref/wp80/_._",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "runtimes/aot/lib/netcore50/_._",
  6500. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6501. "system.reflection.emit.ilgeneration.nuspec"
  6502. ]
  6503. },
  6504. "System.Reflection.Emit.Lightweight/4.3.0": {
  6505. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6506. "type": "package",
  6507. "path": "system.reflection.emit.lightweight/4.3.0",
  6508. "files": [
  6509. ".nupkg.metadata",
  6510. ".signature.p7s",
  6511. "ThirdPartyNotices.txt",
  6512. "dotnet_library_license.txt",
  6513. "lib/MonoAndroid10/_._",
  6514. "lib/MonoTouch10/_._",
  6515. "lib/net45/_._",
  6516. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6517. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6518. "lib/portable-net45+wp8/_._",
  6519. "lib/wp80/_._",
  6520. "lib/xamarinios10/_._",
  6521. "lib/xamarinmac20/_._",
  6522. "lib/xamarintvos10/_._",
  6523. "lib/xamarinwatchos10/_._",
  6524. "ref/MonoAndroid10/_._",
  6525. "ref/MonoTouch10/_._",
  6526. "ref/net45/_._",
  6527. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6528. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6529. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6530. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6531. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6532. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6533. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6534. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6535. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6536. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6537. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6538. "ref/portable-net45+wp8/_._",
  6539. "ref/wp80/_._",
  6540. "ref/xamarinios10/_._",
  6541. "ref/xamarinmac20/_._",
  6542. "ref/xamarintvos10/_._",
  6543. "ref/xamarinwatchos10/_._",
  6544. "runtimes/aot/lib/netcore50/_._",
  6545. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6546. "system.reflection.emit.lightweight.nuspec"
  6547. ]
  6548. },
  6549. "System.Reflection.Extensions/4.3.0": {
  6550. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6551. "type": "package",
  6552. "path": "system.reflection.extensions/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/portable-net45+win8+wp8+wpa81/_._",
  6562. "lib/win8/_._",
  6563. "lib/wp80/_._",
  6564. "lib/wpa81/_._",
  6565. "lib/xamarinios10/_._",
  6566. "lib/xamarinmac20/_._",
  6567. "lib/xamarintvos10/_._",
  6568. "lib/xamarinwatchos10/_._",
  6569. "ref/MonoAndroid10/_._",
  6570. "ref/MonoTouch10/_._",
  6571. "ref/net45/_._",
  6572. "ref/netcore50/System.Reflection.Extensions.dll",
  6573. "ref/netcore50/System.Reflection.Extensions.xml",
  6574. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6575. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6576. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6577. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6578. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6579. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6580. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6581. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6582. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6583. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6584. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6585. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6586. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6587. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6588. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6589. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6590. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6591. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6592. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6593. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6594. "ref/portable-net45+win8+wp8+wpa81/_._",
  6595. "ref/win8/_._",
  6596. "ref/wp80/_._",
  6597. "ref/wpa81/_._",
  6598. "ref/xamarinios10/_._",
  6599. "ref/xamarinmac20/_._",
  6600. "ref/xamarintvos10/_._",
  6601. "ref/xamarinwatchos10/_._",
  6602. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6603. "system.reflection.extensions.nuspec"
  6604. ]
  6605. },
  6606. "System.Reflection.Primitives/4.3.0": {
  6607. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6608. "type": "package",
  6609. "path": "system.reflection.primitives/4.3.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "ThirdPartyNotices.txt",
  6614. "dotnet_library_license.txt",
  6615. "lib/MonoAndroid10/_._",
  6616. "lib/MonoTouch10/_._",
  6617. "lib/net45/_._",
  6618. "lib/portable-net45+win8+wp8+wpa81/_._",
  6619. "lib/win8/_._",
  6620. "lib/wp80/_._",
  6621. "lib/wpa81/_._",
  6622. "lib/xamarinios10/_._",
  6623. "lib/xamarinmac20/_._",
  6624. "lib/xamarintvos10/_._",
  6625. "lib/xamarinwatchos10/_._",
  6626. "ref/MonoAndroid10/_._",
  6627. "ref/MonoTouch10/_._",
  6628. "ref/net45/_._",
  6629. "ref/netcore50/System.Reflection.Primitives.dll",
  6630. "ref/netcore50/System.Reflection.Primitives.xml",
  6631. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6632. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6633. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6634. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6635. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6636. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6637. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6638. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6639. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6640. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6641. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6642. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6643. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6644. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6645. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6646. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6647. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6648. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6649. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6650. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6651. "ref/portable-net45+win8+wp8+wpa81/_._",
  6652. "ref/win8/_._",
  6653. "ref/wp80/_._",
  6654. "ref/wpa81/_._",
  6655. "ref/xamarinios10/_._",
  6656. "ref/xamarinmac20/_._",
  6657. "ref/xamarintvos10/_._",
  6658. "ref/xamarinwatchos10/_._",
  6659. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6660. "system.reflection.primitives.nuspec"
  6661. ]
  6662. },
  6663. "System.Reflection.TypeExtensions/4.3.0": {
  6664. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6665. "type": "package",
  6666. "path": "system.reflection.typeextensions/4.3.0",
  6667. "files": [
  6668. ".nupkg.metadata",
  6669. ".signature.p7s",
  6670. "ThirdPartyNotices.txt",
  6671. "dotnet_library_license.txt",
  6672. "lib/MonoAndroid10/_._",
  6673. "lib/MonoTouch10/_._",
  6674. "lib/net46/System.Reflection.TypeExtensions.dll",
  6675. "lib/net462/System.Reflection.TypeExtensions.dll",
  6676. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6677. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6678. "lib/xamarinios10/_._",
  6679. "lib/xamarinmac20/_._",
  6680. "lib/xamarintvos10/_._",
  6681. "lib/xamarinwatchos10/_._",
  6682. "ref/MonoAndroid10/_._",
  6683. "ref/MonoTouch10/_._",
  6684. "ref/net46/System.Reflection.TypeExtensions.dll",
  6685. "ref/net462/System.Reflection.TypeExtensions.dll",
  6686. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6687. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6688. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6689. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6690. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6691. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6692. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6693. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6694. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6695. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6696. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6697. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6698. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6699. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6700. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6701. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6702. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6703. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6704. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6705. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6706. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6707. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6708. "ref/xamarinios10/_._",
  6709. "ref/xamarinmac20/_._",
  6710. "ref/xamarintvos10/_._",
  6711. "ref/xamarinwatchos10/_._",
  6712. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6713. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6714. "system.reflection.typeextensions.nuspec"
  6715. ]
  6716. },
  6717. "System.Resources.ResourceManager/4.3.0": {
  6718. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6719. "type": "package",
  6720. "path": "system.resources.resourcemanager/4.3.0",
  6721. "files": [
  6722. ".nupkg.metadata",
  6723. ".signature.p7s",
  6724. "ThirdPartyNotices.txt",
  6725. "dotnet_library_license.txt",
  6726. "lib/MonoAndroid10/_._",
  6727. "lib/MonoTouch10/_._",
  6728. "lib/net45/_._",
  6729. "lib/portable-net45+win8+wp8+wpa81/_._",
  6730. "lib/win8/_._",
  6731. "lib/wp80/_._",
  6732. "lib/wpa81/_._",
  6733. "lib/xamarinios10/_._",
  6734. "lib/xamarinmac20/_._",
  6735. "lib/xamarintvos10/_._",
  6736. "lib/xamarinwatchos10/_._",
  6737. "ref/MonoAndroid10/_._",
  6738. "ref/MonoTouch10/_._",
  6739. "ref/net45/_._",
  6740. "ref/netcore50/System.Resources.ResourceManager.dll",
  6741. "ref/netcore50/System.Resources.ResourceManager.xml",
  6742. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6743. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6744. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6745. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6746. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6747. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6748. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6749. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6750. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6751. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6752. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6753. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6754. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6755. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6756. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6757. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6758. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6759. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6760. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6761. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6762. "ref/portable-net45+win8+wp8+wpa81/_._",
  6763. "ref/win8/_._",
  6764. "ref/wp80/_._",
  6765. "ref/wpa81/_._",
  6766. "ref/xamarinios10/_._",
  6767. "ref/xamarinmac20/_._",
  6768. "ref/xamarintvos10/_._",
  6769. "ref/xamarinwatchos10/_._",
  6770. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6771. "system.resources.resourcemanager.nuspec"
  6772. ]
  6773. },
  6774. "System.Runtime/4.3.0": {
  6775. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6776. "type": "package",
  6777. "path": "system.runtime/4.3.0",
  6778. "files": [
  6779. ".nupkg.metadata",
  6780. ".signature.p7s",
  6781. "ThirdPartyNotices.txt",
  6782. "dotnet_library_license.txt",
  6783. "lib/MonoAndroid10/_._",
  6784. "lib/MonoTouch10/_._",
  6785. "lib/net45/_._",
  6786. "lib/net462/System.Runtime.dll",
  6787. "lib/portable-net45+win8+wp80+wpa81/_._",
  6788. "lib/win8/_._",
  6789. "lib/wp80/_._",
  6790. "lib/wpa81/_._",
  6791. "lib/xamarinios10/_._",
  6792. "lib/xamarinmac20/_._",
  6793. "lib/xamarintvos10/_._",
  6794. "lib/xamarinwatchos10/_._",
  6795. "ref/MonoAndroid10/_._",
  6796. "ref/MonoTouch10/_._",
  6797. "ref/net45/_._",
  6798. "ref/net462/System.Runtime.dll",
  6799. "ref/netcore50/System.Runtime.dll",
  6800. "ref/netcore50/System.Runtime.xml",
  6801. "ref/netcore50/de/System.Runtime.xml",
  6802. "ref/netcore50/es/System.Runtime.xml",
  6803. "ref/netcore50/fr/System.Runtime.xml",
  6804. "ref/netcore50/it/System.Runtime.xml",
  6805. "ref/netcore50/ja/System.Runtime.xml",
  6806. "ref/netcore50/ko/System.Runtime.xml",
  6807. "ref/netcore50/ru/System.Runtime.xml",
  6808. "ref/netcore50/zh-hans/System.Runtime.xml",
  6809. "ref/netcore50/zh-hant/System.Runtime.xml",
  6810. "ref/netstandard1.0/System.Runtime.dll",
  6811. "ref/netstandard1.0/System.Runtime.xml",
  6812. "ref/netstandard1.0/de/System.Runtime.xml",
  6813. "ref/netstandard1.0/es/System.Runtime.xml",
  6814. "ref/netstandard1.0/fr/System.Runtime.xml",
  6815. "ref/netstandard1.0/it/System.Runtime.xml",
  6816. "ref/netstandard1.0/ja/System.Runtime.xml",
  6817. "ref/netstandard1.0/ko/System.Runtime.xml",
  6818. "ref/netstandard1.0/ru/System.Runtime.xml",
  6819. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6820. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6821. "ref/netstandard1.2/System.Runtime.dll",
  6822. "ref/netstandard1.2/System.Runtime.xml",
  6823. "ref/netstandard1.2/de/System.Runtime.xml",
  6824. "ref/netstandard1.2/es/System.Runtime.xml",
  6825. "ref/netstandard1.2/fr/System.Runtime.xml",
  6826. "ref/netstandard1.2/it/System.Runtime.xml",
  6827. "ref/netstandard1.2/ja/System.Runtime.xml",
  6828. "ref/netstandard1.2/ko/System.Runtime.xml",
  6829. "ref/netstandard1.2/ru/System.Runtime.xml",
  6830. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6831. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6832. "ref/netstandard1.3/System.Runtime.dll",
  6833. "ref/netstandard1.3/System.Runtime.xml",
  6834. "ref/netstandard1.3/de/System.Runtime.xml",
  6835. "ref/netstandard1.3/es/System.Runtime.xml",
  6836. "ref/netstandard1.3/fr/System.Runtime.xml",
  6837. "ref/netstandard1.3/it/System.Runtime.xml",
  6838. "ref/netstandard1.3/ja/System.Runtime.xml",
  6839. "ref/netstandard1.3/ko/System.Runtime.xml",
  6840. "ref/netstandard1.3/ru/System.Runtime.xml",
  6841. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6842. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6843. "ref/netstandard1.5/System.Runtime.dll",
  6844. "ref/netstandard1.5/System.Runtime.xml",
  6845. "ref/netstandard1.5/de/System.Runtime.xml",
  6846. "ref/netstandard1.5/es/System.Runtime.xml",
  6847. "ref/netstandard1.5/fr/System.Runtime.xml",
  6848. "ref/netstandard1.5/it/System.Runtime.xml",
  6849. "ref/netstandard1.5/ja/System.Runtime.xml",
  6850. "ref/netstandard1.5/ko/System.Runtime.xml",
  6851. "ref/netstandard1.5/ru/System.Runtime.xml",
  6852. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6853. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6854. "ref/portable-net45+win8+wp80+wpa81/_._",
  6855. "ref/win8/_._",
  6856. "ref/wp80/_._",
  6857. "ref/wpa81/_._",
  6858. "ref/xamarinios10/_._",
  6859. "ref/xamarinmac20/_._",
  6860. "ref/xamarintvos10/_._",
  6861. "ref/xamarinwatchos10/_._",
  6862. "system.runtime.4.3.0.nupkg.sha512",
  6863. "system.runtime.nuspec"
  6864. ]
  6865. },
  6866. "System.Runtime.Caching/4.7.0": {
  6867. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6868. "type": "package",
  6869. "path": "system.runtime.caching/4.7.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. ".signature.p7s",
  6873. "LICENSE.TXT",
  6874. "THIRD-PARTY-NOTICES.TXT",
  6875. "lib/MonoAndroid10/_._",
  6876. "lib/MonoTouch10/_._",
  6877. "lib/net45/_._",
  6878. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6879. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6880. "lib/xamarinios10/_._",
  6881. "lib/xamarinmac20/_._",
  6882. "lib/xamarintvos10/_._",
  6883. "lib/xamarinwatchos10/_._",
  6884. "ref/MonoAndroid10/_._",
  6885. "ref/MonoTouch10/_._",
  6886. "ref/net45/_._",
  6887. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6888. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6889. "ref/xamarinios10/_._",
  6890. "ref/xamarinmac20/_._",
  6891. "ref/xamarintvos10/_._",
  6892. "ref/xamarinwatchos10/_._",
  6893. "runtimes/win/lib/net45/_._",
  6894. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6895. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6896. "system.runtime.caching.4.7.0.nupkg.sha512",
  6897. "system.runtime.caching.nuspec",
  6898. "useSharedDesignerContext.txt",
  6899. "version.txt"
  6900. ]
  6901. },
  6902. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6903. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6904. "type": "package",
  6905. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6906. "files": [
  6907. ".nupkg.metadata",
  6908. ".signature.p7s",
  6909. "Icon.png",
  6910. "LICENSE.TXT",
  6911. "THIRD-PARTY-NOTICES.TXT",
  6912. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6913. "buildTransitive/netcoreapp3.1/_._",
  6914. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6915. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6916. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6917. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6918. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6919. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6920. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6921. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6922. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6923. "system.runtime.compilerservices.unsafe.nuspec",
  6924. "useSharedDesignerContext.txt"
  6925. ]
  6926. },
  6927. "System.Runtime.Extensions/4.3.0": {
  6928. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6929. "type": "package",
  6930. "path": "system.runtime.extensions/4.3.0",
  6931. "files": [
  6932. ".nupkg.metadata",
  6933. ".signature.p7s",
  6934. "ThirdPartyNotices.txt",
  6935. "dotnet_library_license.txt",
  6936. "lib/MonoAndroid10/_._",
  6937. "lib/MonoTouch10/_._",
  6938. "lib/net45/_._",
  6939. "lib/net462/System.Runtime.Extensions.dll",
  6940. "lib/portable-net45+win8+wp8+wpa81/_._",
  6941. "lib/win8/_._",
  6942. "lib/wp80/_._",
  6943. "lib/wpa81/_._",
  6944. "lib/xamarinios10/_._",
  6945. "lib/xamarinmac20/_._",
  6946. "lib/xamarintvos10/_._",
  6947. "lib/xamarinwatchos10/_._",
  6948. "ref/MonoAndroid10/_._",
  6949. "ref/MonoTouch10/_._",
  6950. "ref/net45/_._",
  6951. "ref/net462/System.Runtime.Extensions.dll",
  6952. "ref/netcore50/System.Runtime.Extensions.dll",
  6953. "ref/netcore50/System.Runtime.Extensions.xml",
  6954. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6955. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6956. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6957. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6958. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6959. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6960. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6961. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6962. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6963. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6964. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6965. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6966. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6967. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6968. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6969. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6970. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6971. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6972. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6973. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6974. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6975. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6976. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6977. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6978. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6979. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6980. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6981. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6982. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6983. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6984. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6985. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6986. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6987. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6988. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6989. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6990. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6991. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6992. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6993. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6994. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6995. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6996. "ref/portable-net45+win8+wp8+wpa81/_._",
  6997. "ref/win8/_._",
  6998. "ref/wp80/_._",
  6999. "ref/wpa81/_._",
  7000. "ref/xamarinios10/_._",
  7001. "ref/xamarinmac20/_._",
  7002. "ref/xamarintvos10/_._",
  7003. "ref/xamarinwatchos10/_._",
  7004. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7005. "system.runtime.extensions.nuspec"
  7006. ]
  7007. },
  7008. "System.Runtime.Handles/4.3.0": {
  7009. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7010. "type": "package",
  7011. "path": "system.runtime.handles/4.3.0",
  7012. "files": [
  7013. ".nupkg.metadata",
  7014. ".signature.p7s",
  7015. "ThirdPartyNotices.txt",
  7016. "dotnet_library_license.txt",
  7017. "lib/MonoAndroid10/_._",
  7018. "lib/MonoTouch10/_._",
  7019. "lib/net46/_._",
  7020. "lib/xamarinios10/_._",
  7021. "lib/xamarinmac20/_._",
  7022. "lib/xamarintvos10/_._",
  7023. "lib/xamarinwatchos10/_._",
  7024. "ref/MonoAndroid10/_._",
  7025. "ref/MonoTouch10/_._",
  7026. "ref/net46/_._",
  7027. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7028. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7029. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7030. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7031. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7032. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7033. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7034. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7035. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7036. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7037. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7038. "ref/xamarinios10/_._",
  7039. "ref/xamarinmac20/_._",
  7040. "ref/xamarintvos10/_._",
  7041. "ref/xamarinwatchos10/_._",
  7042. "system.runtime.handles.4.3.0.nupkg.sha512",
  7043. "system.runtime.handles.nuspec"
  7044. ]
  7045. },
  7046. "System.Runtime.InteropServices/4.3.0": {
  7047. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7048. "type": "package",
  7049. "path": "system.runtime.interopservices/4.3.0",
  7050. "files": [
  7051. ".nupkg.metadata",
  7052. ".signature.p7s",
  7053. "ThirdPartyNotices.txt",
  7054. "dotnet_library_license.txt",
  7055. "lib/MonoAndroid10/_._",
  7056. "lib/MonoTouch10/_._",
  7057. "lib/net45/_._",
  7058. "lib/net462/System.Runtime.InteropServices.dll",
  7059. "lib/net463/System.Runtime.InteropServices.dll",
  7060. "lib/portable-net45+win8+wpa81/_._",
  7061. "lib/win8/_._",
  7062. "lib/wpa81/_._",
  7063. "lib/xamarinios10/_._",
  7064. "lib/xamarinmac20/_._",
  7065. "lib/xamarintvos10/_._",
  7066. "lib/xamarinwatchos10/_._",
  7067. "ref/MonoAndroid10/_._",
  7068. "ref/MonoTouch10/_._",
  7069. "ref/net45/_._",
  7070. "ref/net462/System.Runtime.InteropServices.dll",
  7071. "ref/net463/System.Runtime.InteropServices.dll",
  7072. "ref/netcore50/System.Runtime.InteropServices.dll",
  7073. "ref/netcore50/System.Runtime.InteropServices.xml",
  7074. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7075. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7076. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7077. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7078. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7079. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7080. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7081. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7082. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7083. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7084. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7085. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7086. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7087. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7088. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7089. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7090. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7091. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7092. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7093. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7094. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7095. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7096. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7097. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7098. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7099. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7100. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7101. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7102. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7103. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7104. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7105. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7106. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7107. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7108. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7109. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7110. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7111. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7112. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7113. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7114. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7115. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7116. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7117. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7118. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7119. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7120. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7121. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7122. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7123. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7124. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7125. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7126. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7127. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7128. "ref/portable-net45+win8+wpa81/_._",
  7129. "ref/win8/_._",
  7130. "ref/wpa81/_._",
  7131. "ref/xamarinios10/_._",
  7132. "ref/xamarinmac20/_._",
  7133. "ref/xamarintvos10/_._",
  7134. "ref/xamarinwatchos10/_._",
  7135. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7136. "system.runtime.interopservices.nuspec"
  7137. ]
  7138. },
  7139. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7140. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7141. "type": "package",
  7142. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7143. "files": [
  7144. ".nupkg.metadata",
  7145. ".signature.p7s",
  7146. "ThirdPartyNotices.txt",
  7147. "dotnet_library_license.txt",
  7148. "lib/MonoAndroid10/_._",
  7149. "lib/MonoTouch10/_._",
  7150. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7151. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7152. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7153. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7154. "lib/xamarinios10/_._",
  7155. "lib/xamarinmac20/_._",
  7156. "lib/xamarintvos10/_._",
  7157. "lib/xamarinwatchos10/_._",
  7158. "ref/MonoAndroid10/_._",
  7159. "ref/MonoTouch10/_._",
  7160. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7161. "ref/xamarinios10/_._",
  7162. "ref/xamarinmac20/_._",
  7163. "ref/xamarintvos10/_._",
  7164. "ref/xamarinwatchos10/_._",
  7165. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7166. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7167. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7168. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7169. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7170. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7171. "system.runtime.interopservices.runtimeinformation.nuspec"
  7172. ]
  7173. },
  7174. "System.Runtime.Numerics/4.3.0": {
  7175. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7176. "type": "package",
  7177. "path": "system.runtime.numerics/4.3.0",
  7178. "files": [
  7179. ".nupkg.metadata",
  7180. ".signature.p7s",
  7181. "ThirdPartyNotices.txt",
  7182. "dotnet_library_license.txt",
  7183. "lib/MonoAndroid10/_._",
  7184. "lib/MonoTouch10/_._",
  7185. "lib/net45/_._",
  7186. "lib/netcore50/System.Runtime.Numerics.dll",
  7187. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7188. "lib/portable-net45+win8+wpa81/_._",
  7189. "lib/win8/_._",
  7190. "lib/wpa81/_._",
  7191. "lib/xamarinios10/_._",
  7192. "lib/xamarinmac20/_._",
  7193. "lib/xamarintvos10/_._",
  7194. "lib/xamarinwatchos10/_._",
  7195. "ref/MonoAndroid10/_._",
  7196. "ref/MonoTouch10/_._",
  7197. "ref/net45/_._",
  7198. "ref/netcore50/System.Runtime.Numerics.dll",
  7199. "ref/netcore50/System.Runtime.Numerics.xml",
  7200. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7201. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7202. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7203. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7204. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7205. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7206. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7207. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7208. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7209. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7210. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7211. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7212. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7213. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7214. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7215. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7216. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7217. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7218. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7219. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7220. "ref/portable-net45+win8+wpa81/_._",
  7221. "ref/win8/_._",
  7222. "ref/wpa81/_._",
  7223. "ref/xamarinios10/_._",
  7224. "ref/xamarinmac20/_._",
  7225. "ref/xamarintvos10/_._",
  7226. "ref/xamarinwatchos10/_._",
  7227. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7228. "system.runtime.numerics.nuspec"
  7229. ]
  7230. },
  7231. "System.Security.AccessControl/4.7.0": {
  7232. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7233. "type": "package",
  7234. "path": "system.security.accesscontrol/4.7.0",
  7235. "files": [
  7236. ".nupkg.metadata",
  7237. ".signature.p7s",
  7238. "LICENSE.TXT",
  7239. "THIRD-PARTY-NOTICES.TXT",
  7240. "lib/net46/System.Security.AccessControl.dll",
  7241. "lib/net461/System.Security.AccessControl.dll",
  7242. "lib/net461/System.Security.AccessControl.xml",
  7243. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7244. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7245. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7246. "lib/uap10.0.16299/_._",
  7247. "ref/net46/System.Security.AccessControl.dll",
  7248. "ref/net461/System.Security.AccessControl.dll",
  7249. "ref/net461/System.Security.AccessControl.xml",
  7250. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7251. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7252. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7253. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7254. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7255. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7256. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7257. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7258. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7259. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7260. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7261. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7262. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7263. "ref/uap10.0.16299/_._",
  7264. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7265. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7266. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7267. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7268. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7269. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7270. "runtimes/win/lib/uap10.0.16299/_._",
  7271. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7272. "system.security.accesscontrol.nuspec",
  7273. "useSharedDesignerContext.txt",
  7274. "version.txt"
  7275. ]
  7276. },
  7277. "System.Security.Cryptography.Algorithms/4.3.0": {
  7278. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7279. "type": "package",
  7280. "path": "system.security.cryptography.algorithms/4.3.0",
  7281. "files": [
  7282. ".nupkg.metadata",
  7283. ".signature.p7s",
  7284. "ThirdPartyNotices.txt",
  7285. "dotnet_library_license.txt",
  7286. "lib/MonoAndroid10/_._",
  7287. "lib/MonoTouch10/_._",
  7288. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7289. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7290. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7291. "lib/xamarinios10/_._",
  7292. "lib/xamarinmac20/_._",
  7293. "lib/xamarintvos10/_._",
  7294. "lib/xamarinwatchos10/_._",
  7295. "ref/MonoAndroid10/_._",
  7296. "ref/MonoTouch10/_._",
  7297. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7298. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7299. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7300. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7301. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7302. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7303. "ref/xamarinios10/_._",
  7304. "ref/xamarinmac20/_._",
  7305. "ref/xamarintvos10/_._",
  7306. "ref/xamarinwatchos10/_._",
  7307. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7308. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7309. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7310. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7311. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7312. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7313. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7314. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7315. "system.security.cryptography.algorithms.nuspec"
  7316. ]
  7317. },
  7318. "System.Security.Cryptography.Cng/4.5.0": {
  7319. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7320. "type": "package",
  7321. "path": "system.security.cryptography.cng/4.5.0",
  7322. "files": [
  7323. ".nupkg.metadata",
  7324. ".signature.p7s",
  7325. "LICENSE.TXT",
  7326. "THIRD-PARTY-NOTICES.TXT",
  7327. "lib/MonoAndroid10/_._",
  7328. "lib/MonoTouch10/_._",
  7329. "lib/net46/System.Security.Cryptography.Cng.dll",
  7330. "lib/net461/System.Security.Cryptography.Cng.dll",
  7331. "lib/net462/System.Security.Cryptography.Cng.dll",
  7332. "lib/net47/System.Security.Cryptography.Cng.dll",
  7333. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7334. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7335. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7336. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7337. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7338. "lib/uap10.0.16299/_._",
  7339. "lib/xamarinios10/_._",
  7340. "lib/xamarinmac20/_._",
  7341. "lib/xamarintvos10/_._",
  7342. "lib/xamarinwatchos10/_._",
  7343. "ref/MonoAndroid10/_._",
  7344. "ref/MonoTouch10/_._",
  7345. "ref/net46/System.Security.Cryptography.Cng.dll",
  7346. "ref/net461/System.Security.Cryptography.Cng.dll",
  7347. "ref/net461/System.Security.Cryptography.Cng.xml",
  7348. "ref/net462/System.Security.Cryptography.Cng.dll",
  7349. "ref/net462/System.Security.Cryptography.Cng.xml",
  7350. "ref/net47/System.Security.Cryptography.Cng.dll",
  7351. "ref/net47/System.Security.Cryptography.Cng.xml",
  7352. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7353. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7354. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7355. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7356. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7357. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7358. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7359. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7360. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7361. "ref/uap10.0.16299/_._",
  7362. "ref/xamarinios10/_._",
  7363. "ref/xamarinmac20/_._",
  7364. "ref/xamarintvos10/_._",
  7365. "ref/xamarinwatchos10/_._",
  7366. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7367. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7368. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7369. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7370. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7371. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7372. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7373. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7374. "runtimes/win/lib/uap10.0.16299/_._",
  7375. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7376. "system.security.cryptography.cng.nuspec",
  7377. "useSharedDesignerContext.txt",
  7378. "version.txt"
  7379. ]
  7380. },
  7381. "System.Security.Cryptography.Csp/4.3.0": {
  7382. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7383. "type": "package",
  7384. "path": "system.security.cryptography.csp/4.3.0",
  7385. "files": [
  7386. ".nupkg.metadata",
  7387. ".signature.p7s",
  7388. "ThirdPartyNotices.txt",
  7389. "dotnet_library_license.txt",
  7390. "lib/MonoAndroid10/_._",
  7391. "lib/MonoTouch10/_._",
  7392. "lib/net46/System.Security.Cryptography.Csp.dll",
  7393. "lib/xamarinios10/_._",
  7394. "lib/xamarinmac20/_._",
  7395. "lib/xamarintvos10/_._",
  7396. "lib/xamarinwatchos10/_._",
  7397. "ref/MonoAndroid10/_._",
  7398. "ref/MonoTouch10/_._",
  7399. "ref/net46/System.Security.Cryptography.Csp.dll",
  7400. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7401. "ref/xamarinios10/_._",
  7402. "ref/xamarinmac20/_._",
  7403. "ref/xamarintvos10/_._",
  7404. "ref/xamarinwatchos10/_._",
  7405. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7406. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7407. "runtimes/win/lib/netcore50/_._",
  7408. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7409. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7410. "system.security.cryptography.csp.nuspec"
  7411. ]
  7412. },
  7413. "System.Security.Cryptography.Encoding/4.3.0": {
  7414. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7415. "type": "package",
  7416. "path": "system.security.cryptography.encoding/4.3.0",
  7417. "files": [
  7418. ".nupkg.metadata",
  7419. ".signature.p7s",
  7420. "ThirdPartyNotices.txt",
  7421. "dotnet_library_license.txt",
  7422. "lib/MonoAndroid10/_._",
  7423. "lib/MonoTouch10/_._",
  7424. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7425. "lib/xamarinios10/_._",
  7426. "lib/xamarinmac20/_._",
  7427. "lib/xamarintvos10/_._",
  7428. "lib/xamarinwatchos10/_._",
  7429. "ref/MonoAndroid10/_._",
  7430. "ref/MonoTouch10/_._",
  7431. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7432. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7433. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7434. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7435. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7436. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7437. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7438. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7439. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7440. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7441. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7442. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7443. "ref/xamarinios10/_._",
  7444. "ref/xamarinmac20/_._",
  7445. "ref/xamarintvos10/_._",
  7446. "ref/xamarinwatchos10/_._",
  7447. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7448. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7449. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7450. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7451. "system.security.cryptography.encoding.nuspec"
  7452. ]
  7453. },
  7454. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7455. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7456. "type": "package",
  7457. "path": "system.security.cryptography.openssl/4.3.0",
  7458. "files": [
  7459. ".nupkg.metadata",
  7460. ".signature.p7s",
  7461. "ThirdPartyNotices.txt",
  7462. "dotnet_library_license.txt",
  7463. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7464. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7465. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7466. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7467. "system.security.cryptography.openssl.nuspec"
  7468. ]
  7469. },
  7470. "System.Security.Cryptography.Primitives/4.3.0": {
  7471. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7472. "type": "package",
  7473. "path": "system.security.cryptography.primitives/4.3.0",
  7474. "files": [
  7475. ".nupkg.metadata",
  7476. ".signature.p7s",
  7477. "ThirdPartyNotices.txt",
  7478. "dotnet_library_license.txt",
  7479. "lib/MonoAndroid10/_._",
  7480. "lib/MonoTouch10/_._",
  7481. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7482. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7483. "lib/xamarinios10/_._",
  7484. "lib/xamarinmac20/_._",
  7485. "lib/xamarintvos10/_._",
  7486. "lib/xamarinwatchos10/_._",
  7487. "ref/MonoAndroid10/_._",
  7488. "ref/MonoTouch10/_._",
  7489. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7490. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7491. "ref/xamarinios10/_._",
  7492. "ref/xamarinmac20/_._",
  7493. "ref/xamarintvos10/_._",
  7494. "ref/xamarinwatchos10/_._",
  7495. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7496. "system.security.cryptography.primitives.nuspec"
  7497. ]
  7498. },
  7499. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7500. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7501. "type": "package",
  7502. "path": "system.security.cryptography.protecteddata/4.7.0",
  7503. "files": [
  7504. ".nupkg.metadata",
  7505. ".signature.p7s",
  7506. "LICENSE.TXT",
  7507. "THIRD-PARTY-NOTICES.TXT",
  7508. "lib/MonoAndroid10/_._",
  7509. "lib/MonoTouch10/_._",
  7510. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7511. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7512. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7513. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7514. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7515. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7516. "lib/xamarinios10/_._",
  7517. "lib/xamarinmac20/_._",
  7518. "lib/xamarintvos10/_._",
  7519. "lib/xamarinwatchos10/_._",
  7520. "ref/MonoAndroid10/_._",
  7521. "ref/MonoTouch10/_._",
  7522. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7523. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7524. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7525. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7526. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7527. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7528. "ref/xamarinios10/_._",
  7529. "ref/xamarinmac20/_._",
  7530. "ref/xamarintvos10/_._",
  7531. "ref/xamarinwatchos10/_._",
  7532. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7533. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7534. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7535. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7536. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7537. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7538. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7539. "system.security.cryptography.protecteddata.nuspec",
  7540. "useSharedDesignerContext.txt",
  7541. "version.txt"
  7542. ]
  7543. },
  7544. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7545. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7546. "type": "package",
  7547. "path": "system.security.cryptography.x509certificates/4.3.0",
  7548. "files": [
  7549. ".nupkg.metadata",
  7550. ".signature.p7s",
  7551. "ThirdPartyNotices.txt",
  7552. "dotnet_library_license.txt",
  7553. "lib/MonoAndroid10/_._",
  7554. "lib/MonoTouch10/_._",
  7555. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7556. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7557. "lib/xamarinios10/_._",
  7558. "lib/xamarinmac20/_._",
  7559. "lib/xamarintvos10/_._",
  7560. "lib/xamarinwatchos10/_._",
  7561. "ref/MonoAndroid10/_._",
  7562. "ref/MonoTouch10/_._",
  7563. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7564. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7565. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7566. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7567. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7568. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7569. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7570. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7571. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7572. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7573. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7574. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7575. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7576. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7577. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7578. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7579. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7580. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7581. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7582. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7583. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7584. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7585. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7586. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7587. "ref/xamarinios10/_._",
  7588. "ref/xamarinmac20/_._",
  7589. "ref/xamarintvos10/_._",
  7590. "ref/xamarinwatchos10/_._",
  7591. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7592. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7593. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7594. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7595. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7596. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7597. "system.security.cryptography.x509certificates.nuspec"
  7598. ]
  7599. },
  7600. "System.Security.Permissions/4.7.0": {
  7601. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7602. "type": "package",
  7603. "path": "system.security.permissions/4.7.0",
  7604. "files": [
  7605. ".nupkg.metadata",
  7606. ".signature.p7s",
  7607. "LICENSE.TXT",
  7608. "THIRD-PARTY-NOTICES.TXT",
  7609. "lib/net461/System.Security.Permissions.dll",
  7610. "lib/net461/System.Security.Permissions.xml",
  7611. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7612. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7613. "lib/netstandard2.0/System.Security.Permissions.dll",
  7614. "lib/netstandard2.0/System.Security.Permissions.xml",
  7615. "ref/net461/System.Security.Permissions.dll",
  7616. "ref/net461/System.Security.Permissions.xml",
  7617. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7618. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7619. "ref/netstandard2.0/System.Security.Permissions.dll",
  7620. "ref/netstandard2.0/System.Security.Permissions.xml",
  7621. "system.security.permissions.4.7.0.nupkg.sha512",
  7622. "system.security.permissions.nuspec",
  7623. "useSharedDesignerContext.txt",
  7624. "version.txt"
  7625. ]
  7626. },
  7627. "System.Security.Principal.Windows/4.7.0": {
  7628. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7629. "type": "package",
  7630. "path": "system.security.principal.windows/4.7.0",
  7631. "files": [
  7632. ".nupkg.metadata",
  7633. ".signature.p7s",
  7634. "LICENSE.TXT",
  7635. "THIRD-PARTY-NOTICES.TXT",
  7636. "lib/net46/System.Security.Principal.Windows.dll",
  7637. "lib/net461/System.Security.Principal.Windows.dll",
  7638. "lib/net461/System.Security.Principal.Windows.xml",
  7639. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7640. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7641. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7642. "lib/uap10.0.16299/_._",
  7643. "ref/net46/System.Security.Principal.Windows.dll",
  7644. "ref/net461/System.Security.Principal.Windows.dll",
  7645. "ref/net461/System.Security.Principal.Windows.xml",
  7646. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7647. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7648. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7649. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7650. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7651. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7652. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7653. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7654. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7655. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7656. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7657. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7658. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7659. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7660. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7661. "ref/uap10.0.16299/_._",
  7662. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7663. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7664. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7665. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7666. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7667. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7668. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7669. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7670. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7671. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7672. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7673. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7674. "runtimes/win/lib/uap10.0.16299/_._",
  7675. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7676. "system.security.principal.windows.nuspec",
  7677. "useSharedDesignerContext.txt",
  7678. "version.txt"
  7679. ]
  7680. },
  7681. "System.Text.Encoding/4.3.0": {
  7682. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7683. "type": "package",
  7684. "path": "system.text.encoding/4.3.0",
  7685. "files": [
  7686. ".nupkg.metadata",
  7687. ".signature.p7s",
  7688. "ThirdPartyNotices.txt",
  7689. "dotnet_library_license.txt",
  7690. "lib/MonoAndroid10/_._",
  7691. "lib/MonoTouch10/_._",
  7692. "lib/net45/_._",
  7693. "lib/portable-net45+win8+wp8+wpa81/_._",
  7694. "lib/win8/_._",
  7695. "lib/wp80/_._",
  7696. "lib/wpa81/_._",
  7697. "lib/xamarinios10/_._",
  7698. "lib/xamarinmac20/_._",
  7699. "lib/xamarintvos10/_._",
  7700. "lib/xamarinwatchos10/_._",
  7701. "ref/MonoAndroid10/_._",
  7702. "ref/MonoTouch10/_._",
  7703. "ref/net45/_._",
  7704. "ref/netcore50/System.Text.Encoding.dll",
  7705. "ref/netcore50/System.Text.Encoding.xml",
  7706. "ref/netcore50/de/System.Text.Encoding.xml",
  7707. "ref/netcore50/es/System.Text.Encoding.xml",
  7708. "ref/netcore50/fr/System.Text.Encoding.xml",
  7709. "ref/netcore50/it/System.Text.Encoding.xml",
  7710. "ref/netcore50/ja/System.Text.Encoding.xml",
  7711. "ref/netcore50/ko/System.Text.Encoding.xml",
  7712. "ref/netcore50/ru/System.Text.Encoding.xml",
  7713. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7714. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7715. "ref/netstandard1.0/System.Text.Encoding.dll",
  7716. "ref/netstandard1.0/System.Text.Encoding.xml",
  7717. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7718. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7719. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7720. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7721. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7722. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7723. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7724. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7725. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7726. "ref/netstandard1.3/System.Text.Encoding.dll",
  7727. "ref/netstandard1.3/System.Text.Encoding.xml",
  7728. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7729. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7730. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7731. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7732. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7733. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7734. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7735. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7736. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7737. "ref/portable-net45+win8+wp8+wpa81/_._",
  7738. "ref/win8/_._",
  7739. "ref/wp80/_._",
  7740. "ref/wpa81/_._",
  7741. "ref/xamarinios10/_._",
  7742. "ref/xamarinmac20/_._",
  7743. "ref/xamarintvos10/_._",
  7744. "ref/xamarinwatchos10/_._",
  7745. "system.text.encoding.4.3.0.nupkg.sha512",
  7746. "system.text.encoding.nuspec"
  7747. ]
  7748. },
  7749. "System.Text.Encoding.CodePages/4.7.0": {
  7750. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7751. "type": "package",
  7752. "path": "system.text.encoding.codepages/4.7.0",
  7753. "files": [
  7754. ".nupkg.metadata",
  7755. ".signature.p7s",
  7756. "LICENSE.TXT",
  7757. "THIRD-PARTY-NOTICES.TXT",
  7758. "lib/MonoAndroid10/_._",
  7759. "lib/MonoTouch10/_._",
  7760. "lib/net46/System.Text.Encoding.CodePages.dll",
  7761. "lib/net461/System.Text.Encoding.CodePages.dll",
  7762. "lib/net461/System.Text.Encoding.CodePages.xml",
  7763. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7764. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7765. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7766. "lib/xamarinios10/_._",
  7767. "lib/xamarinmac20/_._",
  7768. "lib/xamarintvos10/_._",
  7769. "lib/xamarinwatchos10/_._",
  7770. "ref/MonoAndroid10/_._",
  7771. "ref/MonoTouch10/_._",
  7772. "ref/xamarinios10/_._",
  7773. "ref/xamarinmac20/_._",
  7774. "ref/xamarintvos10/_._",
  7775. "ref/xamarinwatchos10/_._",
  7776. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7777. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7778. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7779. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7780. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7781. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7782. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7783. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7784. "system.text.encoding.codepages.nuspec",
  7785. "useSharedDesignerContext.txt",
  7786. "version.txt"
  7787. ]
  7788. },
  7789. "System.Text.Encoding.Extensions/4.3.0": {
  7790. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7791. "type": "package",
  7792. "path": "system.text.encoding.extensions/4.3.0",
  7793. "files": [
  7794. ".nupkg.metadata",
  7795. ".signature.p7s",
  7796. "ThirdPartyNotices.txt",
  7797. "dotnet_library_license.txt",
  7798. "lib/MonoAndroid10/_._",
  7799. "lib/MonoTouch10/_._",
  7800. "lib/net45/_._",
  7801. "lib/portable-net45+win8+wp8+wpa81/_._",
  7802. "lib/win8/_._",
  7803. "lib/wp80/_._",
  7804. "lib/wpa81/_._",
  7805. "lib/xamarinios10/_._",
  7806. "lib/xamarinmac20/_._",
  7807. "lib/xamarintvos10/_._",
  7808. "lib/xamarinwatchos10/_._",
  7809. "ref/MonoAndroid10/_._",
  7810. "ref/MonoTouch10/_._",
  7811. "ref/net45/_._",
  7812. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7813. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7814. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7815. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7816. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7817. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7818. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7819. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7820. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7821. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7822. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7823. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7824. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7825. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7826. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7827. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7828. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7829. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7830. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7831. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7832. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7833. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7834. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7835. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7836. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7837. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7838. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7839. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7840. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7841. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7842. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7845. "ref/portable-net45+win8+wp8+wpa81/_._",
  7846. "ref/win8/_._",
  7847. "ref/wp80/_._",
  7848. "ref/wpa81/_._",
  7849. "ref/xamarinios10/_._",
  7850. "ref/xamarinmac20/_._",
  7851. "ref/xamarintvos10/_._",
  7852. "ref/xamarinwatchos10/_._",
  7853. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7854. "system.text.encoding.extensions.nuspec"
  7855. ]
  7856. },
  7857. "System.Text.Encodings.Web/4.5.0": {
  7858. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7859. "type": "package",
  7860. "path": "system.text.encodings.web/4.5.0",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. ".signature.p7s",
  7864. "LICENSE.TXT",
  7865. "THIRD-PARTY-NOTICES.TXT",
  7866. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7867. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7868. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7869. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7870. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7871. "system.text.encodings.web.nuspec",
  7872. "useSharedDesignerContext.txt",
  7873. "version.txt"
  7874. ]
  7875. },
  7876. "System.Text.Json/4.7.1": {
  7877. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7878. "type": "package",
  7879. "path": "system.text.json/4.7.1",
  7880. "files": [
  7881. ".nupkg.metadata",
  7882. ".signature.p7s",
  7883. "Icon.png",
  7884. "LICENSE.TXT",
  7885. "THIRD-PARTY-NOTICES.TXT",
  7886. "lib/net461/System.Text.Json.dll",
  7887. "lib/net461/System.Text.Json.xml",
  7888. "lib/netcoreapp3.0/System.Text.Json.dll",
  7889. "lib/netcoreapp3.0/System.Text.Json.xml",
  7890. "lib/netstandard2.0/System.Text.Json.dll",
  7891. "lib/netstandard2.0/System.Text.Json.xml",
  7892. "system.text.json.4.7.1.nupkg.sha512",
  7893. "system.text.json.nuspec",
  7894. "useSharedDesignerContext.txt",
  7895. "version.txt"
  7896. ]
  7897. },
  7898. "System.Text.RegularExpressions/4.3.0": {
  7899. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7900. "type": "package",
  7901. "path": "system.text.regularexpressions/4.3.0",
  7902. "files": [
  7903. ".nupkg.metadata",
  7904. ".signature.p7s",
  7905. "ThirdPartyNotices.txt",
  7906. "dotnet_library_license.txt",
  7907. "lib/MonoAndroid10/_._",
  7908. "lib/MonoTouch10/_._",
  7909. "lib/net45/_._",
  7910. "lib/net463/System.Text.RegularExpressions.dll",
  7911. "lib/netcore50/System.Text.RegularExpressions.dll",
  7912. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7913. "lib/portable-net45+win8+wp8+wpa81/_._",
  7914. "lib/win8/_._",
  7915. "lib/wp80/_._",
  7916. "lib/wpa81/_._",
  7917. "lib/xamarinios10/_._",
  7918. "lib/xamarinmac20/_._",
  7919. "lib/xamarintvos10/_._",
  7920. "lib/xamarinwatchos10/_._",
  7921. "ref/MonoAndroid10/_._",
  7922. "ref/MonoTouch10/_._",
  7923. "ref/net45/_._",
  7924. "ref/net463/System.Text.RegularExpressions.dll",
  7925. "ref/netcore50/System.Text.RegularExpressions.dll",
  7926. "ref/netcore50/System.Text.RegularExpressions.xml",
  7927. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7928. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7929. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7930. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7931. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7932. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7933. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7934. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7935. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7936. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7937. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7938. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7939. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7940. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7941. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7942. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7943. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7944. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7945. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7946. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7947. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7948. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7949. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7950. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7951. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7952. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7953. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7954. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7955. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7956. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7957. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7958. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7959. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7960. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7961. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7962. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7963. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7964. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7965. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7966. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7967. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7968. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7969. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7970. "ref/portable-net45+win8+wp8+wpa81/_._",
  7971. "ref/win8/_._",
  7972. "ref/wp80/_._",
  7973. "ref/wpa81/_._",
  7974. "ref/xamarinios10/_._",
  7975. "ref/xamarinmac20/_._",
  7976. "ref/xamarintvos10/_._",
  7977. "ref/xamarinwatchos10/_._",
  7978. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7979. "system.text.regularexpressions.nuspec"
  7980. ]
  7981. },
  7982. "System.Threading/4.3.0": {
  7983. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7984. "type": "package",
  7985. "path": "system.threading/4.3.0",
  7986. "files": [
  7987. ".nupkg.metadata",
  7988. ".signature.p7s",
  7989. "ThirdPartyNotices.txt",
  7990. "dotnet_library_license.txt",
  7991. "lib/MonoAndroid10/_._",
  7992. "lib/MonoTouch10/_._",
  7993. "lib/net45/_._",
  7994. "lib/netcore50/System.Threading.dll",
  7995. "lib/netstandard1.3/System.Threading.dll",
  7996. "lib/portable-net45+win8+wp8+wpa81/_._",
  7997. "lib/win8/_._",
  7998. "lib/wp80/_._",
  7999. "lib/wpa81/_._",
  8000. "lib/xamarinios10/_._",
  8001. "lib/xamarinmac20/_._",
  8002. "lib/xamarintvos10/_._",
  8003. "lib/xamarinwatchos10/_._",
  8004. "ref/MonoAndroid10/_._",
  8005. "ref/MonoTouch10/_._",
  8006. "ref/net45/_._",
  8007. "ref/netcore50/System.Threading.dll",
  8008. "ref/netcore50/System.Threading.xml",
  8009. "ref/netcore50/de/System.Threading.xml",
  8010. "ref/netcore50/es/System.Threading.xml",
  8011. "ref/netcore50/fr/System.Threading.xml",
  8012. "ref/netcore50/it/System.Threading.xml",
  8013. "ref/netcore50/ja/System.Threading.xml",
  8014. "ref/netcore50/ko/System.Threading.xml",
  8015. "ref/netcore50/ru/System.Threading.xml",
  8016. "ref/netcore50/zh-hans/System.Threading.xml",
  8017. "ref/netcore50/zh-hant/System.Threading.xml",
  8018. "ref/netstandard1.0/System.Threading.dll",
  8019. "ref/netstandard1.0/System.Threading.xml",
  8020. "ref/netstandard1.0/de/System.Threading.xml",
  8021. "ref/netstandard1.0/es/System.Threading.xml",
  8022. "ref/netstandard1.0/fr/System.Threading.xml",
  8023. "ref/netstandard1.0/it/System.Threading.xml",
  8024. "ref/netstandard1.0/ja/System.Threading.xml",
  8025. "ref/netstandard1.0/ko/System.Threading.xml",
  8026. "ref/netstandard1.0/ru/System.Threading.xml",
  8027. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8028. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8029. "ref/netstandard1.3/System.Threading.dll",
  8030. "ref/netstandard1.3/System.Threading.xml",
  8031. "ref/netstandard1.3/de/System.Threading.xml",
  8032. "ref/netstandard1.3/es/System.Threading.xml",
  8033. "ref/netstandard1.3/fr/System.Threading.xml",
  8034. "ref/netstandard1.3/it/System.Threading.xml",
  8035. "ref/netstandard1.3/ja/System.Threading.xml",
  8036. "ref/netstandard1.3/ko/System.Threading.xml",
  8037. "ref/netstandard1.3/ru/System.Threading.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8040. "ref/portable-net45+win8+wp8+wpa81/_._",
  8041. "ref/win8/_._",
  8042. "ref/wp80/_._",
  8043. "ref/wpa81/_._",
  8044. "ref/xamarinios10/_._",
  8045. "ref/xamarinmac20/_._",
  8046. "ref/xamarintvos10/_._",
  8047. "ref/xamarinwatchos10/_._",
  8048. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8049. "system.threading.4.3.0.nupkg.sha512",
  8050. "system.threading.nuspec"
  8051. ]
  8052. },
  8053. "System.Threading.Tasks/4.3.0": {
  8054. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8055. "type": "package",
  8056. "path": "system.threading.tasks/4.3.0",
  8057. "files": [
  8058. ".nupkg.metadata",
  8059. ".signature.p7s",
  8060. "ThirdPartyNotices.txt",
  8061. "dotnet_library_license.txt",
  8062. "lib/MonoAndroid10/_._",
  8063. "lib/MonoTouch10/_._",
  8064. "lib/net45/_._",
  8065. "lib/portable-net45+win8+wp8+wpa81/_._",
  8066. "lib/win8/_._",
  8067. "lib/wp80/_._",
  8068. "lib/wpa81/_._",
  8069. "lib/xamarinios10/_._",
  8070. "lib/xamarinmac20/_._",
  8071. "lib/xamarintvos10/_._",
  8072. "lib/xamarinwatchos10/_._",
  8073. "ref/MonoAndroid10/_._",
  8074. "ref/MonoTouch10/_._",
  8075. "ref/net45/_._",
  8076. "ref/netcore50/System.Threading.Tasks.dll",
  8077. "ref/netcore50/System.Threading.Tasks.xml",
  8078. "ref/netcore50/de/System.Threading.Tasks.xml",
  8079. "ref/netcore50/es/System.Threading.Tasks.xml",
  8080. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8081. "ref/netcore50/it/System.Threading.Tasks.xml",
  8082. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8083. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8084. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8085. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8086. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8087. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8088. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8089. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8090. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8091. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8092. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8093. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8094. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8095. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8096. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8097. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8098. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8099. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8100. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8101. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8102. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8103. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8104. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8105. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8106. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8107. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8108. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8109. "ref/portable-net45+win8+wp8+wpa81/_._",
  8110. "ref/win8/_._",
  8111. "ref/wp80/_._",
  8112. "ref/wpa81/_._",
  8113. "ref/xamarinios10/_._",
  8114. "ref/xamarinmac20/_._",
  8115. "ref/xamarintvos10/_._",
  8116. "ref/xamarinwatchos10/_._",
  8117. "system.threading.tasks.4.3.0.nupkg.sha512",
  8118. "system.threading.tasks.nuspec"
  8119. ]
  8120. },
  8121. "System.Threading.Tasks.Extensions/4.3.0": {
  8122. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8123. "type": "package",
  8124. "path": "system.threading.tasks.extensions/4.3.0",
  8125. "files": [
  8126. ".nupkg.metadata",
  8127. ".signature.p7s",
  8128. "ThirdPartyNotices.txt",
  8129. "dotnet_library_license.txt",
  8130. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8131. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8132. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8133. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8134. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8135. "system.threading.tasks.extensions.nuspec"
  8136. ]
  8137. },
  8138. "System.Threading.Timer/4.3.0": {
  8139. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8140. "type": "package",
  8141. "path": "system.threading.timer/4.3.0",
  8142. "files": [
  8143. ".nupkg.metadata",
  8144. ".signature.p7s",
  8145. "ThirdPartyNotices.txt",
  8146. "dotnet_library_license.txt",
  8147. "lib/MonoAndroid10/_._",
  8148. "lib/MonoTouch10/_._",
  8149. "lib/net451/_._",
  8150. "lib/portable-net451+win81+wpa81/_._",
  8151. "lib/win81/_._",
  8152. "lib/wpa81/_._",
  8153. "lib/xamarinios10/_._",
  8154. "lib/xamarinmac20/_._",
  8155. "lib/xamarintvos10/_._",
  8156. "lib/xamarinwatchos10/_._",
  8157. "ref/MonoAndroid10/_._",
  8158. "ref/MonoTouch10/_._",
  8159. "ref/net451/_._",
  8160. "ref/netcore50/System.Threading.Timer.dll",
  8161. "ref/netcore50/System.Threading.Timer.xml",
  8162. "ref/netcore50/de/System.Threading.Timer.xml",
  8163. "ref/netcore50/es/System.Threading.Timer.xml",
  8164. "ref/netcore50/fr/System.Threading.Timer.xml",
  8165. "ref/netcore50/it/System.Threading.Timer.xml",
  8166. "ref/netcore50/ja/System.Threading.Timer.xml",
  8167. "ref/netcore50/ko/System.Threading.Timer.xml",
  8168. "ref/netcore50/ru/System.Threading.Timer.xml",
  8169. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8170. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8171. "ref/netstandard1.2/System.Threading.Timer.dll",
  8172. "ref/netstandard1.2/System.Threading.Timer.xml",
  8173. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8174. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8175. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8176. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8177. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8178. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8179. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8180. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8181. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8182. "ref/portable-net451+win81+wpa81/_._",
  8183. "ref/win81/_._",
  8184. "ref/wpa81/_._",
  8185. "ref/xamarinios10/_._",
  8186. "ref/xamarinmac20/_._",
  8187. "ref/xamarintvos10/_._",
  8188. "ref/xamarinwatchos10/_._",
  8189. "system.threading.timer.4.3.0.nupkg.sha512",
  8190. "system.threading.timer.nuspec"
  8191. ]
  8192. },
  8193. "System.Windows.Extensions/4.7.0": {
  8194. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8195. "type": "package",
  8196. "path": "system.windows.extensions/4.7.0",
  8197. "files": [
  8198. ".nupkg.metadata",
  8199. ".signature.p7s",
  8200. "LICENSE.TXT",
  8201. "THIRD-PARTY-NOTICES.TXT",
  8202. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8203. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8204. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8205. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8206. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8207. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8208. "system.windows.extensions.4.7.0.nupkg.sha512",
  8209. "system.windows.extensions.nuspec",
  8210. "useSharedDesignerContext.txt",
  8211. "version.txt"
  8212. ]
  8213. },
  8214. "System.Xml.ReaderWriter/4.3.0": {
  8215. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8216. "type": "package",
  8217. "path": "system.xml.readerwriter/4.3.0",
  8218. "files": [
  8219. ".nupkg.metadata",
  8220. ".signature.p7s",
  8221. "ThirdPartyNotices.txt",
  8222. "dotnet_library_license.txt",
  8223. "lib/MonoAndroid10/_._",
  8224. "lib/MonoTouch10/_._",
  8225. "lib/net45/_._",
  8226. "lib/net46/System.Xml.ReaderWriter.dll",
  8227. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8228. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8229. "lib/portable-net45+win8+wp8+wpa81/_._",
  8230. "lib/win8/_._",
  8231. "lib/wp80/_._",
  8232. "lib/wpa81/_._",
  8233. "lib/xamarinios10/_._",
  8234. "lib/xamarinmac20/_._",
  8235. "lib/xamarintvos10/_._",
  8236. "lib/xamarinwatchos10/_._",
  8237. "ref/MonoAndroid10/_._",
  8238. "ref/MonoTouch10/_._",
  8239. "ref/net45/_._",
  8240. "ref/net46/System.Xml.ReaderWriter.dll",
  8241. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8242. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8243. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8244. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8245. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8246. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8247. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8248. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8249. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8250. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8251. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8252. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8253. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8254. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8255. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8256. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8257. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8258. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8259. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8260. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8261. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8262. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8263. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8264. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8265. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8266. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8267. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8268. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8269. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8270. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8271. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8272. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8273. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8274. "ref/portable-net45+win8+wp8+wpa81/_._",
  8275. "ref/win8/_._",
  8276. "ref/wp80/_._",
  8277. "ref/wpa81/_._",
  8278. "ref/xamarinios10/_._",
  8279. "ref/xamarinmac20/_._",
  8280. "ref/xamarintvos10/_._",
  8281. "ref/xamarinwatchos10/_._",
  8282. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8283. "system.xml.readerwriter.nuspec"
  8284. ]
  8285. },
  8286. "System.Xml.XDocument/4.3.0": {
  8287. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8288. "type": "package",
  8289. "path": "system.xml.xdocument/4.3.0",
  8290. "files": [
  8291. ".nupkg.metadata",
  8292. ".signature.p7s",
  8293. "ThirdPartyNotices.txt",
  8294. "dotnet_library_license.txt",
  8295. "lib/MonoAndroid10/_._",
  8296. "lib/MonoTouch10/_._",
  8297. "lib/net45/_._",
  8298. "lib/netcore50/System.Xml.XDocument.dll",
  8299. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8300. "lib/portable-net45+win8+wp8+wpa81/_._",
  8301. "lib/win8/_._",
  8302. "lib/wp80/_._",
  8303. "lib/wpa81/_._",
  8304. "lib/xamarinios10/_._",
  8305. "lib/xamarinmac20/_._",
  8306. "lib/xamarintvos10/_._",
  8307. "lib/xamarinwatchos10/_._",
  8308. "ref/MonoAndroid10/_._",
  8309. "ref/MonoTouch10/_._",
  8310. "ref/net45/_._",
  8311. "ref/netcore50/System.Xml.XDocument.dll",
  8312. "ref/netcore50/System.Xml.XDocument.xml",
  8313. "ref/netcore50/de/System.Xml.XDocument.xml",
  8314. "ref/netcore50/es/System.Xml.XDocument.xml",
  8315. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8316. "ref/netcore50/it/System.Xml.XDocument.xml",
  8317. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8318. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8319. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8320. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8321. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8322. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8323. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8324. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8325. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8326. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8327. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8328. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8329. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8330. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8331. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8332. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8333. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8334. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8335. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8336. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8337. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8338. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8339. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8340. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8341. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8342. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8343. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8344. "ref/portable-net45+win8+wp8+wpa81/_._",
  8345. "ref/win8/_._",
  8346. "ref/wp80/_._",
  8347. "ref/wpa81/_._",
  8348. "ref/xamarinios10/_._",
  8349. "ref/xamarinmac20/_._",
  8350. "ref/xamarintvos10/_._",
  8351. "ref/xamarinwatchos10/_._",
  8352. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8353. "system.xml.xdocument.nuspec"
  8354. ]
  8355. },
  8356. "OASystem.Domain/1.0.0": {
  8357. "type": "project",
  8358. "path": "../OASystem.Domain/OASystem.Domain.csproj",
  8359. "msbuildProject": "../OASystem.Domain/OASystem.Domain.csproj"
  8360. },
  8361. "OASystem.Infrastructure/1.0.0": {
  8362. "type": "project",
  8363. "path": "../OASystem.Infrastructure/OASystem.Infrastructure.csproj",
  8364. "msbuildProject": "../OASystem.Infrastructure/OASystem.Infrastructure.csproj"
  8365. }
  8366. },
  8367. "projectFileDependencyGroups": {
  8368. "net6.0": [
  8369. "AutoMapper >= 12.0.0",
  8370. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.0",
  8371. "Autofac >= 6.4.0",
  8372. "Autofac.Extensions.DependencyInjection >= 8.0.0",
  8373. "Betalgo.OpenAI.GPT3 >= 6.6.7",
  8374. "BouncyCastle.NetCore >= 1.8.8",
  8375. "Flurl.Http >= 3.2.4",
  8376. "Microsoft.AspNetCore.Authentication.JwtBearer >= 6.0.11",
  8377. "OASystem.Domain >= 1.0.0",
  8378. "OASystem.Infrastructure >= 1.0.0",
  8379. "QRCoder >= 1.4.1",
  8380. "Serilog.Sinks.File >= 5.0.0",
  8381. "SqlSugarCore >= 5.1.3.32",
  8382. "Swashbuckle.AspNetCore >= 6.4.0"
  8383. ]
  8384. },
  8385. "packageFolders": {
  8386. "C:\\Users\\Administrator\\.nuget\\packages\\": {}
  8387. },
  8388. "project": {
  8389. "version": "1.0.0",
  8390. "restore": {
  8391. "projectUniqueName": "E:\\OA2023\\OASystem\\OASystem.Api\\OASystem.API.csproj",
  8392. "projectName": "OASystem.API",
  8393. "projectPath": "E:\\OA2023\\OASystem\\OASystem.Api\\OASystem.API.csproj",
  8394. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  8395. "outputPath": "E:\\OA2023\\OASystem\\OASystem.Api\\obj\\",
  8396. "projectStyle": "PackageReference",
  8397. "configFilePaths": [
  8398. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8399. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8400. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8401. ],
  8402. "originalTargetFrameworks": [
  8403. "net6.0"
  8404. ],
  8405. "sources": {
  8406. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8407. "https://api.nuget.org/v3/index.json": {}
  8408. },
  8409. "frameworks": {
  8410. "net6.0": {
  8411. "targetAlias": "net6.0",
  8412. "projectReferences": {
  8413. "E:\\OA2023\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj": {
  8414. "projectPath": "E:\\OA2023\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj"
  8415. },
  8416. "E:\\OA2023\\OASystem\\OASystem.Infrastructure\\OASystem.Infrastructure.csproj": {
  8417. "projectPath": "E:\\OA2023\\OASystem\\OASystem.Infrastructure\\OASystem.Infrastructure.csproj"
  8418. }
  8419. }
  8420. }
  8421. },
  8422. "warningProperties": {
  8423. "warnAsError": [
  8424. "NU1605"
  8425. ]
  8426. }
  8427. },
  8428. "frameworks": {
  8429. "net6.0": {
  8430. "targetAlias": "net6.0",
  8431. "dependencies": {
  8432. "AutoMapper": {
  8433. "target": "Package",
  8434. "version": "[12.0.0, )"
  8435. },
  8436. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  8437. "target": "Package",
  8438. "version": "[12.0.0, )"
  8439. },
  8440. "Autofac": {
  8441. "target": "Package",
  8442. "version": "[6.4.0, )"
  8443. },
  8444. "Autofac.Extensions.DependencyInjection": {
  8445. "target": "Package",
  8446. "version": "[8.0.0, )"
  8447. },
  8448. "Betalgo.OpenAI.GPT3": {
  8449. "target": "Package",
  8450. "version": "[6.6.7, )"
  8451. },
  8452. "BouncyCastle.NetCore": {
  8453. "target": "Package",
  8454. "version": "[1.8.8, )"
  8455. },
  8456. "Flurl.Http": {
  8457. "target": "Package",
  8458. "version": "[3.2.4, )"
  8459. },
  8460. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8461. "target": "Package",
  8462. "version": "[6.0.11, )"
  8463. },
  8464. "QRCoder": {
  8465. "target": "Package",
  8466. "version": "[1.4.1, )"
  8467. },
  8468. "Serilog.Sinks.File": {
  8469. "target": "Package",
  8470. "version": "[5.0.0, )"
  8471. },
  8472. "SqlSugarCore": {
  8473. "target": "Package",
  8474. "version": "[5.1.3.32, )"
  8475. },
  8476. "Swashbuckle.AspNetCore": {
  8477. "target": "Package",
  8478. "version": "[6.4.0, )"
  8479. }
  8480. },
  8481. "imports": [
  8482. "net461",
  8483. "net462",
  8484. "net47",
  8485. "net471",
  8486. "net472",
  8487. "net48",
  8488. "net481"
  8489. ],
  8490. "assetTargetFallback": true,
  8491. "warn": true,
  8492. "frameworkReferences": {
  8493. "Microsoft.AspNetCore.App": {
  8494. "privateAssets": "none"
  8495. },
  8496. "Microsoft.NETCore.App": {
  8497. "privateAssets": "all"
  8498. }
  8499. },
  8500. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
  8501. }
  8502. }
  8503. }
  8504. }