project.assets.json 239 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net7.0": {
  5. "Avalonia/11.0.6": {
  6. "type": "package",
  7. "dependencies": {
  8. "Avalonia.BuildServices": "0.0.29",
  9. "Avalonia.Remote.Protocol": "11.0.6",
  10. "MicroCom.Runtime": "0.11.0",
  11. "System.ComponentModel.Annotations": "4.5.0"
  12. },
  13. "compile": {
  14. "ref/net6.0/Avalonia.Base.dll": {
  15. "related": ".xml"
  16. },
  17. "ref/net6.0/Avalonia.Controls.dll": {
  18. "related": ".xml"
  19. },
  20. "ref/net6.0/Avalonia.DesignerSupport.dll": {
  21. "related": ".xml"
  22. },
  23. "ref/net6.0/Avalonia.Dialogs.dll": {
  24. "related": ".xml"
  25. },
  26. "ref/net6.0/Avalonia.Markup.Xaml.dll": {
  27. "related": ".xml"
  28. },
  29. "ref/net6.0/Avalonia.Markup.dll": {
  30. "related": ".Xaml.xml;.xml"
  31. },
  32. "ref/net6.0/Avalonia.Metal.dll": {
  33. "related": ".xml"
  34. },
  35. "ref/net6.0/Avalonia.MicroCom.dll": {
  36. "related": ".xml"
  37. },
  38. "ref/net6.0/Avalonia.OpenGL.dll": {
  39. "related": ".xml"
  40. },
  41. "ref/net6.0/Avalonia.dll": {
  42. "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/net6.0/Avalonia.Base.dll": {
  47. "related": ".xml"
  48. },
  49. "lib/net6.0/Avalonia.Controls.dll": {
  50. "related": ".xml"
  51. },
  52. "lib/net6.0/Avalonia.DesignerSupport.dll": {
  53. "related": ".xml"
  54. },
  55. "lib/net6.0/Avalonia.Dialogs.dll": {
  56. "related": ".xml"
  57. },
  58. "lib/net6.0/Avalonia.Markup.Xaml.dll": {
  59. "related": ".xml"
  60. },
  61. "lib/net6.0/Avalonia.Markup.dll": {
  62. "related": ".Xaml.xml;.xml"
  63. },
  64. "lib/net6.0/Avalonia.Metal.dll": {
  65. "related": ".xml"
  66. },
  67. "lib/net6.0/Avalonia.MicroCom.dll": {
  68. "related": ".xml"
  69. },
  70. "lib/net6.0/Avalonia.OpenGL.dll": {
  71. "related": ".xml"
  72. },
  73. "lib/net6.0/Avalonia.dll": {
  74. "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
  75. }
  76. },
  77. "build": {
  78. "buildTransitive/Avalonia.props": {},
  79. "buildTransitive/Avalonia.targets": {}
  80. }
  81. },
  82. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  83. "type": "package",
  84. "runtimeTargets": {
  85. "runtimes/win-arm64/native/av_libglesv2.dll": {
  86. "assetType": "native",
  87. "rid": "win-arm64"
  88. },
  89. "runtimes/win-x64/native/av_libglesv2.dll": {
  90. "assetType": "native",
  91. "rid": "win-x64"
  92. },
  93. "runtimes/win-x86/native/av_libglesv2.dll": {
  94. "assetType": "native",
  95. "rid": "win-x86"
  96. }
  97. }
  98. },
  99. "Avalonia.BuildServices/0.0.29": {
  100. "type": "package",
  101. "build": {
  102. "buildTransitive/Avalonia.BuildServices.targets": {}
  103. }
  104. },
  105. "Avalonia.Controls.ColorPicker/11.0.6": {
  106. "type": "package",
  107. "dependencies": {
  108. "Avalonia": "11.0.6",
  109. "Avalonia.Remote.Protocol": "11.0.6"
  110. },
  111. "compile": {
  112. "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
  113. "related": ".xml"
  114. }
  115. },
  116. "runtime": {
  117. "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
  118. "related": ".xml"
  119. }
  120. }
  121. },
  122. "Avalonia.Controls.DataGrid/11.0.6": {
  123. "type": "package",
  124. "dependencies": {
  125. "Avalonia": "11.0.6",
  126. "Avalonia.Remote.Protocol": "11.0.6"
  127. },
  128. "compile": {
  129. "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
  130. "related": ".xml"
  131. }
  132. },
  133. "runtime": {
  134. "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
  135. "related": ".xml"
  136. }
  137. }
  138. },
  139. "Avalonia.Desktop/11.0.6": {
  140. "type": "package",
  141. "dependencies": {
  142. "Avalonia": "11.0.6",
  143. "Avalonia.Native": "11.0.6",
  144. "Avalonia.Skia": "11.0.6",
  145. "Avalonia.Win32": "11.0.6",
  146. "Avalonia.X11": "11.0.6"
  147. },
  148. "compile": {
  149. "lib/net6.0/Avalonia.Desktop.dll": {
  150. "related": ".xml"
  151. }
  152. },
  153. "runtime": {
  154. "lib/net6.0/Avalonia.Desktop.dll": {
  155. "related": ".xml"
  156. }
  157. }
  158. },
  159. "Avalonia.Diagnostics/11.0.6": {
  160. "type": "package",
  161. "dependencies": {
  162. "Avalonia": "11.0.6",
  163. "Avalonia.Controls.ColorPicker": "11.0.6",
  164. "Avalonia.Controls.DataGrid": "11.0.6",
  165. "Avalonia.Themes.Simple": "11.0.6",
  166. "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
  167. "Microsoft.CodeAnalysis.Common": "3.8.0"
  168. },
  169. "compile": {
  170. "lib/net6.0/Avalonia.Diagnostics.dll": {
  171. "related": ".xml"
  172. }
  173. },
  174. "runtime": {
  175. "lib/net6.0/Avalonia.Diagnostics.dll": {
  176. "related": ".xml"
  177. }
  178. }
  179. },
  180. "Avalonia.Fonts.Inter/11.0.6": {
  181. "type": "package",
  182. "dependencies": {
  183. "Avalonia": "11.0.6"
  184. },
  185. "compile": {
  186. "lib/net6.0/Avalonia.Fonts.Inter.dll": {
  187. "related": ".xml"
  188. }
  189. },
  190. "runtime": {
  191. "lib/net6.0/Avalonia.Fonts.Inter.dll": {
  192. "related": ".xml"
  193. }
  194. }
  195. },
  196. "Avalonia.FreeDesktop/11.0.6": {
  197. "type": "package",
  198. "dependencies": {
  199. "Avalonia": "11.0.6",
  200. "Tmds.DBus.Protocol": "0.15.0"
  201. },
  202. "compile": {
  203. "lib/net6.0/Avalonia.FreeDesktop.dll": {
  204. "related": ".xml"
  205. }
  206. },
  207. "runtime": {
  208. "lib/net6.0/Avalonia.FreeDesktop.dll": {
  209. "related": ".xml"
  210. }
  211. }
  212. },
  213. "Avalonia.Native/11.0.6": {
  214. "type": "package",
  215. "dependencies": {
  216. "Avalonia": "11.0.6"
  217. },
  218. "compile": {
  219. "lib/net6.0/Avalonia.Native.dll": {
  220. "related": ".xml"
  221. }
  222. },
  223. "runtime": {
  224. "lib/net6.0/Avalonia.Native.dll": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtimeTargets": {
  229. "runtimes/osx/native/libAvaloniaNative.dylib": {
  230. "assetType": "native",
  231. "rid": "osx"
  232. }
  233. }
  234. },
  235. "Avalonia.ReactiveUI/11.0.6": {
  236. "type": "package",
  237. "dependencies": {
  238. "Avalonia": "11.0.6",
  239. "ReactiveUI": "18.3.1",
  240. "System.Reactive": "5.0.0"
  241. },
  242. "compile": {
  243. "lib/net6.0/Avalonia.ReactiveUI.dll": {
  244. "related": ".xml"
  245. }
  246. },
  247. "runtime": {
  248. "lib/net6.0/Avalonia.ReactiveUI.dll": {
  249. "related": ".xml"
  250. }
  251. }
  252. },
  253. "Avalonia.Remote.Protocol/11.0.6": {
  254. "type": "package",
  255. "compile": {
  256. "lib/net6.0/Avalonia.Remote.Protocol.dll": {
  257. "related": ".xml"
  258. }
  259. },
  260. "runtime": {
  261. "lib/net6.0/Avalonia.Remote.Protocol.dll": {
  262. "related": ".xml"
  263. }
  264. }
  265. },
  266. "Avalonia.Skia/11.0.6": {
  267. "type": "package",
  268. "dependencies": {
  269. "Avalonia": "11.0.6",
  270. "HarfBuzzSharp": "7.3.0",
  271. "HarfBuzzSharp.NativeAssets.Linux": "7.3.0",
  272. "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0",
  273. "SkiaSharp": "2.88.6",
  274. "SkiaSharp.NativeAssets.Linux": "2.88.6",
  275. "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
  276. },
  277. "compile": {
  278. "lib/net6.0/Avalonia.Skia.dll": {
  279. "related": ".xml"
  280. }
  281. },
  282. "runtime": {
  283. "lib/net6.0/Avalonia.Skia.dll": {
  284. "related": ".xml"
  285. }
  286. }
  287. },
  288. "Avalonia.Themes.Fluent/11.0.6": {
  289. "type": "package",
  290. "dependencies": {
  291. "Avalonia": "11.0.6"
  292. },
  293. "compile": {
  294. "lib/net6.0/Avalonia.Themes.Fluent.dll": {
  295. "related": ".xml"
  296. }
  297. },
  298. "runtime": {
  299. "lib/net6.0/Avalonia.Themes.Fluent.dll": {
  300. "related": ".xml"
  301. }
  302. }
  303. },
  304. "Avalonia.Themes.Simple/11.0.6": {
  305. "type": "package",
  306. "dependencies": {
  307. "Avalonia": "11.0.6"
  308. },
  309. "compile": {
  310. "lib/net6.0/Avalonia.Themes.Simple.dll": {
  311. "related": ".xml"
  312. }
  313. },
  314. "runtime": {
  315. "lib/net6.0/Avalonia.Themes.Simple.dll": {
  316. "related": ".xml"
  317. }
  318. }
  319. },
  320. "Avalonia.Win32/11.0.6": {
  321. "type": "package",
  322. "dependencies": {
  323. "Avalonia": "11.0.6",
  324. "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
  325. "System.Drawing.Common": "6.0.0",
  326. "System.Numerics.Vectors": "4.5.0"
  327. },
  328. "compile": {
  329. "lib/net6.0/Avalonia.Win32.dll": {
  330. "related": ".xml"
  331. }
  332. },
  333. "runtime": {
  334. "lib/net6.0/Avalonia.Win32.dll": {
  335. "related": ".xml"
  336. }
  337. }
  338. },
  339. "Avalonia.X11/11.0.6": {
  340. "type": "package",
  341. "dependencies": {
  342. "Avalonia": "11.0.6",
  343. "Avalonia.FreeDesktop": "11.0.6",
  344. "Avalonia.Skia": "11.0.6"
  345. },
  346. "compile": {
  347. "lib/net6.0/Avalonia.X11.dll": {
  348. "related": ".xml"
  349. }
  350. },
  351. "runtime": {
  352. "lib/net6.0/Avalonia.X11.dll": {
  353. "related": ".xml"
  354. }
  355. }
  356. },
  357. "ColorTextBlock.Avalonia/11.0.2": {
  358. "type": "package",
  359. "dependencies": {
  360. "Avalonia": "11.0.0"
  361. },
  362. "compile": {
  363. "lib/net6.0/ColorTextBlock.Avalonia.dll": {}
  364. },
  365. "runtime": {
  366. "lib/net6.0/ColorTextBlock.Avalonia.dll": {}
  367. }
  368. },
  369. "DialogHost.Avalonia/0.7.7": {
  370. "type": "package",
  371. "dependencies": {
  372. "Avalonia": "11.0.0",
  373. "System.Reactive": "6.0.0"
  374. },
  375. "compile": {
  376. "lib/netstandard2.0/DialogHost.Avalonia.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "runtime": {
  381. "lib/netstandard2.0/DialogHost.Avalonia.dll": {
  382. "related": ".xml"
  383. }
  384. }
  385. },
  386. "DynamicData/7.9.5": {
  387. "type": "package",
  388. "dependencies": {
  389. "System.Reactive": "5.0.0"
  390. },
  391. "compile": {
  392. "lib/net6.0/DynamicData.dll": {
  393. "related": ".xml"
  394. }
  395. },
  396. "runtime": {
  397. "lib/net6.0/DynamicData.dll": {
  398. "related": ".xml"
  399. }
  400. }
  401. },
  402. "HarfBuzzSharp/7.3.0": {
  403. "type": "package",
  404. "dependencies": {
  405. "HarfBuzzSharp.NativeAssets.Win32": "7.3.0",
  406. "HarfBuzzSharp.NativeAssets.macOS": "7.3.0"
  407. },
  408. "compile": {
  409. "lib/net6.0/HarfBuzzSharp.dll": {
  410. "related": ".pdb;.xml"
  411. }
  412. },
  413. "runtime": {
  414. "lib/net6.0/HarfBuzzSharp.dll": {
  415. "related": ".pdb;.xml"
  416. }
  417. }
  418. },
  419. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  420. "type": "package",
  421. "dependencies": {
  422. "HarfBuzzSharp": "7.3.0"
  423. },
  424. "compile": {
  425. "lib/net6.0/_._": {}
  426. },
  427. "runtime": {
  428. "lib/net6.0/_._": {}
  429. },
  430. "runtimeTargets": {
  431. "runtimes/linux-arm/native/libHarfBuzzSharp.so": {
  432. "assetType": "native",
  433. "rid": "linux-arm"
  434. },
  435. "runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
  436. "assetType": "native",
  437. "rid": "linux-arm64"
  438. },
  439. "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
  440. "assetType": "native",
  441. "rid": "linux-musl-x64"
  442. },
  443. "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
  444. "assetType": "native",
  445. "rid": "linux-x64"
  446. }
  447. }
  448. },
  449. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  450. "type": "package",
  451. "compile": {
  452. "lib/net6.0/_._": {}
  453. },
  454. "runtime": {
  455. "lib/net6.0/_._": {}
  456. },
  457. "runtimeTargets": {
  458. "runtimes/osx/native/libHarfBuzzSharp.dylib": {
  459. "assetType": "native",
  460. "rid": "osx"
  461. }
  462. }
  463. },
  464. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
  465. "type": "package",
  466. "compile": {
  467. "lib/netstandard1.0/_._": {}
  468. },
  469. "runtime": {
  470. "lib/netstandard1.0/_._": {}
  471. },
  472. "build": {
  473. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {},
  474. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {}
  475. }
  476. },
  477. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  478. "type": "package",
  479. "compile": {
  480. "lib/net6.0/_._": {}
  481. },
  482. "runtime": {
  483. "lib/net6.0/_._": {}
  484. },
  485. "runtimeTargets": {
  486. "runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
  487. "assetType": "native",
  488. "rid": "win-arm64"
  489. },
  490. "runtimes/win-x64/native/libHarfBuzzSharp.dll": {
  491. "assetType": "native",
  492. "rid": "win-x64"
  493. },
  494. "runtimes/win-x86/native/libHarfBuzzSharp.dll": {
  495. "assetType": "native",
  496. "rid": "win-x86"
  497. }
  498. }
  499. },
  500. "Humanizer.Core/2.14.1": {
  501. "type": "package",
  502. "compile": {
  503. "lib/net6.0/_._": {
  504. "related": ".xml"
  505. }
  506. },
  507. "runtime": {
  508. "lib/net6.0/Humanizer.dll": {
  509. "related": ".xml"
  510. }
  511. }
  512. },
  513. "Markdown.Avalonia.Tight/11.0.2": {
  514. "type": "package",
  515. "dependencies": {
  516. "Avalonia": "11.0.0",
  517. "ColorTextBlock.Avalonia": "11.0.2"
  518. },
  519. "compile": {
  520. "lib/net6.0/Markdown.Avalonia.dll": {}
  521. },
  522. "runtime": {
  523. "lib/net6.0/Markdown.Avalonia.dll": {}
  524. }
  525. },
  526. "MessageBox.Avalonia/3.1.5.1": {
  527. "type": "package",
  528. "dependencies": {
  529. "Avalonia": "11.0.5",
  530. "DialogHost.Avalonia": "0.7.7",
  531. "Markdown.Avalonia.Tight": "11.0.2"
  532. },
  533. "compile": {
  534. "lib/netstandard2.0/MsBox.Avalonia.dll": {}
  535. },
  536. "runtime": {
  537. "lib/netstandard2.0/MsBox.Avalonia.dll": {}
  538. }
  539. },
  540. "MicroCom.Runtime/0.11.0": {
  541. "type": "package",
  542. "compile": {
  543. "lib/net5.0/MicroCom.Runtime.dll": {}
  544. },
  545. "runtime": {
  546. "lib/net5.0/MicroCom.Runtime.dll": {}
  547. }
  548. },
  549. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  550. "type": "package",
  551. "build": {
  552. "build/_._": {}
  553. }
  554. },
  555. "Microsoft.CodeAnalysis.Common/3.8.0": {
  556. "type": "package",
  557. "dependencies": {
  558. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  559. "System.Collections.Immutable": "5.0.0",
  560. "System.Memory": "4.5.4",
  561. "System.Reflection.Metadata": "5.0.0",
  562. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  563. "System.Text.Encoding.CodePages": "4.5.1",
  564. "System.Threading.Tasks.Extensions": "4.5.4"
  565. },
  566. "compile": {
  567. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  568. "related": ".pdb;.xml"
  569. }
  570. },
  571. "runtime": {
  572. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  573. "related": ".pdb;.xml"
  574. }
  575. },
  576. "resource": {
  577. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  578. "locale": "cs"
  579. },
  580. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  581. "locale": "de"
  582. },
  583. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  584. "locale": "es"
  585. },
  586. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  587. "locale": "fr"
  588. },
  589. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  590. "locale": "it"
  591. },
  592. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  593. "locale": "ja"
  594. },
  595. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  596. "locale": "ko"
  597. },
  598. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  599. "locale": "pl"
  600. },
  601. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  602. "locale": "pt-BR"
  603. },
  604. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  605. "locale": "ru"
  606. },
  607. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  608. "locale": "tr"
  609. },
  610. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  611. "locale": "zh-Hans"
  612. },
  613. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  614. "locale": "zh-Hant"
  615. }
  616. }
  617. },
  618. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  619. "type": "package",
  620. "dependencies": {
  621. "Microsoft.CodeAnalysis.Common": "[3.8.0]"
  622. },
  623. "compile": {
  624. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  625. "related": ".pdb;.xml"
  626. }
  627. },
  628. "runtime": {
  629. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  630. "related": ".pdb;.xml"
  631. }
  632. },
  633. "resource": {
  634. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  635. "locale": "cs"
  636. },
  637. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  638. "locale": "de"
  639. },
  640. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  641. "locale": "es"
  642. },
  643. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  644. "locale": "fr"
  645. },
  646. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  647. "locale": "it"
  648. },
  649. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  650. "locale": "ja"
  651. },
  652. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  653. "locale": "ko"
  654. },
  655. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  656. "locale": "pl"
  657. },
  658. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  659. "locale": "pt-BR"
  660. },
  661. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  662. "locale": "ru"
  663. },
  664. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  665. "locale": "tr"
  666. },
  667. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  668. "locale": "zh-Hans"
  669. },
  670. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  671. "locale": "zh-Hant"
  672. }
  673. }
  674. },
  675. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.CSharp": "4.3.0",
  679. "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
  680. "Microsoft.CodeAnalysis.Common": "[3.8.0]",
  681. "Microsoft.CodeAnalysis.Scripting.Common": "[3.8.0]"
  682. },
  683. "compile": {
  684. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  685. "related": ".pdb;.xml"
  686. }
  687. },
  688. "runtime": {
  689. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  690. "related": ".pdb;.xml"
  691. }
  692. },
  693. "resource": {
  694. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  695. "locale": "cs"
  696. },
  697. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  698. "locale": "de"
  699. },
  700. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  701. "locale": "es"
  702. },
  703. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  704. "locale": "fr"
  705. },
  706. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  707. "locale": "it"
  708. },
  709. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  710. "locale": "ja"
  711. },
  712. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  713. "locale": "ko"
  714. },
  715. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  716. "locale": "pl"
  717. },
  718. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  719. "locale": "pt-BR"
  720. },
  721. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  722. "locale": "ru"
  723. },
  724. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  725. "locale": "tr"
  726. },
  727. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  728. "locale": "zh-Hans"
  729. },
  730. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  731. "locale": "zh-Hant"
  732. }
  733. }
  734. },
  735. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.CodeAnalysis.Common": "[3.8.0]"
  739. },
  740. "compile": {
  741. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  742. "related": ".pdb;.xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  747. "related": ".pdb;.xml"
  748. }
  749. },
  750. "resource": {
  751. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  752. "locale": "cs"
  753. },
  754. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  755. "locale": "de"
  756. },
  757. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  758. "locale": "es"
  759. },
  760. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  761. "locale": "fr"
  762. },
  763. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  764. "locale": "it"
  765. },
  766. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  767. "locale": "ja"
  768. },
  769. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  770. "locale": "ko"
  771. },
  772. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  773. "locale": "pl"
  774. },
  775. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  776. "locale": "pt-BR"
  777. },
  778. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  779. "locale": "ru"
  780. },
  781. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  782. "locale": "tr"
  783. },
  784. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  785. "locale": "zh-Hans"
  786. },
  787. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  788. "locale": "zh-Hant"
  789. }
  790. }
  791. },
  792. "Microsoft.CSharp/4.3.0": {
  793. "type": "package",
  794. "dependencies": {
  795. "System.Collections": "4.3.0",
  796. "System.Diagnostics.Debug": "4.3.0",
  797. "System.Dynamic.Runtime": "4.3.0",
  798. "System.Globalization": "4.3.0",
  799. "System.Linq": "4.3.0",
  800. "System.Linq.Expressions": "4.3.0",
  801. "System.ObjectModel": "4.3.0",
  802. "System.Reflection": "4.3.0",
  803. "System.Reflection.Extensions": "4.3.0",
  804. "System.Reflection.Primitives": "4.3.0",
  805. "System.Reflection.TypeExtensions": "4.3.0",
  806. "System.Resources.ResourceManager": "4.3.0",
  807. "System.Runtime": "4.3.0",
  808. "System.Runtime.Extensions": "4.3.0",
  809. "System.Runtime.InteropServices": "4.3.0",
  810. "System.Threading": "4.3.0"
  811. },
  812. "compile": {
  813. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  814. "related": ".xml"
  815. }
  816. },
  817. "runtime": {
  818. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  819. }
  820. },
  821. "Microsoft.EntityFrameworkCore/7.0.15": {
  822. "type": "package",
  823. "dependencies": {
  824. "Microsoft.EntityFrameworkCore.Abstractions": "7.0.15",
  825. "Microsoft.EntityFrameworkCore.Analyzers": "7.0.15",
  826. "Microsoft.Extensions.Caching.Memory": "7.0.0",
  827. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  828. "Microsoft.Extensions.Logging": "7.0.0"
  829. },
  830. "compile": {
  831. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  832. "related": ".xml"
  833. }
  834. },
  835. "runtime": {
  836. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  837. "related": ".xml"
  838. }
  839. },
  840. "build": {
  841. "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {}
  842. }
  843. },
  844. "Microsoft.EntityFrameworkCore.Abstractions/7.0.15": {
  845. "type": "package",
  846. "compile": {
  847. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  848. "related": ".xml"
  849. }
  850. },
  851. "runtime": {
  852. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  853. "related": ".xml"
  854. }
  855. }
  856. },
  857. "Microsoft.EntityFrameworkCore.Analyzers/7.0.15": {
  858. "type": "package",
  859. "compile": {
  860. "lib/netstandard2.0/_._": {}
  861. },
  862. "runtime": {
  863. "lib/netstandard2.0/_._": {}
  864. }
  865. },
  866. "Microsoft.EntityFrameworkCore.Design/7.0.15": {
  867. "type": "package",
  868. "dependencies": {
  869. "Humanizer.Core": "2.14.1",
  870. "Microsoft.EntityFrameworkCore.Relational": "7.0.15",
  871. "Microsoft.Extensions.DependencyModel": "7.0.0",
  872. "Mono.TextTemplating": "2.2.1"
  873. },
  874. "compile": {
  875. "lib/net6.0/_._": {
  876. "related": ".xml"
  877. }
  878. },
  879. "runtime": {
  880. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "build": {
  885. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  886. }
  887. },
  888. "Microsoft.EntityFrameworkCore.Relational/7.0.15": {
  889. "type": "package",
  890. "dependencies": {
  891. "Microsoft.EntityFrameworkCore": "7.0.15",
  892. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  893. },
  894. "compile": {
  895. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  896. "related": ".xml"
  897. }
  898. },
  899. "runtime": {
  900. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  901. "related": ".xml"
  902. }
  903. }
  904. },
  905. "Microsoft.EntityFrameworkCore.Tools/7.0.15": {
  906. "type": "package",
  907. "dependencies": {
  908. "Microsoft.EntityFrameworkCore.Design": "7.0.15"
  909. },
  910. "compile": {
  911. "lib/net6.0/_._": {}
  912. },
  913. "runtime": {
  914. "lib/net6.0/_._": {}
  915. }
  916. },
  917. "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.Extensions.Primitives": "7.0.0"
  921. },
  922. "compile": {
  923. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  924. "related": ".xml"
  925. }
  926. },
  927. "runtime": {
  928. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  929. "related": ".xml"
  930. }
  931. },
  932. "build": {
  933. "buildTransitive/net6.0/_._": {}
  934. }
  935. },
  936. "Microsoft.Extensions.Caching.Memory/7.0.0": {
  937. "type": "package",
  938. "dependencies": {
  939. "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
  940. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  941. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  942. "Microsoft.Extensions.Options": "7.0.0",
  943. "Microsoft.Extensions.Primitives": "7.0.0"
  944. },
  945. "compile": {
  946. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
  947. "related": ".xml"
  948. }
  949. },
  950. "runtime": {
  951. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
  952. "related": ".xml"
  953. }
  954. },
  955. "build": {
  956. "buildTransitive/net6.0/_._": {}
  957. }
  958. },
  959. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  960. "type": "package",
  961. "dependencies": {
  962. "Microsoft.Extensions.Primitives": "7.0.0"
  963. },
  964. "compile": {
  965. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtime": {
  970. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  971. "related": ".xml"
  972. }
  973. },
  974. "build": {
  975. "buildTransitive/net6.0/_._": {}
  976. }
  977. },
  978. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  979. "type": "package",
  980. "dependencies": {
  981. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  982. },
  983. "compile": {
  984. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
  985. "related": ".xml"
  986. }
  987. },
  988. "runtime": {
  989. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
  990. "related": ".xml"
  991. }
  992. },
  993. "build": {
  994. "buildTransitive/net6.0/_._": {}
  995. }
  996. },
  997. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  998. "type": "package",
  999. "compile": {
  1000. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1001. "related": ".xml"
  1002. }
  1003. },
  1004. "runtime": {
  1005. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "build": {
  1010. "buildTransitive/net6.0/_._": {}
  1011. }
  1012. },
  1013. "Microsoft.Extensions.DependencyModel/7.0.0": {
  1014. "type": "package",
  1015. "dependencies": {
  1016. "System.Text.Encodings.Web": "7.0.0",
  1017. "System.Text.Json": "7.0.0"
  1018. },
  1019. "compile": {
  1020. "lib/net7.0/_._": {
  1021. "related": ".xml"
  1022. }
  1023. },
  1024. "runtime": {
  1025. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
  1026. "related": ".xml"
  1027. }
  1028. },
  1029. "build": {
  1030. "buildTransitive/net6.0/_._": {}
  1031. }
  1032. },
  1033. "Microsoft.Extensions.Logging/7.0.0": {
  1034. "type": "package",
  1035. "dependencies": {
  1036. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  1037. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  1038. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  1039. "Microsoft.Extensions.Options": "7.0.0"
  1040. },
  1041. "compile": {
  1042. "lib/net7.0/Microsoft.Extensions.Logging.dll": {
  1043. "related": ".xml"
  1044. }
  1045. },
  1046. "runtime": {
  1047. "lib/net7.0/Microsoft.Extensions.Logging.dll": {
  1048. "related": ".xml"
  1049. }
  1050. },
  1051. "build": {
  1052. "buildTransitive/net6.0/_._": {}
  1053. }
  1054. },
  1055. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  1056. "type": "package",
  1057. "compile": {
  1058. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1064. "related": ".xml"
  1065. }
  1066. },
  1067. "build": {
  1068. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  1069. }
  1070. },
  1071. "Microsoft.Extensions.Options/7.0.0": {
  1072. "type": "package",
  1073. "dependencies": {
  1074. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  1075. "Microsoft.Extensions.Primitives": "7.0.0"
  1076. },
  1077. "compile": {
  1078. "lib/net7.0/Microsoft.Extensions.Options.dll": {
  1079. "related": ".xml"
  1080. }
  1081. },
  1082. "runtime": {
  1083. "lib/net7.0/Microsoft.Extensions.Options.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "build": {
  1088. "buildTransitive/net6.0/_._": {}
  1089. }
  1090. },
  1091. "Microsoft.Extensions.Primitives/7.0.0": {
  1092. "type": "package",
  1093. "compile": {
  1094. "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
  1095. "related": ".xml"
  1096. }
  1097. },
  1098. "runtime": {
  1099. "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
  1100. "related": ".xml"
  1101. }
  1102. },
  1103. "build": {
  1104. "buildTransitive/net6.0/_._": {}
  1105. }
  1106. },
  1107. "Microsoft.NETCore.Platforms/2.1.2": {
  1108. "type": "package",
  1109. "compile": {
  1110. "lib/netstandard1.0/_._": {}
  1111. },
  1112. "runtime": {
  1113. "lib/netstandard1.0/_._": {}
  1114. }
  1115. },
  1116. "Microsoft.NETCore.Targets/1.1.0": {
  1117. "type": "package",
  1118. "compile": {
  1119. "lib/netstandard1.0/_._": {}
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard1.0/_._": {}
  1123. }
  1124. },
  1125. "Microsoft.Win32.SystemEvents/6.0.0": {
  1126. "type": "package",
  1127. "compile": {
  1128. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1129. "related": ".xml"
  1130. }
  1131. },
  1132. "runtime": {
  1133. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1134. "related": ".xml"
  1135. }
  1136. },
  1137. "build": {
  1138. "buildTransitive/netcoreapp3.1/_._": {}
  1139. },
  1140. "runtimeTargets": {
  1141. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1142. "assetType": "runtime",
  1143. "rid": "win"
  1144. }
  1145. }
  1146. },
  1147. "Mono.TextTemplating/2.2.1": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "System.CodeDom": "4.4.0"
  1151. },
  1152. "compile": {
  1153. "lib/netstandard2.0/_._": {}
  1154. },
  1155. "runtime": {
  1156. "lib/netstandard2.0/Mono.TextTemplating.dll": {}
  1157. }
  1158. },
  1159. "Npgsql/7.0.6": {
  1160. "type": "package",
  1161. "dependencies": {
  1162. "Microsoft.Extensions.Logging.Abstractions": "6.0.0"
  1163. },
  1164. "compile": {
  1165. "lib/net7.0/Npgsql.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "runtime": {
  1170. "lib/net7.0/Npgsql.dll": {
  1171. "related": ".xml"
  1172. }
  1173. }
  1174. },
  1175. "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.11": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.EntityFrameworkCore": "[7.0.11, 8.0.0)",
  1179. "Microsoft.EntityFrameworkCore.Abstractions": "[7.0.11, 8.0.0)",
  1180. "Microsoft.EntityFrameworkCore.Relational": "[7.0.11, 8.0.0)",
  1181. "Npgsql": "7.0.6"
  1182. },
  1183. "compile": {
  1184. "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
  1185. "related": ".xml"
  1186. }
  1187. },
  1188. "runtime": {
  1189. "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
  1190. "related": ".xml"
  1191. }
  1192. }
  1193. },
  1194. "ReactiveUI/18.3.1": {
  1195. "type": "package",
  1196. "dependencies": {
  1197. "DynamicData": "7.9.5",
  1198. "Splat": "14.4.1"
  1199. },
  1200. "compile": {
  1201. "lib/net6.0/ReactiveUI.dll": {
  1202. "related": ".xml"
  1203. }
  1204. },
  1205. "runtime": {
  1206. "lib/net6.0/ReactiveUI.dll": {
  1207. "related": ".xml"
  1208. }
  1209. }
  1210. },
  1211. "SkiaSharp/2.88.6": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "SkiaSharp.NativeAssets.Win32": "2.88.6",
  1215. "SkiaSharp.NativeAssets.macOS": "2.88.6"
  1216. },
  1217. "compile": {
  1218. "lib/net6.0/SkiaSharp.dll": {
  1219. "related": ".pdb;.xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/net6.0/SkiaSharp.dll": {
  1224. "related": ".pdb;.xml"
  1225. }
  1226. }
  1227. },
  1228. "SkiaSharp.NativeAssets.Linux/2.88.6": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "SkiaSharp": "2.88.6"
  1232. },
  1233. "compile": {
  1234. "lib/net6.0/_._": {}
  1235. },
  1236. "runtime": {
  1237. "lib/net6.0/_._": {}
  1238. },
  1239. "runtimeTargets": {
  1240. "runtimes/linux-arm/native/libSkiaSharp.so": {
  1241. "assetType": "native",
  1242. "rid": "linux-arm"
  1243. },
  1244. "runtimes/linux-arm64/native/libSkiaSharp.so": {
  1245. "assetType": "native",
  1246. "rid": "linux-arm64"
  1247. },
  1248. "runtimes/linux-musl-x64/native/libSkiaSharp.so": {
  1249. "assetType": "native",
  1250. "rid": "linux-musl-x64"
  1251. },
  1252. "runtimes/linux-x64/native/libSkiaSharp.so": {
  1253. "assetType": "native",
  1254. "rid": "linux-x64"
  1255. }
  1256. }
  1257. },
  1258. "SkiaSharp.NativeAssets.macOS/2.88.6": {
  1259. "type": "package",
  1260. "compile": {
  1261. "lib/net6.0/_._": {}
  1262. },
  1263. "runtime": {
  1264. "lib/net6.0/_._": {}
  1265. },
  1266. "runtimeTargets": {
  1267. "runtimes/osx/native/libSkiaSharp.dylib": {
  1268. "assetType": "native",
  1269. "rid": "osx"
  1270. }
  1271. }
  1272. },
  1273. "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
  1274. "type": "package",
  1275. "compile": {
  1276. "lib/netstandard1.0/_._": {}
  1277. },
  1278. "runtime": {
  1279. "lib/netstandard1.0/_._": {}
  1280. },
  1281. "build": {
  1282. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props": {},
  1283. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets": {}
  1284. }
  1285. },
  1286. "SkiaSharp.NativeAssets.Win32/2.88.6": {
  1287. "type": "package",
  1288. "compile": {
  1289. "lib/net6.0/_._": {}
  1290. },
  1291. "runtime": {
  1292. "lib/net6.0/_._": {}
  1293. },
  1294. "runtimeTargets": {
  1295. "runtimes/win-arm64/native/libSkiaSharp.dll": {
  1296. "assetType": "native",
  1297. "rid": "win-arm64"
  1298. },
  1299. "runtimes/win-x64/native/libSkiaSharp.dll": {
  1300. "assetType": "native",
  1301. "rid": "win-x64"
  1302. },
  1303. "runtimes/win-x86/native/libSkiaSharp.dll": {
  1304. "assetType": "native",
  1305. "rid": "win-x86"
  1306. }
  1307. }
  1308. },
  1309. "Splat/14.4.1": {
  1310. "type": "package",
  1311. "compile": {
  1312. "lib/net6.0/Splat.dll": {
  1313. "related": ".xml"
  1314. }
  1315. },
  1316. "runtime": {
  1317. "lib/net6.0/Splat.dll": {
  1318. "related": ".xml"
  1319. }
  1320. }
  1321. },
  1322. "System.CodeDom/4.4.0": {
  1323. "type": "package",
  1324. "compile": {
  1325. "ref/netstandard2.0/_._": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "runtime": {
  1330. "lib/netstandard2.0/System.CodeDom.dll": {}
  1331. }
  1332. },
  1333. "System.Collections/4.3.0": {
  1334. "type": "package",
  1335. "dependencies": {
  1336. "Microsoft.NETCore.Platforms": "1.1.0",
  1337. "Microsoft.NETCore.Targets": "1.1.0",
  1338. "System.Runtime": "4.3.0"
  1339. },
  1340. "compile": {
  1341. "ref/netstandard1.3/_._": {
  1342. "related": ".xml"
  1343. }
  1344. }
  1345. },
  1346. "System.Collections.Immutable/5.0.0": {
  1347. "type": "package",
  1348. "compile": {
  1349. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1350. "related": ".xml"
  1351. }
  1352. },
  1353. "runtime": {
  1354. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1355. "related": ".xml"
  1356. }
  1357. }
  1358. },
  1359. "System.ComponentModel.Annotations/4.5.0": {
  1360. "type": "package",
  1361. "compile": {
  1362. "ref/netcoreapp2.0/_._": {}
  1363. },
  1364. "runtime": {
  1365. "lib/netcoreapp2.0/_._": {}
  1366. }
  1367. },
  1368. "System.Diagnostics.Debug/4.3.0": {
  1369. "type": "package",
  1370. "dependencies": {
  1371. "Microsoft.NETCore.Platforms": "1.1.0",
  1372. "Microsoft.NETCore.Targets": "1.1.0",
  1373. "System.Runtime": "4.3.0"
  1374. },
  1375. "compile": {
  1376. "ref/netstandard1.3/_._": {
  1377. "related": ".xml"
  1378. }
  1379. }
  1380. },
  1381. "System.Drawing.Common/6.0.0": {
  1382. "type": "package",
  1383. "dependencies": {
  1384. "Microsoft.Win32.SystemEvents": "6.0.0"
  1385. },
  1386. "compile": {
  1387. "lib/net6.0/System.Drawing.Common.dll": {
  1388. "related": ".xml"
  1389. }
  1390. },
  1391. "runtime": {
  1392. "lib/net6.0/System.Drawing.Common.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "build": {
  1397. "buildTransitive/netcoreapp3.1/_._": {}
  1398. },
  1399. "runtimeTargets": {
  1400. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1401. "assetType": "runtime",
  1402. "rid": "unix"
  1403. },
  1404. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1405. "assetType": "runtime",
  1406. "rid": "win"
  1407. }
  1408. }
  1409. },
  1410. "System.Dynamic.Runtime/4.3.0": {
  1411. "type": "package",
  1412. "dependencies": {
  1413. "System.Collections": "4.3.0",
  1414. "System.Diagnostics.Debug": "4.3.0",
  1415. "System.Linq": "4.3.0",
  1416. "System.Linq.Expressions": "4.3.0",
  1417. "System.ObjectModel": "4.3.0",
  1418. "System.Reflection": "4.3.0",
  1419. "System.Reflection.Emit": "4.3.0",
  1420. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1421. "System.Reflection.Primitives": "4.3.0",
  1422. "System.Reflection.TypeExtensions": "4.3.0",
  1423. "System.Resources.ResourceManager": "4.3.0",
  1424. "System.Runtime": "4.3.0",
  1425. "System.Runtime.Extensions": "4.3.0",
  1426. "System.Threading": "4.3.0"
  1427. },
  1428. "compile": {
  1429. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1430. "related": ".xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1435. }
  1436. },
  1437. "System.Globalization/4.3.0": {
  1438. "type": "package",
  1439. "dependencies": {
  1440. "Microsoft.NETCore.Platforms": "1.1.0",
  1441. "Microsoft.NETCore.Targets": "1.1.0",
  1442. "System.Runtime": "4.3.0"
  1443. },
  1444. "compile": {
  1445. "ref/netstandard1.3/_._": {
  1446. "related": ".xml"
  1447. }
  1448. }
  1449. },
  1450. "System.IO/4.3.0": {
  1451. "type": "package",
  1452. "dependencies": {
  1453. "Microsoft.NETCore.Platforms": "1.1.0",
  1454. "Microsoft.NETCore.Targets": "1.1.0",
  1455. "System.Runtime": "4.3.0",
  1456. "System.Text.Encoding": "4.3.0",
  1457. "System.Threading.Tasks": "4.3.0"
  1458. },
  1459. "compile": {
  1460. "ref/netstandard1.5/System.IO.dll": {
  1461. "related": ".xml"
  1462. }
  1463. }
  1464. },
  1465. "System.IO.Pipelines/6.0.0": {
  1466. "type": "package",
  1467. "compile": {
  1468. "lib/net6.0/System.IO.Pipelines.dll": {
  1469. "related": ".xml"
  1470. }
  1471. },
  1472. "runtime": {
  1473. "lib/net6.0/System.IO.Pipelines.dll": {
  1474. "related": ".xml"
  1475. }
  1476. },
  1477. "build": {
  1478. "buildTransitive/netcoreapp3.1/_._": {}
  1479. }
  1480. },
  1481. "System.Linq/4.3.0": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "System.Collections": "4.3.0",
  1485. "System.Diagnostics.Debug": "4.3.0",
  1486. "System.Resources.ResourceManager": "4.3.0",
  1487. "System.Runtime": "4.3.0",
  1488. "System.Runtime.Extensions": "4.3.0"
  1489. },
  1490. "compile": {
  1491. "ref/netstandard1.6/_._": {
  1492. "related": ".xml"
  1493. }
  1494. },
  1495. "runtime": {
  1496. "lib/netstandard1.6/System.Linq.dll": {}
  1497. }
  1498. },
  1499. "System.Linq.Expressions/4.3.0": {
  1500. "type": "package",
  1501. "dependencies": {
  1502. "System.Collections": "4.3.0",
  1503. "System.Diagnostics.Debug": "4.3.0",
  1504. "System.Globalization": "4.3.0",
  1505. "System.IO": "4.3.0",
  1506. "System.Linq": "4.3.0",
  1507. "System.ObjectModel": "4.3.0",
  1508. "System.Reflection": "4.3.0",
  1509. "System.Reflection.Emit": "4.3.0",
  1510. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1511. "System.Reflection.Emit.Lightweight": "4.3.0",
  1512. "System.Reflection.Extensions": "4.3.0",
  1513. "System.Reflection.Primitives": "4.3.0",
  1514. "System.Reflection.TypeExtensions": "4.3.0",
  1515. "System.Resources.ResourceManager": "4.3.0",
  1516. "System.Runtime": "4.3.0",
  1517. "System.Runtime.Extensions": "4.3.0",
  1518. "System.Threading": "4.3.0"
  1519. },
  1520. "compile": {
  1521. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1522. "related": ".xml"
  1523. }
  1524. },
  1525. "runtime": {
  1526. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1527. }
  1528. },
  1529. "System.Memory/4.5.4": {
  1530. "type": "package",
  1531. "compile": {
  1532. "ref/netcoreapp2.1/_._": {}
  1533. },
  1534. "runtime": {
  1535. "lib/netcoreapp2.1/_._": {}
  1536. }
  1537. },
  1538. "System.Numerics.Vectors/4.5.0": {
  1539. "type": "package",
  1540. "compile": {
  1541. "ref/netcoreapp2.0/_._": {}
  1542. },
  1543. "runtime": {
  1544. "lib/netcoreapp2.0/_._": {}
  1545. }
  1546. },
  1547. "System.ObjectModel/4.3.0": {
  1548. "type": "package",
  1549. "dependencies": {
  1550. "System.Collections": "4.3.0",
  1551. "System.Diagnostics.Debug": "4.3.0",
  1552. "System.Resources.ResourceManager": "4.3.0",
  1553. "System.Runtime": "4.3.0",
  1554. "System.Threading": "4.3.0"
  1555. },
  1556. "compile": {
  1557. "ref/netstandard1.3/System.ObjectModel.dll": {
  1558. "related": ".xml"
  1559. }
  1560. },
  1561. "runtime": {
  1562. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1563. }
  1564. },
  1565. "System.Reactive/6.0.0": {
  1566. "type": "package",
  1567. "compile": {
  1568. "lib/net6.0/System.Reactive.dll": {
  1569. "related": ".xml"
  1570. }
  1571. },
  1572. "runtime": {
  1573. "lib/net6.0/System.Reactive.dll": {
  1574. "related": ".xml"
  1575. }
  1576. },
  1577. "build": {
  1578. "buildTransitive/net6.0/_._": {}
  1579. }
  1580. },
  1581. "System.Reflection/4.3.0": {
  1582. "type": "package",
  1583. "dependencies": {
  1584. "Microsoft.NETCore.Platforms": "1.1.0",
  1585. "Microsoft.NETCore.Targets": "1.1.0",
  1586. "System.IO": "4.3.0",
  1587. "System.Reflection.Primitives": "4.3.0",
  1588. "System.Runtime": "4.3.0"
  1589. },
  1590. "compile": {
  1591. "ref/netstandard1.5/System.Reflection.dll": {
  1592. "related": ".xml"
  1593. }
  1594. }
  1595. },
  1596. "System.Reflection.Emit/4.3.0": {
  1597. "type": "package",
  1598. "dependencies": {
  1599. "System.IO": "4.3.0",
  1600. "System.Reflection": "4.3.0",
  1601. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1602. "System.Reflection.Primitives": "4.3.0",
  1603. "System.Runtime": "4.3.0"
  1604. },
  1605. "compile": {
  1606. "ref/netstandard1.1/_._": {
  1607. "related": ".xml"
  1608. }
  1609. },
  1610. "runtime": {
  1611. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1612. }
  1613. },
  1614. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1615. "type": "package",
  1616. "dependencies": {
  1617. "System.Reflection": "4.3.0",
  1618. "System.Reflection.Primitives": "4.3.0",
  1619. "System.Runtime": "4.3.0"
  1620. },
  1621. "compile": {
  1622. "ref/netstandard1.0/_._": {
  1623. "related": ".xml"
  1624. }
  1625. },
  1626. "runtime": {
  1627. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1628. }
  1629. },
  1630. "System.Reflection.Emit.Lightweight/4.3.0": {
  1631. "type": "package",
  1632. "dependencies": {
  1633. "System.Reflection": "4.3.0",
  1634. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1635. "System.Reflection.Primitives": "4.3.0",
  1636. "System.Runtime": "4.3.0"
  1637. },
  1638. "compile": {
  1639. "ref/netstandard1.0/_._": {
  1640. "related": ".xml"
  1641. }
  1642. },
  1643. "runtime": {
  1644. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1645. }
  1646. },
  1647. "System.Reflection.Extensions/4.3.0": {
  1648. "type": "package",
  1649. "dependencies": {
  1650. "Microsoft.NETCore.Platforms": "1.1.0",
  1651. "Microsoft.NETCore.Targets": "1.1.0",
  1652. "System.Reflection": "4.3.0",
  1653. "System.Runtime": "4.3.0"
  1654. },
  1655. "compile": {
  1656. "ref/netstandard1.0/_._": {
  1657. "related": ".xml"
  1658. }
  1659. }
  1660. },
  1661. "System.Reflection.Metadata/5.0.0": {
  1662. "type": "package",
  1663. "compile": {
  1664. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1665. "related": ".xml"
  1666. }
  1667. },
  1668. "runtime": {
  1669. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1670. "related": ".xml"
  1671. }
  1672. }
  1673. },
  1674. "System.Reflection.Primitives/4.3.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "Microsoft.NETCore.Platforms": "1.1.0",
  1678. "Microsoft.NETCore.Targets": "1.1.0",
  1679. "System.Runtime": "4.3.0"
  1680. },
  1681. "compile": {
  1682. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1683. "related": ".xml"
  1684. }
  1685. }
  1686. },
  1687. "System.Reflection.TypeExtensions/4.3.0": {
  1688. "type": "package",
  1689. "dependencies": {
  1690. "System.Reflection": "4.3.0",
  1691. "System.Runtime": "4.3.0"
  1692. },
  1693. "compile": {
  1694. "ref/netstandard1.5/_._": {
  1695. "related": ".xml"
  1696. }
  1697. },
  1698. "runtime": {
  1699. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1700. }
  1701. },
  1702. "System.Resources.ResourceManager/4.3.0": {
  1703. "type": "package",
  1704. "dependencies": {
  1705. "Microsoft.NETCore.Platforms": "1.1.0",
  1706. "Microsoft.NETCore.Targets": "1.1.0",
  1707. "System.Globalization": "4.3.0",
  1708. "System.Reflection": "4.3.0",
  1709. "System.Runtime": "4.3.0"
  1710. },
  1711. "compile": {
  1712. "ref/netstandard1.0/_._": {
  1713. "related": ".xml"
  1714. }
  1715. }
  1716. },
  1717. "System.Runtime/4.3.0": {
  1718. "type": "package",
  1719. "dependencies": {
  1720. "Microsoft.NETCore.Platforms": "1.1.0",
  1721. "Microsoft.NETCore.Targets": "1.1.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.5/System.Runtime.dll": {
  1725. "related": ".xml"
  1726. }
  1727. }
  1728. },
  1729. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  1730. "type": "package",
  1731. "compile": {
  1732. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtime": {
  1737. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1738. "related": ".xml"
  1739. }
  1740. }
  1741. },
  1742. "System.Runtime.Extensions/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Runtime": "4.3.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.5/_._": {
  1751. "related": ".xml"
  1752. }
  1753. }
  1754. },
  1755. "System.Runtime.Handles/4.3.0": {
  1756. "type": "package",
  1757. "dependencies": {
  1758. "Microsoft.NETCore.Platforms": "1.1.0",
  1759. "Microsoft.NETCore.Targets": "1.1.0",
  1760. "System.Runtime": "4.3.0"
  1761. },
  1762. "compile": {
  1763. "ref/netstandard1.3/_._": {
  1764. "related": ".xml"
  1765. }
  1766. }
  1767. },
  1768. "System.Runtime.InteropServices/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "Microsoft.NETCore.Platforms": "1.1.0",
  1772. "Microsoft.NETCore.Targets": "1.1.0",
  1773. "System.Reflection": "4.3.0",
  1774. "System.Reflection.Primitives": "4.3.0",
  1775. "System.Runtime": "4.3.0",
  1776. "System.Runtime.Handles": "4.3.0"
  1777. },
  1778. "compile": {
  1779. "ref/netcoreapp1.1/_._": {}
  1780. }
  1781. },
  1782. "System.Text.Encoding/4.3.0": {
  1783. "type": "package",
  1784. "dependencies": {
  1785. "Microsoft.NETCore.Platforms": "1.1.0",
  1786. "Microsoft.NETCore.Targets": "1.1.0",
  1787. "System.Runtime": "4.3.0"
  1788. },
  1789. "compile": {
  1790. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1791. "related": ".xml"
  1792. }
  1793. }
  1794. },
  1795. "System.Text.Encoding.CodePages/4.5.1": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "2.1.2",
  1799. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  1800. },
  1801. "compile": {
  1802. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1803. },
  1804. "runtime": {
  1805. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1806. },
  1807. "runtimeTargets": {
  1808. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1809. "assetType": "runtime",
  1810. "rid": "win"
  1811. }
  1812. }
  1813. },
  1814. "System.Text.Encodings.Web/7.0.0": {
  1815. "type": "package",
  1816. "compile": {
  1817. "lib/net7.0/_._": {
  1818. "related": ".xml"
  1819. }
  1820. },
  1821. "runtime": {
  1822. "lib/net7.0/System.Text.Encodings.Web.dll": {
  1823. "related": ".xml"
  1824. }
  1825. },
  1826. "build": {
  1827. "buildTransitive/net6.0/_._": {}
  1828. },
  1829. "runtimeTargets": {
  1830. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
  1831. "assetType": "runtime",
  1832. "rid": "browser"
  1833. }
  1834. }
  1835. },
  1836. "System.Text.Json/7.0.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "System.Text.Encodings.Web": "7.0.0"
  1840. },
  1841. "compile": {
  1842. "lib/net7.0/_._": {
  1843. "related": ".xml"
  1844. }
  1845. },
  1846. "runtime": {
  1847. "lib/net7.0/System.Text.Json.dll": {
  1848. "related": ".xml"
  1849. }
  1850. },
  1851. "build": {
  1852. "buildTransitive/net6.0/System.Text.Json.targets": {}
  1853. }
  1854. },
  1855. "System.Threading/4.3.0": {
  1856. "type": "package",
  1857. "dependencies": {
  1858. "System.Runtime": "4.3.0",
  1859. "System.Threading.Tasks": "4.3.0"
  1860. },
  1861. "compile": {
  1862. "ref/netstandard1.3/_._": {
  1863. "related": ".xml"
  1864. }
  1865. },
  1866. "runtime": {
  1867. "lib/netstandard1.3/System.Threading.dll": {}
  1868. }
  1869. },
  1870. "System.Threading.Tasks/4.3.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "Microsoft.NETCore.Platforms": "1.1.0",
  1874. "Microsoft.NETCore.Targets": "1.1.0",
  1875. "System.Runtime": "4.3.0"
  1876. },
  1877. "compile": {
  1878. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1879. "related": ".xml"
  1880. }
  1881. }
  1882. },
  1883. "System.Threading.Tasks.Extensions/4.5.4": {
  1884. "type": "package",
  1885. "compile": {
  1886. "ref/netcoreapp2.1/_._": {}
  1887. },
  1888. "runtime": {
  1889. "lib/netcoreapp2.1/_._": {}
  1890. }
  1891. },
  1892. "Tmds.DBus.Protocol/0.15.0": {
  1893. "type": "package",
  1894. "dependencies": {
  1895. "System.IO.Pipelines": "6.0.0"
  1896. },
  1897. "compile": {
  1898. "lib/net6.0/Tmds.DBus.Protocol.dll": {}
  1899. },
  1900. "runtime": {
  1901. "lib/net6.0/Tmds.DBus.Protocol.dll": {}
  1902. }
  1903. }
  1904. }
  1905. },
  1906. "libraries": {
  1907. "Avalonia/11.0.6": {
  1908. "sha512": "BhuWLzZOWKqv6i0dTvbx/jsSwqZDhY4093+ihRai0TIc48kgGhX3TpUGRsRFfzfnb7FHwlkgZHjNgleVX+LEJg==",
  1909. "type": "package",
  1910. "path": "avalonia/11.0.6",
  1911. "hasTools": true,
  1912. "files": [
  1913. ".nupkg.metadata",
  1914. ".signature.p7s",
  1915. "Icon.png",
  1916. "analyzers/dotnet/cs/Avalonia.Analyzers.dll",
  1917. "analyzers/dotnet/cs/Avalonia.Generators.dll",
  1918. "avalonia.11.0.6.nupkg.sha512",
  1919. "avalonia.nuspec",
  1920. "build/Avalonia.Generators.props",
  1921. "build/Avalonia.props",
  1922. "build/Avalonia.targets",
  1923. "build/AvaloniaBuildTasks.props",
  1924. "build/AvaloniaBuildTasks.targets",
  1925. "build/AvaloniaItemSchema.xaml",
  1926. "build/AvaloniaPrivateApis.targets",
  1927. "build/AvaloniaVersion.props",
  1928. "buildTransitive/Avalonia.Generators.props",
  1929. "buildTransitive/Avalonia.props",
  1930. "buildTransitive/Avalonia.targets",
  1931. "buildTransitive/AvaloniaBuildTasks.props",
  1932. "buildTransitive/AvaloniaBuildTasks.targets",
  1933. "buildTransitive/AvaloniaItemSchema.xaml",
  1934. "buildTransitive/AvaloniaPrivateApis.targets",
  1935. "lib/net461/Avalonia.Base.dll",
  1936. "lib/net461/Avalonia.Base.xml",
  1937. "lib/net461/Avalonia.Controls.dll",
  1938. "lib/net461/Avalonia.Controls.xml",
  1939. "lib/net461/Avalonia.DesignerSupport.dll",
  1940. "lib/net461/Avalonia.DesignerSupport.xml",
  1941. "lib/net461/Avalonia.Dialogs.dll",
  1942. "lib/net461/Avalonia.Dialogs.xml",
  1943. "lib/net461/Avalonia.Markup.Xaml.dll",
  1944. "lib/net461/Avalonia.Markup.Xaml.xml",
  1945. "lib/net461/Avalonia.Markup.dll",
  1946. "lib/net461/Avalonia.Markup.xml",
  1947. "lib/net461/Avalonia.Metal.dll",
  1948. "lib/net461/Avalonia.Metal.xml",
  1949. "lib/net461/Avalonia.MicroCom.dll",
  1950. "lib/net461/Avalonia.MicroCom.xml",
  1951. "lib/net461/Avalonia.OpenGL.dll",
  1952. "lib/net461/Avalonia.OpenGL.xml",
  1953. "lib/net461/Avalonia.dll",
  1954. "lib/net461/Avalonia.xml",
  1955. "lib/net6.0/Avalonia.Base.dll",
  1956. "lib/net6.0/Avalonia.Base.xml",
  1957. "lib/net6.0/Avalonia.Controls.dll",
  1958. "lib/net6.0/Avalonia.Controls.xml",
  1959. "lib/net6.0/Avalonia.DesignerSupport.dll",
  1960. "lib/net6.0/Avalonia.DesignerSupport.xml",
  1961. "lib/net6.0/Avalonia.Dialogs.dll",
  1962. "lib/net6.0/Avalonia.Dialogs.xml",
  1963. "lib/net6.0/Avalonia.Markup.Xaml.dll",
  1964. "lib/net6.0/Avalonia.Markup.Xaml.xml",
  1965. "lib/net6.0/Avalonia.Markup.dll",
  1966. "lib/net6.0/Avalonia.Markup.xml",
  1967. "lib/net6.0/Avalonia.Metal.dll",
  1968. "lib/net6.0/Avalonia.Metal.xml",
  1969. "lib/net6.0/Avalonia.MicroCom.dll",
  1970. "lib/net6.0/Avalonia.MicroCom.xml",
  1971. "lib/net6.0/Avalonia.OpenGL.dll",
  1972. "lib/net6.0/Avalonia.OpenGL.xml",
  1973. "lib/net6.0/Avalonia.dll",
  1974. "lib/net6.0/Avalonia.xml",
  1975. "lib/netcoreapp2.0/Avalonia.Base.dll",
  1976. "lib/netcoreapp2.0/Avalonia.Base.xml",
  1977. "lib/netcoreapp2.0/Avalonia.Controls.dll",
  1978. "lib/netcoreapp2.0/Avalonia.Controls.xml",
  1979. "lib/netcoreapp2.0/Avalonia.DesignerSupport.dll",
  1980. "lib/netcoreapp2.0/Avalonia.DesignerSupport.xml",
  1981. "lib/netcoreapp2.0/Avalonia.Dialogs.dll",
  1982. "lib/netcoreapp2.0/Avalonia.Dialogs.xml",
  1983. "lib/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
  1984. "lib/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
  1985. "lib/netcoreapp2.0/Avalonia.Markup.dll",
  1986. "lib/netcoreapp2.0/Avalonia.Markup.xml",
  1987. "lib/netcoreapp2.0/Avalonia.Metal.dll",
  1988. "lib/netcoreapp2.0/Avalonia.Metal.xml",
  1989. "lib/netcoreapp2.0/Avalonia.MicroCom.dll",
  1990. "lib/netcoreapp2.0/Avalonia.MicroCom.xml",
  1991. "lib/netcoreapp2.0/Avalonia.OpenGL.dll",
  1992. "lib/netcoreapp2.0/Avalonia.OpenGL.xml",
  1993. "lib/netcoreapp2.0/Avalonia.dll",
  1994. "lib/netcoreapp2.0/Avalonia.xml",
  1995. "lib/netstandard2.0/Avalonia.Base.dll",
  1996. "lib/netstandard2.0/Avalonia.Base.xml",
  1997. "lib/netstandard2.0/Avalonia.Controls.dll",
  1998. "lib/netstandard2.0/Avalonia.Controls.xml",
  1999. "lib/netstandard2.0/Avalonia.DesignerSupport.dll",
  2000. "lib/netstandard2.0/Avalonia.DesignerSupport.xml",
  2001. "lib/netstandard2.0/Avalonia.Dialogs.dll",
  2002. "lib/netstandard2.0/Avalonia.Dialogs.xml",
  2003. "lib/netstandard2.0/Avalonia.Markup.Xaml.dll",
  2004. "lib/netstandard2.0/Avalonia.Markup.Xaml.xml",
  2005. "lib/netstandard2.0/Avalonia.Markup.dll",
  2006. "lib/netstandard2.0/Avalonia.Markup.xml",
  2007. "lib/netstandard2.0/Avalonia.Metal.dll",
  2008. "lib/netstandard2.0/Avalonia.Metal.xml",
  2009. "lib/netstandard2.0/Avalonia.MicroCom.dll",
  2010. "lib/netstandard2.0/Avalonia.MicroCom.xml",
  2011. "lib/netstandard2.0/Avalonia.OpenGL.dll",
  2012. "lib/netstandard2.0/Avalonia.OpenGL.xml",
  2013. "lib/netstandard2.0/Avalonia.dll",
  2014. "lib/netstandard2.0/Avalonia.xml",
  2015. "ref/net461/Avalonia.Base.dll",
  2016. "ref/net461/Avalonia.Base.xml",
  2017. "ref/net461/Avalonia.Controls.dll",
  2018. "ref/net461/Avalonia.Controls.xml",
  2019. "ref/net461/Avalonia.DesignerSupport.dll",
  2020. "ref/net461/Avalonia.DesignerSupport.xml",
  2021. "ref/net461/Avalonia.Dialogs.dll",
  2022. "ref/net461/Avalonia.Dialogs.xml",
  2023. "ref/net461/Avalonia.Markup.Xaml.dll",
  2024. "ref/net461/Avalonia.Markup.Xaml.xml",
  2025. "ref/net461/Avalonia.Markup.dll",
  2026. "ref/net461/Avalonia.Markup.xml",
  2027. "ref/net461/Avalonia.Metal.dll",
  2028. "ref/net461/Avalonia.Metal.xml",
  2029. "ref/net461/Avalonia.MicroCom.dll",
  2030. "ref/net461/Avalonia.MicroCom.xml",
  2031. "ref/net461/Avalonia.OpenGL.dll",
  2032. "ref/net461/Avalonia.OpenGL.xml",
  2033. "ref/net461/Avalonia.dll",
  2034. "ref/net461/Avalonia.xml",
  2035. "ref/net6.0/Avalonia.Base.dll",
  2036. "ref/net6.0/Avalonia.Base.xml",
  2037. "ref/net6.0/Avalonia.Controls.dll",
  2038. "ref/net6.0/Avalonia.Controls.xml",
  2039. "ref/net6.0/Avalonia.DesignerSupport.dll",
  2040. "ref/net6.0/Avalonia.DesignerSupport.xml",
  2041. "ref/net6.0/Avalonia.Dialogs.dll",
  2042. "ref/net6.0/Avalonia.Dialogs.xml",
  2043. "ref/net6.0/Avalonia.Markup.Xaml.dll",
  2044. "ref/net6.0/Avalonia.Markup.Xaml.xml",
  2045. "ref/net6.0/Avalonia.Markup.dll",
  2046. "ref/net6.0/Avalonia.Markup.xml",
  2047. "ref/net6.0/Avalonia.Metal.dll",
  2048. "ref/net6.0/Avalonia.Metal.xml",
  2049. "ref/net6.0/Avalonia.MicroCom.dll",
  2050. "ref/net6.0/Avalonia.MicroCom.xml",
  2051. "ref/net6.0/Avalonia.OpenGL.dll",
  2052. "ref/net6.0/Avalonia.OpenGL.xml",
  2053. "ref/net6.0/Avalonia.dll",
  2054. "ref/net6.0/Avalonia.xml",
  2055. "ref/netcoreapp2.0/Avalonia.Base.dll",
  2056. "ref/netcoreapp2.0/Avalonia.Base.xml",
  2057. "ref/netcoreapp2.0/Avalonia.Controls.dll",
  2058. "ref/netcoreapp2.0/Avalonia.Controls.xml",
  2059. "ref/netcoreapp2.0/Avalonia.DesignerSupport.dll",
  2060. "ref/netcoreapp2.0/Avalonia.DesignerSupport.xml",
  2061. "ref/netcoreapp2.0/Avalonia.Dialogs.dll",
  2062. "ref/netcoreapp2.0/Avalonia.Dialogs.xml",
  2063. "ref/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
  2064. "ref/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
  2065. "ref/netcoreapp2.0/Avalonia.Markup.dll",
  2066. "ref/netcoreapp2.0/Avalonia.Markup.xml",
  2067. "ref/netcoreapp2.0/Avalonia.Metal.dll",
  2068. "ref/netcoreapp2.0/Avalonia.Metal.xml",
  2069. "ref/netcoreapp2.0/Avalonia.MicroCom.dll",
  2070. "ref/netcoreapp2.0/Avalonia.MicroCom.xml",
  2071. "ref/netcoreapp2.0/Avalonia.OpenGL.dll",
  2072. "ref/netcoreapp2.0/Avalonia.OpenGL.xml",
  2073. "ref/netcoreapp2.0/Avalonia.dll",
  2074. "ref/netcoreapp2.0/Avalonia.xml",
  2075. "ref/netstandard2.0/Avalonia.Base.dll",
  2076. "ref/netstandard2.0/Avalonia.Base.xml",
  2077. "ref/netstandard2.0/Avalonia.Controls.dll",
  2078. "ref/netstandard2.0/Avalonia.Controls.xml",
  2079. "ref/netstandard2.0/Avalonia.DesignerSupport.dll",
  2080. "ref/netstandard2.0/Avalonia.DesignerSupport.xml",
  2081. "ref/netstandard2.0/Avalonia.Dialogs.dll",
  2082. "ref/netstandard2.0/Avalonia.Dialogs.xml",
  2083. "ref/netstandard2.0/Avalonia.Markup.Xaml.dll",
  2084. "ref/netstandard2.0/Avalonia.Markup.Xaml.xml",
  2085. "ref/netstandard2.0/Avalonia.Markup.dll",
  2086. "ref/netstandard2.0/Avalonia.Markup.xml",
  2087. "ref/netstandard2.0/Avalonia.Metal.dll",
  2088. "ref/netstandard2.0/Avalonia.Metal.xml",
  2089. "ref/netstandard2.0/Avalonia.MicroCom.dll",
  2090. "ref/netstandard2.0/Avalonia.MicroCom.xml",
  2091. "ref/netstandard2.0/Avalonia.OpenGL.dll",
  2092. "ref/netstandard2.0/Avalonia.OpenGL.xml",
  2093. "ref/netstandard2.0/Avalonia.dll",
  2094. "ref/netstandard2.0/Avalonia.xml",
  2095. "tools/net461/designer/Avalonia.Designer.HostApp.exe",
  2096. "tools/netcoreapp2.0/designer/Avalonia.Designer.HostApp.dll",
  2097. "tools/netstandard2.0/Avalonia.Build.Tasks.dll"
  2098. ]
  2099. },
  2100. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  2101. "sha512": "Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
  2102. "type": "package",
  2103. "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
  2104. "files": [
  2105. ".nupkg.metadata",
  2106. ".signature.p7s",
  2107. "Icon.png",
  2108. "LICENSE.txt",
  2109. "avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512",
  2110. "avalonia.angle.windows.natives.nuspec",
  2111. "runtimes/win-arm64/native/av_libglesv2.dll",
  2112. "runtimes/win-x64/native/av_libglesv2.dll",
  2113. "runtimes/win-x86/native/av_libglesv2.dll"
  2114. ]
  2115. },
  2116. "Avalonia.BuildServices/0.0.29": {
  2117. "sha512": "U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
  2118. "type": "package",
  2119. "path": "avalonia.buildservices/0.0.29",
  2120. "hasTools": true,
  2121. "files": [
  2122. ".nupkg.metadata",
  2123. ".signature.p7s",
  2124. "avalonia.buildservices.0.0.29.nupkg.sha512",
  2125. "avalonia.buildservices.nuspec",
  2126. "build/Avalonia.BuildServices.targets",
  2127. "buildTransitive/Avalonia.BuildServices.targets",
  2128. "tools/netstandard2.0/Avalonia.BuildServices.Collector.dll",
  2129. "tools/netstandard2.0/Avalonia.BuildServices.dll",
  2130. "tools/netstandard2.0/runtimeconfig.json"
  2131. ]
  2132. },
  2133. "Avalonia.Controls.ColorPicker/11.0.6": {
  2134. "sha512": "26OAWrGG81QGx+V3TG9uncyzMNM45oTw1AqdStEMShEynTx/huBXc2mP4AMiF73n8a6rU8tvVySnK4RW71vvkA==",
  2135. "type": "package",
  2136. "path": "avalonia.controls.colorpicker/11.0.6",
  2137. "files": [
  2138. ".nupkg.metadata",
  2139. ".signature.p7s",
  2140. "Icon.png",
  2141. "avalonia.controls.colorpicker.11.0.6.nupkg.sha512",
  2142. "avalonia.controls.colorpicker.nuspec",
  2143. "lib/net6.0/Avalonia.Controls.ColorPicker.dll",
  2144. "lib/net6.0/Avalonia.Controls.ColorPicker.xml",
  2145. "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll",
  2146. "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml"
  2147. ]
  2148. },
  2149. "Avalonia.Controls.DataGrid/11.0.6": {
  2150. "sha512": "tfi5cpB2dvOk3UF6cUMtqoKF08jIGH9mLfAqpAYGwq1S4CXRL7fVaNMJCeLqQ+lSuqbakVKQZ7ysdJbJLolNgw==",
  2151. "type": "package",
  2152. "path": "avalonia.controls.datagrid/11.0.6",
  2153. "files": [
  2154. ".nupkg.metadata",
  2155. ".signature.p7s",
  2156. "Icon.png",
  2157. "avalonia.controls.datagrid.11.0.6.nupkg.sha512",
  2158. "avalonia.controls.datagrid.nuspec",
  2159. "lib/net6.0/Avalonia.Controls.DataGrid.dll",
  2160. "lib/net6.0/Avalonia.Controls.DataGrid.xml",
  2161. "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll",
  2162. "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml"
  2163. ]
  2164. },
  2165. "Avalonia.Desktop/11.0.6": {
  2166. "sha512": "4nn7dOZPPOYl84SgEBQpY2c4p7LRu9XkFcaIU963aB4Kz+BzQ6RH8fmtZMTYaJUb65cm3KBtQTd+NbYt7xZMPA==",
  2167. "type": "package",
  2168. "path": "avalonia.desktop/11.0.6",
  2169. "files": [
  2170. ".nupkg.metadata",
  2171. ".signature.p7s",
  2172. "Icon.png",
  2173. "avalonia.desktop.11.0.6.nupkg.sha512",
  2174. "avalonia.desktop.nuspec",
  2175. "lib/net6.0/Avalonia.Desktop.dll",
  2176. "lib/net6.0/Avalonia.Desktop.xml",
  2177. "lib/netstandard2.0/Avalonia.Desktop.dll",
  2178. "lib/netstandard2.0/Avalonia.Desktop.xml"
  2179. ]
  2180. },
  2181. "Avalonia.Diagnostics/11.0.6": {
  2182. "sha512": "at06sYm/Eyktt/ECQCldJrFhnAQjSsxBpdePOZQo/AUJVhO/K8EzYH2+Ym0Tc9gY6ledEHJlhDTSaNA6R+xfKA==",
  2183. "type": "package",
  2184. "path": "avalonia.diagnostics/11.0.6",
  2185. "files": [
  2186. ".nupkg.metadata",
  2187. ".signature.p7s",
  2188. "Icon.png",
  2189. "avalonia.diagnostics.11.0.6.nupkg.sha512",
  2190. "avalonia.diagnostics.nuspec",
  2191. "lib/net6.0/Avalonia.Diagnostics.dll",
  2192. "lib/net6.0/Avalonia.Diagnostics.xml",
  2193. "lib/netstandard2.0/Avalonia.Diagnostics.dll",
  2194. "lib/netstandard2.0/Avalonia.Diagnostics.xml"
  2195. ]
  2196. },
  2197. "Avalonia.Fonts.Inter/11.0.6": {
  2198. "sha512": "RucxTP8JstJvEr7p0648auRFWRHI49jj4PM2a6GzkiNsvZ+gVL8bz/y6md4+ANZFu7GTj8rdcAf2Fqq1ERdXqw==",
  2199. "type": "package",
  2200. "path": "avalonia.fonts.inter/11.0.6",
  2201. "files": [
  2202. ".nupkg.metadata",
  2203. ".signature.p7s",
  2204. "Icon.png",
  2205. "avalonia.fonts.inter.11.0.6.nupkg.sha512",
  2206. "avalonia.fonts.inter.nuspec",
  2207. "lib/net6.0/Avalonia.Fonts.Inter.dll",
  2208. "lib/net6.0/Avalonia.Fonts.Inter.xml",
  2209. "lib/netstandard2.0/Avalonia.Fonts.Inter.dll",
  2210. "lib/netstandard2.0/Avalonia.Fonts.Inter.xml"
  2211. ]
  2212. },
  2213. "Avalonia.FreeDesktop/11.0.6": {
  2214. "sha512": "9z5D+eiC6YIboyqku5gkpVrV1nWoBmrygbKOw1xDJ+ZCf3p6slsKqhz2T1nsMrrdGt/rw7OpfRWizvT2hgYVPQ==",
  2215. "type": "package",
  2216. "path": "avalonia.freedesktop/11.0.6",
  2217. "files": [
  2218. ".nupkg.metadata",
  2219. ".signature.p7s",
  2220. "Icon.png",
  2221. "avalonia.freedesktop.11.0.6.nupkg.sha512",
  2222. "avalonia.freedesktop.nuspec",
  2223. "lib/net6.0/Avalonia.FreeDesktop.dll",
  2224. "lib/net6.0/Avalonia.FreeDesktop.xml",
  2225. "lib/netstandard2.0/Avalonia.FreeDesktop.dll",
  2226. "lib/netstandard2.0/Avalonia.FreeDesktop.xml"
  2227. ]
  2228. },
  2229. "Avalonia.Native/11.0.6": {
  2230. "sha512": "1d2zrLDv0facy7EU2RILNHXg5iR5anEDtPdz+jtKR4mQ6sIRYFD19IFYitNYA4hFwJMVFgEhqZWMQx9BRCM+mA==",
  2231. "type": "package",
  2232. "path": "avalonia.native/11.0.6",
  2233. "files": [
  2234. ".nupkg.metadata",
  2235. ".signature.p7s",
  2236. "Icon.png",
  2237. "avalonia.native.11.0.6.nupkg.sha512",
  2238. "avalonia.native.nuspec",
  2239. "lib/net6.0/Avalonia.Native.dll",
  2240. "lib/net6.0/Avalonia.Native.xml",
  2241. "lib/netstandard2.0/Avalonia.Native.dll",
  2242. "lib/netstandard2.0/Avalonia.Native.xml",
  2243. "runtimes/osx/native/libAvaloniaNative.dylib"
  2244. ]
  2245. },
  2246. "Avalonia.ReactiveUI/11.0.6": {
  2247. "sha512": "tA+6LhDWCaSXms0YJcLJy3ib5XJFtjYWlSRygooRCv+rR0Jiw8X7UA6DppEe8SgWJMc395XfiIioEcQ3NfPBeA==",
  2248. "type": "package",
  2249. "path": "avalonia.reactiveui/11.0.6",
  2250. "files": [
  2251. ".nupkg.metadata",
  2252. ".signature.p7s",
  2253. "Icon.png",
  2254. "avalonia.reactiveui.11.0.6.nupkg.sha512",
  2255. "avalonia.reactiveui.nuspec",
  2256. "lib/net6.0/Avalonia.ReactiveUI.dll",
  2257. "lib/net6.0/Avalonia.ReactiveUI.xml",
  2258. "lib/netstandard2.0/Avalonia.ReactiveUI.dll",
  2259. "lib/netstandard2.0/Avalonia.ReactiveUI.xml"
  2260. ]
  2261. },
  2262. "Avalonia.Remote.Protocol/11.0.6": {
  2263. "sha512": "aIuCvIW+gjKg3USW6FuAMW6k2HDhTTCzWcGYCnuloOSnFe3EgeqEJr+qbO2whnMD1zLoJil3RWmTBl/b/yUqOw==",
  2264. "type": "package",
  2265. "path": "avalonia.remote.protocol/11.0.6",
  2266. "files": [
  2267. ".nupkg.metadata",
  2268. ".signature.p7s",
  2269. "Icon.png",
  2270. "avalonia.remote.protocol.11.0.6.nupkg.sha512",
  2271. "avalonia.remote.protocol.nuspec",
  2272. "lib/net6.0/Avalonia.Remote.Protocol.dll",
  2273. "lib/net6.0/Avalonia.Remote.Protocol.xml",
  2274. "lib/netstandard2.0/Avalonia.Remote.Protocol.dll",
  2275. "lib/netstandard2.0/Avalonia.Remote.Protocol.xml"
  2276. ]
  2277. },
  2278. "Avalonia.Skia/11.0.6": {
  2279. "sha512": "pl+VsGJknUliP4e6Lvj/eGArOamJys7f4BG5CCgbjSamUeg+sd+VN+UdM7GhUcagmeaiTSgzOmV+1+oKsCB9xw==",
  2280. "type": "package",
  2281. "path": "avalonia.skia/11.0.6",
  2282. "files": [
  2283. ".nupkg.metadata",
  2284. ".signature.p7s",
  2285. "Icon.png",
  2286. "avalonia.skia.11.0.6.nupkg.sha512",
  2287. "avalonia.skia.nuspec",
  2288. "lib/net6.0/Avalonia.Skia.dll",
  2289. "lib/net6.0/Avalonia.Skia.xml",
  2290. "lib/netstandard2.0/Avalonia.Skia.dll",
  2291. "lib/netstandard2.0/Avalonia.Skia.xml"
  2292. ]
  2293. },
  2294. "Avalonia.Themes.Fluent/11.0.6": {
  2295. "sha512": "9z2PFdJEVZo7x8UyfZDVqFF5fayealTl0VtNLwfX7DSE0lXpEPBTmx4q4KseKCFkiAQ0WZ/8YH1K3HjPeO8cHQ==",
  2296. "type": "package",
  2297. "path": "avalonia.themes.fluent/11.0.6",
  2298. "files": [
  2299. ".nupkg.metadata",
  2300. ".signature.p7s",
  2301. "Icon.png",
  2302. "avalonia.themes.fluent.11.0.6.nupkg.sha512",
  2303. "avalonia.themes.fluent.nuspec",
  2304. "lib/net6.0/Avalonia.Themes.Fluent.dll",
  2305. "lib/net6.0/Avalonia.Themes.Fluent.xml",
  2306. "lib/netstandard2.0/Avalonia.Themes.Fluent.dll",
  2307. "lib/netstandard2.0/Avalonia.Themes.Fluent.xml"
  2308. ]
  2309. },
  2310. "Avalonia.Themes.Simple/11.0.6": {
  2311. "sha512": "W4siLTZy8LH/TanayPH1112Ww2Mb1qX9bloQ9fVslUu3ZkvIy0cI+6/+ncHkmCEk5y2ctE2ZA7NepeLT1EoTRQ==",
  2312. "type": "package",
  2313. "path": "avalonia.themes.simple/11.0.6",
  2314. "files": [
  2315. ".nupkg.metadata",
  2316. ".signature.p7s",
  2317. "Icon.png",
  2318. "avalonia.themes.simple.11.0.6.nupkg.sha512",
  2319. "avalonia.themes.simple.nuspec",
  2320. "lib/net6.0/Avalonia.Themes.Simple.dll",
  2321. "lib/net6.0/Avalonia.Themes.Simple.xml",
  2322. "lib/netstandard2.0/Avalonia.Themes.Simple.dll",
  2323. "lib/netstandard2.0/Avalonia.Themes.Simple.xml"
  2324. ]
  2325. },
  2326. "Avalonia.Win32/11.0.6": {
  2327. "sha512": "5JxM7K4PMvB5wsYCnT1QGjJmtiYgW4Nq5g7vk4RPB6Pr+A6TuL3arVfcGI4FOV8+3Q1F9znPImRQOUU3zhj/8g==",
  2328. "type": "package",
  2329. "path": "avalonia.win32/11.0.6",
  2330. "files": [
  2331. ".nupkg.metadata",
  2332. ".signature.p7s",
  2333. "Icon.png",
  2334. "avalonia.win32.11.0.6.nupkg.sha512",
  2335. "avalonia.win32.nuspec",
  2336. "lib/net6.0/Avalonia.Win32.dll",
  2337. "lib/net6.0/Avalonia.Win32.xml",
  2338. "lib/netstandard2.0/Avalonia.Win32.dll",
  2339. "lib/netstandard2.0/Avalonia.Win32.xml"
  2340. ]
  2341. },
  2342. "Avalonia.X11/11.0.6": {
  2343. "sha512": "SBS3R1roDLZnnykbltu8q/8RkKACSDi1pOOvKKswa0CjauehIMcK8X1XdCjQDXN+SAWbNOzQHDU5g31a4SNS+Q==",
  2344. "type": "package",
  2345. "path": "avalonia.x11/11.0.6",
  2346. "files": [
  2347. ".nupkg.metadata",
  2348. ".signature.p7s",
  2349. "Icon.png",
  2350. "avalonia.x11.11.0.6.nupkg.sha512",
  2351. "avalonia.x11.nuspec",
  2352. "lib/net6.0/Avalonia.X11.dll",
  2353. "lib/net6.0/Avalonia.X11.xml",
  2354. "lib/netstandard2.0/Avalonia.X11.dll",
  2355. "lib/netstandard2.0/Avalonia.X11.xml"
  2356. ]
  2357. },
  2358. "ColorTextBlock.Avalonia/11.0.2": {
  2359. "sha512": "MsWu5aAbDpstAmJ+TTSgC6Q7YdjKB7Na912GMr3oWl9ag8TH2HNpglzgo+kIAuB4C4wswKfrzhso4UcpvgMuHg==",
  2360. "type": "package",
  2361. "path": "colortextblock.avalonia/11.0.2",
  2362. "files": [
  2363. ".nupkg.metadata",
  2364. ".signature.p7s",
  2365. "colortextblock.avalonia.11.0.2.nupkg.sha512",
  2366. "colortextblock.avalonia.nuspec",
  2367. "lib/net461/ColorTextBlock.Avalonia.dll",
  2368. "lib/net6.0/ColorTextBlock.Avalonia.dll",
  2369. "lib/netcoreapp2.0/ColorTextBlock.Avalonia.dll",
  2370. "lib/netstandard2.0/ColorTextBlock.Avalonia.dll"
  2371. ]
  2372. },
  2373. "DialogHost.Avalonia/0.7.7": {
  2374. "sha512": "V5zq0e6dBeK1A8xDsyNouzfSx3d+aOhxPgjguaFyaDexgDF8WiSQDsawkv0fRGKbDnaPIqMk9m7P/2G5c7HPzw==",
  2375. "type": "package",
  2376. "path": "dialoghost.avalonia/0.7.7",
  2377. "files": [
  2378. ".nupkg.metadata",
  2379. ".signature.p7s",
  2380. "README.md",
  2381. "dialoghost.avalonia.0.7.7.nupkg.sha512",
  2382. "dialoghost.avalonia.nuspec",
  2383. "icon.png",
  2384. "lib/netstandard2.0/DialogHost.Avalonia.dll",
  2385. "lib/netstandard2.0/DialogHost.Avalonia.xml"
  2386. ]
  2387. },
  2388. "DynamicData/7.9.5": {
  2389. "sha512": "xFwVha7o3qUtVYxco5p+7Urcztc/m1gmaEUxOG0i7LNe+vfCfyb0ECAsT2FLm3zOPHb0g8s9qVu5LfPKfRNVng==",
  2390. "type": "package",
  2391. "path": "dynamicdata/7.9.5",
  2392. "files": [
  2393. ".nupkg.metadata",
  2394. ".signature.p7s",
  2395. "LICENSE/LICENSE",
  2396. "dynamicdata.7.9.5.nupkg.sha512",
  2397. "dynamicdata.nuspec",
  2398. "lib/net462/DynamicData.dll",
  2399. "lib/net462/DynamicData.xml",
  2400. "lib/net6.0/DynamicData.dll",
  2401. "lib/net6.0/DynamicData.xml",
  2402. "lib/netstandard2.0/DynamicData.dll",
  2403. "lib/netstandard2.0/DynamicData.xml",
  2404. "lib/uap10.0.16299/DynamicData.dll",
  2405. "lib/uap10.0.16299/DynamicData.pri",
  2406. "lib/uap10.0.16299/DynamicData.xml",
  2407. "logo.png"
  2408. ]
  2409. },
  2410. "HarfBuzzSharp/7.3.0": {
  2411. "sha512": "OrQLaxtZMIeS2yHSUtsKzeSdk9CPaCpyJ/JCs+wLfRGatjE8MLUS6LGj6vdbGRxqRavcXs79C9O3oWe6FJR0JQ==",
  2412. "type": "package",
  2413. "path": "harfbuzzsharp/7.3.0",
  2414. "files": [
  2415. ".nupkg.metadata",
  2416. ".signature.p7s",
  2417. "LICENSE.txt",
  2418. "THIRD-PARTY-NOTICES.txt",
  2419. "harfbuzzsharp.7.3.0.nupkg.sha512",
  2420. "harfbuzzsharp.nuspec",
  2421. "lib/monoandroid1.0/HarfBuzzSharp.dll",
  2422. "lib/monoandroid1.0/HarfBuzzSharp.pdb",
  2423. "lib/monoandroid1.0/HarfBuzzSharp.xml",
  2424. "lib/net462/HarfBuzzSharp.dll",
  2425. "lib/net462/HarfBuzzSharp.pdb",
  2426. "lib/net462/HarfBuzzSharp.xml",
  2427. "lib/net6.0-android30.0/HarfBuzzSharp.dll",
  2428. "lib/net6.0-android30.0/HarfBuzzSharp.pdb",
  2429. "lib/net6.0-android30.0/HarfBuzzSharp.xml",
  2430. "lib/net6.0-ios13.6/HarfBuzzSharp.dll",
  2431. "lib/net6.0-ios13.6/HarfBuzzSharp.pdb",
  2432. "lib/net6.0-ios13.6/HarfBuzzSharp.xml",
  2433. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll",
  2434. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb",
  2435. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml",
  2436. "lib/net6.0-macos10.15/HarfBuzzSharp.dll",
  2437. "lib/net6.0-macos10.15/HarfBuzzSharp.pdb",
  2438. "lib/net6.0-macos10.15/HarfBuzzSharp.xml",
  2439. "lib/net6.0-tvos13.4/HarfBuzzSharp.dll",
  2440. "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb",
  2441. "lib/net6.0-tvos13.4/HarfBuzzSharp.xml",
  2442. "lib/net6.0/HarfBuzzSharp.dll",
  2443. "lib/net6.0/HarfBuzzSharp.pdb",
  2444. "lib/net6.0/HarfBuzzSharp.xml",
  2445. "lib/netcoreapp3.1/HarfBuzzSharp.dll",
  2446. "lib/netcoreapp3.1/HarfBuzzSharp.pdb",
  2447. "lib/netcoreapp3.1/HarfBuzzSharp.xml",
  2448. "lib/netstandard1.3/HarfBuzzSharp.dll",
  2449. "lib/netstandard1.3/HarfBuzzSharp.pdb",
  2450. "lib/netstandard1.3/HarfBuzzSharp.xml",
  2451. "lib/netstandard2.0/HarfBuzzSharp.dll",
  2452. "lib/netstandard2.0/HarfBuzzSharp.pdb",
  2453. "lib/netstandard2.0/HarfBuzzSharp.xml",
  2454. "lib/netstandard2.1/HarfBuzzSharp.dll",
  2455. "lib/netstandard2.1/HarfBuzzSharp.pdb",
  2456. "lib/netstandard2.1/HarfBuzzSharp.xml",
  2457. "lib/tizen40/HarfBuzzSharp.dll",
  2458. "lib/tizen40/HarfBuzzSharp.pdb",
  2459. "lib/tizen40/HarfBuzzSharp.xml",
  2460. "lib/uap10.0.10240/HarfBuzzSharp.dll",
  2461. "lib/uap10.0.10240/HarfBuzzSharp.pdb",
  2462. "lib/uap10.0.10240/HarfBuzzSharp.xml",
  2463. "lib/uap10.0.16299/HarfBuzzSharp.dll",
  2464. "lib/uap10.0.16299/HarfBuzzSharp.pdb",
  2465. "lib/uap10.0.16299/HarfBuzzSharp.xml",
  2466. "lib/xamarinios1.0/HarfBuzzSharp.dll",
  2467. "lib/xamarinios1.0/HarfBuzzSharp.pdb",
  2468. "lib/xamarinios1.0/HarfBuzzSharp.xml",
  2469. "lib/xamarinmac2.0/HarfBuzzSharp.dll",
  2470. "lib/xamarinmac2.0/HarfBuzzSharp.pdb",
  2471. "lib/xamarinmac2.0/HarfBuzzSharp.xml",
  2472. "lib/xamarintvos1.0/HarfBuzzSharp.dll",
  2473. "lib/xamarintvos1.0/HarfBuzzSharp.pdb",
  2474. "lib/xamarintvos1.0/HarfBuzzSharp.xml",
  2475. "lib/xamarinwatchos1.0/HarfBuzzSharp.dll",
  2476. "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb",
  2477. "lib/xamarinwatchos1.0/HarfBuzzSharp.xml"
  2478. ]
  2479. },
  2480. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  2481. "sha512": "m6F2pEBTN0zTRgQ3caJQRGQkZZizZwHHCbu+rTv+gvwteNBOpqOLD5GE4dB9TFjNNpnyHXtfuMD86JuUra9UvA==",
  2482. "type": "package",
  2483. "path": "harfbuzzsharp.nativeassets.linux/7.3.0",
  2484. "files": [
  2485. ".nupkg.metadata",
  2486. ".signature.p7s",
  2487. "LICENSE.txt",
  2488. "THIRD-PARTY-NOTICES.txt",
  2489. "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
  2490. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
  2491. "harfbuzzsharp.nativeassets.linux.7.3.0.nupkg.sha512",
  2492. "harfbuzzsharp.nativeassets.linux.nuspec",
  2493. "lib/net462/_._",
  2494. "lib/net6.0/_._",
  2495. "lib/netcoreapp3.1/_._",
  2496. "lib/netstandard1.3/_._",
  2497. "runtimes/linux-arm/native/libHarfBuzzSharp.so",
  2498. "runtimes/linux-arm64/native/libHarfBuzzSharp.so",
  2499. "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so",
  2500. "runtimes/linux-x64/native/libHarfBuzzSharp.so"
  2501. ]
  2502. },
  2503. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  2504. "sha512": "LWcFJ39j+dN0KK8c/GJJZPPZPL9TqT2FA42/LRGqzUMmSm5LYbINOMnPvUr7RuLR6RFSmKIrgrlgObR8G5ho2A==",
  2505. "type": "package",
  2506. "path": "harfbuzzsharp.nativeassets.macos/7.3.0",
  2507. "files": [
  2508. ".nupkg.metadata",
  2509. ".signature.p7s",
  2510. "LICENSE.txt",
  2511. "THIRD-PARTY-NOTICES.txt",
  2512. "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
  2513. "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
  2514. "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
  2515. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
  2516. "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
  2517. "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
  2518. "harfbuzzsharp.nativeassets.macos.7.3.0.nupkg.sha512",
  2519. "harfbuzzsharp.nativeassets.macos.nuspec",
  2520. "lib/net462/_._",
  2521. "lib/net6.0-macos10.15/_._",
  2522. "lib/net6.0/_._",
  2523. "lib/netcoreapp3.1/_._",
  2524. "lib/netstandard1.3/_._",
  2525. "lib/xamarinmac2.0/_._",
  2526. "runtimes/osx/native/libHarfBuzzSharp.dylib"
  2527. ]
  2528. },
  2529. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
  2530. "sha512": "cnl4I6P+VeujfSSD3ZrC5f0TrTGt9EKgCOoZ3LpgLI2xobBKLi5bxOaN2oY6B0xVXxQEhEaWBotg7AuECg00Iw==",
  2531. "type": "package",
  2532. "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0",
  2533. "files": [
  2534. ".nupkg.metadata",
  2535. ".signature.p7s",
  2536. "LICENSE.txt",
  2537. "THIRD-PARTY-NOTICES.txt",
  2538. "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
  2539. "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
  2540. "build/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a",
  2541. "build/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a",
  2542. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a",
  2543. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a",
  2544. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/simd/libHarfBuzzSharp.a",
  2545. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a",
  2546. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a",
  2547. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,mt/libHarfBuzzSharp.a",
  2548. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,st/libHarfBuzzSharp.a",
  2549. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a",
  2550. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a",
  2551. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
  2552. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
  2553. "harfbuzzsharp.nativeassets.webassembly.7.3.0.nupkg.sha512",
  2554. "harfbuzzsharp.nativeassets.webassembly.nuspec",
  2555. "lib/netstandard1.0/_._"
  2556. ]
  2557. },
  2558. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  2559. "sha512": "ulEewLMk+dNmbmpy15ny/YusI6JNUWqchF080TV2jgfFBXPXjWm767JleDi/S7hp8eDeEN6GYIIxpvNr5fLvIw==",
  2560. "type": "package",
  2561. "path": "harfbuzzsharp.nativeassets.win32/7.3.0",
  2562. "files": [
  2563. ".nupkg.metadata",
  2564. ".signature.p7s",
  2565. "LICENSE.txt",
  2566. "THIRD-PARTY-NOTICES.txt",
  2567. "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
  2568. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
  2569. "harfbuzzsharp.nativeassets.win32.7.3.0.nupkg.sha512",
  2570. "harfbuzzsharp.nativeassets.win32.nuspec",
  2571. "lib/net462/_._",
  2572. "lib/net6.0/_._",
  2573. "lib/netcoreapp3.1/_._",
  2574. "lib/netstandard1.3/_._",
  2575. "runtimes/win-arm64/native/libHarfBuzzSharp.dll",
  2576. "runtimes/win-x64/native/libHarfBuzzSharp.dll",
  2577. "runtimes/win-x86/native/libHarfBuzzSharp.dll"
  2578. ]
  2579. },
  2580. "Humanizer.Core/2.14.1": {
  2581. "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  2582. "type": "package",
  2583. "path": "humanizer.core/2.14.1",
  2584. "files": [
  2585. ".nupkg.metadata",
  2586. ".signature.p7s",
  2587. "humanizer.core.2.14.1.nupkg.sha512",
  2588. "humanizer.core.nuspec",
  2589. "lib/net6.0/Humanizer.dll",
  2590. "lib/net6.0/Humanizer.xml",
  2591. "lib/netstandard1.0/Humanizer.dll",
  2592. "lib/netstandard1.0/Humanizer.xml",
  2593. "lib/netstandard2.0/Humanizer.dll",
  2594. "lib/netstandard2.0/Humanizer.xml",
  2595. "logo.png"
  2596. ]
  2597. },
  2598. "Markdown.Avalonia.Tight/11.0.2": {
  2599. "sha512": "Ylg0EkSUId42dVUFQvU7UJGWcKiJ+g7TesRe/KCzUYzlypWf1lTiVveT2j60QSldCtuAw3o/aEOEjIahMdRGig==",
  2600. "type": "package",
  2601. "path": "markdown.avalonia.tight/11.0.2",
  2602. "files": [
  2603. ".nupkg.metadata",
  2604. ".signature.p7s",
  2605. "Markdown.Avalonia.Tight.md",
  2606. "lib/net461/Markdown.Avalonia.dll",
  2607. "lib/net6.0/Markdown.Avalonia.dll",
  2608. "lib/netcoreapp2.0/Markdown.Avalonia.dll",
  2609. "lib/netstandard2.0/Markdown.Avalonia.dll",
  2610. "markdown.avalonia.tight.11.0.2.nupkg.sha512",
  2611. "markdown.avalonia.tight.nuspec"
  2612. ]
  2613. },
  2614. "MessageBox.Avalonia/3.1.5.1": {
  2615. "sha512": "iE6AzefOgcNHwdmQoUIeuii09UsFzMJoo027dZ/oKXmIaX9C8isTejODlGsuRmWgvvgMNULXsQTaH0VknMSEnw==",
  2616. "type": "package",
  2617. "path": "messagebox.avalonia/3.1.5.1",
  2618. "files": [
  2619. ".nupkg.metadata",
  2620. ".signature.p7s",
  2621. "icon.jpg",
  2622. "lib/netstandard2.0/MsBox.Avalonia.dll",
  2623. "messagebox.avalonia.3.1.5.1.nupkg.sha512",
  2624. "messagebox.avalonia.nuspec"
  2625. ]
  2626. },
  2627. "MicroCom.Runtime/0.11.0": {
  2628. "sha512": "MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
  2629. "type": "package",
  2630. "path": "microcom.runtime/0.11.0",
  2631. "files": [
  2632. ".nupkg.metadata",
  2633. ".signature.p7s",
  2634. "lib/net5.0/MicroCom.Runtime.dll",
  2635. "lib/netstandard2.0/MicroCom.Runtime.dll",
  2636. "microcom.runtime.0.11.0.nupkg.sha512",
  2637. "microcom.runtime.nuspec"
  2638. ]
  2639. },
  2640. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  2641. "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  2642. "type": "package",
  2643. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  2644. "hasTools": true,
  2645. "files": [
  2646. ".nupkg.metadata",
  2647. ".signature.p7s",
  2648. "EULA.rtf",
  2649. "ThirdPartyNotices.rtf",
  2650. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  2651. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  2652. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2653. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2654. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2655. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2656. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2657. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2658. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2659. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2660. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2661. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2662. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2663. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2664. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2665. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  2666. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  2667. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2668. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2669. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2670. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2671. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2672. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2673. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2674. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2675. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2676. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2677. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2678. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2679. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2680. "build/Microsoft.CodeAnalysis.Analyzers.props",
  2681. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  2682. "documentation/Analyzer Configuration.md",
  2683. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2684. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2685. "editorconfig/AllRulesDefault/.editorconfig",
  2686. "editorconfig/AllRulesDisabled/.editorconfig",
  2687. "editorconfig/AllRulesEnabled/.editorconfig",
  2688. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  2689. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  2690. "editorconfig/DataflowRulesDefault/.editorconfig",
  2691. "editorconfig/DataflowRulesEnabled/.editorconfig",
  2692. "editorconfig/LibraryRulesDefault/.editorconfig",
  2693. "editorconfig/LibraryRulesEnabled/.editorconfig",
  2694. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  2695. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  2696. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  2697. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  2698. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  2699. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  2700. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  2701. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  2702. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  2703. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  2704. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  2705. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  2706. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  2707. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  2708. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  2709. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  2710. "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
  2711. "microsoft.codeanalysis.analyzers.nuspec",
  2712. "rulesets/AllRulesDefault.ruleset",
  2713. "rulesets/AllRulesDisabled.ruleset",
  2714. "rulesets/AllRulesEnabled.ruleset",
  2715. "rulesets/CorrectnessRulesDefault.ruleset",
  2716. "rulesets/CorrectnessRulesEnabled.ruleset",
  2717. "rulesets/DataflowRulesDefault.ruleset",
  2718. "rulesets/DataflowRulesEnabled.ruleset",
  2719. "rulesets/LibraryRulesDefault.ruleset",
  2720. "rulesets/LibraryRulesEnabled.ruleset",
  2721. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2722. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2723. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2724. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2725. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2726. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2727. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2728. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2729. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2730. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2731. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2732. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2733. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  2734. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  2735. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2736. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2737. "tools/install.ps1",
  2738. "tools/uninstall.ps1"
  2739. ]
  2740. },
  2741. "Microsoft.CodeAnalysis.Common/3.8.0": {
  2742. "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
  2743. "type": "package",
  2744. "path": "microsoft.codeanalysis.common/3.8.0",
  2745. "files": [
  2746. ".nupkg.metadata",
  2747. ".signature.p7s",
  2748. "Icon.png",
  2749. "ThirdPartyNotices.rtf",
  2750. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  2751. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  2752. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  2753. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  2754. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  2755. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  2756. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  2757. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  2758. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  2759. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  2760. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  2761. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2762. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  2763. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  2764. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2765. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2766. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2767. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2768. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2769. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2770. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2771. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2772. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2773. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2774. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2775. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2776. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2777. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2778. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2779. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2780. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2781. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2782. "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
  2783. "microsoft.codeanalysis.common.nuspec"
  2784. ]
  2785. },
  2786. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  2787. "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
  2788. "type": "package",
  2789. "path": "microsoft.codeanalysis.csharp/3.8.0",
  2790. "files": [
  2791. ".nupkg.metadata",
  2792. ".signature.p7s",
  2793. "Icon.png",
  2794. "ThirdPartyNotices.rtf",
  2795. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2796. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2797. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2798. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2799. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2800. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2801. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2802. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2803. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2804. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2805. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2806. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2807. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2808. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2809. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2810. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2811. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2812. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2813. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2814. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2815. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2816. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2817. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2818. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2819. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2820. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2821. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2822. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2823. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2824. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2825. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2826. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2827. "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
  2828. "microsoft.codeanalysis.csharp.nuspec"
  2829. ]
  2830. },
  2831. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  2832. "sha512": "+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
  2833. "type": "package",
  2834. "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
  2835. "files": [
  2836. ".nupkg.metadata",
  2837. ".signature.p7s",
  2838. "Icon.png",
  2839. "ThirdPartyNotices.rtf",
  2840. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  2841. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  2842. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  2843. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2844. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2845. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2846. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2847. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2848. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2849. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2850. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2851. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2852. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2853. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2854. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2855. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2856. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  2857. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  2858. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  2859. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2860. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2861. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2862. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2863. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2864. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2865. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2866. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2867. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2868. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2869. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2870. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2871. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2872. "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512",
  2873. "microsoft.codeanalysis.csharp.scripting.nuspec"
  2874. ]
  2875. },
  2876. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  2877. "sha512": "lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
  2878. "type": "package",
  2879. "path": "microsoft.codeanalysis.scripting.common/3.8.0",
  2880. "files": [
  2881. ".nupkg.metadata",
  2882. ".signature.p7s",
  2883. "Icon.png",
  2884. "ThirdPartyNotices.rtf",
  2885. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
  2886. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
  2887. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
  2888. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2889. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2890. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2891. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2892. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2893. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2894. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2895. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2896. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2897. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2898. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2899. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2900. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2901. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  2902. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  2903. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  2904. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2905. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2906. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2907. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2908. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2909. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2910. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2911. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2912. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2913. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2914. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2915. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2916. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2917. "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512",
  2918. "microsoft.codeanalysis.scripting.common.nuspec"
  2919. ]
  2920. },
  2921. "Microsoft.CSharp/4.3.0": {
  2922. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  2923. "type": "package",
  2924. "path": "microsoft.csharp/4.3.0",
  2925. "files": [
  2926. ".nupkg.metadata",
  2927. ".signature.p7s",
  2928. "ThirdPartyNotices.txt",
  2929. "dotnet_library_license.txt",
  2930. "lib/MonoAndroid10/_._",
  2931. "lib/MonoTouch10/_._",
  2932. "lib/net45/_._",
  2933. "lib/netcore50/Microsoft.CSharp.dll",
  2934. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2935. "lib/portable-net45+win8+wp8+wpa81/_._",
  2936. "lib/win8/_._",
  2937. "lib/wp80/_._",
  2938. "lib/wpa81/_._",
  2939. "lib/xamarinios10/_._",
  2940. "lib/xamarinmac20/_._",
  2941. "lib/xamarintvos10/_._",
  2942. "lib/xamarinwatchos10/_._",
  2943. "microsoft.csharp.4.3.0.nupkg.sha512",
  2944. "microsoft.csharp.nuspec",
  2945. "ref/MonoAndroid10/_._",
  2946. "ref/MonoTouch10/_._",
  2947. "ref/net45/_._",
  2948. "ref/netcore50/Microsoft.CSharp.dll",
  2949. "ref/netcore50/Microsoft.CSharp.xml",
  2950. "ref/netcore50/de/Microsoft.CSharp.xml",
  2951. "ref/netcore50/es/Microsoft.CSharp.xml",
  2952. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2953. "ref/netcore50/it/Microsoft.CSharp.xml",
  2954. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2955. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2956. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2957. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2958. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2959. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2960. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2961. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2962. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2963. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2964. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2965. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2966. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2967. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2968. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2969. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2970. "ref/portable-net45+win8+wp8+wpa81/_._",
  2971. "ref/win8/_._",
  2972. "ref/wp80/_._",
  2973. "ref/wpa81/_._",
  2974. "ref/xamarinios10/_._",
  2975. "ref/xamarinmac20/_._",
  2976. "ref/xamarintvos10/_._",
  2977. "ref/xamarinwatchos10/_._"
  2978. ]
  2979. },
  2980. "Microsoft.EntityFrameworkCore/7.0.15": {
  2981. "sha512": "grjnH94+hXgTqRFdfl88otvlqHTG1QEtlLm6ADI3vtZ1h+C8xNhvKRLNNw1RMD7CKADpoEEPNgqTXKCg+Ki8OQ==",
  2982. "type": "package",
  2983. "path": "microsoft.entityframeworkcore/7.0.15",
  2984. "files": [
  2985. ".nupkg.metadata",
  2986. ".signature.p7s",
  2987. "Icon.png",
  2988. "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props",
  2989. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  2990. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  2991. "microsoft.entityframeworkcore.7.0.15.nupkg.sha512",
  2992. "microsoft.entityframeworkcore.nuspec"
  2993. ]
  2994. },
  2995. "Microsoft.EntityFrameworkCore.Abstractions/7.0.15": {
  2996. "sha512": "YZYw1g0EGGkWdC+ymHRccQryerGyh7XlcL8nRo3r7kkPurPJgVCCtC+PK5pBwJGPDdwCYMrwHSoAtfEWcqqQjQ==",
  2997. "type": "package",
  2998. "path": "microsoft.entityframeworkcore.abstractions/7.0.15",
  2999. "files": [
  3000. ".nupkg.metadata",
  3001. ".signature.p7s",
  3002. "Icon.png",
  3003. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3004. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3005. "microsoft.entityframeworkcore.abstractions.7.0.15.nupkg.sha512",
  3006. "microsoft.entityframeworkcore.abstractions.nuspec"
  3007. ]
  3008. },
  3009. "Microsoft.EntityFrameworkCore.Analyzers/7.0.15": {
  3010. "sha512": "zscMrRQQR1O4U5PhZ98ASBNdU/mAsSpqTwkE8RrguZEox31jYBK65LWTlFPPBWycEiC6U9feBZZ3bkkrmpWtbQ==",
  3011. "type": "package",
  3012. "path": "microsoft.entityframeworkcore.analyzers/7.0.15",
  3013. "files": [
  3014. ".nupkg.metadata",
  3015. ".signature.p7s",
  3016. "Icon.png",
  3017. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3018. "lib/netstandard2.0/_._",
  3019. "microsoft.entityframeworkcore.analyzers.7.0.15.nupkg.sha512",
  3020. "microsoft.entityframeworkcore.analyzers.nuspec"
  3021. ]
  3022. },
  3023. "Microsoft.EntityFrameworkCore.Design/7.0.15": {
  3024. "sha512": "knFwFoPpYqpV09xqZxowqA3Sbxg8cAKmJFuQDl43ZqgtCcMAEnVeH8aBLzSmpggauzC28/MWVtP88N/C+ko4dA==",
  3025. "type": "package",
  3026. "path": "microsoft.entityframeworkcore.design/7.0.15",
  3027. "files": [
  3028. ".nupkg.metadata",
  3029. ".signature.p7s",
  3030. "Icon.png",
  3031. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  3032. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  3033. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  3034. "microsoft.entityframeworkcore.design.7.0.15.nupkg.sha512",
  3035. "microsoft.entityframeworkcore.design.nuspec"
  3036. ]
  3037. },
  3038. "Microsoft.EntityFrameworkCore.Relational/7.0.15": {
  3039. "sha512": "D03N/DF3lmtHHVd0RqHxZg+rtd3r8C4h7RJoy/ShxQA0r6rpJ/99ZA6HY9WeEgqsRbm2M8Lmj9MwJomcsJ+4GQ==",
  3040. "type": "package",
  3041. "path": "microsoft.entityframeworkcore.relational/7.0.15",
  3042. "files": [
  3043. ".nupkg.metadata",
  3044. ".signature.p7s",
  3045. "Icon.png",
  3046. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3047. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3048. "microsoft.entityframeworkcore.relational.7.0.15.nupkg.sha512",
  3049. "microsoft.entityframeworkcore.relational.nuspec"
  3050. ]
  3051. },
  3052. "Microsoft.EntityFrameworkCore.Tools/7.0.15": {
  3053. "sha512": "7/gt7XfvQ1Sb7+kk6HkU8s6MlCkXRoEHKcJ0fXjGhLgDPq6e1G9/WJZvCxuLJzOFjxn4MIJMiEbdN8KVrIQ9CA==",
  3054. "type": "package",
  3055. "path": "microsoft.entityframeworkcore.tools/7.0.15",
  3056. "hasTools": true,
  3057. "files": [
  3058. ".nupkg.metadata",
  3059. ".signature.p7s",
  3060. "Icon.png",
  3061. "lib/net6.0/_._",
  3062. "microsoft.entityframeworkcore.tools.7.0.15.nupkg.sha512",
  3063. "microsoft.entityframeworkcore.tools.nuspec",
  3064. "tools/EntityFrameworkCore.PS2.psd1",
  3065. "tools/EntityFrameworkCore.PS2.psm1",
  3066. "tools/EntityFrameworkCore.psd1",
  3067. "tools/EntityFrameworkCore.psm1",
  3068. "tools/about_EntityFrameworkCore.help.txt",
  3069. "tools/init.ps1",
  3070. "tools/net461/any/ef.exe",
  3071. "tools/net461/win-arm64/ef.exe",
  3072. "tools/net461/win-x86/ef.exe",
  3073. "tools/netcoreapp2.0/any/ef.dll",
  3074. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  3075. ]
  3076. },
  3077. "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
  3078. "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
  3079. "type": "package",
  3080. "path": "microsoft.extensions.caching.abstractions/7.0.0",
  3081. "files": [
  3082. ".nupkg.metadata",
  3083. ".signature.p7s",
  3084. "Icon.png",
  3085. "LICENSE.TXT",
  3086. "THIRD-PARTY-NOTICES.TXT",
  3087. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  3088. "buildTransitive/net462/_._",
  3089. "buildTransitive/net6.0/_._",
  3090. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  3091. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  3092. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  3093. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3094. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3095. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3096. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3097. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3098. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3099. "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
  3100. "microsoft.extensions.caching.abstractions.nuspec",
  3101. "useSharedDesignerContext.txt"
  3102. ]
  3103. },
  3104. "Microsoft.Extensions.Caching.Memory/7.0.0": {
  3105. "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
  3106. "type": "package",
  3107. "path": "microsoft.extensions.caching.memory/7.0.0",
  3108. "files": [
  3109. ".nupkg.metadata",
  3110. ".signature.p7s",
  3111. "Icon.png",
  3112. "LICENSE.TXT",
  3113. "THIRD-PARTY-NOTICES.TXT",
  3114. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  3115. "buildTransitive/net462/_._",
  3116. "buildTransitive/net6.0/_._",
  3117. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  3118. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  3119. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  3120. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  3121. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  3122. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  3123. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  3124. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3125. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3126. "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
  3127. "microsoft.extensions.caching.memory.nuspec",
  3128. "useSharedDesignerContext.txt"
  3129. ]
  3130. },
  3131. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  3132. "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  3133. "type": "package",
  3134. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  3135. "files": [
  3136. ".nupkg.metadata",
  3137. ".signature.p7s",
  3138. "Icon.png",
  3139. "LICENSE.TXT",
  3140. "THIRD-PARTY-NOTICES.TXT",
  3141. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  3142. "buildTransitive/net462/_._",
  3143. "buildTransitive/net6.0/_._",
  3144. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3145. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3146. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3147. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3148. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3149. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3150. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3151. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3152. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3153. "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
  3154. "microsoft.extensions.configuration.abstractions.nuspec",
  3155. "useSharedDesignerContext.txt"
  3156. ]
  3157. },
  3158. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  3159. "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  3160. "type": "package",
  3161. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  3162. "files": [
  3163. ".nupkg.metadata",
  3164. ".signature.p7s",
  3165. "Icon.png",
  3166. "LICENSE.TXT",
  3167. "THIRD-PARTY-NOTICES.TXT",
  3168. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  3169. "buildTransitive/net462/_._",
  3170. "buildTransitive/net6.0/_._",
  3171. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3172. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  3173. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  3174. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3175. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3176. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  3177. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  3178. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3179. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3180. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3181. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3182. "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
  3183. "microsoft.extensions.dependencyinjection.nuspec",
  3184. "useSharedDesignerContext.txt"
  3185. ]
  3186. },
  3187. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  3188. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  3189. "type": "package",
  3190. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  3191. "files": [
  3192. ".nupkg.metadata",
  3193. ".signature.p7s",
  3194. "Icon.png",
  3195. "LICENSE.TXT",
  3196. "THIRD-PARTY-NOTICES.TXT",
  3197. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3198. "buildTransitive/net462/_._",
  3199. "buildTransitive/net6.0/_._",
  3200. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3201. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3202. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3203. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3204. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3205. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3206. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3207. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3208. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3209. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3210. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3211. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  3212. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3213. "useSharedDesignerContext.txt"
  3214. ]
  3215. },
  3216. "Microsoft.Extensions.DependencyModel/7.0.0": {
  3217. "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
  3218. "type": "package",
  3219. "path": "microsoft.extensions.dependencymodel/7.0.0",
  3220. "files": [
  3221. ".nupkg.metadata",
  3222. ".signature.p7s",
  3223. "Icon.png",
  3224. "LICENSE.TXT",
  3225. "README.md",
  3226. "THIRD-PARTY-NOTICES.TXT",
  3227. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  3228. "buildTransitive/net462/_._",
  3229. "buildTransitive/net6.0/_._",
  3230. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  3231. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  3232. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  3233. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  3234. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  3235. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  3236. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  3237. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3238. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3239. "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
  3240. "microsoft.extensions.dependencymodel.nuspec",
  3241. "useSharedDesignerContext.txt"
  3242. ]
  3243. },
  3244. "Microsoft.Extensions.Logging/7.0.0": {
  3245. "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  3246. "type": "package",
  3247. "path": "microsoft.extensions.logging/7.0.0",
  3248. "files": [
  3249. ".nupkg.metadata",
  3250. ".signature.p7s",
  3251. "Icon.png",
  3252. "LICENSE.TXT",
  3253. "THIRD-PARTY-NOTICES.TXT",
  3254. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  3255. "buildTransitive/net462/_._",
  3256. "buildTransitive/net6.0/_._",
  3257. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  3258. "lib/net462/Microsoft.Extensions.Logging.dll",
  3259. "lib/net462/Microsoft.Extensions.Logging.xml",
  3260. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  3261. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  3262. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  3263. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  3264. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3265. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3266. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3267. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3268. "microsoft.extensions.logging.7.0.0.nupkg.sha512",
  3269. "microsoft.extensions.logging.nuspec",
  3270. "useSharedDesignerContext.txt"
  3271. ]
  3272. },
  3273. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  3274. "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  3275. "type": "package",
  3276. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  3277. "files": [
  3278. ".nupkg.metadata",
  3279. ".signature.p7s",
  3280. "Icon.png",
  3281. "LICENSE.TXT",
  3282. "THIRD-PARTY-NOTICES.TXT",
  3283. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3284. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3285. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3286. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3287. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3288. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3289. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3290. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3291. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3292. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3293. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3294. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3295. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3296. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3297. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3298. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3299. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3300. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3301. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3302. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3303. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3304. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3305. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3306. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3307. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3308. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3309. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3310. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3311. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  3312. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3313. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3314. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3315. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3316. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3317. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3318. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3319. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3320. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3321. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3322. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3323. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3324. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3325. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  3326. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  3327. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3328. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3329. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3330. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  3331. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  3332. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3333. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3334. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3335. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3336. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3337. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3338. "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
  3339. "microsoft.extensions.logging.abstractions.nuspec",
  3340. "useSharedDesignerContext.txt"
  3341. ]
  3342. },
  3343. "Microsoft.Extensions.Options/7.0.0": {
  3344. "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  3345. "type": "package",
  3346. "path": "microsoft.extensions.options/7.0.0",
  3347. "files": [
  3348. ".nupkg.metadata",
  3349. ".signature.p7s",
  3350. "Icon.png",
  3351. "LICENSE.TXT",
  3352. "THIRD-PARTY-NOTICES.TXT",
  3353. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  3354. "buildTransitive/net462/_._",
  3355. "buildTransitive/net6.0/_._",
  3356. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  3357. "lib/net462/Microsoft.Extensions.Options.dll",
  3358. "lib/net462/Microsoft.Extensions.Options.xml",
  3359. "lib/net6.0/Microsoft.Extensions.Options.dll",
  3360. "lib/net6.0/Microsoft.Extensions.Options.xml",
  3361. "lib/net7.0/Microsoft.Extensions.Options.dll",
  3362. "lib/net7.0/Microsoft.Extensions.Options.xml",
  3363. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3364. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3365. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3366. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3367. "microsoft.extensions.options.7.0.0.nupkg.sha512",
  3368. "microsoft.extensions.options.nuspec",
  3369. "useSharedDesignerContext.txt"
  3370. ]
  3371. },
  3372. "Microsoft.Extensions.Primitives/7.0.0": {
  3373. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3374. "type": "package",
  3375. "path": "microsoft.extensions.primitives/7.0.0",
  3376. "files": [
  3377. ".nupkg.metadata",
  3378. ".signature.p7s",
  3379. "Icon.png",
  3380. "LICENSE.TXT",
  3381. "THIRD-PARTY-NOTICES.TXT",
  3382. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3383. "buildTransitive/net462/_._",
  3384. "buildTransitive/net6.0/_._",
  3385. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3386. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3387. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3388. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3389. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3390. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3391. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3392. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3393. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3394. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3395. "microsoft.extensions.primitives.nuspec",
  3396. "useSharedDesignerContext.txt"
  3397. ]
  3398. },
  3399. "Microsoft.NETCore.Platforms/2.1.2": {
  3400. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  3401. "type": "package",
  3402. "path": "microsoft.netcore.platforms/2.1.2",
  3403. "files": [
  3404. ".nupkg.metadata",
  3405. ".signature.p7s",
  3406. "LICENSE.TXT",
  3407. "THIRD-PARTY-NOTICES.TXT",
  3408. "lib/netstandard1.0/_._",
  3409. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  3410. "microsoft.netcore.platforms.nuspec",
  3411. "runtime.json",
  3412. "useSharedDesignerContext.txt",
  3413. "version.txt"
  3414. ]
  3415. },
  3416. "Microsoft.NETCore.Targets/1.1.0": {
  3417. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3418. "type": "package",
  3419. "path": "microsoft.netcore.targets/1.1.0",
  3420. "files": [
  3421. ".nupkg.metadata",
  3422. ".signature.p7s",
  3423. "ThirdPartyNotices.txt",
  3424. "dotnet_library_license.txt",
  3425. "lib/netstandard1.0/_._",
  3426. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3427. "microsoft.netcore.targets.nuspec",
  3428. "runtime.json"
  3429. ]
  3430. },
  3431. "Microsoft.Win32.SystemEvents/6.0.0": {
  3432. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  3433. "type": "package",
  3434. "path": "microsoft.win32.systemevents/6.0.0",
  3435. "files": [
  3436. ".nupkg.metadata",
  3437. ".signature.p7s",
  3438. "Icon.png",
  3439. "LICENSE.TXT",
  3440. "THIRD-PARTY-NOTICES.TXT",
  3441. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3442. "buildTransitive/netcoreapp3.1/_._",
  3443. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3444. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3445. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3446. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3447. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3448. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3449. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3450. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3451. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  3452. "microsoft.win32.systemevents.nuspec",
  3453. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3454. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3455. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3456. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3457. "useSharedDesignerContext.txt"
  3458. ]
  3459. },
  3460. "Mono.TextTemplating/2.2.1": {
  3461. "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
  3462. "type": "package",
  3463. "path": "mono.texttemplating/2.2.1",
  3464. "files": [
  3465. ".nupkg.metadata",
  3466. ".signature.p7s",
  3467. "lib/net472/Mono.TextTemplating.dll",
  3468. "lib/netstandard2.0/Mono.TextTemplating.dll",
  3469. "mono.texttemplating.2.2.1.nupkg.sha512",
  3470. "mono.texttemplating.nuspec"
  3471. ]
  3472. },
  3473. "Npgsql/7.0.6": {
  3474. "sha512": "TAqvwRnm3NJ0QvN7cvu6geJkbI0XPzGVRElVY5hF4gsgA+BnE12x6GM1TLhdeq+7ZKvvo3BD8jXKnXmr3tvdEw==",
  3475. "type": "package",
  3476. "path": "npgsql/7.0.6",
  3477. "files": [
  3478. ".nupkg.metadata",
  3479. ".signature.p7s",
  3480. "README.md",
  3481. "lib/net5.0/Npgsql.dll",
  3482. "lib/net5.0/Npgsql.xml",
  3483. "lib/net6.0/Npgsql.dll",
  3484. "lib/net6.0/Npgsql.xml",
  3485. "lib/net7.0/Npgsql.dll",
  3486. "lib/net7.0/Npgsql.xml",
  3487. "lib/netcoreapp3.1/Npgsql.dll",
  3488. "lib/netcoreapp3.1/Npgsql.xml",
  3489. "lib/netstandard2.0/Npgsql.dll",
  3490. "lib/netstandard2.0/Npgsql.xml",
  3491. "lib/netstandard2.1/Npgsql.dll",
  3492. "lib/netstandard2.1/Npgsql.xml",
  3493. "npgsql.7.0.6.nupkg.sha512",
  3494. "npgsql.nuspec",
  3495. "postgresql.png"
  3496. ]
  3497. },
  3498. "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.11": {
  3499. "sha512": "cHEgEz0ldXc9wVANs8sJqC+3eilqefrkasCBgaVT0tyj8tb1p3/pwy2ngjboNkDG3M0z+xJsJ4jC5p8wySAM3w==",
  3500. "type": "package",
  3501. "path": "npgsql.entityframeworkcore.postgresql/7.0.11",
  3502. "files": [
  3503. ".nupkg.metadata",
  3504. ".signature.p7s",
  3505. "README.md",
  3506. "lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  3507. "lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
  3508. "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  3509. "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
  3510. "npgsql.entityframeworkcore.postgresql.7.0.11.nupkg.sha512",
  3511. "npgsql.entityframeworkcore.postgresql.nuspec",
  3512. "postgresql.png"
  3513. ]
  3514. },
  3515. "ReactiveUI/18.3.1": {
  3516. "sha512": "0tclGtjrRPfA2gbjiM7O3DeNmo6/TpDn7CMN6jgzDrbgrnysM7oEzjGEeXbtXaOxH6kEf6RiMKWobZoSgbBXhQ==",
  3517. "type": "package",
  3518. "path": "reactiveui/18.3.1",
  3519. "files": [
  3520. ".nupkg.metadata",
  3521. ".signature.p7s",
  3522. "LICENSE/LICENSE",
  3523. "lib/monoandroid11.0/ReactiveUI.dll",
  3524. "lib/monoandroid11.0/ReactiveUI.pdb",
  3525. "lib/monoandroid11.0/ReactiveUI.xml",
  3526. "lib/monoandroid12.0/ReactiveUI.dll",
  3527. "lib/monoandroid12.0/ReactiveUI.pdb",
  3528. "lib/monoandroid12.0/ReactiveUI.xml",
  3529. "lib/net462/ReactiveUI.dll",
  3530. "lib/net462/ReactiveUI.xml",
  3531. "lib/net472/ReactiveUI.dll",
  3532. "lib/net472/ReactiveUI.xml",
  3533. "lib/net6.0-android31.0/ReactiveUI.dll",
  3534. "lib/net6.0-android31.0/ReactiveUI.xml",
  3535. "lib/net6.0-ios15.4/ReactiveUI.dll",
  3536. "lib/net6.0-ios15.4/ReactiveUI.xml",
  3537. "lib/net6.0-maccatalyst15.4/ReactiveUI.dll",
  3538. "lib/net6.0-maccatalyst15.4/ReactiveUI.xml",
  3539. "lib/net6.0-macos12.3/ReactiveUI.dll",
  3540. "lib/net6.0-macos12.3/ReactiveUI.xml",
  3541. "lib/net6.0-tvos15.4/ReactiveUI.dll",
  3542. "lib/net6.0-tvos15.4/ReactiveUI.xml",
  3543. "lib/net6.0/ReactiveUI.dll",
  3544. "lib/net6.0/ReactiveUI.xml",
  3545. "lib/netstandard2.0/ReactiveUI.dll",
  3546. "lib/netstandard2.0/ReactiveUI.xml",
  3547. "lib/tizen40/ReactiveUI.dll",
  3548. "lib/tizen40/ReactiveUI.xml",
  3549. "lib/uap10.0.16299/ReactiveUI.dll",
  3550. "lib/uap10.0.16299/ReactiveUI.pri",
  3551. "lib/uap10.0.16299/ReactiveUI.xml",
  3552. "lib/xamarinios10/ReactiveUI.dll",
  3553. "lib/xamarinios10/ReactiveUI.xml",
  3554. "lib/xamarinmac20/ReactiveUI.dll",
  3555. "lib/xamarinmac20/ReactiveUI.xml",
  3556. "lib/xamarintvos10/ReactiveUI.dll",
  3557. "lib/xamarintvos10/ReactiveUI.xml",
  3558. "logo.png",
  3559. "reactiveui.18.3.1.nupkg.sha512",
  3560. "reactiveui.nuspec"
  3561. ]
  3562. },
  3563. "SkiaSharp/2.88.6": {
  3564. "sha512": "wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
  3565. "type": "package",
  3566. "path": "skiasharp/2.88.6",
  3567. "files": [
  3568. ".nupkg.metadata",
  3569. ".signature.p7s",
  3570. "LICENSE.txt",
  3571. "THIRD-PARTY-NOTICES.txt",
  3572. "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll",
  3573. "lib/monoandroid1.0/SkiaSharp.dll",
  3574. "lib/monoandroid1.0/SkiaSharp.pdb",
  3575. "lib/monoandroid1.0/SkiaSharp.xml",
  3576. "lib/net462/SkiaSharp.dll",
  3577. "lib/net462/SkiaSharp.pdb",
  3578. "lib/net462/SkiaSharp.xml",
  3579. "lib/net6.0-android30.0/SkiaSharp.dll",
  3580. "lib/net6.0-android30.0/SkiaSharp.pdb",
  3581. "lib/net6.0-android30.0/SkiaSharp.xml",
  3582. "lib/net6.0-ios13.6/SkiaSharp.dll",
  3583. "lib/net6.0-ios13.6/SkiaSharp.pdb",
  3584. "lib/net6.0-ios13.6/SkiaSharp.xml",
  3585. "lib/net6.0-maccatalyst13.5/SkiaSharp.dll",
  3586. "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb",
  3587. "lib/net6.0-maccatalyst13.5/SkiaSharp.xml",
  3588. "lib/net6.0-macos10.15/SkiaSharp.dll",
  3589. "lib/net6.0-macos10.15/SkiaSharp.pdb",
  3590. "lib/net6.0-macos10.15/SkiaSharp.xml",
  3591. "lib/net6.0-tizen7.0/SkiaSharp.dll",
  3592. "lib/net6.0-tizen7.0/SkiaSharp.pdb",
  3593. "lib/net6.0-tizen7.0/SkiaSharp.xml",
  3594. "lib/net6.0-tvos13.4/SkiaSharp.dll",
  3595. "lib/net6.0-tvos13.4/SkiaSharp.pdb",
  3596. "lib/net6.0-tvos13.4/SkiaSharp.xml",
  3597. "lib/net6.0/SkiaSharp.dll",
  3598. "lib/net6.0/SkiaSharp.pdb",
  3599. "lib/net6.0/SkiaSharp.xml",
  3600. "lib/netcoreapp3.1/SkiaSharp.dll",
  3601. "lib/netcoreapp3.1/SkiaSharp.pdb",
  3602. "lib/netcoreapp3.1/SkiaSharp.xml",
  3603. "lib/netstandard1.3/SkiaSharp.dll",
  3604. "lib/netstandard1.3/SkiaSharp.pdb",
  3605. "lib/netstandard1.3/SkiaSharp.xml",
  3606. "lib/netstandard2.0/SkiaSharp.dll",
  3607. "lib/netstandard2.0/SkiaSharp.pdb",
  3608. "lib/netstandard2.0/SkiaSharp.xml",
  3609. "lib/netstandard2.1/SkiaSharp.dll",
  3610. "lib/netstandard2.1/SkiaSharp.pdb",
  3611. "lib/netstandard2.1/SkiaSharp.xml",
  3612. "lib/tizen40/SkiaSharp.dll",
  3613. "lib/tizen40/SkiaSharp.pdb",
  3614. "lib/tizen40/SkiaSharp.xml",
  3615. "lib/uap10.0.10240/SkiaSharp.dll",
  3616. "lib/uap10.0.10240/SkiaSharp.pdb",
  3617. "lib/uap10.0.10240/SkiaSharp.xml",
  3618. "lib/uap10.0.16299/SkiaSharp.dll",
  3619. "lib/uap10.0.16299/SkiaSharp.pdb",
  3620. "lib/uap10.0.16299/SkiaSharp.xml",
  3621. "lib/xamarinios1.0/SkiaSharp.dll",
  3622. "lib/xamarinios1.0/SkiaSharp.pdb",
  3623. "lib/xamarinios1.0/SkiaSharp.xml",
  3624. "lib/xamarinmac2.0/SkiaSharp.dll",
  3625. "lib/xamarinmac2.0/SkiaSharp.pdb",
  3626. "lib/xamarinmac2.0/SkiaSharp.xml",
  3627. "lib/xamarintvos1.0/SkiaSharp.dll",
  3628. "lib/xamarintvos1.0/SkiaSharp.pdb",
  3629. "lib/xamarintvos1.0/SkiaSharp.xml",
  3630. "lib/xamarinwatchos1.0/SkiaSharp.dll",
  3631. "lib/xamarinwatchos1.0/SkiaSharp.pdb",
  3632. "lib/xamarinwatchos1.0/SkiaSharp.xml",
  3633. "skiasharp.2.88.6.nupkg.sha512",
  3634. "skiasharp.nuspec"
  3635. ]
  3636. },
  3637. "SkiaSharp.NativeAssets.Linux/2.88.6": {
  3638. "sha512": "iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
  3639. "type": "package",
  3640. "path": "skiasharp.nativeassets.linux/2.88.6",
  3641. "files": [
  3642. ".nupkg.metadata",
  3643. ".signature.p7s",
  3644. "LICENSE.txt",
  3645. "THIRD-PARTY-NOTICES.txt",
  3646. "build/net462/SkiaSharp.NativeAssets.Linux.targets",
  3647. "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.targets",
  3648. "lib/net462/_._",
  3649. "lib/net6.0/_._",
  3650. "lib/netcoreapp3.1/_._",
  3651. "lib/netstandard1.3/_._",
  3652. "runtimes/linux-arm/native/libSkiaSharp.so",
  3653. "runtimes/linux-arm64/native/libSkiaSharp.so",
  3654. "runtimes/linux-musl-x64/native/libSkiaSharp.so",
  3655. "runtimes/linux-x64/native/libSkiaSharp.so",
  3656. "skiasharp.nativeassets.linux.2.88.6.nupkg.sha512",
  3657. "skiasharp.nativeassets.linux.nuspec"
  3658. ]
  3659. },
  3660. "SkiaSharp.NativeAssets.macOS/2.88.6": {
  3661. "sha512": "Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
  3662. "type": "package",
  3663. "path": "skiasharp.nativeassets.macos/2.88.6",
  3664. "files": [
  3665. ".nupkg.metadata",
  3666. ".signature.p7s",
  3667. "LICENSE.txt",
  3668. "THIRD-PARTY-NOTICES.txt",
  3669. "build/net462/SkiaSharp.NativeAssets.macOS.targets",
  3670. "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
  3671. "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
  3672. "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets",
  3673. "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
  3674. "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
  3675. "lib/net462/_._",
  3676. "lib/net6.0-macos10.15/_._",
  3677. "lib/net6.0/_._",
  3678. "lib/netcoreapp3.1/_._",
  3679. "lib/netstandard1.3/_._",
  3680. "lib/xamarinmac2.0/_._",
  3681. "runtimes/osx/native/libSkiaSharp.dylib",
  3682. "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512",
  3683. "skiasharp.nativeassets.macos.nuspec"
  3684. ]
  3685. },
  3686. "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
  3687. "sha512": "pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
  3688. "type": "package",
  3689. "path": "skiasharp.nativeassets.webassembly/2.88.6",
  3690. "files": [
  3691. ".nupkg.metadata",
  3692. ".signature.p7s",
  3693. "LICENSE.txt",
  3694. "THIRD-PARTY-NOTICES.txt",
  3695. "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
  3696. "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
  3697. "build/netstandard1.0/libSkiaSharp.a/2.0.23/libSkiaSharp.a",
  3698. "build/netstandard1.0/libSkiaSharp.a/2.0.6/libSkiaSharp.a",
  3699. "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt,simd/libSkiaSharp.a",
  3700. "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt/libSkiaSharp.a",
  3701. "build/netstandard1.0/libSkiaSharp.a/3.1.12/simd/libSkiaSharp.a",
  3702. "build/netstandard1.0/libSkiaSharp.a/3.1.12/st/libSkiaSharp.a",
  3703. "build/netstandard1.0/libSkiaSharp.a/3.1.34/mt/libSkiaSharp.a",
  3704. "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,mt/libSkiaSharp.a",
  3705. "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,st/libSkiaSharp.a",
  3706. "build/netstandard1.0/libSkiaSharp.a/3.1.34/st/libSkiaSharp.a",
  3707. "build/netstandard1.0/libSkiaSharp.a/3.1.7/libSkiaSharp.a",
  3708. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
  3709. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
  3710. "lib/netstandard1.0/_._",
  3711. "skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512",
  3712. "skiasharp.nativeassets.webassembly.nuspec"
  3713. ]
  3714. },
  3715. "SkiaSharp.NativeAssets.Win32/2.88.6": {
  3716. "sha512": "7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
  3717. "type": "package",
  3718. "path": "skiasharp.nativeassets.win32/2.88.6",
  3719. "files": [
  3720. ".nupkg.metadata",
  3721. ".signature.p7s",
  3722. "LICENSE.txt",
  3723. "THIRD-PARTY-NOTICES.txt",
  3724. "build/net462/SkiaSharp.NativeAssets.Win32.targets",
  3725. "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets",
  3726. "lib/net462/_._",
  3727. "lib/net6.0/_._",
  3728. "lib/netcoreapp3.1/_._",
  3729. "lib/netstandard1.3/_._",
  3730. "runtimes/win-arm64/native/libSkiaSharp.dll",
  3731. "runtimes/win-x64/native/libSkiaSharp.dll",
  3732. "runtimes/win-x86/native/libSkiaSharp.dll",
  3733. "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512",
  3734. "skiasharp.nativeassets.win32.nuspec"
  3735. ]
  3736. },
  3737. "Splat/14.4.1": {
  3738. "sha512": "Z1Mncnzm9pNIaIbZ/EWH6x5ESnKsmAvu8HP4StBRw+yhz0lzE7LCbt22TNTPaFrYLYbYCbGQIc/61yuSnpLidg==",
  3739. "type": "package",
  3740. "path": "splat/14.4.1",
  3741. "files": [
  3742. ".nupkg.metadata",
  3743. ".signature.p7s",
  3744. "LICENSE/LICENSE",
  3745. "lib/net6.0/Splat.dll",
  3746. "lib/net6.0/Splat.xml",
  3747. "lib/netstandard2.0/Splat.dll",
  3748. "lib/netstandard2.0/Splat.xml",
  3749. "splat.14.4.1.nupkg.sha512",
  3750. "splat.nuspec"
  3751. ]
  3752. },
  3753. "System.CodeDom/4.4.0": {
  3754. "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  3755. "type": "package",
  3756. "path": "system.codedom/4.4.0",
  3757. "files": [
  3758. ".nupkg.metadata",
  3759. ".signature.p7s",
  3760. "LICENSE.TXT",
  3761. "THIRD-PARTY-NOTICES.TXT",
  3762. "lib/net461/System.CodeDom.dll",
  3763. "lib/netstandard2.0/System.CodeDom.dll",
  3764. "ref/net461/System.CodeDom.dll",
  3765. "ref/net461/System.CodeDom.xml",
  3766. "ref/netstandard2.0/System.CodeDom.dll",
  3767. "ref/netstandard2.0/System.CodeDom.xml",
  3768. "system.codedom.4.4.0.nupkg.sha512",
  3769. "system.codedom.nuspec",
  3770. "useSharedDesignerContext.txt",
  3771. "version.txt"
  3772. ]
  3773. },
  3774. "System.Collections/4.3.0": {
  3775. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3776. "type": "package",
  3777. "path": "system.collections/4.3.0",
  3778. "files": [
  3779. ".nupkg.metadata",
  3780. ".signature.p7s",
  3781. "ThirdPartyNotices.txt",
  3782. "dotnet_library_license.txt",
  3783. "lib/MonoAndroid10/_._",
  3784. "lib/MonoTouch10/_._",
  3785. "lib/net45/_._",
  3786. "lib/portable-net45+win8+wp8+wpa81/_._",
  3787. "lib/win8/_._",
  3788. "lib/wp80/_._",
  3789. "lib/wpa81/_._",
  3790. "lib/xamarinios10/_._",
  3791. "lib/xamarinmac20/_._",
  3792. "lib/xamarintvos10/_._",
  3793. "lib/xamarinwatchos10/_._",
  3794. "ref/MonoAndroid10/_._",
  3795. "ref/MonoTouch10/_._",
  3796. "ref/net45/_._",
  3797. "ref/netcore50/System.Collections.dll",
  3798. "ref/netcore50/System.Collections.xml",
  3799. "ref/netcore50/de/System.Collections.xml",
  3800. "ref/netcore50/es/System.Collections.xml",
  3801. "ref/netcore50/fr/System.Collections.xml",
  3802. "ref/netcore50/it/System.Collections.xml",
  3803. "ref/netcore50/ja/System.Collections.xml",
  3804. "ref/netcore50/ko/System.Collections.xml",
  3805. "ref/netcore50/ru/System.Collections.xml",
  3806. "ref/netcore50/zh-hans/System.Collections.xml",
  3807. "ref/netcore50/zh-hant/System.Collections.xml",
  3808. "ref/netstandard1.0/System.Collections.dll",
  3809. "ref/netstandard1.0/System.Collections.xml",
  3810. "ref/netstandard1.0/de/System.Collections.xml",
  3811. "ref/netstandard1.0/es/System.Collections.xml",
  3812. "ref/netstandard1.0/fr/System.Collections.xml",
  3813. "ref/netstandard1.0/it/System.Collections.xml",
  3814. "ref/netstandard1.0/ja/System.Collections.xml",
  3815. "ref/netstandard1.0/ko/System.Collections.xml",
  3816. "ref/netstandard1.0/ru/System.Collections.xml",
  3817. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3818. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3819. "ref/netstandard1.3/System.Collections.dll",
  3820. "ref/netstandard1.3/System.Collections.xml",
  3821. "ref/netstandard1.3/de/System.Collections.xml",
  3822. "ref/netstandard1.3/es/System.Collections.xml",
  3823. "ref/netstandard1.3/fr/System.Collections.xml",
  3824. "ref/netstandard1.3/it/System.Collections.xml",
  3825. "ref/netstandard1.3/ja/System.Collections.xml",
  3826. "ref/netstandard1.3/ko/System.Collections.xml",
  3827. "ref/netstandard1.3/ru/System.Collections.xml",
  3828. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3829. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3830. "ref/portable-net45+win8+wp8+wpa81/_._",
  3831. "ref/win8/_._",
  3832. "ref/wp80/_._",
  3833. "ref/wpa81/_._",
  3834. "ref/xamarinios10/_._",
  3835. "ref/xamarinmac20/_._",
  3836. "ref/xamarintvos10/_._",
  3837. "ref/xamarinwatchos10/_._",
  3838. "system.collections.4.3.0.nupkg.sha512",
  3839. "system.collections.nuspec"
  3840. ]
  3841. },
  3842. "System.Collections.Immutable/5.0.0": {
  3843. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  3844. "type": "package",
  3845. "path": "system.collections.immutable/5.0.0",
  3846. "files": [
  3847. ".nupkg.metadata",
  3848. ".signature.p7s",
  3849. "Icon.png",
  3850. "LICENSE.TXT",
  3851. "THIRD-PARTY-NOTICES.TXT",
  3852. "lib/net461/System.Collections.Immutable.dll",
  3853. "lib/net461/System.Collections.Immutable.xml",
  3854. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3855. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3856. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3857. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3858. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3859. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3860. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3861. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3862. "system.collections.immutable.5.0.0.nupkg.sha512",
  3863. "system.collections.immutable.nuspec",
  3864. "useSharedDesignerContext.txt",
  3865. "version.txt"
  3866. ]
  3867. },
  3868. "System.ComponentModel.Annotations/4.5.0": {
  3869. "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  3870. "type": "package",
  3871. "path": "system.componentmodel.annotations/4.5.0",
  3872. "files": [
  3873. ".nupkg.metadata",
  3874. ".signature.p7s",
  3875. "LICENSE.TXT",
  3876. "THIRD-PARTY-NOTICES.TXT",
  3877. "lib/MonoAndroid10/_._",
  3878. "lib/MonoTouch10/_._",
  3879. "lib/net45/_._",
  3880. "lib/net461/System.ComponentModel.Annotations.dll",
  3881. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3882. "lib/netcoreapp2.0/_._",
  3883. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3884. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3885. "lib/portable-net45+win8/_._",
  3886. "lib/uap10.0.16299/_._",
  3887. "lib/win8/_._",
  3888. "lib/xamarinios10/_._",
  3889. "lib/xamarinmac20/_._",
  3890. "lib/xamarintvos10/_._",
  3891. "lib/xamarinwatchos10/_._",
  3892. "ref/MonoAndroid10/_._",
  3893. "ref/MonoTouch10/_._",
  3894. "ref/net45/_._",
  3895. "ref/net461/System.ComponentModel.Annotations.dll",
  3896. "ref/net461/System.ComponentModel.Annotations.xml",
  3897. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3898. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3899. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3900. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3901. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3902. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3903. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3904. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3905. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3906. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3907. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3908. "ref/netcoreapp2.0/_._",
  3909. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3910. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3911. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3912. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3913. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3914. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3915. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3916. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3917. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3918. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3919. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3920. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3921. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3922. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3923. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3924. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3925. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3926. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3927. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3928. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3929. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3930. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3931. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3932. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3933. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3934. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3935. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3936. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3937. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3938. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3939. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3940. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3941. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3942. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3943. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3944. "ref/portable-net45+win8/_._",
  3945. "ref/uap10.0.16299/_._",
  3946. "ref/win8/_._",
  3947. "ref/xamarinios10/_._",
  3948. "ref/xamarinmac20/_._",
  3949. "ref/xamarintvos10/_._",
  3950. "ref/xamarinwatchos10/_._",
  3951. "system.componentmodel.annotations.4.5.0.nupkg.sha512",
  3952. "system.componentmodel.annotations.nuspec",
  3953. "useSharedDesignerContext.txt",
  3954. "version.txt"
  3955. ]
  3956. },
  3957. "System.Diagnostics.Debug/4.3.0": {
  3958. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  3959. "type": "package",
  3960. "path": "system.diagnostics.debug/4.3.0",
  3961. "files": [
  3962. ".nupkg.metadata",
  3963. ".signature.p7s",
  3964. "ThirdPartyNotices.txt",
  3965. "dotnet_library_license.txt",
  3966. "lib/MonoAndroid10/_._",
  3967. "lib/MonoTouch10/_._",
  3968. "lib/net45/_._",
  3969. "lib/portable-net45+win8+wp8+wpa81/_._",
  3970. "lib/win8/_._",
  3971. "lib/wp80/_._",
  3972. "lib/wpa81/_._",
  3973. "lib/xamarinios10/_._",
  3974. "lib/xamarinmac20/_._",
  3975. "lib/xamarintvos10/_._",
  3976. "lib/xamarinwatchos10/_._",
  3977. "ref/MonoAndroid10/_._",
  3978. "ref/MonoTouch10/_._",
  3979. "ref/net45/_._",
  3980. "ref/netcore50/System.Diagnostics.Debug.dll",
  3981. "ref/netcore50/System.Diagnostics.Debug.xml",
  3982. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3983. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3984. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3985. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3986. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3987. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3988. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3989. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3990. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3991. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3992. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3993. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3994. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3995. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3996. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3997. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3998. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3999. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4000. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4001. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4002. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4003. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4004. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4005. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4006. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4007. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4008. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4009. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4010. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4011. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4012. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4013. "ref/portable-net45+win8+wp8+wpa81/_._",
  4014. "ref/win8/_._",
  4015. "ref/wp80/_._",
  4016. "ref/wpa81/_._",
  4017. "ref/xamarinios10/_._",
  4018. "ref/xamarinmac20/_._",
  4019. "ref/xamarintvos10/_._",
  4020. "ref/xamarinwatchos10/_._",
  4021. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4022. "system.diagnostics.debug.nuspec"
  4023. ]
  4024. },
  4025. "System.Drawing.Common/6.0.0": {
  4026. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  4027. "type": "package",
  4028. "path": "system.drawing.common/6.0.0",
  4029. "files": [
  4030. ".nupkg.metadata",
  4031. ".signature.p7s",
  4032. "Icon.png",
  4033. "LICENSE.TXT",
  4034. "THIRD-PARTY-NOTICES.TXT",
  4035. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  4036. "buildTransitive/netcoreapp3.1/_._",
  4037. "lib/MonoAndroid10/_._",
  4038. "lib/MonoTouch10/_._",
  4039. "lib/net461/System.Drawing.Common.dll",
  4040. "lib/net461/System.Drawing.Common.xml",
  4041. "lib/net6.0/System.Drawing.Common.dll",
  4042. "lib/net6.0/System.Drawing.Common.xml",
  4043. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  4044. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  4045. "lib/netstandard2.0/System.Drawing.Common.dll",
  4046. "lib/netstandard2.0/System.Drawing.Common.xml",
  4047. "lib/xamarinios10/_._",
  4048. "lib/xamarinmac20/_._",
  4049. "lib/xamarintvos10/_._",
  4050. "lib/xamarinwatchos10/_._",
  4051. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  4052. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  4053. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  4054. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  4055. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  4056. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  4057. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  4058. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  4059. "system.drawing.common.6.0.0.nupkg.sha512",
  4060. "system.drawing.common.nuspec",
  4061. "useSharedDesignerContext.txt"
  4062. ]
  4063. },
  4064. "System.Dynamic.Runtime/4.3.0": {
  4065. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  4066. "type": "package",
  4067. "path": "system.dynamic.runtime/4.3.0",
  4068. "files": [
  4069. ".nupkg.metadata",
  4070. ".signature.p7s",
  4071. "ThirdPartyNotices.txt",
  4072. "dotnet_library_license.txt",
  4073. "lib/MonoAndroid10/_._",
  4074. "lib/MonoTouch10/_._",
  4075. "lib/net45/_._",
  4076. "lib/netcore50/System.Dynamic.Runtime.dll",
  4077. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4078. "lib/portable-net45+win8+wp8+wpa81/_._",
  4079. "lib/win8/_._",
  4080. "lib/wp80/_._",
  4081. "lib/wpa81/_._",
  4082. "lib/xamarinios10/_._",
  4083. "lib/xamarinmac20/_._",
  4084. "lib/xamarintvos10/_._",
  4085. "lib/xamarinwatchos10/_._",
  4086. "ref/MonoAndroid10/_._",
  4087. "ref/MonoTouch10/_._",
  4088. "ref/net45/_._",
  4089. "ref/netcore50/System.Dynamic.Runtime.dll",
  4090. "ref/netcore50/System.Dynamic.Runtime.xml",
  4091. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4092. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4093. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4094. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4095. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4096. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4097. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4098. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4099. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4100. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4101. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4102. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4103. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4104. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4105. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4106. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4107. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4108. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4109. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4110. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4111. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4112. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4113. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4114. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4115. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4116. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4117. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4118. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4119. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4120. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4121. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4122. "ref/portable-net45+win8+wp8+wpa81/_._",
  4123. "ref/win8/_._",
  4124. "ref/wp80/_._",
  4125. "ref/wpa81/_._",
  4126. "ref/xamarinios10/_._",
  4127. "ref/xamarinmac20/_._",
  4128. "ref/xamarintvos10/_._",
  4129. "ref/xamarinwatchos10/_._",
  4130. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4131. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  4132. "system.dynamic.runtime.nuspec"
  4133. ]
  4134. },
  4135. "System.Globalization/4.3.0": {
  4136. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4137. "type": "package",
  4138. "path": "system.globalization/4.3.0",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "ThirdPartyNotices.txt",
  4143. "dotnet_library_license.txt",
  4144. "lib/MonoAndroid10/_._",
  4145. "lib/MonoTouch10/_._",
  4146. "lib/net45/_._",
  4147. "lib/portable-net45+win8+wp8+wpa81/_._",
  4148. "lib/win8/_._",
  4149. "lib/wp80/_._",
  4150. "lib/wpa81/_._",
  4151. "lib/xamarinios10/_._",
  4152. "lib/xamarinmac20/_._",
  4153. "lib/xamarintvos10/_._",
  4154. "lib/xamarinwatchos10/_._",
  4155. "ref/MonoAndroid10/_._",
  4156. "ref/MonoTouch10/_._",
  4157. "ref/net45/_._",
  4158. "ref/netcore50/System.Globalization.dll",
  4159. "ref/netcore50/System.Globalization.xml",
  4160. "ref/netcore50/de/System.Globalization.xml",
  4161. "ref/netcore50/es/System.Globalization.xml",
  4162. "ref/netcore50/fr/System.Globalization.xml",
  4163. "ref/netcore50/it/System.Globalization.xml",
  4164. "ref/netcore50/ja/System.Globalization.xml",
  4165. "ref/netcore50/ko/System.Globalization.xml",
  4166. "ref/netcore50/ru/System.Globalization.xml",
  4167. "ref/netcore50/zh-hans/System.Globalization.xml",
  4168. "ref/netcore50/zh-hant/System.Globalization.xml",
  4169. "ref/netstandard1.0/System.Globalization.dll",
  4170. "ref/netstandard1.0/System.Globalization.xml",
  4171. "ref/netstandard1.0/de/System.Globalization.xml",
  4172. "ref/netstandard1.0/es/System.Globalization.xml",
  4173. "ref/netstandard1.0/fr/System.Globalization.xml",
  4174. "ref/netstandard1.0/it/System.Globalization.xml",
  4175. "ref/netstandard1.0/ja/System.Globalization.xml",
  4176. "ref/netstandard1.0/ko/System.Globalization.xml",
  4177. "ref/netstandard1.0/ru/System.Globalization.xml",
  4178. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4179. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4180. "ref/netstandard1.3/System.Globalization.dll",
  4181. "ref/netstandard1.3/System.Globalization.xml",
  4182. "ref/netstandard1.3/de/System.Globalization.xml",
  4183. "ref/netstandard1.3/es/System.Globalization.xml",
  4184. "ref/netstandard1.3/fr/System.Globalization.xml",
  4185. "ref/netstandard1.3/it/System.Globalization.xml",
  4186. "ref/netstandard1.3/ja/System.Globalization.xml",
  4187. "ref/netstandard1.3/ko/System.Globalization.xml",
  4188. "ref/netstandard1.3/ru/System.Globalization.xml",
  4189. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4190. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4191. "ref/portable-net45+win8+wp8+wpa81/_._",
  4192. "ref/win8/_._",
  4193. "ref/wp80/_._",
  4194. "ref/wpa81/_._",
  4195. "ref/xamarinios10/_._",
  4196. "ref/xamarinmac20/_._",
  4197. "ref/xamarintvos10/_._",
  4198. "ref/xamarinwatchos10/_._",
  4199. "system.globalization.4.3.0.nupkg.sha512",
  4200. "system.globalization.nuspec"
  4201. ]
  4202. },
  4203. "System.IO/4.3.0": {
  4204. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4205. "type": "package",
  4206. "path": "system.io/4.3.0",
  4207. "files": [
  4208. ".nupkg.metadata",
  4209. ".signature.p7s",
  4210. "ThirdPartyNotices.txt",
  4211. "dotnet_library_license.txt",
  4212. "lib/MonoAndroid10/_._",
  4213. "lib/MonoTouch10/_._",
  4214. "lib/net45/_._",
  4215. "lib/net462/System.IO.dll",
  4216. "lib/portable-net45+win8+wp8+wpa81/_._",
  4217. "lib/win8/_._",
  4218. "lib/wp80/_._",
  4219. "lib/wpa81/_._",
  4220. "lib/xamarinios10/_._",
  4221. "lib/xamarinmac20/_._",
  4222. "lib/xamarintvos10/_._",
  4223. "lib/xamarinwatchos10/_._",
  4224. "ref/MonoAndroid10/_._",
  4225. "ref/MonoTouch10/_._",
  4226. "ref/net45/_._",
  4227. "ref/net462/System.IO.dll",
  4228. "ref/netcore50/System.IO.dll",
  4229. "ref/netcore50/System.IO.xml",
  4230. "ref/netcore50/de/System.IO.xml",
  4231. "ref/netcore50/es/System.IO.xml",
  4232. "ref/netcore50/fr/System.IO.xml",
  4233. "ref/netcore50/it/System.IO.xml",
  4234. "ref/netcore50/ja/System.IO.xml",
  4235. "ref/netcore50/ko/System.IO.xml",
  4236. "ref/netcore50/ru/System.IO.xml",
  4237. "ref/netcore50/zh-hans/System.IO.xml",
  4238. "ref/netcore50/zh-hant/System.IO.xml",
  4239. "ref/netstandard1.0/System.IO.dll",
  4240. "ref/netstandard1.0/System.IO.xml",
  4241. "ref/netstandard1.0/de/System.IO.xml",
  4242. "ref/netstandard1.0/es/System.IO.xml",
  4243. "ref/netstandard1.0/fr/System.IO.xml",
  4244. "ref/netstandard1.0/it/System.IO.xml",
  4245. "ref/netstandard1.0/ja/System.IO.xml",
  4246. "ref/netstandard1.0/ko/System.IO.xml",
  4247. "ref/netstandard1.0/ru/System.IO.xml",
  4248. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4249. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4250. "ref/netstandard1.3/System.IO.dll",
  4251. "ref/netstandard1.3/System.IO.xml",
  4252. "ref/netstandard1.3/de/System.IO.xml",
  4253. "ref/netstandard1.3/es/System.IO.xml",
  4254. "ref/netstandard1.3/fr/System.IO.xml",
  4255. "ref/netstandard1.3/it/System.IO.xml",
  4256. "ref/netstandard1.3/ja/System.IO.xml",
  4257. "ref/netstandard1.3/ko/System.IO.xml",
  4258. "ref/netstandard1.3/ru/System.IO.xml",
  4259. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4260. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4261. "ref/netstandard1.5/System.IO.dll",
  4262. "ref/netstandard1.5/System.IO.xml",
  4263. "ref/netstandard1.5/de/System.IO.xml",
  4264. "ref/netstandard1.5/es/System.IO.xml",
  4265. "ref/netstandard1.5/fr/System.IO.xml",
  4266. "ref/netstandard1.5/it/System.IO.xml",
  4267. "ref/netstandard1.5/ja/System.IO.xml",
  4268. "ref/netstandard1.5/ko/System.IO.xml",
  4269. "ref/netstandard1.5/ru/System.IO.xml",
  4270. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4271. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4272. "ref/portable-net45+win8+wp8+wpa81/_._",
  4273. "ref/win8/_._",
  4274. "ref/wp80/_._",
  4275. "ref/wpa81/_._",
  4276. "ref/xamarinios10/_._",
  4277. "ref/xamarinmac20/_._",
  4278. "ref/xamarintvos10/_._",
  4279. "ref/xamarinwatchos10/_._",
  4280. "system.io.4.3.0.nupkg.sha512",
  4281. "system.io.nuspec"
  4282. ]
  4283. },
  4284. "System.IO.Pipelines/6.0.0": {
  4285. "sha512": "mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
  4286. "type": "package",
  4287. "path": "system.io.pipelines/6.0.0",
  4288. "files": [
  4289. ".nupkg.metadata",
  4290. ".signature.p7s",
  4291. "Icon.png",
  4292. "LICENSE.TXT",
  4293. "THIRD-PARTY-NOTICES.TXT",
  4294. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  4295. "buildTransitive/netcoreapp3.1/_._",
  4296. "lib/net461/System.IO.Pipelines.dll",
  4297. "lib/net461/System.IO.Pipelines.xml",
  4298. "lib/net6.0/System.IO.Pipelines.dll",
  4299. "lib/net6.0/System.IO.Pipelines.xml",
  4300. "lib/netcoreapp3.1/System.IO.Pipelines.dll",
  4301. "lib/netcoreapp3.1/System.IO.Pipelines.xml",
  4302. "lib/netstandard2.0/System.IO.Pipelines.dll",
  4303. "lib/netstandard2.0/System.IO.Pipelines.xml",
  4304. "system.io.pipelines.6.0.0.nupkg.sha512",
  4305. "system.io.pipelines.nuspec",
  4306. "useSharedDesignerContext.txt"
  4307. ]
  4308. },
  4309. "System.Linq/4.3.0": {
  4310. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4311. "type": "package",
  4312. "path": "system.linq/4.3.0",
  4313. "files": [
  4314. ".nupkg.metadata",
  4315. ".signature.p7s",
  4316. "ThirdPartyNotices.txt",
  4317. "dotnet_library_license.txt",
  4318. "lib/MonoAndroid10/_._",
  4319. "lib/MonoTouch10/_._",
  4320. "lib/net45/_._",
  4321. "lib/net463/System.Linq.dll",
  4322. "lib/netcore50/System.Linq.dll",
  4323. "lib/netstandard1.6/System.Linq.dll",
  4324. "lib/portable-net45+win8+wp8+wpa81/_._",
  4325. "lib/win8/_._",
  4326. "lib/wp80/_._",
  4327. "lib/wpa81/_._",
  4328. "lib/xamarinios10/_._",
  4329. "lib/xamarinmac20/_._",
  4330. "lib/xamarintvos10/_._",
  4331. "lib/xamarinwatchos10/_._",
  4332. "ref/MonoAndroid10/_._",
  4333. "ref/MonoTouch10/_._",
  4334. "ref/net45/_._",
  4335. "ref/net463/System.Linq.dll",
  4336. "ref/netcore50/System.Linq.dll",
  4337. "ref/netcore50/System.Linq.xml",
  4338. "ref/netcore50/de/System.Linq.xml",
  4339. "ref/netcore50/es/System.Linq.xml",
  4340. "ref/netcore50/fr/System.Linq.xml",
  4341. "ref/netcore50/it/System.Linq.xml",
  4342. "ref/netcore50/ja/System.Linq.xml",
  4343. "ref/netcore50/ko/System.Linq.xml",
  4344. "ref/netcore50/ru/System.Linq.xml",
  4345. "ref/netcore50/zh-hans/System.Linq.xml",
  4346. "ref/netcore50/zh-hant/System.Linq.xml",
  4347. "ref/netstandard1.0/System.Linq.dll",
  4348. "ref/netstandard1.0/System.Linq.xml",
  4349. "ref/netstandard1.0/de/System.Linq.xml",
  4350. "ref/netstandard1.0/es/System.Linq.xml",
  4351. "ref/netstandard1.0/fr/System.Linq.xml",
  4352. "ref/netstandard1.0/it/System.Linq.xml",
  4353. "ref/netstandard1.0/ja/System.Linq.xml",
  4354. "ref/netstandard1.0/ko/System.Linq.xml",
  4355. "ref/netstandard1.0/ru/System.Linq.xml",
  4356. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4357. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4358. "ref/netstandard1.6/System.Linq.dll",
  4359. "ref/netstandard1.6/System.Linq.xml",
  4360. "ref/netstandard1.6/de/System.Linq.xml",
  4361. "ref/netstandard1.6/es/System.Linq.xml",
  4362. "ref/netstandard1.6/fr/System.Linq.xml",
  4363. "ref/netstandard1.6/it/System.Linq.xml",
  4364. "ref/netstandard1.6/ja/System.Linq.xml",
  4365. "ref/netstandard1.6/ko/System.Linq.xml",
  4366. "ref/netstandard1.6/ru/System.Linq.xml",
  4367. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4368. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4369. "ref/portable-net45+win8+wp8+wpa81/_._",
  4370. "ref/win8/_._",
  4371. "ref/wp80/_._",
  4372. "ref/wpa81/_._",
  4373. "ref/xamarinios10/_._",
  4374. "ref/xamarinmac20/_._",
  4375. "ref/xamarintvos10/_._",
  4376. "ref/xamarinwatchos10/_._",
  4377. "system.linq.4.3.0.nupkg.sha512",
  4378. "system.linq.nuspec"
  4379. ]
  4380. },
  4381. "System.Linq.Expressions/4.3.0": {
  4382. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4383. "type": "package",
  4384. "path": "system.linq.expressions/4.3.0",
  4385. "files": [
  4386. ".nupkg.metadata",
  4387. ".signature.p7s",
  4388. "ThirdPartyNotices.txt",
  4389. "dotnet_library_license.txt",
  4390. "lib/MonoAndroid10/_._",
  4391. "lib/MonoTouch10/_._",
  4392. "lib/net45/_._",
  4393. "lib/net463/System.Linq.Expressions.dll",
  4394. "lib/netcore50/System.Linq.Expressions.dll",
  4395. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4396. "lib/portable-net45+win8+wp8+wpa81/_._",
  4397. "lib/win8/_._",
  4398. "lib/wp80/_._",
  4399. "lib/wpa81/_._",
  4400. "lib/xamarinios10/_._",
  4401. "lib/xamarinmac20/_._",
  4402. "lib/xamarintvos10/_._",
  4403. "lib/xamarinwatchos10/_._",
  4404. "ref/MonoAndroid10/_._",
  4405. "ref/MonoTouch10/_._",
  4406. "ref/net45/_._",
  4407. "ref/net463/System.Linq.Expressions.dll",
  4408. "ref/netcore50/System.Linq.Expressions.dll",
  4409. "ref/netcore50/System.Linq.Expressions.xml",
  4410. "ref/netcore50/de/System.Linq.Expressions.xml",
  4411. "ref/netcore50/es/System.Linq.Expressions.xml",
  4412. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4413. "ref/netcore50/it/System.Linq.Expressions.xml",
  4414. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4415. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4416. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4417. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4418. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4419. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4420. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4421. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4422. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4423. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4424. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4425. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4426. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4427. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4428. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4429. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4430. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4431. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4432. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4433. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4434. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4435. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4436. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4437. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4438. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4439. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4440. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4441. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4442. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4443. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4444. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4445. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4446. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4447. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4448. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4449. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4450. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4451. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4452. "ref/portable-net45+win8+wp8+wpa81/_._",
  4453. "ref/win8/_._",
  4454. "ref/wp80/_._",
  4455. "ref/wpa81/_._",
  4456. "ref/xamarinios10/_._",
  4457. "ref/xamarinmac20/_._",
  4458. "ref/xamarintvos10/_._",
  4459. "ref/xamarinwatchos10/_._",
  4460. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4461. "system.linq.expressions.4.3.0.nupkg.sha512",
  4462. "system.linq.expressions.nuspec"
  4463. ]
  4464. },
  4465. "System.Memory/4.5.4": {
  4466. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  4467. "type": "package",
  4468. "path": "system.memory/4.5.4",
  4469. "files": [
  4470. ".nupkg.metadata",
  4471. ".signature.p7s",
  4472. "LICENSE.TXT",
  4473. "THIRD-PARTY-NOTICES.TXT",
  4474. "lib/net461/System.Memory.dll",
  4475. "lib/net461/System.Memory.xml",
  4476. "lib/netcoreapp2.1/_._",
  4477. "lib/netstandard1.1/System.Memory.dll",
  4478. "lib/netstandard1.1/System.Memory.xml",
  4479. "lib/netstandard2.0/System.Memory.dll",
  4480. "lib/netstandard2.0/System.Memory.xml",
  4481. "ref/netcoreapp2.1/_._",
  4482. "system.memory.4.5.4.nupkg.sha512",
  4483. "system.memory.nuspec",
  4484. "useSharedDesignerContext.txt",
  4485. "version.txt"
  4486. ]
  4487. },
  4488. "System.Numerics.Vectors/4.5.0": {
  4489. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  4490. "type": "package",
  4491. "path": "system.numerics.vectors/4.5.0",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "LICENSE.TXT",
  4496. "THIRD-PARTY-NOTICES.TXT",
  4497. "lib/MonoAndroid10/_._",
  4498. "lib/MonoTouch10/_._",
  4499. "lib/net46/System.Numerics.Vectors.dll",
  4500. "lib/net46/System.Numerics.Vectors.xml",
  4501. "lib/netcoreapp2.0/_._",
  4502. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  4503. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  4504. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  4505. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  4506. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  4507. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  4508. "lib/uap10.0.16299/_._",
  4509. "lib/xamarinios10/_._",
  4510. "lib/xamarinmac20/_._",
  4511. "lib/xamarintvos10/_._",
  4512. "lib/xamarinwatchos10/_._",
  4513. "ref/MonoAndroid10/_._",
  4514. "ref/MonoTouch10/_._",
  4515. "ref/net45/System.Numerics.Vectors.dll",
  4516. "ref/net45/System.Numerics.Vectors.xml",
  4517. "ref/net46/System.Numerics.Vectors.dll",
  4518. "ref/net46/System.Numerics.Vectors.xml",
  4519. "ref/netcoreapp2.0/_._",
  4520. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  4521. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  4522. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  4523. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  4524. "ref/uap10.0.16299/_._",
  4525. "ref/xamarinios10/_._",
  4526. "ref/xamarinmac20/_._",
  4527. "ref/xamarintvos10/_._",
  4528. "ref/xamarinwatchos10/_._",
  4529. "system.numerics.vectors.4.5.0.nupkg.sha512",
  4530. "system.numerics.vectors.nuspec",
  4531. "useSharedDesignerContext.txt",
  4532. "version.txt"
  4533. ]
  4534. },
  4535. "System.ObjectModel/4.3.0": {
  4536. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4537. "type": "package",
  4538. "path": "system.objectmodel/4.3.0",
  4539. "files": [
  4540. ".nupkg.metadata",
  4541. ".signature.p7s",
  4542. "ThirdPartyNotices.txt",
  4543. "dotnet_library_license.txt",
  4544. "lib/MonoAndroid10/_._",
  4545. "lib/MonoTouch10/_._",
  4546. "lib/net45/_._",
  4547. "lib/netcore50/System.ObjectModel.dll",
  4548. "lib/netstandard1.3/System.ObjectModel.dll",
  4549. "lib/portable-net45+win8+wp8+wpa81/_._",
  4550. "lib/win8/_._",
  4551. "lib/wp80/_._",
  4552. "lib/wpa81/_._",
  4553. "lib/xamarinios10/_._",
  4554. "lib/xamarinmac20/_._",
  4555. "lib/xamarintvos10/_._",
  4556. "lib/xamarinwatchos10/_._",
  4557. "ref/MonoAndroid10/_._",
  4558. "ref/MonoTouch10/_._",
  4559. "ref/net45/_._",
  4560. "ref/netcore50/System.ObjectModel.dll",
  4561. "ref/netcore50/System.ObjectModel.xml",
  4562. "ref/netcore50/de/System.ObjectModel.xml",
  4563. "ref/netcore50/es/System.ObjectModel.xml",
  4564. "ref/netcore50/fr/System.ObjectModel.xml",
  4565. "ref/netcore50/it/System.ObjectModel.xml",
  4566. "ref/netcore50/ja/System.ObjectModel.xml",
  4567. "ref/netcore50/ko/System.ObjectModel.xml",
  4568. "ref/netcore50/ru/System.ObjectModel.xml",
  4569. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4570. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4571. "ref/netstandard1.0/System.ObjectModel.dll",
  4572. "ref/netstandard1.0/System.ObjectModel.xml",
  4573. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4574. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4575. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4576. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4577. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4578. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4579. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4580. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4581. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4582. "ref/netstandard1.3/System.ObjectModel.dll",
  4583. "ref/netstandard1.3/System.ObjectModel.xml",
  4584. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4585. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4586. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4587. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4588. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4589. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4590. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4591. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4592. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4593. "ref/portable-net45+win8+wp8+wpa81/_._",
  4594. "ref/win8/_._",
  4595. "ref/wp80/_._",
  4596. "ref/wpa81/_._",
  4597. "ref/xamarinios10/_._",
  4598. "ref/xamarinmac20/_._",
  4599. "ref/xamarintvos10/_._",
  4600. "ref/xamarinwatchos10/_._",
  4601. "system.objectmodel.4.3.0.nupkg.sha512",
  4602. "system.objectmodel.nuspec"
  4603. ]
  4604. },
  4605. "System.Reactive/6.0.0": {
  4606. "sha512": "31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==",
  4607. "type": "package",
  4608. "path": "system.reactive/6.0.0",
  4609. "files": [
  4610. ".nupkg.metadata",
  4611. ".signature.p7s",
  4612. "build/net6.0-windows10.0.19041/_._",
  4613. "build/net6.0/_._",
  4614. "buildTransitive/net6.0-windows10.0.19041/_._",
  4615. "buildTransitive/net6.0/_._",
  4616. "icon.png",
  4617. "lib/net472/System.Reactive.dll",
  4618. "lib/net472/System.Reactive.xml",
  4619. "lib/net6.0-windows10.0.19041/System.Reactive.dll",
  4620. "lib/net6.0-windows10.0.19041/System.Reactive.xml",
  4621. "lib/net6.0/System.Reactive.dll",
  4622. "lib/net6.0/System.Reactive.xml",
  4623. "lib/netstandard2.0/System.Reactive.dll",
  4624. "lib/netstandard2.0/System.Reactive.xml",
  4625. "lib/uap10.0.18362/System.Reactive.dll",
  4626. "lib/uap10.0.18362/System.Reactive.pri",
  4627. "lib/uap10.0.18362/System.Reactive.xml",
  4628. "readme.md",
  4629. "system.reactive.6.0.0.nupkg.sha512",
  4630. "system.reactive.nuspec"
  4631. ]
  4632. },
  4633. "System.Reflection/4.3.0": {
  4634. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4635. "type": "package",
  4636. "path": "system.reflection/4.3.0",
  4637. "files": [
  4638. ".nupkg.metadata",
  4639. ".signature.p7s",
  4640. "ThirdPartyNotices.txt",
  4641. "dotnet_library_license.txt",
  4642. "lib/MonoAndroid10/_._",
  4643. "lib/MonoTouch10/_._",
  4644. "lib/net45/_._",
  4645. "lib/net462/System.Reflection.dll",
  4646. "lib/portable-net45+win8+wp8+wpa81/_._",
  4647. "lib/win8/_._",
  4648. "lib/wp80/_._",
  4649. "lib/wpa81/_._",
  4650. "lib/xamarinios10/_._",
  4651. "lib/xamarinmac20/_._",
  4652. "lib/xamarintvos10/_._",
  4653. "lib/xamarinwatchos10/_._",
  4654. "ref/MonoAndroid10/_._",
  4655. "ref/MonoTouch10/_._",
  4656. "ref/net45/_._",
  4657. "ref/net462/System.Reflection.dll",
  4658. "ref/netcore50/System.Reflection.dll",
  4659. "ref/netcore50/System.Reflection.xml",
  4660. "ref/netcore50/de/System.Reflection.xml",
  4661. "ref/netcore50/es/System.Reflection.xml",
  4662. "ref/netcore50/fr/System.Reflection.xml",
  4663. "ref/netcore50/it/System.Reflection.xml",
  4664. "ref/netcore50/ja/System.Reflection.xml",
  4665. "ref/netcore50/ko/System.Reflection.xml",
  4666. "ref/netcore50/ru/System.Reflection.xml",
  4667. "ref/netcore50/zh-hans/System.Reflection.xml",
  4668. "ref/netcore50/zh-hant/System.Reflection.xml",
  4669. "ref/netstandard1.0/System.Reflection.dll",
  4670. "ref/netstandard1.0/System.Reflection.xml",
  4671. "ref/netstandard1.0/de/System.Reflection.xml",
  4672. "ref/netstandard1.0/es/System.Reflection.xml",
  4673. "ref/netstandard1.0/fr/System.Reflection.xml",
  4674. "ref/netstandard1.0/it/System.Reflection.xml",
  4675. "ref/netstandard1.0/ja/System.Reflection.xml",
  4676. "ref/netstandard1.0/ko/System.Reflection.xml",
  4677. "ref/netstandard1.0/ru/System.Reflection.xml",
  4678. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4679. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4680. "ref/netstandard1.3/System.Reflection.dll",
  4681. "ref/netstandard1.3/System.Reflection.xml",
  4682. "ref/netstandard1.3/de/System.Reflection.xml",
  4683. "ref/netstandard1.3/es/System.Reflection.xml",
  4684. "ref/netstandard1.3/fr/System.Reflection.xml",
  4685. "ref/netstandard1.3/it/System.Reflection.xml",
  4686. "ref/netstandard1.3/ja/System.Reflection.xml",
  4687. "ref/netstandard1.3/ko/System.Reflection.xml",
  4688. "ref/netstandard1.3/ru/System.Reflection.xml",
  4689. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4690. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4691. "ref/netstandard1.5/System.Reflection.dll",
  4692. "ref/netstandard1.5/System.Reflection.xml",
  4693. "ref/netstandard1.5/de/System.Reflection.xml",
  4694. "ref/netstandard1.5/es/System.Reflection.xml",
  4695. "ref/netstandard1.5/fr/System.Reflection.xml",
  4696. "ref/netstandard1.5/it/System.Reflection.xml",
  4697. "ref/netstandard1.5/ja/System.Reflection.xml",
  4698. "ref/netstandard1.5/ko/System.Reflection.xml",
  4699. "ref/netstandard1.5/ru/System.Reflection.xml",
  4700. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4701. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4702. "ref/portable-net45+win8+wp8+wpa81/_._",
  4703. "ref/win8/_._",
  4704. "ref/wp80/_._",
  4705. "ref/wpa81/_._",
  4706. "ref/xamarinios10/_._",
  4707. "ref/xamarinmac20/_._",
  4708. "ref/xamarintvos10/_._",
  4709. "ref/xamarinwatchos10/_._",
  4710. "system.reflection.4.3.0.nupkg.sha512",
  4711. "system.reflection.nuspec"
  4712. ]
  4713. },
  4714. "System.Reflection.Emit/4.3.0": {
  4715. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  4716. "type": "package",
  4717. "path": "system.reflection.emit/4.3.0",
  4718. "files": [
  4719. ".nupkg.metadata",
  4720. ".signature.p7s",
  4721. "ThirdPartyNotices.txt",
  4722. "dotnet_library_license.txt",
  4723. "lib/MonoAndroid10/_._",
  4724. "lib/monotouch10/_._",
  4725. "lib/net45/_._",
  4726. "lib/netcore50/System.Reflection.Emit.dll",
  4727. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4728. "lib/xamarinios10/_._",
  4729. "lib/xamarinmac20/_._",
  4730. "lib/xamarintvos10/_._",
  4731. "lib/xamarinwatchos10/_._",
  4732. "ref/MonoAndroid10/_._",
  4733. "ref/net45/_._",
  4734. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4735. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4736. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4737. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4738. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4739. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4740. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4741. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4742. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4743. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4744. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4745. "ref/xamarinmac20/_._",
  4746. "system.reflection.emit.4.3.0.nupkg.sha512",
  4747. "system.reflection.emit.nuspec"
  4748. ]
  4749. },
  4750. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4751. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4752. "type": "package",
  4753. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4754. "files": [
  4755. ".nupkg.metadata",
  4756. ".signature.p7s",
  4757. "ThirdPartyNotices.txt",
  4758. "dotnet_library_license.txt",
  4759. "lib/MonoAndroid10/_._",
  4760. "lib/MonoTouch10/_._",
  4761. "lib/net45/_._",
  4762. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4763. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4764. "lib/portable-net45+wp8/_._",
  4765. "lib/wp80/_._",
  4766. "lib/xamarinios10/_._",
  4767. "lib/xamarinmac20/_._",
  4768. "lib/xamarintvos10/_._",
  4769. "lib/xamarinwatchos10/_._",
  4770. "ref/MonoAndroid10/_._",
  4771. "ref/MonoTouch10/_._",
  4772. "ref/net45/_._",
  4773. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4774. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4775. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4776. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4777. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4778. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4779. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4780. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4781. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4782. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4783. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4784. "ref/portable-net45+wp8/_._",
  4785. "ref/wp80/_._",
  4786. "ref/xamarinios10/_._",
  4787. "ref/xamarinmac20/_._",
  4788. "ref/xamarintvos10/_._",
  4789. "ref/xamarinwatchos10/_._",
  4790. "runtimes/aot/lib/netcore50/_._",
  4791. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  4792. "system.reflection.emit.ilgeneration.nuspec"
  4793. ]
  4794. },
  4795. "System.Reflection.Emit.Lightweight/4.3.0": {
  4796. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4797. "type": "package",
  4798. "path": "system.reflection.emit.lightweight/4.3.0",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "ThirdPartyNotices.txt",
  4803. "dotnet_library_license.txt",
  4804. "lib/MonoAndroid10/_._",
  4805. "lib/MonoTouch10/_._",
  4806. "lib/net45/_._",
  4807. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4808. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4809. "lib/portable-net45+wp8/_._",
  4810. "lib/wp80/_._",
  4811. "lib/xamarinios10/_._",
  4812. "lib/xamarinmac20/_._",
  4813. "lib/xamarintvos10/_._",
  4814. "lib/xamarinwatchos10/_._",
  4815. "ref/MonoAndroid10/_._",
  4816. "ref/MonoTouch10/_._",
  4817. "ref/net45/_._",
  4818. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4819. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4820. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4821. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4822. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4823. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4824. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4825. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4826. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4827. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4828. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4829. "ref/portable-net45+wp8/_._",
  4830. "ref/wp80/_._",
  4831. "ref/xamarinios10/_._",
  4832. "ref/xamarinmac20/_._",
  4833. "ref/xamarintvos10/_._",
  4834. "ref/xamarinwatchos10/_._",
  4835. "runtimes/aot/lib/netcore50/_._",
  4836. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  4837. "system.reflection.emit.lightweight.nuspec"
  4838. ]
  4839. },
  4840. "System.Reflection.Extensions/4.3.0": {
  4841. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4842. "type": "package",
  4843. "path": "system.reflection.extensions/4.3.0",
  4844. "files": [
  4845. ".nupkg.metadata",
  4846. ".signature.p7s",
  4847. "ThirdPartyNotices.txt",
  4848. "dotnet_library_license.txt",
  4849. "lib/MonoAndroid10/_._",
  4850. "lib/MonoTouch10/_._",
  4851. "lib/net45/_._",
  4852. "lib/portable-net45+win8+wp8+wpa81/_._",
  4853. "lib/win8/_._",
  4854. "lib/wp80/_._",
  4855. "lib/wpa81/_._",
  4856. "lib/xamarinios10/_._",
  4857. "lib/xamarinmac20/_._",
  4858. "lib/xamarintvos10/_._",
  4859. "lib/xamarinwatchos10/_._",
  4860. "ref/MonoAndroid10/_._",
  4861. "ref/MonoTouch10/_._",
  4862. "ref/net45/_._",
  4863. "ref/netcore50/System.Reflection.Extensions.dll",
  4864. "ref/netcore50/System.Reflection.Extensions.xml",
  4865. "ref/netcore50/de/System.Reflection.Extensions.xml",
  4866. "ref/netcore50/es/System.Reflection.Extensions.xml",
  4867. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  4868. "ref/netcore50/it/System.Reflection.Extensions.xml",
  4869. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  4870. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  4871. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  4872. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  4873. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  4874. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  4875. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  4876. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  4877. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  4878. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  4879. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  4880. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  4881. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  4882. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  4883. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  4884. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  4885. "ref/portable-net45+win8+wp8+wpa81/_._",
  4886. "ref/win8/_._",
  4887. "ref/wp80/_._",
  4888. "ref/wpa81/_._",
  4889. "ref/xamarinios10/_._",
  4890. "ref/xamarinmac20/_._",
  4891. "ref/xamarintvos10/_._",
  4892. "ref/xamarinwatchos10/_._",
  4893. "system.reflection.extensions.4.3.0.nupkg.sha512",
  4894. "system.reflection.extensions.nuspec"
  4895. ]
  4896. },
  4897. "System.Reflection.Metadata/5.0.0": {
  4898. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  4899. "type": "package",
  4900. "path": "system.reflection.metadata/5.0.0",
  4901. "files": [
  4902. ".nupkg.metadata",
  4903. ".signature.p7s",
  4904. "Icon.png",
  4905. "LICENSE.TXT",
  4906. "THIRD-PARTY-NOTICES.TXT",
  4907. "lib/net461/System.Reflection.Metadata.dll",
  4908. "lib/net461/System.Reflection.Metadata.xml",
  4909. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  4910. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  4911. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  4912. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  4913. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  4914. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  4915. "system.reflection.metadata.5.0.0.nupkg.sha512",
  4916. "system.reflection.metadata.nuspec",
  4917. "useSharedDesignerContext.txt",
  4918. "version.txt"
  4919. ]
  4920. },
  4921. "System.Reflection.Primitives/4.3.0": {
  4922. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4923. "type": "package",
  4924. "path": "system.reflection.primitives/4.3.0",
  4925. "files": [
  4926. ".nupkg.metadata",
  4927. ".signature.p7s",
  4928. "ThirdPartyNotices.txt",
  4929. "dotnet_library_license.txt",
  4930. "lib/MonoAndroid10/_._",
  4931. "lib/MonoTouch10/_._",
  4932. "lib/net45/_._",
  4933. "lib/portable-net45+win8+wp8+wpa81/_._",
  4934. "lib/win8/_._",
  4935. "lib/wp80/_._",
  4936. "lib/wpa81/_._",
  4937. "lib/xamarinios10/_._",
  4938. "lib/xamarinmac20/_._",
  4939. "lib/xamarintvos10/_._",
  4940. "lib/xamarinwatchos10/_._",
  4941. "ref/MonoAndroid10/_._",
  4942. "ref/MonoTouch10/_._",
  4943. "ref/net45/_._",
  4944. "ref/netcore50/System.Reflection.Primitives.dll",
  4945. "ref/netcore50/System.Reflection.Primitives.xml",
  4946. "ref/netcore50/de/System.Reflection.Primitives.xml",
  4947. "ref/netcore50/es/System.Reflection.Primitives.xml",
  4948. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  4949. "ref/netcore50/it/System.Reflection.Primitives.xml",
  4950. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  4951. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  4952. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  4953. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  4954. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  4955. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  4956. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  4957. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  4958. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  4959. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  4960. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  4961. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  4962. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  4963. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  4964. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  4965. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  4966. "ref/portable-net45+win8+wp8+wpa81/_._",
  4967. "ref/win8/_._",
  4968. "ref/wp80/_._",
  4969. "ref/wpa81/_._",
  4970. "ref/xamarinios10/_._",
  4971. "ref/xamarinmac20/_._",
  4972. "ref/xamarintvos10/_._",
  4973. "ref/xamarinwatchos10/_._",
  4974. "system.reflection.primitives.4.3.0.nupkg.sha512",
  4975. "system.reflection.primitives.nuspec"
  4976. ]
  4977. },
  4978. "System.Reflection.TypeExtensions/4.3.0": {
  4979. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  4980. "type": "package",
  4981. "path": "system.reflection.typeextensions/4.3.0",
  4982. "files": [
  4983. ".nupkg.metadata",
  4984. ".signature.p7s",
  4985. "ThirdPartyNotices.txt",
  4986. "dotnet_library_license.txt",
  4987. "lib/MonoAndroid10/_._",
  4988. "lib/MonoTouch10/_._",
  4989. "lib/net46/System.Reflection.TypeExtensions.dll",
  4990. "lib/net462/System.Reflection.TypeExtensions.dll",
  4991. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  4992. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4993. "lib/xamarinios10/_._",
  4994. "lib/xamarinmac20/_._",
  4995. "lib/xamarintvos10/_._",
  4996. "lib/xamarinwatchos10/_._",
  4997. "ref/MonoAndroid10/_._",
  4998. "ref/MonoTouch10/_._",
  4999. "ref/net46/System.Reflection.TypeExtensions.dll",
  5000. "ref/net462/System.Reflection.TypeExtensions.dll",
  5001. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5002. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5003. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5004. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5005. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5006. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5007. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5008. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5009. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5010. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5011. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5012. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5013. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5014. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5015. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5016. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5017. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5018. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5019. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5020. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5021. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5022. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5023. "ref/xamarinios10/_._",
  5024. "ref/xamarinmac20/_._",
  5025. "ref/xamarintvos10/_._",
  5026. "ref/xamarinwatchos10/_._",
  5027. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5028. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5029. "system.reflection.typeextensions.nuspec"
  5030. ]
  5031. },
  5032. "System.Resources.ResourceManager/4.3.0": {
  5033. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5034. "type": "package",
  5035. "path": "system.resources.resourcemanager/4.3.0",
  5036. "files": [
  5037. ".nupkg.metadata",
  5038. ".signature.p7s",
  5039. "ThirdPartyNotices.txt",
  5040. "dotnet_library_license.txt",
  5041. "lib/MonoAndroid10/_._",
  5042. "lib/MonoTouch10/_._",
  5043. "lib/net45/_._",
  5044. "lib/portable-net45+win8+wp8+wpa81/_._",
  5045. "lib/win8/_._",
  5046. "lib/wp80/_._",
  5047. "lib/wpa81/_._",
  5048. "lib/xamarinios10/_._",
  5049. "lib/xamarinmac20/_._",
  5050. "lib/xamarintvos10/_._",
  5051. "lib/xamarinwatchos10/_._",
  5052. "ref/MonoAndroid10/_._",
  5053. "ref/MonoTouch10/_._",
  5054. "ref/net45/_._",
  5055. "ref/netcore50/System.Resources.ResourceManager.dll",
  5056. "ref/netcore50/System.Resources.ResourceManager.xml",
  5057. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5058. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5059. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5060. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5061. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5062. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5063. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5064. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5065. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5066. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5067. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5068. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5069. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5070. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5071. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5072. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5073. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5074. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5075. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5076. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5077. "ref/portable-net45+win8+wp8+wpa81/_._",
  5078. "ref/win8/_._",
  5079. "ref/wp80/_._",
  5080. "ref/wpa81/_._",
  5081. "ref/xamarinios10/_._",
  5082. "ref/xamarinmac20/_._",
  5083. "ref/xamarintvos10/_._",
  5084. "ref/xamarinwatchos10/_._",
  5085. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5086. "system.resources.resourcemanager.nuspec"
  5087. ]
  5088. },
  5089. "System.Runtime/4.3.0": {
  5090. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5091. "type": "package",
  5092. "path": "system.runtime/4.3.0",
  5093. "files": [
  5094. ".nupkg.metadata",
  5095. ".signature.p7s",
  5096. "ThirdPartyNotices.txt",
  5097. "dotnet_library_license.txt",
  5098. "lib/MonoAndroid10/_._",
  5099. "lib/MonoTouch10/_._",
  5100. "lib/net45/_._",
  5101. "lib/net462/System.Runtime.dll",
  5102. "lib/portable-net45+win8+wp80+wpa81/_._",
  5103. "lib/win8/_._",
  5104. "lib/wp80/_._",
  5105. "lib/wpa81/_._",
  5106. "lib/xamarinios10/_._",
  5107. "lib/xamarinmac20/_._",
  5108. "lib/xamarintvos10/_._",
  5109. "lib/xamarinwatchos10/_._",
  5110. "ref/MonoAndroid10/_._",
  5111. "ref/MonoTouch10/_._",
  5112. "ref/net45/_._",
  5113. "ref/net462/System.Runtime.dll",
  5114. "ref/netcore50/System.Runtime.dll",
  5115. "ref/netcore50/System.Runtime.xml",
  5116. "ref/netcore50/de/System.Runtime.xml",
  5117. "ref/netcore50/es/System.Runtime.xml",
  5118. "ref/netcore50/fr/System.Runtime.xml",
  5119. "ref/netcore50/it/System.Runtime.xml",
  5120. "ref/netcore50/ja/System.Runtime.xml",
  5121. "ref/netcore50/ko/System.Runtime.xml",
  5122. "ref/netcore50/ru/System.Runtime.xml",
  5123. "ref/netcore50/zh-hans/System.Runtime.xml",
  5124. "ref/netcore50/zh-hant/System.Runtime.xml",
  5125. "ref/netstandard1.0/System.Runtime.dll",
  5126. "ref/netstandard1.0/System.Runtime.xml",
  5127. "ref/netstandard1.0/de/System.Runtime.xml",
  5128. "ref/netstandard1.0/es/System.Runtime.xml",
  5129. "ref/netstandard1.0/fr/System.Runtime.xml",
  5130. "ref/netstandard1.0/it/System.Runtime.xml",
  5131. "ref/netstandard1.0/ja/System.Runtime.xml",
  5132. "ref/netstandard1.0/ko/System.Runtime.xml",
  5133. "ref/netstandard1.0/ru/System.Runtime.xml",
  5134. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5135. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5136. "ref/netstandard1.2/System.Runtime.dll",
  5137. "ref/netstandard1.2/System.Runtime.xml",
  5138. "ref/netstandard1.2/de/System.Runtime.xml",
  5139. "ref/netstandard1.2/es/System.Runtime.xml",
  5140. "ref/netstandard1.2/fr/System.Runtime.xml",
  5141. "ref/netstandard1.2/it/System.Runtime.xml",
  5142. "ref/netstandard1.2/ja/System.Runtime.xml",
  5143. "ref/netstandard1.2/ko/System.Runtime.xml",
  5144. "ref/netstandard1.2/ru/System.Runtime.xml",
  5145. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5146. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5147. "ref/netstandard1.3/System.Runtime.dll",
  5148. "ref/netstandard1.3/System.Runtime.xml",
  5149. "ref/netstandard1.3/de/System.Runtime.xml",
  5150. "ref/netstandard1.3/es/System.Runtime.xml",
  5151. "ref/netstandard1.3/fr/System.Runtime.xml",
  5152. "ref/netstandard1.3/it/System.Runtime.xml",
  5153. "ref/netstandard1.3/ja/System.Runtime.xml",
  5154. "ref/netstandard1.3/ko/System.Runtime.xml",
  5155. "ref/netstandard1.3/ru/System.Runtime.xml",
  5156. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5157. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5158. "ref/netstandard1.5/System.Runtime.dll",
  5159. "ref/netstandard1.5/System.Runtime.xml",
  5160. "ref/netstandard1.5/de/System.Runtime.xml",
  5161. "ref/netstandard1.5/es/System.Runtime.xml",
  5162. "ref/netstandard1.5/fr/System.Runtime.xml",
  5163. "ref/netstandard1.5/it/System.Runtime.xml",
  5164. "ref/netstandard1.5/ja/System.Runtime.xml",
  5165. "ref/netstandard1.5/ko/System.Runtime.xml",
  5166. "ref/netstandard1.5/ru/System.Runtime.xml",
  5167. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5168. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5169. "ref/portable-net45+win8+wp80+wpa81/_._",
  5170. "ref/win8/_._",
  5171. "ref/wp80/_._",
  5172. "ref/wpa81/_._",
  5173. "ref/xamarinios10/_._",
  5174. "ref/xamarinmac20/_._",
  5175. "ref/xamarintvos10/_._",
  5176. "ref/xamarinwatchos10/_._",
  5177. "system.runtime.4.3.0.nupkg.sha512",
  5178. "system.runtime.nuspec"
  5179. ]
  5180. },
  5181. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  5182. "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  5183. "type": "package",
  5184. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  5185. "files": [
  5186. ".nupkg.metadata",
  5187. ".signature.p7s",
  5188. "Icon.png",
  5189. "LICENSE.TXT",
  5190. "THIRD-PARTY-NOTICES.TXT",
  5191. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5192. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5193. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5194. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5195. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  5196. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  5197. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5198. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5199. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5200. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5201. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  5202. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  5203. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5204. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5205. "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
  5206. "system.runtime.compilerservices.unsafe.nuspec",
  5207. "useSharedDesignerContext.txt",
  5208. "version.txt"
  5209. ]
  5210. },
  5211. "System.Runtime.Extensions/4.3.0": {
  5212. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  5213. "type": "package",
  5214. "path": "system.runtime.extensions/4.3.0",
  5215. "files": [
  5216. ".nupkg.metadata",
  5217. ".signature.p7s",
  5218. "ThirdPartyNotices.txt",
  5219. "dotnet_library_license.txt",
  5220. "lib/MonoAndroid10/_._",
  5221. "lib/MonoTouch10/_._",
  5222. "lib/net45/_._",
  5223. "lib/net462/System.Runtime.Extensions.dll",
  5224. "lib/portable-net45+win8+wp8+wpa81/_._",
  5225. "lib/win8/_._",
  5226. "lib/wp80/_._",
  5227. "lib/wpa81/_._",
  5228. "lib/xamarinios10/_._",
  5229. "lib/xamarinmac20/_._",
  5230. "lib/xamarintvos10/_._",
  5231. "lib/xamarinwatchos10/_._",
  5232. "ref/MonoAndroid10/_._",
  5233. "ref/MonoTouch10/_._",
  5234. "ref/net45/_._",
  5235. "ref/net462/System.Runtime.Extensions.dll",
  5236. "ref/netcore50/System.Runtime.Extensions.dll",
  5237. "ref/netcore50/System.Runtime.Extensions.xml",
  5238. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5239. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5240. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5241. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5242. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5243. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5244. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5245. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5246. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5247. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5248. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5249. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5250. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5251. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5252. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5253. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5254. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5255. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5256. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5257. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5258. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5259. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5260. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5261. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5262. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5263. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5264. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5265. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5266. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5267. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5268. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5269. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5270. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5271. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5272. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5273. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5274. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5275. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5276. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5277. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5278. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5279. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5280. "ref/portable-net45+win8+wp8+wpa81/_._",
  5281. "ref/win8/_._",
  5282. "ref/wp80/_._",
  5283. "ref/wpa81/_._",
  5284. "ref/xamarinios10/_._",
  5285. "ref/xamarinmac20/_._",
  5286. "ref/xamarintvos10/_._",
  5287. "ref/xamarinwatchos10/_._",
  5288. "system.runtime.extensions.4.3.0.nupkg.sha512",
  5289. "system.runtime.extensions.nuspec"
  5290. ]
  5291. },
  5292. "System.Runtime.Handles/4.3.0": {
  5293. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  5294. "type": "package",
  5295. "path": "system.runtime.handles/4.3.0",
  5296. "files": [
  5297. ".nupkg.metadata",
  5298. ".signature.p7s",
  5299. "ThirdPartyNotices.txt",
  5300. "dotnet_library_license.txt",
  5301. "lib/MonoAndroid10/_._",
  5302. "lib/MonoTouch10/_._",
  5303. "lib/net46/_._",
  5304. "lib/xamarinios10/_._",
  5305. "lib/xamarinmac20/_._",
  5306. "lib/xamarintvos10/_._",
  5307. "lib/xamarinwatchos10/_._",
  5308. "ref/MonoAndroid10/_._",
  5309. "ref/MonoTouch10/_._",
  5310. "ref/net46/_._",
  5311. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5312. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5313. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5314. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5315. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5316. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5317. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5318. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5319. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5320. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5321. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5322. "ref/xamarinios10/_._",
  5323. "ref/xamarinmac20/_._",
  5324. "ref/xamarintvos10/_._",
  5325. "ref/xamarinwatchos10/_._",
  5326. "system.runtime.handles.4.3.0.nupkg.sha512",
  5327. "system.runtime.handles.nuspec"
  5328. ]
  5329. },
  5330. "System.Runtime.InteropServices/4.3.0": {
  5331. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  5332. "type": "package",
  5333. "path": "system.runtime.interopservices/4.3.0",
  5334. "files": [
  5335. ".nupkg.metadata",
  5336. ".signature.p7s",
  5337. "ThirdPartyNotices.txt",
  5338. "dotnet_library_license.txt",
  5339. "lib/MonoAndroid10/_._",
  5340. "lib/MonoTouch10/_._",
  5341. "lib/net45/_._",
  5342. "lib/net462/System.Runtime.InteropServices.dll",
  5343. "lib/net463/System.Runtime.InteropServices.dll",
  5344. "lib/portable-net45+win8+wpa81/_._",
  5345. "lib/win8/_._",
  5346. "lib/wpa81/_._",
  5347. "lib/xamarinios10/_._",
  5348. "lib/xamarinmac20/_._",
  5349. "lib/xamarintvos10/_._",
  5350. "lib/xamarinwatchos10/_._",
  5351. "ref/MonoAndroid10/_._",
  5352. "ref/MonoTouch10/_._",
  5353. "ref/net45/_._",
  5354. "ref/net462/System.Runtime.InteropServices.dll",
  5355. "ref/net463/System.Runtime.InteropServices.dll",
  5356. "ref/netcore50/System.Runtime.InteropServices.dll",
  5357. "ref/netcore50/System.Runtime.InteropServices.xml",
  5358. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  5359. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  5360. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  5361. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  5362. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  5363. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  5364. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  5365. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5366. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5367. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  5368. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5369. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5370. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5371. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5372. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5373. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5374. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5375. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5376. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5377. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5378. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5379. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5380. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5381. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5382. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5383. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5384. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5385. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5386. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5387. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5388. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5389. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5390. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5391. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5392. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5393. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5394. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5395. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5396. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5397. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5398. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5399. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5400. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5401. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5402. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5403. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5404. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5405. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5406. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5407. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5408. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5409. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5410. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5411. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5412. "ref/portable-net45+win8+wpa81/_._",
  5413. "ref/win8/_._",
  5414. "ref/wpa81/_._",
  5415. "ref/xamarinios10/_._",
  5416. "ref/xamarinmac20/_._",
  5417. "ref/xamarintvos10/_._",
  5418. "ref/xamarinwatchos10/_._",
  5419. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  5420. "system.runtime.interopservices.nuspec"
  5421. ]
  5422. },
  5423. "System.Text.Encoding/4.3.0": {
  5424. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5425. "type": "package",
  5426. "path": "system.text.encoding/4.3.0",
  5427. "files": [
  5428. ".nupkg.metadata",
  5429. ".signature.p7s",
  5430. "ThirdPartyNotices.txt",
  5431. "dotnet_library_license.txt",
  5432. "lib/MonoAndroid10/_._",
  5433. "lib/MonoTouch10/_._",
  5434. "lib/net45/_._",
  5435. "lib/portable-net45+win8+wp8+wpa81/_._",
  5436. "lib/win8/_._",
  5437. "lib/wp80/_._",
  5438. "lib/wpa81/_._",
  5439. "lib/xamarinios10/_._",
  5440. "lib/xamarinmac20/_._",
  5441. "lib/xamarintvos10/_._",
  5442. "lib/xamarinwatchos10/_._",
  5443. "ref/MonoAndroid10/_._",
  5444. "ref/MonoTouch10/_._",
  5445. "ref/net45/_._",
  5446. "ref/netcore50/System.Text.Encoding.dll",
  5447. "ref/netcore50/System.Text.Encoding.xml",
  5448. "ref/netcore50/de/System.Text.Encoding.xml",
  5449. "ref/netcore50/es/System.Text.Encoding.xml",
  5450. "ref/netcore50/fr/System.Text.Encoding.xml",
  5451. "ref/netcore50/it/System.Text.Encoding.xml",
  5452. "ref/netcore50/ja/System.Text.Encoding.xml",
  5453. "ref/netcore50/ko/System.Text.Encoding.xml",
  5454. "ref/netcore50/ru/System.Text.Encoding.xml",
  5455. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  5456. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  5457. "ref/netstandard1.0/System.Text.Encoding.dll",
  5458. "ref/netstandard1.0/System.Text.Encoding.xml",
  5459. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  5460. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  5461. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  5462. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  5463. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  5464. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  5465. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  5466. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  5467. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  5468. "ref/netstandard1.3/System.Text.Encoding.dll",
  5469. "ref/netstandard1.3/System.Text.Encoding.xml",
  5470. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  5471. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  5472. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  5473. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  5474. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  5475. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  5476. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  5477. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  5478. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  5479. "ref/portable-net45+win8+wp8+wpa81/_._",
  5480. "ref/win8/_._",
  5481. "ref/wp80/_._",
  5482. "ref/wpa81/_._",
  5483. "ref/xamarinios10/_._",
  5484. "ref/xamarinmac20/_._",
  5485. "ref/xamarintvos10/_._",
  5486. "ref/xamarinwatchos10/_._",
  5487. "system.text.encoding.4.3.0.nupkg.sha512",
  5488. "system.text.encoding.nuspec"
  5489. ]
  5490. },
  5491. "System.Text.Encoding.CodePages/4.5.1": {
  5492. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  5493. "type": "package",
  5494. "path": "system.text.encoding.codepages/4.5.1",
  5495. "files": [
  5496. ".nupkg.metadata",
  5497. ".signature.p7s",
  5498. "LICENSE.TXT",
  5499. "THIRD-PARTY-NOTICES.TXT",
  5500. "lib/MonoAndroid10/_._",
  5501. "lib/MonoTouch10/_._",
  5502. "lib/net46/System.Text.Encoding.CodePages.dll",
  5503. "lib/net461/System.Text.Encoding.CodePages.dll",
  5504. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5505. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5506. "lib/xamarinios10/_._",
  5507. "lib/xamarinmac20/_._",
  5508. "lib/xamarintvos10/_._",
  5509. "lib/xamarinwatchos10/_._",
  5510. "ref/MonoAndroid10/_._",
  5511. "ref/MonoTouch10/_._",
  5512. "ref/xamarinios10/_._",
  5513. "ref/xamarinmac20/_._",
  5514. "ref/xamarintvos10/_._",
  5515. "ref/xamarinwatchos10/_._",
  5516. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  5517. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  5518. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5519. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5520. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  5521. "system.text.encoding.codepages.nuspec",
  5522. "useSharedDesignerContext.txt",
  5523. "version.txt"
  5524. ]
  5525. },
  5526. "System.Text.Encodings.Web/7.0.0": {
  5527. "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  5528. "type": "package",
  5529. "path": "system.text.encodings.web/7.0.0",
  5530. "files": [
  5531. ".nupkg.metadata",
  5532. ".signature.p7s",
  5533. "Icon.png",
  5534. "LICENSE.TXT",
  5535. "THIRD-PARTY-NOTICES.TXT",
  5536. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  5537. "buildTransitive/net462/_._",
  5538. "buildTransitive/net6.0/_._",
  5539. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  5540. "lib/net462/System.Text.Encodings.Web.dll",
  5541. "lib/net462/System.Text.Encodings.Web.xml",
  5542. "lib/net6.0/System.Text.Encodings.Web.dll",
  5543. "lib/net6.0/System.Text.Encodings.Web.xml",
  5544. "lib/net7.0/System.Text.Encodings.Web.dll",
  5545. "lib/net7.0/System.Text.Encodings.Web.xml",
  5546. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  5547. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  5548. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  5549. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  5550. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  5551. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  5552. "system.text.encodings.web.7.0.0.nupkg.sha512",
  5553. "system.text.encodings.web.nuspec",
  5554. "useSharedDesignerContext.txt"
  5555. ]
  5556. },
  5557. "System.Text.Json/7.0.0": {
  5558. "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
  5559. "type": "package",
  5560. "path": "system.text.json/7.0.0",
  5561. "files": [
  5562. ".nupkg.metadata",
  5563. ".signature.p7s",
  5564. "Icon.png",
  5565. "LICENSE.TXT",
  5566. "README.md",
  5567. "THIRD-PARTY-NOTICES.TXT",
  5568. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  5569. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  5570. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  5571. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  5572. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  5573. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  5574. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  5575. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  5576. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  5577. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  5578. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  5579. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  5580. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  5581. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  5582. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  5583. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  5584. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  5585. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  5586. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  5587. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  5588. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  5589. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  5590. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  5591. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  5592. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  5593. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  5594. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  5595. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  5596. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  5597. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  5598. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  5599. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  5600. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  5601. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  5602. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  5603. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  5604. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  5605. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  5606. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  5607. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  5608. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  5609. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  5610. "buildTransitive/net461/System.Text.Json.targets",
  5611. "buildTransitive/net462/System.Text.Json.targets",
  5612. "buildTransitive/net6.0/System.Text.Json.targets",
  5613. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  5614. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  5615. "lib/net462/System.Text.Json.dll",
  5616. "lib/net462/System.Text.Json.xml",
  5617. "lib/net6.0/System.Text.Json.dll",
  5618. "lib/net6.0/System.Text.Json.xml",
  5619. "lib/net7.0/System.Text.Json.dll",
  5620. "lib/net7.0/System.Text.Json.xml",
  5621. "lib/netstandard2.0/System.Text.Json.dll",
  5622. "lib/netstandard2.0/System.Text.Json.xml",
  5623. "system.text.json.7.0.0.nupkg.sha512",
  5624. "system.text.json.nuspec",
  5625. "useSharedDesignerContext.txt"
  5626. ]
  5627. },
  5628. "System.Threading/4.3.0": {
  5629. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  5630. "type": "package",
  5631. "path": "system.threading/4.3.0",
  5632. "files": [
  5633. ".nupkg.metadata",
  5634. ".signature.p7s",
  5635. "ThirdPartyNotices.txt",
  5636. "dotnet_library_license.txt",
  5637. "lib/MonoAndroid10/_._",
  5638. "lib/MonoTouch10/_._",
  5639. "lib/net45/_._",
  5640. "lib/netcore50/System.Threading.dll",
  5641. "lib/netstandard1.3/System.Threading.dll",
  5642. "lib/portable-net45+win8+wp8+wpa81/_._",
  5643. "lib/win8/_._",
  5644. "lib/wp80/_._",
  5645. "lib/wpa81/_._",
  5646. "lib/xamarinios10/_._",
  5647. "lib/xamarinmac20/_._",
  5648. "lib/xamarintvos10/_._",
  5649. "lib/xamarinwatchos10/_._",
  5650. "ref/MonoAndroid10/_._",
  5651. "ref/MonoTouch10/_._",
  5652. "ref/net45/_._",
  5653. "ref/netcore50/System.Threading.dll",
  5654. "ref/netcore50/System.Threading.xml",
  5655. "ref/netcore50/de/System.Threading.xml",
  5656. "ref/netcore50/es/System.Threading.xml",
  5657. "ref/netcore50/fr/System.Threading.xml",
  5658. "ref/netcore50/it/System.Threading.xml",
  5659. "ref/netcore50/ja/System.Threading.xml",
  5660. "ref/netcore50/ko/System.Threading.xml",
  5661. "ref/netcore50/ru/System.Threading.xml",
  5662. "ref/netcore50/zh-hans/System.Threading.xml",
  5663. "ref/netcore50/zh-hant/System.Threading.xml",
  5664. "ref/netstandard1.0/System.Threading.dll",
  5665. "ref/netstandard1.0/System.Threading.xml",
  5666. "ref/netstandard1.0/de/System.Threading.xml",
  5667. "ref/netstandard1.0/es/System.Threading.xml",
  5668. "ref/netstandard1.0/fr/System.Threading.xml",
  5669. "ref/netstandard1.0/it/System.Threading.xml",
  5670. "ref/netstandard1.0/ja/System.Threading.xml",
  5671. "ref/netstandard1.0/ko/System.Threading.xml",
  5672. "ref/netstandard1.0/ru/System.Threading.xml",
  5673. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  5674. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  5675. "ref/netstandard1.3/System.Threading.dll",
  5676. "ref/netstandard1.3/System.Threading.xml",
  5677. "ref/netstandard1.3/de/System.Threading.xml",
  5678. "ref/netstandard1.3/es/System.Threading.xml",
  5679. "ref/netstandard1.3/fr/System.Threading.xml",
  5680. "ref/netstandard1.3/it/System.Threading.xml",
  5681. "ref/netstandard1.3/ja/System.Threading.xml",
  5682. "ref/netstandard1.3/ko/System.Threading.xml",
  5683. "ref/netstandard1.3/ru/System.Threading.xml",
  5684. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  5685. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  5686. "ref/portable-net45+win8+wp8+wpa81/_._",
  5687. "ref/win8/_._",
  5688. "ref/wp80/_._",
  5689. "ref/wpa81/_._",
  5690. "ref/xamarinios10/_._",
  5691. "ref/xamarinmac20/_._",
  5692. "ref/xamarintvos10/_._",
  5693. "ref/xamarinwatchos10/_._",
  5694. "runtimes/aot/lib/netcore50/System.Threading.dll",
  5695. "system.threading.4.3.0.nupkg.sha512",
  5696. "system.threading.nuspec"
  5697. ]
  5698. },
  5699. "System.Threading.Tasks/4.3.0": {
  5700. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  5701. "type": "package",
  5702. "path": "system.threading.tasks/4.3.0",
  5703. "files": [
  5704. ".nupkg.metadata",
  5705. ".signature.p7s",
  5706. "ThirdPartyNotices.txt",
  5707. "dotnet_library_license.txt",
  5708. "lib/MonoAndroid10/_._",
  5709. "lib/MonoTouch10/_._",
  5710. "lib/net45/_._",
  5711. "lib/portable-net45+win8+wp8+wpa81/_._",
  5712. "lib/win8/_._",
  5713. "lib/wp80/_._",
  5714. "lib/wpa81/_._",
  5715. "lib/xamarinios10/_._",
  5716. "lib/xamarinmac20/_._",
  5717. "lib/xamarintvos10/_._",
  5718. "lib/xamarinwatchos10/_._",
  5719. "ref/MonoAndroid10/_._",
  5720. "ref/MonoTouch10/_._",
  5721. "ref/net45/_._",
  5722. "ref/netcore50/System.Threading.Tasks.dll",
  5723. "ref/netcore50/System.Threading.Tasks.xml",
  5724. "ref/netcore50/de/System.Threading.Tasks.xml",
  5725. "ref/netcore50/es/System.Threading.Tasks.xml",
  5726. "ref/netcore50/fr/System.Threading.Tasks.xml",
  5727. "ref/netcore50/it/System.Threading.Tasks.xml",
  5728. "ref/netcore50/ja/System.Threading.Tasks.xml",
  5729. "ref/netcore50/ko/System.Threading.Tasks.xml",
  5730. "ref/netcore50/ru/System.Threading.Tasks.xml",
  5731. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  5732. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  5733. "ref/netstandard1.0/System.Threading.Tasks.dll",
  5734. "ref/netstandard1.0/System.Threading.Tasks.xml",
  5735. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  5736. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  5737. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  5738. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  5739. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  5740. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  5741. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  5742. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  5743. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  5744. "ref/netstandard1.3/System.Threading.Tasks.dll",
  5745. "ref/netstandard1.3/System.Threading.Tasks.xml",
  5746. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  5747. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  5748. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  5749. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  5750. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  5751. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  5752. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  5753. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  5754. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  5755. "ref/portable-net45+win8+wp8+wpa81/_._",
  5756. "ref/win8/_._",
  5757. "ref/wp80/_._",
  5758. "ref/wpa81/_._",
  5759. "ref/xamarinios10/_._",
  5760. "ref/xamarinmac20/_._",
  5761. "ref/xamarintvos10/_._",
  5762. "ref/xamarinwatchos10/_._",
  5763. "system.threading.tasks.4.3.0.nupkg.sha512",
  5764. "system.threading.tasks.nuspec"
  5765. ]
  5766. },
  5767. "System.Threading.Tasks.Extensions/4.5.4": {
  5768. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  5769. "type": "package",
  5770. "path": "system.threading.tasks.extensions/4.5.4",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "LICENSE.TXT",
  5775. "THIRD-PARTY-NOTICES.TXT",
  5776. "lib/MonoAndroid10/_._",
  5777. "lib/MonoTouch10/_._",
  5778. "lib/net461/System.Threading.Tasks.Extensions.dll",
  5779. "lib/net461/System.Threading.Tasks.Extensions.xml",
  5780. "lib/netcoreapp2.1/_._",
  5781. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  5782. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  5783. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  5784. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  5785. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  5786. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  5787. "lib/xamarinios10/_._",
  5788. "lib/xamarinmac20/_._",
  5789. "lib/xamarintvos10/_._",
  5790. "lib/xamarinwatchos10/_._",
  5791. "ref/MonoAndroid10/_._",
  5792. "ref/MonoTouch10/_._",
  5793. "ref/netcoreapp2.1/_._",
  5794. "ref/xamarinios10/_._",
  5795. "ref/xamarinmac20/_._",
  5796. "ref/xamarintvos10/_._",
  5797. "ref/xamarinwatchos10/_._",
  5798. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  5799. "system.threading.tasks.extensions.nuspec",
  5800. "useSharedDesignerContext.txt",
  5801. "version.txt"
  5802. ]
  5803. },
  5804. "Tmds.DBus.Protocol/0.15.0": {
  5805. "sha512": "QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
  5806. "type": "package",
  5807. "path": "tmds.dbus.protocol/0.15.0",
  5808. "files": [
  5809. ".nupkg.metadata",
  5810. ".signature.p7s",
  5811. "lib/net6.0/Tmds.DBus.Protocol.dll",
  5812. "lib/netstandard2.0/Tmds.DBus.Protocol.dll",
  5813. "lib/netstandard2.1/Tmds.DBus.Protocol.dll",
  5814. "tmds.dbus.protocol.0.15.0.nupkg.sha512",
  5815. "tmds.dbus.protocol.nuspec"
  5816. ]
  5817. }
  5818. },
  5819. "projectFileDependencyGroups": {
  5820. "net7.0": [
  5821. "Avalonia >= 11.0.6",
  5822. "Avalonia.Desktop >= 11.0.6",
  5823. "Avalonia.Diagnostics >= 11.0.6",
  5824. "Avalonia.Fonts.Inter >= 11.0.6",
  5825. "Avalonia.ReactiveUI >= 11.0.6",
  5826. "Avalonia.Themes.Fluent >= 11.0.6",
  5827. "MessageBox.Avalonia >= 3.1.5.1",
  5828. "Microsoft.EntityFrameworkCore.Tools >= 7.0.15",
  5829. "Npgsql.EntityFrameworkCore.PostgreSQL >= 7.0.11"
  5830. ]
  5831. },
  5832. "packageFolders": {
  5833. "C:\\Users\\ivana\\.nuget\\packages\\": {},
  5834. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  5835. },
  5836. "project": {
  5837. "version": "1.0.0",
  5838. "restore": {
  5839. "projectUniqueName": "C:\\pr13\\pr13\\pr13.csproj",
  5840. "projectName": "pr13",
  5841. "projectPath": "C:\\pr13\\pr13\\pr13.csproj",
  5842. "packagesPath": "C:\\Users\\ivana\\.nuget\\packages\\",
  5843. "outputPath": "C:\\pr13\\pr13\\obj\\",
  5844. "projectStyle": "PackageReference",
  5845. "fallbackFolders": [
  5846. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  5847. ],
  5848. "configFilePaths": [
  5849. "C:\\Users\\ivana\\AppData\\Roaming\\NuGet\\NuGet.Config",
  5850. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  5851. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  5852. ],
  5853. "originalTargetFrameworks": [
  5854. "net7.0"
  5855. ],
  5856. "sources": {
  5857. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  5858. "C:\\Program Files\\dotnet\\library-packs": {},
  5859. "https://api.nuget.org/v3/index.json": {}
  5860. },
  5861. "frameworks": {
  5862. "net7.0": {
  5863. "targetAlias": "net7.0",
  5864. "projectReferences": {}
  5865. }
  5866. },
  5867. "warningProperties": {
  5868. "warnAsError": [
  5869. "NU1605"
  5870. ]
  5871. }
  5872. },
  5873. "frameworks": {
  5874. "net7.0": {
  5875. "targetAlias": "net7.0",
  5876. "dependencies": {
  5877. "Avalonia": {
  5878. "target": "Package",
  5879. "version": "[11.0.6, )"
  5880. },
  5881. "Avalonia.Desktop": {
  5882. "target": "Package",
  5883. "version": "[11.0.6, )"
  5884. },
  5885. "Avalonia.Diagnostics": {
  5886. "target": "Package",
  5887. "version": "[11.0.6, )"
  5888. },
  5889. "Avalonia.Fonts.Inter": {
  5890. "target": "Package",
  5891. "version": "[11.0.6, )"
  5892. },
  5893. "Avalonia.ReactiveUI": {
  5894. "target": "Package",
  5895. "version": "[11.0.6, )"
  5896. },
  5897. "Avalonia.Themes.Fluent": {
  5898. "target": "Package",
  5899. "version": "[11.0.6, )"
  5900. },
  5901. "MessageBox.Avalonia": {
  5902. "target": "Package",
  5903. "version": "[3.1.5.1, )"
  5904. },
  5905. "Microsoft.EntityFrameworkCore.Tools": {
  5906. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  5907. "suppressParent": "All",
  5908. "target": "Package",
  5909. "version": "[7.0.15, )"
  5910. },
  5911. "Npgsql.EntityFrameworkCore.PostgreSQL": {
  5912. "target": "Package",
  5913. "version": "[7.0.11, )"
  5914. }
  5915. },
  5916. "imports": [
  5917. "net461",
  5918. "net462",
  5919. "net47",
  5920. "net471",
  5921. "net472",
  5922. "net48",
  5923. "net481"
  5924. ],
  5925. "assetTargetFallback": true,
  5926. "warn": true,
  5927. "frameworkReferences": {
  5928. "Microsoft.NETCore.App": {
  5929. "privateAssets": "all"
  5930. }
  5931. },
  5932. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.402\\RuntimeIdentifierGraph.json"
  5933. }
  5934. }
  5935. }
  5936. }